Skip to content

Commit

Permalink
[feat] #109 emotion 평균 계산 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoo0419 committed Jun 11, 2024
1 parent 024dd71 commit 3b7b394
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private double CalculateEmotion(
) {
if (totEmotion == 0.0)
return emotion;
return totEmotion * 0.9 + emotion * 0.1;
return totEmotion * 0.5 + emotion * 0.5;
}

private String uploadImage(MultipartFile image) throws IOException {
Expand Down

0 comments on commit 3b7b394

Please sign in to comment.