shokiokita commited on
Commit
f0baab5
1 Parent(s): 47784bb

Training in progress, epoch 1

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.11.3",
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:1aa33670ee9a2975324f5900ef9f2ca68e36473f5ffad4b70eec3e6c57b68705
3
+ size 267858673
runs/Oct12_04-02-12_a2acb8bfc626/1634011354.0610123/events.out.tfevents.1634011354.a2acb8bfc626.65.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fd20470c17865d42c827220164c801779bd6345735da0be271cddd84d91a092
3
+ size 4592
runs/Oct12_04-02-12_a2acb8bfc626/events.out.tfevents.1634011354.a2acb8bfc626.65.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33cc25e7a76388e8253d868ec056dbf24e288c06fc389542dbee8850e306f9f0
3
+ size 3476
runs/Oct12_05-16-21_a2acb8bfc626/1634015800.2847288/events.out.tfevents.1634015800.a2acb8bfc626.65.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c4a379f05dd5665c3082c8401c5f7157a922e8c16d88f69e5251df305196718
3
+ size 4592
runs/Oct12_05-16-21_a2acb8bfc626/1634015846.5757806/events.out.tfevents.1634015846.a2acb8bfc626.65.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d1557104497b30c6c0f0451611a9cb74403bb9a53e0fa00114b27638c59fced
3
+ size 4592
runs/Oct12_05-16-21_a2acb8bfc626/events.out.tfevents.1634015800.a2acb8bfc626.65.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdbc6085de1295108bd59a98d12220bcd894d3720c678fb5f450b153bf2adf76
3
+ size 3114
runs/Oct12_05-16-21_a2acb8bfc626/events.out.tfevents.1634015846.a2acb8bfc626.65.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1612bb6e110c57977a04fb32caa15ad7c25faa7672c9d314db29db5f5bf5afbe
3
+ size 3525
runs/Oct12_05-36-48_a2acb8bfc626/1634017013.393082/events.out.tfevents.1634017013.a2acb8bfc626.65.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a630789916aea840a02c4afbdae96c983ac302e42c999d6972cef1bf3e3fc725
3
+ size 4574
runs/Oct12_05-36-48_a2acb8bfc626/events.out.tfevents.1634017013.a2acb8bfc626.65.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0155b381af51346338450a99b1a4408fe15713418b232a16bcf2beb8c9186dce
3
+ size 3549
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:665aeabdf40b5d5dd96d340ba5f6e76e1131857597372b31898d647c080396aa
3
+ size 2863
vocab.txt ADDED
The diff for this file is too large to render. See raw diff