generated from kooqooo/python-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
load_test.py
156 lines (113 loc) · 6.35 KB
/
load_test.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
import nlptutti as metrics
from transformers import pipeline
import json
import os
import time
import gdown
import gc
import torch
from transformers import WhisperTokenizer
'''
만들어진 모델의 성능을 테스트하는 코드에요. 테스트 시 직접 만든 디스코드 회의 음성 데이터셋을 사용해요.
'''
#########################################################################################################################################
################################################### 사용자 설정 변수 #####################################################################
#########################################################################################################################################
model_names = ['maxseats/SungBeom-whisper-small-ko-set8'] # 사용할 모델 이름 / 여러개 지정 가능
data_num = 75 # 테스트 데이터 개수 지정
test_log_path = "/content/drive/MyDrive/STT_test/test_log" # 테스트 결과 및 로그 저장위치
data_directory = "discord_dataset" # 데이터셋 폴더 지정
#########################################################################################################################################
################################################### 사용자 설정 변수 #####################################################################
#########################################################################################################################################
# 폴더가 없을 경우에만 실행
if not os.path.exists(data_directory):
gdown.download(id="12xNoD53zFqnkYYyeKm_box2gFR0WRCjb", output="dataset.zip", quiet=False) # 데이터셋 다운로드 / 구글 드라이브 공유 링크 id 사용
# unzip
os.system("unzip dataset.zip")
os.system("rm dataset.zip")
# 모델 별 테스트 파이프라인 실행
for model_name in model_names:
tokenizer = WhisperTokenizer.from_pretrained(model_name, language="Korean", task="transcribe") # 토크나이저 불러오기
start_time = time.time() # 시작 시간 기록
# 평균 계산용
CER_total = 0.0
WER_total = 0.0
# 모델 폴더 생성 및 로그파일 폴더 지정
model_log_dir = os.path.join(test_log_path, model_name)
os.makedirs(model_log_dir, exist_ok=True)
log_file_path = os.path.join(model_log_dir, "log.txt")
with open(log_file_path, 'w', encoding='utf-8') as log_file:
# GPU 사용을 위해 device=0 설정
device = 0 if torch.cuda.is_available() else -1
pipe = pipeline("automatic-speech-recognition", model=model_name, tokenizer=tokenizer, device=device) # STT 파이프라인
for i in range(1, data_num+1):
print(i, "번째 데이터:")
log_file.write(f"{i} 번째 데이터:\n")
sample = data_directory + "/" + "{:03d}".format(i) + ".mp3" # 음성파일 경로
result = pipe(sample, return_timestamps=False)
preds = result["text"] # STT 예측 문자열
target_path = data_directory + "/" + "{:03d}".format(i) + ".txt" # 텍스트파일 경로
# 파일 열기
with open(target_path, 'r', encoding='utf-8') as file:
# 파일 내용 읽기
target = file.read()
print("예측 : ", result["text"])
print("정답 : ", target)
log_file.write(f"예측 : {preds}\n")
log_file.write(f"정답 : {target}\n")
# CER 출력
cer_result = metrics.get_cer(target, preds)
cer_substitutions = cer_result['substitutions']
cer_deletions = cer_result['deletions']
cer_insertions = cer_result['insertions']
# prints: [cer, substitutions, deletions, insertions] -> [CER = 0 / 34, S = 0, D = 0, I = 0]
CER_total += cer_result['cer']
print("CER, S, D, I : ", cer_result['cer'], cer_substitutions, cer_deletions, cer_insertions)
log_file.write(f"CER, S, D, I : {cer_result['cer']}, {cer_substitutions}, {cer_deletions}, {cer_insertions}\n")
# WER 출력
wer_result = metrics.get_wer(target, preds)
wer_substitutions = wer_result['substitutions']
wer_deletions = wer_result['deletions']
wer_insertions = wer_result['insertions']
# prints: [wer, substitutions, deletions, insertions] -> [WER = 2 / 4, S = 1, D = 1, I = 0]
WER_total += wer_result['wer']
print("WER, S, D, I : ", wer_result['wer'], wer_substitutions, wer_deletions, wer_insertions)
print()
log_file.write(f"WER, S, D, I : {wer_result['wer']}, {wer_substitutions}, {wer_deletions}, {wer_insertions}\n\n")
# 로그 버퍼에서 파일로 flush(중간 저장)
log_file.flush()
os.fsync(log_file.fileno())
end_time = time.time() # 종료 시간 기록
elapsed_time = end_time - start_time # 실행 시간
# 시간, 분, 초 단위로 변환
hours = int(elapsed_time // 3600)
minutes = int((elapsed_time % 3600) // 60)
seconds = int(elapsed_time % 60)
print("현재 모델 : ", model_name)
print("CER 평균 : ", CER_total / data_num)
print("WER 평균 : ", WER_total / data_num)
print("실행시간 : ", "{:02d}시간 {:02d}분 {:02d}초".format(hours, minutes, seconds))
# 데이터 딕셔너리 생성
data = {
"model_name": model_name,
"CER_mean": CER_total / data_num,
"WER_mean": WER_total / data_num,
"running_time" : "{:02d}:{:02d}:{:02d}".format(hours, minutes, seconds)
}
# 기존 데이터 읽기(없으면 빈 리스트)
try:
with open(test_log_path + "/total_result.json", "r", encoding="utf-8") as file:
data_list = json.load(file)
except FileNotFoundError:
data_list = []
# 새 데이터 추가
data_list.append(data)
# CER_mean, WER_mean을 기준으로 오름차순 정렬
sorted_data = sorted(data_list, key=lambda x: (x['CER_mean'], x['WER_mean']))
# 정렬된 데이터를 파일로 저장
with open(test_log_path + "/total_result.json", "w", encoding="utf-8") as file:
json.dump(sorted_data, file, ensure_ascii=False, indent=4)
# 파이프라인 사용 후 메모리 해제
del pipe
gc.collect()