LPX
commited on
Commit
·
c65deae
1
Parent(s):
b6b6807
✨ feat(html): add generate_results_html function
Browse files- Add new function to generate HTML content from model predictions【feat】
- Ensure the function is well-documented for future use【docs】
app.py
CHANGED
@@ -81,10 +81,10 @@ def predict_with_model(img_pil, clf, class_names, confidence_threshold, model_na
|
|
81 |
result_output.append('UNCERTAIN')
|
82 |
except Exception as e:
|
83 |
label = f"Error: {str(e)}"
|
|
|
84 |
return label, result_output
|
85 |
|
86 |
@spaces.GPU(duration=10)
|
87 |
-
# app.py
|
88 |
def predict_image(img, confidence_threshold):
|
89 |
if not isinstance(img, Image.Image):
|
90 |
raise ValueError(f"Expected a PIL Image, but got {type(img)}")
|
@@ -114,7 +114,6 @@ def predict_image(img, confidence_threshold):
|
|
114 |
combined_outputs = [result_1output, result_2output, result_3output, result_4output, result_5output, result_5boutput]
|
115 |
return img_pil, combined_outputs
|
116 |
|
117 |
-
# Define a function to generate the HTML content
|
118 |
# Define a function to generate the HTML content
|
119 |
def generate_results_html(results):
|
120 |
def get_header_color(label):
|
|
|
81 |
result_output.append('UNCERTAIN')
|
82 |
except Exception as e:
|
83 |
label = f"Error: {str(e)}"
|
84 |
+
result_output = [model_id, model_name, 0.0, 0.0, 'ERROR'] # Ensure result_output is assigned in case of error
|
85 |
return label, result_output
|
86 |
|
87 |
@spaces.GPU(duration=10)
|
|
|
88 |
def predict_image(img, confidence_threshold):
|
89 |
if not isinstance(img, Image.Image):
|
90 |
raise ValueError(f"Expected a PIL Image, but got {type(img)}")
|
|
|
114 |
combined_outputs = [result_1output, result_2output, result_3output, result_4output, result_5output, result_5boutput]
|
115 |
return img_pil, combined_outputs
|
116 |
|
|
|
117 |
# Define a function to generate the HTML content
|
118 |
def generate_results_html(results):
|
119 |
def get_header_color(label):
|