alicenkbaytop commited on
Commit
93ba4f3
1 Parent(s): 7b57536

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-DATE",
14
+ "2": "I-DATE"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "label2id": {
18
+ "B-DATE": 1,
19
+ "I-DATE": 2,
20
+ "O": 0
21
+ },
22
+ "max_position_embeddings": 512,
23
+ "model_type": "distilbert",
24
+ "n_heads": 12,
25
+ "n_layers": 6,
26
+ "pad_token_id": 0,
27
+ "qa_dropout": 0.1,
28
+ "seq_classif_dropout": 0.2,
29
+ "sinusoidal_pos_embds": false,
30
+ "tie_weights_": true,
31
+ "torch_dtype": "float32",
32
+ "transformers_version": "4.29.2",
33
+ "vocab_size": 30522
34
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ab53722fd9bfd781f84c5eee2a3c0749c81423223f6366e6fe0562960d5f673
3
+ size 265494181
runs/Jun06_08-57-53_8b2ad29bcfb6/1686041877.6836562/events.out.tfevents.1686041877.8b2ad29bcfb6.8571.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2b0699c33ec1759cfb670a9e50a363b3209112ca671fb2e1d313cfd10b59d08
3
+ size 5898
runs/Jun06_08-57-53_8b2ad29bcfb6/events.out.tfevents.1686041877.8b2ad29bcfb6.8571.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74508d4aa5dd0a529ed610f728a2d7f1551f39eff09956ee5a03710c6e0bc299
3
+ size 4021
runs/Jun06_09-07-29_8b2ad29bcfb6/1686042452.2748404/events.out.tfevents.1686042452.8b2ad29bcfb6.8571.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31672a5162b5952dc6820c6da10589ad58496c0d9aae9fe1533cf647622feb35
3
+ size 5898
runs/Jun06_09-07-29_8b2ad29bcfb6/events.out.tfevents.1686042452.8b2ad29bcfb6.8571.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce9e2c10f9370ed9c46a31d328c29d4f01dac974cb36d8ca0ec986080255bdff
3
+ size 4021
runs/Jun06_09-14-16_8b2ad29bcfb6/1686042858.661938/events.out.tfevents.1686042858.8b2ad29bcfb6.8571.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca0d6ad326903c6f2ade5578c83d3c33e297c8f5a4d2f1c4abb65933a1e227ff
3
+ size 5898
runs/Jun06_09-14-16_8b2ad29bcfb6/events.out.tfevents.1686042858.8b2ad29bcfb6.8571.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc55bab93a36db5c374f7857c305190bf5298cdc14f2206198e1cf857a526259
3
+ size 88
runs/Jun06_09-14-39_8b2ad29bcfb6/1686042882.1923566/events.out.tfevents.1686042882.8b2ad29bcfb6.8571.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e08fb374a00820f2719dd85290df82b6b0dcaaac95364b1b1d911c0b773b01dd
3
+ size 5898
runs/Jun06_09-14-39_8b2ad29bcfb6/events.out.tfevents.1686042882.8b2ad29bcfb6.8571.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6839e9452640ef25173a82e02056b537195ffb57f508f029f6ac5d37bca7d68
3
+ size 4287
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:912cac9f82e082aba81cf9275692c05e0b708cfbb0082e28bda8c7296e14657f
3
+ size 3899
vocab.txt ADDED
The diff for this file is too large to render. See raw diff