Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
|
|
|
|
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 |
|