We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3f50f1 commit 5a1b4dfCopy full SHA for 5a1b4df
python/hsfs/engine/python.py
@@ -1236,15 +1236,15 @@ def _apply_transformation_function(
1236
dropped_features.update(tf.hopsworks_udf.dropped_features)
1237
dataset = pd.concat(
1238
[
1239
- dataset,
+ dataset.reset_index(drop=True),
1240
tf.hopsworks_udf.get_udf()(
1241
*(
1242
1243
dataset[feature]
1244
for feature in tf.hopsworks_udf.transformation_features
1245
]
1246
)
1247
- ),
+ ).reset_index(drop=True),
1248
],
1249
axis=1,
1250
0 commit comments