File size: 517 Bytes
d478205 87d369b d478205 87d369b b4a048e 87d369b b4a048e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ---
license: mit
pipeline_tag: text-classification
---
mutil-lable classify
Fine_tuning bert_base by a dataset classified by 20 clusters from Science Direct Topic
# Use a pipeline as a high-level helper
```
from transformers import pipeline
classifier = pipeline("text-classification", model="xiaoxibing/paper_classify_fine_tuning_bert")
classifier("""The Growing Role of Digital Health Tools in the Care of Patients with Cancer: Current Use, Future Opportunities, and Barriers to Effective Implementation""")
``` |