pub struct Node2VecEmbeddings {
pub embeddings: HashMap<String, Vec<f64>>,
pub dim: usize,
pub total_walk_steps: usize,
}Expand description
Computed Node2Vec embeddings.
Fields§
§embeddings: HashMap<String, Vec<f64>>Map from node URI/label → embedding vector.
dim: usizeDimension of each embedding vector.
total_walk_steps: usizeTotal number of random-walk steps generated.
Implementations§
Source§impl Node2VecEmbeddings
impl Node2VecEmbeddings
Trait Implementations§
Source§impl Clone for Node2VecEmbeddings
impl Clone for Node2VecEmbeddings
Source§fn clone(&self) -> Node2VecEmbeddings
fn clone(&self) -> Node2VecEmbeddings
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 moreAuto Trait Implementations§
impl Freeze for Node2VecEmbeddings
impl RefUnwindSafe for Node2VecEmbeddings
impl Send for Node2VecEmbeddings
impl Sync for Node2VecEmbeddings
impl Unpin for Node2VecEmbeddings
impl UnsafeUnpin for Node2VecEmbeddings
impl UnwindSafe for Node2VecEmbeddings
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