boompack commited on
Commit
62c36a7
·
verified ·
1 Parent(s): bc71c73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -12
app.py CHANGED
@@ -1,27 +1,26 @@
1
  import gradio as gr
2
  import pandas as pd
3
  import re
 
4
 
5
  def calculate_correlations(file_obj):
6
  try:
7
- # Попробуем разные разделители
8
- for sep in [',', ';', '\t']:
9
- try:
10
- df = pd.read_csv(file_obj.name, sep=sep, encoding='utf-8')
11
- break # Выходим из цикла, если чтение успешно
12
- except pd.errors.ParserError:
13
- pass # Пробуем следующий разделитель
14
 
15
- if 'df' not in locals(): # Проверяем, был ли создан df
16
- return {"error": "Ошибка парсинга файла. Не удалось прочитать CSV с разными разделителями."}
17
 
18
 
19
-
20
- # ... (дальнейший код - без изменений)
21
-
22
  except Exception as e:
23
  return {"error": f"Неизвестная ошибка: {e}"}
24
 
 
 
25
  iface = gr.Interface(
26
  fn=calculate_correlations,
27
  inputs=gr.File(type="filepath", label="CSV файл с отзывами"),
 
1
  import gradio as gr
2
  import pandas as pd
3
  import re
4
+ import csv
5
 
6
  def calculate_correlations(file_obj):
7
  try:
8
+ with open(file_obj.name, 'r', encoding='utf-8') as csvfile:
9
+ dialect = csv.Sniffer().sniff(csvfile.read(1024)) # Определяем разделитель
10
+ csvfile.seek(0) # Возвращаемся в начало файла
11
+ reader = csv.reader(csvfile, dialect=dialect)
12
+ header = next(reader)
13
+ data = list(reader)
14
+ df = pd.DataFrame(data, columns=header)
15
 
16
+ # ... (остальной код для расчета корреляций - без изменений)
 
17
 
18
 
 
 
 
19
  except Exception as e:
20
  return {"error": f"Неизвестная ошибка: {e}"}
21
 
22
+
23
+
24
  iface = gr.Interface(
25
  fn=calculate_correlations,
26
  inputs=gr.File(type="filepath", label="CSV файл с отзывами"),