-
Notifications
You must be signed in to change notification settings - Fork 135
TFIDF doesn't work #21
Copy link
Copy link
Open
Description
TFIDF doesn't work unless we actually save the DocsSeen value in the Bayes model.
Currently the struct for Word doesn't do this.
type Word struct { Count []uint64 Seen uint64 DocsSeen uint64 json:"-" }
Should be:
type Word struct { Count []uint64 Seen uint64 DocsSeen uint64 }
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels