Instructions to use QuantFactory/Lite-Oute-1-65M-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use QuantFactory/Lite-Oute-1-65M-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/Lite-Oute-1-65M-GGUF", filename="Lite-Oute-1-65M.Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use QuantFactory/Lite-Oute-1-65M-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use QuantFactory/Lite-Oute-1-65M-GGUF with Ollama:
ollama run hf.co/QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
- Unsloth Studio new
How to use QuantFactory/Lite-Oute-1-65M-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for QuantFactory/Lite-Oute-1-65M-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for QuantFactory/Lite-Oute-1-65M-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for QuantFactory/Lite-Oute-1-65M-GGUF to start chatting
- Docker Model Runner
How to use QuantFactory/Lite-Oute-1-65M-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/Lite-Oute-1-65M-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/Lite-Oute-1-65M-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Lite-Oute-1-65M-GGUF-Q4_K_M
List all available models
lemonade list
output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)QuantFactory/Lite-Oute-1-65M-GGUF
This is quantized version of OuteAI/Lite-Oute-1-65M created using llama.cpp
Original Model Card
Lite-Oute-1-65M
Lite-Oute-1-65M (Base) is an experimental ultra-compact base model in the Lite series, built on the LLaMA architecture and comprising approximately 65 million parameters.
This model is intended as a starting point for fine-tuning on highly specific or narrow tasks.
Due to its extremely small size, this model demonstrates basic text generation abilities but struggle with instructions or maintaining topic coherence.
Available versions:
Lite-Oute-1-65M-Instruct
Lite-Oute-1-65M-Instruct-GGUF
Lite-Oute-1-65M
Lite-Oute-1-65M-GGUF
Benchmarks:
| Benchmark | 5-shot | 0-shot |
|---|---|---|
| ARC Challenge | 21.42 | 22.44 |
| ARC Easy | 38.34 | 41.25 |
| CommonsenseQA | 18.84 | 19.49 |
| HellaSWAG | 28.30 | 28.27 |
| MMLU | 25.44 | 23.05 |
| OpenBookQA | 26.20 | 27.60 |
| PIQA | 60.17 | 60.45 |
| Winogrande | 51.22 | 51.70 |
Usage with HuggingFace transformers
The model can be used with HuggingFace's transformers library:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model = AutoModelForCausalLM.from_pretrained("OuteAI/Lite-Oute-1-65M").to(device)
tokenizer = AutoTokenizer.from_pretrained("OuteAI/Lite-Oute-1-65M")
def generate_response(message: str, temperature: float = 0.4, repetition_penalty: float = 1.12) -> str:
# Convert message to PyTorch tensors
input_ids = tokenizer.encode(
message, return_tensors="pt"
).to(device)
# Generate the response
output = model.generate(
input_ids,
max_length=256,
temperature=temperature,
repetition_penalty=repetition_penalty,
do_sample=True
)
# Decode the generated output
generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
return generated_text
message = "Scientists have made a breakthrough in renewable energy by developing a new type of"
response = generate_response(message)
print(response)
Risk Disclaimer
By using this model, you acknowledge that you understand and assume the risks associated with its use. You are solely responsible for ensuring compliance with all applicable laws and regulations. We disclaim any liability for problems arising from the use of this open-source model, including but not limited to direct, indirect, incidental, consequential, or punitive damages. We make no warranties, express or implied, regarding the model's performance, accuracy, or fitness for a particular purpose. Your use of this model is at your own risk, and you agree to hold harmless and indemnify us, our affiliates, and our contributors from any claims, damages, or expenses arising from your use of the model.
- Downloads last month
- 18
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/Lite-Oute-1-65M-GGUF", filename="", )