-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Tizen/Web] Add ml offloading example using Yolov8 #341
Conversation
📝 TAOS-CI Version: 1.5.20200925. Thank you for submitting PR #341. Please a submit 1commit/1PR (one commit per one PR) policy to get comments quickly from reviewers. Your PR must pass all verificiation processes of cibot before starting a review process from reviewers. If you are new member to join this project, please read manuals in documentation folder and wiki page. In order to monitor a progress status of your PR in more detail, visit http://ci.nnstreamer.ai/. |
* This is a sample application of Tizen ML Web APIs. | ||
* If you want to run it on your device, Tizen 8.0 or higher is required. | ||
* `appsrc` and `tensor_query_client` element are used. | ||
* Tflite model is created by this [guide](https://github.com/nnstreamer/nnstreamer-example/tree/main/bash_script/example_yolo#export-to-tflite-and-torchscript-model-1). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
converted file is too big (42MB?), how about adding readme in res folder (guide copying model, label, and jpeg image)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- A guide to copy the model before a build,
- A script to download the model during a build,
- Github-action workflow update to download the model during a build.
We will need (1 or 2) and 3.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed tflite model in res directory and added 1,3
Thank you :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
c8cba38
to
0763ced
Compare
cibot: @niley7464, Tizen.web/ImageClassificationOffloadingYolo/get_tflite_model.py does not include Doxygen tags such as ****. You must include the Doxygen tags in the source code. Please refer to a Doxygen manual at http://github.com/nnstreamer/TAOS-CI/blob/main/ci/doc/doxygen-documentation.md |
INFO: You can read if there are misspelled characters at our misspelling check report. Please read http://ci.nnstreamer.ai/nnstreamer-example/ci/repo-workers/pr-checker/341-202406241508090.19683909416199-0763ced3c6a908e4daf9148c43e9362759ba90b5/report/misspelling_result.txt. |
This patch adds ml offloading example for Tizen client side. Yolov8 is used for image classification. Signed-off-by: Yelin Jeong <[email protected]>
0763ced
to
b8df43b
Compare
INFO: You can read if there are misspelled characters at our misspelling check report. Please read http://ci.nnstreamer.ai/nnstreamer-example/ci/repo-workers/pr-checker/341-202406241511120.59701895713806-b8df43bae95583f6bbd086f3fdecf5f174651d57/report/misspelling_result.txt. |
b8df43b
to
6743a1d
Compare
INFO: You can read if there are misspelled characters at our misspelling check report. Please read http://ci.nnstreamer.ai/nnstreamer-example/ci/repo-workers/pr-checker/341-202406241513270.6909921169281-6743a1df8c79d53bd620cc0eb0f7ee8c856efced/report/misspelling_result.txt. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@niley7464, 💯 All CI checkers are successfully verified. Thanks.
This patch adds ml offloading example for Tizen client side.
Yolov8 is used for image classification.