Skip to content

Type Alias: GgufMetadataBloom

ts
type GgufMetadataBloom = {
  context_length: number;
  embedding_length: number;
  block_count: number;
  feed_forward_length: number;
  attention: {
     head_count: number;
     layer_norm_epsilon: number;
    };
};

Defined in: gguf/types/GgufMetadataTypes.ts:442

Properties

context_length

ts
readonly context_length: number;

Defined in: gguf/types/GgufMetadataTypes.ts:443


embedding_length

ts
readonly embedding_length: number;

Defined in: gguf/types/GgufMetadataTypes.ts:444


block_count

ts
readonly block_count: number;

Defined in: gguf/types/GgufMetadataTypes.ts:445


feed_forward_length

ts
readonly feed_forward_length: number;

Defined in: gguf/types/GgufMetadataTypes.ts:446


attention

ts
readonly attention: {
  head_count: number;
  layer_norm_epsilon: number;
};

Defined in: gguf/types/GgufMetadataTypes.ts:447

head_count

ts
readonly head_count: number;

layer_norm_epsilon

ts
readonly layer_norm_epsilon: number;