Datasets: robonet.py was not downloaded after pip install

Created on 20 Mar 2020  路  3Comments  路  Source: tensorflow/datasets

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

  • Operating System: Windows 10
  • Python version: 3.7
  • tensorflow-datasets/tfds-nightly version: 2.1.0
  • tensorflow/tensorflow-gpu/tf-nightly/tf-nightly-gpu version: 2.0

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

bug

Most helpful comment

Or alternativelly pip install tfds-nightly

All 3 comments

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

Was this page helpful?
0 / 5 - 0 ratings