Eulogik Edge AI Suite
Collection
A curated suite of edge-optimized, hyper-efficient, and local-first AI models and interactive spaces. Engineered by Eulogik. โข 15 items โข Updated โข 1
1.6M params ยท 256 context ยท Streaming RNN ยท ONNX-ready
Runs on CPU, Raspberry Pi, and in the browser
๐ New: Try the improved nanoforecast-v03 โ 21% better MASE, 6.5M params, 512 context!
pip install nanoforecast
from nanoforecast import NanoForecast
model = NanoForecast.from_pretrained("eulogik/nanoforecast-500k")
| Dataset | MASE | sMAPE (%) | MAE | CRPS |
|---|---|---|---|---|
| ETTh1 | 3.342 | 25.13 | 2.402 | 1.800 |
| ETTh2 | 3.707 | 17.65 | 3.212 | 2.518 |
| ETTm1 | 3.578 | 17.22 | 1.174 | 1.003 |
| exchange_rate | 7.306 | 1.63 | 0.010 | 0.009 |
| electricity | 1.536 | 5.65 | 189.748 | 187.256 |
| traffic | 1.246 | 44.80 | 0.006 | 0.005 |
| Overall | 3.453 | 18.68 | 32.759 | 32.099 |
๐ฅ For better accuracy, upgrade to nanoforecast-v03 (MASE 2.73, 21% improvement).
result = model.predict(context, horizon=48, return_state=True)
state = result.pop("state")
for new_val in incoming_data_stream:
result = model.predict_step(new_val, state, horizon=48)
print(result["forecast"][0, :5])
Perfect for IoT, real-time dashboards, and live financial data.
| Attribute | Value |
|---|---|
| Profile | d64-L8 |
| Parameters | 1,606,232 |
| Context | 256 |
| Horizon | 48 |
| Size | 6.4 MB (FP32), ~1.4 MB (ONNX) |
| Architecture | LongConv + DeltaNet RNN + Gated Router + MLP |
| Deploy targets | CPU, ARM, Raspberry Pi, Lambda, iOS, browser |
Upload a CSV โ forecast + prediction intervals. No code. No GPU.
| Model | Params | Context | MASE | Best For |
|---|---|---|---|---|
| nanoforecast-200k | 676K | 256 | ~4-11 | Extreme edge / RPi Zero |
| nanoforecast-500k (you are here) | 1.6M | 256 | 3.45 | General purpose |
| nanoforecast-v03 | 6.5M | 512 | 2.73 | Max accuracy |
# FastAPI
pip install nanoforecast fastapi uvicorn python-multipart
python3 deploy/fastapi_server.py
# ONNX
pip install "nanoforecast[onnx]"
python3 -m nanoforecast.export.onnx_export --checkpoint <dir> --output nanoforecast.onnx
Eulogik โ deployable AI for the real world.
Star the repo โญ on GitHub!