pub enum TaskSharingStrategy {
Independent,
SharedRepresentation,
ParameterSharing,
HierarchicalSharing,
AdaptiveSharing,
MultiLevelSharing,
TransferLearning,
}Expand description
Strategies for sharing information between tasks
Variants§
Independent
No sharing between tasks
Shared representation learning
ParameterSharing
Parameter sharing between tasks
HierarchicalSharing
Hierarchical task relationships
AdaptiveSharing
Adaptive sharing based on task similarity
MultiLevelSharing
Multi-level sharing with different granularities
TransferLearning
Transfer learning between tasks
Trait Implementations§
Source§impl Clone for TaskSharingStrategy
impl Clone for TaskSharingStrategy
Source§fn clone(&self) -> TaskSharingStrategy
fn clone(&self) -> TaskSharingStrategy
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 TaskSharingStrategy
impl Debug for TaskSharingStrategy
Source§impl PartialEq for TaskSharingStrategy
impl PartialEq for TaskSharingStrategy
impl StructuralPartialEq for TaskSharingStrategy
Auto Trait Implementations§
impl Freeze for TaskSharingStrategy
impl RefUnwindSafe for TaskSharingStrategy
impl Send for TaskSharingStrategy
impl Sync for TaskSharingStrategy
impl Unpin for TaskSharingStrategy
impl UnwindSafe for TaskSharingStrategy
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