Text Classification
Transformers
TensorBoard
Safetensors
distilbert
Trained with AutoTrain
text-embeddings-inference
Instructions to use dhananjay2912/clinicalbert_aci_bench_section_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dhananjay2912/clinicalbert_aci_bench_section_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dhananjay2912/clinicalbert_aci_bench_section_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("dhananjay2912/clinicalbert_aci_bench_section_classifier") model = AutoModelForSequenceClassification.from_pretrained("dhananjay2912/clinicalbert_aci_bench_section_classifier") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("dhananjay2912/clinicalbert_aci_bench_section_classifier")
model = AutoModelForSequenceClassification.from_pretrained("dhananjay2912/clinicalbert_aci_bench_section_classifier")Quick Links
Model Trained Using AutoTrain
- Problem type: Text Classification
Validation Metrics
loss: 1.0647395849227905
f1_macro: 0.4558641367469575
f1_micro: 0.74
f1_weighted: 0.7165269403625714
precision_macro: 0.47941017316017315
precision_micro: 0.74
precision_weighted: 0.7261709956709957
recall_macro: 0.4931601731601732
recall_micro: 0.74
recall_weighted: 0.74
accuracy: 0.74
- Downloads last month
- 2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dhananjay2912/clinicalbert_aci_bench_section_classifier")