Upload 10 files
Browse files- .gitattributes +2 -0
- images/data_preprocessing.png +0 -0
- images/evaluation_results.png +0 -0
- images/training_history.png +3 -0
- model/best_model.pt +3 -0
- preprocessed/config.json +23 -0
- preprocessed/id_to_token.json +0 -0
- preprocessed/test_df.csv +0 -0
- preprocessed/train_df.csv +3 -0
- preprocessed/val_df.csv +0 -0
- preprocessed/vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
images/training_history.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
preprocessed/train_df.csv filter=lfs diff=lfs merge=lfs -text
|
images/data_preprocessing.png
ADDED
|
images/evaluation_results.png
ADDED
|
images/training_history.png
ADDED
|
Git LFS Details
|
model/best_model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02854eb76529deb30b424250242836bcea450f2d2cfc575f6ced7865023f1f26
|
| 3 |
+
size 379366958
|
preprocessed/config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"vocab_size": 16465,
|
| 3 |
+
"min_frequency": 2,
|
| 4 |
+
"train_size": 51708,
|
| 5 |
+
"val_size": 6463,
|
| 6 |
+
"test_size": 6465,
|
| 7 |
+
"suggested_max_input_len": 79,
|
| 8 |
+
"suggested_max_target_len": 34,
|
| 9 |
+
"special_tokens": {
|
| 10 |
+
"pad_token": "<pad>",
|
| 11 |
+
"unk_token": "<unk>",
|
| 12 |
+
"bos_token": "<bos>",
|
| 13 |
+
"eos_token": "<eos>",
|
| 14 |
+
"sep_token": "<sep>",
|
| 15 |
+
"pad_id": 0,
|
| 16 |
+
"unk_id": 1,
|
| 17 |
+
"bos_id": 2,
|
| 18 |
+
"eos_id": 3,
|
| 19 |
+
"sep_id": 4
|
| 20 |
+
},
|
| 21 |
+
"input_format": "emotion: {emotion} <sep> situation: {situation} <sep> customer: {customer} <sep>",
|
| 22 |
+
"target_format": "<bos> {agent_reply} <eos>"
|
| 23 |
+
}
|
preprocessed/id_to_token.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
preprocessed/test_df.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
preprocessed/train_df.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89fa04874e53f9369a82607c0815d42315da5624e992d5f9fdffce641759c7bb
|
| 3 |
+
size 24217804
|
preprocessed/val_df.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
preprocessed/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|