Skip to content

Commit

Permalink
started Struct for the feedforwardlayer
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubSchwenkbeck committed Dec 10, 2024
1 parent 57765e1 commit a2f9a77
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/layers/feedforward_layer.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@


pub struct FeedForwardLayer {
weights : Array2<f32>,
bias : Array2<f32>,



}

0 comments on commit a2f9a77

Please sign in to comment.