pub struct BertLayer {Show 16 fields
pub wq: WeightMatrix,
pub bq: Option<Vec<f32>>,
pub wk: WeightMatrix,
pub bk: Option<Vec<f32>>,
pub wv: WeightMatrix,
pub bv: Option<Vec<f32>>,
pub wo: WeightMatrix,
pub bo: Option<Vec<f32>>,
pub attn_out_norm_w: Vec<f32>,
pub attn_out_norm_b: Vec<f32>,
pub ffn_up: WeightMatrix,
pub ffn_up_b: Option<Vec<f32>>,
pub ffn_down: WeightMatrix,
pub ffn_down_b: Option<Vec<f32>>,
pub layer_out_norm_w: Vec<f32>,
pub layer_out_norm_b: Vec<f32>,
}Expand description
One transformer block’s weights. Biases that llama.cpp marks
TENSOR_NOT_REQUIRED are Option, so a checkpoint without them is
run without them rather than with a silently fabricated zero vector.
Fields§
§wq: WeightMatrix§bq: Option<Vec<f32>>§wk: WeightMatrix§bk: Option<Vec<f32>>§wv: WeightMatrix§bv: Option<Vec<f32>>§wo: WeightMatrix§bo: Option<Vec<f32>>§attn_out_norm_w: Vec<f32>attn_output_norm, applied after the attention residual.
attn_out_norm_b: Vec<f32>§ffn_up: WeightMatrix§ffn_up_b: Option<Vec<f32>>§ffn_down: WeightMatrix§ffn_down_b: Option<Vec<f32>>§layer_out_norm_w: Vec<f32>layer_output_norm, applied after the FFN residual.
layer_out_norm_b: Vec<f32>Auto Trait Implementations§
impl Freeze for BertLayer
impl RefUnwindSafe for BertLayer
impl Send for BertLayer
impl Sync for BertLayer
impl Unpin for BertLayer
impl UnsafeUnpin for BertLayer
impl UnwindSafe for BertLayer
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> 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