Commit a0b68119 authored by Davis King's avatar Davis King

Renamed stuff

parent f421b68a
......@@ -135,7 +135,7 @@ namespace dlib
REQUIREMENTS ON SUB_NET
- One of the following must be true:
- SUB_NET implements the EXAMPLE_INPUT interface defined in
- SUB_NET implements the EXAMPLE_INPUT_LAYER interface defined in
input_abstract.h.
- SUB_NET is an add_layer object.
- SUB_NET is an add_tag_layer object.
......
......@@ -12,7 +12,7 @@ namespace dlib
// ----------------------------------------------------------------------------------------
class EXAMPLE_INPUT
class EXAMPLE_INPUT_LAYER
{
/*!
WHAT THIS OBJECT REPRESENTS
......@@ -20,7 +20,7 @@ namespace dlib
of the input layer is to convert an input_type into a tensor. Nothing more
and nothing less.
Note that there is no dlib::EXAMPLE_INPUT type. It is shown here purely to
Note that there is no dlib::EXAMPLE_INPUT_LAYER type. It is shown here purely to
document the interface that an input layer object must implement. If you
are using some kind of image or matrix object as your input_type then you
can use the provided dlib::input layer type defined below. Otherwise, you
......@@ -28,7 +28,7 @@ namespace dlib
!*/
public:
EXAMPLE_INPUT(
EXAMPLE_INPUT_LAYER(
);
/*!
ensures
......@@ -37,7 +37,7 @@ namespace dlib
constructable.
!*/
EXAMPLE_INPUT(
EXAMPLE_INPUT_LAYER(
const some_other_input_layer_type& item
);
/*!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment