SetFit/mnli
Viewer • Updated • 412k • 4.67k • 8
How to use daeunj/828A with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="daeunj/828A") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("daeunj/828A", device_map="auto")# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("daeunj/828A", device_map="auto")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="daeunj/828A")