Skip to content

blackboxopt.visualizations.utils

get_incumbent_loss_over_time_single_fidelity(losses, times, fidelities, target_fidelity)

Filter for results with given target fidelity and generate incumbent trace.

Source code in blackboxopt/visualizations/utils.py
def get_incumbent_loss_over_time_single_fidelity(
    losses, times, fidelities, target_fidelity
):
    """Filter for results with given target fidelity and generate incumbent trace."""
    # filter out fidelity and take minimum of losses
    idx = np.logical_and(fidelities == target_fidelity, np.isfinite(losses))
    _times = times[idx]
    _losses = np.minimum.accumulate(losses[idx])
    # get unique loss values and sort their indices (to be in chronological order)
    _, idx = np.unique(_losses, return_index=True)
    idx.sort()
    # find losses
    _losses = _losses[idx]
    _times = _times[idx]
    # add steps where a new incumbent was found
    _times = np.repeat(_times, 2)[1:]
    _losses = np.repeat(_losses, 2)[:-1]
    # append best value for largest time to extend the lines
    _times = np.concatenate([_times, np.nanmax(times, keepdims=True)])
    _losses = np.concatenate([_losses, _losses[-1:]])
    return _times, _losses

patch_plotly_io_to_html(method)

Patch plotly.io.to_html with additional javascript to improve usability.

Might become obsolete, when https://github.com/plotly/plotly.js/issues/998 gets fixed.

Injects <script>-tag with content from to_html_patch.js at the end of the HTML output. But only, if the chart title starts with "[BBO]" (to minimize side effects, if the user uses plotly.io for something else).

plotly.io.to_html is also internally used for figure.show() and figure.to_html(), so this is covered, too.

Parameters:

Name Type Description Default
method

Original plotly.io.to_html method.

required

Returns:

Type Description

Patched method.

Source code in blackboxopt/visualizations/utils.py
def patch_plotly_io_to_html(method):
    """Patch `plotly.io.to_html` with additional javascript to improve usability.

    Might become obsolete, when https://github.com/plotly/plotly.js/issues/998 gets
    fixed.

    Injects `<script>`-tag with content from `to_html_patch.js` at the end of the HTML
    output. But only, if the chart title starts with "[BBO]" (to minimize side
    effects, if the user uses `plotly.io` for something else).

    `plotly.io.to_html` is also internally used for `figure.show()` and
    `figure.to_html()`, so this is covered, too.

    Args:
        method: Original `plotly.io.to_html` method.

    Returns:
        Patched method.
    """

    @wraps(method)
    def wrapped(*args, **kwargs):
        html = method(*args, **kwargs)

        # Test if title text contains "[BBO]"
        if html.find('"title": {"text": "[BBO]') < 0:
            return html

        js = importlib.resources.read_text(
            blackboxopt.visualizations, "to_html_patch.js"
        )
        html_to_inject = f"<script>{js}</script>"
        insert_idx = html.rfind("</body>")
        if insert_idx >= 0:
            # Full html page got rendered, inject <script> before <\body>
            html = html[:insert_idx] + html_to_inject + html[insert_idx:]
        else:
            # Only chart part got rendered: append <script> at the end
            html = html + html_to_inject

        return html

    return wrapped