Struct CosineEmbeddingLoss
pub struct CosineEmbeddingLoss {
pub margin: f32,
pub reduction: Ignored<Reduction>,
}
Expand description
Cosine embedding loss between two tensors.
Measures cosine distance between tensors. Used for learning embeddings or similarity.
Fields§
§margin: f32
Margin value. Default: 0.0
reduction: Ignored<Reduction>
Reduction method
Implementations§
§
impl CosineEmbeddingLoss
impl CosineEmbeddingLoss
pub fn new() ->
CosineEmbeddingLoss
pub fn new() -> CosineEmbeddingLoss
Creates a new instance
pub fn forward<B>(
&self,
input1: Tensor<B, 2>,
input2: Tensor<B, 2>,
target: Tensor<B, 1, Int>,
) -> Tensor<B, 1>where
B: Backend,
pub fn forward<B>(
&self,
input1: Tensor<B, 2>,
input2: Tensor<B, 2>,
target: Tensor<B, 1, Int>,
) -> Tensor<B, 1>where
B: Backend,
pub fn forward_no_reduction<B>(
&self,
input1: Tensor<B, 2>,
input2: Tensor<B, 2>,
target: Tensor<B, 1, Int>,
) -> Tensor<B, 1>where
B: Backend,
pub fn forward_no_reduction<B>(
&self,
input1: Tensor<B, 2>,
input2: Tensor<B, 2>,
target: Tensor<B, 1, Int>,
) -> Tensor<B, 1>where
B: Backend,
Compute loss without applying reduction.
§Arguments
input1
- First input tensor of shape [batch_size, embedding_dim]input2
- Second input tensor of shape [batch_size, embedding_dim]target
- Target tensor of shape [batch_size] with values 1 or -1
§Returns
Tensor of per-element losses with shape [batch_size]
Trait Implementations§
§
impl<B> AutodiffModule<B> for CosineEmbeddingLoss
where
B: AutodiffBackend,
impl<B> AutodiffModule<B> for CosineEmbeddingLoss
where
B: AutodiffBackend,
§
type InnerModule = CosineEmbeddingLoss
type InnerModule = CosineEmbeddingLoss
Inner module without auto-differentiation.
§
fn valid(&self) -> <CosineEmbeddingLoss
as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <CosineEmbeddingLoss as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without
auto-differentiation.
§
impl Clone for CosineEmbeddingLoss
impl Clone for CosineEmbeddingLoss
§
fn clone(&self) -> CosineEmbeddingLoss
fn clone(&self) -> CosineEmbeddingLoss
Returns a copy 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
more
§
impl Debug for CosineEmbeddingLoss
impl Debug for CosineEmbeddingLoss
§
impl Default for CosineEmbeddingLoss
impl Default for CosineEmbeddingLoss
§
fn default() -> CosineEmbeddingLoss
fn default() -> CosineEmbeddingLoss
Returns the “default value” for a type. Read
more
§
impl Display for CosineEmbeddingLoss
impl Display for CosineEmbeddingLoss
§
impl<B> Module<B> for CosineEmbeddingLoss
where
B: Backend,
impl<B> Module<B> for CosineEmbeddingLoss
where
B: Backend,
§
type Record = ConstantRecord
type Record = ConstantRecord
Type to save and load the module.
§
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.
§
fn map<M>(self, _mapper: &mut
M) -> CosineEmbeddingLoss
where
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut
M) -> CosineEmbeddingLoss
where
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
§
fn load_record(
self,
_record: <CosineEmbeddingLoss
as Module<B>>::Record,
) -> CosineEmbeddingLoss
fn load_record( self, _record: <CosineEmbeddingLoss as Module<B>>::Record, ) -> CosineEmbeddingLoss
Load the module state from a record.
§
fn into_record(self) -> <CosineEmbeddingLoss
as Module<B>>::Record
fn into_record(self) -> <CosineEmbeddingLoss as Module<B>>::Record
Convert the module into a record containing the state.
§
fn to_device(self, _: &<B as Backend>::Device) -> CosineEmbeddingLoss
fn to_device(self, _: &<B as Backend>::Device) -> CosineEmbeddingLoss
Move the module and all of its sub-modules to the given device. Read more
§
fn fork(self, _: &<B as Backend>::Device) -> CosineEmbeddingLoss
fn fork(self, _: &<B as Backend>::Device) -> CosineEmbeddingLoss
Fork the module and all of its sub-modules to the given device. Read more
§
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.
§
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.
§
fn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its
sub-modules.
§
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
§
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
§
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
§
impl ModuleDisplay for CosineEmbeddingLoss
impl ModuleDisplay for CosineEmbeddingLoss
§
fn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
Custom display settings for the module. Read
more
§
fn custom_content(&self, content: Content) -> Option<Content>
fn custom_content(&self, content: Content) -> Option<Content>
Custom attributes for the module. Read more
§
fn format(&self, passed_settings: DisplaySettings) ->
String
fn format(&self, passed_settings: DisplaySettings) -> String
Formats the module with provided display settings. Read more
§
impl ModuleDisplayDefault for CosineEmbeddingLoss
impl ModuleDisplayDefault for CosineEmbeddingLoss
Auto Trait Implementations§
impl Freeze for CosineEmbeddingLoss
impl RefUnwindSafe for CosineEmbeddingLoss
impl Send for CosineEmbeddingLoss
impl Sync for CosineEmbeddingLoss
impl Unpin for CosineEmbeddingLoss
impl UnwindSafe for CosineEmbeddingLoss
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,
§
impl<T> Instrument for T
impl<T> Instrument for T
§
fn instrument(self, span: Span) ->
Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§
fn in_current_span(self) ->
Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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
more
Source§
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
§
impl<T> Pointable for T
impl<T> Pointable for T
§
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§
impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§
fn read_from_little_endian(read: &mut
R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.
§
impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§
fn try_to_compact_string(&self)
-> Result<CompactString,
ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
[
ToCompactString::to_compact_string()
] Read more
§
fn to_compact_string(&self) ->
CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString
].
Read more
§
impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§
fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
,
but without panic on OOM.