일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- classification text
- 백준
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- Python
- til
- fasttext text classification 한글
- nlp논문리뷰
- few shot dst
- 2020정보처리기사필기
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- 데이터 합성
- Few Shot Dialogue State Tracking using Meta-learning
- 파이썬을 파이썬답게
- 딥러닝기초
- 정보처리기사전공자합격후기
- 정보처리기사전공자
- MySQL
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- 자연어처리 논문 리뷰
- 검색엔진
- DST zeroshot learning
- 정보처리기사 수제비
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- 모두의딥러닝
- 다이나믹 프로그래밍
- dialogue state tracking
- 정보처리기사 책 추천
- DST fewshot learning
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- 프로그래머스
- 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..