benchmarks/dash_app/app.py [507:525]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    [
        Input("select_date", "value"),
        Input("benchmark-tabs", "value"),
        Input("select_comparison", "value"),
    ],
)
def update_training_time(selected_date, mode, comp_opt):
    try:
        filter_df = model_df[model_df["mode"] == mode]
        filter_df = filter_df[filter_df["date"] == selected_date]
        filter_df, color = process_comparison_options(filter_df, comp_opt)
    except KeyError:
        filter_df = pd.DataFrame()

    if filter_df.empty:
        return render_emtpy_figure()

    fig = px.bar(
        filter_df,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



benchmarks/dash_app/app.py [543:561]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    [
        Input("select_date", "value"),
        Input("benchmark-tabs", "value"),
        Input("select_comparison", "value"),
    ],
)
def update_training_time(selected_date, mode, comp_opt):
    try:
        filter_df = model_df[model_df["mode"] == mode]
        filter_df = filter_df[filter_df["date"] == selected_date]
        filter_df, color = process_comparison_options(filter_df, comp_opt)
    except KeyError:
        filter_df = pd.DataFrame()

    if filter_df.empty:
        return render_emtpy_figure()

    fig = px.bar(
        filter_df,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



