nhh2907 commited on
Commit
cf9e827
1 Parent(s): 644550b

API call 명칭 재정의, price-class-connection-time 데이터 수기로 생성후 삽입 완료

Browse files
Files changed (4) hide show
  1. config.json +39 -0
  2. generation_config.json +6 -0
  3. pytorch_model.bin +3 -0
  4. readme.json +89 -0
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "gpt2-large",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2LMHeadModel"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 1024,
15
+ "n_embd": 1280,
16
+ "n_head": 20,
17
+ "n_inner": null,
18
+ "n_layer": 36,
19
+ "n_positions": 1024,
20
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "text-generation": {
31
+ "do_sample": true,
32
+ "max_length": 50
33
+ }
34
+ },
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.29.1",
37
+ "use_cache": true,
38
+ "vocab_size": 50260
39
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 50256,
4
+ "eos_token_id": 50256,
5
+ "transformers_version": "4.29.1"
6
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33166e323053fa3cd111023124ace7c247ed9ca26dd4c8a4b929e3cf5fd1e3ce
3
+ size 3134050365
readme.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_name": "readme",
3
+ "type": "ccao_sft",
4
+ "summary": "API call 위계 정리 및 price-class-connection-time 데이터 직접 생산 후 삽입함. 기타 내용은 아래을 참고하세요",
5
+ "change_date": 230727,
6
+ "change": [
7
+ {
8
+ "id" : 0,
9
+ "change_reason" : "Variable의 schema 양식 수정",
10
+ "changed_content" : [
11
+ {
12
+ "previous_content": [
13
+ "LM의 요약 형태 : flight_assist, indent 0 with user, schema[new(), counterpart's intention: ",
14
+ "Schema 종류 : new(), change(), cancel()",
15
+ "counterpart's intention는 상대의 의도/맥락을 분명하게 명시하는 부분"
16
+ ],
17
+ "new_content": [
18
+ "LM의 요약 형태 : flight_assist, indent 0 with user, schema: new(), shared implicit intent: (공유된 의도)",
19
+ "Schema 종류 : new(), change(), cancel()",
20
+ "counterpart's intention는 상대의 의도/맥락을 분명하게 명시하는 부분"
21
+ ]
22
+ }
23
+ ]
24
+ },
25
+ {
26
+ "id" : 1,
27
+ "change_reason" : "API Call 명칭 변경",
28
+ "changed_content" : [
29
+ {
30
+ "previous_content": [
31
+ "new.search, change.search, cancel.reserve, change.reserve, cancel.cancel, new.book, change.change",
32
+ "기존 API Call 명칭과 위계가 불명확하여 변경",
33
+ "new는 book을 의미"
34
+ ],
35
+ "new_content": [
36
+ "new.search -> search_new()",
37
+ "change.search -> search_new",
38
+ "change.reserve, cancel.reserve -> search_reservation()",
39
+ "new.book, change.change -> book()",
40
+ "cancel.cancel -> cancel()",
41
+ ""
42
+ ]
43
+ }
44
+ ]
45
+ },
46
+ {
47
+ "id" : 2,
48
+ "change_reason" : "특정 intention을 언급하지 않았음에도 이름만 말했다고 new(name: Gary)처럼 생성하는 문제 해결",
49
+ "changed_content" : [
50
+ {
51
+ "previous_content": "intention없이 이름만 말한 경우",
52
+ "new_content": "intention 특정이 없으면 none(name: Gary) -> intention 특정 후 new(name: Gary)"
53
+ }
54
+ ]
55
+ },
56
+ {
57
+ "id" : 3,
58
+ "change_reason" : "KB안에서 에이전트 요약함으로 변경",
59
+ "changed_content" : [
60
+ {
61
+ "previous_content": "KB안에서 요약하지 않았음",
62
+ "new_content": "KB안에서 요약함"
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "id" : 4,
68
+ "change_reason" : "KB 응답은 자연어로 변경",
69
+ "changed_content" : [
70
+ {
71
+ "previous_content": "KB 응답은 기계어로 에이전트에 전달함",
72
+ "new_content": "KB응답을 자연어 형태로 에이전트에 전달함"
73
+ }
74
+ ]
75
+ },
76
+ {
77
+ "id" : 5,
78
+ "change_reason" : "Price-Connection-Class-time 직접 수기로 추가함",
79
+ "changed_content" : [
80
+ {
81
+ "previous_content": "None",
82
+ "new_content": "search_new() 들어가기 전에 Price, connection, class, time을 물어보지 않았으면 직접 데이터를 생산해서 넣어줬음"
83
+ }
84
+ ]
85
+ }
86
+ ],
87
+ "author": "HYUNHO NOH",
88
+ "version": 1.0
89
+ }