Skip to content

Commit ebddd1d

Browse files
feat(api): add demo use of the single function from the mlp module
1 parent 6bf3988 commit ebddd1d

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • try1 (OOP Approach)/rust/src
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
mod MLP;
2-
fn main() {}
1+
mod mlp;
2+
fn main() {
3+
let layer = mlp::Layer::new(65000, 20);
4+
layer.show_neurons();
5+
}

0 commit comments

Comments
 (0)