yeye776 commited on
Commit
39bdf8e
1 Parent(s): 073b70f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -14
README.md CHANGED
@@ -6,6 +6,20 @@ tags:
6
  model-index:
7
  - name: t5-brokarry-unknown
8
  results: []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
 
11
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -17,17 +31,36 @@ This model is a fine-tuned version of [paust/pko-t5-large](https://huggingface.c
17
 
18
  ## Model description
19
 
20
- More information needed
21
-
22
- ## Intended uses & limitations
23
-
24
- More information needed
25
-
26
- ## Training and evaluation data
27
-
28
- More information needed
29
-
30
- ## Training procedure
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  ### Training hyperparameters
33
 
@@ -43,9 +76,6 @@ The following hyperparameters were used during training:
43
  - lr_scheduler_warmup_ratio: 0.06
44
  - num_epochs: 10
45
 
46
- ### Training results
47
-
48
-
49
 
50
  ### Framework versions
51
 
 
6
  model-index:
7
  - name: t5-brokarry-unknown
8
  results: []
9
+
10
+ widget:
11
+ - text: "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :내일 심야 화물 건이 있을까?네 내일 심야 화물건은 6가지가 있습니다.그중에 상차지가 여수인 곳이 있어?"
12
+ example_title: "화물추천"
13
+ - text: "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :용인에서 출발하는 화물 찾아줘.언제가 좋으세요?내일 새벽브로캐리AI가 최적의 화물을 찾고 있어요.그런데 거기 날씨는 어때?"
14
+ example_title: "날씨예보"
15
+ - text: "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :오늘 날씨 어때?오늘은 맑아서 기분 좋아 보여. 25도 정도일거야.홍대 근처에서 친구만날 건데, 거기 근처에 전기차충전소 알려줘."
16
+ example_title: "장소안내"
17
+ - text: "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :경부고속도로 상황 알려줘"
18
+ example_title: "일상대화"
19
+ - text: "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :하차 담당자에게 문의해줘"
20
+ example_title: "전화연결"
21
+ - text: "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :브로캐리부릉부릉릉"
22
+ example_title: "Unknown"
23
  ---
24
 
25
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
31
 
32
  ## Model description
33
 
34
+ |의도 |개체 |
35
+ |:------:|:-----------|
36
+ | Unknown | |
37
+ | 일반대화 | |
38
+ | 전화연결 |대상|
39
+ | 장소안내 |장소, 대상|
40
+ | 날씨예보 |언제, 시간,장소, 대상, 조건|
41
+ | 화물추천 |언제, 시간, 상차, 하차, 조건|
42
+ *대상 : 상차지/하차지
43
+
44
+ ## How to use
45
+
46
+ ```python
47
+ import requests
48
+
49
+ API_URL = "https://api-inference.huggingface.co/models/yeye776/t5-brokarry-unknown"
50
+ headers = {"Authorization": "Bearer hf_key"}
51
+
52
+ def query(payload):
53
+ response = requests.post(API_URL, headers=headers, json=payload)
54
+ return response.json()
55
+
56
+ prompt = "브로캐리에 관련된 이용자의 대화인데 분류 및 인식 해줘! :"
57
+ input = "내일 심야 상차지가 분당인 화물 추천해줘"
58
+
59
+ output = query({
60
+ "inputs": prompt+input,
61
+ "options":{"wait_for_model":True}
62
+ })
63
+ ```
64
 
65
  ### Training hyperparameters
66
 
 
76
  - lr_scheduler_warmup_ratio: 0.06
77
  - num_epochs: 10
78
 
 
 
 
79
 
80
  ### Framework versions
81