Text Generation
Transformers
TensorBoard
Safetensors
gemma3_text
conversational-ai
mental-health
productivity
smartphone
mobile-ai
therapy
assistant
gemma
Eval Results (legacy)
text-generation-inference
Instructions to use zail-ai/auramind-90m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zail-ai/auramind-90m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zail-ai/auramind-90m")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("zail-ai/auramind-90m") model = AutoModelForCausalLM.from_pretrained("zail-ai/auramind-90m") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use zail-ai/auramind-90m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zail-ai/auramind-90m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zail-ai/auramind-90m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/zail-ai/auramind-90m
- SGLang
How to use zail-ai/auramind-90m 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 "zail-ai/auramind-90m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zail-ai/auramind-90m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "zail-ai/auramind-90m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zail-ai/auramind-90m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use zail-ai/auramind-90m with Docker Model Runner:
docker model run hf.co/zail-ai/auramind-90m
Auramind-90M - 90M Parameters
Ultra-lightweight for budget smartphones and edge devices
Specifications
- Parameters: 90M
- Base Model: google/gemma-2-270m
- Memory Usage: ~225MB RAM
- Quantization: INT8 optimized
- Inference Speed: 50-150ms on modern smartphones
Mobile Deployment
This variant is specifically optimized for:
- Target Devices: Budget smartphones and edge devices
- Memory Requirements: ~225MB RAM
- Performance: 50-150ms on modern smartphones
Usage
from transformers import AutoTokenizer, AutoModelForCausalLM
# Load this specific variant
tokenizer = AutoTokenizer.from_pretrained("zail-ai/auramind-90m")
model = AutoModelForCausalLM.from_pretrained(
"zail-ai/auramind-90m",
torch_dtype=torch.float16,
device_map="auto",
low_cpu_mem_usage=True
)
Refer to the main AuraMind repository for complete documentation.
- Downloads last month
- 5
Evaluation results
- Inference Speed on AuraMind Datasetself-reported50-150ms on modern smartphones
- Memory Usage on AuraMind Datasetself-reported~225MB RAM
- Model Parameters on AuraMind Datasetself-reported90M