Skip to content

Commit

Permalink
rename scaler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ANazaret committed Nov 4, 2024
1 parent be5c61d commit 27e34be
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/treeffuser/_base_tabular_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
from sklearn.neighbors import KernelDensity
from tqdm import tqdm

from treeffuser._scaler import ScalerMixedTypes
from treeffuser._score_models import ScoreModel
from treeffuser._warnings import ConvergenceWarning
from treeffuser.scaler import ScalerMixedTypes
from treeffuser.sde import DiffusionSDE
from treeffuser.sde import sdeint

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion testbed/src/testbed/models/lightning_uq_models/_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from testbed.models.base_model import ProbabilisticModel
from testbed.models.lightning_uq_models._data_module import GenericDataModule
from testbed.models.lightning_uq_models._utils import _to_tensor
from treeffuser.scaler import ScalerMixedTypes
from treeffuser._scaler import ScalerMixedTypes


class Card(ProbabilisticModel, MultiOutputMixin):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from testbed.models.base_model import ProbabilisticModel
from testbed.models.lightning_uq_models._data_module import GenericDataModule
from treeffuser.scaler import ScalerMixedTypes
from treeffuser._scaler import ScalerMixedTypes


class MLP(nn.Module):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from testbed.models.base_model import ProbabilisticModel
from testbed.models.lightning_uq_models._data_module import GenericDataModule
from testbed.models.lightning_uq_models._utils import _to_tensor
from treeffuser.scaler import ScalerMixedTypes
from treeffuser._scaler import ScalerMixedTypes


class MCDropout(ProbabilisticModel, MultiOutputMixin):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from testbed.models.base_model import ProbabilisticModel
from testbed.models.lightning_uq_models._data_module import GenericDataModule
from testbed.models.lightning_uq_models._utils import _to_tensor
from treeffuser.scaler import ScalerMixedTypes
from treeffuser._scaler import ScalerMixedTypes


class QuantileRegression(ProbabilisticModel):
Expand Down
2 changes: 1 addition & 1 deletion testbed/src/testbed/models/ngboost/_ngboost.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from testbed.models.base_model import ProbabilisticModel
from testbed.models.ngboost._gaussian_mixtures import build_gaussian_mixture_model
from treeffuser.scaler import ScalerMixedTypes
from treeffuser._scaler import ScalerMixedTypes

MAX_MINIBATCH_SIZE = 50_000
MAX_VALIDATION_SIZE = 20_000
Expand Down

0 comments on commit 27e34be

Please sign in to comment.