Token Classification
Transformers
PyTorch
Chinese
roberta
NER
TCM
Traditional Chinese Medicine
medical
Instructions to use Monor/hwtcmner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Monor/hwtcmner with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Monor/hwtcmner")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Monor/hwtcmner") model = AutoModelForTokenClassification.from_pretrained("Monor/hwtcmner") - Notebooks
- Google Colab
- Kaggle