output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)This is a big step forward for 3B class models. Trained on smol PIPPA, alpaca-cleaned, and two custom datasets, and based on https://huggingface.co/jeiku/Rosa_v3_3B
This should serve as a decent fiction model, though it also excels at roleplaying, but is not an ideal model for logical queries or riddles.
- Downloads last month
- 8
Hardware compatibility
Log In to add your hardware
2-bit
6-bit
16-bit
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="jeiku/Foundation_3B_GGUF", filename="", )