Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc
|
3 |
+
datasets:
|
4 |
+
- liyucheng/FrameNet_v17
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
---
|
8 |
+
|
9 |
+
# Frame Classification
|
10 |
+
|
11 |
+
This model is trained FrameNet v1.7. Check out the training dataset [here](https://huggingface.co/datasets/liyucheng/FrameNet_v17).
|
12 |
+
|
13 |
+
The data is loaded with `ds = dataset.load_dataset('liyucheng/FrameNet_v17', name = 'frame_label')`.
|
14 |
+
|
15 |
+
This flatten all frame annotation to specific sentences, making frame classification a sequence tagging task.
|
16 |
+
|
17 |
+
# Metrics
|
18 |
+
|
19 |
+
```
|
20 |
+
{'accuracy_score': 0.8382018348623853, 'precision': 0.8382018348623853, 'recall': 0.8382018348623853, 'micro_f1': 0.8382018348623853, 'macro_f1': 0.45824850358482677}
|
21 |
+
```
|
22 |
+
|