crown commited on
Commit
87d369b
·
verified ·
1 Parent(s): d478205

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -1,5 +1,16 @@
1
  ---
2
  license: mit
 
3
  ---
4
  mutil-lable classify
5
- Fine_tuning bert_base by a dataset classified by 20 clusters from Science Direct Topic
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pipeline_tag: text-classification
4
  ---
5
  mutil-lable classify
6
+ Fine_tuning bert_base by a dataset classified by 20 clusters from Science Direct Topic
7
+
8
+
9
+ # Use a pipeline as a high-level helper
10
+ '''
11
+ from transformers import pipeline
12
+ classifier = pipeline("text-classification", model="xiaoxibing/paper_classify_fine_tuning_bert")
13
+ classifier("""The Growing Role of Digital Health Tools in the Care of Patients with Cancer: Current Use, Future Opportunities, and Barriers to Effective Implementation
14
+ """)
15
+
16
+ '''