SharmaAmit1818 commited on
Commit
efa0dd9
·
verified ·
1 Parent(s): 6f062c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -13,6 +13,10 @@ def process_csv(file):
13
  # Read the CSV file using Pandas
14
  df = pd.read_csv(file.name) # Ensure correct file path
15
 
 
 
 
 
16
  # Check for 'text' column
17
  if 'text' not in df.columns:
18
  return "Error: The CSV file must contain a 'text' column."
 
13
  # Read the CSV file using Pandas
14
  df = pd.read_csv(file.name) # Ensure correct file path
15
 
16
+ # Debugging: Print the DataFrame shape and columns
17
+ print(f"DataFrame shape: {df.shape}")
18
+ print(f"DataFrame columns: {df.columns.tolist()}")
19
+
20
  # Check for 'text' column
21
  if 'text' not in df.columns:
22
  return "Error: The CSV file must contain a 'text' column."