Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
b2ac1dae
Commit
b2ac1dae
authored
Jul 13, 2016
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix unpooling with none shape
parent
4bd56d0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tensorpack/models/pool.py
tensorpack/models/pool.py
+2
-2
No files found.
tensorpack/models/pool.py
View file @
b2ac1dae
...
@@ -73,8 +73,8 @@ def UnPooling2x2ZeroFilled(x):
...
@@ -73,8 +73,8 @@ def UnPooling2x2ZeroFilled(x):
out_size
=
[
-
1
,
sh
[
1
]
*
2
,
sh
[
2
]
*
2
,
sh
[
3
]]
out_size
=
[
-
1
,
sh
[
1
]
*
2
,
sh
[
2
]
*
2
,
sh
[
3
]]
return
tf
.
reshape
(
out
,
out_size
)
return
tf
.
reshape
(
out
,
out_size
)
else
:
else
:
sh
=
tf
.
shape
(
x
)
sh
v
=
tf
.
shape
(
x
)
ret
=
tf
.
reshape
(
out
,
tf
.
pack
([
-
1
,
sh
[
1
]
*
2
,
sh
[
2
]
*
2
,
sh
[
3
]]))
ret
=
tf
.
reshape
(
out
,
tf
.
pack
([
-
1
,
sh
v
[
1
]
*
2
,
shv
[
2
]
*
2
,
sh
[
3
]]))
ret
.
set_shape
([
None
,
None
,
None
,
sh
[
3
]])
ret
.
set_shape
([
None
,
None
,
None
,
sh
[
3
]])
return
ret
return
ret
...
...
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