Downloads · 30 days
64
16% of all-time downloads
DreamhubAI/Nova-e-mini
Nova-e-mini is a text generation model from DreamhubAI. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
[](https://huggingface.co/spaces/sinamsv0/WALL-E-DEMO) [](https://github.com/unknownmsv/WALL-E) [](LICENSE)
Downloads · 30 days
64
16% of all-time downloads
All-time downloads
398
Public
Parameters
1000M
2 GB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors2 GB · 98%
From the Hugging Face model README
WALL•E is a fine-tuned, lightweight language model based on Gemma 3 1B, designed for local, privacy-preserving AI usage.
It focuses on practical tasks, fast responses, and real-world utility rather than model size.
Most modern AI models are either:
WALL•E is built to fill that gap.
✅ Runs entirely locally
✅ No API keys or cloud services
✅ Designed for low-resource environments
✅ Open-source and transparent
The model is optimized to handle short and minimal prompts naturally (e.g. "Hi", "Explain ls -la"), avoiding over-generation.
| Component | Details |
|---|---|
| Base Model | Google Gemma 3 1B |
| Fine-tuning | Supervised Fine-Tuning (SFT) |
| Framework | Unsloth |
| Context Length | 3200 tokens |
| Precision | BF16 |
| License | Apache 2.0 |
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
model_id = "sinamsv0/WALL-E"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
device_map="auto"
)
pipe = pipeline(
"text-generation",
model=model,
tokenizer=tokenizer
)
response = pipe(
"Summarize this text: Artificial intelligence is...",
max_new_tokens=120
)
print(response[0]["generated_text"])
Method: Supervised Fine-Tuning (SFT)
Data: Custom multilingual datasets with safety-focused filtering
Hardware: Single consumer GPU
Goal: Improve instruction-following, multilingual responses, and short-prompt behavior
Local coding assistant
Study and document summarization
Privacy-focused users
Lightweight edge deployments
Research and experimentation with small LLMs
GitHub: https://github.com/unknownmsv/WALL-E
Hugging Face Model: https://huggingface.co/sinamsv0/WALL-E
Hugging Face Space: https://huggingface.co/spaces/sinamsv0/WALL-E-DEMO
UI tools for local use
Optional voice interface
Extended language support
Performance benchmarking on edge devices
Small model, focused design. WALL•E proves that useful AI doesn’t have to be huge.