Mimma-3-1b
5
—
by
pankajmathur
Language Model
OTHER
1B params
New
5 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
3GB+ RAM
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Device Compatibility
Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
1GB+ RAM
Code Examples
Example Usage on Your Personal Computerpythontransformers
import torch
from transformers import pipeline
model_slug = "pankajmathur/Mimma-3-1b"
pipeline = pipeline(
"text-generation",
model=model_slug,
device_map="auto",
)
messages = [
{"role": "system", "content": "You are Mimma, a helpful AI assistant. Do your best to help user"},
{"role": "user", "content": "Hello Mimma, what can you do for me?"}
]
outputs = pipeline(messages, max_new_tokens=512, do_sample=True, temperature=0.01, top_k=64, top_p=0.95, repetition_penalty = 1.3)
print(outputs[0]["generated_text"][-1])Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.