์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ ์ฑ ์ถ์ฒ
- DST fewshot learning
- ์์ฐ์ด์ฒ๋ฆฌ ๋ ผ๋ฌธ ๋ฆฌ๋ทฐ
- ๋ชจ๋์๋ฅ๋ฌ๋
- nlp๋ ผ๋ฌธ๋ฆฌ๋ทฐ
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- ๊ฒ์์์ง
- ๋ฐ์ดํฐ ํฉ์ฑ
- Few Shot Dialogue State Tracking using Meta-learning
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- classification text
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ์ ๊ณต์ํฉ๊ฒฉํ๊ธฐ
- ํ๋ก๊ทธ๋๋จธ์ค
- ๋ค์ด๋๋ฏน ํ๋ก๊ทธ๋๋ฐ
- dialogue state tracking
- DST zeroshot learning
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- ํ์ด์ฌ์ ํ์ด์ฌ๋ต๊ฒ
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- fasttext text classification ํ๊ธ
- few shot dst
- til
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ ์์ ๋น
- MySQL
- Python
- ๋ฅ๋ฌ๋๊ธฐ์ด
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ์ ๊ณต์
- ๋ฐฑ์ค
- 2020์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌํ๊ธฐ
- Today
- Total
๋ชฉ๋ก์ ์ฒด ๊ธ (127)
๐ฒ์๋ผ๋๋์ฒญ๋
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..
package ch6; //array ๋ก graph ๊ตฌํ /* * ์์ ์ ๋ ฅ * 4 5 1์ ์ ์์, ๊ฐ์ ์์, ํ์์ ์์ํ ๋ฒ 1 2 1 3 1 4 2 4 3 4 */ import java.util.*; public class graph_array { static int[] check; static int[][] a; static int n=0; public static void main(String[] args) { // TODO Auto-generated method stub Scanner scan = new Scanner(System.in); n = scan.nextInt();// node์ ์ check = new int[n+1]; a = new int[n+1][n+1]; int num = sca..
package ch6; import java.util.*; //list ๋ก graph ๊ตฌํ /* * ์์ ์ ๋ ฅ * 4 5 1์ ์ ์์, ๊ฐ์ ์์, ํ์์ ์์ํ ๋ฒํธ 1 2 1 3 1 4 2 4 3 4 */ public class graph_list { public static void Main(String[] args) { Scanner scan = new Scanner(System.in); int n= scan.nextInt(); ArrayList[] a = (ArrayList[]) new ArrayList[n+1]; for(int i=1;i
package ch6; //array ๋ก graph ๊ตฌํ /* * ์์ ์ ๋ ฅ * 4 5 1์ ์ ์์, ๊ฐ์ ์์, ํ์์ ์์ํ ๋ฒ 1 2 1 3 1 4 2 4 3 4 */ import java.util.*; public class graph_array { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scan = new Scanner(System.in); int n = scan.nextInt();// node์ ์ int[][] a = new int[n+1][n+1]; int num = scan.nextInt();//๊ฐ์ ์ ์ int start = scan.nextInt();//ํ์์ ์์ํ ๋ฒํธ for(..