Skip to content

Commit db6043e

Browse files
committed
cli: more type cast
1 parent c37c438 commit db6043e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/src/benchmark_gpt.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async function main(args: Required<CLIArguments>): Promise<void> {
8383
.batch(config.contextLength + 1, 1)
8484

8585
const preprocessedDataset = dataset
86-
.map((tokens) => [tokens.pop(), tokens.last()] as [List<number>, number])
86+
.map((tokens) => [tokens.pop(), tokens.last() as number] as [List<number>, number])
8787
.batch(batchSize);
8888

8989
// Init and train the model

cli/src/train_gpt.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async function main(): Promise<void> {
2323
.map((text: string) => processing.tokenize(tokenizer, text))
2424
.flatten()
2525
.batch(config.contextLength + 1, 1)
26-
.map((tokens) => [tokens.pop(), tokens.last()] as [List<number>, number])
26+
.map((tokens) => [tokens.pop(), tokens.last() as number] as [List<number>, number])
2727
.repeat()
2828
.batch(8);
2929

0 commit comments

Comments
 (0)