Skip to content
New issue

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

Tensorflow 2.1.0 is unavailable on PyPi #3

Open
igorline opened this issue Jul 27, 2020 · 3 comments
Open

Tensorflow 2.1.0 is unavailable on PyPi #3

igorline opened this issue Jul 27, 2020 · 3 comments

Comments

@igorline
Copy link

When I try to install tensorflow with pip install Tensorflow==2.1.0 I'm getting an error No matching distribution found for Tensorflow==2.1.0. Only offered versions are 2.2.0 and higher.
Should the code be working with those?

@taki0112
Copy link
Collaborator

Yes.
I think no problem.

@igorline
Copy link
Author

Version 2.2.0 is working, but version 2.3.0 gives me this error
ValueError: All layers added to a Sequential model should have unique names. Name "relu" is already the name of a layer in this model. Update the name argument to pass a unique name.

@Gavin-Evans
Copy link

Version 2.2.0 is working, but version 2.3.0 gives me this error
ValueError: All layers added to a Sequential model should have unique names. Name "relu" is already the name of a layer in this model. Update the name argument to pass a unique name.

Modify name parameters, as follows:
layers += [Relu()] ---------> layers += [Relu(name='relu' + str(i))]
layers += [Relu()] ---------> layers += [Relu(name='domain_{}relu{}'.format(n_d, i))]
and other errors do it , the similar
it works well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants