Skip to content

Commit 6b58fdd

Browse files
author
Rima Hajou
committed
remove prints
1 parent 31706f3 commit 6b58fdd

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

qolmat/benchmark/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ def kl_divergence(
227227
p = np.histogram(df1[col], bins=bins, density=True)[0]
228228
q = np.histogram(df2[col], bins=bins, density=True)[0]
229229
list_kl.append(scipy.stats.entropy(p + EPS, q + EPS))
230-
print(list_kl)
231230
return pd.Series(list_kl, index=cols)
232231
else:
233232
df_1 = StandardScaler().fit_transform(df1)

qolmat/imputations/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,6 @@ def fit_transform(self, df: pd.DataFrame) -> pd.DataFrame:
539539
imputed = pd.DataFrame()
540540
cols_with_nans = df.columns[df.isna().any()]
541541
for col in cols_with_nans:
542-
print(col)
543542
imputed_signal, _, _ = self.rpca.fit_transform(signal=df[col].values)
544543
imputed[col] = imputed_signal
545544
imputed.index = df.index

0 commit comments

Comments
 (0)