Google Colab随附了一些示例数据文件。我正在使用要使用的文件的文件路径,并尝试通过pandas访问它。
pandas.read_csv('content/sample_data/mnist_test.csv')
一直给我这个错误:
FileNotFoundError: File b'content/sample_data/mnist_test.csv' does not exist
我想念什么?
答案 0 :(得分:0)
Colab给出的路径为content/sample_data/mnist_test.csv
代替使用整个路径,删除content/
并仅使用sample_data/mnist_test.csv
作为路径即可。
这有效:
pandas.read_csv('sample_data/mnist_test.csv')
答案 1 :(得分:0)
您当前在google-colab中的文件夹为/content
。您可以使用
pandas.read_csv('sample_data/mnist_test.csv')
或
pandas.read_csv('/content/sample_data/mnist_test.csv')