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
OpenDAS
dlib
Commits
44c3a982
Commit
44c3a982
authored
Nov 30, 2016
by
Davis King
Browse files
Fixed missing implementation of map_input_to_output() and
map_output_to_input() in the concat_ layer.
parent
ca3a3aad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/dnn/layers.h
dlib/dnn/layers.h
+2
-2
No files found.
dlib/dnn/layers.h
View file @
44c3a982
...
...
@@ -2164,8 +2164,8 @@ namespace dlib
impl
::
concat_helper_impl
<
TAG_TYPES
...
>::
split
(
gradient_input
,
sub
,
0
);
}
point
map_input_to_output
(
point
p
)
const
;
point
map_output_to_input
(
point
p
)
const
;
point
map_input_to_output
(
point
p
)
const
{
return
p
;
}
point
map_output_to_input
(
point
p
)
const
{
return
p
;
}
const
tensor
&
get_layer_params
()
const
{
return
params
;
}
tensor
&
get_layer_params
()
{
return
params
;
}
...
...
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