DunnBC22 commited on
Commit
ddfab6e
1 Parent(s): ec03ddd

Training in progress, epoch 1

Browse files
.DS_Store ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da0ba27bd67acb4936834d260e733c06a806885ee50869cfbbf9ba564b00b989
3
+ size 6148
.gitattributes CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ .DS_Store filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-multilingual-cased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "Danish",
13
+ "1": "Turkish",
14
+ "2": "Malayalam",
15
+ "3": "English",
16
+ "4": "Russian",
17
+ "5": "Spanish",
18
+ "6": "Sweedish",
19
+ "7": "German",
20
+ "8": "French",
21
+ "9": "Greek",
22
+ "10": "Portugeese",
23
+ "11": "Italian",
24
+ "12": "Kannada",
25
+ "13": "Arabic",
26
+ "14": "Tamil",
27
+ "15": "Dutch"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "label2id": {
31
+ "Arabic": 13,
32
+ "Danish": 0,
33
+ "Dutch": 15,
34
+ "English": 3,
35
+ "French": 8,
36
+ "German": 7,
37
+ "Greek": 9,
38
+ "Italian": 11,
39
+ "Kannada": 12,
40
+ "Malayalam": 2,
41
+ "Portugeese": 10,
42
+ "Russian": 4,
43
+ "Spanish": 5,
44
+ "Sweedish": 6,
45
+ "Tamil": 14,
46
+ "Turkish": 1
47
+ },
48
+ "max_position_embeddings": 512,
49
+ "model_type": "distilbert",
50
+ "n_heads": 12,
51
+ "n_layers": 6,
52
+ "output_past": true,
53
+ "pad_token_id": 0,
54
+ "problem_type": "single_label_classification",
55
+ "qa_dropout": 0.1,
56
+ "seq_classif_dropout": 0.2,
57
+ "sinusoidal_pos_embds": false,
58
+ "tie_weights_": true,
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.26.1",
61
+ "vocab_size": 119547
62
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e37375d5cb65214e3d41ac1544df2f147c328e3587d2e5c5f8a4f222a95ce84a
3
+ size 541380785
runs/Feb19_23-45-45_Brians-Mac-mini.local/1676871952.104258/events.out.tfevents.1676871952.Brians-Mac-mini.local.10514.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13434e5bffc1fecfa29ec804e616ea2ca67b7647657e0ae4f34aa05385432bfb
3
+ size 5793
runs/Feb19_23-45-45_Brians-Mac-mini.local/events.out.tfevents.1676871952.Brians-Mac-mini.local.10514.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f917c3cd832dc9551fb9a055ed1a4368fe2b9132b7dc9ac31171e27c7195f70b
3
+ size 5649
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-multilingual-cased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b842946765f9dc611339399d21d2b723674133280c43ecd4a71870cdb5bfb517
3
+ size 3567
vocab.txt ADDED
The diff for this file is too large to render. See raw diff