Skip to content

Commit

Permalink
Updating lib.rs in delta_nn
Browse files Browse the repository at this point in the history
  • Loading branch information
mjovanc committed Nov 26, 2024
1 parent e03b245 commit 2c1334e
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions delta_nn/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
pub mod models;
pub mod layers;

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}
pub use models::sequential::Sequential;
pub use layers::dense::Dense;
pub use layers::relu::Relu;

0 comments on commit 2c1334e

Please sign in to comment.