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
In my jupyter I have
%pip install see_rnn==1.15.1
from see_rnn import get_gradients, get_outputs
ModuleNotFoundError Traceback (most recent call last) [/.......-based.ipynb]/...based.ipynb) Cell 33 line 1 ----> 1 from see_rnn import get_gradients, get_outputs
I also tried with version 1.15.0 .
What am I missing ?
The text was updated successfully, but these errors were encountered:
When I do this
import see_rnn as sr grads1 = sr.get_gradients(lstm_model, 1, x_train_data, y_train_data) grads2 = sr.get_gradients(lstm_model,2,x_train_data,y_train_data) output = sr.get_outputs(lstm_model, 1, x_train_data)
I am getting error -
AttributeError: module 'see_rnn' has no attribute 'get_gradients'
Sorry, something went wrong.
No branches or pull requests
In my jupyter I have
%pip install see_rnn==1.15.1
from see_rnn import get_gradients, get_outputs
ModuleNotFoundError Traceback (most recent call last)
[/.......-based.ipynb]/...based.ipynb) Cell 33 line 1
----> 1 from see_rnn import get_gradients, get_outputs
I also tried with version 1.15.0 .
What am I missing ?
The text was updated successfully, but these errors were encountered: