Instructions to use StandardThinking/StandardOne-8B-FP8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use StandardThinking/StandardOne-8B-FP8 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="StandardThinking/StandardOne-8B-FP8") 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 AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("StandardThinking/StandardOne-8B-FP8") model = AutoModelForMultimodalLM.from_pretrained("StandardThinking/StandardOne-8B-FP8", device_map="auto") 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?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use StandardThinking/StandardOne-8B-FP8 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "StandardThinking/StandardOne-8B-FP8" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "StandardThinking/StandardOne-8B-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/StandardThinking/StandardOne-8B-FP8
- SGLang
How to use StandardThinking/StandardOne-8B-FP8 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 "StandardThinking/StandardOne-8B-FP8" \ --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": "StandardThinking/StandardOne-8B-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "StandardThinking/StandardOne-8B-FP8" \ --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": "StandardThinking/StandardOne-8B-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use StandardThinking/StandardOne-8B-FP8 with Docker Model Runner:
docker model run hf.co/StandardThinking/StandardOne-8B-FP8
StandardOne-8B-FP8
StandardOne-8B-FP8 is an FP8 (compressed-tensors, float8_e4m3 weights, dynamic per-token activations)
quantization of the released StandardOne-8B decision model. The language-model linear
projections (q/k/v/o, gate/up/down) are quantized per-channel FP8 E4M3 with dynamic FP8
activations (llm-compressor's data-free FP8_DYNAMIC recipe, no calibration data required);
the vision tower, multi-modal projector, embeddings and lm_head are left unquantized in BF16.
It was produced from source revision e88423700bb5ab9b2f50e176cf19825914345272 of StandardOne-8B on 2026-09-25 using
llm-compressor 0.14.0 (torch 2.14.0, transformers 5.17.0,
compressed-tensors 0.19.0); results below.
Validation
Served through SGLang 0.5.20 and jev-adapter (native wording, no system prompt, one option order) on the
same items as the BF16 release, measured 2026-09-25. Accuracy is argmax and does not depend on temperature.
| Suite | BF16 (StandardOne-8B) | FP8 (this repository) |
|---|---|---|
| JevBench public easy (48) | 100.00 % | 100.00 % |
| JevBench public standard (72) | 94.44 % | 94.44 % |
| JevBench public hard (111) | 54.95 % | 51.35 % |
| judge proxy (600) | 90.50 % | 90.17 % |
| realistic transfer set (600) | 90.33 % | 90.00 % |
| stated-distribution probability (1,036) | 81.37 % | 81.27 % |
| hard proxy (600) | 52.50 % | 52.33 % |
Temperature refit on this checkpoint's own served probabilities (same held-out calibration data as the BF16
release): T = 1.4 (BF16 release: T = 1.65). Serve with --default-temperature 1.4.
- Downloads last month
- 23
Model tree for StandardThinking/StandardOne-8B-FP8
Base model
mistralai/Ministral-3-8B-Base-2512