일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- DST zeroshot learning
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- Python
- 정보처리기사 책 추천
- 자연어처리 논문 리뷰
- 2020정보처리기사필기
- 정보처리기사전공자합격후기
- MySQL
- 파이썬을 파이썬답게
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- 백준
- 다이나믹 프로그래밍
- dialogue state tracking
- 프로그래머스
- 딥러닝기초
- til
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- 정보처리기사 수제비
- nlp논문리뷰
- Few Shot Dialogue State Tracking using Meta-learning
- 모두의딥러닝
- 데이터 합성
- classification text
- 정보처리기사전공자
- DST fewshot learning
- 검색엔진
- fasttext text classification 한글
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- few shot dst
- Today
- Total
목록MySQL (2)
🌲자라나는청년
LIMIT used to specify the number of records to return. Country 가 Germany 인 customer의 정보를 3개만 가져오기 SELECT * FROM Customer WHERE Country='Germany' LIMIT 3; MIN and MAX used to specify the number of records to return. product 에서 가장 가격이 가장 큰것 고르기 SELECT MAX(Price) AS LargestPrice FROM Products; product 에서 가격이 가장 작은것 고르기 SELECT MIN(price) AS LowestPrice FROM Products; COUNT, AVG, SUM The COUNT() func..
ORDER The ORDER BY keyword is used to sort the result-set in ascending or descending order. 나라이름 순으로 Customer 테이블 정렬하기 SELECT * FROM Customer ORDER BY country; 내림차순 순으로 Customer 테이블 정렬하기 SELECT * FROM Customer ORDER BY Country DESC country 이름으로 정렬한 뒤 다시 customer name 으로 정렬하기 SELECT * FROM Customer ORDER BY Country, CustomerName country 이름으로 정렬한 뒤 다시 customer name 은 내림차순으로 정렬하기 SELECT * FROM Cust..