Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,9 @@ def merge_annotateddatasets(cfg, trainingsetfolder_full):
try:
data = pd.read_hdf(file_path)
conversioncode.guarantee_multiindex_rows(data)
if data.columns.levels[0][0] != cfg["scorer"]:
print(f"{file_path} labeled by a different scorer. This data will not be utilized in training dataset creation. If you need to merge datasets across scorers, see https://github.com/DeepLabCut/DeepLabCut/wiki/Using-labeled-data-in-DeepLabCut-that-was-annotated-elsewhere-(or-merge-across-labelers)")
continue
AnnotationData.append(data)
except FileNotFoundError:
print(file_path, " not found (perhaps not annotated).")
Expand Down