├── .github └── workflows │ ├── dart_ci.yml │ └── flutter_drive.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── tfliteflutter │ └── tflite_flutter_helper │ └── TfliteFlutterHelperPlugin.kt ├── example ├── audio_classification │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── jniLibs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ │ ├── x86 │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── audio_classification │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── settings_aar.gradle │ ├── assets │ │ ├── yamnet.tflite │ │ └── yamnet_class_map.csv │ ├── audio_demo.gif │ ├── install.sh │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── classifier.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart ├── bert_question_answer │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── jniLibs │ │ │ │ │ └── arm64-v8a │ │ │ │ │ │ └── libtask_text_jni.so │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── bert_question_answer │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ └── qa.json │ ├── demo.gif │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── bert_qa.dart │ │ ├── data │ │ │ ├── dataset_loader.dart │ │ │ └── qa_data.dart │ │ ├── main.dart │ │ └── ui │ │ │ ├── article_list_page.dart │ │ │ └── question_answerer_page.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart ├── image_classification │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── imageclassification │ │ │ │ │ │ └── MainActivity.java │ │ │ │ ├── jniLibs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ │ ├── x86 │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ ├── greyfox.jpg │ │ ├── labels.txt │ │ ├── lion.jpg │ │ ├── mobilenet_v1_1.0_224.tflite │ │ └── mobilenet_v1_1.0_224_quant.tflite │ ├── demo.gif │ ├── install.sh │ ├── integration_test │ │ ├── classifier_test_helper.dart │ │ └── image_classification_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── classifier.dart │ │ ├── classifier_float.dart │ │ ├── classifier_quant.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ │ └── widget_test.dart │ └── test_driver │ │ └── integration_test.dart ├── pubspec.lock ├── pubspec.yaml └── text_classification_task │ ├── .gitignore │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── tfliteflutter │ │ │ │ │ └── tflite_flutter_plugin_example │ │ │ │ │ └── MainActivity.java │ │ │ ├── jniLibs │ │ │ │ └── arm64-v8a │ │ │ │ │ └── libtask_text_jni.so │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── settings_aar.gradle │ ├── assets │ ├── test │ │ ├── add.bin │ │ ├── bad_model.tflite │ │ ├── int32.bin │ │ ├── int64.bin │ │ ├── mobilenet_quant.tflite │ │ ├── multi_add.bin │ │ ├── permute_uint8.tflite │ │ └── string.bin │ ├── text_classification.tflite │ ├── text_classification_v2.tflite │ └── text_classification_vocab.txt │ ├── blobs │ ├── libtensorflowlite_c-linux.so │ ├── libtensorflowlite_c-macos.dylib │ └── libtensorflowlite_c-win.dll │ ├── demo.gif │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ ├── classifier.dart │ ├── classifier_task_lib.dart │ └── main.dart │ └── pubspec.yaml ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── SwiftTfliteFlutterHelperPlugin.swift │ ├── TfliteFlutterHelperPlugin.h │ └── TfliteFlutterHelperPlugin.m └── tflite_flutter_helper.podspec ├── lib ├── src │ ├── audio │ │ ├── recorder_stream.dart │ │ ├── sound_stream.dart │ │ └── tensor_audio.dart │ ├── common │ │ ├── file_util.dart │ │ ├── operator.dart │ │ ├── ops │ │ │ ├── cast_op.dart │ │ │ ├── dequantize_op.dart │ │ │ ├── normailze_op.dart │ │ │ └── quantize_op.dart │ │ ├── processor.dart │ │ ├── sequential_processor.dart │ │ ├── support_preconditions.dart │ │ ├── tensor_operator.dart │ │ └── tensor_processor.dart │ ├── image │ │ ├── base_image_container.dart │ │ ├── bounding_box_utils.dart │ │ ├── camera_image_container.dart │ │ ├── color_space_type.dart │ │ ├── image_container.dart │ │ ├── image_conversions.dart │ │ ├── image_operator.dart │ │ ├── image_processor.dart │ │ ├── ops │ │ │ ├── resize_op.dart │ │ │ ├── resize_with_crop_or_pad_op.dart │ │ │ ├── rot90_op.dart │ │ │ ├── tensor_operator_wrapper.dart │ │ │ └── transform_to_grayscale_op.dart │ │ ├── tensor_buffer_container.dart │ │ └── tensor_image.dart │ ├── label │ │ ├── category.dart │ │ ├── label_util.dart │ │ ├── ops │ │ │ └── label_axis_op.dart │ │ └── tensor_label.dart │ ├── task │ │ ├── bindings │ │ │ ├── dlib.dart │ │ │ └── text │ │ │ │ ├── nl_classifier │ │ │ │ ├── bert_nl_classifier.dart │ │ │ │ ├── nl_classifer.dart │ │ │ │ └── types.dart │ │ │ │ └── qa │ │ │ │ ├── bert_qa.dart │ │ │ │ └── types.dart │ │ └── text │ │ │ ├── nl_classifier │ │ │ ├── bert_nl_classifier.dart │ │ │ ├── bert_nl_classifier_options.dart │ │ │ ├── nl_classifier.dart │ │ │ └── nl_classifier_options.dart │ │ │ └── qa │ │ │ ├── bert_question_answerer.dart │ │ │ ├── qa_answer.dart │ │ │ └── question_answerer.dart │ └── tensorbuffer │ │ ├── tensorbuffer.dart │ │ ├── tensorbufferfloat.dart │ │ └── tensorbufferuint8.dart └── tflite_flutter_helper.dart ├── linux ├── CMakeLists.txt ├── include │ └── tflite_flutter_helper │ │ └── tflite_flutter_helper_plugin.h └── tflite_flutter_helper_plugin.cc ├── macos ├── Classes │ └── TfliteFlutterHelperPlugin.swift └── tflite_flutter_helper.podspec ├── pubspec.lock ├── pubspec.yaml ├── test └── tfliteflutterhelper_test.dart ├── test_assets ├── labels.txt └── lion.jpg └── windows ├── .gitignore ├── CMakeLists.txt ├── include └── tflite_flutter_helper │ └── tflite_flutter_helper_plugin.h └── tflite_flutter_helper_plugin.cpp /.github/workflows/dart_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/.github/workflows/dart_ci.yml -------------------------------------------------------------------------------- /.github/workflows/flutter_drive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/.github/workflows/flutter_drive.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | package android 2 | 3 | rootProject.name = 'tflite_flutter_helper' 4 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/com/tfliteflutter/tflite_flutter_helper/TfliteFlutterHelperPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/android/src/main/kotlin/com/tfliteflutter/tflite_flutter_helper/TfliteFlutterHelperPlugin.kt -------------------------------------------------------------------------------- /example/audio_classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/.metadata -------------------------------------------------------------------------------- /example/audio_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/README.md -------------------------------------------------------------------------------- /example/audio_classification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/build.gradle -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/jniLibs/arm64-v8a/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/jniLibs/arm64-v8a/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/jniLibs/armeabi-v7a/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/jniLibs/armeabi-v7a/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/jniLibs/x86/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/jniLibs/x86/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/jniLibs/x86_64/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/jniLibs/x86_64/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/kotlin/com/example/audio_classification/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/kotlin/com/example/audio_classification/MainActivity.kt -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/audio_classification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/build.gradle -------------------------------------------------------------------------------- /example/audio_classification/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/gradle.properties -------------------------------------------------------------------------------- /example/audio_classification/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/audio_classification/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/android/settings.gradle -------------------------------------------------------------------------------- /example/audio_classification/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /example/audio_classification/assets/yamnet.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/assets/yamnet.tflite -------------------------------------------------------------------------------- /example/audio_classification/assets/yamnet_class_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/assets/yamnet_class_map.csv -------------------------------------------------------------------------------- /example/audio_classification/audio_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/audio_demo.gif -------------------------------------------------------------------------------- /example/audio_classification/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/install.sh -------------------------------------------------------------------------------- /example/audio_classification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/audio_classification/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/audio_classification/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/audio_classification/lib/classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/lib/classifier.dart -------------------------------------------------------------------------------- /example/audio_classification/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/lib/main.dart -------------------------------------------------------------------------------- /example/audio_classification/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/pubspec.lock -------------------------------------------------------------------------------- /example/audio_classification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/pubspec.yaml -------------------------------------------------------------------------------- /example/audio_classification/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/audio_classification/test/widget_test.dart -------------------------------------------------------------------------------- /example/bert_question_answer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/.gitignore -------------------------------------------------------------------------------- /example/bert_question_answer/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/.metadata -------------------------------------------------------------------------------- /example/bert_question_answer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/README.md -------------------------------------------------------------------------------- /example/bert_question_answer/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/.gitignore -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/build.gradle -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/jniLibs/arm64-v8a/libtask_text_jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/jniLibs/arm64-v8a/libtask_text_jni.so -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/kotlin/com/example/bert_question_answer/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/kotlin/com/example/bert_question_answer/MainActivity.kt -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/bert_question_answer/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/build.gradle -------------------------------------------------------------------------------- /example/bert_question_answer/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/gradle.properties -------------------------------------------------------------------------------- /example/bert_question_answer/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/bert_question_answer/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/android/settings.gradle -------------------------------------------------------------------------------- /example/bert_question_answer/assets/qa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/assets/qa.json -------------------------------------------------------------------------------- /example/bert_question_answer/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/demo.gif -------------------------------------------------------------------------------- /example/bert_question_answer/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/.gitignore -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/bert_question_answer/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/bert_question_answer/lib/bert_qa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/lib/bert_qa.dart -------------------------------------------------------------------------------- /example/bert_question_answer/lib/data/dataset_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/lib/data/dataset_loader.dart -------------------------------------------------------------------------------- /example/bert_question_answer/lib/data/qa_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/lib/data/qa_data.dart -------------------------------------------------------------------------------- /example/bert_question_answer/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/lib/main.dart -------------------------------------------------------------------------------- /example/bert_question_answer/lib/ui/article_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/lib/ui/article_list_page.dart -------------------------------------------------------------------------------- /example/bert_question_answer/lib/ui/question_answerer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/lib/ui/question_answerer_page.dart -------------------------------------------------------------------------------- /example/bert_question_answer/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/pubspec.lock -------------------------------------------------------------------------------- /example/bert_question_answer/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/pubspec.yaml -------------------------------------------------------------------------------- /example/bert_question_answer/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/bert_question_answer/test/widget_test.dart -------------------------------------------------------------------------------- /example/image_classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/.gitignore -------------------------------------------------------------------------------- /example/image_classification/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/.metadata -------------------------------------------------------------------------------- /example/image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/README.md -------------------------------------------------------------------------------- /example/image_classification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/.gitignore -------------------------------------------------------------------------------- /example/image_classification/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/build.gradle -------------------------------------------------------------------------------- /example/image_classification/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/java/com/example/imageclassification/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/java/com/example/imageclassification/MainActivity.java -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/jniLibs/arm64-v8a/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/jniLibs/arm64-v8a/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/jniLibs/armeabi-v7a/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/jniLibs/armeabi-v7a/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/jniLibs/x86/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/jniLibs/x86/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/jniLibs/x86_64/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/jniLibs/x86_64/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/image_classification/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/image_classification/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/image_classification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/build.gradle -------------------------------------------------------------------------------- /example/image_classification/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/gradle.properties -------------------------------------------------------------------------------- /example/image_classification/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/image_classification/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/android/settings.gradle -------------------------------------------------------------------------------- /example/image_classification/assets/greyfox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/assets/greyfox.jpg -------------------------------------------------------------------------------- /example/image_classification/assets/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/assets/labels.txt -------------------------------------------------------------------------------- /example/image_classification/assets/lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/assets/lion.jpg -------------------------------------------------------------------------------- /example/image_classification/assets/mobilenet_v1_1.0_224.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/assets/mobilenet_v1_1.0_224.tflite -------------------------------------------------------------------------------- /example/image_classification/assets/mobilenet_v1_1.0_224_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/assets/mobilenet_v1_1.0_224_quant.tflite -------------------------------------------------------------------------------- /example/image_classification/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/demo.gif -------------------------------------------------------------------------------- /example/image_classification/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/install.sh -------------------------------------------------------------------------------- /example/image_classification/integration_test/classifier_test_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/integration_test/classifier_test_helper.dart -------------------------------------------------------------------------------- /example/image_classification/integration_test/image_classification_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/integration_test/image_classification_test.dart -------------------------------------------------------------------------------- /example/image_classification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/.gitignore -------------------------------------------------------------------------------- /example/image_classification/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/image_classification/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/image_classification/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/image_classification/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/image_classification/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/image_classification/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/image_classification/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/image_classification/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/image_classification/lib/classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/lib/classifier.dart -------------------------------------------------------------------------------- /example/image_classification/lib/classifier_float.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/lib/classifier_float.dart -------------------------------------------------------------------------------- /example/image_classification/lib/classifier_quant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/lib/classifier_quant.dart -------------------------------------------------------------------------------- /example/image_classification/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/lib/main.dart -------------------------------------------------------------------------------- /example/image_classification/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/pubspec.lock -------------------------------------------------------------------------------- /example/image_classification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/pubspec.yaml -------------------------------------------------------------------------------- /example/image_classification/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/test/widget_test.dart -------------------------------------------------------------------------------- /example/image_classification/test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/image_classification/test_driver/integration_test.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/text_classification_task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/.gitignore -------------------------------------------------------------------------------- /example/text_classification_task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/README.md -------------------------------------------------------------------------------- /example/text_classification_task/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/.gitignore -------------------------------------------------------------------------------- /example/text_classification_task/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/build.gradle -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/java/com/tfliteflutter/tflite_flutter_plugin_example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/java/com/tfliteflutter/tflite_flutter_plugin_example/MainActivity.java -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/jniLibs/arm64-v8a/libtask_text_jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/jniLibs/arm64-v8a/libtask_text_jni.so -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/text_classification_task/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/text_classification_task/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/build.gradle -------------------------------------------------------------------------------- /example/text_classification_task/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/gradle.properties -------------------------------------------------------------------------------- /example/text_classification_task/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/text_classification_task/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/android/settings.gradle -------------------------------------------------------------------------------- /example/text_classification_task/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/add.bin -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/bad_model.tflite: -------------------------------------------------------------------------------- 1 | I don't know what I'm doing! 2 | -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/int32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/int32.bin -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/int64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/int64.bin -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/mobilenet_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/mobilenet_quant.tflite -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/multi_add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/multi_add.bin -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/permute_uint8.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/permute_uint8.tflite -------------------------------------------------------------------------------- /example/text_classification_task/assets/test/string.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/test/string.bin -------------------------------------------------------------------------------- /example/text_classification_task/assets/text_classification.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/text_classification.tflite -------------------------------------------------------------------------------- /example/text_classification_task/assets/text_classification_v2.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/text_classification_v2.tflite -------------------------------------------------------------------------------- /example/text_classification_task/assets/text_classification_vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/assets/text_classification_vocab.txt -------------------------------------------------------------------------------- /example/text_classification_task/blobs/libtensorflowlite_c-linux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/blobs/libtensorflowlite_c-linux.so -------------------------------------------------------------------------------- /example/text_classification_task/blobs/libtensorflowlite_c-macos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/blobs/libtensorflowlite_c-macos.dylib -------------------------------------------------------------------------------- /example/text_classification_task/blobs/libtensorflowlite_c-win.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/blobs/libtensorflowlite_c-win.dll -------------------------------------------------------------------------------- /example/text_classification_task/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/demo.gif -------------------------------------------------------------------------------- /example/text_classification_task/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/.gitignore -------------------------------------------------------------------------------- /example/text_classification_task/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/text_classification_task/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/text_classification_task/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/text_classification_task/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Podfile -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/text_classification_task/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/text_classification_task/lib/classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/lib/classifier.dart -------------------------------------------------------------------------------- /example/text_classification_task/lib/classifier_task_lib.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/lib/classifier_task_lib.dart -------------------------------------------------------------------------------- /example/text_classification_task/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/lib/main.dart -------------------------------------------------------------------------------- /example/text_classification_task/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/example/text_classification_task/pubspec.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/SwiftTfliteFlutterHelperPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/ios/Classes/SwiftTfliteFlutterHelperPlugin.swift -------------------------------------------------------------------------------- /ios/Classes/TfliteFlutterHelperPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/ios/Classes/TfliteFlutterHelperPlugin.h -------------------------------------------------------------------------------- /ios/Classes/TfliteFlutterHelperPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/ios/Classes/TfliteFlutterHelperPlugin.m -------------------------------------------------------------------------------- /ios/tflite_flutter_helper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/ios/tflite_flutter_helper.podspec -------------------------------------------------------------------------------- /lib/src/audio/recorder_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/audio/recorder_stream.dart -------------------------------------------------------------------------------- /lib/src/audio/sound_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/audio/sound_stream.dart -------------------------------------------------------------------------------- /lib/src/audio/tensor_audio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/audio/tensor_audio.dart -------------------------------------------------------------------------------- /lib/src/common/file_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/file_util.dart -------------------------------------------------------------------------------- /lib/src/common/operator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/operator.dart -------------------------------------------------------------------------------- /lib/src/common/ops/cast_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/ops/cast_op.dart -------------------------------------------------------------------------------- /lib/src/common/ops/dequantize_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/ops/dequantize_op.dart -------------------------------------------------------------------------------- /lib/src/common/ops/normailze_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/ops/normailze_op.dart -------------------------------------------------------------------------------- /lib/src/common/ops/quantize_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/ops/quantize_op.dart -------------------------------------------------------------------------------- /lib/src/common/processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/processor.dart -------------------------------------------------------------------------------- /lib/src/common/sequential_processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/sequential_processor.dart -------------------------------------------------------------------------------- /lib/src/common/support_preconditions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/support_preconditions.dart -------------------------------------------------------------------------------- /lib/src/common/tensor_operator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/tensor_operator.dart -------------------------------------------------------------------------------- /lib/src/common/tensor_processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/common/tensor_processor.dart -------------------------------------------------------------------------------- /lib/src/image/base_image_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/base_image_container.dart -------------------------------------------------------------------------------- /lib/src/image/bounding_box_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/bounding_box_utils.dart -------------------------------------------------------------------------------- /lib/src/image/camera_image_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/camera_image_container.dart -------------------------------------------------------------------------------- /lib/src/image/color_space_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/color_space_type.dart -------------------------------------------------------------------------------- /lib/src/image/image_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/image_container.dart -------------------------------------------------------------------------------- /lib/src/image/image_conversions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/image_conversions.dart -------------------------------------------------------------------------------- /lib/src/image/image_operator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/image_operator.dart -------------------------------------------------------------------------------- /lib/src/image/image_processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/image_processor.dart -------------------------------------------------------------------------------- /lib/src/image/ops/resize_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/ops/resize_op.dart -------------------------------------------------------------------------------- /lib/src/image/ops/resize_with_crop_or_pad_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/ops/resize_with_crop_or_pad_op.dart -------------------------------------------------------------------------------- /lib/src/image/ops/rot90_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/ops/rot90_op.dart -------------------------------------------------------------------------------- /lib/src/image/ops/tensor_operator_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/ops/tensor_operator_wrapper.dart -------------------------------------------------------------------------------- /lib/src/image/ops/transform_to_grayscale_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/ops/transform_to_grayscale_op.dart -------------------------------------------------------------------------------- /lib/src/image/tensor_buffer_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/tensor_buffer_container.dart -------------------------------------------------------------------------------- /lib/src/image/tensor_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/image/tensor_image.dart -------------------------------------------------------------------------------- /lib/src/label/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/label/category.dart -------------------------------------------------------------------------------- /lib/src/label/label_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/label/label_util.dart -------------------------------------------------------------------------------- /lib/src/label/ops/label_axis_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/label/ops/label_axis_op.dart -------------------------------------------------------------------------------- /lib/src/label/tensor_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/label/tensor_label.dart -------------------------------------------------------------------------------- /lib/src/task/bindings/dlib.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/bindings/dlib.dart -------------------------------------------------------------------------------- /lib/src/task/bindings/text/nl_classifier/bert_nl_classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/bindings/text/nl_classifier/bert_nl_classifier.dart -------------------------------------------------------------------------------- /lib/src/task/bindings/text/nl_classifier/nl_classifer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/bindings/text/nl_classifier/nl_classifer.dart -------------------------------------------------------------------------------- /lib/src/task/bindings/text/nl_classifier/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/bindings/text/nl_classifier/types.dart -------------------------------------------------------------------------------- /lib/src/task/bindings/text/qa/bert_qa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/bindings/text/qa/bert_qa.dart -------------------------------------------------------------------------------- /lib/src/task/bindings/text/qa/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/bindings/text/qa/types.dart -------------------------------------------------------------------------------- /lib/src/task/text/nl_classifier/bert_nl_classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/nl_classifier/bert_nl_classifier.dart -------------------------------------------------------------------------------- /lib/src/task/text/nl_classifier/bert_nl_classifier_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/nl_classifier/bert_nl_classifier_options.dart -------------------------------------------------------------------------------- /lib/src/task/text/nl_classifier/nl_classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/nl_classifier/nl_classifier.dart -------------------------------------------------------------------------------- /lib/src/task/text/nl_classifier/nl_classifier_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/nl_classifier/nl_classifier_options.dart -------------------------------------------------------------------------------- /lib/src/task/text/qa/bert_question_answerer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/qa/bert_question_answerer.dart -------------------------------------------------------------------------------- /lib/src/task/text/qa/qa_answer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/qa/qa_answer.dart -------------------------------------------------------------------------------- /lib/src/task/text/qa/question_answerer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/task/text/qa/question_answerer.dart -------------------------------------------------------------------------------- /lib/src/tensorbuffer/tensorbuffer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/tensorbuffer/tensorbuffer.dart -------------------------------------------------------------------------------- /lib/src/tensorbuffer/tensorbufferfloat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/tensorbuffer/tensorbufferfloat.dart -------------------------------------------------------------------------------- /lib/src/tensorbuffer/tensorbufferuint8.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/src/tensorbuffer/tensorbufferuint8.dart -------------------------------------------------------------------------------- /lib/tflite_flutter_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/lib/tflite_flutter_helper.dart -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/include/tflite_flutter_helper/tflite_flutter_helper_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/linux/include/tflite_flutter_helper/tflite_flutter_helper_plugin.h -------------------------------------------------------------------------------- /linux/tflite_flutter_helper_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/linux/tflite_flutter_helper_plugin.cc -------------------------------------------------------------------------------- /macos/Classes/TfliteFlutterHelperPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/macos/Classes/TfliteFlutterHelperPlugin.swift -------------------------------------------------------------------------------- /macos/tflite_flutter_helper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/macos/tflite_flutter_helper.podspec -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/tfliteflutterhelper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/test/tfliteflutterhelper_test.dart -------------------------------------------------------------------------------- /test_assets/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/test_assets/labels.txt -------------------------------------------------------------------------------- /test_assets/lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/test_assets/lion.jpg -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/include/tflite_flutter_helper/tflite_flutter_helper_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/windows/include/tflite_flutter_helper/tflite_flutter_helper_plugin.h -------------------------------------------------------------------------------- /windows/tflite_flutter_helper_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_helper/HEAD/windows/tflite_flutter_helper_plugin.cpp --------------------------------------------------------------------------------