yashthechad89 commited on
Commit
bb013db
·
verified ·
1 Parent(s): d09e02f

Update preprocess.py

Browse files
Files changed (1) hide show
  1. preprocess.py +4 -1
preprocess.py CHANGED
@@ -19,6 +19,9 @@ df.to_csv("preprocessed_dataset.csv", index=False)
19
 
20
  print("✅ Preprocessing complete! Saved as 'p)
21
  if __name__ == "__main__":
22
- preprocess_and_save("macadeliccc/US-FederalLaws", "processed_dataset")
 
 
 
23
 
24
 
 
19
 
20
  print("✅ Preprocessing complete! Saved as 'p)
21
  if __name__ == "__main__":
22
+ output_path = "app/processed_dataset"
23
+ preprocess_and_save("macadeliccc/US-FederalLaws", output_path)
24
+ print(f"Dataset saved to {output_path}")
25
+
26
 
27