We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f016d commit d83f177Copy full SHA for d83f177
src/gguf/insights/GgufInsights.ts
@@ -203,9 +203,7 @@ export class GgufInsights {
203
const vocabularySize = llmData.vocab_size ?? this._ggufFileInfo.metadata.tokenizer?.ggml?.tokens?.length ?? 0;
204
const embeddingSize = llmData.embedding_length ?? 0;
205
206
- const sizeTBytes = 8; // sizeof(size_t)
207
const floatBytes = 4; // sizeof(float)
208
- const uint32TBytes = 4; // sizeof(uint32_t)
209
const int32TBytes = 4; // sizeof(int32_t)
210
211
const estimateOutput = (nOutputs: number) => {
src/gguf/types/GgufTensorInfoTypes.ts
@@ -59,5 +59,5 @@ export const enum GgmlType {
59
TQ2_0 = 35,
60
IQ4_NL_4_4 = 36,
61
IQ4_NL_4_8 = 37,
62
- IQ4_NL_8_8 = 38,
+ IQ4_NL_8_8 = 38
63
}
0 commit comments