Text Classification
Transformers
Safetensors
English
deberta-v2
textclassification
text-embeddings-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("danendrafidel/modul-6")
model = AutoModelForSequenceClassification.from_pretrained("danendrafidel/modul-6")Quick Links
README.md exists but content is empty.
- Downloads last month
- 1
Model tree for danendrafidel/modul-6
Base model
microsoft/deberta-v3-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="danendrafidel/modul-6")