Spaces:
Runtime error
Runtime error
Commit
·
9ae20c2
1
Parent(s):
2f2bb5a
Update app.py
Browse files
app.py
CHANGED
@@ -2,9 +2,9 @@ import gradio as gr
|
|
2 |
import numpy as np
|
3 |
|
4 |
def inference(image):
|
5 |
-
img1 = np.array(np.rand(240,240))
|
6 |
-
img2 = np.array(np.rand(240,240))
|
7 |
-
img3 = np.array(np.rand(240,240))
|
8 |
parts_list_damage = 'test'
|
9 |
return img1, img2, img3, parts_list_damage
|
10 |
|
|
|
2 |
import numpy as np
|
3 |
|
4 |
def inference(image):
|
5 |
+
img1 = np.array(np.random.rand(240,240))
|
6 |
+
img2 = np.array(np.random.rand(240,240))
|
7 |
+
img3 = np.array(np.random.rand(240,240))
|
8 |
parts_list_damage = 'test'
|
9 |
return img1, img2, img3, parts_list_damage
|
10 |
|