-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
245 lines (193 loc) · 11.6 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import collections
import itertools
import multiprocessing
import pandas as pd
import numpy as np
from fastapi import FastAPI, UploadFile, Form, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from loguru import logger
from ca.core import calculate_similar_multi_processing, calculate_similar_cosine, morphological_analysis
from ca.service import save_ca_field_keyword, save_ca_keyword, ca_findall, save_ca, convert_ca_column, ca_preprocessing, \
save_ca_big_category, save_ca_sub_category
from db.connect import create_connection
from ro.service import add_big_category, ro_findall, save_ro, convert_ro_column, ro_preprocessing, save_ro_sub_category, \
save_ro_big_category, save_ro_frequency
from similarity.service import save_similar, find_total_phenom_frequency
from big_sub_category import big_category, labelling
insert_size_limit = 10000
app = FastAPI(docs_url="/upload/docs", openapi_url="/upload/openapi.json")
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"])
pool = multiprocessing.Pool(4)
@app.get("/upload/ping")
async def root():
return "ping"
# 파일이 엑셀 파일이 맞는지 검증하는 로직
def is_excel(file_name: str):
return file_name[:-3] == "xls" or file_name[:-4] == 'xlsx'
@app.post("/upload/ro")
async def upload_ro(ro: UploadFile = Form(...)):
logger.info("upload ro test_file start")
logger.info("입력된 파일에 대한 Validation 체크")
# 엑셀 파일이 맞는지 검증하는 단계
if is_excel(ro.filename):
raise HTTPException(status_code=400)
# 파일을 읽고 그 컬럼 이름을 변경하는 단계
try:
read_file = await ro.read()
excel_file = pd.read_excel(read_file)
df = convert_ro_column(excel_file)
except:
raise HTTPException(status_code=400)
logger.info("nan 값에 대한 예외 상황 체크 및 빈 문자열로 대체")
# 비어있는 내용에 대해서 빈 문자열 대체
df.fillna('', inplace=True)
# 특정 단어가 들어 있는 경우 해당 row 삭제
logger.info("특정 단어가 들어있는 경우 row 삭제")
df["special_note"] = df["special_note"].str.replace(r'[^ㄱ-ㅎ|ㅏ-ㅣ|가-힣| ]', '', regex=True) # 한글만 정제
df["special_note"] = df["special_note"].str.replace(r' +', ' ', regex=True) # 긴 공백 문자 삭제
df["special_note"] = df["special_note"].str.replace('\\|', '', regex=True) # 이상한 문자 삭제
df["special_note"] = df["special_note"].str.strip() # 앞뒤 공백 삭제
df["special_note"] = df["special_note"].str.replace('\n', '') # 개행 문자 제거
#
df["special_note"].replace('', np.nan, inplace=True)
df.dropna(subset=["special_note"], inplace=True)
# df.drop(df["special_note"].isnull().index, inplace=True)
# 해당하는 문자가 있다면 해당 문자만 삭제
remove_word = {"1.", "2.", "3.", "4.", "1.1", "1.2", "2.1", "2.2", "3.1", "3.2", "4.1", "4.2", "점검", "점검 및 원인",
"점검 사항", "현상 조치", "조치내용", "점검내용", "요망사항", "현상:", "점검:", "내용", "요망 사항", "점검내용및원인"}
for word in remove_word:
condition = df[df["special_note"].str.contains(word)].index
df.drop(condition, inplace=True)
logger.info("big category 컬럼 추가")
# big category를 추가하는 로직
df = await add_big_category(df)
# 특이사항 컬럼에 대한 키워드 분석
special_note_list = [(idx, content) for idx, content in enumerate(df["special_note"].to_list())]
special_note_list = await ro_preprocessing(special_note_list)
keyword_list = morphological_analysis(special_note_list)
keyword_list = list(itertools.chain(*keyword_list.values()))
keyword_frequency = calculate_frequency(keyword_list)
logger.info("big category 컬럼 빈도수 측정")
sub_list, big_list = df["sub_phenom"].to_list(), df["big_phenom"].to_list()
# calculate frequency
sub_cate, big_cate = calculate_frequency(sub_list), calculate_frequency(big_list)
logger.info("RO, RO category, frequency 정보를 DBdp 저장")
# save category and ro
# 하나의 큰 커넥션으로 묶음
async with await create_connection() as conn:
# 하나의 큰 트랜잭션으로 묶음
async with conn.cursor() as cursor:
await save_ro_frequency(keyword_frequency, cursor),
await save_ro_sub_category(sub_cate, cursor),
await save_ro_big_category(big_cate, cursor),
await save_ro(df, cursor)
await conn.commit()
logger.info("upload ro test_file end")
return {"message": "ro save success"}
@app.post('/upload/ca')
async def upload_ca(ca: UploadFile = Form(...)):
logger.info("CA 업로드 시작")
async with await create_connection() as conn:
async with conn.cursor() as cursor:
# test_file validation
file_extension = ["xls", "xlsx"]
if ca and (ca.filename[:-3] in file_extension or ca.filename[:-4] in file_extension):
raise HTTPException(status_code=400)
# test_file read and convert column
try:
read_file = await ca.read()
excel_file = pd.read_excel(read_file)
ca_df = convert_ca_column(excel_file)
except:
raise HTTPException(status_code=400, detail="입력된 파일의 형식이 다릅니다.")
logger.info("CA 빈 문자열에 대한 예외처리 시작")
# CA 파일에 대한 전처리
# CA: nan 값에 대해서 None 으로 변환
ca_df.fillna('', inplace=True)
logger.info("CA 데이터를 저장하기 전에 특정단어가 content안에 있으면 해당 row 삭제")
# 해당단어가 있으면 row 자체를 지워야함
no_need_word_set = {"투표", "추천", "색상", "할인", "이벤트", "#일산썬팅", "인천 실내크리닝 전문 제로맥스입니다",
"촬영팀입니다", "오닉스코리아 인천점입니다", "#대구", "비바아우토", "비터스윗", "구매 링크",
"카핏 김포본점", "로펌 법무법인", "공구장 입니다", "인천 모터스 맥스카입니다", "라인튜닝",
"카스페이스 소사역곡점입니다", "두꺼비입니다", "모터스테이션입니다"}
# 특정 문자가 포함되는 df row를 모두 삭제
for word in no_need_word_set:
condition = ca_df[ca_df["content"].str.contains(word)].index
ca_df.drop(condition, inplace=True)
# 해당단어는 문장에서 단어만 지워야함
logger.info("불필요한 단어 지우기 시작")
need_to_remove_word = {'ㅜ', 'ㅠ', 'ᅲ', 'ㅎ', 'ㅋ', 'ㅡ', 'ᄒ', 'ᅮ', 'ㅅ', 'ㅇ', 'ㄱ', 'ᅳ', 'ᄏ', 'ㄷ', 'ㅂ'
, '안녕하세요', '다름이 아니라', '다름이', '안녕하신가요', '안녕하십니까', '안녕하시고'}
for word in need_to_remove_word:
ca_df.replace(word, '', inplace=True)
ca_df["content"] = ca_df["content"].str.replace('\n', '') # 개행 문자 제거
logger.info("CA에 대한 전체 내용 저장")
# ca 정보에 대해서 저장
await save_ca(ca_df, cursor)
# ca_id와 함께 조회
ca_data = await ca_findall(cursor)
ro_data = await ro_findall(cursor)
logger.info(len(ca_data))
# logger.info("유사도 분석을 위한 전처리 시작")
# ca_data = await ca_preprocessing(ca_data)
# ro_data = await ro_preprocessing(ro_data)
logger.info("유사도 분석 병렬 processing 시작")
# 유사도 분석 -> 현재 os의 cpu 개수 만큼 병렬 처리 시작
similar_list = calculate_similar_multi_processing(func=calculate_similar_cosine, content_list=ca_data,
special_note_list=ro_data, pool=pool, process_count=4)
logger.info("중요 키워드에 대한 분석 시작")
# 형태소 분석
morpheme_list = morphological_analysis(ca_data)
logger.info("키워드에 대한 빈도수 분석 시작")
# 2차원 리스트를 1차원 리스트로 변경
keyword_list = list(itertools.chain(*morpheme_list.values()))
# 중요 키워드에 대한 빈도수 측정
keyword_frequency = calculate_frequency(keyword_list)
logger.info("유사도, 키워드에 대한 저장 및 키워드 빈도수 DB 저장")
# 유사도, 형태소 결과를 비동기로 저장
# 유사도 저장
await save_similar(similar_list, cursor),
# 키워드 저장
await save_ca_field_keyword(morpheme_list, cursor),
# 키워드 빈도수 저장
await save_ca_keyword(keyword_frequency, cursor)
# ca와 관련된 상위 카테고리와 하위 카테고리 빈도수를 측정해서 저장
logger.info("CA와 맵핑된 RO 정보의 대 카테고리와, 중 카테고리를 불러와서 빈도수 측정해야함.")
phenom_list = await find_total_phenom_frequency(cursor)
sub_phenom_frequency = collections.Counter([sub for big, sub in phenom_list])
big_phenom_frequency = collections.Counter([big for big, sub in phenom_list])
logger.info("CA 카테고리 빈도수 저장 완료")
await save_ca_big_category(big_phenom_frequency, cursor)
await save_ca_sub_category(sub_phenom_frequency, cursor)
logger.info("CA 키워드 부분에 저장 시작")
await conn.commit()
logger.info("CA 업로드 종료")
return {"message": "CA test_file upload success"}
def calculate_frequency(elems) -> dict:
return dict(collections.Counter(elems))
# 기존의 값을 초기화하는 함수
@app.post("/upload/clear")
async def clear():
async with await create_connection() as conn:
async with conn.cursor() as cursor:
await cursor.execute("truncate table cafe_article")
await cursor.execute("truncate table repair_order")
await cursor.execute("truncate table ca_big_category")
await cursor.execute("truncate table ro_big_category")
await cursor.execute("truncate table ca_sub_category")
await cursor.execute("truncate table ro_sub_category")
await cursor.execute("truncate table ca_keyword")
await cursor.execute("truncate table ro_keyword")
await cursor.execute("truncate table ca_keyword")
await cursor.execute("truncate table ro_keyword")
await cursor.execute("truncate table similarity")
values = [(big_cate, 0) for big_cate in big_category.values()]
await cursor.executemany("insert into ca_big_category (cate_name, count) values (%s, %s)", values)
await cursor.executemany("insert into ro_big_category (cate_name, count) values (%s, %s)", values)
values = [(sub_cate, 0, big_category[v]) for sub_cate, v in labelling]
await cursor.executemany(
"insert into ca_sub_category (cate_name, count, big_cate_name) values (%s, %s, %s)", values)
await cursor.executemany(
"insert into ro_sub_category (cate_name, count, big_cate_name) values (%s, %s, %s)", values)
await conn.commit()
return {"message": "clear success"}