generated from kooqooo/python-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mlflow_run_final.py
501 lines (390 loc) · 18 KB
/
mlflow_run_final.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
# !pip install -U accelerate
# !pip install -U transformers
# !pip install datasets
# !pip install evaluate
# !pip install mlflow
# !pip install transformers[torch]
# !pip install jiwer
# !pip install nlptutti
# !huggingface-cli login --token hf_
from datasets import load_dataset
import torch
from dataclasses import dataclass
from typing import Any, Dict, List, Union
import evaluate
from transformers import WhisperTokenizer, WhisperFeatureExtractor, WhisperProcessor, WhisperForConditionalGeneration, Seq2SeqTrainingArguments, Seq2SeqTrainer
import mlflow
from mlflow.tracking.client import MlflowClient
import subprocess
from huggingface_hub import create_repo, Repository
import os
import shutil
import re
import math
import logging
import sys
import stat
model_dir = "./tmp" # 학습된 모델이 임시로 저장되는 디렉토리입니다. 허깅페이스로 업로드 된 후 자동으로 삭제됩니다.
# # 로깅 설정
# log_file = './finetuning_output.log'
# logging.basicConfig(level=logging.INFO, format='%(asctime)s %(message)s', handlers=[logging.FileHandler(log_file), logging.StreamHandler()])
# logger = logging.getLogger()
# # 파일이 존재하는 경우 초기화
# if os.path.exists(log_file):
# with open(log_file, 'w') as f:
# f.truncate(0)
# # 모든 표준 출력을 로그로 리디렉션
# class StreamToLogger(object):
# def __init__(self, logger, log_level=logging.INFO):
# self.logger = logger
# self.log_level = log_level
# self.linebuf = ''
# def write(self, buf):
# for line in buf.rstrip().splitlines():
# self.logger.log(self.log_level, line.rstrip())
# def flush(self):
# pass
# sys.stdout = StreamToLogger(logger, logging.INFO)
# sys.stderr = StreamToLogger(logger, logging.ERROR)
#########################################################################################################################################
################################################### 사용자 설정 변수 #####################################################################
#########################################################################################################################################
start_num = 55 # 시작할 데이터셋 번호
last_num = 68 # 마지막 데이터셋 번호
is_test = False # True: 소량의 샘플 데이터로 테스트, False: 실제 파인튜닝
token = "hf_" # 허깅페이스 토큰 입력
training_args = Seq2SeqTrainingArguments(
output_dir=model_dir, # 원하는 리포지토리 이름을 입력한다.
per_device_train_batch_size=16,
gradient_accumulation_steps=2, # 배치 크기가 2배 감소할 때마다 2배씩 증가
learning_rate=1e-5,
warmup_steps=500,
# max_steps=2, # epoch 대신 설정
num_train_epochs=1, # epoch 수 설정 / max_steps와 이것 중 하나만 설정
gradient_checkpointing=False,
fp16=True,
eval_strategy="steps",
per_device_eval_batch_size=16,
predict_with_generate=True,
generation_max_length=225,
save_steps=1000,
eval_steps=1000,
logging_steps=25,
report_to=["tensorboard"],
load_best_model_at_end=True,
metric_for_best_model="cer", # 한국어의 경우 'wer'보다는 'cer'이 더 적합할 것
greater_is_better=False,
push_to_hub=True,
save_total_limit=5, # 최대 저장할 모델 수 지정
hub_token=token, # 허깅페이스 토큰
dataloader_num_workers=4, # 데이터로더 워커 수
)
#########################################################################################################################################
################################################### 사용자 설정 변수 #####################################################################
#########################################################################################################################################
@dataclass
class DataCollatorSpeechSeq2SeqWithPadding:
processor: Any
def __call__(self, features: List[Dict[str, Union[List[int], torch.Tensor]]]) -> Dict[str, torch.Tensor]:
"""
입력된 features를 처리하여 패딩된 배치를 반환하는 함수입니다.
Parameters:
features (List[Dict[str, Union[List[int], torch.Tensor]]]): 입력 features 리스트입니다.
Returns:
Dict[str, torch.Tensor]: 패딩된 배치입니다.
"""
# 인풋 데이터와 라벨 데이터의 길이가 다르며, 따라서 서로 다른 패딩 방법이 적용되어야 한다. 그러므로 두 데이터를 분리해야 한다.
# 먼저 오디오 인풋 데이터를 간단히 토치 텐서로 반환하는 작업을 수행한다.
input_features = [{"input_features": feature["input_features"]} for feature in features]
batch = self.processor.feature_extractor.pad(input_features, return_tensors="pt")
# Tokenize된 레이블 시퀀스를 가져온다.
label_features = [{"input_ids": feature["labels"]} for feature in features]
# 레이블 시퀀스에 대해 최대 길이만큼 패딩 작업을 실시한다.
labels_batch = self.processor.tokenizer.pad(label_features, return_tensors="pt")
# 패딩 토큰을 -100으로 치환하여 loss 계산 과정에서 무시되도록 한다.
labels = labels_batch["input_ids"].masked_fill(labels_batch.attention_mask.ne(1), -100)
# 이전 토크나이즈 과정에서 bos 토큰이 추가되었다면 bos 토큰을 잘라낸다.
# 해당 토큰은 이후 언제든 추가할 수 있다.
if (labels[:, 0] == self.processor.tokenizer.bos_token_id).all().cpu().item():
labels = labels[:, 1:]
batch["labels"] = labels
return batch
def compute_metrics(pred):
"""
모델의 예측 결과와 실제 레이블을 사용하여 CER(Character Error Rate)를 계산하는 함수입니다.
Parameters:
pred: 모델의 예측 결과를 담은 객체
Returns:
dict: CER(Character Error Rate) 값을 담은 딕셔너리
"""
pred_ids = pred.predictions
label_ids = pred.label_ids
# pad_token을 -100으로 치환
label_ids[label_ids == -100] = tokenizer.pad_token_id
# metrics 계산 시 special token들을 빼고 계산하도록 설정
pred_str = tokenizer.batch_decode(pred_ids, skip_special_tokens=True)
label_str = tokenizer.batch_decode(label_ids, skip_special_tokens=True)
cer = 100 * metric.compute(predictions=pred_str, references=label_str)
return {"cer": cer}
# GPU 사용 가능 여부 확인
def check_GPU():
if torch.cuda.is_available():
device = torch.device('cuda')
print("GPU is available. Using GPU.")
else:
device = torch.device('cpu')
print("GPU is not available. Using CPU.")
return device
# model_dir, ./repo 초기화
def init_dirs():
if os.path.exists(model_dir):
# shutil.rmtree(model_dir)
subprocess.run(["sudo", "rm", "-rf", model_dir])
os.makedirs(model_dir)
if os.path.exists('./repo'):
# shutil.rmtree('./repo')
subprocess.run(["sudo", "rm", "-rf", './repo'])
os.makedirs('./repo')
# mlflow 관련 변수 설정
def set_mlflow_env(model_name):
# MLflow UI 관리 폴더 지정
mlflow.set_tracking_uri("sqlite:////mnt/prj/mlflow.db")
experiment_name = model_name # MLflow 실험 이름 -> 모델 이름으로 설정
existing_experiment = mlflow.get_experiment_by_name(experiment_name)
if existing_experiment is not None:
experiment_id = existing_experiment.experiment_id
else:
experiment_id = mlflow.create_experiment(experiment_name)
return experiment_id
# 파인튜닝을 진행하고자 하는 모델의 processor, tokenizer, feature extractor, model, data_collator, metric 로드
def get_model_variable(model_name, device):
"""
주어진 모델 이름과 장치(device)를 기반으로 모델 변수들을 가져옵니다.
Parameters:
model_name (str): 모델 이름
device: 모델이 실행될 장치
Returns:
tuple: processor, tokenizer, feature_extractor, model, data_collator, metric로 구성된 튜플
"""
processor = WhisperProcessor.from_pretrained(model_name, language="Korean", task="transcribe")
tokenizer = WhisperTokenizer.from_pretrained(model_name, language="Korean", task="transcribe")
feature_extractor = WhisperFeatureExtractor.from_pretrained(model_name)
model = WhisperForConditionalGeneration.from_pretrained(model_name)
data_collator = DataCollatorSpeechSeq2SeqWithPadding(processor=processor)
metric = evaluate.load('cer')
model.config.forced_decoder_ids = None
model.config.suppress_tokens = []
model.to(device)
return processor, tokenizer, feature_extractor, model, data_collator, metric
def login_huggingface(token):
"""
Hugging Face에 로그인하는 함수입니다.
Parameters:
token (str): Hugging Face API 토큰
Returns:
None
"""
while True: # 로그인
if token =="exit":
break
try:
result = subprocess.run(["huggingface-cli", "login", "--token", token])
if result.returncode != 0:
raise Exception()
break
except Exception as e:
print(f"Error occurred: {e}")
print("Please enter your Hugging Face API token:", end=" ")
token = input().strip()
os.environ["HUGGINGFACE_HUB_TOKEN"] = token
# model_dir 필요한 파일 복사
def copy_model(model_dir, tokenizer):
"""
주어진 모델 디렉토리에서 모델 파일과 토크나이저를 복사합니다.
Parameters:
model_dir (str): 복사할 모델 디렉토리 경로
tokenizer: 토크나이저 객체
Returns:
None
"""
max_depth = 1 # 순회할 최대 깊이
for root, dirs, files in os.walk(model_dir):
depth = root.count(os.sep) - model_dir.count(os.sep)
if depth < max_depth:
for file in files:
# 파일 경로 생성
source_file = os.path.join(root, file)
# 대상 폴더에 복사
shutil.copy(source_file, './repo')
# 토크나이저 다운로드 및 로컬 디렉토리에 저장
tokenizer.save_pretrained('./repo')
# 허깅페이스 readme 작성
def write_readme(dataset_name, model_name, model_description):
"""
README 파일을 작성하는 함수입니다.
Parameters:
dataset_name (str): 데이터셋 이름
model_name (str): 모델 이름
model_description (str): 모델 설명
Returns:
None
"""
readme = f"""
---
language: ko
tags:
- whisper
- speech-recognition
datasets:
- {dataset_name}
metrics:
- cer
---
# Model Name : {model_name}
# Description
{model_description}
"""
# 모델 카드 및 기타 메타데이터 파일 작성
with open("./repo/README.md", "w") as f:
f.write(readme)
def upload_huggingface(token, repo_name, model_dir, tokenizer, dataset_name, model_name, model_description):
"""
Hugging Face 모델을 업로드하는 함수입니다.
Parameters:
token (str): Hugging Face 토큰
repo_name (str): 업로드할 레포지토리 이름
model_dir (str): 모델 디렉토리 경로
tokenizer: 토크나이저 객체
dataset_name (str): 데이터셋 이름
model_name (str): 모델 이름
model_description (str): 모델 설명
Returns:
None
"""
login_huggingface(token)
create_repo(repo_name, exist_ok=True)
repo = Repository(local_dir='./repo', clone_from=f"{repo_name}")
copy_model(model_dir, tokenizer)
write_readme(dataset_name, model_name, model_description)
repo.push_to_hub(commit_message="Initial commit")
def additional_preprocess(text):
"""
주어진 텍스트를 전처리하는 함수입니다.
Parameters:
text (str): 전처리할 텍스트
Returns:
str: 전처리된 텍스트
"""
text = re.sub(r'/\([^\)]+\)', '', text) # /( *) 패턴 제거, /(...) 형식 제거
text = text.replace('\n', '')
# text = re.sub(r'\(([^/]+)\/([^)]+)\)', r'\1', text)
NOISE = ['o', 'n', 'u', 'b', 'l']
EXCEPT = ['?', '!', '/', '+', '*', '-', '@', '$', '^', '&', '[', ']', '=', ':', ';', '.', ',', '(', ')']
for noise in NOISE:
text = text.replace(noise+'/', '')
for specialChar in EXCEPT:
text = text.replace(specialChar, '')
text = text.replace(' ', ' ')
return text.strip()
def preprocess_batch(batch):
"""
주어진 배치를 전처리하는 함수입니다.
Parameters:
batch (dict): 전처리할 배치 데이터
Returns:
dict: 전처리된 배치 데이터
"""
# transcripts 컬럼 전처리
batch["labels"] = additional_preprocess(batch["labels"])
# label ids로 변환
batch["labels"] = tokenizer(batch["labels"]).input_ids
return batch
def finetune_one_block(set_num, load_num, is_test, training_args, token):
"""
주어진 데이터셋을 사용하여 모델을 파인튜닝하는 함수입니다.
Parameters:
set_num (int): 파인튜닝 데이터셋의 번호.
load_num (int): 불러온 모델의 번호.
is_test (bool): 테스트 모드 여부.
training_args: 학습에 필요한 인자들.
token: Hugging Face에 업로드하기 위한 토큰.
Returns:
None
"""
model_description = f"""
- 파인튜닝 데이터셋 : maxseats/aihub-464-preprocessed-680GB-set-{set_num}
# 설명
- AI hub의 주요 영역별 회의 음성 데이터셋을 학습 중이에요.
- 680GB 중 set_0~{load_num} 데이터({set_num}0GB)까지 파인튜닝한 모델을 불러와서, set_{set_num} 데이터(10GB)를 학습한 모델입니다.
- 링크 : https://huggingface.co/datasets/maxseats/aihub-464-preprocessed-680GB-set-{set_num}
"""
model_name = f"maxseats/SungBeom-whisper-small-ko-set{load_num}"
dataset_name = f"maxseats/aihub-464-preprocessed-680GB-set-{set_num}"
repo_name = f"maxseats/SungBeom-whisper-small-ko-set{set_num}"
CACHE_DIR = f"/mnt/prj/.finetuning_cache{set_num}"
# processor, tokenizer, feature_extractor, model, data_collator, metric = get_model_variable(model_name, device)
print("Model is on device:", next(model.parameters()).device)
print("<현재 description>\n", model_description)
preprocessed_dataset = load_dataset(dataset_name, cache_dir=CACHE_DIR)
preprocessed_dataset = preprocessed_dataset.map(preprocess_batch)
print("처음 5개 항목의 transcripts 데이터 확인:")
for i in range(5):
print(f"{i+1}번째 항목: {preprocessed_dataset['train'][i]['labels']}")
# print("\n마지막 5개 항목의 transcripts 데이터 확인:")
# for i in range(1, 6):
# print(f"{len(preprocessed_dataset['train'])-i+1}번째 항목: {preprocessed_dataset['train'][-i]['labels']}")
if is_test:
preprocessed_dataset["valid"] = preprocessed_dataset["valid"].select(range(math.ceil(len(preprocessed_dataset) * 0.3)))
experiment_id = set_mlflow_env(model_name)
trainer = Seq2SeqTrainer(
args=training_args,
model=model,
train_dataset=preprocessed_dataset["train"],
eval_dataset=preprocessed_dataset["valid"],
data_collator=data_collator,
compute_metrics=compute_metrics,
tokenizer=processor.feature_extractor,
)
with mlflow.start_run(experiment_id=experiment_id, description=model_description):
for key, value in training_args.to_dict().items():
mlflow.log_param(key, value)
mlflow.set_tag("Dataset", dataset_name)
trainer.train()
metrics = trainer.evaluate()
for metric_name, metric_value in metrics.items():
mlflow.log_metric(metric_name, metric_value)
model_uri = "runs:/{run_id}/{artifact_path}".format(run_id=mlflow.active_run().info.run_id, artifact_path=model_dir)
model_details = mlflow.register_model(model_uri=model_uri, name=model_name.replace('/', '-'))
MlflowClient().update_model_version(name=model_details.name, version=model_details.version, description=model_description)
while True:
try:
upload_huggingface(token, repo_name, model_dir, tokenizer, dataset_name, model_name, model_description)
break
except Exception:
logging.error("Error occurred during upload to Hugging Face. Retrying...", exc_info=True)
subprocess.run(["sudo", "rm", "-rf", model_dir])
subprocess.run(["sudo", "rm", "-rf", './repo'])
subprocess.run(["sudo", "rm", "-rf", CACHE_DIR])
torch.cuda.empty_cache()
print('완료. 넘나 축하.\n\n\n')
############################################################# MAIN 시작 ############################################################################
'''
마지막 번호의 데이터셋을 파인튜닝 할 때 까지 코드가 반복 실행되어요.
'''
while start_num <= last_num:
try:
logging.debug("Starting main block")
device = check_GPU() # GPU 사용 설정
while start_num < 69: # 학습할 데이터셋 번호 지정
if start_num == 11:
load_num = start_num-2 # 불러올 모델 번호
else:
load_num = start_num-1
model_name = f"maxseats/SungBeom-whisper-small-ko-set{load_num}"
processor, tokenizer, feature_extractor, model, data_collator, metric = get_model_variable(model_name, device)
init_dirs()
finetune_one_block(start_num, load_num, is_test, training_args, token)
start_num += 1 # 성공적으로 완료되면 다음 start_num으로 이동
except Exception:
logging.error("Error occurred", exc_info=True)
# 에러 발생 시 현재 set_num 유지, while 루프는 계속 실행