Short description
I am trying to load robonet dataset after pip install tensorflow_datasets (without importing it from cloning repo) but it says no dataset name robonet exist.
Environment information
tensorflow-datasets/tfds-nightly version: tensorflow/tensorflow-gpu/tf-nightly/tf-nightly-gpu version: Reproduction instructions
Please make sure you run below script after pip install tensorflow_datasets (Not with cloned one)
import tensorflow_datasets as tfds
data, data_info = tfds.load("robonet", with_info= True)
print(data_info)
Expected behavior
Like other datasets robonetalso loaded successfully using tfds.load
robonet.py was added to TFDS in Mar 5, 2020. So, it is not registered in the latest pip package (which was released in Feb, 2020). Instead clone the repo and install it.
@ChanchalKumarMaji Thanks for response
Or alternativelly pip install tfds-nightly
Most helpful comment
Or alternativelly
pip install tfds-nightly