Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
d2c7a37b
Commit
d2c7a37b
authored
Apr 05, 2016
by
Lukasz Kaiser
Browse files
Merge pull request #39 from orionr/fix-nonzero-typeerror
Fix issue in neural_gpu.py where TypeError is raised.
parents
6406a152
ba15af6e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
neural_gpu/neural_gpu.py
neural_gpu/neural_gpu.py
+1
-1
No files found.
neural_gpu/neural_gpu.py
View file @
d2c7a37b
...
...
@@ -23,7 +23,7 @@ import data_utils
def
conv_linear
(
args
,
kw
,
kh
,
nin
,
nout
,
do_bias
,
bias_start
,
prefix
):
"""Convolutional linear map."""
assert
args
assert
args
is
not
None
if
not
isinstance
(
args
,
(
list
,
tuple
)):
args
=
[
args
]
with
tf
.
variable_scope
(
prefix
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment