Instructions to use M1n1A1/MiniAI-Qwen3-4b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use M1n1A1/MiniAI-Qwen3-4b 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 M1n1A1/MiniAI-Qwen3-4b 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 M1n1A1/MiniAI-Qwen3-4b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for M1n1A1/MiniAI-Qwen3-4b to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="M1n1A1/MiniAI-Qwen3-4b", max_seq_length=2048, )
🧠 MiniAI-Qwen3-4B
Blazing Fast. Local-First. Supercharged 4B Parameters.
MiniAI-Qwen3-4B is a highly optimized, lightweight instruct model tailored for fast, local text generation. Built by the MiniAI team, this model strikes the ultimate sweet spot between high-speed performance and sharp instruction-following.
🚀 Why MiniAI-Qwen3-4B?
- ⚡ The Sweet Spot: Small enough to fly at lightning speeds on consumer hardware, but smart enough to handle advanced tasks.
- 🛠️ Local-First Architecture: Tailored perfectly for local deployments using LM Studio, Ollama, or custom Python pipelines.
- 🪶 Low Overhead: Merged cleanly into full precision, making it perfectly ready for custom GGUF or AWQ quantizations.
🛠️ Usage & Deployment
You can load this model directly using standard Hugging Face transformers or via Unsloth:
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "MiniAI/MiniAI-Qwen3-4b"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto")
- Downloads last month
- 11