yevhenkost
commited on
Commit
•
4b25283
1
Parent(s):
4573d91
Update README.md
Browse files
README.md
CHANGED
@@ -17,6 +17,9 @@ metrics:
|
|
17 |
Argument Mining model trained with English (EN) data for the Argument Relation Identification (ARI) task using the US2016 and the QT30 corpora.
|
18 |
This a fine-tuned [albert/albert-base-v2](https://huggingface.co/albert/albert-base-v2) model, inspired by "Transformer-Based Models for Automatic Detection of Argument Relations: A Cross-Domain Evaluation" paper.
|
19 |
|
|
|
|
|
|
|
20 |
|
21 |
## Usage
|
22 |
```python
|
@@ -42,6 +45,22 @@ model_inputs = tokenizer(text_one, text_two, return_tensors="pt")
|
|
42 |
model_output = model(**model_inputs)
|
43 |
```
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
Cite:
|
46 |
|
47 |
```
|
|
|
17 |
Argument Mining model trained with English (EN) data for the Argument Relation Identification (ARI) task using the US2016 and the QT30 corpora.
|
18 |
This a fine-tuned [albert/albert-base-v2](https://huggingface.co/albert/albert-base-v2) model, inspired by "Transformer-Based Models for Automatic Detection of Argument Relations: A Cross-Domain Evaluation" paper.
|
19 |
|
20 |
+
<br>
|
21 |
+
|
22 |
+
This model was trained on the full dataset: train and test merged.
|
23 |
|
24 |
## Usage
|
25 |
```python
|
|
|
45 |
model_output = model(**model_inputs)
|
46 |
```
|
47 |
|
48 |
+
## Metrics
|
49 |
+
|
50 |
+
```
|
51 |
+
precision recall f1-score support
|
52 |
+
|
53 |
+
0 0.51 0.59 0.55 833
|
54 |
+
1 0.46 0.28 0.35 200
|
55 |
+
2 0.51 0.30 0.38 156
|
56 |
+
3 0.82 0.82 0.82 2209
|
57 |
+
|
58 |
+
accuracy 0.71 3398
|
59 |
+
macro avg 0.58 0.50 0.53 3398
|
60 |
+
weighted avg 0.71 0.71 0.71 3398
|
61 |
+
```
|
62 |
+
Theses results for the model that was trained only on train chunk of data and tested on the test one.
|
63 |
+
|
64 |
Cite:
|
65 |
|
66 |
```
|