Enum google_api_proto::google::ai::generativelanguage::v1beta::hyperparameters::LearningRateOption
source · pub enum LearningRateOption {
LearningRate(f32),
LearningRateMultiplier(f32),
}
Expand description
Options for specifying learning rate during tuning.
Variants§
LearningRate(f32)
Optional. Immutable. The learning rate hyperparameter for tuning. If not set, a default of 0.001 or 0.0002 will be calculated based on the number of training examples.
LearningRateMultiplier(f32)
Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used.
Implementations§
source§impl LearningRateOption
impl LearningRateOption
sourcepub fn merge(
field: &mut Option<LearningRateOption>,
tag: u32,
wire_type: WireType,
buf: &mut impl Buf,
ctx: DecodeContext,
) -> Result<(), DecodeError>
pub fn merge( field: &mut Option<LearningRateOption>, tag: u32, wire_type: WireType, buf: &mut impl Buf, ctx: DecodeContext, ) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into self.
sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations§
source§impl Clone for LearningRateOption
impl Clone for LearningRateOption
source§fn clone(&self) -> LearningRateOption
fn clone(&self) -> LearningRateOption
Returns a copy 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 moresource§impl Debug for LearningRateOption
impl Debug for LearningRateOption
source§impl PartialEq for LearningRateOption
impl PartialEq for LearningRateOption
source§fn eq(&self, other: &LearningRateOption) -> bool
fn eq(&self, other: &LearningRateOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LearningRateOption
impl StructuralPartialEq for LearningRateOption
Auto Trait Implementations§
impl Freeze for LearningRateOption
impl RefUnwindSafe for LearningRateOption
impl Send for LearningRateOption
impl Sync for LearningRateOption
impl Unpin for LearningRateOption
impl UnwindSafe for LearningRateOption
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request