import datasets
ds = load_dataset("Hoshik/Kimono")
ds = ds.rename_column("Url", "image") # renames the "url" column to "image" (feel free to skip this step)
ds = ds.cast_column("image", datasets.Image()) # casts the "image" column from Value("string") to Image()
ds.push_to_hub("Hoshik/Kimono") # pushes the "fixed" dataset to the Hub as Parquet