You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Discussing with @jenna-tomkinson, the example notebook should be updated for the nuclear speckles dataset to only display filename columns which can display images from the testing dataset.
E.g.
%%time# view nuclear speckles data with images and overlaid outlines from masksCytoDataFrame(
data=f"{nuclear_speckles_path}/test_slide1_converted.parquet",
data_context_dir=f"{nuclear_speckles_path}/images/plate1",
data_mask_context_dir=f"{nuclear_speckles_path}/masks/plate1",
)[
[
"Metadata_ImageNumber",
"Nuclei_Number_Object_Number",
"Image_FileName_A647",
"Image_FileName_DAPI",
"Image_FileName_GOLD",
]
][:3]
To:
%%time# view nuclear speckles data with images and overlaid outlines from masksCytoDataFrame(
data=f"{nuclear_speckles_path}/test_slide1_converted.parquet",
data_context_dir=f"{nuclear_speckles_path}/images/plate1",
data_mask_context_dir=f"{nuclear_speckles_path}/masks/plate1",
)[
[
"Metadata_ImageNumber",
"Nuclei_Number_Object_Number",
"Image_FileName_DAPI",
]
][:3]
The text was updated successfully, but these errors were encountered:
Discussing with @jenna-tomkinson, the example notebook should be updated for the nuclear speckles dataset to only display filename columns which can display images from the testing dataset.
E.g.
To:
The text was updated successfully, but these errors were encountered: