Spaces:
Sleeping
Sleeping
kernel-luso-comfort
commited on
Commit
·
380e0a4
1
Parent(s):
fc90b14
Fix formatting of adjusted p-value in targets not found string
Browse files- inference_utils/model.py +1 -1
inference_utils/model.py
CHANGED
@@ -51,7 +51,7 @@ class Model:
|
|
51 |
)
|
52 |
targets_not_found_str = (
|
53 |
"\n".join(
|
54 |
-
f"{t.target} ({t.adjusted_p_value
|
55 |
for t in prediction_targets_not_found
|
56 |
)
|
57 |
if prediction_targets_not_found
|
|
|
51 |
)
|
52 |
targets_not_found_str = (
|
53 |
"\n".join(
|
54 |
+
f"{t.target} ({t.adjusted_p_value:.3f})"
|
55 |
for t in prediction_targets_not_found
|
56 |
)
|
57 |
if prediction_targets_not_found
|