rotta_rs 0.0.6

a Deep Learning library with rust language
Documentation
1
2
3
4
5
6
7
8
9
10
use rand::Rng;

use crate::rotta_rs_module::Module;

impl Module {
    pub fn random_initialization(&mut self) -> f64 {
        let random = self.rng.random();
        random
    }
}