From e82cca17b8a203d96378dd02124a9189524cfb3d Mon Sep 17 00:00:00 2001 From: Limao Chang <80520563+LimaoC@users.noreply.github.com> Date: Fri, 16 Aug 2024 10:48:38 +1000 Subject: [PATCH] refactor: remove __init__ imports, add client/models/__init__.py --- client/models/__init__.py | 3 +++ client/models/pose_detection/__init__.py | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 client/models/__init__.py diff --git a/client/models/__init__.py b/client/models/__init__.py new file mode 100644 index 0000000..82866d5 --- /dev/null +++ b/client/models/__init__.py @@ -0,0 +1,3 @@ +""" +Machine learning models (pose detection and face recognition) +""" diff --git a/client/models/pose_detection/__init__.py b/client/models/pose_detection/__init__.py index 5bbec45..8fd7125 100644 --- a/client/models/pose_detection/__init__.py +++ b/client/models/pose_detection/__init__.py @@ -1,6 +1,3 @@ """ Pose detection module """ - -from .camera import is_camera_aligned -from .classification import posture_classify