Alireza1044
commited on
Commit
•
4ea3f63
1
Parent(s):
9e19715
Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +43 -0
- pytorch_model.bin +3 -0
- runs/Jun14_12-22-13_labgpu/1655209563.142154/events.out.tfevents.1655209563.labgpu.15532.1 +3 -0
- runs/Jun14_12-22-13_labgpu/events.out.tfevents.1655209563.labgpu.15532.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": "qqp",
|
11 |
+
"hidden_act": "relu",
|
12 |
+
"hidden_dropout_prob": 0.0,
|
13 |
+
"hidden_size": 512,
|
14 |
+
"id2label": {
|
15 |
+
"0": "not_duplicate",
|
16 |
+
"1": "duplicate"
|
17 |
+
},
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 512,
|
20 |
+
"intra_bottleneck_size": 128,
|
21 |
+
"key_query_shared_bottleneck": true,
|
22 |
+
"label2id": {
|
23 |
+
"duplicate": 1,
|
24 |
+
"not_duplicate": 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:cd25b3371863d181a283f25af8011c07260f4df7c8472587d4a17c4069ed829e
|
3 |
+
size 98718143
|
runs/Jun14_12-22-13_labgpu/1655209563.142154/events.out.tfevents.1655209563.labgpu.15532.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2f217d8c5a7b2c90420622119d175d8db4263c9efd60ba491d1091e92b3a471
|
3 |
+
size 5239
|
runs/Jun14_12-22-13_labgpu/events.out.tfevents.1655209563.labgpu.15532.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd31afa29a88e3e22968f2c77c03163de63c2c46aef82f082100989e72894939
|
3 |
+
size 4096
|
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:714ca23b82fa11b7afff300a0189b1c59c872d3b5166468f73e256e973214508
|
3 |
+
size 3247
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|