goldenk commited on
Commit
134b0df
1 Parent(s): 9b61991

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
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
+ "initializer_range": 0.02,
12
+ "max_position_embeddings": 512,
13
+ "model_type": "distilbert",
14
+ "n_heads": 12,
15
+ "n_layers": 6,
16
+ "pad_token_id": 0,
17
+ "problem_type": "single_label_classification",
18
+ "qa_dropout": 0.1,
19
+ "seq_classif_dropout": 0.2,
20
+ "sinusoidal_pos_embds": false,
21
+ "tie_weights_": true,
22
+ "torch_dtype": "float32",
23
+ "transformers_version": "4.13.0",
24
+ "vocab_size": 30522
25
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0443b602348307adfacd17d3b228d08a1f289c6fc2c3cad140aab698df51f8c1
3
+ size 267861293
runs/Dec30_02-30-06_2e99b1b87bb9/1672367441.2741418/events.out.tfevents.1672367441.2e99b1b87bb9.105.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:129af0864bf3db40487f354b7f83c7dd8ff0e8751cb9827a0e03bd0ddef13d5b
3
+ size 4766
runs/Dec30_02-30-06_2e99b1b87bb9/1672367713.133779/events.out.tfevents.1672367713.2e99b1b87bb9.105.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88ed00204799ef2e7d0f6fe27fec7d3412279f37d447495e7a450e40db375fc2
3
+ size 4766
runs/Dec30_02-30-06_2e99b1b87bb9/events.out.tfevents.1672367441.2e99b1b87bb9.105.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1ba776d0eac7db5ec73ef82bbe9d186f901214a64eca1c64663c77c905e5193
3
+ size 3796
runs/Dec30_02-30-06_2e99b1b87bb9/events.out.tfevents.1672367713.2e99b1b87bb9.105.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f359dd5c372ec751727d6672bae6219022f906127e3606d41b0bc41c721a38c0
3
+ size 3887
runs/Dec30_02-41-12_2e99b1b87bb9/1672368078.456401/events.out.tfevents.1672368078.2e99b1b87bb9.105.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c805478b955f8c81cc5284db25a339857448e07d342c429d21f1d8dd037cf44a
3
+ size 4766
runs/Dec30_02-41-12_2e99b1b87bb9/events.out.tfevents.1672368078.2e99b1b87bb9.105.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56266d63990632fc7197e546c1d8b1489278abc57024d079aa4c3baf2da9b74a
3
+ size 3887
runs/Dec30_02-48-05_2e99b1b87bb9/1672368495.402263/events.out.tfevents.1672368495.2e99b1b87bb9.105.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12a1c098f3fb2d60282ef2ba2470549916dcb4341f275283f3863cd7060e8740
3
+ size 4766
runs/Dec30_02-48-05_2e99b1b87bb9/events.out.tfevents.1672368495.2e99b1b87bb9.105.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfd4d050e31550bf44988d79a8adf89d3d8055580770446dde87bac12bfdbcf8
3
+ size 3940
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1868c83f7fc7aa8ca9c45591cc16cea64458487c2360edd4ee3a00d9361007ae
3
+ size 3003
vocab.txt ADDED
The diff for this file is too large to render. See raw diff