tthhanh commited on
Commit
4d54b9e
1 Parent(s): 16ad5b0

update readme

Browse files
Files changed (1) hide show
  1. README.md +33 -29
README.md CHANGED
@@ -9,37 +9,33 @@ metrics:
9
  model-index:
10
  - name: xlm-ate-nobi-nl-nes
11
  results: []
 
 
12
  ---
13
 
14
- <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
- should probably proofread and complete it, then remove this comment. -->
16
 
17
- # xlm-ate-nobi-nl-nes
18
-
19
- This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) on an unknown dataset.
20
- It achieves the following results on the evaluation set:
21
- - Loss: 1.4378
22
- - Precision: 0.7351
23
- - Recall: 0.3685
24
- - F1: 0.4909
25
 
26
  ## Model description
27
 
28
- More information needed
 
29
 
30
  ## Intended uses & limitations
31
 
32
- More information needed
 
 
33
 
34
  ## Training and evaluation data
35
 
36
- More information needed
37
 
38
  ## Training procedure
39
 
40
- ### Training hyperparameters
41
-
42
  The following hyperparameters were used during training:
 
43
  - learning_rate: 2e-05
44
  - train_batch_size: 32
45
  - eval_batch_size: 32
@@ -47,22 +43,30 @@ The following hyperparameters were used during training:
47
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
48
  - lr_scheduler_type: linear
49
  - num_epochs: 20
 
50
 
51
- ### Training results
52
-
53
- | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 |
54
- |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|
55
- | 0.149 | 2.98 | 500 | 0.8246 | 0.7421 | 0.3484 | 0.4742 |
56
- | 0.0395 | 5.95 | 1000 | 0.9936 | 0.7356 | 0.4126 | 0.5286 |
57
- | 0.0175 | 8.93 | 1500 | 1.1576 | 0.7169 | 0.3854 | 0.5013 |
58
- | 0.0086 | 11.9 | 2000 | 1.3431 | 0.7321 | 0.3646 | 0.4868 |
59
- | 0.0054 | 14.88 | 2500 | 1.3987 | 0.7297 | 0.3601 | 0.4822 |
60
- | 0.0032 | 17.86 | 3000 | 1.4378 | 0.7351 | 0.3685 | 0.4909 |
61
-
62
-
63
- ### Framework versions
64
-
65
  - Transformers 4.26.1
66
  - Pytorch 2.0.1+cu117
67
  - Datasets 2.9.0
68
  - Tokenizers 0.13.2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  model-index:
10
  - name: xlm-ate-nobi-nl-nes
11
  results: []
12
+ language:
13
+ - nl
14
  ---
15
 
16
+ # XLMR Token Classifier for Term Extraction
 
17
 
18
+ This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) for cross-domain term extraction tasks.
 
 
 
 
 
 
 
19
 
20
  ## Model description
21
 
22
+ This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) for token classification, specifically designed to identify and classify terms within text sequences. The model assigns labels such as B-Term, I-Term, BN-Term, IN-Term, and O to individual tokens, allowing for the extraction of meaningful terms from the text.
23
+
24
 
25
  ## Intended uses & limitations
26
 
27
+ The model is intended for term extraction tasks. It can be applied in domains like:
28
+ - Named Entity Recognition (NER)
29
+ - Information Extraction
30
 
31
  ## Training and evaluation data
32
 
33
+ We fine-tuned the Dutch version of the ACTER dataset where Named Entities are included in the gold standard. We trained on the Corruption and Wind Energy domain, validated on the Equitation domain, and tested on the Heart Failure domain.
34
 
35
  ## Training procedure
36
 
 
 
37
  The following hyperparameters were used during training:
38
+ ```
39
  - learning_rate: 2e-05
40
  - train_batch_size: 32
41
  - eval_batch_size: 32
 
43
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
44
  - lr_scheduler_type: linear
45
  - num_epochs: 20
46
+ ```
47
 
48
+ Framework versions:
49
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
50
  - Transformers 4.26.1
51
  - Pytorch 2.0.1+cu117
52
  - Datasets 2.9.0
53
  - Tokenizers 0.13.2
54
+ ```
55
+
56
+ ## Evaluation
57
+
58
+ We evaluate the performance of the ATE systems by comparing the candidate list extracted from the test set with the manually annotated gold standard term list for that specific test set. We use exact string matching to compare the retrieved terms to the ones in the gold standard and calculate Precision (P), Recall (R), and F1-score (F1).
59
+ The results are reported in [Can cross-domain term extraction benefit from cross-lingual transfer and nested term labeling?](https://link.springer.com/article/10.1007/s10994-023-06506-7#Sec12).
60
+
61
+ ## Citation
62
+ If you use this model in your research or application, please cite it as follows:
63
+ ```
64
+ @inproceedings{tran2022can,
65
+ title={Can cross-domain term extraction benefit from cross-lingual transfer?},
66
+ author={Tran, Hanh Thi Hong and Martinc, Matej and Doucet, Antoine and Pollak, Senja},
67
+ booktitle={International Conference on Discovery Science},
68
+ pages={363--378},
69
+ year={2022},
70
+ organization={Springer}
71
+ }
72
+ ```