Skip to content

supaernova.steps.pae.tf

[docs] package supaernova.steps.pae.tf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from typing import TYPE_CHECKING

from .tf import TFPAEModel

if TYPE_CHECKING:
    from .tf import S, FTensor, TensorCompatible  # noqa: TC004

    __all__ = ("FTensor", "S", "TFPAEModel", "TensorCompatible")
else:
    __all__ = ("TFPAEModel",)