Metadata-Version: 2.1
Name: Huatuo
Version: 0.1.5
Summary: Provide medical NER service
Home-page: https://github.com/easonforai/Huatuo
Author: Eason Hua
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Huatuo [![Version][version-badge]][version-link] ![MIT License][license-badge]


`Huatuo` 是一个提供医疗命名实体识别服务的库


### 使用python进行测试：

import Huatuo

sentence = '没有及时的盖被子，都会导致感冒的情况发生，下面我们一起了解下热感冒了吃什么好的快吧！风热感冒常伴有内火患者会出现咳嗽以及嗓子痒痛，在药物治疗的饿同时可以患者可以适当的吃冰糖雪梨茶，冰糖雪梨能够有效的去火，缓解患者因咽喉肿痛引起的咳嗽嗓子疼痛症状'

current_dir = ''

config_path = ''

checkpoint_path = ''

dict_path = ''

model_path = ''

ner_result = Huatuo.diagnosis(sentence, config_path, checkpoint_path, dict_path, model_path)

运行以上脚本输出结果：

[{'start_idx': 13, 'end_idx': 14, 'type': 'disease', 'entity': '感冒'},
{'start_idx': 31, 'end_idx': 32, 'type': 'disease', 'entity': '感冒'},
{'start_idx': 44, 'end_idx': 45, 'type': 'disease', 'entity': '感冒'},
{'start_idx': 42, 'end_idx': 45, 'type': 'disease', 'entity': '风热感冒'},
{'start_idx': 56, 'end_idx': 57, 'type': 'disease', 'entity': '咳嗽'},
{'start_idx': 62, 'end_idx': 62, 'type': 'symptom', 'entity': '痒'},
{'start_idx': 62, 'end_idx': 63, 'type': 'disease', 'entity': '痒痛'},
{'start_idx': 84, 'end_idx': 85, 'type': 'food', 'entity': '冰糖'},
{'start_idx': 84, 'end_idx': 87, 'type': 'food', 'entity': '冰糖雪梨'},
{'start_idx': 87, 'end_idx': 87, 'type': 'food', 'entity': '梨'},
{'start_idx': 84, 'end_idx': 88, 'type': 'food', 'entity': '冰糖雪梨茶'},
{'start_idx': 90, 'end_idx': 91, 'type': 'food', 'entity': '冰糖'},
{'start_idx': 90, 'end_idx': 93, 'type': 'food', 'entity': '冰糖雪梨'},
{'start_idx': 93, 'end_idx': 93, 'type': 'food', 'entity': '梨'},
{'start_idx': 107, 'end_idx': 110, 'type': 'symptom', 'entity': '咽喉肿痛'},
{'start_idx': 114, 'end_idx': 115, 'type': 'disease', 'entity': '咳嗽'},
{'start_idx': 118, 'end_idx': 119, 'type': 'disease', 'entity': '疼痛'},
{'start_idx': 120, 'end_idx': 121, 'type': 'disease', 'entity': '症状'}]


### 使用方式

```
usage: Huatuo [-h] [--sentence TEXT_OF_SENTENCE] [--out NERRESULT]

optional arguments:
  -h, --help         show this help message and exit
  --sentence TEXT_OF_SENTENCE  sentence with medical information
  --current_dir current parent directory
  --config_path bert_config.json path
  --checkpoint_path bert_model.ckpt path
  --dict_path vocab.txt path
  --model_path best_model_cmeee_globalpointer.weights path
  --out NERRESULT     ner result
```


### 安装

```
$ pip install Huatuo
```

### Tip
模型文件请联系作者（e-mail: easonai@yeah.net）获取

### License

[MIT](https://github.com/easonforai/Huatuo/blob/master/LICENSE)


[version-badge]:   https://img.shields.io/badge/version-0.1-brightgreen.svg
[version-link]:    https://pypi.python.org/pypi/Huatuo/
[license-badge]:   https://img.shields.io/github/license/pythonml/Huatuo.svg

