faisalchow
commited on
Commit
•
a8944de
1
Parent(s):
ec7bd1f
Added brief details
Browse files
README.md
CHANGED
@@ -1,3 +1,38 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: cc-by-nc-sa-4.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
widget:
|
5 |
+
- text: "The Italian Space Agency’s Light Italian CubeSat for Imaging of Asteroids, or LICIACube, will fly by Dimorphos to capture images and video of the impact plume as it sprays up off the asteroid and maybe even spy the crater it could leave behind."
|
6 |
+
tags:
|
7 |
+
- seq2seq
|
8 |
+
- relation-extraction
|
9 |
+
- triple-generation
|
10 |
+
- entity-linking
|
11 |
+
- entity-type-linking
|
12 |
+
- relation-linking
|
13 |
+
model-index:
|
14 |
+
- name: knowgl
|
15 |
+
results:
|
16 |
+
- task:
|
17 |
+
name: Relation Extraction
|
18 |
+
type: Relation-Extraction
|
19 |
+
dataset:
|
20 |
+
name: "Babelscape/rebel-dataset"
|
21 |
+
type: REBEL
|
22 |
+
metrics:
|
23 |
+
- name: RE+ Macro F1
|
24 |
+
type: re+ macro f1
|
25 |
+
value: 70.74
|
26 |
license: cc-by-nc-sa-4.0
|
27 |
---
|
28 |
+
|
29 |
+
# KnowGL: Knowledge Generation and Linking from Text
|
30 |
+
|
31 |
+
The `knowgl-large` model is trained by combining Wikidata with an extended version of the training data [REBEL](https://huggingface.co/datasets/Babelscape/rebel-dataset) dataset. Given a sentence, it generates triple(s) in the following format -
|
32 |
+
```
|
33 |
+
[(subject mentions # subject label # subject type) | relation label | (object mentions # object label # object type)]
|
34 |
+
```
|
35 |
+
|
36 |
+
It achieves state-of-the-art results for relation extraction on the test dataset of REBEL. See results comparison with [GenIE (Josifoski et al (NAACL 2022))](https://aclanthology.org/2022.naacl-main.342.pdf) in [Mihindukulasooriya et al (ISWC 2022)](https://arxiv.org/pdf/2207.05188.pdf).
|
37 |
+
|
38 |
+
The generated labels (for subject, relation and object) and types (subject and object) can be directly mapped to Wikidata IDs associated with them.
|