Error During generate prediction after submission

Hi I’m working in Linux VM machine and after submission it shows like,



If I give absolute path it will show same error,

2 Likes

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

2 Likes