SantanuBanerjee commited on
Commit
3fca7f2
·
verified ·
1 Parent(s): caffd45

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -23,7 +23,9 @@ def process_excel(file):
23
  # Perform any processing on the DataFrame here
24
  # Example: adding a new column with the sum of two other columns
25
  # df['Sum'] = df['Column1'] + df['Column2']
26
- result_df = nlp_pipeline(original_df)
 
 
27
 
28
  return result_df # Return the first few rows as an example
29
 
 
23
  # Perform any processing on the DataFrame here
24
  # Example: adding a new column with the sum of two other columns
25
  # df['Sum'] = df['Column1'] + df['Column2']
26
+ print("Hello")
27
+ result_df = nlp_pipeline(df)
28
+
29
 
30
  return result_df # Return the first few rows as an example
31