SantanuBanerjee commited on
Commit
96acbc3
·
verified ·
1 Parent(s): b4b6a14

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -167,7 +167,7 @@ from random import random
167
  def text_processing_for_domain(text):
168
  # First, get the summarized text
169
  summarized_text = ""
170
- # summarized_text = Summarized_text(text)
171
 
172
  # Then, lemmatize the original text
173
  lemmatized_text = ""
@@ -320,12 +320,12 @@ def process_excel(file):
320
 
321
 
322
 
323
- # example_files = ['#TaxDirection (Responses)_BasicExample.xlsx',
324
- # '#TaxDirection (Responses)_IntermediateExample.xlsx',
325
- # '#TaxDirection (Responses)_UltimateExample.xlsx'
326
- # ]
327
 
328
- example_files = ['a.xlsx',]
329
 
330
 
331
  import random
 
167
  def text_processing_for_domain(text):
168
  # First, get the summarized text
169
  summarized_text = ""
170
+ summarized_text = Summarized_text(text)
171
 
172
  # Then, lemmatize the original text
173
  lemmatized_text = ""
 
320
 
321
 
322
 
323
+ example_files = ['#TaxDirection (Responses)_BasicExample.xlsx',
324
+ '#TaxDirection (Responses)_IntermediateExample.xlsx',
325
+ '#TaxDirection (Responses)_UltimateExample.xlsx'
326
+ ]
327
 
328
+ # example_files = ['a.xlsx',]
329
 
330
 
331
  import random