[OpenAI-GPT] LangChain 효율적인 Token 관리
·
🛠️ Tools/🤖 ChatGPT
LLM + Chain Tool Welcome to LangChain — 🦜🔗 LangChain 0.0.175 python.langchain.com 최근 LangChain을 통한 GPT 서드파티 툴이 쏟아지고 있다. LLM 모델을 활용해 자동으로 Tool을 사용하게 만들어 주고 있다. 그 결과 실제로 원하는 사이트 만들기 - Auto-GPT https://youtu.be/gWy-pJ2ofEM?si=f3pADRKEIZMsdhB2 Q&A 지식 기반 검색 Bot 만들기 https://youtu.be/cFCGUjc33aU?si=s7m0nw4MjKzaoQII 다양한 서비스가 LLM 모델을 통해 개발되고 있다. 그러나 우리가 사용 가능한 리소스로는 Meta에서 발표한 LLAMA 모델이나 Open소스로 공개한 data..
Could not initialize webview: Error: Could not register service worker: InvalidStateError: Failed to register a ServiceWorker: The document is in an invalid state..}
·
🐍 Python
https://github.com/microsoft/vscode/issues/128649 Error loading webview: Error: Could not register service workers: InvalidStateError: Failed to register a ServiceWorker: The doc Does this issue occur when all extensions are disabled?: Yes/No VS Code Version: 1.58.0 2d23c42 x64 OS Version: mac os 10.15.7 Steps to Reproduce: install extension Draw.io Integration open xx.drawio github.com VSCODE S..
[leetcode-36] Valid Sudoku
·
🐢 One step
LeetCode-36 Valid Sudoku : A Sudoku board (partially filled) could be valid but is not necessarily solvable. note : Only the filled cells need to be validated according to the mentioned rules.Answer :::python class Solution: def isValidSudoku(self, board: List[List[str]]) -> bool: def valid_row(i, j, row): if row==1: item = board[i] else: item = [board[n][j] for n in range(0,9)] p = [] box = [bo..
[서울시 열린데이터] 러시아워 피하기
·
🏃 Routine
서울시 열린데이터 광장 API 활용 1. 서울교통공사 역별 혼잡도 현황 열린데이터광장 메인 데이터분류,데이터검색,데이터활용 data.seoul.go.kr 2. 서울시 지하철호선별 역별 승하차 인원 정보 열린데이터광장 메인 데이터분류,데이터검색,데이터활용 data.seoul.go.kr Rush Hour 7시 - 8시 반 Go 6시 - 7시 8시 반 - 9시
small scale text data classification
·
🗣️ Natural Language Processing
Small scale dataset text classification [Data imbalanced] Dealing with Data Imbalance in Text Classification Author links open overlay panel https://www.sciencedirect.com/science/article/pii/S1877050919314152 [Augment Data] Improving Short Text Classification With Augmented Data Using GPT-3 https://arxiv.org/abs/2205.10981 [Small Text Classification] Extremely Small BERT Models from Mixed-Vocabu..
[leetcode-242] Valid Anagram
·
🐢 One step
LeetCode-242 Valid Anagram : info note : subthe two strings contain the same letters, but the order of the letters may be different. :::python class Solution: def isAnagram(self, s: str, t: str) -> bool: if len(s)!=len(t): return False for i in s: if i not in t: return False else: t = t.replace(i,'',1) return True Result : 59ms Memory: 16.8mb 문제 이해 주어진 문자열 s와 t가 주어졌을 때, s의 문자를 재배열하여 t를 얻..
[leetcode-217] Contains Duplicate
·
🐢 One step
LeetCode-217 Contains Duplicate : Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct. note : 1
How to LeetCode effectively
·
🐢 One step
https://neetcode.io/roadmap NeetCode.io neetcode.io Quality > Quantity Just Know Most Importance Concept 1. Array & Hashing Problems Contains Duplicate Valid Anagram Two Sum Group Anagrams Top K Frequent Elements Product of Array Except Self Valid Sudoku Encode and Decode Strings Longest Consecutive Sequence 2-1. Two Pointers Problems Valid Palindrome Two Sum II Input Array Is Sorted 3Sum Contai..
다했다
'분류 전체보기' 카테고리의 글 목록 (21 Page)