← back to Exo

.typings/mflux/models/common/weights/loading/weight_applier.pyi

31 lines

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

import mlx.nn as nn
from typing import TYPE_CHECKING
from mflux.models.common.weights.loading.loaded_weights import LoadedWeights
from mflux.models.common.weights.loading.weight_definition import (
    ComponentDefinition,
    WeightDefinitionType,
)

if TYPE_CHECKING: ...

class WeightApplier:
    @staticmethod
    def apply_and_quantize_single(
        weights: LoadedWeights,
        model: nn.Module,
        component: ComponentDefinition,
        quantize_arg: int | None,
        quantization_predicate=...,
    ) -> int | None: ...
    @staticmethod
    def apply_and_quantize(
        weights: LoadedWeights,
        models: dict[str, nn.Module],
        quantize_arg: int | None,
        weight_definition: WeightDefinitionType,
    ) -> int | None: ...