pub struct GraphormerModel {
pub input_proj: Array2<f64>,
pub centrality_encoding: CentralityEncoding,
pub spatial_encoding: SpatialEncoding,
pub edge_encoding: EdgeEncoding,
pub layers: Vec<GraphormerLayer>,
pub config: GraphormerConfig,
}Expand description
Full Graphormer model stacking multiple transformer layers with centrality, spatial, and edge encodings.
Fields§
§input_proj: Array2<f64>Input projection: [in_dim, hidden_dim]
centrality_encoding: CentralityEncodingCentrality encoding module
spatial_encoding: SpatialEncodingSpatial encoding module
edge_encoding: EdgeEncodingEdge encoding module
layers: Vec<GraphormerLayer>Stack of Graphormer layers
config: GraphormerConfigConfiguration
Implementations§
Source§impl GraphormerModel
impl GraphormerModel
Sourcepub fn new(config: GraphormerConfig) -> Result<Self>
pub fn new(config: GraphormerConfig) -> Result<Self>
Create a new Graphormer model from configuration.
Trait Implementations§
Source§impl Clone for GraphormerModel
impl Clone for GraphormerModel
Source§fn clone(&self) -> GraphormerModel
fn clone(&self) -> GraphormerModel
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 GraphormerModel
impl RefUnwindSafe for GraphormerModel
impl Send for GraphormerModel
impl Sync for GraphormerModel
impl Unpin for GraphormerModel
impl UnsafeUnpin for GraphormerModel
impl UnwindSafe for GraphormerModel
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