-
Notifications
You must be signed in to change notification settings - Fork 82
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
[Application] cuda support for example of pytorch yolo v2 @open sesame 05/10 19:54 #2575
Conversation
📝 TAOS-CI Version: 1.5.20200925. Thank you for submitting PR #2575. 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/. |
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405082130150.93813896179199-847cffad2e54cd3dd6a0705d5630d4e6782a2bcc/report/pylint_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.
@baek2sm, 💯 All CI checkers are successfully verified. Thanks.
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405091321350.55602288246155-847cffad2e54cd3dd6a0705d5630d4e6782a2bcc/report/pylint_result.txt. |
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405091323230.87582993507385-847cffad2e54cd3dd6a0705d5630d4e6782a2bcc/report/pylint_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.
@baek2sm, 💯 All CI checkers are successfully verified. Thanks.
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405101953420.2483069896698-847cffad2e54cd3dd6a0705d5630d4e6782a2bcc/report/pylint_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.
LGTM
self.input_images = [] | ||
self.bbox_gt = [] | ||
self.cls_gt = [] | ||
|
||
for i in range(len(img_list)): | ||
img = np.array(Image.open(img_list[i]).resize((416, 416))) / 255 | ||
for i in range(len(ids_list)): |
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.
Don't need to use i in this for loop?
I think can change the for loop to use the elements directly.
for ids in ids_lilst:
...
with open(ann_dir + ids + ".txt", "rt", encoding="utf-8") as f:
...
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.
@SeoHyungjun right. thanks! i'll apply it
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405171646290.5653030872345-13ef2c2631118401d8267b34d094b6bc0bf3319b/report/pylint_result.txt. |
- add cuda option to train yolo v2 model backbone - preprocessing for input dataset * unmatched paired dataset * no annotation value Signed-off-by: Seungbaek Hong <[email protected]>
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405171649220.85803890228271-fc0e7b047e6135bd311c754b8d8b728927bafb56/report/pylint_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.
@baek2sm, 💯 All CI checkers are successfully verified. Thanks.
We generate a report if there are dangerous coding constructs in your code. Please read http://ci.nnstreamer.ai/nntrainer/ci/repo-workers/pr-checker/2575-202405171743270.50017309188843-fc0e7b047e6135bd311c754b8d8b728927bafb56/report/pylint_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.
@baek2sm, 💯 All CI checkers are successfully verified. Thanks.
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
Signed-off-by: Seungbaek Hong [email protected]