GGUF
English
How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="Aryanne/Open-LLongMA-3B-gguf",
	filename="",
)
output = llm(
	"Once upon a time,",
	max_tokens=512,
	echo=True
)
print(output)

Here are a few GGUF(v2) quantizations of the model conceptofmind/Open-LLongMA-3b

Which is Based on: openlm-research/open_llama_3b

Open LLongMA 3B is a language model trained to have 8192 tokens of context size using linear rope_scaling 0.25, Using 1.0 it will output gibberish.

Downloads last month
33
GGUF
Model size
3B params
Architecture
llama
Hardware compatibility
Log In to add your hardware

4-bit

5-bit

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

Dataset used to train Aryanne/Open-LLongMA-3B-gguf