Well i have got this code i copied from a tutorial
import tensorflow as tf
import tensorflow_datasets as tfds
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
setattr(tfds.image_classification.cats_vs_dogs,
'_URL',"https://download.microsoft.com/download/3/E/1/3E1C3F21-ECDB-4869-8368-
6DEBA77B919F/kagglecatsanddogs_5340.zip")
datos, metadatos = tfds.load('cats_vs_dogs', as_supervised = True, with_info = True)
“There is no item named ‘PetImages\Cat\0.jpg’ in the archive”
File “C:UsersTimaureDocumentsAI TAI T.py”, line 8, in
datos, metadatos = tfds.load(‘cats_vs_dogs’, as_supervised = True, with_info = True)
KeyError: “There is no item named ‘PetImages\Cat\0.jpg’ in the archive”
And i’m getting this error, i’m a beginner with tensor an AI, and am getting error in the initial lines x.x, i copied the error in internet but i don’t see a solution could you please help me out here guys?
2