Spaces:
Build error
Build error
fix: model_name_short literal string interpolation
Browse files- src/models/util_test.py +1 -1
src/models/util_test.py
CHANGED
@@ -42,7 +42,7 @@ def make_tests_view(
|
|
42 |
train on each fold suggests performance will be stable."
|
43 |
)
|
44 |
|
45 |
-
st.write('{model_name_short} cross validation test:')
|
46 |
|
47 |
stcol_seed, stcol_eval_metric = st.columns(2)
|
48 |
|
|
|
42 |
train on each fold suggests performance will be stable."
|
43 |
)
|
44 |
|
45 |
+
st.write(f'{model_name_short} cross validation test:')
|
46 |
|
47 |
stcol_seed, stcol_eval_metric = st.columns(2)
|
48 |
|