Fixed get_stratified_sample() and replace broken x() with actual working logic, added sample_with_keywords().

This commit is contained in:
charlie-rasberry
2025-11-12 02:05:20 +00:00
parent a178284ffc
commit 2cbdd55243
2 changed files with 66 additions and 16 deletions

View File

@@ -166,8 +166,8 @@ def preprocess_uber_reviews(input_path, output_path):
return df_clean
if __name__ == "__main__":
input_file = "data/uber_reviews.csv"
output_file = "data/uber_reviews_cleaned.csv"
input_file = "multitag/data/uber_reviews.csv"
output_file = "multitag/data/uber_reviews_cleaned.csv"
df_clean = preprocess_uber_reviews(input_file, output_file)
print("\nPreprocessing complete!")