jjrussell10 commited on
Commit
2191f45
1 Parent(s): 01e4f61

Training in progress, epoch 1

Browse files
Files changed (30) hide show
  1. .gitignore +1 -0
  2. config.json +33 -0
  3. pytorch_model.bin +3 -0
  4. runs/Mar17_18-55-02_a39eb6d00a6d/1679079308.7016058/events.out.tfevents.1679079308.a39eb6d00a6d.737.1 +3 -0
  5. runs/Mar17_18-55-02_a39eb6d00a6d/events.out.tfevents.1679079308.a39eb6d00a6d.737.0 +3 -0
  6. runs/Mar17_18-55-26_a39eb6d00a6d/1679079336.554497/events.out.tfevents.1679079336.a39eb6d00a6d.737.3 +3 -0
  7. runs/Mar17_18-55-26_a39eb6d00a6d/events.out.tfevents.1679079336.a39eb6d00a6d.737.2 +3 -0
  8. runs/Mar17_18-55-46_a39eb6d00a6d/1679079351.7389107/events.out.tfevents.1679079351.a39eb6d00a6d.737.5 +3 -0
  9. runs/Mar17_18-55-46_a39eb6d00a6d/events.out.tfevents.1679079351.a39eb6d00a6d.737.4 +3 -0
  10. runs/Mar17_18-56-12_a39eb6d00a6d/1679079379.368783/events.out.tfevents.1679079379.a39eb6d00a6d.737.7 +3 -0
  11. runs/Mar17_18-56-12_a39eb6d00a6d/events.out.tfevents.1679079379.a39eb6d00a6d.737.6 +3 -0
  12. runs/Mar17_18-57-31_a39eb6d00a6d/1679079455.6825035/events.out.tfevents.1679079455.a39eb6d00a6d.737.9 +3 -0
  13. runs/Mar17_18-57-31_a39eb6d00a6d/events.out.tfevents.1679079455.a39eb6d00a6d.737.8 +3 -0
  14. runs/Mar17_18-58-01_a39eb6d00a6d/1679079487.3150127/events.out.tfevents.1679079487.a39eb6d00a6d.737.11 +3 -0
  15. runs/Mar17_18-58-01_a39eb6d00a6d/events.out.tfevents.1679079487.a39eb6d00a6d.737.10 +3 -0
  16. runs/Mar17_18-58-21_a39eb6d00a6d/1679079510.737982/events.out.tfevents.1679079510.a39eb6d00a6d.737.13 +3 -0
  17. runs/Mar17_18-58-21_a39eb6d00a6d/events.out.tfevents.1679079510.a39eb6d00a6d.737.12 +3 -0
  18. runs/Mar17_18-58-39_a39eb6d00a6d/1679079524.631985/events.out.tfevents.1679079524.a39eb6d00a6d.737.15 +3 -0
  19. runs/Mar17_18-58-39_a39eb6d00a6d/events.out.tfevents.1679079524.a39eb6d00a6d.737.14 +3 -0
  20. runs/Mar17_18-59-58_a39eb6d00a6d/1679079605.78485/events.out.tfevents.1679079605.a39eb6d00a6d.737.17 +3 -0
  21. runs/Mar17_18-59-58_a39eb6d00a6d/events.out.tfevents.1679079605.a39eb6d00a6d.737.16 +3 -0
  22. runs/Mar17_19-03-55_a39eb6d00a6d/1679079840.686954/events.out.tfevents.1679079840.a39eb6d00a6d.5191.1 +3 -0
  23. runs/Mar17_19-03-55_a39eb6d00a6d/events.out.tfevents.1679079840.a39eb6d00a6d.5191.0 +3 -0
  24. runs/Mar17_19-13-06_a39eb6d00a6d/1679080391.0217836/events.out.tfevents.1679080391.a39eb6d00a6d.7433.1 +3 -0
  25. runs/Mar17_19-13-06_a39eb6d00a6d/events.out.tfevents.1679080391.a39eb6d00a6d.7433.0 +3 -0
  26. special_tokens_map.json +7 -0
  27. tokenizer.json +0 -0
  28. tokenizer_config.json +13 -0
  29. training_args.bin +3 -0
  30. vocab.txt +0 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "id2label": {
12
+ "0": "Fake]",
13
+ "1": "Real"
14
+ },
15
+ "initializer_range": 0.02,
16
+ "label2id": {
17
+ "Fake": 0,
18
+ "Real": 1
19
+ },
20
+ "max_position_embeddings": 512,
21
+ "model_type": "distilbert",
22
+ "n_heads": 12,
23
+ "n_layers": 6,
24
+ "pad_token_id": 0,
25
+ "problem_type": "single_label_classification",
26
+ "qa_dropout": 0.1,
27
+ "seq_classif_dropout": 0.2,
28
+ "sinusoidal_pos_embds": false,
29
+ "tie_weights_": true,
30
+ "torch_dtype": "float32",
31
+ "transformers_version": "4.27.1",
32
+ "vocab_size": 30522
33
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a9499b101d6084b4d1c267da3133302304d9e4690632013b6badd08a0571286
3
+ size 267855533
runs/Mar17_18-55-02_a39eb6d00a6d/1679079308.7016058/events.out.tfevents.1679079308.a39eb6d00a6d.737.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4c7794bc10b63d72d98f17ee65357a8bdf7e41b8f101e0aad4f26bf85852704
3
+ size 5739
runs/Mar17_18-55-02_a39eb6d00a6d/events.out.tfevents.1679079308.a39eb6d00a6d.737.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1f3d20ca4cfa9881723d406a163e8da27ee17fbabe29bc25663d4b351f7a465
3
+ size 3873
runs/Mar17_18-55-26_a39eb6d00a6d/1679079336.554497/events.out.tfevents.1679079336.a39eb6d00a6d.737.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a106e5e8035443d70970bc17d49d088f95ed1907310787e45ffcfb493a9ad960
3
+ size 5739
runs/Mar17_18-55-26_a39eb6d00a6d/events.out.tfevents.1679079336.a39eb6d00a6d.737.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b1fc9643ad61a8540d569853c6cda382bdf4eeb06ffcc10c0007181ebf9d87
3
+ size 3873
runs/Mar17_18-55-46_a39eb6d00a6d/1679079351.7389107/events.out.tfevents.1679079351.a39eb6d00a6d.737.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:519ab076e0772494de015d5e7f708b0037a8cc0fd92d761e98670a583f993027
3
+ size 5739
runs/Mar17_18-55-46_a39eb6d00a6d/events.out.tfevents.1679079351.a39eb6d00a6d.737.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93af455b50fcdc6192db2e3fcf34d991de9fc1a3edb23e384ac6c333aafe3c3f
3
+ size 3871
runs/Mar17_18-56-12_a39eb6d00a6d/1679079379.368783/events.out.tfevents.1679079379.a39eb6d00a6d.737.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f7b6458aa62a6043464491b437176ce978d8cbf571303250e0d104fdb80fa6a
3
+ size 5739
runs/Mar17_18-56-12_a39eb6d00a6d/events.out.tfevents.1679079379.a39eb6d00a6d.737.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4280fa15594590f5ec15c1addc4dd61cb36e44d17b72787bc1542fc34197f872
3
+ size 3871
runs/Mar17_18-57-31_a39eb6d00a6d/1679079455.6825035/events.out.tfevents.1679079455.a39eb6d00a6d.737.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:137043c1408f3d598faf69d686f15755ed3471aee2a3ef50cbba78d420eb7656
3
+ size 5739
runs/Mar17_18-57-31_a39eb6d00a6d/events.out.tfevents.1679079455.a39eb6d00a6d.737.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fbcade48f1a781e3563c24d3f076692b022c0c05bfe3fa9d4f3a83533a32e97
3
+ size 3871
runs/Mar17_18-58-01_a39eb6d00a6d/1679079487.3150127/events.out.tfevents.1679079487.a39eb6d00a6d.737.11 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0df2e8a0d2bdb848763092e1023b9fc275b10c91b959b5641e7ce886a1d4676
3
+ size 5739
runs/Mar17_18-58-01_a39eb6d00a6d/events.out.tfevents.1679079487.a39eb6d00a6d.737.10 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4c6211f822686614a08cf9b0c25bf85309b1a89f5c09525f2224245ccd239c9
3
+ size 3921
runs/Mar17_18-58-21_a39eb6d00a6d/1679079510.737982/events.out.tfevents.1679079510.a39eb6d00a6d.737.13 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f61e4160976b1feae8ab169866c57a7310666ef4716ce383ff96d72bb87bc26c
3
+ size 5739
runs/Mar17_18-58-21_a39eb6d00a6d/events.out.tfevents.1679079510.a39eb6d00a6d.737.12 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:625199d62ca141d7162c6bc22140c5895c6fed6306d093c67f5b639bf05901d3
3
+ size 3921
runs/Mar17_18-58-39_a39eb6d00a6d/1679079524.631985/events.out.tfevents.1679079524.a39eb6d00a6d.737.15 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b37983d396cdb0cdea55cc83357ded367da9aab4ebc5c401e10b2d852db85de
3
+ size 5739
runs/Mar17_18-58-39_a39eb6d00a6d/events.out.tfevents.1679079524.a39eb6d00a6d.737.14 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d882c710565d647acee9578702f36804f00bb888e50ace409db48d851c39744e
3
+ size 3921
runs/Mar17_18-59-58_a39eb6d00a6d/1679079605.78485/events.out.tfevents.1679079605.a39eb6d00a6d.737.17 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45064f9c45f00f08e4778195c190c9bb28895fc412daf342c0cb294c7b4160b4
3
+ size 5739
runs/Mar17_18-59-58_a39eb6d00a6d/events.out.tfevents.1679079605.a39eb6d00a6d.737.16 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ea9b318e328fd80aa127c9b7dbc61ee3e556fe3476664680b5750093666af99
3
+ size 40
runs/Mar17_19-03-55_a39eb6d00a6d/1679079840.686954/events.out.tfevents.1679079840.a39eb6d00a6d.5191.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a37aa368936573a7e1ea316cd4aca478ed7efd957369245c54745c2e9c289efb
3
+ size 5739
runs/Mar17_19-03-55_a39eb6d00a6d/events.out.tfevents.1679079840.a39eb6d00a6d.5191.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c111c129ec6a44e057a2f2b9e12673e2ca25ed07c317875dcf2fb1ee8029b8d1
3
+ size 3872
runs/Mar17_19-13-06_a39eb6d00a6d/1679080391.0217836/events.out.tfevents.1679080391.a39eb6d00a6d.7433.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8b7e76a0dd3234df58e0929b1c0fc007a81baf050be7f045341e18864ef8d96
3
+ size 5739
runs/Mar17_19-13-06_a39eb6d00a6d/events.out.tfevents.1679080391.a39eb6d00a6d.7433.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b90aa2c36f0d9b1c28a22a6369f29e2258b8f8115fd224409b1dd593b1d2cfd9
3
+ size 4448
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
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "special_tokens_map_file": null,
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:cd1736ac602869ac19dbe8ee8727a6b621843b0f2be288efee80139c676417c1
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff