Type Alias: GgufMetadataMPT
ts
type GgufMetadataMPT: {
context_length: number;
embedding_length: number;
block_count: number;
attention: {
head_count: number;
alibi_bias_max: number;
clip_kqv: number;
layer_norm_epsilon: number;
};
};
Type declaration
context_length
ts
readonly context_length: number;
embedding_length
ts
readonly embedding_length: number;
block_count
ts
readonly block_count: number;
attention
ts
readonly attention: {
head_count: number;
alibi_bias_max: number;
clip_kqv: number;
layer_norm_epsilon: number;
};
attention.head_count
ts
readonly head_count: number;
attention.alibi_bias_max
ts
readonly alibi_bias_max: number;
attention.clip_kqv
ts
readonly clip_kqv: number;
attention.layer_norm_epsilon
ts
readonly layer_norm_epsilon: number;