pub struct HardSigmoid {
pub alpha: f64,
pub beta: f64,
}Expand description
Hard Sigmoid layer.
Should be created with HardSigmoidConfig.
Fields§
§alpha: f64The alpha value.
beta: f64The beta value.
Implementations§
Trait Implementations§
Source§impl<B> AutodiffModule<B> for HardSigmoidwhere
B: AutodiffBackend,
impl<B> AutodiffModule<B> for HardSigmoidwhere
B: AutodiffBackend,
Source§type InnerModule = HardSigmoid
type InnerModule = HardSigmoid
Inner module without auto-differentiation.
Source§fn valid(&self) -> <HardSigmoid as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <HardSigmoid as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
Source§impl Clone for HardSigmoid
impl Clone for HardSigmoid
Source§fn clone(&self) -> HardSigmoid
fn clone(&self) -> HardSigmoid
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HardSigmoid
impl Debug for HardSigmoid
Source§impl Display for HardSigmoid
impl Display for HardSigmoid
Source§impl<B> Module<B> for HardSigmoidwhere
B: Backend,
impl<B> Module<B> for HardSigmoidwhere
B: Backend,
Source§type Record = ConstantRecord
type Record = ConstantRecord
Type to save and load the module.
Source§fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
Visit each tensor parameter in the module with a visitor.
Source§fn map<M>(self, _mapper: &mut M) -> HardSigmoidwhere
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> HardSigmoidwhere
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
Source§fn load_record(self, _record: <HardSigmoid as Module<B>>::Record) -> HardSigmoid
fn load_record(self, _record: <HardSigmoid as Module<B>>::Record) -> HardSigmoid
Load the module state from a record.
Source§fn into_record(self) -> <HardSigmoid as Module<B>>::Record
fn into_record(self) -> <HardSigmoid as Module<B>>::Record
Convert the module into a record containing the state.
Source§fn to_device(self, _: &<B as Backend>::Device) -> HardSigmoid
fn to_device(self, _: &<B as Backend>::Device) -> HardSigmoid
Move the module and all of its sub-modules to the given device. Read more
Source§fn fork(self, _: &<B as Backend>::Device) -> HardSigmoid
fn fork(self, _: &<B as Backend>::Device) -> HardSigmoid
Fork the module and all of its sub-modules to the given device. Read more
Source§fn collect_devices(
&self,
devices: Vec<<B as Backend>::Device>,
) -> Vec<<B as Backend>::Device>
fn collect_devices( &self, devices: Vec<<B as Backend>::Device>, ) -> Vec<<B as Backend>::Device>
Return all the devices found in the underneath module tree added to the given vector
without duplicates.
Source§fn devices(&self) -> Vec<<B as Backend>::Device>
fn devices(&self) -> Vec<<B as Backend>::Device>
Return all the devices found in the underneath module tree without duplicates.
Source§fn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
Source§fn save_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
) -> Result<(), RecorderError>
fn save_file<FR, PB>( self, file_path: PB, recorder: &FR, ) -> Result<(), RecorderError>
Save the module to a file using the provided file recorder. Read more
Source§fn load_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
device: &<B as Backend>::Device,
) -> Result<Self, RecorderError>
fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as Backend>::Device, ) -> Result<Self, RecorderError>
Load the module from a file using the provided file recorder. Read more
Source§fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
Source§impl ModuleDisplay for HardSigmoid
impl ModuleDisplay for HardSigmoid
Source§fn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
Custom display settings for the module. Read more
Source§impl ModuleDisplayDefault for HardSigmoid
impl ModuleDisplayDefault for HardSigmoid
Auto Trait Implementations§
impl Freeze for HardSigmoid
impl RefUnwindSafe for HardSigmoid
impl Send for HardSigmoid
impl Sync for HardSigmoid
impl Unpin for HardSigmoid
impl UnwindSafe for HardSigmoid
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more