# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("Multi-Domain-Expert-Learning/falcon1b", trust_remote_code=True, dtype="auto")Quick Links
A 1b param model distilled from falcon-7b.
- Downloads last month
- 24
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Multi-Domain-Expert-Learning/falcon1b", trust_remote_code=True)