Trait border::agent::tch::model::base::Model2 [−][src]
Neural networks with double inputs and a single output.
Associated Types
type Input1[src]
An input of the neural network.
type Input2[src]
The other input of the neural network.
type Output[src]
The output of the neural network.
Required methods
fn forward(&self, x1s: &Self::Input1, x2s: &Self::Input2) -> Self::Output[src]
Performs forward computation given a pair of inputs.