harupy / mlflow

Open source platform for the machine learning lifecycle
https://mlflow.org
Apache License 2.0
0 stars 1 forks source link

Example box plot implementation #44

Closed harupy closed 10 months ago

harupy commented 2 years ago

Signed-off-by: harupy hkawamura0130@gmail.com

Related Issues/PRs

xxx

What changes are proposed in this pull request?

(Please fill in changes proposed in this fix)

How is this patch tested?

Does this PR change the documentation?

  1. Check the status of the ci/circleci: build_doc check. If it's successful, proceed to the next step, otherwise fix it.
  2. Click Details on the right to open the job page of CircleCI.
  3. Click the Artifacts tab.
  4. Click docs/build/html/index.html.
  5. Find the changed pages / sections and make sure they render correctly.

Release Notes

Is this a user-facing change?

(Details in 1-2 sentences. You can just refer to another PR with a description if this PR is part of a larger change.)

What component(s), interfaces, languages, and integrations does this PR affect?

Components

Interface

Language

Integrations

How should the PR be classified in the release notes? Choose one:

harupy commented 2 years ago

Code to generate sample data:

import mlflow

import random

for _ in range(10):
    with mlflow.start_run():
        mlflow.log_params({"p": random.randint(0, 3)})
        mlflow.log_metrics(
            {
                "a": random.random(),
                "b": random.random() + 1,
            }
        )