add template class

This commit is contained in:
Hannes Signer 2025-01-21 17:36:41 +01:00
parent 81d35796f8
commit a4c419c618

View File

@ -74,14 +74,30 @@ class DataSetSampling():
self.sampling_strategy = sampling_strategy
def fit(self, X):
return self
pass
def transform(self):
return self
pass
class Scaling():
def __init__(self, X, scaling_strategy):
self.X = X
self.scaler = scaling_strategy
def fit(self, X):
pass
def transform(self):
pass
def fit_transform(self, X):
pass
def inverse_transform(self, X):
pass