You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,21 @@
3
3
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
4
4
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
5
5
6
+
## [1.1.0] - 2025-10-15
7
+
8
+
> **BREAKING CHANGES** - This version contains breaking changes due to keypoint-moseq upgrade and API refactoring. Please review the changes below and update your code accordingly.
9
+
10
+
### Breaking Changes
11
+
+**BREAKING**: Remove `recording_name` attribute from `moseq_report` since it will be added in `VideoFile` in `moseq_train`
12
+
+**BREAKING**: Add new `pose_estimation_path` attribute in `KeypointSet.VideoFile`
13
+
14
+
### New Features and Fixes
15
+
+ Fix - Update `moseq_report` and `moseq_train` to use new `QA` dir name instead of `quality_assurance`
16
+
+ Fix - Update logic in `PreProcessing` to check for outlier plots
17
+
+ Fix - add `poppler` as system dependency in `conda_env.yml`
18
+
+ Update - code cleanup related to `copy_pdf_to_png` function
19
+
+ Update - remove unused helper functions in `viz_utils` module after these changes
20
+
6
21
## [1.0.2] - 2025-10-07
7
22
+ Update - `kpms` as extra dependency (includes `keypoint-moseq`)
Copy file name to clipboardExpand all lines: element_moseq/moseq_train.py
+26-20Lines changed: 26 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
importnumpyasnp
15
15
fromelement_interface.utilsimportfind_full_path
16
16
17
-
from .plottingimportviz_utils
17
+
from .plotting.viz_utilsimportcopy_pdf_to_png
18
18
from .readersimportkpms_reader
19
19
20
20
schema=dj.schema()
@@ -161,9 +161,10 @@ class VideoFile(dj.Part):
161
161
162
162
definition="""
163
163
-> master
164
-
video_id : int # Unique ID for each video corresponding to each keypoint data file, relative to root data directory
164
+
video_id : int # Unique ID for each video corresponding to each keypoint data file, relative to root data directory
165
165
---
166
-
video_path : varchar(1000) # Filepath of each video from which the keypoints are derived, relative to root data directory
166
+
video_path : varchar(1000) # Filepath of each video (e.g., `.mp4`) from which the keypoints are derived, relative to root data directory
167
+
pose_estimation_path='' : varchar(1000) # Filepath of each pose estimation file (e.g., `.h5`) that contains the keypoints, relative to root data directory
0 commit comments