Image-Text-to-Text
Transformers
GGUF
English
qwen3_5
qwen3.8-froggeric-v22.4
qwen3_5_text
conversational
q4nx
quantized
npu2
fastflowlm
fastflow
flm
empero-ai
qwen3.8
distillation
reasoning
Instructions to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Atomic-Germ/Qwen3.8-Distilled-2B-NPU2") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Atomic-Germ/Qwen3.8-Distilled-2B-NPU2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 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 Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0 # Run inference directly in the terminal: llama cli -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0 # Run inference directly in the terminal: llama cli -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
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 Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
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 Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
Use Docker
docker model run hf.co/Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
- LM Studio
- Jan
- vLLM
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
- SGLang
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Ollama
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with Ollama:
ollama run hf.co/Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
- Unsloth Desktop
- Pi
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with Docker Model Runner:
docker model run hf.co/Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
- Lemonade
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
Run and chat with the model
lemonade run user.Qwen3.8-Distilled-2B-NPU2-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
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 Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Atomic-Germ/Qwen3.8-Distilled-2B-NPU2 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0
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 "Atomic-Germ/Qwen3.8-Distilled-2B-NPU2:Q8_0" \ --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"
Upload flm-test.log with huggingface_hub
Browse files- flm-test.log +84 -0
flm-test.log
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Please ensure you have started the FLM server and have the correct URL and port.
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
Checking flm version...
|
| 5 |
+
Detected flm version: 1.0.1
|
| 6 |
+
|
| 7 |
+
Fetching available models...
|
| 8 |
+
|
| 9 |
+
=== Starting LLM Tests ===
|
| 10 |
+
Models found: 1
|
| 11 |
+
|
| 12 |
+
--- Testing LLM model: qwen3.8-distill:2b ---
|
| 13 |
+
|
| 14 |
+
Testing stream mode...
|
| 15 |
+
|
| 16 |
+
Prompt: Teach me Maxwell's equations.
|
| 17 |
+
Done.
|
| 18 |
+
Follow-up Prompt: Explain why they are important.
|
| 19 |
+
Done.
|
| 20 |
+
Finished testing model: qwen3.8-distill:2b
|
| 21 |
+
|
| 22 |
+
LLM tests complete. Saved to results/20260824_112808/linux/llm_results_v1.0.1.csv
|
| 23 |
+
|
| 24 |
+
Checking flm version...
|
| 25 |
+
Detected flm version: 1.0.1
|
| 26 |
+
|
| 27 |
+
Fetching available models...
|
| 28 |
+
1. qwen3.8-distill:2b
|
| 29 |
+
|
| 30 |
+
=== Starting Vision Tests ===
|
| 31 |
+
Models found: 1
|
| 32 |
+
|
| 33 |
+
--- Testing VLMs: qwen3.8-distill:2b ---
|
| 34 |
+
Prompt: Extract text from the first image, describe the second one, and imagine what the spectrogram might sound like.
|
| 35 |
+
Text extraction check: PASS
|
| 36 |
+
Done.
|
| 37 |
+
Follow-up Prompt: Make a story that connects the images together.
|
| 38 |
+
Seagull check: PASS (recognized in description)
|
| 39 |
+
Done.
|
| 40 |
+
Follow-up Prompt: What kind of sound does the spectrogram represent?
|
| 41 |
+
Spectrogram music check: PASS
|
| 42 |
+
Done.
|
| 43 |
+
Finished testing model: qwen3.8-distill:2b
|
| 44 |
+
Vision tests complete. Saved to results/20260824_112950/linux/vision_results_v1.0.1.csv
|
| 45 |
+
|
| 46 |
+
Checking flm version...
|
| 47 |
+
Detected flm version: 1.0.1
|
| 48 |
+
|
| 49 |
+
Fetching available models...
|
| 50 |
+
|
| 51 |
+
=== Starting Tool Calling Tests ===
|
| 52 |
+
Models found: 1
|
| 53 |
+
Reasoning effort requested: medium
|
| 54 |
+
|
| 55 |
+
--- Testing tool-calling model: qwen3.8-distill:2b ---
|
| 56 |
+
|
| 57 |
+
Testing non-stream mode...
|
| 58 |
+
L1 Basic Tool Call: What's the current weather in Paris right now? Use the tools available to you.
|
| 59 |
+
Check result: FAIL (no tool call issued)
|
| 60 |
+
L2 Argument Extraction: A friend of mine lives in the city where the Eiffel Tower stands. Use your tools to tell me the current weather there.
|
| 61 |
+
Check result: PASS (called get_current_weather with location 'Paris')
|
| 62 |
+
L3 Tool Restraint: Do not call any tools. Answer directly from your own knowledge: what is the capital of France?
|
| 63 |
+
Check result: PASS (answered directly without any tool call)
|
| 64 |
+
L4 Parallel Tool Calls: Using your tools, compare the current weather in Paris and Tokyo.
|
| 65 |
+
Check result: FAIL (no tool call issued)
|
| 66 |
+
L5 Multi-Turn Tool Loop: Use the price lookup tool to check the unit price of a 'widget', then tell me what 3 widgets would cost after a 10% discount. Do the math yourself.
|
| 67 |
+
Lookup check result: PASS (requested price for 'widget')
|
| 68 |
+
Final answer check result: PASS (final answer contains the computed total ($54))
|
| 69 |
+
|
| 70 |
+
Testing stream mode...
|
| 71 |
+
L1 Basic Tool Call: What's the current weather in Paris right now? Use the tools available to you.
|
| 72 |
+
Check result: PASS (called get_current_weather with location 'Paris')
|
| 73 |
+
L2 Argument Extraction: A friend of mine lives in the city where the Eiffel Tower stands. Use your tools to tell me the current weather there.
|
| 74 |
+
Check result: PASS (called get_current_weather with location 'Paris, France')
|
| 75 |
+
L3 Tool Restraint: Do not call any tools. Answer directly from your own knowledge: what is the capital of France?
|
| 76 |
+
Check result: PASS (answered directly without any tool call)
|
| 77 |
+
L4 Parallel Tool Calls: Using your tools, compare the current weather in Paris and Tokyo.
|
| 78 |
+
Check result: FAIL (no tool call issued)
|
| 79 |
+
L5 Multi-Turn Tool Loop: Use the price lookup tool to check the unit price of a 'widget', then tell me what 3 widgets would cost after a 10% discount. Do the math yourself.
|
| 80 |
+
Lookup check result: FAIL (no tool call issued for the price lookup)
|
| 81 |
+
Final answer check result: FAIL (computed total $54 not found in final answer)
|
| 82 |
+
Finished testing model: qwen3.8-distill:2b
|
| 83 |
+
|
| 84 |
+
Tool calling tests complete. Saved to results/20260824_113114/linux/tools_results_v1.0.1.csv
|