Instructions to use IlyasMoutawwakil/tiny-random-GptOss-MXFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use IlyasMoutawwakil/tiny-random-GptOss-MXFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="IlyasMoutawwakil/tiny-random-GptOss-MXFP4")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("IlyasMoutawwakil/tiny-random-GptOss-MXFP4") model = AutoModelForCausalLM.from_pretrained("IlyasMoutawwakil/tiny-random-GptOss-MXFP4", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use IlyasMoutawwakil/tiny-random-GptOss-MXFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "IlyasMoutawwakil/tiny-random-GptOss-MXFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "IlyasMoutawwakil/tiny-random-GptOss-MXFP4", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/IlyasMoutawwakil/tiny-random-GptOss-MXFP4
- SGLang
How to use IlyasMoutawwakil/tiny-random-GptOss-MXFP4 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 "IlyasMoutawwakil/tiny-random-GptOss-MXFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "IlyasMoutawwakil/tiny-random-GptOss-MXFP4", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "IlyasMoutawwakil/tiny-random-GptOss-MXFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "IlyasMoutawwakil/tiny-random-GptOss-MXFP4", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use IlyasMoutawwakil/tiny-random-GptOss-MXFP4 with Docker Model Runner:
docker model run hf.co/IlyasMoutawwakil/tiny-random-GptOss-MXFP4
tiny-random-GptOss-MXFP4
A tiny random model for testing, shrunk from openai/gpt-oss-120b: the same
architecture, quantization config and checkpoint layout at test sizes. Its key patterns, dtypes and tensor ranks match
the real checkpoint's (scripts/extract_layout.py).
MXFP4 experts as {proj}_blocks (E, N, K/32, 16) + {proj}_scales (E, N, K/32) E8M0 bytes, gate|up rows interleaved, everything else bf16. Quantized with OpenAI's triton_kernels reference (downcast_to_mxfp_torch).
reference/ holds the same weights dequantized to bf16, under the unquantized model's keys: the reference to compare
logits against, so a test measures what the load path and kernels add, not the quantization itself.
The weights are random; the outputs mean nothing. scripts/ rebuilds it from the real checkpoint's config.json.
- Downloads last month
- 217