Skip to content

Commit 8439a8c

Browse files
committed
adding new classifier
1 parent 9c0674f commit 8439a8c

File tree

1 file changed

+1
-1
lines changed
  • course4/week3-ungraded-labs/C4_W3_Lab_4_Github_Actions/app

1 file changed

+1
-1
lines changed

course4/week3-ungraded-labs/C4_W3_Lab_4_Github_Actions/app/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
app = FastAPI(title="Predicting Wine Class with batching")
1010

1111
# Open classifier in global scope
12-
with open("models/wine.pkl", "rb") as file:
12+
with open("models/wine-95.pkl", "rb") as file:
1313
clf = pickle.load(file)
1414

1515

0 commit comments

Comments
 (0)