56m commited on
Commit
84aa4f6
verified
1 Parent(s): a527ef1

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +8 -0
  2. model.safetensors +3 -0
  3. tokenizer_config.json +55 -0
config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "d_model": 128,
3
+ "n_heads": 4,
4
+ "n_layers": 4,
5
+ "d_ff": 252,
6
+ "max_len": 64,
7
+ "vocab_size": 24
8
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02d67e29dcbf035910bb7fb9cf72caf953f75d2e051eb4995c7f782e9ac736d7
3
+ size 2662552
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab": "0123456789+-*/()^.,= <>_",
3
+ "char_to_id": {
4
+ "0": 0,
5
+ "1": 1,
6
+ "2": 2,
7
+ "3": 3,
8
+ "4": 4,
9
+ "5": 5,
10
+ "6": 6,
11
+ "7": 7,
12
+ "8": 8,
13
+ "9": 9,
14
+ "+": 10,
15
+ "-": 11,
16
+ "*": 12,
17
+ "/": 13,
18
+ "(": 14,
19
+ ")": 15,
20
+ "^": 16,
21
+ ".": 17,
22
+ ",": 18,
23
+ "=": 19,
24
+ " ": 20,
25
+ "<": 21,
26
+ ">": 22,
27
+ "_": 23
28
+ },
29
+ "id_to_char": {
30
+ "0": "0",
31
+ "1": "1",
32
+ "2": "2",
33
+ "3": "3",
34
+ "4": "4",
35
+ "5": "5",
36
+ "6": "6",
37
+ "7": "7",
38
+ "8": "8",
39
+ "9": "9",
40
+ "10": "+",
41
+ "11": "-",
42
+ "12": "*",
43
+ "13": "/",
44
+ "14": "(",
45
+ "15": ")",
46
+ "16": "^",
47
+ "17": ".",
48
+ "18": ",",
49
+ "19": "=",
50
+ "20": " ",
51
+ "21": "<",
52
+ "22": ">",
53
+ "23": "_"
54
+ }
55
+ }