Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import pickle
|
|
|
|
| 2 |
def make_predicition(sepal_length,sepal_width,petal_length,petal_width):
|
| 3 |
with open("model_iris.pkl","rb") as f:
|
| 4 |
clf=pickle.load(f)
|
|
|
|
| 1 |
import pickle
|
| 2 |
+
import gradio as gr
|
| 3 |
def make_predicition(sepal_length,sepal_width,petal_length,petal_width):
|
| 4 |
with open("model_iris.pkl","rb") as f:
|
| 5 |
clf=pickle.load(f)
|