ccareaga commited on
Commit
1c46df5
·
1 Parent(s): 3bc4426

testing out creating a simple app

Browse files
Files changed (1) hide show
  1. app.py +22 -4
app.py CHANGED
@@ -1,7 +1,25 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ from chrislib.general import uninvert, view
 
4
 
5
+ from intrinsic.pipeline import run_pipeline
6
+ from intrinsic.model_util import load_models
7
+
8
+ intrinsic_model = load_models('paper_weights')
9
+ global intrinsic_model
10
+
11
+ def decompose(img):
12
+ result = run_pipeline(
13
+ img,
14
+ intrinsic_model
15
+ )
16
+
17
+ return view(uninvert(result['inv_shd'])), "Completed"
18
+
19
+
20
+ gr.Interface(
21
+ generatedepth,
22
+ [gr.inputs.Image(type="numpy", label="Input")],
23
+ [gr.outputs.Image(type="numpy", label="Output"), gr.outputs.Textbox(label=":")],
24
+ examples=[["avocado.jpg"]]
25
+ ).launch(debug=True)