Instructions to use fluently/FluentlyQwen2.5-32B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fluently/FluentlyQwen2.5-32B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="fluently/FluentlyQwen2.5-32B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("fluently/FluentlyQwen2.5-32B") model = AutoModelForCausalLM.from_pretrained("fluently/FluentlyQwen2.5-32B") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use fluently/FluentlyQwen2.5-32B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "fluently/FluentlyQwen2.5-32B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fluently/FluentlyQwen2.5-32B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/fluently/FluentlyQwen2.5-32B
- SGLang
How to use fluently/FluentlyQwen2.5-32B 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 "fluently/FluentlyQwen2.5-32B" \ --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": "fluently/FluentlyQwen2.5-32B", "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 "fluently/FluentlyQwen2.5-32B" \ --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": "fluently/FluentlyQwen2.5-32B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio new
How to use fluently/FluentlyQwen2.5-32B 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 fluently/FluentlyQwen2.5-32B 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 fluently/FluentlyQwen2.5-32B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for fluently/FluentlyQwen2.5-32B to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="fluently/FluentlyQwen2.5-32B", max_seq_length=2048, ) - Docker Model Runner
How to use fluently/FluentlyQwen2.5-32B with Docker Model Runner:
docker model run hf.co/fluently/FluentlyQwen2.5-32B
FluentlyQwen2.5 32B (a.k.a FluentlyLM Prinum (32B-version)
Introducing the first standalone model from Project Fluently LM! We worked on it for several months, used different approaches, and eventually found the optimal one.
Model Details
Model Description
- Developed by: @fluently-lm
- Model type: Causal Language Models (QwenForCausalLM, LM Transformer)
- Number of Parameters: 32.5B
- Number of Paramaters (Non-Embedding): 31.0B
- Number of Layers: 64
- Number of Attention Heads (GQA): 40 for Q and 8 for KV
- Context Length: Full 131,072 tokens
- Language(s) (NLP): English, French, Spanish, Russian, Chinese, Japanese, Persian (official support)
- License: MIT
Quickstart
Here provides a code snippet with apply_chat_template to show you how to load the tokenizer and model and how to generate contents.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "fluently-lm/FluentlyLM-Prinum"
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained(model_name)
prompt = "Write a quick sort algorithm."
messages = [
{"role": "system", "content": "You are FluentlyLM, created by Project Fluently. You are a helpful 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=1024
)
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]
GGUF-using
You can also use our model locally via GGUF file in various interfaces and workflows, we offer several repos for downloading GGUF:
- mradermacher/FluentlyLM-Prinum-GGUF (all GGUF-quants)
- fluently-lm/FluentlyLM-Prinum-Q4_K_M-GGUF (only Q4_K_M-quant) (coming soon...)
Model recipe
Evolution
🏆 12th place on Open LLM Leaderboard (21.02.2025)
Special thanks
🤗 We are grateful for open source resources, technologies and assistance from: Unsloth AI, Axolotl AI, Argilla, Alibaba Cloud: Qwen, NVIDIA and NousResearch.
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 47.22 |
| IFEval (0-Shot) | 80.90 |
| BBH (3-Shot) | 59.48 |
| MATH Lvl 5 (4-Shot) | 54.00 |
| GPQA (0-shot) | 18.23 |
| MuSR (0-shot) | 17.26 |
| MMLU-PRO (5-shot) | 53.42 |
- Downloads last month
- 46
Model tree for fluently/FluentlyQwen2.5-32B
Datasets used to train fluently/FluentlyQwen2.5-32B
fluently-sets/ultrathink
fluently-sets/MATH-500-Overall
Spaces using fluently/FluentlyQwen2.5-32B 3
Collection including fluently/FluentlyQwen2.5-32B
Evaluation results
- strict accuracy on IFEval (0-Shot)Open LLM Leaderboard80.900
- normalized accuracy on BBH (3-Shot)Open LLM Leaderboard59.480
- exact match on MATH Lvl 5 (4-Shot)Open LLM Leaderboard54.000
- acc_norm on GPQA (0-shot)Open LLM Leaderboard18.230
- acc_norm on MuSR (0-shot)Open LLM Leaderboard17.260
- accuracy on MMLU-PRO (5-shot)test set Open LLM Leaderboard53.420


