Spaces:
Runtime error
Runtime error
Commit
Β·
339037a
1
Parent(s):
705aa19
Add missing argument for run_inference
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def create_temp_file_path(prefix, suffix):
|
|
12 |
return tmpfile.name
|
13 |
|
14 |
|
15 |
-
def run_inference(input_img):
|
16 |
# input_mg: NumPy array with the shape (width, height, 3)
|
17 |
|
18 |
# Save input_mg as a temporary file
|
|
|
12 |
return tmpfile.name
|
13 |
|
14 |
|
15 |
+
def run_inference(markdown, input_img):
|
16 |
# input_mg: NumPy array with the shape (width, height, 3)
|
17 |
|
18 |
# Save input_mg as a temporary file
|