Instructions to use EpistemeAI/gpt-oss-deepplan with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EpistemeAI/gpt-oss-deepplan with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("EpistemeAI/gpt-oss-deepplan", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use EpistemeAI/gpt-oss-deepplan 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 EpistemeAI/gpt-oss-deepplan 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 EpistemeAI/gpt-oss-deepplan to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for EpistemeAI/gpt-oss-deepplan to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="EpistemeAI/gpt-oss-deepplan", max_seq_length=2048, )
This fine tune model is inspired by Nathan Lambert's talk "Traits of Next Generation Reasoning Models". It introduces a structured multi-phase reasoning cycle for large language models (LLMs).
The fine tune model extends beyond simple question-answer pairs by adding explicit reasoning phases:
- Planning – The model outlines a step-by-step plan before attempting a solution.
- Answering – The model provides its initial solution.
- Double-Checking – The model revisits its answer, verifying correctness and coherence.
- Confidence – The model assigns a confidence score or justification for its final response. This structure encourages models to reason more transparently, self-correct, and calibrate their confidence.
Uploaded model
- Developed by: EpistemeAI
- License: apache-2.0
- Finetuned from model : unsloth/gpt-oss-20b-unsloth-bnb-4bit
This gpt_oss model was trained 2x faster with Unsloth and Huggingface's TRL library.
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 1 Ask for provider support
Model tree for EpistemeAI/gpt-oss-deepplan
Base model
openai/gpt-oss-20b Quantized
unsloth/gpt-oss-20b-unsloth-bnb-4bit
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("EpistemeAI/gpt-oss-deepplan", dtype="auto")