tarat122/lumi-mobile
123
๐ Lumi Mobile - On-Device AI Assistant
Fine-tuned language model for classifying user instructions into tasks, notes, and reflections. Optimized for mobile deployment with PyTorch Mobile.
๐ What it does
Converts natural language into structured data:
- Tasks: "call mom tomorrow" โ
{"task": "call mom tomorrow"} - Notes: "this book is great" โ
{"note": "this book is great", "tag": "personal"} - Reflections: "feeling grateful today" โ
{"reflection": "feeling grateful today"}
๐ฑ Mobile Usage
Download Files
const modelUrl = 'https://huggingface.co/yourusername/lumi-mobile/resolve/main/lumi_mobile.ptl';
const vocabUrl = 'https://huggingface.co/yourusername/lumi-mobile/resolve/main/vocab.json';React Native Integration
npm install react-native-pytorch-core๐ฆ Files
lumi_mobile.ptl- PyTorch Mobile model (350M params)vocab.json- Vocabulary for tokenizationmobile_config.json- Mobile settings
๐ฏ Features
- โ Runs completely offline
- โ No server required
- โ Privacy-first (data never leaves device)
- โ ~700MB model size
๐ง Base Model
Fine-tuned from unsloth/LFM2-350M
Built for on-device AI inference ๐ฑ
