Babelscape/wikineural
Viewer • Updated • 1.03M • 4.63k • 37
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", dtype="auto")# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("daeunj/828A", dtype="auto")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="daeunj/828A")