Skip to content

Commit

Permalink
Fix type issue with BM25 Vectorizer
Browse files Browse the repository at this point in the history
  • Loading branch information
rawsh authored and sanjayaksaxena committed Jun 11, 2023
1 parent 07ec2b9 commit 0ad0690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ declare module 'wink-nlp' {
bow(tf: ModelTermFrequencies): Bow;
idf(tf: ModelTermFrequencies, idf: ModelInverseDocumentFrequencies): Array<[term: string, frequency: number]>;
tf(tf: ModelTermFrequencies, idf: ModelInverseDocumentFrequencies): Array<[term: string, frequency: number]>;
modelJson(tf: ModelTermFrequencies, idf: ModelInverseDocumentFrequencies): string;
modelJSON(tf: ModelTermFrequencies, idf: ModelInverseDocumentFrequencies): string;
}

// As
Expand Down

0 comments on commit 0ad0690

Please sign in to comment.