ringos commited on
Commit
93101e3
·
1 Parent(s): a40f6f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -9
README.md CHANGED
@@ -6,24 +6,49 @@ model-index:
6
  results: []
7
  ---
8
 
9
- <!-- This model card has been generated automatically according to the information the Trainer had access to. You
10
- should probably proofread and complete it, then remove this comment. -->
11
 
12
- # tim_expression_identify.2
13
 
14
- This model is a fine-tuned version of [/misc/projdata17/infofil/syang/work_dir/temporal/pretrain_temporal/log/time_expression/tim_expression_identify.2](https://huggingface.co//misc/projdata17/infofil/syang/work_dir/temporal/pretrain_temporal/log/time_expression/tim_expression_identify.2) on an unknown dataset.
15
 
16
- ## Model description
17
 
18
- More information needed
19
 
20
- ## Intended uses & limitations
21
 
22
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  ## Training and evaluation data
25
 
26
- More information needed
27
 
28
  ## Training procedure
29
 
 
6
  results: []
7
  ---
8
 
9
+ ## Model description
 
10
 
11
+ This model is a fine-tuned version of RoBERTa.
12
 
13
+ ## Intended uses & limitations
14
 
15
+ For identifying time expressions in text. This model works in a NER-like manner but only focuses on time expressions.
16
 
 
17
 
18
+ - You may try an example sentence using the hosted inference API on HuggingFace:
19
 
20
+ *In Generation VII, Pokémon Sun and Moon were released worldwide for the 3DS on November 18, 2016 and on November 23, 2016 in Europe.*
21
+
22
+ The JSON output would be like:
23
+ ```
24
+ [
25
+ {
26
+ "entity_group": "TIME",
27
+ "score": 0.9959897994995117,
28
+ "word": " November 18",
29
+ "start": 79,
30
+ "end": 90
31
+ },
32
+ {
33
+ "entity_group": "TIME",
34
+ "score": 0.996467113494873,
35
+ "word": " 2016",
36
+ "start": 92,
37
+ "end": 96
38
+ },
39
+ {
40
+ "entity_group": "TIME",
41
+ "score": 0.9942433834075928,
42
+ "word": " November 23, 2016",
43
+ "start": 104,
44
+ "end": 121
45
+ }
46
+ ]
47
+ ```
48
 
49
  ## Training and evaluation data
50
 
51
+ TimeBank 1.2
52
 
53
  ## Training procedure
54