Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions element_deeplabcut/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class Model(dj.Manual):
project_path : varchar(255) # DLC's project_path in config relative to root
model_prefix='' : varchar(32)
model_description='' : varchar(300)
-> [nullable] train.TrainingParamSet
-> [nullable] train.DLCTrainingTask
"""
# project_path is the only item required downstream in the pose schema

Expand All @@ -365,7 +365,7 @@ def insert_new_model(
trainingsetindex,
model_description="",
model_prefix="",
paramset_idx: int = None,
task_id: int = None,
prompt=True,
params=None,
):
Expand Down Expand Up @@ -457,7 +457,7 @@ def insert_new_model(
"trainingsetindex": int(trainingsetindex),
"engine": engine,
"project_path": project_path.relative_to(root_dir).as_posix(),
"paramset_idx": paramset_idx,
"paramset_idx": task_id,
"config_template": dlc_config,
}

Expand Down
Loading