Linear

Struct Linear 

Source
pub struct Linear {
    pub weights: Tensor,
    pub biases: Tensor,
    pub activation: Activations,
    /* private fields */
}
Expand description

A 2D linearly densely-connected layer

Fields§

§weights: Tensor§biases: Tensor§activation: Activations

Implementations§

Source§

impl Linear

Source

pub fn new( input_dim: usize, output_dim: usize, activation: Activations, ) -> Linear

Create a new linear layer

Examples found in repository?
examples/nn_full.rs (line 11)
4fn main() {
5    Logger::new().init().unwrap();
6    let x = Tensor::linspace(-5.0, 5.0, 50);
7    let func = &x * -5.0;
8    let y = &func + &(Tensor::rand([50, 1]) * 0.4);
9
10    let mut model = Model::new();
11    model.add_layer(Linear::new(1, 10, Activations::None));
12    model.add_layer(Linear::new(10, 10, Activations::None));
13    model.add_layer(Linear::new(10, 1, Activations::None));
14
15    model.compile(Optimizers::SGD);
16    model.fit(&x, &y, 500, 0.00001, true);
17
18    let x_pred = scalar!(1.0);
19    let y_pred = model.predict(&x_pred);
20    println!("Predict result (should be -5): {:?}", y_pred);
21}

Trait Implementations§

Source§

impl Layer for Linear

Source§

fn parameters(&self) -> Vec<&Tensor>

Source§

fn forward(&self, train_data: &Tensor) -> Tensor

Source§

fn shape(&self) -> (usize, usize)

Source§

fn zero_grad(&self)

Auto Trait Implementations§

§

impl Freeze for Linear

§

impl !RefUnwindSafe for Linear

§

impl !Send for Linear

§

impl !Sync for Linear

§

impl Unpin for Linear

§

impl !UnwindSafe for Linear

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V