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

tf.nn.xw_plus_b not in API docs #1434

Closed
MrSaad opened this issue Mar 8, 2016 · 3 comments
Closed

tf.nn.xw_plus_b not in API docs #1434

MrSaad opened this issue Mar 8, 2016 · 3 comments

Comments

@MrSaad
Copy link

MrSaad commented Mar 8, 2016

The method tensorflow.nn.xw_plus_b() exists but is not documented in the online API documentation.

@girving
Copy link
Contributor

girving commented Mar 8, 2016

I think this is intentional: it's better to use tf.matmul(x, w) + b directly. We are working to lock down our symbol exports so that only documented symbols are exported, but we're a bit lax at the moment.

@girving girving closed this as completed Mar 8, 2016
AMairesse added a commit to AMairesse/rnn-speech that referenced this issue Aug 10, 2016
Remplace tf.nn.xw_plus_b which may become deprecated (tensorflow/tensorflow#1434)
AMairesse added a commit to AMairesse/rnn-speech that referenced this issue Aug 11, 2016
Remplace tf.nn.xw_plus_b which may become deprecated (tensorflow/tensorflow#1434)
@dParadiz
Copy link

dParadiz commented Oct 7, 2016

tf.nn.xw_plus_b() has option to name the operation whiletf.matmul(x, w) + b has not. Is there any way around that?

@ramnath-k
Copy link

@dParadiz you can just use tf.add(tf.matmul(x, w), b, name='')

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

4 participants