在Datalab Jupyter Notebook中加载CSV文件

时间:2019-11-19 05:25:22

标签: jupyter-notebook google-cloud-datalab

我正在使用足够大的数据集(2 GB)构建机器学习模型,该数据集无法在我的本地计算机上运行,​​因此我决定使用google cloud datalab。我已经成功创建了VM,但找不到如何像在本地计算机中那样导入数据(使用pandas read_csv)。我的数据在Google云端硬盘中。有什么简单的方法可以解决这个问题。

1 个答案:

答案 0 :(得分:0)

# Excute below code in a cell
from google.colab import drive
drive.mount('/mount_unique',force_remount=True)
# HERE YOU WILL BE ASKED TO navigate to an URL, click on it and copy the authentication token to clipboard
# Paste in the text box shown and enter.

# execute the below code to list directories on your google drive
from os import listdir
print(listdir('/mount_unique'))

# print(listdir('/mount_unique/My Drive')) #lists contents of your drive

import pandas as pd
pd.read_csv('/mount_unique/My Drive/<YOUR_DATA_FILE_PATH>')