Lightning-Universe/Training-Studio_app

Add a UI to the Sweep Component

Opened this issue ยท 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

stale commented

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.