pipeline.py
get_dlc_root_data_dir()
¶
Returns a list of root directories for Element DeepLabCut
Source code in workflow_deeplabcut/paths.py
5 6 7 8 9 10 11 12 13 |
|
get_dlc_processed_data_dir()
¶
Returns an output directory relative to custom 'dlc_output_dir' root
Source code in workflow_deeplabcut/paths.py
16 17 18 19 20 21 22 23 24 |
|
Device
¶
Bases: dj.Lookup
Table for managing lab equipment.
In Element DeepLabCut, this table is referenced by model.VideoRecording
.
The primary key is also used to generate inferred output directories when
running pose estimation inference. Refer to the definition
attribute
for the table design.
Attributes:
Name | Type | Description |
---|---|---|
device |
varchar(32)
|
Device short name. |
modality |
varchar(64)
|
Modality for which this device is used. |
description |
varchar(256)
|
Optional. Description of device. |
Source code in workflow_deeplabcut/pipeline.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|