Alireza1044
commited on
Commit
•
498b83c
1
Parent(s):
5dccba5
Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +43 -0
- pytorch_model.bin +3 -0
- runs/Jun14_08-21-18_labgpu/1655194911.847512/events.out.tfevents.1655194911.labgpu.3997.1 +3 -0
- runs/Jun14_08-21-18_labgpu/events.out.tfevents.1655194911.labgpu.3997.0 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +13 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/mobilebert-uncased",
|
3 |
+
"architectures": [
|
4 |
+
"MobileBertForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_activation": false,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"embedding_size": 128,
|
10 |
+
"finetuning_task": "cola",
|
11 |
+
"hidden_act": "relu",
|
12 |
+
"hidden_dropout_prob": 0.0,
|
13 |
+
"hidden_size": 512,
|
14 |
+
"id2label": {
|
15 |
+
"0": "unacceptable",
|
16 |
+
"1": "acceptable"
|
17 |
+
},
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 512,
|
20 |
+
"intra_bottleneck_size": 128,
|
21 |
+
"key_query_shared_bottleneck": true,
|
22 |
+
"label2id": {
|
23 |
+
"acceptable": 1,
|
24 |
+
"unacceptable": 0
|
25 |
+
},
|
26 |
+
"layer_norm_eps": 1e-12,
|
27 |
+
"max_position_embeddings": 512,
|
28 |
+
"model_type": "mobilebert",
|
29 |
+
"normalization_type": "no_norm",
|
30 |
+
"num_attention_heads": 4,
|
31 |
+
"num_feedforward_networks": 4,
|
32 |
+
"num_hidden_layers": 24,
|
33 |
+
"pad_token_id": 0,
|
34 |
+
"problem_type": "single_label_classification",
|
35 |
+
"torch_dtype": "float32",
|
36 |
+
"transformers_version": "4.20.0.dev0",
|
37 |
+
"trigram_input": true,
|
38 |
+
"true_hidden_size": 128,
|
39 |
+
"type_vocab_size": 2,
|
40 |
+
"use_bottleneck": true,
|
41 |
+
"use_bottleneck_attention": false,
|
42 |
+
"vocab_size": 30522
|
43 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3340e42b32f887926048a6e95e37be9bf068a0b06bdfa3675bc50f8513bf64f2
|
3 |
+
size 98718143
|
runs/Jun14_08-21-18_labgpu/1655194911.847512/events.out.tfevents.1655194911.labgpu.3997.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ba1347498231e3d79ad8bdf0dfbf32444351b122f9713995d62393f0e93b2d4
|
3 |
+
size 5242
|
runs/Jun14_08-21-18_labgpu/events.out.tfevents.1655194911.labgpu.3997.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1656f8ade2c02c73e360b3717fab9e446b6999783a7dc381fb8f3d403ac41885
|
3 |
+
size 4101
|
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 |
+
"name_or_path": "google/mobilebert-uncased",
|
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": "MobileBertTokenizer",
|
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:1d1c7373d1d273a8e1cb494adf573bb78c9917d875b0b9ba164554a44b3f42cd
|
3 |
+
size 3247
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|