From e6e15ad83b5f2f0779146540fb63f995e2697fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Stusi=C5=84ski?= <33556934+jurstu@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:50:58 +0200 Subject: [PATCH 1/5] Fix typo in inference callback docstring Corrected a typo in the docstring for the inference callback function. --- runtime/hailo-8/python/object_detection/object_detection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/hailo-8/python/object_detection/object_detection.py b/runtime/hailo-8/python/object_detection/object_detection.py index 3306d7be..67d37d9c 100755 --- a/runtime/hailo-8/python/object_detection/object_detection.py +++ b/runtime/hailo-8/python/object_detection/object_detection.py @@ -212,7 +212,7 @@ def inference_callback( output_queue: queue.Queue ) -> None: """ - infernce callback to handle inference results and push them to a queue. + inference callback to handle inference results and push them to a queue. Args: completion_info: Hailo inference completion info. @@ -249,4 +249,4 @@ def main() -> None: if __name__ == "__main__": - main() \ No newline at end of file + main() From 7c566c9a633436a0cf218cd1710576d2e63ce5d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Stusi=C5=84ski?= <33556934+jurstu@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:53:12 +0200 Subject: [PATCH 2/5] Fix typo in inference callback docstring --- runtime/hailo-8/python/pose_estimation/pose_estimation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/hailo-8/python/pose_estimation/pose_estimation.py b/runtime/hailo-8/python/pose_estimation/pose_estimation.py index c32e4d9d..eb3d1a3d 100755 --- a/runtime/hailo-8/python/pose_estimation/pose_estimation.py +++ b/runtime/hailo-8/python/pose_estimation/pose_estimation.py @@ -90,7 +90,7 @@ def inference_callback( output_queue: mp.Queue ) -> None: """ - infernce callback to handle inference results and push them to a queue. + inference callback to handle inference results and push them to a queue. Args: completion_info: Hailo inference completion info. From 55c765512f4db0b7403d461d1304d97b270b8ec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Stusi=C5=84ski?= <33556934+jurstu@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:53:34 +0200 Subject: [PATCH 3/5] Fix typo in docstring for inference callback --- runtime/hailo-8/python/super_resolution/super_resolution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/hailo-8/python/super_resolution/super_resolution.py b/runtime/hailo-8/python/super_resolution/super_resolution.py index 42d89062..66b3e5ec 100755 --- a/runtime/hailo-8/python/super_resolution/super_resolution.py +++ b/runtime/hailo-8/python/super_resolution/super_resolution.py @@ -81,7 +81,7 @@ def inference_callback( output_queue: queue.Queue ) -> None: """ - infernce callback to handle inference results and push them to a queue. + inference callback to handle inference results and push them to a queue. Args: completion_info: Hailo inference completion info. From 4c6cadddd51c7cb147c92834848ea99b5da42dae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Stusi=C5=84ski?= <33556934+jurstu@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:54:01 +0200 Subject: [PATCH 4/5] Fix typo in docstring for inference callback --- .../python/instance_segmentation/instance_segmentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/hailo-8/python/instance_segmentation/instance_segmentation.py b/runtime/hailo-8/python/instance_segmentation/instance_segmentation.py index de68fb59..f0099544 100755 --- a/runtime/hailo-8/python/instance_segmentation/instance_segmentation.py +++ b/runtime/hailo-8/python/instance_segmentation/instance_segmentation.py @@ -100,7 +100,7 @@ def inference_callback( output_queue: queue.Queue ) -> None: """ - infernce callback to handle inference results and push them to a queue. + inference callback to handle inference results and push them to a queue. Args: completion_info: Hailo inference completion info. From 37022710414861c60c54da27c563a2e3eaee5abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Stusi=C5=84ski?= <33556934+jurstu@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:54:22 +0200 Subject: [PATCH 5/5] Fix typo in inference callback docstring --- runtime/hailo-8/python/lane_detection/lane_detection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/hailo-8/python/lane_detection/lane_detection.py b/runtime/hailo-8/python/lane_detection/lane_detection.py index e1352722..383db5c6 100755 --- a/runtime/hailo-8/python/lane_detection/lane_detection.py +++ b/runtime/hailo-8/python/lane_detection/lane_detection.py @@ -157,7 +157,7 @@ def inference_callback( output_queue: mp.Queue ) -> None: """ - infernce callback to handle inference results and push them to a queue. + inference callback to handle inference results and push them to a queue. Args: completion_info: Hailo inference completion info.