Text Generation
Transformers
Safetensors
English
qwen3
text-generation-inference
Mixture of Experts
code
science
biology
chemistry
thinking
conversational
Instructions to use prithivMLmods/Explora-0.6B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Explora-0.6B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/Explora-0.6B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("prithivMLmods/Explora-0.6B") model = AutoModelForCausalLM.from_pretrained("prithivMLmods/Explora-0.6B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use prithivMLmods/Explora-0.6B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Explora-0.6B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Explora-0.6B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/Explora-0.6B
- SGLang
How to use prithivMLmods/Explora-0.6B 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 "prithivMLmods/Explora-0.6B" \ --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": "prithivMLmods/Explora-0.6B", "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 "prithivMLmods/Explora-0.6B" \ --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": "prithivMLmods/Explora-0.6B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use prithivMLmods/Explora-0.6B with Docker Model Runner:
docker model run hf.co/prithivMLmods/Explora-0.6B
| datasets: | |
| - prithivMLmods/Open-Omega-Explora-2.5M | |
| license: apache-2.0 | |
| language: | |
| - en | |
| base_model: | |
| - Qwen/Qwen3-0.6B | |
| pipeline_tag: text-generation | |
| library_name: transformers | |
| tags: | |
| - text-generation-inference | |
| - moe | |
| - code | |
| - science | |
| - biology | |
| - chemistry | |
| - thinking | |
|  | |
| # **Explora-0.6B** | |
| > **Explora-0.6B** is a lightweight and efficient **general-purpose reasoning model**, fine-tuned on **Qwen3-0.6B** using the first 100,000 entries of the **Open-Omega-Explora-2.5M** dataset. It is tailored for **science and code**-focused reasoning tasks, combining symbolic clarity with fluent instruction-following, ideal for exploratory workflows in STEM domains. | |
| > \[!note] | |
| > GGUF: [https://huggingface.co/prithivMLmods/Explora-0.6B-GGUF](https://huggingface.co/prithivMLmods/Explora-0.6B-GGUF) | |
| ## **Key Features** | |
| 1. **General-Purpose STEM Reasoning** | |
| Fine-tuned for **code and science problems**, the model handles symbolic reasoning, basic computations, and structured logic with clarity and fluency. | |
| 2. **Built on Qwen3-0.6B** | |
| Leverages the multilingual and instruction-tuned capabilities of **Qwen3-0.6B**, making it well-suited for lightweight deployments with strong core reasoning ability. | |
| 3. **Open-Omega-Explora Dataset** | |
| Trained on the **first 100k entries** of the **Open-Omega-Explora-2.5M** dataset, which includes a diverse mix of problems from math, code, and science domains. | |
| 4. **Balanced Thinking Mode** | |
| Supports moderate reasoning depth while avoiding excessive hallucination—great for **step-by-step problem solving**, **function generation**, and **explanatory output**. | |
| 5. **Compact & Deployable** | |
| At just **0.6B parameters**, it’s ideal for **offline environments**, **low-resource inference setups**, and **educational tools** requiring fast, reliable logic. | |
| 6. **Output Flexibility** | |
| Capable of producing answers in **Markdown**, **Python**, **JSON**, or plain text depending on the task—suitable for both human readability and integration into pipelines. | |
| ## **Quickstart with Transformers** | |
| ```python | |
| from transformers import AutoModelForCausalLM, AutoTokenizer | |
| model_name = "prithivMLmods/Explora-0.6B" | |
| model = AutoModelForCausalLM.from_pretrained( | |
| model_name, | |
| torch_dtype="auto", | |
| device_map="auto" | |
| ) | |
| tokenizer = AutoTokenizer.from_pretrained(model_name) | |
| prompt = "Explain Newton's second law of motion with a Python code example." | |
| messages = [ | |
| {"role": "system", "content": "You are a helpful science and code reasoning assistant."}, | |
| {"role": "user", "content": prompt} | |
| ] | |
| text = tokenizer.apply_chat_template( | |
| messages, | |
| tokenize=False, | |
| add_generation_prompt=True | |
| ) | |
| model_inputs = tokenizer([text], return_tensors="pt").to(model.device) | |
| generated_ids = model.generate( | |
| **model_inputs, | |
| max_new_tokens=256 | |
| ) | |
| generated_ids = [ | |
| output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids) | |
| ] | |
| response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0] | |
| print(response) | |
| ``` | |
| ## **Intended Use** | |
| * Educational and lightweight research tools | |
| * General science and programming help | |
| * Low-resource STEM assistant for code labs or classrooms | |
| * Fast-response agent for structured reasoning tasks | |
| ## **Limitations** | |
| * Not optimized for deep multi-hop reasoning or creative tasks | |
| * May require prompt engineering for highly specific technical queries | |
| * Smaller context window and lower fluency compared to larger models | |
| * Best used with **specific and scoped questions** for accurate outputs |