Skip to content

Commit 32be116

Browse files
Merge pull request #55 from MITLibraries/tco-191-filtered-records
Update model after filtering training data
2 parents e631cbd + 9360c69 commit 32be116

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

lambdas/models/knn.pkl

-188 KB
Binary file not shown.

lambdas/models/neural.pkl

28.3 KB
Binary file not shown.

lambdas/predict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def load_model(self) -> None:
4949
Please note that this method does not have a return value. It populates
5050
the `self.model` attribute with the loaded model.
5151
"""
52-
path = "lambdas/models/knn.pkl"
52+
path = "lambdas/models/neural.pkl"
5353
with open(path, "rb") as f:
5454
self.model = load(f) # noqa: S301
5555

0 commit comments

Comments
 (0)