Update README.md
Browse files
README.md
CHANGED
|
@@ -2,8 +2,19 @@
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
|
|
|
| 5 |
Source: https://github.com/alibaba-research/ChineseBLUE
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
To use this dataset in your work please cite:
|
| 8 |
|
| 9 |
Ningyu Zhang, Qianghuai Jia, Kangping Yin, Liang Dong, Feng Gao, Nengwei Hua. Conceptualized Representation Learning for Chinese Biomedical Text Mining
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# 1 Source
|
| 6 |
Source: https://github.com/alibaba-research/ChineseBLUE
|
| 7 |
|
| 8 |
+
# 2 Usage
|
| 9 |
+
```python
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
data_files = {'train': 'train.csv', 'test': 'test.csv', 'dev': 'test.csv'}
|
| 14 |
+
dataset = load_dataset('Adapting/chinese_biomedical_NER_dataset', data_files=data_files)
|
| 15 |
+
```
|
| 16 |
+
|
| 17 |
+
# 3 Citation
|
| 18 |
To use this dataset in your work please cite:
|
| 19 |
|
| 20 |
Ningyu Zhang, Qianghuai Jia, Kangping Yin, Liang Dong, Feng Gao, Nengwei Hua. Conceptualized Representation Learning for Chinese Biomedical Text Mining
|