Freigeben über


QNormal Klasse

QNormal-Verteilungskonfiguration.

Vererbung
azure.ai.ml.entities._job.sweep.search_space.Normal
QNormal

Konstruktor

QNormal(mu: float | None = None, sigma: float | None = None, q: int | None = None, **kwargs: Any)

Parameter

Name Beschreibung
mu

Mittelwert der Verteilung.

Standardwert: None
sigma

Standardabweichung der Verteilung.

Standardwert: None
q
int

Quantisierungsfaktor.

Standardwert: None

Beispiele

Konfigurieren von QNormal-Verteilungen für einen Hyperparameter-Sweep in einem Befehlsauftrag.


   from azure.ai.ml import command

   job = command(
       inputs=dict(kernel="linear", penalty=1.0),
       compute=cpu_cluster,
       environment=f"{job_env.name}:{job_env.version}",
       code="./scripts",
       command="python scripts/train.py --kernel $kernel --penalty $penalty",
       experiment_name="sklearn-iris-flowers",
   )

   from azure.ai.ml.sweep import QLogUniform, QNormal

   # we can reuse an existing Command Job as a function that we can apply inputs to for the sweep configurations
   job_for_sweep = job(
       penalty=QNormal(mu=2.0, sigma=1.0, q=1),
       kernel=QLogUniform(min_value=1.0, max_value=5.0),
   )