# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("LLMs/Stable-Vicuna-13B")
model = AutoModelForCausalLM.from_pretrained("LLMs/Stable-Vicuna-13B")Quick Links
README.md exists but content is empty.
- Downloads last month
- 947
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="LLMs/Stable-Vicuna-13B")