← back to Exo

.typings/mflux/models/common/schedulers/linear_scheduler.pyi

21 lines

"""
This type stub file was generated by pyright.
"""

import mlx.core as mx
from typing import TYPE_CHECKING
from mflux.models.common.config.config import Config
from mflux.models.common.schedulers.base_scheduler import BaseScheduler

if TYPE_CHECKING: ...

class LinearScheduler(BaseScheduler):
    def __init__(self, config: Config) -> None: ...
    @property
    def sigmas(self) -> mx.array: ...
    @property
    def timesteps(self) -> mx.array: ...
    def step(
        self, noise: mx.array, timestep: int, latents: mx.array, **kwargs
    ) -> mx.array: ...