lightning-hpo icon indicating copy to clipboard operation
lightning-hpo copied to clipboard

Add a UI to the Sweep Component

Open tchaton opened this issue 2 years ago • 1 comments

🚀 Feature

Motivation

As a user, the Training Studio App seems too much to get started with. I care about Sweeps but not the notebooks.

However, if I use the default Lightning HPO Sweep class as follows:

import os.path as ops
from lightning import LightningApp
from lightning_hpo import Sweep
from lightning_hpo.distributions import Uniform

app = LightningApp(
    Sweep(
        script_path="objective.py",
        n_trials=50,
        simultaneous_trials=10,
        direction="maximize",
        distributions={"x": Uniform(-10, 10)},
    )
)

This doesn't come with a UI. I would like to see only the SweepTable for this unique Sweep instead.

Pitch

Alternatives

Additional context

tchaton avatar Sep 27 '22 10:09 tchaton

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Dec 24 '22 06:12 stale[bot]