TRACE-DeBERTa-v3-base
95
license:mit
by
yundog
Other
OTHER
New
95 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
How to Get Started with the Modelpythontransformers
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
# Load model and tokenizer
model = AutoModelForSequenceClassification.from_pretrained("yundog/TRACE-DeBERTa-v3-base")
tokenizer = AutoTokenizer.from_pretrained("yundog/TRACE-DeBERTa-v3-base")
# Predict
text = "Therefore, I conclude that the hypothesis is correct."
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=512)
with torch.no_grad():
outputs = model(**inputs)
predictions = torch.sigmoid(outputs.logits)[0] # Multi-label classification
# Print results
for label, score in zip(model.config.id2label.values(), predictions):
print(f"{label}: {score:.3f}")Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.