├── .github └── workflows │ ├── README.md │ └── flutter-ci.yml ├── .gitignore ├── .metadata ├── AUTHORS ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ └── kotlin │ │ └── org │ │ └── tensorflow │ │ └── tflite_flutter │ │ └── TfliteFlutterPlugin.kt │ └── test │ └── kotlin │ └── org │ └── tensorflow │ └── tflite_flutter │ └── TfliteFlutterPluginTest.kt ├── doc └── tflite_flutter_cover.png ├── example ├── audio_classification │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── audio_classification │ │ │ │ │ │ └── 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 │ ├── assets │ │ ├── images │ │ │ ├── logo.png │ │ │ └── tfl_logo.png │ │ └── models │ │ │ ├── README.md │ │ │ ├── yamnet.tflite │ │ │ └── yamnet_label_list.txt │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── helper │ │ │ └── audio_classification_helper.dart │ │ └── main.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ └── Flutter-Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── screenshots │ │ ├── android_screenshot.png │ │ └── ios_screenshot.png │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── bertqa │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── bert_qa │ │ │ │ │ │ └── bertqa │ │ │ │ │ │ └── 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 │ │ ├── .gitkeep │ │ └── images │ │ │ └── banner_lite.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main.dart │ │ ├── ml │ │ │ ├── feature.dart │ │ │ ├── feature_convert.dart │ │ │ ├── qa_answer.dart │ │ │ └── qa_client.dart │ │ ├── qa.dart │ │ └── ui │ │ │ └── qa_detail.dart │ ├── pubspec.yaml │ ├── screenshots │ │ ├── android_qa_detail.png │ │ ├── android_question.png │ │ ├── ios_qa_detail.png │ │ └── ios_question.png │ ├── scripts │ │ └── download_model.sh │ └── test │ │ └── tokenizer_test.dart ├── digit_classification │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── digit_classification │ │ │ │ │ │ └── digit_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 │ ├── assets │ │ ├── .gitkeep │ │ └── images │ │ │ └── tfl_logo.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── helper │ │ │ └── digit_classifier_helper.dart │ │ ├── main.dart │ │ └── sketcher.dart │ ├── pubspec.yaml │ ├── screenshots │ │ ├── android_screenshot.png │ │ └── ios_screenshot.png │ └── scripts │ │ └── download_model.sh ├── gesture_classification │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── gesture_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 │ ├── assets │ │ ├── .gitkeep │ │ └── images │ │ │ └── tfl_logo.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── helper │ │ │ ├── gesture_classification_helper.dart │ │ │ └── isolate_inference.dart │ │ ├── image_utils.dart │ │ └── main.dart │ ├── pubspec.yaml │ ├── screenshots │ │ ├── android_screenshot.jpg │ │ ├── gesture_training_image.png │ │ └── ios_screenshot.png │ └── scripts │ │ └── download_model.sh ├── image_classification_mobilenet │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── image_classification_mobilenet │ │ │ │ │ │ └── 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 │ │ ├── images │ │ │ ├── logo.png │ │ │ └── tfl_logo.png │ │ └── models │ │ │ ├── README.md │ │ │ ├── labels.txt │ │ │ └── mobilenet_quant.tflite │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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-50x50@1x.png │ │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ │ ├── Icon-App-72x72@2x.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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── helper │ │ │ ├── image_classification_helper.dart │ │ │ └── isolate_inference.dart │ │ ├── image_utils.dart │ │ ├── main.dart │ │ └── ui │ │ │ ├── camera.dart │ │ │ └── gallery.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ └── Flutter-Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── makefile │ ├── pubspec.yaml │ ├── screenshots │ │ ├── live_stream.jpg │ │ └── still_image.jpg │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── image_segmentation │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── image_segmentation │ │ │ │ │ │ └── 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 │ │ ├── .gitkeep │ │ └── images │ │ │ └── tfl_logo.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── helper │ │ │ ├── image_segmentation_helper.dart │ │ │ └── isolate_inference.dart │ │ ├── image_utils.dart │ │ └── main.dart │ ├── pubspec.yaml │ ├── screenshots │ │ ├── android_screenshot.jpg │ │ └── ios_screenshot.png │ └── scripts │ │ └── download_models.sh ├── live_object_detection_ssd_mobilenet │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── object_detection_ssd_mobilenet │ │ │ │ │ │ └── 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 │ │ ├── images │ │ │ └── tfl_logo.png │ │ └── models │ │ │ └── README.md │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main.dart │ │ ├── models │ │ │ ├── recognition.dart │ │ │ └── screen_params.dart │ │ ├── service │ │ │ └── detector_service.dart │ │ ├── ui │ │ │ ├── box_widget.dart │ │ │ ├── detector_widget.dart │ │ │ ├── home_view.dart │ │ │ └── stats_widget.dart │ │ └── utils │ │ │ └── image_utils.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── output_Pixel7.gif │ ├── output_iPad.gif │ ├── output_iPhone.gif │ ├── pubspec.yaml │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── object_detection_ssd_mobilenet │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── object_detection_ssd_mobilenet │ │ │ │ │ │ └── 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 │ │ ├── images │ │ │ └── tfl_logo.png │ │ └── models │ │ │ └── README.md │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main.dart │ │ └── object_detection.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ └── Flutter-Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── screenshot.png │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── object_detection_ssd_mobilenet_v2 │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── object_detection_ssd_mobilenet │ │ │ │ │ │ └── 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 │ │ ├── custom_ssd_mobilenet_v2.tflite │ │ ├── custom_ssd_mobilenet_v2_fpn_lite_320x320.tflite │ │ ├── images │ │ │ └── tfl_logo.png │ │ └── labels.txt │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main.dart │ │ └── object_detection.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ └── Flutter-Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── screenshot.png │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── pose_estimation │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── pose_estimation │ │ │ │ │ │ └── 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 │ │ └── images │ │ │ └── tfl_logo.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── helper │ │ │ ├── isolate_inference.dart │ │ │ └── pose_estimation_helper.dart │ │ ├── image_utils.dart │ │ ├── main.dart │ │ └── models │ │ │ ├── body_part.dart │ │ │ ├── key_point.dart │ │ │ └── person.dart │ ├── pubspec.yaml │ ├── screenshots │ │ ├── android_screenshot.jpg │ │ └── ios_screenshot.jpeg │ └── scripts │ │ └── download_models.sh ├── reinforcement_learning │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── tflite_flutter │ │ │ │ │ │ └── text_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 │ ├── assets │ │ └── models │ │ │ └── README.md │ ├── 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 │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── 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 │ │ ├── game_agent.dart │ │ └── main.dart │ ├── pubspec.yaml │ ├── scripts │ │ └── download.sh │ └── test_driver │ │ └── integration_test.dart ├── style_transfer │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── style_transfer │ │ │ │ │ │ └── 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 │ │ ├── images │ │ │ ├── logo.png │ │ │ └── tfl_logo.png │ │ ├── models │ │ │ └── README.md │ │ └── styles │ │ │ ├── style0.jpg │ │ │ ├── style1.jpg │ │ │ ├── style10.jpg │ │ │ ├── style11.jpg │ │ │ ├── style12.jpg │ │ │ ├── style13.jpg │ │ │ ├── style14.jpg │ │ │ ├── style15.jpg │ │ │ ├── style16.jpg │ │ │ ├── style17.jpg │ │ │ ├── style18.jpg │ │ │ ├── style19.jpg │ │ │ ├── style2.jpg │ │ │ ├── style20.jpg │ │ │ ├── style21.jpg │ │ │ ├── style22.jpg │ │ │ ├── style23.jpg │ │ │ ├── style24.jpg │ │ │ ├── style25.jpg │ │ │ ├── style3.jpg │ │ │ ├── style4.jpg │ │ │ ├── style5.jpg │ │ │ ├── style6.jpg │ │ │ ├── style7.jpg │ │ │ ├── style8.jpg │ │ │ └── style9.jpg │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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-50x50@1x.png │ │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ │ ├── Icon-App-72x72@2x.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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ └── main.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ └── Flutter-Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── makefile │ ├── pubspec.yaml │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── super_resolution_esrgan │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── super_resolution_esrgan │ │ │ │ │ │ └── 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 │ │ ├── images │ │ │ ├── logo.png │ │ │ └── tfl_logo.png │ │ ├── lr │ │ │ ├── lr-1.jpg │ │ │ ├── lr-2.jpg │ │ │ └── lr-3.jpg │ │ └── models │ │ │ └── README.md │ ├── blobs │ │ └── .gitkeep │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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-50x50@1x.png │ │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ │ ├── Icon-App-72x72@2x.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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ └── main.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ └── Flutter-Release.xcconfig │ │ ├── Frameworks │ │ │ └── libtensorflowlite_c-mac.dylib │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── makefile │ ├── pubspec.yaml │ ├── scripts │ │ └── download_model.sh │ ├── test │ │ └── widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h └── text_classification │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── org │ │ │ │ │ └── tensorflow │ │ │ │ │ └── tflite_flutter │ │ │ │ │ └── text_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 │ ├── assets │ ├── models │ │ └── README.md │ └── test │ │ ├── add.bin │ │ ├── bad_model.tflite │ │ ├── int32.bin │ │ ├── int64.bin │ │ ├── mobilenet_quant.tflite │ │ ├── multi_add.bin │ │ ├── permute_uint8.tflite │ │ └── string.bin │ ├── blobs │ └── .gitkeep │ ├── demo.gif │ ├── integration_test │ └── tflite_flutter_test.dart │ ├── 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 │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── 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 │ ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h │ ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ └── Flutter-Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── scripts │ └── download_model.sh │ ├── test │ └── widget_test.dart │ ├── test_driver │ └── integration_test.dart │ └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── ffigen_tensorflow_lite.yaml ├── flutter-tflite.code-workspace ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ └── TfliteFlutterPlugin.swift └── tflite_flutter.podspec ├── lib ├── src │ ├── bindings │ │ ├── bindings.dart │ │ └── tensorflow_lite_bindings_generated.dart │ ├── delegate.dart │ ├── delegates │ │ ├── coreml_delegate.dart │ │ ├── gpu_delegate.dart │ │ ├── metal_delegate.dart │ │ └── xnnpack_delegate.dart │ ├── ffi │ │ └── helper.dart │ ├── interpreter.dart │ ├── interpreter_options.dart │ ├── isolate_interpreter.dart │ ├── model.dart │ ├── quanitzation_params.dart │ ├── tensor.dart │ └── util │ │ ├── byte_conversion_utils.dart │ │ └── list_shape_extension.dart ├── tflite_flutter.dart ├── tflite_flutter_method_channel.dart └── tflite_flutter_platform_interface.dart ├── linux ├── CMakeLists.txt ├── flutter_tflite_plugin.cc ├── flutter_tflite_plugin_private.h ├── include │ └── flutter_tflite │ │ └── flutter_tflite_plugin.h └── test │ └── flutter_tflite_plugin_test.cc ├── macos ├── Classes │ └── TfliteFlutterPlugin.swift ├── libtensorflowlite_c-mac.dylib └── tflite_flutter.podspec ├── makefile ├── melos.yaml ├── pubspec.yaml ├── src └── tensorflow_lite │ ├── builtin_ops.h │ ├── c_api.h │ ├── c_api_experimental.h │ ├── c_api_types.h │ ├── common.h │ ├── coreml_delegate.h │ ├── delegate.h │ ├── delegate_options.h │ ├── metal_delegate.h │ └── xnnpack_delegate.h ├── test ├── tflite_flutter_method_channel_test.dart ├── tflite_flutter_test.dart └── util │ └── byte_conversion_utils_test.dart └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter_tflite_plugin.cpp ├── flutter_tflite_plugin.h ├── flutter_tflite_plugin_c_api.cpp ├── include └── flutter_tflite │ └── flutter_tflite_plugin_c_api.h └── test └── flutter_tflite_plugin_test.cpp /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/flutter-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/.github/workflows/flutter-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/.metadata -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'tflite_flutter' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /doc/tflite_flutter_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/doc/tflite_flutter_cover.png -------------------------------------------------------------------------------- /example/audio_classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/.metadata -------------------------------------------------------------------------------- /example/audio_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/README.md -------------------------------------------------------------------------------- /example/audio_classification/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/analysis_options.yaml -------------------------------------------------------------------------------- /example/audio_classification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/app/build.gradle -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/audio_classification/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/audio_classification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/build.gradle -------------------------------------------------------------------------------- /example/audio_classification/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/gradle.properties -------------------------------------------------------------------------------- /example/audio_classification/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/android/settings.gradle -------------------------------------------------------------------------------- /example/audio_classification/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/assets/images/logo.png -------------------------------------------------------------------------------- /example/audio_classification/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/audio_classification/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/audio_classification/assets/models/yamnet.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/assets/models/yamnet.tflite -------------------------------------------------------------------------------- /example/audio_classification/assets/models/yamnet_label_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/assets/models/yamnet_label_list.txt -------------------------------------------------------------------------------- /example/audio_classification/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/audio_classification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/audio_classification/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Podfile -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/audio_classification/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/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/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/audio_classification/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/lib/main.dart -------------------------------------------------------------------------------- /example/audio_classification/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/audio_classification/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/audio_classification/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/audio_classification/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/audio_classification/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/linux/main.cc -------------------------------------------------------------------------------- /example/audio_classification/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/linux/my_application.cc -------------------------------------------------------------------------------- /example/audio_classification/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/linux/my_application.h -------------------------------------------------------------------------------- /example/audio_classification/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Podfile -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/audio_classification/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/audio_classification/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/audio_classification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/pubspec.yaml -------------------------------------------------------------------------------- /example/audio_classification/screenshots/android_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/screenshots/android_screenshot.png -------------------------------------------------------------------------------- /example/audio_classification/screenshots/ios_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/screenshots/ios_screenshot.png -------------------------------------------------------------------------------- /example/audio_classification/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/scripts/download_model.sh -------------------------------------------------------------------------------- /example/audio_classification/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/test/widget_test.dart -------------------------------------------------------------------------------- /example/audio_classification/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/.gitignore -------------------------------------------------------------------------------- /example/audio_classification/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/audio_classification/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/audio_classification/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/resource.h -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/utils.h -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/audio_classification/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/audio_classification/windows/runner/win32_window.h -------------------------------------------------------------------------------- /example/bertqa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/.gitignore -------------------------------------------------------------------------------- /example/bertqa/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/.metadata -------------------------------------------------------------------------------- /example/bertqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/README.md -------------------------------------------------------------------------------- /example/bertqa/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/analysis_options.yaml -------------------------------------------------------------------------------- /example/bertqa/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/.gitignore -------------------------------------------------------------------------------- /example/bertqa/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/build.gradle -------------------------------------------------------------------------------- /example/bertqa/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/bertqa/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/bertqa/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/bertqa/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/build.gradle -------------------------------------------------------------------------------- /example/bertqa/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/gradle.properties -------------------------------------------------------------------------------- /example/bertqa/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/bertqa/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/android/settings.gradle -------------------------------------------------------------------------------- /example/bertqa/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bertqa/assets/images/banner_lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/assets/images/banner_lite.png -------------------------------------------------------------------------------- /example/bertqa/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/.gitignore -------------------------------------------------------------------------------- /example/bertqa/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/bertqa/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/bertqa/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/bertqa/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Podfile -------------------------------------------------------------------------------- /example/bertqa/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/bertqa/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/bertqa/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/bertqa/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/bertqa/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/bertqa/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/bertqa/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/bertqa/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/bertqa/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/main.dart -------------------------------------------------------------------------------- /example/bertqa/lib/ml/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/ml/feature.dart -------------------------------------------------------------------------------- /example/bertqa/lib/ml/feature_convert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/ml/feature_convert.dart -------------------------------------------------------------------------------- /example/bertqa/lib/ml/qa_answer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/ml/qa_answer.dart -------------------------------------------------------------------------------- /example/bertqa/lib/ml/qa_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/ml/qa_client.dart -------------------------------------------------------------------------------- /example/bertqa/lib/qa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/qa.dart -------------------------------------------------------------------------------- /example/bertqa/lib/ui/qa_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/lib/ui/qa_detail.dart -------------------------------------------------------------------------------- /example/bertqa/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/pubspec.yaml -------------------------------------------------------------------------------- /example/bertqa/screenshots/android_qa_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/screenshots/android_qa_detail.png -------------------------------------------------------------------------------- /example/bertqa/screenshots/android_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/screenshots/android_question.png -------------------------------------------------------------------------------- /example/bertqa/screenshots/ios_qa_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/screenshots/ios_qa_detail.png -------------------------------------------------------------------------------- /example/bertqa/screenshots/ios_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/screenshots/ios_question.png -------------------------------------------------------------------------------- /example/bertqa/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/scripts/download_model.sh -------------------------------------------------------------------------------- /example/bertqa/test/tokenizer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/bertqa/test/tokenizer_test.dart -------------------------------------------------------------------------------- /example/digit_classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/.gitignore -------------------------------------------------------------------------------- /example/digit_classification/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/.metadata -------------------------------------------------------------------------------- /example/digit_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/README.md -------------------------------------------------------------------------------- /example/digit_classification/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/analysis_options.yaml -------------------------------------------------------------------------------- /example/digit_classification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/.gitignore -------------------------------------------------------------------------------- /example/digit_classification/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/app/build.gradle -------------------------------------------------------------------------------- /example/digit_classification/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/digit_classification/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/digit_classification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/build.gradle -------------------------------------------------------------------------------- /example/digit_classification/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/gradle.properties -------------------------------------------------------------------------------- /example/digit_classification/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/android/settings.gradle -------------------------------------------------------------------------------- /example/digit_classification/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/digit_classification/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/digit_classification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/.gitignore -------------------------------------------------------------------------------- /example/digit_classification/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/digit_classification/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/digit_classification/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/digit_classification/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Podfile -------------------------------------------------------------------------------- /example/digit_classification/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/digit_classification/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/digit_classification/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/digit_classification/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/digit_classification/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/digit_classification/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/digit_classification/lib/helper/digit_classifier_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/lib/helper/digit_classifier_helper.dart -------------------------------------------------------------------------------- /example/digit_classification/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/lib/main.dart -------------------------------------------------------------------------------- /example/digit_classification/lib/sketcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/lib/sketcher.dart -------------------------------------------------------------------------------- /example/digit_classification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/pubspec.yaml -------------------------------------------------------------------------------- /example/digit_classification/screenshots/android_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/screenshots/android_screenshot.png -------------------------------------------------------------------------------- /example/digit_classification/screenshots/ios_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/screenshots/ios_screenshot.png -------------------------------------------------------------------------------- /example/digit_classification/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/digit_classification/scripts/download_model.sh -------------------------------------------------------------------------------- /example/gesture_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/README.md -------------------------------------------------------------------------------- /example/gesture_classification/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/analysis_options.yaml -------------------------------------------------------------------------------- /example/gesture_classification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/android/.gitignore -------------------------------------------------------------------------------- /example/gesture_classification/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/android/app/build.gradle -------------------------------------------------------------------------------- /example/gesture_classification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/android/build.gradle -------------------------------------------------------------------------------- /example/gesture_classification/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/android/gradle.properties -------------------------------------------------------------------------------- /example/gesture_classification/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/android/settings.gradle -------------------------------------------------------------------------------- /example/gesture_classification/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/gesture_classification/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/gesture_classification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/.gitignore -------------------------------------------------------------------------------- /example/gesture_classification/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/gesture_classification/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/gesture_classification/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/gesture_classification/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Podfile -------------------------------------------------------------------------------- /example/gesture_classification/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/gesture_classification/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/gesture_classification/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/gesture_classification/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/gesture_classification/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/gesture_classification/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/gesture_classification/lib/helper/isolate_inference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/lib/helper/isolate_inference.dart -------------------------------------------------------------------------------- /example/gesture_classification/lib/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/lib/image_utils.dart -------------------------------------------------------------------------------- /example/gesture_classification/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/lib/main.dart -------------------------------------------------------------------------------- /example/gesture_classification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/pubspec.yaml -------------------------------------------------------------------------------- /example/gesture_classification/screenshots/android_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/screenshots/android_screenshot.jpg -------------------------------------------------------------------------------- /example/gesture_classification/screenshots/ios_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/screenshots/ios_screenshot.png -------------------------------------------------------------------------------- /example/gesture_classification/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/gesture_classification/scripts/download_model.sh -------------------------------------------------------------------------------- /example/image_classification_mobilenet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/.gitignore -------------------------------------------------------------------------------- /example/image_classification_mobilenet/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/.metadata -------------------------------------------------------------------------------- /example/image_classification_mobilenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/README.md -------------------------------------------------------------------------------- /example/image_classification_mobilenet/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/analysis_options.yaml -------------------------------------------------------------------------------- /example/image_classification_mobilenet/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/android/.gitignore -------------------------------------------------------------------------------- /example/image_classification_mobilenet/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/android/app/build.gradle -------------------------------------------------------------------------------- /example/image_classification_mobilenet/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/android/build.gradle -------------------------------------------------------------------------------- /example/image_classification_mobilenet/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/android/gradle.properties -------------------------------------------------------------------------------- /example/image_classification_mobilenet/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/android/settings.gradle -------------------------------------------------------------------------------- /example/image_classification_mobilenet/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/assets/images/logo.png -------------------------------------------------------------------------------- /example/image_classification_mobilenet/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/image_classification_mobilenet/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/image_classification_mobilenet/assets/models/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/assets/models/labels.txt -------------------------------------------------------------------------------- /example/image_classification_mobilenet/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/ios/.gitignore -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/ios/Podfile -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/image_classification_mobilenet/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/image_classification_mobilenet/lib/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/lib/image_utils.dart -------------------------------------------------------------------------------- /example/image_classification_mobilenet/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/lib/main.dart -------------------------------------------------------------------------------- /example/image_classification_mobilenet/lib/ui/camera.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/lib/ui/camera.dart -------------------------------------------------------------------------------- /example/image_classification_mobilenet/lib/ui/gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/lib/ui/gallery.dart -------------------------------------------------------------------------------- /example/image_classification_mobilenet/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/image_classification_mobilenet/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/image_classification_mobilenet/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/image_classification_mobilenet/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/linux/main.cc -------------------------------------------------------------------------------- /example/image_classification_mobilenet/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/linux/my_application.cc -------------------------------------------------------------------------------- /example/image_classification_mobilenet/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/linux/my_application.h -------------------------------------------------------------------------------- /example/image_classification_mobilenet/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/macos/.gitignore -------------------------------------------------------------------------------- /example/image_classification_mobilenet/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/macos/Podfile -------------------------------------------------------------------------------- /example/image_classification_mobilenet/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/image_classification_mobilenet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/makefile -------------------------------------------------------------------------------- /example/image_classification_mobilenet/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/pubspec.yaml -------------------------------------------------------------------------------- /example/image_classification_mobilenet/screenshots/live_stream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/screenshots/live_stream.jpg -------------------------------------------------------------------------------- /example/image_classification_mobilenet/screenshots/still_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/screenshots/still_image.jpg -------------------------------------------------------------------------------- /example/image_classification_mobilenet/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/scripts/download_model.sh -------------------------------------------------------------------------------- /example/image_classification_mobilenet/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/test/widget_test.dart -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/.gitignore -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/resource.h -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/utils.h -------------------------------------------------------------------------------- /example/image_classification_mobilenet/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_classification_mobilenet/windows/runner/win32_window.h -------------------------------------------------------------------------------- /example/image_segmentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/.gitignore -------------------------------------------------------------------------------- /example/image_segmentation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/.metadata -------------------------------------------------------------------------------- /example/image_segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/README.md -------------------------------------------------------------------------------- /example/image_segmentation/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/analysis_options.yaml -------------------------------------------------------------------------------- /example/image_segmentation/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/.gitignore -------------------------------------------------------------------------------- /example/image_segmentation/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/app/build.gradle -------------------------------------------------------------------------------- /example/image_segmentation/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/image_segmentation/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/image_segmentation/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/build.gradle -------------------------------------------------------------------------------- /example/image_segmentation/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/gradle.properties -------------------------------------------------------------------------------- /example/image_segmentation/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/android/settings.gradle -------------------------------------------------------------------------------- /example/image_segmentation/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/image_segmentation/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/image_segmentation/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/.gitignore -------------------------------------------------------------------------------- /example/image_segmentation/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/image_segmentation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/image_segmentation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/image_segmentation/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Podfile -------------------------------------------------------------------------------- /example/image_segmentation/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/image_segmentation/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/image_segmentation/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/image_segmentation/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/image_segmentation/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/image_segmentation/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/image_segmentation/lib/helper/image_segmentation_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/lib/helper/image_segmentation_helper.dart -------------------------------------------------------------------------------- /example/image_segmentation/lib/helper/isolate_inference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/lib/helper/isolate_inference.dart -------------------------------------------------------------------------------- /example/image_segmentation/lib/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/lib/image_utils.dart -------------------------------------------------------------------------------- /example/image_segmentation/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/lib/main.dart -------------------------------------------------------------------------------- /example/image_segmentation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/pubspec.yaml -------------------------------------------------------------------------------- /example/image_segmentation/screenshots/android_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/screenshots/android_screenshot.jpg -------------------------------------------------------------------------------- /example/image_segmentation/screenshots/ios_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/screenshots/ios_screenshot.png -------------------------------------------------------------------------------- /example/image_segmentation/scripts/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/image_segmentation/scripts/download_models.sh -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/.gitignore -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/.metadata -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/README.md -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/analysis_options.yaml -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/android/.gitignore -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/android/app/build.gradle -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/android/build.gradle -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/android/settings.gradle -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/ios/.gitignore -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/ios/Podfile -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/lib/main.dart -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/lib/ui/box_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/lib/ui/box_widget.dart -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/lib/ui/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/lib/ui/home_view.dart -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/lib/ui/stats_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/lib/ui/stats_widget.dart -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/linux/main.cc -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/linux/my_application.cc -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/linux/my_application.h -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/output_Pixel7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/output_Pixel7.gif -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/output_iPad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/output_iPad.gif -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/output_iPhone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/output_iPhone.gif -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/pubspec.yaml -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/test/widget_test.dart -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/windows/.gitignore -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/live_object_detection_ssd_mobilenet/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/live_object_detection_ssd_mobilenet/windows/runner/utils.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/.metadata -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/README.md -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/analysis_options.yaml -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/android/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/android/app/build.gradle -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/android/build.gradle -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/android/gradle.properties -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/android/settings.gradle -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/ios/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/ios/Podfile -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/lib/main.dart -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/lib/object_detection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/lib/object_detection.dart -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/linux/main.cc -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/linux/my_application.cc -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/linux/my_application.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/macos/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/macos/Podfile -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/pubspec.yaml -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/screenshot.png -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/scripts/download_model.sh -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/test/widget_test.dart -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/resource.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/utils.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet/windows/runner/win32_window.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/.metadata -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/README.md -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/analysis_options.yaml -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/android/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/android/app/build.gradle -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/android/build.gradle -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/android/gradle.properties -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/android/settings.gradle -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/assets/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/assets/labels.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/ios/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/ios/Podfile -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/lib/main.dart -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/lib/object_detection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/lib/object_detection.dart -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/linux/main.cc -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/linux/my_application.cc -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/linux/my_application.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/macos/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/macos/Podfile -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/pubspec.yaml -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/screenshot.png -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/scripts/download_model.sh -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/test/widget_test.dart -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/.gitignore -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/runner/resource.h -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/object_detection_ssd_mobilenet_v2/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/object_detection_ssd_mobilenet_v2/windows/runner/utils.h -------------------------------------------------------------------------------- /example/pose_estimation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/.gitignore -------------------------------------------------------------------------------- /example/pose_estimation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/.metadata -------------------------------------------------------------------------------- /example/pose_estimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/README.md -------------------------------------------------------------------------------- /example/pose_estimation/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/analysis_options.yaml -------------------------------------------------------------------------------- /example/pose_estimation/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/.gitignore -------------------------------------------------------------------------------- /example/pose_estimation/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/app/build.gradle -------------------------------------------------------------------------------- /example/pose_estimation/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/pose_estimation/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/pose_estimation/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/pose_estimation/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/pose_estimation/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/build.gradle -------------------------------------------------------------------------------- /example/pose_estimation/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/gradle.properties -------------------------------------------------------------------------------- /example/pose_estimation/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/android/settings.gradle -------------------------------------------------------------------------------- /example/pose_estimation/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/pose_estimation/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/.gitignore -------------------------------------------------------------------------------- /example/pose_estimation/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/pose_estimation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/pose_estimation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/pose_estimation/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Podfile -------------------------------------------------------------------------------- /example/pose_estimation/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/pose_estimation/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/pose_estimation/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/pose_estimation/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/pose_estimation/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/pose_estimation/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/pose_estimation/lib/helper/isolate_inference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/helper/isolate_inference.dart -------------------------------------------------------------------------------- /example/pose_estimation/lib/helper/pose_estimation_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/helper/pose_estimation_helper.dart -------------------------------------------------------------------------------- /example/pose_estimation/lib/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/image_utils.dart -------------------------------------------------------------------------------- /example/pose_estimation/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/main.dart -------------------------------------------------------------------------------- /example/pose_estimation/lib/models/body_part.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/models/body_part.dart -------------------------------------------------------------------------------- /example/pose_estimation/lib/models/key_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/models/key_point.dart -------------------------------------------------------------------------------- /example/pose_estimation/lib/models/person.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/lib/models/person.dart -------------------------------------------------------------------------------- /example/pose_estimation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/pubspec.yaml -------------------------------------------------------------------------------- /example/pose_estimation/screenshots/android_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/screenshots/android_screenshot.jpg -------------------------------------------------------------------------------- /example/pose_estimation/screenshots/ios_screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/screenshots/ios_screenshot.jpeg -------------------------------------------------------------------------------- /example/pose_estimation/scripts/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/pose_estimation/scripts/download_models.sh -------------------------------------------------------------------------------- /example/reinforcement_learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/README.md -------------------------------------------------------------------------------- /example/reinforcement_learning/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/android/.gitignore -------------------------------------------------------------------------------- /example/reinforcement_learning/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/android/app/build.gradle -------------------------------------------------------------------------------- /example/reinforcement_learning/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/android/build.gradle -------------------------------------------------------------------------------- /example/reinforcement_learning/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/android/gradle.properties -------------------------------------------------------------------------------- /example/reinforcement_learning/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/android/settings.gradle -------------------------------------------------------------------------------- /example/reinforcement_learning/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/reinforcement_learning/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/demo.gif -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/.gitignore -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Podfile -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/reinforcement_learning/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/ios/Runner/Runner-Bridging-Header.h -------------------------------------------------------------------------------- /example/reinforcement_learning/lib/game_agent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/lib/game_agent.dart -------------------------------------------------------------------------------- /example/reinforcement_learning/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/lib/main.dart -------------------------------------------------------------------------------- /example/reinforcement_learning/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/pubspec.yaml -------------------------------------------------------------------------------- /example/reinforcement_learning/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/scripts/download.sh -------------------------------------------------------------------------------- /example/reinforcement_learning/test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/reinforcement_learning/test_driver/integration_test.dart -------------------------------------------------------------------------------- /example/style_transfer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/.gitignore -------------------------------------------------------------------------------- /example/style_transfer/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/.metadata -------------------------------------------------------------------------------- /example/style_transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/README.md -------------------------------------------------------------------------------- /example/style_transfer/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/analysis_options.yaml -------------------------------------------------------------------------------- /example/style_transfer/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/.gitignore -------------------------------------------------------------------------------- /example/style_transfer/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/app/build.gradle -------------------------------------------------------------------------------- /example/style_transfer/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/style_transfer/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/style_transfer/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/style_transfer/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/style_transfer/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/build.gradle -------------------------------------------------------------------------------- /example/style_transfer/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/gradle.properties -------------------------------------------------------------------------------- /example/style_transfer/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/android/settings.gradle -------------------------------------------------------------------------------- /example/style_transfer/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/images/logo.png -------------------------------------------------------------------------------- /example/style_transfer/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/style_transfer/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style0.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style1.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style10.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style11.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style12.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style13.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style14.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style15.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style16.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style17.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style18.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style19.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style2.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style20.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style21.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style22.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style23.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style24.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style25.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style3.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style4.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style5.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style6.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style7.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style8.jpg -------------------------------------------------------------------------------- /example/style_transfer/assets/styles/style9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/assets/styles/style9.jpg -------------------------------------------------------------------------------- /example/style_transfer/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/style_transfer/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/.gitignore -------------------------------------------------------------------------------- /example/style_transfer/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/style_transfer/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Podfile -------------------------------------------------------------------------------- /example/style_transfer/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/style_transfer/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/style_transfer/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/style_transfer/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/style_transfer/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/style_transfer/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/style_transfer/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/style_transfer/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/lib/main.dart -------------------------------------------------------------------------------- /example/style_transfer/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/style_transfer/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/style_transfer/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/style_transfer/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/style_transfer/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/style_transfer/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/style_transfer/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/main.cc -------------------------------------------------------------------------------- /example/style_transfer/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/my_application.cc -------------------------------------------------------------------------------- /example/style_transfer/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/linux/my_application.h -------------------------------------------------------------------------------- /example/style_transfer/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/.gitignore -------------------------------------------------------------------------------- /example/style_transfer/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Podfile -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/style_transfer/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/style_transfer/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/style_transfer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/makefile -------------------------------------------------------------------------------- /example/style_transfer/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/pubspec.yaml -------------------------------------------------------------------------------- /example/style_transfer/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/scripts/download_model.sh -------------------------------------------------------------------------------- /example/style_transfer/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/test/widget_test.dart -------------------------------------------------------------------------------- /example/style_transfer/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/.gitignore -------------------------------------------------------------------------------- /example/style_transfer/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/style_transfer/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/style_transfer/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/style_transfer/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/resource.h -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/utils.h -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/style_transfer/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/style_transfer/windows/runner/win32_window.h -------------------------------------------------------------------------------- /example/super_resolution_esrgan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/.gitignore -------------------------------------------------------------------------------- /example/super_resolution_esrgan/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/.metadata -------------------------------------------------------------------------------- /example/super_resolution_esrgan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/README.md -------------------------------------------------------------------------------- /example/super_resolution_esrgan/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/analysis_options.yaml -------------------------------------------------------------------------------- /example/super_resolution_esrgan/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/android/.gitignore -------------------------------------------------------------------------------- /example/super_resolution_esrgan/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/android/app/build.gradle -------------------------------------------------------------------------------- /example/super_resolution_esrgan/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/android/build.gradle -------------------------------------------------------------------------------- /example/super_resolution_esrgan/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/android/gradle.properties -------------------------------------------------------------------------------- /example/super_resolution_esrgan/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/android/settings.gradle -------------------------------------------------------------------------------- /example/super_resolution_esrgan/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/assets/images/logo.png -------------------------------------------------------------------------------- /example/super_resolution_esrgan/assets/images/tfl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/assets/images/tfl_logo.png -------------------------------------------------------------------------------- /example/super_resolution_esrgan/assets/lr/lr-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/assets/lr/lr-1.jpg -------------------------------------------------------------------------------- /example/super_resolution_esrgan/assets/lr/lr-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/assets/lr/lr-2.jpg -------------------------------------------------------------------------------- /example/super_resolution_esrgan/assets/lr/lr-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/assets/lr/lr-3.jpg -------------------------------------------------------------------------------- /example/super_resolution_esrgan/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/super_resolution_esrgan/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/.gitignore -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Podfile -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/super_resolution_esrgan/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/super_resolution_esrgan/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/lib/main.dart -------------------------------------------------------------------------------- /example/super_resolution_esrgan/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/super_resolution_esrgan/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/super_resolution_esrgan/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/super_resolution_esrgan/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/linux/main.cc -------------------------------------------------------------------------------- /example/super_resolution_esrgan/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/linux/my_application.cc -------------------------------------------------------------------------------- /example/super_resolution_esrgan/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/linux/my_application.h -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/.gitignore -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Podfile -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/super_resolution_esrgan/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/super_resolution_esrgan/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/makefile -------------------------------------------------------------------------------- /example/super_resolution_esrgan/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/pubspec.yaml -------------------------------------------------------------------------------- /example/super_resolution_esrgan/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/scripts/download_model.sh -------------------------------------------------------------------------------- /example/super_resolution_esrgan/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/test/widget_test.dart -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/.gitignore -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/resource.h -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/utils.h -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/super_resolution_esrgan/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/super_resolution_esrgan/windows/runner/win32_window.h -------------------------------------------------------------------------------- /example/text_classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/.gitignore -------------------------------------------------------------------------------- /example/text_classification/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/.metadata -------------------------------------------------------------------------------- /example/text_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/README.md -------------------------------------------------------------------------------- /example/text_classification/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/analysis_options.yaml -------------------------------------------------------------------------------- /example/text_classification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/android/.gitignore -------------------------------------------------------------------------------- /example/text_classification/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/android/app/build.gradle -------------------------------------------------------------------------------- /example/text_classification/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/text_classification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/android/build.gradle -------------------------------------------------------------------------------- /example/text_classification/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/android/gradle.properties -------------------------------------------------------------------------------- /example/text_classification/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/android/settings.gradle -------------------------------------------------------------------------------- /example/text_classification/assets/models/README.md: -------------------------------------------------------------------------------- 1 | Here are the models stored. -------------------------------------------------------------------------------- /example/text_classification/assets/test/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/add.bin -------------------------------------------------------------------------------- /example/text_classification/assets/test/bad_model.tflite: -------------------------------------------------------------------------------- 1 | I don't know what I'm doing! 2 | -------------------------------------------------------------------------------- /example/text_classification/assets/test/int32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/int32.bin -------------------------------------------------------------------------------- /example/text_classification/assets/test/int64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/int64.bin -------------------------------------------------------------------------------- /example/text_classification/assets/test/mobilenet_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/mobilenet_quant.tflite -------------------------------------------------------------------------------- /example/text_classification/assets/test/multi_add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/multi_add.bin -------------------------------------------------------------------------------- /example/text_classification/assets/test/permute_uint8.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/permute_uint8.tflite -------------------------------------------------------------------------------- /example/text_classification/assets/test/string.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/assets/test/string.bin -------------------------------------------------------------------------------- /example/text_classification/blobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/text_classification/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/demo.gif -------------------------------------------------------------------------------- /example/text_classification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/.gitignore -------------------------------------------------------------------------------- /example/text_classification/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/text_classification/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/text_classification/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/text_classification/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Podfile -------------------------------------------------------------------------------- /example/text_classification/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/text_classification/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/text_classification/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/text_classification/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/text_classification/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/ios/Runner/Runner-Bridging-Header.h -------------------------------------------------------------------------------- /example/text_classification/lib/classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/lib/classifier.dart -------------------------------------------------------------------------------- /example/text_classification/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/lib/main.dart -------------------------------------------------------------------------------- /example/text_classification/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/text_classification/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/text_classification/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/text_classification/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/text_classification/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/linux/main.cc -------------------------------------------------------------------------------- /example/text_classification/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/linux/my_application.cc -------------------------------------------------------------------------------- /example/text_classification/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/linux/my_application.h -------------------------------------------------------------------------------- /example/text_classification/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/.gitignore -------------------------------------------------------------------------------- /example/text_classification/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/text_classification/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/text_classification/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Podfile -------------------------------------------------------------------------------- /example/text_classification/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/text_classification/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/text_classification/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/text_classification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/pubspec.yaml -------------------------------------------------------------------------------- /example/text_classification/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/scripts/download_model.sh -------------------------------------------------------------------------------- /example/text_classification/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/test/widget_test.dart -------------------------------------------------------------------------------- /example/text_classification/test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/test_driver/integration_test.dart -------------------------------------------------------------------------------- /example/text_classification/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/.gitignore -------------------------------------------------------------------------------- /example/text_classification/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/text_classification/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/text_classification/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/text_classification/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/text_classification/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/text_classification/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/text_classification/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/text_classification/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/text_classification/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/resource.h -------------------------------------------------------------------------------- /example/text_classification/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/text_classification/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/text_classification/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/text_classification/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/utils.h -------------------------------------------------------------------------------- /example/text_classification/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/text_classification/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/example/text_classification/windows/runner/win32_window.h -------------------------------------------------------------------------------- /ffigen_tensorflow_lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/ffigen_tensorflow_lite.yaml -------------------------------------------------------------------------------- /flutter-tflite.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/flutter-tflite.code-workspace -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/TfliteFlutterPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/ios/Classes/TfliteFlutterPlugin.swift -------------------------------------------------------------------------------- /ios/tflite_flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/ios/tflite_flutter.podspec -------------------------------------------------------------------------------- /lib/src/bindings/bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/bindings/bindings.dart -------------------------------------------------------------------------------- /lib/src/bindings/tensorflow_lite_bindings_generated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/bindings/tensorflow_lite_bindings_generated.dart -------------------------------------------------------------------------------- /lib/src/delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/coreml_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/delegates/coreml_delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/gpu_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/delegates/gpu_delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/metal_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/delegates/metal_delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/xnnpack_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/delegates/xnnpack_delegate.dart -------------------------------------------------------------------------------- /lib/src/ffi/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/ffi/helper.dart -------------------------------------------------------------------------------- /lib/src/interpreter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/interpreter.dart -------------------------------------------------------------------------------- /lib/src/interpreter_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/interpreter_options.dart -------------------------------------------------------------------------------- /lib/src/isolate_interpreter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/isolate_interpreter.dart -------------------------------------------------------------------------------- /lib/src/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/model.dart -------------------------------------------------------------------------------- /lib/src/quanitzation_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/quanitzation_params.dart -------------------------------------------------------------------------------- /lib/src/tensor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/tensor.dart -------------------------------------------------------------------------------- /lib/src/util/byte_conversion_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/util/byte_conversion_utils.dart -------------------------------------------------------------------------------- /lib/src/util/list_shape_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/src/util/list_shape_extension.dart -------------------------------------------------------------------------------- /lib/tflite_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/tflite_flutter.dart -------------------------------------------------------------------------------- /lib/tflite_flutter_method_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/tflite_flutter_method_channel.dart -------------------------------------------------------------------------------- /lib/tflite_flutter_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/lib/tflite_flutter_platform_interface.dart -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter_tflite_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/linux/flutter_tflite_plugin.cc -------------------------------------------------------------------------------- /linux/flutter_tflite_plugin_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/linux/flutter_tflite_plugin_private.h -------------------------------------------------------------------------------- /linux/include/flutter_tflite/flutter_tflite_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/linux/include/flutter_tflite/flutter_tflite_plugin.h -------------------------------------------------------------------------------- /linux/test/flutter_tflite_plugin_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/linux/test/flutter_tflite_plugin_test.cc -------------------------------------------------------------------------------- /macos/Classes/TfliteFlutterPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/macos/Classes/TfliteFlutterPlugin.swift -------------------------------------------------------------------------------- /macos/libtensorflowlite_c-mac.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/macos/libtensorflowlite_c-mac.dylib -------------------------------------------------------------------------------- /macos/tflite_flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/macos/tflite_flutter.podspec -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/makefile -------------------------------------------------------------------------------- /melos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/melos.yaml -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /src/tensorflow_lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/builtin_ops.h -------------------------------------------------------------------------------- /src/tensorflow_lite/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/c_api.h -------------------------------------------------------------------------------- /src/tensorflow_lite/c_api_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/c_api_experimental.h -------------------------------------------------------------------------------- /src/tensorflow_lite/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/c_api_types.h -------------------------------------------------------------------------------- /src/tensorflow_lite/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/common.h -------------------------------------------------------------------------------- /src/tensorflow_lite/coreml_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/coreml_delegate.h -------------------------------------------------------------------------------- /src/tensorflow_lite/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/delegate.h -------------------------------------------------------------------------------- /src/tensorflow_lite/delegate_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/delegate_options.h -------------------------------------------------------------------------------- /src/tensorflow_lite/metal_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/metal_delegate.h -------------------------------------------------------------------------------- /src/tensorflow_lite/xnnpack_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/src/tensorflow_lite/xnnpack_delegate.h -------------------------------------------------------------------------------- /test/tflite_flutter_method_channel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/test/tflite_flutter_method_channel_test.dart -------------------------------------------------------------------------------- /test/tflite_flutter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/test/tflite_flutter_test.dart -------------------------------------------------------------------------------- /test/util/byte_conversion_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/test/util/byte_conversion_utils_test.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter_tflite_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/flutter_tflite_plugin.cpp -------------------------------------------------------------------------------- /windows/flutter_tflite_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/flutter_tflite_plugin.h -------------------------------------------------------------------------------- /windows/flutter_tflite_plugin_c_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/flutter_tflite_plugin_c_api.cpp -------------------------------------------------------------------------------- /windows/include/flutter_tflite/flutter_tflite_plugin_c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/include/flutter_tflite/flutter_tflite_plugin_c_api.h -------------------------------------------------------------------------------- /windows/test/flutter_tflite_plugin_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorflow/flutter-tflite/HEAD/windows/test/flutter_tflite_plugin_test.cpp --------------------------------------------------------------------------------