Add All Folders

This commit is contained in:
soorena62
2026-02-08 04:38:10 +03:30
commit 9bb57e4799
191 changed files with 8469 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import pandas as pd
from sklearn.utils import resample, shuffle
class Preprocessor:
def __init__(self, df: pd.DataFrame):
self.df = df
def resample(self, replace=False):
return resample(self.df, replace=replace)
def shuffle(self):
return shuffle(self.df)