pub struct ProteinMPNN { /* private fields */ }Expand description
ProteinMPNN Model
Implementations§
Source§impl ProteinMPNN
impl ProteinMPNN
pub fn load(vb: VarBuilder<'_>, config: &ProteinMPNNConfig) -> Result<Self>
pub fn encode( &self, features: &ProteinFeatures, ) -> Result<(Tensor, Tensor, Tensor)>
pub fn simple_decode(&self, features: &ProteinFeatures) -> Result<ScoreOutput>
pub fn sample( &self, features: &ProteinFeatures, temperature: f64, seed: u64, ) -> Result<ScoreOutput>
pub fn score( &self, features: &ProteinFeatures, use_sequence: bool, ) -> Result<ScoreOutput>
Auto Trait Implementations§
impl Freeze for ProteinMPNN
impl !RefUnwindSafe for ProteinMPNN
impl Send for ProteinMPNN
impl Sync for ProteinMPNN
impl Unpin for ProteinMPNN
impl UnsafeUnpin for ProteinMPNN
impl !UnwindSafe for ProteinMPNN
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
§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 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