Upload folder using huggingface_hub
Browse files- .gitattributes +5 -0
- README.md +53 -0
- multi_turn/args.json +1 -0
- multi_turn/cycle_counterfactual/tokenizer.json +50 -0
- multi_turn/cycle_counterfactual/validation.csv +3 -0
- multi_turn/memory_queue_counterfactual/tokenizer.json +50 -0
- multi_turn/memory_queue_counterfactual/validation.csv +3 -0
- multi_turn/script.csv +97 -0
- multi_turn/test.csv +3 -0
- multi_turn/tokenizer.json +50 -0
- multi_turn/train.csv +3 -0
- multi_turn/validation.csv +3 -0
- single_turn_alpha0.01/args.json +1 -0
- single_turn_alpha0.01/script.csv +17 -0
- single_turn_alpha0.01/test.csv +0 -0
- single_turn_alpha0.01/tokenizer.json +50 -0
- single_turn_alpha0.01/train.csv +0 -0
- single_turn_alpha0.01/validation.csv +0 -0
- single_turn_alpha0.1/args.json +1 -0
- single_turn_alpha0.1/script.csv +17 -0
- single_turn_alpha0.1/test.csv +0 -0
- single_turn_alpha0.1/tokenizer.json +50 -0
- single_turn_alpha0.1/train.csv +0 -0
- single_turn_alpha0.1/validation.csv +0 -0
- single_turn_alpha1.0/args.json +1 -0
- single_turn_alpha1.0/script.csv +17 -0
- single_turn_alpha1.0/test.csv +0 -0
- single_turn_alpha1.0/tokenizer.json +50 -0
- single_turn_alpha1.0/train.csv +0 -0
- single_turn_alpha1.0/validation.csv +0 -0
- single_turn_alpha100.0/args.json +1 -0
- single_turn_alpha100.0/script.csv +17 -0
- single_turn_alpha100.0/test.csv +0 -0
- single_turn_alpha100.0/tokenizer.json +50 -0
- single_turn_alpha100.0/train.csv +0 -0
- single_turn_alpha100.0/validation.csv +0 -0
.gitattributes
CHANGED
@@ -53,3 +53,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
53 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
54 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
55 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
53 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
54 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
55 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
56 |
+
multi_turn/cycle_counterfactual/validation.csv filter=lfs diff=lfs merge=lfs -text
|
57 |
+
multi_turn/memory_queue_counterfactual/validation.csv filter=lfs diff=lfs merge=lfs -text
|
58 |
+
multi_turn/test.csv filter=lfs diff=lfs merge=lfs -text
|
59 |
+
multi_turn/train.csv filter=lfs diff=lfs merge=lfs -text
|
60 |
+
multi_turn/validation.csv filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
configs:
|
3 |
+
- config_name: multi_turn
|
4 |
+
data_files:
|
5 |
+
- split: train
|
6 |
+
path: "multi_turn/train.csv"
|
7 |
+
- split: validation
|
8 |
+
path: "multi_turn/validation.csv"
|
9 |
+
- split: test
|
10 |
+
path: "multi_turn/test.csv"
|
11 |
+
- config_name: single_turn_alpha0.01
|
12 |
+
data_files:
|
13 |
+
- split: train
|
14 |
+
path: "single_turn_alpha0.01/train.csv"
|
15 |
+
- split: validation
|
16 |
+
path: "single_turn_alpha0.01/validation.csv"
|
17 |
+
- split: test
|
18 |
+
path: "single_turn_alpha0.01/test.csv"
|
19 |
+
- config_name: single_turn_alpha0.1
|
20 |
+
data_files:
|
21 |
+
- split: train
|
22 |
+
path: "single_turn_alpha0.1/train.csv"
|
23 |
+
- split: validation
|
24 |
+
path: "single_turn_alpha0.1/validation.csv"
|
25 |
+
- split: test
|
26 |
+
path: "single_turn_alpha0.1/test.csv"
|
27 |
+
- config_name: single_turn_alpha1.0
|
28 |
+
data_files:
|
29 |
+
- split: train
|
30 |
+
path: "single_turn_alpha1.0/train.csv"
|
31 |
+
- split: validation
|
32 |
+
path: "single_turn_alpha1.0/validation.csv"
|
33 |
+
- split: test
|
34 |
+
path: "single_turn_alpha1.0/test.csv"
|
35 |
+
- config_name: single_turn_alpha100.0
|
36 |
+
data_files:
|
37 |
+
- split: train
|
38 |
+
path: "single_turn_alpha100.0/train.csv"
|
39 |
+
- split: validation
|
40 |
+
path: "single_turn_alpha100.0/validation.csv"
|
41 |
+
- split: test
|
42 |
+
path: "single_turn_alpha100.0/test.csv"
|
43 |
+
- config_name: cycling_counterfactual
|
44 |
+
data_files:
|
45 |
+
- split: validation
|
46 |
+
path: "multi_turn/cycling_counterfactual/validation.csv"
|
47 |
+
- config_name: memory_queue_counterfactual
|
48 |
+
data_files:
|
49 |
+
- split: validation
|
50 |
+
path: "multi_turn/memory_queue_counterfactual/validation.csv"
|
51 |
+
---
|
52 |
+
This repository contains synthetic ELIZA chatbot conversations.
|
53 |
+
See https://github.com/princeton-nlp/ELIZA-Transformer for more details.
|
multi_turn/args.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"output_dir": "data/combined/100k", "seed": 0, "num_templates": 32, "max_transformations_per_template": 5, "null_template": true, "memory_queue": true, "max_queue_size": 4, "memory_ratio": 8, "max_template_len": 10, "min_num_wildcards": 2, "max_num_wildcards": 4, "max_ngram_len": 3, "by_ngram_len": true, "template_prefix_len": 2, "min_copies": 1, "max_copies": 4, "num_conversations": 140000, "examples_per_template": 2048, "max_turns": 100, "max_conversation_len": 512, "concentration": 0.03125, "no_bos": false, "min_copy_len": 0, "max_copy_len": 10, "unigram_concentration": -1.0, "max_sentence_len": 32}
|
multi_turn/cycle_counterfactual/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
multi_turn/cycle_counterfactual/validation.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d9c91981b7235e8a794c239d750a22eb6209d43e4e42c162b333c01b7bad821
|
3 |
+
size 64397865
|
multi_turn/memory_queue_counterfactual/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
multi_turn/memory_queue_counterfactual/validation.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bd283e73a5fde6ef3a29c09c845cd48407c284743559f0a507a350cf495409e1
|
3 |
+
size 24193053
|
multi_turn/script.csv
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
template_id,transformation_id,template,transformation,template_length,transformation_length,num_copies,type
|
2 |
+
0,0,U 0 k 0 h x u 0 k .,E n x 3 j 1 w .,10,8,2,transformation
|
3 |
+
0,1,U 0 k 0 h x u 0 k .,E e f n k 7 i s b 3 .,10,11,2,transformation
|
4 |
+
0,2,U 0 k 0 h x u 0 k .,E l s z l d 1 .,10,8,1,transformation
|
5 |
+
1,0,U i e d 0 l j j 0 .,E v d p v o 4 b e m .,10,11,1,transformation
|
6 |
+
1,1,U i e d 0 l j j 0 .,E v h z c 8 p u .,10,9,1,transformation
|
7 |
+
2,0,U w 0 r 0 t 0 n g .,E n m g d 6 4 t .,10,9,2,transformation
|
8 |
+
2,1,U w 0 r 0 t 0 n g .,E f w 6 w d q .,10,8,1,transformation
|
9 |
+
2,2,U w 0 r 0 t 0 n g .,E z o f v 2 b .,10,8,1,transformation
|
10 |
+
3,0,U w y h 0 j j 0 q .,E g q v 7 j q 4 w .,10,10,2,transformation
|
11 |
+
3,1,U w y h 0 j j 0 q .,E z n t 4 o s f .,10,9,1,transformation
|
12 |
+
3,2,U w y h 0 j j 0 q .,E v t q 7 .,10,6,1,transformation
|
13 |
+
4,0,U h 0 b a 0 d x p .,E n j a f 5 r .,10,8,1,transformation
|
14 |
+
4,1,U h 0 b a 0 d x p .,E o s p 2 v 5 j b .,10,10,2,transformation
|
15 |
+
4,2,U h 0 b a 0 d x p .,E i t w r 2 g .,10,8,1,transformation
|
16 |
+
4,3,U h 0 b a 0 d x p .,E h j j 2 q a b .,10,9,1,transformation
|
17 |
+
4,4,U h 0 b a 0 d x p .,E y i z k 2 l .,10,8,1,transformation
|
18 |
+
5,0,U v 0 k p 0 l c u .,E i q 5 x n u 2 t o d .,10,12,2,transformation
|
19 |
+
5,1,U v 0 k p 0 l c u .,E e n g v 2 g 5 .,10,9,2,transformation
|
20 |
+
6,0,U 0 x 0 m 0 y 0 f .,E s l s p b 1 u t 5 .,10,11,2,transformation
|
21 |
+
6,1,U 0 x 0 m 0 y 0 f .,E m j g j t 3 i u y .,10,11,1,transformation
|
22 |
+
7,0,U e v 0 v 0 p 0 f .,E n h y a 5 s k m 3 .,10,11,2,transformation
|
23 |
+
8,0,U u 0 y e 0 l g l .,E g r t 5 k v .,10,8,1,transformation
|
24 |
+
8,1,U u 0 y e 0 l g l .,E f o e w 5 i 2 .,10,9,2,transformation
|
25 |
+
8,2,U u 0 y e 0 l g l .,E o y q i 5 p z a .,10,10,1,transformation
|
26 |
+
9,0,U s u l 0 p 0 x 0 .,E b d b 4 h v n 6 8 p .,10,12,3,transformation
|
27 |
+
9,1,U s u l 0 p 0 x 0 .,E q o h l 6 y n 8 z e 4 u v t .,10,16,3,transformation
|
28 |
+
10,0,U y 0 x 0 v n n .,E j y 4 n y 2 q .,9,9,2,transformation
|
29 |
+
10,1,U y 0 x 0 v n n .,E a t y 2 c l t 4 w x v .,9,13,2,transformation
|
30 |
+
11,0,U j t 0 e r z 0 .,E e y y g w 7 p c .,9,10,1,transformation
|
31 |
+
12,0,U 0 h 0 z 0 j z .,E a g u q k 3 5 j o o .,9,12,2,transformation
|
32 |
+
13,0,U z 0 p e 0 j 0 .,E v k 7 2 j b .,9,8,2,transformation
|
33 |
+
13,1,U z 0 p e 0 j 0 .,E c o k d 2 k d 5 k 7 n e .,9,14,3,transformation
|
34 |
+
13,2,U z 0 p e 0 j 0 .,E x s 7 .,9,5,1,transformation
|
35 |
+
14,0,U 0 q q c 0 f u .,E p c u 1 s g 5 n l .,9,11,2,transformation
|
36 |
+
14,1,U 0 q q c 0 f u .,E t l 1 q .,9,6,1,transformation
|
37 |
+
14,2,U 0 q q c 0 f u .,E x i q 1 p v n .,9,9,1,transformation
|
38 |
+
14,3,U 0 q q c 0 f u .,E x d a u 1 5 p o i .,9,11,2,transformation
|
39 |
+
14,4,U 0 q q c 0 f u .,E n z y e 1 a 5 b .,9,10,2,transformation
|
40 |
+
15,0,U c i y 0 a 0 j .,E u x 4 b j x 6 r o .,9,11,2,transformation
|
41 |
+
16,0,U g b 0 j 0 r d .,E e l b c a 5 3 k .,9,10,2,transformation
|
42 |
+
16,1,U g b 0 j 0 r d .,E i u c b w 5 a n .,9,10,1,transformation
|
43 |
+
16,2,U g b 0 j 0 r d .,E i y 5 x .,9,6,1,transformation
|
44 |
+
16,3,U g b 0 j 0 r d .,E y a e 5 q 3 y .,9,9,2,transformation
|
45 |
+
17,0,U z 0 o f 0 i 0 .,E y m 7 g 5 i z .,9,9,2,transformation
|
46 |
+
17,1,U z 0 o f 0 i 0 .,E m w 2 y 5 .,9,7,2,transformation
|
47 |
+
17,2,U z 0 o f 0 i 0 .,E k u n a 2 7 u 5 u k o .,9,13,3,transformation
|
48 |
+
17,3,U z 0 o f 0 i 0 .,E i g b k r 2 5 x g j 7 g m x .,9,16,3,transformation
|
49 |
+
17,4,U z 0 o f 0 i 0 .,E v z o p 7 w h p .,9,10,1,transformation
|
50 |
+
18,0,U l b 0 w 0 b .,E n w a k w 3 l c l .,8,11,1,transformation
|
51 |
+
18,1,U l b 0 w 0 b .,E e i t c 5 i q 3 q t f .,8,13,2,transformation
|
52 |
+
18,2,U l b 0 w 0 b .,E e p 5 o a 3 g s j .,8,11,2,transformation
|
53 |
+
18,3,U l b 0 w 0 b .,E c j o m q 3 .,8,8,1,transformation
|
54 |
+
19,0,U s 0 y 0 o 0 .,E s d a 2 v 6 x q 4 s i .,8,13,3,transformation
|
55 |
+
19,1,U s 0 y 0 o 0 .,E v u i 4 n d .,8,8,1,transformation
|
56 |
+
19,2,U s 0 y 0 o 0 .,E z t j y n 4 z v r 2 d .,8,13,2,transformation
|
57 |
+
19,3,U s 0 y 0 o 0 .,E p s 6 r p 2 c a d 4 v m .,8,14,3,transformation
|
58 |
+
20,0,U 0 p 0 p y 0 .,E l p o 3 6 a 1 w .,8,10,3,transformation
|
59 |
+
21,0,U 0 a j a 0 w .,E p f 5 x 1 x .,8,8,2,transformation
|
60 |
+
21,1,U 0 a j a 0 w .,E x y i n l 1 q g n .,8,11,1,transformation
|
61 |
+
21,2,U 0 a j a 0 w .,E m e w v 5 l 1 .,8,9,2,transformation
|
62 |
+
21,3,U 0 a j a 0 w .,E k y f c d 1 5 r .,8,10,2,transformation
|
63 |
+
21,4,U 0 a j a 0 w .,E o a s c m 5 w i .,8,10,1,transformation
|
64 |
+
22,0,U c s 0 i 0 .,E g m f m 5 c h .,7,9,1,transformation
|
65 |
+
23,0,U q 0 u z 0 .,E t z h 2 t .,7,7,1,transformation
|
66 |
+
23,1,U q 0 u z 0 .,E r u v 5 2 j w f .,7,10,2,transformation
|
67 |
+
23,2,U q 0 u z 0 .,E q j t s h 5 2 x d e .,7,12,2,transformation
|
68 |
+
23,3,U q 0 u z 0 .,E t y f r z 5 n z z .,7,11,1,transformation
|
69 |
+
24,0,U i 0 g 0 h .,E r n i 4 .,7,6,1,transformation
|
70 |
+
24,1,U i 0 g 0 h .,E m k z o b 2 .,7,8,1,transformation
|
71 |
+
24,2,U i 0 g 0 h .,E f i a y 2 4 n d v .,7,11,2,transformation
|
72 |
+
24,3,U i 0 g 0 h .,E c m b e g 2 j u l .,7,11,1,transformation
|
73 |
+
24,4,U i 0 g 0 h .,E z b s v 4 q p c 2 .,7,11,2,transformation
|
74 |
+
25,0,U 0 h i 0 x .,E a d o 1 f n 4 .,7,9,2,transformation
|
75 |
+
26,0,U 0 w h 0 o .,E s m e o d 4 j o .,7,10,1,transformation
|
76 |
+
26,1,U 0 w h 0 o .,E v w m y 4 1 s a k .,7,11,2,transformation
|
77 |
+
26,2,U 0 w h 0 o .,E f g f 4 j m 1 z .,7,10,2,transformation
|
78 |
+
26,3,U 0 w h 0 o .,E q d i 1 w u .,7,8,1,transformation
|
79 |
+
26,4,U 0 w h 0 o .,E k e k 4 x r 1 s .,7,10,2,transformation
|
80 |
+
27,0,U 0 y 0 s .,E d r a m p 3 o f 1 .,6,11,2,transformation
|
81 |
+
27,1,U 0 y 0 s .,E d l 1 y q h .,6,8,1,transformation
|
82 |
+
28,0,U 0 i v 0 .,E r e l r v 4 b f c 1 y .,6,13,2,transformation
|
83 |
+
28,1,U 0 i v 0 .,E y s 1 4 f w p .,6,9,2,transformation
|
84 |
+
28,2,U 0 i v 0 .,E o q j n 1 4 t f q .,6,11,2,transformation
|
85 |
+
29,0,U 0 d 0 w .,E c a d g 1 h v f 3 t y f .,6,14,2,transformation
|
86 |
+
29,1,U 0 d 0 w .,E y b 3 l k w 1 .,6,9,2,transformation
|
87 |
+
29,2,U 0 d 0 w .,E p y 1 3 g q g .,6,9,2,transformation
|
88 |
+
30,0,U 0 j 0 g .,E h q n a 1 v q g 3 i .,6,12,2,transformation
|
89 |
+
31,0,U 0 t 0 .,E y t 3 m 1 j .,5,8,2,transformation
|
90 |
+
32,0,U 0 .,E z s k .,3,5,0,none
|
91 |
+
32,1,U 0 .,E j g z o .,3,6,0,none
|
92 |
+
32,2,U 0 .,E f v h .,3,5,0,none
|
93 |
+
32,3,U 0 .,E c v w u .,3,6,0,none
|
94 |
+
32,4,U 0 .,E a p u e .,3,6,0,none
|
95 |
+
33,0,U v 0 k p 0 l c u .,E l k 5 .,10,5,1,memory
|
96 |
+
33,1,U v 0 k p 0 l c u .,E z e a v 2 b z 5 i o .,10,12,2,memory
|
97 |
+
33,2,U v 0 k p 0 l c u .,E b s 2 k p g 5 x n .,10,11,2,memory
|
multi_turn/test.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d69fd3596edc255274c94e1d324b314148cb1c7babaa98f9a7cd08b58dac7ad2
|
3 |
+
size 59575964
|
multi_turn/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
multi_turn/train.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:260bfd93686f97d75c43b61b0263962c87a0bff225e936c2a296b77751740d99
|
3 |
+
size 297704031
|
multi_turn/validation.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d24897b24b1ae1bcaba55cfadb57845ebfec920191fec63a02a89cffa9f3beb
|
3 |
+
size 59543387
|
single_turn_alpha0.01/args.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"output_dir": "data/single_turn_v3_nl1/alpha0.01", "seed": 0, "num_templates": 15, "max_transformations_per_template": 1, "null_template": true, "memory_queue": false, "max_queue_size": 4, "memory_ratio": 1, "null_template_cycle_version": 2, "max_template_len": 10, "min_num_wildcards": 2, "max_num_wildcards": 2, "max_ngram_len": 1, "by_ngram_len": true, "template_prefix_len": 1, "min_copies": 2, "max_copies": 2, "num_conversations": 65536, "examples_per_template": 2048, "max_turns": 1, "max_conversation_len": 512, "concentration": 1.0, "no_bos": false, "min_copy_len": 0, "max_copy_len": 20, "unigram_concentration": 0.01, "max_sentence_len": 32}
|
single_turn_alpha0.01/script.csv
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
template_id,transformation_id,template,transformation,template_length,transformation_length,num_copies,type
|
2 |
+
0,0,U b 0 k 0 z .,E u 4 2 .,7,5,2,transformation
|
3 |
+
1,0,U s 0 p 0 g .,E v 2 4 .,7,5,2,transformation
|
4 |
+
2,0,U e 0 a 0 m .,E j 2 4 .,7,5,2,transformation
|
5 |
+
3,0,U n 0 w 0 p .,E f q 2 b 4 .,7,7,2,transformation
|
6 |
+
4,0,U v 0 a 0 d .,E l 2 4 f .,7,6,2,transformation
|
7 |
+
5,0,U o 0 l 0 .,E x 2 4 .,6,5,2,transformation
|
8 |
+
6,0,U w 0 b 0 .,E d 4 r 2 q .,6,7,2,transformation
|
9 |
+
7,0,U 0 c 0 w .,E r t 3 d 1 j .,6,8,2,transformation
|
10 |
+
8,0,U 0 l 0 i .,E p t 1 3 .,6,6,2,transformation
|
11 |
+
9,0,U r 0 c 0 .,E e s 2 a 4 u .,6,8,2,transformation
|
12 |
+
10,0,U 0 h 0 .,E g x 1 3 .,5,6,2,transformation
|
13 |
+
11,0,U 0 c 0 .,E i e 3 1 .,5,6,2,transformation
|
14 |
+
12,0,U 0 x 0 .,E y 3 1 .,5,5,2,transformation
|
15 |
+
13,0,U 0 o 0 .,E h w 1 q 3 .,5,7,2,transformation
|
16 |
+
14,0,U 0 y 0 .,E q 3 w 1 .,5,6,2,transformation
|
17 |
+
15,0,U 0 .,E o y .,3,4,0,none
|
single_turn_alpha0.01/test.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha0.01/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
single_turn_alpha0.01/train.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha0.01/validation.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha0.1/args.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"output_dir": "data/single_turn_v3_nl1/alpha0.1", "seed": 0, "num_templates": 15, "max_transformations_per_template": 1, "null_template": true, "memory_queue": false, "max_queue_size": 4, "memory_ratio": 1, "null_template_cycle_version": 2, "max_template_len": 10, "min_num_wildcards": 2, "max_num_wildcards": 2, "max_ngram_len": 1, "by_ngram_len": true, "template_prefix_len": 1, "min_copies": 2, "max_copies": 2, "num_conversations": 65536, "examples_per_template": 2048, "max_turns": 1, "max_conversation_len": 512, "concentration": 1.0, "no_bos": false, "min_copy_len": 0, "max_copy_len": 20, "unigram_concentration": 0.1, "max_sentence_len": 32}
|
single_turn_alpha0.1/script.csv
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
template_id,transformation_id,template,transformation,template_length,transformation_length,num_copies,type
|
2 |
+
0,0,U b 0 k 0 z .,E u 4 2 .,7,5,2,transformation
|
3 |
+
1,0,U s 0 p 0 g .,E v 2 4 .,7,5,2,transformation
|
4 |
+
2,0,U e 0 a 0 m .,E j 2 4 .,7,5,2,transformation
|
5 |
+
3,0,U n 0 w 0 p .,E f q 2 b 4 .,7,7,2,transformation
|
6 |
+
4,0,U v 0 a 0 d .,E l 2 4 f .,7,6,2,transformation
|
7 |
+
5,0,U o 0 l 0 .,E x 2 4 .,6,5,2,transformation
|
8 |
+
6,0,U w 0 b 0 .,E d 4 r 2 q .,6,7,2,transformation
|
9 |
+
7,0,U 0 c 0 w .,E r t 3 d 1 j .,6,8,2,transformation
|
10 |
+
8,0,U 0 l 0 i .,E p t 1 3 .,6,6,2,transformation
|
11 |
+
9,0,U r 0 c 0 .,E e s 2 a 4 u .,6,8,2,transformation
|
12 |
+
10,0,U 0 h 0 .,E g x 1 3 .,5,6,2,transformation
|
13 |
+
11,0,U 0 c 0 .,E i e 3 1 .,5,6,2,transformation
|
14 |
+
12,0,U 0 x 0 .,E y 3 1 .,5,5,2,transformation
|
15 |
+
13,0,U 0 o 0 .,E h w 1 q 3 .,5,7,2,transformation
|
16 |
+
14,0,U 0 y 0 .,E q 3 w 1 .,5,6,2,transformation
|
17 |
+
15,0,U 0 .,E o y .,3,4,0,none
|
single_turn_alpha0.1/test.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha0.1/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
single_turn_alpha0.1/train.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha0.1/validation.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha1.0/args.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"output_dir": "data/single_turn_v3_nl1/alpha1.0", "seed": 0, "num_templates": 15, "max_transformations_per_template": 1, "null_template": true, "memory_queue": false, "max_queue_size": 4, "memory_ratio": 1, "null_template_cycle_version": 2, "max_template_len": 10, "min_num_wildcards": 2, "max_num_wildcards": 2, "max_ngram_len": 1, "by_ngram_len": true, "template_prefix_len": 1, "min_copies": 2, "max_copies": 2, "num_conversations": 65536, "examples_per_template": 2048, "max_turns": 1, "max_conversation_len": 512, "concentration": 1.0, "no_bos": false, "min_copy_len": 0, "max_copy_len": 20, "unigram_concentration": 1.0, "max_sentence_len": 32}
|
single_turn_alpha1.0/script.csv
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
template_id,transformation_id,template,transformation,template_length,transformation_length,num_copies,type
|
2 |
+
0,0,U b 0 k 0 z .,E u 4 2 .,7,5,2,transformation
|
3 |
+
1,0,U s 0 p 0 g .,E v 2 4 .,7,5,2,transformation
|
4 |
+
2,0,U e 0 a 0 m .,E j 2 4 .,7,5,2,transformation
|
5 |
+
3,0,U n 0 w 0 p .,E f q 2 b 4 .,7,7,2,transformation
|
6 |
+
4,0,U v 0 a 0 d .,E l 2 4 f .,7,6,2,transformation
|
7 |
+
5,0,U o 0 l 0 .,E x 2 4 .,6,5,2,transformation
|
8 |
+
6,0,U w 0 b 0 .,E d 4 r 2 q .,6,7,2,transformation
|
9 |
+
7,0,U 0 c 0 w .,E r t 3 d 1 j .,6,8,2,transformation
|
10 |
+
8,0,U 0 l 0 i .,E p t 1 3 .,6,6,2,transformation
|
11 |
+
9,0,U r 0 c 0 .,E e s 2 a 4 u .,6,8,2,transformation
|
12 |
+
10,0,U 0 h 0 .,E g x 1 3 .,5,6,2,transformation
|
13 |
+
11,0,U 0 c 0 .,E i e 3 1 .,5,6,2,transformation
|
14 |
+
12,0,U 0 x 0 .,E y 3 1 .,5,5,2,transformation
|
15 |
+
13,0,U 0 o 0 .,E h w 1 q 3 .,5,7,2,transformation
|
16 |
+
14,0,U 0 y 0 .,E q 3 w 1 .,5,6,2,transformation
|
17 |
+
15,0,U 0 .,E o y .,3,4,0,none
|
single_turn_alpha1.0/test.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha1.0/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
single_turn_alpha1.0/train.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha1.0/validation.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha100.0/args.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"output_dir": "data/single_turn_v3_nl1/alpha100.0", "seed": 0, "num_templates": 15, "max_transformations_per_template": 1, "null_template": true, "memory_queue": false, "max_queue_size": 4, "memory_ratio": 1, "null_template_cycle_version": 2, "max_template_len": 10, "min_num_wildcards": 2, "max_num_wildcards": 2, "max_ngram_len": 1, "by_ngram_len": true, "template_prefix_len": 1, "min_copies": 2, "max_copies": 2, "num_conversations": 65536, "examples_per_template": 2048, "max_turns": 1, "max_conversation_len": 512, "concentration": 1.0, "no_bos": false, "min_copy_len": 0, "max_copy_len": 20, "unigram_concentration": 100.0, "max_sentence_len": 32}
|
single_turn_alpha100.0/script.csv
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
template_id,transformation_id,template,transformation,template_length,transformation_length,num_copies,type
|
2 |
+
0,0,U b 0 k 0 z .,E u 4 2 .,7,5,2,transformation
|
3 |
+
1,0,U s 0 p 0 g .,E v 2 4 .,7,5,2,transformation
|
4 |
+
2,0,U e 0 a 0 m .,E j 2 4 .,7,5,2,transformation
|
5 |
+
3,0,U n 0 w 0 p .,E f q 2 b 4 .,7,7,2,transformation
|
6 |
+
4,0,U v 0 a 0 d .,E l 2 4 f .,7,6,2,transformation
|
7 |
+
5,0,U o 0 l 0 .,E x 2 4 .,6,5,2,transformation
|
8 |
+
6,0,U w 0 b 0 .,E d 4 r 2 q .,6,7,2,transformation
|
9 |
+
7,0,U 0 c 0 w .,E r t 3 d 1 j .,6,8,2,transformation
|
10 |
+
8,0,U 0 l 0 i .,E p t 1 3 .,6,6,2,transformation
|
11 |
+
9,0,U r 0 c 0 .,E e s 2 a 4 u .,6,8,2,transformation
|
12 |
+
10,0,U 0 h 0 .,E g x 1 3 .,5,6,2,transformation
|
13 |
+
11,0,U 0 c 0 .,E i e 3 1 .,5,6,2,transformation
|
14 |
+
12,0,U 0 x 0 .,E y 3 1 .,5,5,2,transformation
|
15 |
+
13,0,U 0 o 0 .,E h w 1 q 3 .,5,7,2,transformation
|
16 |
+
14,0,U 0 y 0 .,E q 3 w 1 .,5,6,2,transformation
|
17 |
+
15,0,U 0 .,E o y .,3,4,0,none
|
single_turn_alpha100.0/test.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha100.0/tokenizer.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [],
|
6 |
+
"normalizer": null,
|
7 |
+
"pre_tokenizer": {
|
8 |
+
"type": "WhitespaceSplit"
|
9 |
+
},
|
10 |
+
"post_processor": null,
|
11 |
+
"decoder": null,
|
12 |
+
"model": {
|
13 |
+
"type": "WordLevel",
|
14 |
+
"vocab": {
|
15 |
+
"<pad>": 0,
|
16 |
+
"$": 1,
|
17 |
+
".": 2,
|
18 |
+
"E": 3,
|
19 |
+
"U": 4,
|
20 |
+
"a": 5,
|
21 |
+
"b": 6,
|
22 |
+
"c": 7,
|
23 |
+
"d": 8,
|
24 |
+
"e": 9,
|
25 |
+
"f": 10,
|
26 |
+
"g": 11,
|
27 |
+
"h": 12,
|
28 |
+
"i": 13,
|
29 |
+
"j": 14,
|
30 |
+
"k": 15,
|
31 |
+
"l": 16,
|
32 |
+
"m": 17,
|
33 |
+
"n": 18,
|
34 |
+
"o": 19,
|
35 |
+
"p": 20,
|
36 |
+
"q": 21,
|
37 |
+
"r": 22,
|
38 |
+
"s": 23,
|
39 |
+
"t": 24,
|
40 |
+
"u": 25,
|
41 |
+
"v": 26,
|
42 |
+
"w": 27,
|
43 |
+
"x": 28,
|
44 |
+
"y": 29,
|
45 |
+
"z": 30,
|
46 |
+
"<unk>": 31
|
47 |
+
},
|
48 |
+
"unk_token": "<unk>"
|
49 |
+
}
|
50 |
+
}
|
single_turn_alpha100.0/train.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
single_turn_alpha100.0/validation.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|