Skip to content

Commit

Permalink
fix: 🎨 Make datasplit from csv consistent with DaCapo convention
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoadesScholar committed Apr 24, 2024
1 parent 6de372c commit 0b47770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cellmap_data/datasplit.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def from_csv(self, csv_path):
dataset_dict[row[0]].append(
{
"raw": os.path.join(row[1], row[2]),
"gt": os.path.join(row[3], row[4]),
"gt": os.path.join(row[3], row[4]) if len(row) > 3 else "",
}
)

Expand Down

0 comments on commit 0b47770

Please sign in to comment.