“Unable to get Filesystem for path” error when training neural network on google cloud

后端 未结 3 1844
南笙
南笙 2021-02-06 05:00

I am using Google Cloud to train a neural network on the cloud like in the following example:

https://cloud.google.com/blog/big-data/2016/12/how-to-classify-images-with-

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-06 05:25

    Just as Jean-Christophe described, I believe your installation is incomplete.

    The apache-beam package doesn't include all the stuff to read/write from GCP. To get all that, as well as the runner for being able to deploy your pipeline to CloudDataflow (the DataRunner), you'll need to install it via pip.

    pip install google-cloud-dataflow
    

    This is how I was able to resolve the same issue.

提交回复
热议问题