-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhard_voting_ensemble.py
67 lines (50 loc) · 2.11 KB
/
hard_voting_ensemble.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
import pandas as pd
from tqdm import tqdm
import os
# 앙상블할 output.csv 파일들을 한 폴더에 넣어줍니다.
# 파일명 앞을 점수로 넣어서 성능이 좋은 순서대로 정렬되도록 했습니다.
output_list = os.listdir('./output_csv')
output_list.sort(reverse=True)
# pandas dataframe으로 만들어줍니다.
df_list = []
for output in output_list:
df_list.append(pd.read_csv(f'./output_csv/{output}'))
# submission dataframe
submission = pd.DataFrame()
submission['image_id'] = df_list[0]['image_id']
# pixel-wise hard voting 진행
PredictionString = []
for idx in tqdm(range(len(df_list[0]))):
# 각 모델이 뽑은 pixel 넣을 리스트
pixel_list = []
for i in range(len(df_list)):
pixel_list.append(df_list[i]['PredictionString'][idx].split(' '))
result = ''
for i in range(len(pixel_list[0])):
pixel_count = {'0' : 0, '1' : 0, '2' : 0,
'3' : 0, '4' : 0, '5' : 0,
'6' : 0, '7' : 0, '8' : 0,
'9' : 0, '10' : 0}
# 각 모델이 뽑은 pixel count
for j in range(len(pixel_list)):
pixel_count[pixel_list[j][i]] += 1
# 제일 많이 vote된 pixel 값
voted_pixel = [key for key, value in pixel_count.items() if value == max(pixel_count.values())]
# voted_pixel이 1개인 경우
if len(voted_pixel) == 1:
result += voted_pixel[0] + ' '
# 동점이 나온 경우
else:
# 성능이 좋았던 모델부터 값이 voted_pixel에 있다면 result로 고르기
for j in range(len(pixel_list)):
pixel_candidate = pixel_list[j][i]
if pixel_candidate in voted_pixel:
result += pixel_candidate + ' '
break
# 마지막 공백 제거
result = result[:-1]
PredictionString.append(result)
# submission csv 만들기
submission['PredictionString'] = PredictionString
submission.to_csv('./hard_voted_output.csv', index=False)
## reference: https://stages.ai/competitions/191/discussion/talk/post/1331