8 #ifndef BLACKCAT_NEURAL_NETWORKS_POLYMORPHIC_LAYER_H_ 11 #include "../layer_loader.h" 15 #include <sys/types.h> 23 template<
class LearningRateValueType>
31 template<
class SystemTag,
class ValueType>
40 class OutputDimension=Dimension,
41 class OutputValueType=ValueType,
42 class OutputSystemTag=SystemTag,
43 class OutputAllocator=Allocator>
84 const std::string m_classname;
85 std::shared_ptr<network_runtime_traits<value_type>> m_network_vars
86 = std::shared_ptr<network_runtime_traits<value_type>>(
101 m_classname(parse_classname(classname)) {}
109 return classname() +
':' 110 +
"\n\tinput_shape: " + m_input_shape.
to_string();
121 return forward_propagation(inputs);
126 return back_propagation(delta);
131 virtual void init() = 0;
135 set_batch_size_hook(bs);
136 m_network_vars->m_batch_size = bs;
142 set_learning_rate_hook(lr);
143 m_network_vars->m_learning_rate = lr;
146 std::shared_ptr<this_layer_type>
prev() {
147 return m_input_layer.lock();
150 std::shared_ptr<this_layer_type>
prev()
const {
151 return m_input_layer.lock();
154 std::shared_ptr<next_layer_type>
next() {
155 return m_input_layer;
158 std::shared_ptr<next_layer_type>
next()
const {
159 return m_output_layer;
163 m_input_layer = prev_layer;
167 m_output_layer = next_layer;
177 auto batch_size()
const {
return m_network_vars->m_batch_size; }
198 auto classname_ns =
std::find(classname.rbegin(), classname.rend(),
':');
199 classname.erase(classname.rend().base(), classname_ns.base());
204 template<
class... ArgsA,
class... ArgsB>
207 prev->set_next(next);
208 next->set_prev(prev);
SystemTag system_tag
Definition: polymorphic_layer_base.h:48
LearningRateValueType value_type
Definition: polymorphic_layer_base.h:26
virtual void save_from_cache(Layer_Loader &, Cache &) const
Definition: polymorphic_layer_base.h:190
std::shared_ptr< next_layer_type > next() const
Definition: polymorphic_layer_base.h:158
batched_output_tensor_type fp(const batched_input_tensor_type &inputs)
Definition: polymorphic_layer_base.h:119
std::string to_string(int begin, int end) const
Definition: dim.h:270
virtual void load_to_cache(Layer_Loader &, Cache &)
Definition: polymorphic_layer_base.h:192
auto output_shape() const
Definition: polymorphic_layer_base.h:183
std::shared_ptr< next_layer_type > next()
Definition: polymorphic_layer_base.h:154
Definition: constexpr_int.h:14
void set_next(next_layer_pointer_type next_layer)
Definition: polymorphic_layer_base.h:166
Definition: layer_base.h:86
std::shared_ptr< allocator_type > m_allocator
Definition: polymorphic_layer_base.h:91
A Dictionary designed to store any type using the 'store' and 'load' functions.
Definition: layer_cache.h:46
Definition: layer_loader.h:19
virtual void set_batch_size_hook(int bs)
Definition: polymorphic_layer_base.h:172
void set_learning_rate(double lr)
Definition: polymorphic_layer_base.h:140
std::weak_ptr< this_layer_type > m_input_layer
Definition: polymorphic_layer_base.h:92
std::shared_ptr< this_layer_type > prev()
Definition: polymorphic_layer_base.h:146
std::shared_ptr< this_layer_type > this_layer_pointer_type
Definition: polymorphic_layer_base.h:76
virtual void set_learning_rate_hook(double lr)
Definition: polymorphic_layer_base.h:173
std::shared_ptr< this_layer_type > prev() const
Definition: polymorphic_layer_base.h:150
void set_batch_size(int bs)
Definition: polymorphic_layer_base.h:133
static std::string parse_classname(std::string classname)
Definition: polymorphic_layer_base.h:197
auto batched_input_shape() const
Definition: polymorphic_layer_base.h:185
class::::::Args static auto find(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:124
Definition: polymorphic_allocator.h:127
int m_batch_size
Definition: polymorphic_layer_base.h:28
batched_input_tensor_type bp(const batched_output_tensor_type &delta)
Definition: polymorphic_layer_base.h:124
Dimension input_tensor_dimension
Definition: polymorphic_layer_base.h:50
auto batched_output_shape() const
Definition: polymorphic_layer_base.h:186
Polymorphic_Layer_Base(std::string classname)
Definition: polymorphic_layer_base.h:100
auto input_shape() const
Definition: polymorphic_layer_base.h:182
OutputAllocator output_allocator_type
Definition: polymorphic_layer_base.h:58
input_shape_type m_input_shape
Definition: polymorphic_layer_base.h:95
value_type m_learning_rate
Definition: polymorphic_layer_base.h:27
Definition: allocators.h:20
auto batched_learning_rate() const
Definition: polymorphic_layer_base.h:180
auto batch_size() const
Definition: polymorphic_layer_base.h:177
OutputValueType output_value_type
Definition: polymorphic_layer_base.h:56
auto learning_rate() const
Definition: polymorphic_layer_base.h:179
Definition: polymorphic_layer_base.h:44
batched_output_tensor_type y
Definition: polymorphic_layer_base.h:103
void link(std::shared_ptr< Layer_Base< ArgsA... >> prev, std::shared_ptr< Layer_Base< ArgsB... >> next)
Definition: polymorphic_layer_base.h:205
std::shared_ptr< next_layer_type > m_output_layer
Definition: polymorphic_layer_base.h:93
void copy_training_data_to_single_predict(Cache &, int batch_index)
Definition: polymorphic_layer_base.h:194
void set_prev(this_layer_pointer_type prev_layer)
Definition: polymorphic_layer_base.h:162
std::string classname() const
Definition: polymorphic_layer_base.h:188
Definition: polymorphic_layer_base.h:24
OutputSystemTag output_system_tag
Definition: polymorphic_layer_base.h:57
output_shape_type m_output_shape
Definition: polymorphic_layer_base.h:96
OutputDimension output_tensor_dimension
Definition: polymorphic_layer_base.h:53
BCINLINE auto concat(Ints... value) const
Definition: dim.h:105
ValueType value_type
Definition: polymorphic_layer_base.h:47
std::string get_string_architecture() const
Definition: polymorphic_layer_base.h:108
virtual void update_weights()
Definition: polymorphic_layer_base.h:129
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
std::shared_ptr< next_layer_type > next_layer_pointer_type
Definition: polymorphic_layer_base.h:77