We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
I presented a similar problem in PR #381. I will implement the fix to your issue as well.
Sorry, something went wrong.
🤔
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: