Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,43 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- medical
|
7 |
+
- radiology
|
8 |
+
model-index:
|
9 |
+
- name: rate-ner-rad
|
10 |
+
results: []
|
11 |
+
pipeline_tag: token-classification
|
12 |
+
---
|
13 |
+
|
14 |
+
# rate-ner-rad
|
15 |
+
|
16 |
+
This model is a fine-tuned version of [DeBERTa](https://huggingface.co/microsoft/deberta-v3-base) on the [RaTE-NER]() dataset.
|
17 |
+
|
18 |
+
## Model description
|
19 |
+
|
20 |
+
This model is trained to serve the RaTEScore metric, if you are interested in our pipeline, please refer to our [paper](https://angelakeke.github.io/RaTEScore/).
|
21 |
+
|
22 |
+
This model also can be used to extract **Abnormality, Non-Abnormality, Anatomy, Disease, Non-Disease**
|
23 |
+
in medical radiology reports.
|
24 |
+
|
25 |
+
## Usage
|
26 |
+
```python
|
27 |
+
# Load model directly
|
28 |
+
from transformers import AutoTokenizer, AutoModelForTokenClassification
|
29 |
+
|
30 |
+
tokenizer = AutoTokenizer.from_pretrained("Angelakeke/RaTE-NER")
|
31 |
+
model = AutoModelForTokenClassification.from_pretrained("Angelakeke/RaTE-NER")
|
32 |
+
```
|
33 |
+
|
34 |
+
## Author
|
35 |
+
|
36 |
+
Author: [Weike Zhao](https://angelakeke.github.io/)
|
37 |
+
|
38 |
+
If you have any questions, please feel free to contact [email protected].
|
39 |
+
|
40 |
+
## Citation
|
41 |
+
```
|
42 |
+
|
43 |
+
```
|