Open aravindsasidharan opened 7 years ago
Change the path in the code to point to the location of 'data.csv'( data file). You can either use an absolute path or a relative path.
use a raw string such as :
r"C:\Users\Mainuser\Desktop\Lab6"
or using os.path.join to construct your path instead:
os.path.join("c:", os.sep, "Users", "Mainuser", "Desktop", "Lab6")
With a tip of the hat to Python os.path.join on Windows for the correct way to produce c:\Users rather than c:Users.
Sir, @llSourcell I am getting following error please help to sort out: Traceback (most recent call last): File "board.py", line 4, in
mnist = input_data.read_data_sets("/tmp/data/", one_hot=True)
File "C:\learn\tensorflow_demo\input_data.py", line 149, in read_data_sets
local_file = maybe_download(TRAIN_IMAGES, train_dir)
File "C:\learn\tensorflow_demo\input_data.py", line 14, in maybe_download
os.mkdir(work_directory)
WindowsError: [Error 3] The system cannot find the path specified: '/tmp/data/'