일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- few shot dst
- 정보처리기사 수제비
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- til
- 정보처리기사 책 추천
- DST fewshot learning
- 정보처리기사전공자
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- classification text
- 검색엔진
- 데이터 합성
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- 딥러닝기초
- 2020정보처리기사필기
- dialogue state tracking
- Few Shot Dialogue State Tracking using Meta-learning
- 정보처리기사전공자합격후기
- 파이썬을 파이썬답게
- 다이나믹 프로그래밍
- 자연어처리 논문 리뷰
- nlp논문리뷰
- Python
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- fasttext text classification 한글
- MySQL
- 모두의딥러닝
- DST zeroshot learning
- 프로그래머스
- 백준
- Today
- Total
목록DataBase (5)
🌲자라나는청년
IN The IN operator allows you to specify multiple values in a WHERE clause. The IN operator is a shorthand for multiple OR conditions. customer 테이블에서 나라 이름이 UK, Germany 인것 고르기 SELECT * FROM Customer WHERE Country IN ('Germany', 'UK'); customer 테이블에서 나라 이름이 UK, Germany 가 아닌것 고르기 SELECT * FROM Customer WHERE Country NOT IN ('Germany', 'UK'); supplier의 나라와 같은 나라에 사는 고객 고르기 SELECT * FROM Customer WH..
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..
UPDATE The UPDATE statement is used to modify the existing records in a table Customer Id 가 1인 사람의 city와 CustomerName 변경하기 UPDATE Customers SET City = 'Berlin', CustomerNaume ='Amy' WHERE CustomerID = 1; *WHERE 구문을 빠뜨리면, 전체 tuple이 변하게 된다. DELETE The DELETE statement is used to delete existing records in a table. CustomerName 이 Amy인 사람의 tuple 삭제하기 DELETE FROM Customer WHERE CustomerName='Amy' * W..
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..
MYSQL 명령어 공부 많이 쓰이는 명령어 SELECT - extracts data from a database UPDATE - updates data in a database DELETE - deletes data from a database INSERT INTO - inserts new data into a database CREATE DATABASE - creates a new database ALTER DATABASE - modifies a database CREATE TABLE - creates a new table ALTER TABLE - modifies a table DROP TABLE - deletes a table CREATE INDEX - creates an index (search k..