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
@Anipik: We could make a good benchmark for the image processing pipeline.
I'd recommend using the Dog Breeds vs. Fruits dataset which we used in NimbusML for its image examples. We currently host this dataset in our CDN for NimbusML.
In Python, the dataset / image loader looks like:
# Load image summary data from githuburl="https://express-tlcresources.azureedge.net/datasets/DogBreedsVsFruits/DogFruitWiki.SHUF.117KB.735-rows.tsv"df_train=pd.read_csv(url, sep="\t", nrows=100)
df_train['ImagePath_full'] ="https://express-tlcresources.azureedge.net/datasets/DogBreedsVsFruits/"+ \
df_train['ImagePath']
... loadimages
Purpose of the dataset is for example code & includes ~775 images of dogs & fruit:
@Anipik: We could make a good benchmark for the image processing pipeline.
I'd recommend using the Dog Breeds vs. Fruits dataset which we used in NimbusML for its image examples. We currently host this dataset in our CDN for NimbusML.
In Python, the dataset / image loader looks like:
Purpose of the dataset is for example code & includes ~775 images of dogs & fruit:


(copied from PR -- #2372 (review))
The text was updated successfully, but these errors were encountered: