Sayan01 commited on
Commit
834c875
·
1 Parent(s): 2eb6f8b

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "adapters": {
5
+ "adapters": {},
6
+ "config_map": {},
7
+ "fusion_config_map": {},
8
+ "fusions": {}
9
+ },
10
+ "architectures": [
11
+ "DistilBertForSequenceClassification"
12
+ ],
13
+ "attention_dropout": 0.1,
14
+ "dim": 768,
15
+ "dropout": 0.1,
16
+ "hidden_dim": 3072,
17
+ "id2label": {
18
+ "0": "entailment",
19
+ "1": "not_entailment"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "label2id": {
23
+ "entailment": "0",
24
+ "not_entailment": "1"
25
+ },
26
+ "max_position_embeddings": 512,
27
+ "model_type": "distilbert",
28
+ "n_heads": 12,
29
+ "n_layers": 6,
30
+ "pad_token_id": 0,
31
+ "problem_type": "single_label_classification",
32
+ "qa_dropout": 0.1,
33
+ "seq_classif_dropout": 0.2,
34
+ "sinusoidal_pos_embds": false,
35
+ "tie_weights_": true,
36
+ "torch_dtype": "float32",
37
+ "transformers_version": "4.21.3",
38
+ "vocab_size": 30522
39
+ }
logs/1664417756.6271472/events.out.tfevents.1664417756.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4229f7410e7412c6d68c5c2f4e02089ffd58ffafab6ea9319fcebb2b02b05df
3
+ size 5279
logs/1664417807.723053/events.out.tfevents.1664417807.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c1d0468daab2614bddbdb1f9a60c40eb5662c303d162387ad2962ff8e81c94f
3
+ size 5279
logs/1664417811.6255133/events.out.tfevents.1664417811.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3db1cf91dec8a6379b84a9dbd9cd2ea46e28f60209db94f75686cf26748a41b
3
+ size 5279
logs/1664417848.3459127/events.out.tfevents.1664417848.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6244f8dcd19f7456146bba13e3d0678cf27b142e19dcb00add9fc29dfce6657b
3
+ size 5279
logs/1664417918.4254503/events.out.tfevents.1664417918.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21b132cd5e66fd448885bd6ea07d25e4e22d3df4c499c1064ff8e4b033d9af3b
3
+ size 5279
logs/events.out.tfevents.1664417739.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:403ca2d7c562b1a650b7a3311d5ce6aaceb66a58b1443ba3918460b6619ef463
3
+ size 4349
logs/events.out.tfevents.1664417807.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b693d73256f9686b023509cdcfea1d0785e2808f95175cd6922d80845f975bc
3
+ size 7199
logs/events.out.tfevents.1664417847.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e92213a08d6ccc7ed6efe566e9a5d822d6fa876818ee231f32306090bb76c42
3
+ size 4195
logs/events.out.tfevents.1664417918.244d139f50f0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aee67fca5a0d4b2e3e733d73a6d66ae985242c553caf7b6bf5ae8559fce26596
3
+ size 4349
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae176597b3491e7121f684286fdd0d60c3e49ccf69a93083dd69e687fb15d09f
3
+ size 267854321
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_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": true,
4
+ "add_pad_token": true,
5
+ "cls_token": "[CLS]",
6
+ "do_basic_tokenize": true,
7
+ "do_lower_case": true,
8
+ "mask_token": "[MASK]",
9
+ "model_max_length": 512,
10
+ "name_or_path": "bert-base-uncased",
11
+ "never_split": null,
12
+ "pad_token": "[PAD]",
13
+ "sep_token": "[SEP]",
14
+ "special_tokens_map_file": null,
15
+ "strip_accents": null,
16
+ "tokenize_chinese_chars": true,
17
+ "tokenizer_class": "BertTokenizer",
18
+ "unk_token": "[UNK]"
19
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dd6f56462ea5de3e62eb6833f27fdb102a317411fce582fbe086086a700fed8
3
+ size 3439
vocab.txt ADDED
The diff for this file is too large to render. See raw diff