osanseviero
commited on
Commit
•
3c99028
1
Parent(s):
1b67540
Update spaCy pipeline
Browse files- .gitattributes +1 -0
- README.md +51 -0
.gitattributes
CHANGED
@@ -18,3 +18,4 @@
|
|
18 |
*.npz filter=lfs diff=lfs merge=lfs -text
|
19 |
*strings.json filter=lfs diff=lfs merge=lfs -text
|
20 |
vectors filter=lfs diff=lfs merge=lfs -text
|
|
|
|
18 |
*.npz filter=lfs diff=lfs merge=lfs -text
|
19 |
*strings.json filter=lfs diff=lfs merge=lfs -text
|
20 |
vectors filter=lfs diff=lfs merge=lfs -text
|
21 |
+
model filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
### Details: https://spacy.io/models/mk#mk_core_news_sm
|
2 |
|
3 |
Macedonian pipeline optimized for CPU. Components: tok2vec, morphologizer, parser, senter, ner, attribute_ruler, lemmatizer.
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- spacy
|
4 |
+
- token-classification
|
5 |
+
language:
|
6 |
+
- mk
|
7 |
+
license: CC-BY-SA-4.0
|
8 |
+
model-index:
|
9 |
+
- name: mk_core_news_sm
|
10 |
+
results:
|
11 |
+
- task:
|
12 |
+
name: NER
|
13 |
+
type: token-classification
|
14 |
+
metrics:
|
15 |
+
- name: NER Precision
|
16 |
+
type: precision
|
17 |
+
value: 0.7100802855
|
18 |
+
- name: NER Recall
|
19 |
+
type: recall
|
20 |
+
value: 0.6774468085
|
21 |
+
- name: NER F Score
|
22 |
+
type: f_score
|
23 |
+
value: 0.6933797909
|
24 |
+
- task:
|
25 |
+
name: SENTER
|
26 |
+
type: token-classification
|
27 |
+
metrics:
|
28 |
+
- name: SENTER Precision
|
29 |
+
type: precision
|
30 |
+
value: 0.768115942
|
31 |
+
- name: SENTER Recall
|
32 |
+
type: recall
|
33 |
+
value: 0.6883116883
|
34 |
+
- name: SENTER F Score
|
35 |
+
type: f_score
|
36 |
+
value: 0.7260273973
|
37 |
+
- task:
|
38 |
+
name: UNLABELED_DEPENDENCIES
|
39 |
+
type: token-classification
|
40 |
+
metrics:
|
41 |
+
- name: Unlabeled Dependencies Accuracy
|
42 |
+
type: accuracy
|
43 |
+
value: 0.6457311089
|
44 |
+
- task:
|
45 |
+
name: LABELED_DEPENDENCIES
|
46 |
+
type: token-classification
|
47 |
+
metrics:
|
48 |
+
- name: Labeled Dependencies Accuracy
|
49 |
+
type: accuracy
|
50 |
+
value: 0.6457311089
|
51 |
+
---
|
52 |
### Details: https://spacy.io/models/mk#mk_core_news_sm
|
53 |
|
54 |
Macedonian pipeline optimized for CPU. Components: tok2vec, morphologizer, parser, senter, ner, attribute_ruler, lemmatizer.
|