amphion/Emilia-Dataset
Viewer • Updated • 54.8M • 46.9k • 457
How to use Fluospark128/Model1111 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Fluospark128/Model1111") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Fluospark128/Model1111", dtype="auto")# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Fluospark128/Model1111", dtype="auto")Base model
meta-llama/Llama-3.1-8B
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Fluospark128/Model1111")