Hi,
I have uploaded the data and running the job using the below command:
floyd run --cpu --data varnikaa/datasets/cp_train/1:/train --mode jupyter
I dont know how to load this data into jupyter notebook. Something like this in pandas:
import pandas as pd
train_df = pd.read_csv('train.csv', nrows = 10)
However, I could see that the data has been loaded successfully.
!ls /train
train.csv
I dont know how to read this data into a pandas dataframe.
If possible, please help.