Skip to content

Commit

Permalink
refacter: Model updated | 중복되는 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
yujin37 committed Nov 4, 2023
1 parent 5f4e8a6 commit 0d59066
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Model/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,22 +279,18 @@ def get_score():
response = {'result_score': 0, 's_message': '빈 문자열이라 유사도 검사가 되지 않았습니다.', 'sp_message': '빈 문자열이라 맞춤법 검사가 되지 않았습니다.', 'len_message': '빈 문자열이라 글자 수 검사가 되지 않았습니다.', 'ex_message': '빈 문자열이라 표현 검사가 되지 않았습니다.'}
return jsonify(response)
else:
#사용자 답안과 , 실제 답안 content, answer
if quest_num<=52:
similar = similarity(contents, answer)
else:
similar = lsa_Similar(contents,answer)
#사용자 답안 content
spell = pusan_univ_spell(contents)

if quest_num == 53:
similar = lsa_Similar(contents,answer)
#문제와 사용자 답안 question
length = countCheck(quest_num, contents)
#사용자 답안 content
expressto = Express(contents)
len_score = length['점수']#글자수
len_message = length['글자 수 검사']
elif quest_num <= 52:
similar = similarity(contents, answer)
expressto = ExpressShort(contents, answer)
#similar_data = similar.json()
if '에러' in similar:
Expand Down

0 comments on commit 0d59066

Please sign in to comment.