Method: TLearn::FNN#get_output_layer
- Defined in:
- lib/t_learn/feedforward_neural_network.rb
#get_output_layer ⇒ Object
167 168 169 170 171 172 173 |
# File 'lib/t_learn/feedforward_neural_network.rb', line 167 def get_output_layer output = [] @layer_list[@layer_size-1].each do |node| output.push(node.w) end return output end |