cloud
cloud copied to clipboard
Gcp region is set hard to "us-central1"
I tried so set my compute region to "west europe" using the gcp console. Did not work, jobs where always started in "us-central1".
Turns out, the region is hardcoded in tensorflow-cloud. The implementation in /core/gcp.py is:
def get_region():
return "us-central1"
Please change it to use the default region from gcp, or let us pass in the region as parameter.
I presented a similar problem in PR #381. I will implement the fix to your issue as well.
🤔