pub struct Node2VecConfig {
pub walk: Node2VecWalkConfig,
pub embedding_dim: usize,
pub window_size: usize,
pub num_epochs: usize,
pub learning_rate: f64,
pub normalize: bool,
}Expand description
Full Node2Vec configuration (walks + skip-gram training).
Fields§
§walk: Node2VecWalkConfigWalk phase configuration.
embedding_dim: usizeEmbedding dimension.
window_size: usizeSkip-gram context window radius (both sides).
num_epochs: usizeNumber of training epochs over the full walk corpus.
learning_rate: f64Initial learning rate for skip-gram SGD.
normalize: boolWhether to normalize final embeddings to unit length.
Trait Implementations§
Source§impl Clone for Node2VecConfig
impl Clone for Node2VecConfig
Source§fn clone(&self) -> Node2VecConfig
fn clone(&self) -> Node2VecConfig
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 Node2VecConfig
impl Debug for Node2VecConfig
Auto Trait Implementations§
impl Freeze for Node2VecConfig
impl RefUnwindSafe for Node2VecConfig
impl Send for Node2VecConfig
impl Sync for Node2VecConfig
impl Unpin for Node2VecConfig
impl UnsafeUnpin for Node2VecConfig
impl UnwindSafe for Node2VecConfig
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 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