Update README.md
Browse files
README.md
CHANGED
|
@@ -6,24 +6,49 @@ model-index:
|
|
| 6 |
results: []
|
| 7 |
---
|
| 8 |
|
| 9 |
-
|
| 10 |
-
should probably proofread and complete it, then remove this comment. -->
|
| 11 |
|
| 12 |
-
|
| 13 |
|
| 14 |
-
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
More information needed
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
## Training and evaluation data
|
| 25 |
|
| 26 |
-
|
| 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 |
|