MCPcopy Create free account
hub / github.com/daniel-e/rustml / sigmoid

Method sigmoid

src/ops.rs:85–89  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

83impl <T: Functions + FunctionsInPlace + Clone> Functions for Vec<T> {
84
85 fn sigmoid(&self) -> Self {
86 let mut x = self.clone();
87 x.isigmoid();
88 x
89 }
90
91 fn sigmoid_derivative(&self) -> Self {
92 let mut x = self.clone();

Callers 2

predictMethod · 0.80
feedforwardMethod · 0.80

Calls 1

isigmoidMethod · 0.80

Tested by

no test coverage detected