Hi I’m working in Linux VM machine and after submission it shows like,
If I give absolute path it will show same error,
Hi I’m working in Linux VM machine and after submission it shows like,
Hi @RakiAcharya,
The error is because you have hard coded the AICROWD_DATASET_PATH, please use environment variable to read the files. You can use the below code to make your submission work.
train_data = pd.read_csv(AICROWD_DATASET_PATH)
Ayush