Model save
Browse files- README.md +9 -9
- config.json +0 -6
- configuration.py +0 -8
- model.safetensors +1 -1
- runs/May27_12-51-58_dragon/events.out.tfevents.1748339628.dragon.3755.0 +3 -0
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -7,7 +7,7 @@ license: gpl-3.0
|
|
| 7 |
metrics:
|
| 8 |
- accuracy
|
| 9 |
- f1
|
| 10 |
-
pipeline_tag:
|
| 11 |
tags:
|
| 12 |
- pytorch
|
| 13 |
model-index:
|
|
@@ -21,28 +21,28 @@ model-index:
|
|
| 21 |
split: validation
|
| 22 |
metrics:
|
| 23 |
- type: f1
|
| 24 |
-
value: 0.
|
| 25 |
name: Null F1
|
| 26 |
- type: f1
|
| 27 |
-
value: 0.
|
| 28 |
name: Lemma F1
|
| 29 |
- type: f1
|
| 30 |
-
value: 0.
|
| 31 |
name: Morphology F1
|
| 32 |
- type: accuracy
|
| 33 |
-
value: 0.
|
| 34 |
name: Ud Jaccard
|
| 35 |
- type: accuracy
|
| 36 |
-
value: 0.
|
| 37 |
name: Eud Jaccard
|
| 38 |
- type: f1
|
| 39 |
-
value: 0.
|
| 40 |
name: Miscs F1
|
| 41 |
- type: f1
|
| 42 |
-
value: 0.
|
| 43 |
name: Deepslot F1
|
| 44 |
- type: f1
|
| 45 |
-
value: 0.
|
| 46 |
name: Semclass F1
|
| 47 |
---
|
| 48 |
|
|
|
|
| 7 |
metrics:
|
| 8 |
- accuracy
|
| 9 |
- f1
|
| 10 |
+
pipeline_tag: conllu-parsing
|
| 11 |
tags:
|
| 12 |
- pytorch
|
| 13 |
model-index:
|
|
|
|
| 21 |
split: validation
|
| 22 |
metrics:
|
| 23 |
- type: f1
|
| 24 |
+
value: 0.9310806467014647
|
| 25 |
name: Null F1
|
| 26 |
- type: f1
|
| 27 |
+
value: 0.8195252905607285
|
| 28 |
name: Lemma F1
|
| 29 |
- type: f1
|
| 30 |
+
value: 0.7495766968629533
|
| 31 |
name: Morphology F1
|
| 32 |
- type: accuracy
|
| 33 |
+
value: 0.853072625698324
|
| 34 |
name: Ud Jaccard
|
| 35 |
- type: accuracy
|
| 36 |
+
value: 0.7939047785141262
|
| 37 |
name: Eud Jaccard
|
| 38 |
- type: f1
|
| 39 |
+
value: 0.6392410674422461
|
| 40 |
name: Miscs F1
|
| 41 |
- type: f1
|
| 42 |
+
value: 0.6143209500173906
|
| 43 |
name: Deepslot F1
|
| 44 |
- type: f1
|
| 45 |
+
value: 0.5880512346701139
|
| 46 |
name: Semclass F1
|
| 47 |
---
|
| 48 |
|
config.json
CHANGED
|
@@ -8,12 +8,6 @@
|
|
| 8 |
"AutoModel": "modeling_parser.CobaldParser"
|
| 9 |
},
|
| 10 |
"consecutive_null_limit": 3,
|
| 11 |
-
"custom_pipelines": {
|
| 12 |
-
"conllu-parsing": {
|
| 13 |
-
"impl": "pipeline.ConlluTokenClassificationPipeline",
|
| 14 |
-
"pt": "CobaldParser"
|
| 15 |
-
}
|
| 16 |
-
},
|
| 17 |
"deepslot_classifier_hidden_size": 256,
|
| 18 |
"dependency_classifier_hidden_size": 128,
|
| 19 |
"dropout": 0.1,
|
|
|
|
| 8 |
"AutoModel": "modeling_parser.CobaldParser"
|
| 9 |
},
|
| 10 |
"consecutive_null_limit": 3,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
"deepslot_classifier_hidden_size": 256,
|
| 12 |
"dependency_classifier_hidden_size": 128,
|
| 13 |
"dropout": 0.1,
|
configuration.py
CHANGED
|
@@ -37,12 +37,4 @@ class CobaldParserConfig(PretrainedConfig):
|
|
| 37 |
column: {int(k): v for k, v in labels.items()}
|
| 38 |
for column, labels in vocabulary.items()
|
| 39 |
}
|
| 40 |
-
# HACK: Tell HF hub about custom pipeline.
|
| 41 |
-
# It should not be hardcoded like this but other workaround are worse imo.
|
| 42 |
-
self.custom_pipelines = {
|
| 43 |
-
"conllu-parsing": {
|
| 44 |
-
"impl": "pipeline.ConlluTokenClassificationPipeline",
|
| 45 |
-
"pt": "CobaldParser",
|
| 46 |
-
}
|
| 47 |
-
}
|
| 48 |
super().__init__(**kwargs)
|
|
|
|
| 37 |
column: {int(k): v for k, v in labels.items()}
|
| 38 |
for column, labels in vocabulary.items()
|
| 39 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
super().__init__(**kwargs)
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1141310696
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aadbff5858bfeac9cf65c12f0e8cc7fbc7087be936aefaad9c84f3398222fe8a
|
| 3 |
size 1141310696
|
runs/May27_12-51-58_dragon/events.out.tfevents.1748339628.dragon.3755.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a51c8c4659d6f78ec875cc1a02dd85a217792208c83d4bebf3d98ff47f5997d
|
| 3 |
+
size 77100
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5905
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed5ebc0c8b063b4c203eb794f9aaa18c92816011e28c8572e366c1ba6cf331c2
|
| 3 |
size 5905
|