zluvolyote
commited on
Commit
•
4196bfd
1
Parent(s):
4a01171
Training in progress, epoch 1
Browse files- config.json +2 -2
- pytorch_model.bin +2 -2
- runs/Jul12_16-01-42_d37a6b3a8e4e/events.out.tfevents.1657641741.d37a6b3a8e4e.374.0 +2 -2
- runs/Jul12_16-05-56_d37a6b3a8e4e/1657641964.1784484/events.out.tfevents.1657641964.d37a6b3a8e4e.736.1 +3 -0
- runs/Jul12_16-05-56_d37a6b3a8e4e/events.out.tfevents.1657641964.d37a6b3a8e4e.736.0 +3 -0
- special_tokens_map.json +4 -1
- tokenizer.json +0 -0
- tokenizer_config.json +12 -3
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForSequenceClassification"
|
@@ -21,5 +21,5 @@
|
|
21 |
"tie_weights_": true,
|
22 |
"torch_dtype": "float32",
|
23 |
"transformers_version": "4.20.1",
|
24 |
-
"vocab_size":
|
25 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForSequenceClassification"
|
|
|
21 |
"tie_weights_": true,
|
22 |
"torch_dtype": "float32",
|
23 |
"transformers_version": "4.20.1",
|
24 |
+
"vocab_size": 30522
|
25 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:37eee7535ac4ab8ad0b15dacb0a54b5f88eceef1aa6d0a4ed219221b1652b9e3
|
3 |
+
size 267854321
|
runs/Jul12_16-01-42_d37a6b3a8e4e/events.out.tfevents.1657641741.d37a6b3a8e4e.374.0
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a0035532b97d3f4343f02f7b419bee8ed06f7c29832d20b5aeae9bac5cfb5aca
|
3 |
+
size 4989
|
runs/Jul12_16-05-56_d37a6b3a8e4e/1657641964.1784484/events.out.tfevents.1657641964.d37a6b3a8e4e.736.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f88880016517bedd093ca28a691d3e0a7df9021ba7f63652042472764afec563
|
3 |
+
size 5353
|
runs/Jul12_16-05-56_d37a6b3a8e4e/events.out.tfevents.1657641964.d37a6b3a8e4e.736.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d81c23b1e3cd340be41b826ff162e74709b4a3bde6ba51625ab671616a44906a
|
3 |
+
size 3882
|
special_tokens_map.json
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
{
|
|
|
2 |
"mask_token": "[MASK]",
|
3 |
-
"pad_token": "[PAD]"
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
7 |
}
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
4 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
}
|
|
|
1 |
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": true,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "distilbert-base-uncased",
|
7 |
+
"pad_token": "[PAD]",
|
8 |
+
"sep_token": "[SEP]",
|
9 |
+
"special_tokens_map_file": null,
|
10 |
+
"strip_accents": null,
|
11 |
+
"tokenize_chinese_chars": true,
|
12 |
+
"tokenizer_class": "DistilBertTokenizer",
|
13 |
+
"unk_token": "[UNK]"
|
14 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 3311
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e7a67b7d06173192a56e87fcddf687e46eb24e87d8f47e3a1295fda17b4bcb9
|
3 |
size 3311
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|