Training in progress, epoch 1
Browse files- config.json +10 -4
- pytorch_model.bin +2 -2
- tokenizer.json +6 -1
- training_args.bin +1 -1
config.json
CHANGED
@@ -9,13 +9,19 @@
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
-
"0": "
|
13 |
-
"1": "B-
|
|
|
|
|
|
|
14 |
},
|
15 |
"initializer_range": 0.02,
|
16 |
"label2id": {
|
17 |
-
"B-
|
18 |
-
"B-
|
|
|
|
|
|
|
19 |
},
|
20 |
"max_position_embeddings": 512,
|
21 |
"model_type": "distilbert",
|
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
+
"0": "O",
|
13 |
+
"1": "B-corporation",
|
14 |
+
"2": "I-corporation",
|
15 |
+
"3": "B-person",
|
16 |
+
"4": "I-person"
|
17 |
},
|
18 |
"initializer_range": 0.02,
|
19 |
"label2id": {
|
20 |
+
"B-corporation": 1,
|
21 |
+
"B-person": 3,
|
22 |
+
"I-corporation": 2,
|
23 |
+
"I-person": 4,
|
24 |
+
"O": 0
|
25 |
},
|
26 |
"max_position_embeddings": 512,
|
27 |
"model_type": "distilbert",
|
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:f52aaaca78c99bcb905c704cfae0ac3feaca8388ac70cf3243dc3e085265b291
|
3 |
+
size 265501733
|
tokenizer.json
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
-
"truncation":
|
|
|
|
|
|
|
|
|
|
|
4 |
"padding": null,
|
5 |
"added_tokens": [
|
6 |
{
|
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
+
"truncation": {
|
4 |
+
"direction": "Right",
|
5 |
+
"max_length": 512,
|
6 |
+
"strategy": "LongestFirst",
|
7 |
+
"stride": 0
|
8 |
+
},
|
9 |
"padding": null,
|
10 |
"added_tokens": [
|
11 |
{
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4027
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1da1ed9e544498281ea4330cf21f7649cbd0a05a3d6f973a0bd23226c6b33012
|
3 |
size 4027
|