Randa commited on
Commit
b920013
·
verified ·
1 Parent(s): 8045151

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -32,8 +32,9 @@ def read_excel_data(file_path, sheet_name):
32
  print(f"Error reading Excel file: {e}")
33
 
34
  # List of sample texts to read
35
- excel_file_path = "ASR_live_test.xlsx"
36
- sheet_name= 'sample_test(threshold=75%)'
 
37
  full_test_list = read_excel_data(excel_file_path, sheet_name)
38
 
39
  # Similarity function
@@ -147,7 +148,7 @@ def update_message(request: gr.Request):
147
 
148
  # Get test categories
149
  data_list = full_test_list
150
- image_path="all_imgs/"
151
  completed_tests_list = []
152
  remaining_tests = []
153
 
 
32
  print(f"Error reading Excel file: {e}")
33
 
34
  # List of sample texts to read
35
+ excel_file_path = "ASR_full_data_v02.xlsx"
36
+ sheet_name = "Sheet1"
37
+
38
  full_test_list = read_excel_data(excel_file_path, sheet_name)
39
 
40
  # Similarity function
 
148
 
149
  # Get test categories
150
  data_list = full_test_list
151
+ image_path="test_imgs/"
152
  completed_tests_list = []
153
  remaining_tests = []
154