9 lines
318 B
Python
9 lines
318 B
Python
import re
|
|
|
|
path = 'templates/backtest.html'
|
|
with open(path, 'r', encoding='utf-8') as f:
|
|
html = f.read()
|
|
|
|
# I will just add a small badge <span class="badge bg-danger ms-1">Optuna</span> to the label
|
|
# of the known optuna parameters. The user said "어차피 빨갛게 표시햇으니", maybe I already did this?
|