Text Generation
Transformers
Safetensors
smollm3
distillation
knowledge-distillation
Mixture of Experts
dense
causal-lm
research
conversational
Eval Results (legacy)
Instructions to use OdaxAI/DANTE-Mosaic-3.5B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OdaxAI/DANTE-Mosaic-3.5B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OdaxAI/DANTE-Mosaic-3.5B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("OdaxAI/DANTE-Mosaic-3.5B") model = AutoModelForCausalLM.from_pretrained("OdaxAI/DANTE-Mosaic-3.5B") 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
- vLLM
How to use OdaxAI/DANTE-Mosaic-3.5B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OdaxAI/DANTE-Mosaic-3.5B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OdaxAI/DANTE-Mosaic-3.5B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OdaxAI/DANTE-Mosaic-3.5B
- SGLang
How to use OdaxAI/DANTE-Mosaic-3.5B 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 "OdaxAI/DANTE-Mosaic-3.5B" \ --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": "OdaxAI/DANTE-Mosaic-3.5B", "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 "OdaxAI/DANTE-Mosaic-3.5B" \ --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": "OdaxAI/DANTE-Mosaic-3.5B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use OdaxAI/DANTE-Mosaic-3.5B with Docker Model Runner:
docker model run hf.co/OdaxAI/DANTE-Mosaic-3.5B
| """ | |
| Example inference for DANTE-Mosaic-3.5B. | |
| Usage: | |
| python example_inference.py | |
| python example_inference.py --model YourOrg/DANTE-Mosaic-3.5B | |
| python example_inference.py --model ./local_path/ | |
| Run on a single A100 / RTX 4090 / H100. ~5.8 GB VRAM in BF16. | |
| """ | |
| from __future__ import annotations | |
| import argparse | |
| import time | |
| import torch | |
| from transformers import AutoModelForCausalLM, AutoTokenizer | |
| PROMPTS = [ | |
| ("MATH", "What is the derivative of f(x) = x^3 + 2x^2 - 5x + 1? Show step by step."), | |
| ("CODE", "Write a Python function that checks if a string is a palindrome. Include a docstring and edge cases."), | |
| ("LOGIC", "A bat and a ball cost $1.10 in total. The bat costs $1.00 more than the ball. How much does the ball cost? Explain."), | |
| ("ITA", "Spiega cos'è il machine learning in termini semplici, adatti a uno studente delle superiori."), | |
| ] | |
| def main(): | |
| p = argparse.ArgumentParser() | |
| p.add_argument("--model", default="./", | |
| help="HF repo id or local path to the model directory") | |
| p.add_argument("--max-new-tokens", type=int, default=256) | |
| p.add_argument("--temperature", type=float, default=0.7) | |
| p.add_argument("--top-p", type=float, default=0.9) | |
| args = p.parse_args() | |
| device = "cuda" if torch.cuda.is_available() else "cpu" | |
| print(f"Loading {args.model} on {device} ...") | |
| t0 = time.time() | |
| tok = AutoTokenizer.from_pretrained(args.model, trust_remote_code=True) | |
| model = AutoModelForCausalLM.from_pretrained( | |
| args.model, | |
| torch_dtype=torch.bfloat16, | |
| device_map="auto", | |
| trust_remote_code=True, | |
| ).eval() | |
| print(f"Loaded in {time.time()-t0:.1f}s " | |
| f"({sum(p.numel() for p in model.parameters())/1e9:.2f}B params)\n") | |
| for tag, prompt in PROMPTS: | |
| print("─" * 60) | |
| print(f"[{tag}] {prompt}\n") | |
| inputs = tok(prompt, return_tensors="pt").to(model.device) | |
| plen = inputs["input_ids"].shape[-1] | |
| t0 = time.time() | |
| with torch.no_grad(): | |
| out = model.generate( | |
| **inputs, | |
| max_new_tokens=args.max_new_tokens, | |
| do_sample=True, | |
| temperature=args.temperature, | |
| top_p=args.top_p, | |
| repetition_penalty=1.1, | |
| pad_token_id=tok.eos_token_id, | |
| ) | |
| new_toks = out.shape[-1] - plen | |
| elapsed = time.time() - t0 | |
| text = tok.decode(out[0][plen:], skip_special_tokens=True).strip() | |
| print(text) | |
| print(f"\n [{new_toks} tokens in {elapsed:.1f}s — {new_toks/elapsed:.1f} tok/s]\n") | |
| if __name__ == "__main__": | |
| main() | |