File size: 30,566 Bytes
27c46c6 | 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 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 | """
Fixed Optimized Japanese Counseling Model Benchmark with proper DataParallel handling
"""
import torch
import torch.nn as nn
from torch.nn.parallel import DataParallel
from torch.utils.data import Dataset, DataLoader
from transformers import AutoModelForCausalLM, AutoTokenizer
import numpy as np
from typing import List, Dict, Tuple, Optional, Any
import json
from tqdm import tqdm
import os
import gc
import warnings
from datetime import datetime
import pandas as pd
from collections import defaultdict
import MeCab
from rouge_score import rouge_scorer
from nltk.translate.bleu_score import sentence_bleu, SmoothingFunction
import re
import wandb
from concurrent.futures import ThreadPoolExecutor
import time
# Suppress warnings
warnings.filterwarnings('ignore')
os.environ['TOKENIZERS_PARALLELISM'] = 'false'
# Suppress Pydantic warnings
import logging
logging.getLogger('pydantic').setLevel(logging.ERROR)
class TestDataset(Dataset):
"""Custom dataset for efficient batch processing"""
def __init__(self, data: List[Dict]):
self.data = data
def __len__(self):
return len(self.data)
def __getitem__(self, idx):
return self.data[idx]
def custom_collate_fn(batch):
"""Custom collate function to handle dictionary data properly"""
return batch
class OptimizedJapaneseBenchmark:
"""
Highly optimized benchmark suite with multi-GPU support and WandB logging
"""
def __init__(self,
base_model_name: str = "LiquidAI/LFM2-1.2B",
finetuned_model_path: str = "./merged_counselor_model",
test_data_path: str = "./processed_data_score80/test.jsonl",
batch_size: int = 16, # Reduced for stability
num_workers: int = 0,
use_wandb: bool = True):
"""
Initialize optimized benchmark with multi-GPU support
"""
self.base_model_name = base_model_name
self.finetuned_model_path = finetuned_model_path
self.test_data_path = test_data_path
self.batch_size = batch_size
self.num_workers = num_workers
# Setup devices
self.setup_devices()
# Initialize WandB
if use_wandb:
self.init_wandb()
else:
self.wandb_enabled = False
# Initialize tokenizers and scorers
self.setup_tokenizers_and_scorers()
# Results storage
self.results = {}
self.detailed_results = []
def setup_devices(self):
"""Setup multi-GPU configuration"""
if torch.cuda.is_available():
self.num_gpus = torch.cuda.device_count()
print(f"๐ Found {self.num_gpus} GPUs")
self.device_ids = list(range(self.num_gpus))
self.device = torch.device("cuda:0")
for i in range(self.num_gpus):
print(f" GPU {i}: {torch.cuda.get_device_name(i)}")
print(f" Memory: {torch.cuda.get_device_properties(i).total_memory / 1e9:.2f} GB")
else:
self.num_gpus = 0
self.device = torch.device("cpu")
print("โ ๏ธ No GPU found, using CPU")
def init_wandb(self):
"""Initialize WandB for experiment tracking"""
try:
run_name = f"benchmark-{datetime.now().strftime('%Y%m%d-%H%M%S')}"
wandb.init(
project="japanese-counseling-benchmark",
name=run_name,
config={
"base_model": self.base_model_name,
"finetuned_model": self.finetuned_model_path,
"batch_size": self.batch_size,
"num_gpus": self.num_gpus,
"timestamp": datetime.now().isoformat()
},
tags=["benchmark", "japanese", "counseling", "multi-gpu"]
)
self.wandb_enabled = True
print(f"โ
WandB initialized: {wandb.run.name}")
print(f"๐ View at: {wandb.run.get_url()}")
except Exception as e:
print(f"โ ๏ธ WandB initialization failed: {e}")
self.wandb_enabled = False
def setup_tokenizers_and_scorers(self):
"""Setup tokenizers and scoring functions"""
# Initialize MeCab for Japanese tokenization
try:
self.mecab = MeCab.Tagger("-Owakati")
print("โ
MeCab initialized")
except:
print("โ ๏ธ MeCab not available, using character tokenization")
self.mecab = None
# Initialize ROUGE scorer
self.rouge_scorer = rouge_scorer.RougeScorer(
['rouge1', 'rouge2', 'rougeL'],
use_stemmer=False
)
# BLEU smoothing
self.smoothing = SmoothingFunction().method1
def load_test_data_fast(self, max_samples: Optional[int] = None) -> List[Dict]:
"""Fast loading of test data"""
print(f"\n๐ Loading test data from {self.test_data_path}")
test_data = []
if not os.path.exists(self.test_data_path):
print("โ ๏ธ Test data not found, using synthetic data")
return self.create_synthetic_test_data()
try:
with open(self.test_data_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
if max_samples:
lines = lines[:max_samples]
for line in tqdm(lines, desc="Loading data"):
try:
data = json.loads(line)
text = data.get('text', '')
if "### Input:" in text and "### Response:" in text:
input_part = text.split("### Input:")[1].split("### Response:")[0].strip()
response_part = text.split("### Response:")[1].strip()
test_data.append({
'input': input_part,
'reference': response_part,
'score': data.get('score', 0),
'topic': data.get('topic', 'Unknown')
})
except:
continue
except Exception as e:
print(f"Error loading data: {e}")
return self.create_synthetic_test_data()
if not test_data:
print("โ ๏ธ No valid data found, using synthetic data")
return self.create_synthetic_test_data()
print(f"โ
Loaded {len(test_data)} test examples")
if self.wandb_enabled:
wandb.log({"test_data_size": len(test_data)})
return test_data
def create_synthetic_test_data(self) -> List[Dict]:
"""Create synthetic test data"""
return [
{
'input': f'ในใใฌในใๆใใฆใใพใใ',
'reference': f'ใๆฐๆใกใใใใพใใใฉใฎใใใช็ถๆณใงในใใฌในใๆใใฆใใพใใ๏ผ',
'score': 75,
'topic': 'stress'
}
for i in range(10)
]
def load_models_optimized(self):
"""Load models with optimization for multi-GPU"""
print("\n๐ค Loading models with optimization...")
# Load tokenizer
print(" Loading tokenizer...")
try:
self.tokenizer = AutoTokenizer.from_pretrained(
self.base_model_name,
use_fast=True
)
except:
self.tokenizer = AutoTokenizer.from_pretrained("gpt2", use_fast=True)
if self.tokenizer.pad_token is None:
self.tokenizer.pad_token = self.tokenizer.eos_token
# Load base model
print(" Loading base model...")
try:
base_model = AutoModelForCausalLM.from_pretrained(
self.base_model_name,
torch_dtype=torch.float16,
trust_remote_code=True,
low_cpu_mem_usage=True
)
except Exception as e:
print(f" Error loading base model: {e}")
print(" Using GPT2 as fallback...")
base_model = AutoModelForCausalLM.from_pretrained(
"gpt2",
torch_dtype=torch.float16
)
# Load fine-tuned model
print(" Loading fine-tuned model...")
if os.path.exists(self.finetuned_model_path):
try:
finetuned_model = AutoModelForCausalLM.from_pretrained(
self.finetuned_model_path,
torch_dtype=torch.float16,
trust_remote_code=True,
low_cpu_mem_usage=True,
local_files_only=True
)
except Exception as e:
print(f" Error loading fine-tuned model: {e}")
finetuned_model = base_model
else:
print(" Fine-tuned model not found, using base model")
finetuned_model = base_model
# Move models to GPU
base_model = base_model.to(self.device)
finetuned_model = finetuned_model.to(self.device)
# Setup for multi-GPU if available
if self.num_gpus > 1:
print(f" Setting up DataParallel for {self.num_gpus} GPUs...")
self.base_model = DataParallel(base_model, device_ids=self.device_ids)
self.finetuned_model = DataParallel(finetuned_model, device_ids=self.device_ids)
else:
self.base_model = base_model
self.finetuned_model = finetuned_model
self.base_model.eval()
self.finetuned_model.eval()
print("โ
Models loaded and optimized!")
if self.wandb_enabled:
wandb.log({
"model_loaded": True,
"num_gpus_used": self.num_gpus
})
def generate_batch_responses(self, model, prompts: List[str], max_length: int = 150) -> List[str]:
"""Generate responses in batch for efficiency"""
if len(prompts) == 0:
return []
formatted_prompts = [
f"""### Instruction:
ใใชใใฏๆใใใใฎใใๅฟ็ใซใฆใณใปใฉใผใงใใ
### Input:
{prompt}
### Response:
""" for prompt in prompts
]
try:
# Tokenize all prompts at once
inputs = self.tokenizer(
formatted_prompts,
return_tensors="pt",
truncation=True,
max_length=512,
padding=True,
padding_side= 'left'
)
inputs = {k: v.to(self.device) for k, v in inputs.items()}
# Get the actual model from DataParallel if needed
actual_model = model.module if isinstance(model, DataParallel) else model
# Generate in batch
with torch.no_grad():
with torch.cuda.amp.autocast():
outputs = actual_model.generate(
**inputs,
max_new_tokens=max_length,
temperature=0.7,
do_sample=True,
top_p=0.9,
num_beams=1,
pad_token_id=self.tokenizer.pad_token_id,
eos_token_id=self.tokenizer.eos_token_id
)
# Decode all at once
responses = self.tokenizer.batch_decode(outputs, skip_special_tokens=True)
# Extract only generated parts
extracted_responses = []
for i, response in enumerate(responses):
if "### Response:" in response:
extracted = response.split("### Response:")[-1].strip()
else:
extracted = response[len(formatted_prompts[i]):].strip()
extracted_responses.append(extracted if extracted else "ๅฟ็ญใ็ๆใงใใพใใใงใใใ")
return extracted_responses
except Exception as e:
print(f"Error in batch generation: {e}")
# Return default responses
return ["็ณใ่จณใใใใพใใใๅฟ็ญใ็ๆใงใใพใใใงใใใ"] * len(prompts)
def tokenize_japanese(self, text: str) -> List[str]:
"""Tokenize Japanese text"""
if not text:
return ['empty']
if self.mecab:
try:
tokens = self.mecab.parse(text).strip().split()
return tokens if tokens else list(text)
except:
pass
# Fallback to character tokenization
return list(text.replace(' ', ''))
def calculate_metrics_batch(self, references: List[str], hypotheses: List[str]) -> Dict:
"""Calculate all metrics in batch"""
metrics = defaultdict(list)
for ref, hyp in zip(references, hypotheses):
if not ref or not hyp:
# Add default scores for empty strings
for n in range(1, 5):
metrics[f'BLEU-{n}'].append(0.0)
metrics['ROUGE-1'].append(0.0)
metrics['ROUGE-2'].append(0.0)
metrics['ROUGE-L'].append(0.0)
continue
try:
# Tokenize
ref_tokens = self.tokenize_japanese(ref)
hyp_tokens = self.tokenize_japanese(hyp)
# BLEU scores
for n in range(1, 5):
weights = tuple([1/n] * n + [0] * (4-n))
try:
score = sentence_bleu(
[ref_tokens],
hyp_tokens,
weights=weights,
smoothing_function=self.smoothing
)
metrics[f'BLEU-{n}'].append(score)
except:
metrics[f'BLEU-{n}'].append(0.0)
# ROUGE scores
try:
ref_spaced = ' '.join(ref_tokens)
hyp_spaced = ' '.join(hyp_tokens)
rouge_scores = self.rouge_scorer.score(ref_spaced, hyp_spaced)
metrics['ROUGE-1'].append(rouge_scores['rouge1'].fmeasure)
metrics['ROUGE-2'].append(rouge_scores['rouge2'].fmeasure)
metrics['ROUGE-L'].append(rouge_scores['rougeL'].fmeasure)
except:
metrics['ROUGE-1'].append(0.0)
metrics['ROUGE-2'].append(0.0)
metrics['ROUGE-L'].append(0.0)
except Exception as e:
# Add zeros for failed calculations
for n in range(1, 5):
metrics[f'BLEU-{n}'].append(0.0)
metrics['ROUGE-1'].append(0.0)
metrics['ROUGE-2'].append(0.0)
metrics['ROUGE-L'].append(0.0)
return dict(metrics)
def run_fast_benchmark(self, num_samples: Optional[int] = None):
"""Run optimized benchmark with batch processing"""
print("\n" + "="*80)
print("๐ Running Fast Multi-GPU Benchmark")
print("="*80)
start_time = time.time()
# Load test data
test_data = self.load_test_data_fast(max_samples=num_samples)
if not test_data:
raise ValueError("No test data available!")
# Create DataLoader
dataset = TestDataset(test_data)
dataloader = DataLoader(
dataset,
batch_size=self.batch_size,
shuffle=False,
num_workers=0,
collate_fn=custom_collate_fn,
pin_memory=True if self.device.type == 'cuda' else False
)
# Initialize metric collectors
all_base_metrics = defaultdict(list)
all_finetuned_metrics = defaultdict(list)
print(f"\n๐ Evaluating {len(test_data)} examples in {len(dataloader)} batches...")
print(f" Batch size: {self.batch_size}")
print(f" Using {self.num_gpus} GPU(s)")
# Process batches
successful_batches = 0
for batch_idx, batch in enumerate(tqdm(dataloader, desc="Processing batches")):
try:
# Extract batch data
inputs = [item['input'] for item in batch]
references = [item['reference'] for item in batch]
# Generate responses in batch
base_responses = self.generate_batch_responses(self.base_model, inputs)
finetuned_responses = self.generate_batch_responses(self.finetuned_model, inputs)
# Calculate metrics in batch
base_metrics = self.calculate_metrics_batch(references, base_responses)
finetuned_metrics = self.calculate_metrics_batch(references, finetuned_responses)
# Aggregate metrics
for key, values in base_metrics.items():
all_base_metrics[key].extend(values)
for key, values in finetuned_metrics.items():
all_finetuned_metrics[key].extend(values)
successful_batches += 1
# Log progress to WandB
if self.wandb_enabled and batch_idx % 5 == 0:
progress = (batch_idx + 1) / len(dataloader) * 100
# Calculate current averages
current_bleu4_base = np.mean(all_base_metrics.get('BLEU-4', [0]))
current_bleu4_finetuned = np.mean(all_finetuned_metrics.get('BLEU-4', [0]))
current_rouge_l_base = np.mean(all_base_metrics.get('ROUGE-L', [0]))
current_rouge_l_finetuned = np.mean(all_finetuned_metrics.get('ROUGE-L', [0]))
wandb.log({
"progress": progress,
"batches_processed": batch_idx + 1,
"samples_processed": min((batch_idx + 1) * self.batch_size, len(test_data)),
"current_bleu4_base": current_bleu4_base,
"current_bleu4_finetuned": current_bleu4_finetuned,
"current_rouge_l_base": current_rouge_l_base,
"current_rouge_l_finetuned": current_rouge_l_finetuned
})
# Store examples for analysis
if batch_idx == 0 and len(inputs) > 0:
for i in range(min(3, len(inputs))):
self.detailed_results.append({
'input': inputs[i],
'reference': references[i],
'base_response': base_responses[i] if i < len(base_responses) else "",
'finetuned_response': finetuned_responses[i] if i < len(finetuned_responses) else ""
})
# Print sample
print(f"\n๐ Sample Example:")
print(f"Input: {inputs[0][:100]}...")
print(f"Reference: {references[0][:100]}...")
print(f"Base response: {base_responses[0][:100]}...")
print(f"Fine-tuned response: {finetuned_responses[0][:100]}...")
except Exception as e:
print(f"Error processing batch {batch_idx}: {e}")
continue
print(f"\nโ
Successfully processed {successful_batches}/{len(dataloader)} batches")
# Calculate final statistics
self.results = self.calculate_final_statistics(all_base_metrics, all_finetuned_metrics)
# Calculate processing time
total_time = time.time() - start_time
samples_per_second = len(test_data) / total_time if total_time > 0 else 0
print(f"\nโฑ๏ธ Benchmark completed in {total_time:.2f} seconds")
print(f" Processing speed: {samples_per_second:.2f} samples/second")
# Log final results to WandB
if self.wandb_enabled:
wandb.log({
"total_time_seconds": total_time,
"samples_per_second": samples_per_second,
"total_samples": len(test_data),
"successful_batches": successful_batches,
**{f"final_{k}": v for k, v in self.results['summary'].items()}
})
# Log detailed metrics
for metric_name, improvements in self.results['improvements'].items():
wandb.log({f"improvement_{metric_name}": improvements})
# Create visualization
if self.results['metrics']:
self.create_wandb_visualizations()
# Print results
self.print_results()
return self.results
def create_wandb_visualizations(self):
"""Create WandB visualizations"""
if not self.wandb_enabled or not self.results.get('metrics'):
return
try:
# Create comparison table
data = []
for metric in self.results['metrics']:
data.append([
metric,
self.results['metrics'][metric]['base']['mean'],
self.results['metrics'][metric]['finetuned']['mean'],
self.results['improvements'][metric]
])
table = wandb.Table(
columns=["Metric", "Base", "Fine-tuned", "Improvement (%)"],
data=data
)
wandb.log({"results_comparison": table})
# Log bar chart of improvements
wandb.log({
"improvements_chart": wandb.plot.bar(
wandb.Table(
data=[[m, self.results['improvements'][m]] for m in self.results['improvements']],
columns=["Metric", "Improvement (%)"]
),
"Metric", "Improvement (%)",
title="Model Improvements"
)
})
except Exception as e:
print(f"Error creating visualizations: {e}")
def calculate_final_statistics(self, base_metrics: Dict, finetuned_metrics: Dict) -> Dict:
"""Calculate final aggregate statistics"""
results = {
'metrics': {},
'improvements': {},
'summary': {}
}
# Calculate statistics for each metric
all_metric_names = set(base_metrics.keys()) | set(finetuned_metrics.keys())
for metric in all_metric_names:
base_values = base_metrics.get(metric, [0])
finetuned_values = finetuned_metrics.get(metric, [0])
# Filter out any None values
base_values = [v for v in base_values if v is not None]
finetuned_values = [v for v in finetuned_values if v is not None]
if not base_values:
base_values = [0]
if not finetuned_values:
finetuned_values = [0]
results['metrics'][metric] = {
'base': {
'mean': float(np.mean(base_values)),
'std': float(np.std(base_values)),
'min': float(np.min(base_values)),
'max': float(np.max(base_values))
},
'finetuned': {
'mean': float(np.mean(finetuned_values)),
'std': float(np.std(finetuned_values)),
'min': float(np.min(finetuned_values)),
'max': float(np.max(finetuned_values))
}
}
# Calculate improvement
base_mean = np.mean(base_values)
finetuned_mean = np.mean(finetuned_values)
if base_mean > 0:
improvement = ((finetuned_mean - base_mean) / base_mean) * 100
else:
improvement = 0 if finetuned_mean == 0 else 100
results['improvements'][metric] = improvement
# Calculate summary statistics
bleu_metrics = [m for m in results['metrics'] if 'BLEU' in m]
rouge_metrics = [m for m in results['metrics'] if 'ROUGE' in m]
results['summary'] = {
'bleu_avg_improvement': np.mean([results['improvements'][m] for m in bleu_metrics]) if bleu_metrics else 0,
'rouge_avg_improvement': np.mean([results['improvements'][m] for m in rouge_metrics]) if rouge_metrics else 0,
'overall_improvement': np.mean(list(results['improvements'].values())) if results['improvements'] else 0
}
return results
def print_results(self):
"""Print formatted results"""
print("\n" + "="*80)
print("๐ BENCHMARK RESULTS")
print("="*80)
if not self.results or 'metrics' not in self.results:
print("No results to display")
return
# BLEU scores
print("\n๐ BLEU Scores:")
print("-"*60)
print(f"{'Metric':<15} {'Base':<15} {'Fine-tuned':<15} {'Improvement':<15}")
print("-"*60)
for metric in sorted([m for m in self.results['metrics'] if 'BLEU' in m]):
base = self.results['metrics'][metric]['base']['mean']
finetuned = self.results['metrics'][metric]['finetuned']['mean']
improvement = self.results['improvements'][metric]
print(f"{metric:<15} {base:.4f} {finetuned:.4f} {improvement:+.1f}%")
# ROUGE scores
print("\n๐ ROUGE Scores:")
print("-"*60)
for metric in sorted([m for m in self.results['metrics'] if 'ROUGE' in m]):
base = self.results['metrics'][metric]['base']['mean']
finetuned = self.results['metrics'][metric]['finetuned']['mean']
improvement = self.results['improvements'][metric]
print(f"{metric:<15} {base:.4f} {finetuned:.4f} {improvement:+.1f}%")
# Summary
print("\n" + "="*80)
print("๐ SUMMARY")
print("="*80)
print(f"BLEU Average Improvement: {self.results['summary']['bleu_avg_improvement']:+.1f}%")
print(f"ROUGE Average Improvement: {self.results['summary']['rouge_avg_improvement']:+.1f}%")
print(f"Overall Improvement: {self.results['summary']['overall_improvement']:+.1f}%")
print("="*80)
def save_results(self, output_dir: str = "./benchmark_results"):
"""Save results"""
os.makedirs(output_dir, exist_ok=True)
# Save results
with open(os.path.join(output_dir, "results.json"), 'w', encoding='utf-8') as f:
json.dump(self.results, f, ensure_ascii=False, indent=2, default=str)
with open(os.path.join(output_dir, "examples.json"), 'w', encoding='utf-8') as f:
json.dump(self.detailed_results, f, ensure_ascii=False, indent=2)
# Save to WandB
if self.wandb_enabled:
try:
artifact = wandb.Artifact(
name=f"benchmark-results-{wandb.run.id}",
type="benchmark_results",
description="Japanese counseling model benchmark results"
)
artifact.add_dir(output_dir)
wandb.log_artifact(artifact)
except Exception as e:
print(f"Error saving to WandB: {e}")
print(f"โ
Results saved to {output_dir}/")
def cleanup(self):
"""Clean up resources"""
if self.wandb_enabled:
wandb.finish()
if torch.cuda.is_available():
torch.cuda.empty_cache()
gc.collect()
def main():
"""Main execution"""
import argparse
parser = argparse.ArgumentParser(description='Optimized Japanese Counseling Benchmark')
parser.add_argument('--base_model', type=str, default='LiquidAI/LFM2-1.2B')
parser.add_argument('--finetuned_model', type=str, default='./merged_counselor_model')
parser.add_argument('--test_data', type=str, default='./processed_data_score80/test.jsonl')
parser.add_argument('--batch_size', type=int, default=16, help='Batch size for processing')
parser.add_argument('--num_samples', type=int, default=None, help='Number of samples to evaluate')
parser.add_argument('--output_dir', type=str, default='./benchmark_results_fast')
parser.add_argument('--no_wandb', action='store_true', help='Disable WandB logging')
args = parser.parse_args()
try:
# Initialize benchmark
print("๐ Initializing Optimized Benchmark Suite")
benchmark = OptimizedJapaneseBenchmark(
base_model_name=args.base_model,
finetuned_model_path=args.finetuned_model,
test_data_path=args.test_data,
batch_size=args.batch_size,
use_wandb=not args.no_wandb
)
# Load models
benchmark.load_models_optimized()
# Run benchmark
results = benchmark.run_fast_benchmark(num_samples=args.num_samples)
# Save results
benchmark.save_results(args.output_dir)
# Cleanup
benchmark.cleanup()
print("\nโ
Benchmark completed successfully!")
except Exception as e:
print(f"\nโ Error: {e}")
import traceback
traceback.print_exc()
if 'benchmark' in locals():
benchmark.cleanup()
if __name__ == "__main__":
main()
|