I would like to display image samples and some related textual information with them, in table.
Is it possible to do this in jupyter notebook?
I tried to mix pandas and PIL, but it didn't work:
import pandas as pd
d = {
'band1': data.to_images(band_1[random_indices]),
'band2': data.to_images(band_2[random_indices]),
'is_iceberg': is_iceberg[random_indices]
}
pd.DataFrame(data=d)
output was
i.e. it displayed __str__ of images, not images themselves.
How to overcome?

