Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e96c956
Add pose backend interface and profiling flag
C-Achard Aug 27, 2026
fd225b8
Add threaded pose inference processor
C-Achard Aug 27, 2026
5c93647
Add POET backend, skeleton, and weights
C-Achard Aug 27, 2026
6b54d22
Harden POET backend and inference lifecycle
C-Achard Aug 27, 2026
02ef7fd
Add backend-specific pose processor factory
C-Achard Aug 27, 2026
4889024
Add selectable pose backends in main window
C-Achard Aug 27, 2026
54970f3
Fix tests
C-Achard Aug 27, 2026
50bf14e
Add POET weights dialog and backend path memory
C-Achard Aug 27, 2026
3fad762
Add tests for inference pose processor
C-Achard Aug 27, 2026
973bdd0
Add main window backend switching tests
C-Achard Aug 27, 2026
6b62a78
Add UI tests for POET weights dialog
C-Achard Aug 27, 2026
b09ac00
Add POET backend and download worker tests
C-Achard Aug 27, 2026
f914fbb
Simplify POET weights download dialog
C-Achard Aug 27, 2026
0329ec6
Auto-apply downloaded POET weights
C-Achard Aug 27, 2026
e3785d9
Revise POET weights dialog test coverage
C-Achard Aug 27, 2026
bfa7baa
Use backend name in inference status messages
C-Achard Aug 27, 2026
f7aabba
Store POET weights in user cache directory
C-Achard Aug 27, 2026
e858214
Lazy-load PyTorch in POET backend
C-Achard Aug 27, 2026
e385c2a
Handle cancellable POET weights downloads
C-Achard Aug 27, 2026
76d2364
Fix queue wait timing and harden POET tests
C-Achard Aug 28, 2026
ed9bc1d
Handle async pose stop and validate POET frames
C-Achard Aug 28, 2026
74d7204
Update reset failure processor tests
C-Achard Aug 28, 2026
63e490a
Harden POET checkpoint loading
C-Achard Aug 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,4 @@ uv.lock
profile*.svg
scalene*.json
scalene*.html
/TEMP_WEIGHTS
1 change: 1 addition & 0 deletions dlclivegui/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
DEBUG_TRIGGER_LOGS = False
### Extra logs for DLC lifecycle (model loading, etc)
DLC_LIFECYCLE_EXTRA_LOGS: bool = False
MODEL_INFERENCE_PROFILING_ENABLED: bool = False
# MAIN_WINDOW_DO_LOG_TIMING: bool = False
#### Backends
BASLER_DO_LOG_TIMING: bool = False
Expand Down
Loading
Loading