Project question and google drive proble

I do not know how to add the project datasets into python, could you please tell me?

1 Like

if you are talking about some default datasets - open the notebook from this doc https://docs.google.com/document/d/1_Cam97RDwfQofVSoQb-r9o4e2z3Jc4DdkNUSg6fDxjA/preview?pru=AAABc3GrSYw*iS6lxrYNigMtS89kj4lhig , they already load datasets.
Otherwise, download data to your laptop, upload it to Google Drive using lines of code

from google.colab import drive
drive.mount(’/content/gdrive’)

and try after this np.loadtxt() - it will work fine both with .csv files.

1 Like

Thank you very much.

In the text file, I can find the colab code, and run it over, while I could not find the csv file in my google drive, I could not find the reason.

1 Like