Text Generation
Transformers
Safetensors
Rust
English
qwen3_moe
text-generation-inference
unsloth
code-generation
instruction-tuning
open-source
conversational
Instructions to use Daemontatox/HydraCoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Daemontatox/HydraCoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Daemontatox/HydraCoder") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Daemontatox/HydraCoder") model = AutoModelForCausalLM.from_pretrained("Daemontatox/HydraCoder", 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 Daemontatox/HydraCoder with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Daemontatox/HydraCoder" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Daemontatox/HydraCoder", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Daemontatox/HydraCoder
- SGLang
How to use Daemontatox/HydraCoder 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 "Daemontatox/HydraCoder" \ --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": "Daemontatox/HydraCoder", "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 "Daemontatox/HydraCoder" \ --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": "Daemontatox/HydraCoder", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use Daemontatox/HydraCoder 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 Daemontatox/HydraCoder 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 Daemontatox/HydraCoder to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Daemontatox/HydraCoder to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Daemontatox/HydraCoder", max_seq_length=2048, ) - Docker Model Runner
How to use Daemontatox/HydraCoder with Docker Model Runner:
docker model run hf.co/Daemontatox/HydraCoder
| language: | |
| - en | |
| license: apache-2.0 | |
| tags: | |
| - text-generation-inference | |
| - transformers | |
| - unsloth | |
| - qwen3_moe | |
| - rust | |
| - code-generation | |
| - instruction-tuning | |
| - open-source | |
| library_name: transformers | |
| base_model: Qwen/Qwen3-Coder-30B-A3B-Instruct | |
| model_name: Daemontatox/HydraCoder | |
| trained_with: | |
| - Unsloth | |
| - Hugging Face TRL | |
| datasets: | |
| - Tesslate/Rust_Dataset | |
| - ysr/rust_instruction_dataset | |
| - saurabh5/rlvr-code-data-Rust | |
|  | |
| Daemontatox/HydraCoder | |
| HydraCoder is a state-of-the-art Rust-specialized coding model built on Qwen/Qwen3-Coder-30B-A3B-Instruct, designed for high-fidelity, idiomatic Rust code generation, completion, and repair. | |
| This is the strongest pure Rust model to date, specifically fine-tuned on real-world projects, crates, compiler patterns, and Rust best practices. | |
| π¦ Key Features | |
| Focused on Rust: Trained on diverse idiomatic Rust repositories, including tokio, serde, actix, clap, and async ecosystems. | |
| Instruction-tuned: Accepts natural instructions like "write a TCP server" or "convert this struct to JSON". | |
| Zero-shot Capable: Performs well without examples, and adapts to many Rust-specific patterns like lifetimes, Result<T, E>, traits, ownership, and borrow checking. | |
| --- | |
| # Training parameters | |
| ### Max Sequence length : 8192 | |
| ### r = 32 , alpha = 64 | |
| ### bias is none | |
| ### lora dropout = 0.01 | |
| ### learning rate : 2e-4 / 2e-5 depinding on your dataset | |
| ### 2 epochs | |
| ### lr schedular = cosine | |
| ### weight decay is 0.05 | |
| ### warmup ration = 0.02 | |
| ### system prompt : | |
| ``` | |
| You are a reasoning-focused AI assistant with expertise in Rust and large language models (LLMs). | |
| Your goal is to solve tasks by thinking step-by-step, applying principles of systems programming, memory safety, and performance-aware design. | |
| Use logical deduction, structured thinking, and factual grounding rooted in the Rust ecosystem and machine learning best practices. | |
| Ask for clarification if the input is ambiguous. | |
| Keep your answers concise but well-justified, referencing relevant Rust constructs or ML paradigms when helpful. | |
| Approach this like an intermediate-level Rust and LLM engineer. | |
| Break down the problem into partsβsuch as data ownership, type safety, concurrency, or model architecture. | |
| Identify assumptions, make inferences, and evaluate alternatives with a focus on correctness and efficiency. | |
| Avoid overconfidence. | |
| Explain your reasoning clearly, even if the final answer is simple. | |
| prompt: | |
| {} | |
| Reasoning: | |
| {} | |
| response: | |
| {} | |
| ``` | |
| π§ Intended Use | |
| HydraCoder is ideal for: | |
| Rust code generation from natural instructions | |
| Auto-completion and snippet insertion in editors | |
| Static analysis assistant tools | |
| Compiler plugin or LSP augmentation | |
| Refactoring or code review suggestions | |
| Code repair or bugfix generation | |
| --- | |
| π¬ Model Details | |
| Property Value | |
| Base Model Qwen/Qwen3-Coder-30B-A3B-Instruct | |
| Fine-tuned Model Daemontatox/HydraCoder | |
| Model Type Mixture-of-Experts (2/8 active experts) | |
| Parameters ~30B (with 2 active experts, ~7.5B per step) | |
| Domain Specialization Idiomatic Rust Code | |
| Training Tooling Unsloth + Hugging Face TRL | |
| License Apache 2.0 | |
| --- | |
| βοΈ Example Prompt | |
| Prompt: | |
| Write a simple multithreaded web server in Rust that serves "Hello, world!" to any GET request. | |
| HydraCoder Output: | |
| ```rust | |
| use std::net::{TcpListener, TcpStream}; | |
| use std::io::{Read, Write}; | |
| use std::thread; | |
| fn handle_client(mut stream: TcpStream) { | |
| let mut buffer = [0; 1024]; | |
| if let Ok(_) = stream.read(&mut buffer) { | |
| let response = "HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\n\r\nHello, world!"; | |
| let _ = stream.write(response.as_bytes()); | |
| } | |
| } | |
| fn main() -> std::io::Result<()> { | |
| let listener = TcpListener::bind("127.0.0.1:7878")?; | |
| println!("Server listening on port 7878..."); | |
| for stream in listener.incoming() { | |
| match stream { | |
| Ok(stream) => { | |
| thread::spawn(|| { | |
| handle_client(stream); | |
| }); | |
| } | |
| Err(e) => eprintln!("Connection failed: {}", e), | |
| } | |
| } | |
| Ok(()) | |
| } | |
| ``` | |
| --- | |
| β‘ Inference Code | |
| You can run inference using transformers and text-generation pipeline: | |
| ```python | |
| from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline | |
| model_id = "Daemontatox/HydraCoder" | |
| tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True) | |
| model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", trust_remote_code=True) | |
| pipe = pipeline("text-generation", model=model, tokenizer=tokenizer) | |
| prompt = "Write a function in Rust that takes a list of integers and returns the sum of all even numbers." | |
| output = pipe(prompt, max_new_tokens=200, do_sample=True, temperature=0.2)[0]["generated_text"] | |
| print(output) | |
| ``` | |
| --- | |
| π§ͺ Benchmarks (Qualitative) | |
| HydraCoder performs especially well on: | |
| Code Rust (HumanEval / MBPP in Rust) β correctly compiling and idiomatic | |
| Leetcode-style Rust tasks | |
| Crate-specific patterns β understands macros, derive attributes, and lifetimes | |
| Ownership-safe solutions | |
| --- | |
| π Limitations | |
| Trained for Rust only β not suited for general-purpose multi-language tasks. | |
| May hallucinate external crate names or imports if not in prompt. | |
| Not guaranteed to pass Rust compiler unless prompt includes full context. | |
| --- | |
| β License | |
| Released under the Apache 2.0 License. Free for research and commercial use with attribution. | |
| --- | |
| π¨βπ» Author | |
| Model Developer: Daemontatox | |
| Base Model Author: Qwen Team | |
| Fine-tuned with: Unsloth + TRL | |
| --- |