Text Generation
Transformers
PyTorch
llama
text-generation-inference
How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="sharpbai/open_llama_7b")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("sharpbai/open_llama_7b")
model = AutoModelForCausalLM.from_pretrained("sharpbai/open_llama_7b")
Quick Links

OpenLLaMA: An Open Reproduction of LLaMA

A 405M split weight version of openlm-research/open_llama_7b

Downloads last month
10
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train sharpbai/open_llama_7b