pub trait FlowBuildExt {
// Required methods
fn with_lm_head(self, vocab: usize, hidden: usize, tied: bool) -> Self;
fn logits(self) -> Self;
}Required Methods§
fn with_lm_head(self, vocab: usize, hidden: usize, tied: bool) -> Self
fn logits(self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".