Instructions to use arcee-ai/Virtuoso-Lite-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use arcee-ai/Virtuoso-Lite-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("arcee-ai/Virtuoso-Lite-GGUF", dtype="auto") - llama-cpp-python
How to use arcee-ai/Virtuoso-Lite-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="arcee-ai/Virtuoso-Lite-GGUF", filename="Virtuoso-Lite-IQ2_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use arcee-ai/Virtuoso-Lite-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf arcee-ai/Virtuoso-Lite-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 arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf arcee-ai/Virtuoso-Lite-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 arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf arcee-ai/Virtuoso-Lite-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 arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
Use Docker
docker model run hf.co/arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use arcee-ai/Virtuoso-Lite-GGUF with Ollama:
ollama run hf.co/arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
- Unsloth Studio new
How to use arcee-ai/Virtuoso-Lite-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 arcee-ai/Virtuoso-Lite-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 arcee-ai/Virtuoso-Lite-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for arcee-ai/Virtuoso-Lite-GGUF to start chatting
- Pi new
How to use arcee-ai/Virtuoso-Lite-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use arcee-ai/Virtuoso-Lite-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use arcee-ai/Virtuoso-Lite-GGUF with Docker Model Runner:
docker model run hf.co/arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
- Lemonade
How to use arcee-ai/Virtuoso-Lite-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull arcee-ai/Virtuoso-Lite-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Virtuoso-Lite-GGUF-Q4_K_M
List all available models
lemonade list
Virtuoso-Lite (10B) is our next-generation, 10-billion-parameter language model based on the Llama-3 architecture. It is distilled from Deepseek-v3 using ~1.1B tokens/logits, allowing it to achieve robust performance at a significantly reduced parameter count compared to larger models. Despite its compact size, Virtuoso-Lite excels in a variety of tasks, demonstrating advanced reasoning, code generation, and mathematical problem-solving capabilities.
Model Details
- Architecture Base: Falcon-10B (based on Llama-3)
- Parameter Count: 10B
- Tokenizer:
- Initially integrated with Deepseek-v3 tokenizer for logit extraction.
- Final alignment uses the Llama-3 tokenizer, with specialized “tokenizer surgery” for cross-architecture compatibility.
- Distillation Data:
- ~1.1B tokens/logits from Deepseek-v3’s training data.
- Logit-level distillation using a proprietary “fusion merging” approach for maximum fidelity.
- License: falcon-llm-license
Background on Deepseek Distillation
Deepseek-v3 serves as the teacher model, from which we capture logits across billions of tokens. Rather than standard supervised fine-tuning, Virtuoso-Lite applies a full logit-level replication to preserve the most crucial insights from the teacher. This approach enables:
- Strong performance on technical/scientific queries
- Enhanced code generation and debugging
- Improved consistency in math-intensive tasks
Intended Use Cases
- Chatbots & Virtual Assistants
- Lightweight Enterprise Data Analysis
- Research Prototypes & Proofs of Concept
- STEM Educational Tools (where smaller footprint is advantageous)
Evaluations
How to Use
Below is a sample code snippet using transformers:
from transformers import AutoTokenizer, AutoModelForCausalLM
model_name = "arcee-ai/virtuoso-lite"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
prompt = "Provide a concise summary of quantum entanglement."
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=150)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Training & Fine-Tuning
- Initial Training: Began with Falcon-10B, optimized for large-scale text ingestion.
- Distillation & Merging:
- Trained on ~1.1B tokens/logits from Deepseek-v3.
- Employed “fusion merging” to capture detailed teacher insights.
- Final step included DPO to enhance alignment and mitigate hallucinations.
- Future Developments: We plan to incorporate additional R1 distillations to further improve specialized performance and reduce model footprint.
Performance
Virtuoso-Lite demonstrates strong results across multiple benchmarks (e.g., BBH, MMLU-PRO, MATH), often standing its ground against models with higher parameter counts. This efficiency is largely credited to logit-level distillation, which compresses the teacher model’s capabilities into a more parameter-friendly package.
Limitations
- Context Length: 128k Tokens (may vary depending on the final tokenizer settings and system resources).
- Knowledge Cut-off: Training data may not reflect the latest events or developments beyond June 2024.
Ethical Considerations
- Content Generation Risks: Like any language model, Virtuoso-Lite can generate potentially harmful or biased content if prompted in certain ways.
License
Virtuoso-Lite (10B) is released under the falcon-llm-license License. You are free to use, modify, and distribute this model in both commercial and non-commercial applications, subject to the terms and conditions of the license.
If you have questions or would like to share your experiences using Virtuoso-Lite (10B), please connect with us on social media. We’re excited to see what you build—and how this model helps you innovate!
- Downloads last month
- 302
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for arcee-ai/Virtuoso-Lite-GGUF
Base model
tiiuae/Falcon3-10B-Base