From 984947bfce138b77a38f7c762850aed398bfa1ee Mon Sep 17 00:00:00 2001 From: Daniel Rosel Date: Fri, 12 Dec 2025 12:40:16 +0100 Subject: [PATCH] chore: parquet exporting of data --- experiments/procesing/pipelines.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/experiments/procesing/pipelines.py b/experiments/procesing/pipelines.py index cc29f20..140bb8b 100644 --- a/experiments/procesing/pipelines.py +++ b/experiments/procesing/pipelines.py @@ -170,3 +170,5 @@ if __name__ == '__main__': print(f"Feature matrix: {features.shape}") print(features.head()) print(features.info()) + + features.to_parquet("features.parquet")