julien-c HF staff commited on
Commit
8dc0439
1 Parent(s): 047a829

Migrate model card from transformers-repo

Browse files

Read announcement at https://discuss.huggingface.co/t/announcement-all-model-cards-will-be-migrated-to-hf-co-model-repos/2755
Original file history: https://github.com/huggingface/transformers/commits/master/model_cards/allenyummy/chinese-bert-wwm-ehr-ner-sl/README.md

Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: zh-tw
3
+ ---
4
+
5
+ # Model name
6
+ Chinese-bert-wwm-electrical-health-record-ner-sequence-labeling
7
+
8
+
9
+ #### How to use
10
+
11
+ ```
12
+ from transformers import AutoTokenizer, AutoModelForTokenClassification
13
+ tokenizer = AutoTokenizer.from_pretrained("chinese-bert-wwm-ehr-ner-sl")
14
+ model = AutoModelForTokenClassification.from_pretrained("chinese-bert-wwm-ehr-ner-sl")
15
+ ```