pub struct PhiRopeConfig {
pub rope_scaling: Option<PhiRopeScalingConfig>,
pub max_position_embeddings: usize,
pub original_max_position_embeddings: usize,
pub rope_theta: f64,
pub head_dim: usize,
}
Fields§
§rope_scaling: Option<PhiRopeScalingConfig>
§max_position_embeddings: usize
§original_max_position_embeddings: usize
§rope_theta: f64
§head_dim: usize
Trait Implementations§
source§impl From<Config> for PhiRopeConfig
impl From<Config> for PhiRopeConfig
source§fn from(val: Config) -> PhiRopeConfig
fn from(val: Config) -> PhiRopeConfig
Converts to this type from the input type.
source§impl From<Config> for PhiRopeConfig
impl From<Config> for PhiRopeConfig
source§fn from(val: Config) -> PhiRopeConfig
fn from(val: Config) -> PhiRopeConfig
Converts to this type from the input type.
source§impl From<Config> for PhiRopeConfig
impl From<Config> for PhiRopeConfig
source§fn from(val: Config) -> PhiRopeConfig
fn from(val: Config) -> PhiRopeConfig
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PhiRopeConfig
impl RefUnwindSafe for PhiRopeConfig
impl Send for PhiRopeConfig
impl Sync for PhiRopeConfig
impl Unpin for PhiRopeConfig
impl UnwindSafe for PhiRopeConfig
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> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any
.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any
.§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