chanind commited on
Commit
6ad6032
·
1 Parent(s): 9492062

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -1
README.md CHANGED
@@ -2,4 +2,25 @@
2
  license: apache-2.0
3
  ---
4
 
5
- Fine-tuned T5 small model for use as a frame semantic parser in the [Frame Semantic Transformer](https://github.com/chanind/frame-semantic-transformer) project. This model is trained on data from [FrameNet](https://framenet2.icsi.berkeley.edu/).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: apache-2.0
3
  ---
4
 
5
+ Fine-tuned T5 small model for use as a frame semantic parser in the [Frame Semantic Transformer](https://github.com/chanind/frame-semantic-transformer) project. This model is trained on data from [FrameNet](https://framenet2.icsi.berkeley.edu/).
6
+
7
+
8
+ ### Usage
9
+ This is meant to be used a part of [Frame Semantic Transformer](https://github.com/chanind/frame-semantic-transformer). See that project for usage instructions.
10
+
11
+ ### Tasks
12
+
13
+ This model is trained to perform 3 tasks related to semantic frame parsing:
14
+ 1. Identify frame trigger locations in the text
15
+ 2. Classify the frame given a trigger location
16
+ 3. Extract frame elements in the sentence
17
+
18
+ ### Performance
19
+
20
+ This model is trained and evaluated using the same train/dev/test splits from FrameNet 1.7 annotated corpora as used by [Open Sesame](https://github.com/swabhs/open-sesame).
21
+
22
+ | Task | F1 Score (Dev) | F1 Score (Test) |
23
+ | ---------------------- | -------------- | --------------- |
24
+ | Trigger identification | 0.74 | 0.70 |
25
+ | Frame Classification | 0.83 | 0.81 |
26
+ | Argument Extraction | 0.68 | 0.70 |