Update of the model with similar parameters
This commit is contained in:
parent
3855368863
commit
983b42225e
16
config.json
16
config.json
|
@ -12,19 +12,19 @@
|
||||||
"hidden_size": 1024,
|
"hidden_size": 1024,
|
||||||
"id2label": {
|
"id2label": {
|
||||||
"0": "O",
|
"0": "O",
|
||||||
"1": "LOC",
|
"1": "PER",
|
||||||
"2": "PER",
|
"2": "ORG",
|
||||||
"3": "MISC",
|
"3": "LOC",
|
||||||
"4": "ORG"
|
"4": "MISC"
|
||||||
},
|
},
|
||||||
"initializer_range": 0.02,
|
"initializer_range": 0.02,
|
||||||
"intermediate_size": 4096,
|
"intermediate_size": 4096,
|
||||||
"label2id": {
|
"label2id": {
|
||||||
"LOC": 1,
|
"LOC": 3,
|
||||||
"MISC": 3,
|
"MISC": 4,
|
||||||
"O": 0,
|
"O": 0,
|
||||||
"ORG": 4,
|
"ORG": 2,
|
||||||
"PER": 2
|
"PER": 1
|
||||||
},
|
},
|
||||||
"layer_norm_eps": 1e-05,
|
"layer_norm_eps": 1e-05,
|
||||||
"max_position_embeddings": 514,
|
"max_position_embeddings": 514,
|
||||||
|
|
BIN
pytorch_model.bin (Stored with Git LFS)
BIN
pytorch_model.bin (Stored with Git LFS)
Binary file not shown.
10
results.csv
10
results.csv
|
@ -1,6 +1,6 @@
|
||||||
,precision,recall,f1,entity
|
,precision,recall,f1,entity
|
||||||
0,0.9795249795249795,0.9862561847168774,0.9828790576633339,LOC
|
0,0.9904511030622325,0.9925754825936314,0.9915121549237741,PER
|
||||||
1,0.9914318668643928,0.9927404718693285,0.9920857378400659,PER
|
1,0.9628323385784048,0.969672131147541,0.966240130683365,ORG
|
||||||
2,0.9292274446245273,0.9262250942380184,0.9277238403451995,MISC
|
2,0.974924221548636,0.9725123694337549,0.9737168019815605,LOC
|
||||||
3,0.9627007895453308,0.966120218579235,0.9644074730669576,ORG
|
3,0.9308278867102396,0.9203015616585891,0.925534795559166,MISC
|
||||||
4,0.9740825890497252,0.9766692954784437,0.9753719894698967,Overall
|
4,0.9728188879121981,0.9734490010515248,0.9731265700746845,Overall
|
||||||
|
|
|
Loading…
Reference in New Issue