offline_ml_pipeline 0.1.0 copy "offline_ml_pipeline: ^0.1.0" to clipboard
offline_ml_pipeline: ^0.1.0 copied to clipboard

Train, validate, and export ML models on-device from CSV to .tflite with full privacy—no server or internet, powered by ONNX Runtime and Dart FFI.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/training_screen.dart';

void main() {
  runApp(const OfflineMlExampleApp());
}

class OfflineMlExampleApp extends StatelessWidget {
  const OfflineMlExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'offline_ml_pipeline Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: const Color(0xFF0057FF),
          brightness: Brightness.light,
        ),
        useMaterial3: true,
        inputDecorationTheme: const InputDecorationTheme(
          border: OutlineInputBorder(),
        ),
      ),
      home: const TrainingScreen(),
    );
  }
}
0
likes
120
points
8
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Train, validate, and export ML models on-device from CSV to .tflite with full privacy—no server or internet, powered by ONNX Runtime and Dart FFI.

Repository (GitHub)
View/report issues

Topics

#machine-learning #on-device #flutter #dart-ffi #offline-ai

License

MIT (license)

Dependencies

archive, async, collection, csv, ffi, flat_buffers, flutter, path, path_provider

More

Packages that depend on offline_ml_pipeline

Packages that implement offline_ml_pipeline