Skip to content

Commit 5791efa

Browse files
authored
Update app.py
1 parent c7866cc commit 5791efa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import pickle
55

66
app = Flask(__name__)
7-
model = pickle.load(open('model.pkl', 'rb'))
7+
model = pickle.load(open('models.pkl', 'rb'))
88

99
@app.route('/')
1010
def home():
@@ -34,3 +34,5 @@ def predict():
3434

3535
if __name__ == "__main__":
3636
app.run()
37+
38+
#Got Errors : [email protected]

0 commit comments

Comments
 (0)