DataWizard9742 commited on
Commit
86753b4
·
verified ·
1 Parent(s): 8f5c363

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pickle
2
+ import sklearn
3
+ import numpy as np
4
+ import pandas as pd
5
+ import streamlit as st
6
+
7
+ model_file = 'model-6.pkl'
8
+ try:
9
+ with open(model_file,'rb') as file:
10
+ model = pickle.load(file)
11
+ except FileNotFoundError:
12
+ st.error("The file was not found or may be its corrupted")
13
+
14
+ st.title("IRIS FLOWER CLASSIFICATION")
15
+ st.header("Enter the features for your prediction")
16
+
17
+ sepal_length = st.number_input("Sepal length (cm):",min_value=0.0,max_value=10.0)
18
+ sepal_width = st.number_input("Sepal Width (cm):",min_value=0.0,max_value=10.0)
19
+ petal_length = st.number_input("Petal length (cm):",min_value=0.0,max_value=10.0)
20
+ petal_width = st.number_input("Petal Width (cm):",min_value=0.0,max_value=10.0)
21
+
22
+ if st.button("PREDICT") :
23
+ features = np.array([[sepal_length,sepal_width,petal_length,petal_width]])
24
+ prediction = model.predict(features)[0]
25
+
26
+ st.subheader("Prediction has been made: ")
27
+ st.write("The prediction for your given parameters is:",prediction)