Shuddup commited on
Commit
bd7643f
·
1 Parent(s): e75f128

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "NOT DEPRESSION",
13
+ "1": "MODERATE",
14
+ "2": "SEVERE"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "label2id": {
18
+ "MODERATE": 1,
19
+ "NOT DEPRESSION": 0,
20
+ "SEVERE": 2
21
+ },
22
+ "max_position_embeddings": 512,
23
+ "model_type": "distilbert",
24
+ "n_heads": 12,
25
+ "n_layers": 6,
26
+ "pad_token_id": 0,
27
+ "problem_type": "single_label_classification",
28
+ "qa_dropout": 0.1,
29
+ "seq_classif_dropout": 0.2,
30
+ "sinusoidal_pos_embds": false,
31
+ "tie_weights_": true,
32
+ "torch_dtype": "float32",
33
+ "transformers_version": "4.28.0",
34
+ "vocab_size": 30522
35
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ab1a63fe07115346618499b21c228bd26bf31ac5e298021586e8e3c99355af4
3
+ size 267858605
runs/Jun01_10-09-14_bedaf80d2389/1685614156.4803236/events.out.tfevents.1685614156.bedaf80d2389.3714.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a30393c70da4c93a809bea6f7d6fc4c114283c5566235d3701775317148d471
3
+ size 5912
runs/Jun01_10-09-14_bedaf80d2389/events.out.tfevents.1685614156.bedaf80d2389.3714.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f6d82fc1a9fa096274b12e87ac983699d4f2a0b592ee1d23123d36124a567d2
3
+ size 4083
runs/Jun01_10-09-47_bedaf80d2389/1685614189.9721155/events.out.tfevents.1685614189.bedaf80d2389.3714.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1c5459535009f662a90b7ea904140592b211cb9e93612a82cbd0212b1d990cf
3
+ size 5912
runs/Jun01_10-09-47_bedaf80d2389/events.out.tfevents.1685614189.bedaf80d2389.3714.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b09bfb783cd7c6b69a8a77e37e74e65a88d51a37297cc6f347e99f4b244fa082
3
+ size 4083
runs/Jun01_10-13-06_bedaf80d2389/1685614388.3556828/events.out.tfevents.1685614388.bedaf80d2389.3714.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1e79ebe5ca2b16ac262699f992970019e340a6639cbe81faff8eda182cc483d
3
+ size 5912
runs/Jun01_10-13-06_bedaf80d2389/events.out.tfevents.1685614388.bedaf80d2389.3714.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d88da7760a7040429ad0b865e951fc8caa8a8954467d31ec7f417a92ad3747cc
3
+ size 4354
runs/Jun01_10-51-01_bedaf80d2389/1685616663.93219/events.out.tfevents.1685616663.bedaf80d2389.3714.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43dd11c1363a3f276b1b437418fbbc295a47df392f112299d48c93c51602ac0a
3
+ size 5912
runs/Jun01_10-51-01_bedaf80d2389/events.out.tfevents.1685616663.bedaf80d2389.3714.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2025246cc154739b5de4db65554b44e598abcf272a57e6c57501e6126baee5d4
3
+ size 4400
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:c9a84edcad7c38588911db376529b56a8846049634b5118e63515a53cc6b2374
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff