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

后端 未结 3 1810
南笙
南笙 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条回答
  • 2021-02-06 05:14

    Try pip install apache_beam[gcp]. This will help you.

    0 讨论(0)
  • 2021-02-06 05:15

    It looks like your apache-beam library installation might be incomplete.

    try pip install apache-beam[gcp]

    It allows apache beam to access files stored on Google Cloud Storage.

    Apache Beam package available here

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题