wiki_research

personal research wiki
git clone https://a3nm.net/git/wiki_research/
Log | Files | Refs

neural_network_feedforward (393B)


      1 # Neural network feedforward
      2 
      3 A [DAG] of weighted nodes and edges, and every node gets a value which is the result of applying an [activation_function] (typically [ReLu]) to the sum of the node weight and a [linear_combination] of the values of the input nodes weighted by the weight of the edges
      4 
      5 - [universal_approximation_theorem]
      6 
      7 Up: [neural_network]
      8 
      9 Aliases: feedforward neural network