Skip to content

Commit ccb821f

Browse files
committed
Add duplication notes to graph and pose modules
Added comments indicating duplication between dlclive/graph.py and dlclive/pose_estimation_tensorflow/graph.py, as well as between dlclive/pose.py and dlclive/pose_estimation_tensorflow/pose.py. Marked the TensorFlow-specific files in the root as candidates for deletion since only the versions in pose_estimation_tensorflow are used.
1 parent d783a30 commit ccb821f

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

dlclive/graph.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
Licensed under GNU Lesser General Public License v3.0
66
"""
77

8-
8+
# NOTE DUPLICATED @C-Achard 2026-26-01: Duplication between this file
9+
# and dlclive/pose_estimation_tensorflow/graph.py
10+
# As this is tensorflow-specific and only the other graph.py is used,
11+
# this one is candidate for deletion.
912
import tensorflow as tf
1013

1114
vers = (tf.__version__).split(".")

dlclive/pose.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
Licensed under GNU Lesser General Public License v3.0
66
"""
77

8-
8+
# NOTE DUPLICATED @C-Achard 2026-26-01: Duplication between this file
9+
# and dlclive/pose_estimation_tensorflow/pose.py
10+
# As this is tensorflow-specific and only the other pose.py is used,
11+
# this one is candidate for deletion.
912
import numpy as np
1013

1114

dlclive/pose_estimation_tensorflow/graph.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Licensed under GNU Lesser General Public License v3.0
66
"""
77

8-
8+
# NOTE DUPLICATED @C-Achard 2026-26-01: Duplication between this file
9+
# and dlclive/graph.py
910
import tensorflow as tf
1011

1112
vers = (tf.__version__).split(".")

dlclive/pose_estimation_tensorflow/pose.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Licensed under GNU Lesser General Public License v3.0
66
"""
77

8-
8+
# NOTE DUPLICATED @C-Achard 2026-26-01: Duplication between this file
9+
# and dlclive/pose.py
910
import numpy as np
1011

1112

0 commit comments

Comments
 (0)