Instructions to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
Use Docker
docker model run hf.co/aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with Ollama:
ollama run hf.co/aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
- Unsloth Studio
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF to start chatting
- Pi
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-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": "aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with Docker Model Runner:
docker model run hf.co/aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
- Lemonade
How to use aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Atlas-Pro-7B-Preview-1M-GGUF-Q4_K_M
List all available models
lemonade list
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:# Run inference directly in the terminal:
llama cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF: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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:# Run inference directly in the terminal:
./llama-cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF: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 aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:# Run inference directly in the terminal:
./build/bin/llama-cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Use Docker
docker model run hf.co/aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:Spestly/Atlas-Pro-7B-Preview-1M
Model Overview
Atlas-Pro-7B-Preview-1M is a fine-tuned version of the Qwen2.5-7B-Instruct-1M model, tailored for superior performance in general-purpose question answering and reasoning tasks. This model focuses on delivering clear, concise answers while maintaining a natural, conversational tone. By incorporating subtle grammatical imperfections, it creates a more relatable and human-like interaction style.
Key Features:
- Enhanced Reasoning Capabilities: Fine-tuning has improved the model's ability to handle reasoning-focused questions with better accuracy and depth.
- Humanized Interaction: Subtle grammar imperfections are included intentionally to emulate a more human-like conversational experience.
- Improved QA Performance: Extensive training has refined the model's ability to respond to questions accurately and contextually.
Model Details
- Base Model: Qwen/Qwen2.5-7B-Instruct-1M
- Fine-Tuned Dataset: A carefully curated mix of instructional and conversational data, designed to improve reasoning and question-answering performance.
- Parameter Count: 7 billion (7B)
- Architecture: Transformer-based, leveraging the Qwen2.5 architecture for high efficiency and accuracy.
- Context Window: 1 Million Tokens
Training Procedure
The model was fine-tuned using the following strategies:
- Dataset Quality: A diverse dataset was selected (Public and Private), focusing on improving reasoning and conversational understanding.
- Humanization: Data augmentation techniques were employed to add slight grammar imperfections, mimicking human language patterns.
- Optimization: Training was conducted using mixed-precision techniques to ensure efficiency without compromising performance.
Limitations
While the model excels in reasoning and answering questions, it:
- May produce occasional inaccuracies if provided with ambiguous or incomplete queries.
- Does not specialize in niche technical domains or highly specific knowledge areas outside its training data.
- Subtle grammatical errors are intentional and may occasionally appear in unintended contexts.
Usage
The model can be used for:
- Interactive chatbots with a humanized tone.
- General-purpose reasoning and question-answering tasks.
- Personal assistant tools designed for natural communication.
Example Usage
Basic: Ollama + LM Studio
I recommend that you use LM Studio. Later down the Atlas development, Alternative you can also run it via Ollama with this Ollama command:
ollama run hf.co/Spestly/Atlas-Pro-7B-Preview-1M-GGUF:IQ4_XS
Remember to replace the tag at the end with the Quant you want to use
Advanced: TGI (Text Generation Interface):
WARNING!: Only use this method if you have experience using TGI.
First you need to start the TGI server via this command (Make sure you have docker installed):
# Deploy with docker on Linux:
docker run --gpus all \
-v ~/.cache/huggingface:/root/.cache/huggingface \
-e HF_TOKEN="<secret>" \
-p 8000:80 \
ghcr.io/huggingface/text-generation-inference:latest \
--model-id Spestly/Atlas-Pro-7B-Preview-1M-GGUF
You now call the server you just deployed!
# Call the server using curl:
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Spestly/Atlas-Pro-7B-Preview-1M-GGUF",
"messages": [
{"role": "user", "content": "What is the capital of France?"}
]
}'
Provided Quants
(sorted by size, not necessarily quality. IQ-quants are often preferable over similar sized non-IQ quants)
| Link | Type | Size/GB | Notes |
|---|---|---|---|
| GGUF | Q2_K | 3.1 | |
| GGUF | Q3_K_S | 3.6 | |
| GGUF | Q3_K_M | 3.9 | lower quality |
| GGUF | Q3_K_L | 4.2 | |
| GGUF | IQ4_XS | 4.4 | |
| GGUF | Q4_K_S | 4.6 | fast, recommended |
| GGUF | Q4_K_M | 4.8 | fast, recommended |
| GGUF | Q5_K_S | 5.4 | |
| GGUF | Q5_K_M | 5.5 | |
| GGUF | Q6_K | 6.4 | very good quality |
| GGUF | Q8_0 | 8.2 | fast, best quality |
| GGUF | f16 | 15.3 | 16 bpw, overkill |
Community
We encourage feedback and contributions from the community. Please report any issues or suggest improvements via the model’s Hugging Face page.
License: MIT
Contact: For questions or collaboration opportunities, please reach out via Hugging Face.
- Downloads last month
- 100
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
Model tree for aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF
Base model
Qwen/Qwen2.5-7B
Install (macOS, Linux)
# Start a local OpenAI-compatible server with a web UI: llama serve -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF:# Run inference directly in the terminal: llama cli -hf aayanmishra-ml/Atlas-Pro-7B-Preview-1M-GGUF: