CoolFace
Modelpublic

tarat122/lumi-mobile

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
1likes23downloads
Model Card

๐ŸŒŸ 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

javascript
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

bash
npm install react-native-pytorch-core

๐Ÿ“ฆ Files

  • โ€”lumi_mobile.ptl - PyTorch Mobile model (350M params)
  • โ€”vocab.json - Vocabulary for tokenization
  • โ€”mobile_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 ๐Ÿ“ฑ