We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b68ac8 commit ee11f1cCopy full SHA for ee11f1c
python/hsfs/engine/python.py
@@ -1448,7 +1448,10 @@ def _convert_feature_log_to_df(feature_log, cols):
1448
1449
return pd.DataFrame(feature_log, columns=cols)
1450
else:
1451
- return feature_log.copy(deep=False)
+ if isinstance(feature_log, pl.DataFrame):
1452
+ return feature_log.clone()
1453
+ elif isinstance(feature_log, pd.DataFrame):
1454
+ return feature_log.copy(deep=False)
1455
1456
@staticmethod
1457
def get_feature_logging_df(
0 commit comments