Edward Nagy commited on
Commit
cb0ce1f
1 Parent(s): 088e2ad

Add application file

Browse files
Files changed (3) hide show
  1. README.md +5 -4
  2. app.py +49 -0
  3. requirements.txt +3 -0
README.md CHANGED
@@ -1,12 +1,13 @@
1
  ---
2
  title: Iris
3
- emoji: 🐠
4
- colorFrom: red
5
- colorTo: blue
6
  sdk: gradio
7
- sdk_version: 4.3.0
8
  app_file: app.py
9
  pinned: false
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
  title: Iris
3
+ emoji: 🐢
4
+ colorFrom: purple
5
+ colorTo: green
6
  sdk: gradio
7
+ sdk_version: 3.14.0
8
  app_file: app.py
9
  pinned: false
10
+ license: apache-2.0
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from PIL import Image
3
+ import requests
4
+ import hopsworks
5
+ import joblib
6
+ import pandas as pd
7
+
8
+ project = hopsworks.login()
9
+ fs = project.get_feature_store()
10
+
11
+
12
+ mr = project.get_model_registry()
13
+ model = mr.get_model("iris_model", version=1)
14
+ model_dir = model.download()
15
+ model = joblib.load(model_dir + "/iris_model.pkl")
16
+ print("Model downloaded")
17
+
18
+ def iris(sepal_length, sepal_width, petal_length, petal_width):
19
+ print("Calling function")
20
+ # df = pd.DataFrame([[sepal_length],[sepal_width],[petal_length],[petal_width]],
21
+ df = pd.DataFrame([[sepal_length,sepal_width,petal_length,petal_width]],
22
+ columns=['sepal_length','sepal_width','petal_length','petal_width'])
23
+ print("Predicting")
24
+ print(df)
25
+ # 'res' is a list of predictions returned as the label.
26
+ res = model.predict(df)
27
+ # We add '[0]' to the result of the transformed 'res', because 'res' is a list, and we only want
28
+ # the first element.
29
+ # print("Res: {0}").format(res)
30
+ print(res)
31
+ flower_url = "https://raw.githubusercontent.com/featurestoreorg/serverless-ml-course/main/src/01-module/assets/" + res[0] + ".png"
32
+ img = Image.open(requests.get(flower_url, stream=True).raw)
33
+ return img
34
+
35
+ demo = gr.Interface(
36
+ fn=iris,
37
+ title="Iris Flower Predictive Analytics",
38
+ description="Experiment with sepal/petal lengths/widths to predict which flower it is.",
39
+ allow_flagging="never",
40
+ inputs=[
41
+ gr.inputs.Number(default=2.0, label="sepal length (cm)"),
42
+ gr.inputs.Number(default=1.0, label="sepal width (cm)"),
43
+ gr.inputs.Number(default=2.0, label="petal length (cm)"),
44
+ gr.inputs.Number(default=1.0, label="petal width (cm)"),
45
+ ],
46
+ outputs=gr.Image(type="pil"))
47
+
48
+ demo.launch(debug=True)
49
+
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ hopsworks
2
+ joblib
3
+ scikit-learn==1.1.1