File size: 59,000 Bytes
8ad3ba6 | 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 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 | # visualization.py
# Visualization module for GRMP attack experiment results
# Generates plots matching the paper's Figure 3, 4, 5, and 6
import matplotlib.pyplot as plt
import math
import numpy as np
from pathlib import Path
from typing import Any, Dict, List, Optional
import json
# Set style for IEEE publication-quality figures
# Use clean, minimal style without heavy grid
plt.style.use('default')
# IEEE-style parameters: clean, professional, publication-ready
plt.rcParams['figure.figsize'] = (6.5, 5) # IEEE column width (6.5 inches)
plt.rcParams['font.size'] = 10
plt.rcParams['font.family'] = 'sans-serif' # Use sans-serif font family
plt.rcParams['font.sans-serif'] = ['Arial', 'DejaVu Sans', 'Liberation Sans', 'Helvetica', 'sans-serif'] # Arial as primary font
plt.rcParams['axes.labelsize'] = 11
plt.rcParams['axes.titlesize'] = 12
plt.rcParams['xtick.labelsize'] = 10
plt.rcParams['ytick.labelsize'] = 10
plt.rcParams['legend.fontsize'] = 9
plt.rcParams['legend.frameon'] = True
plt.rcParams['legend.framealpha'] = 1.0
plt.rcParams['legend.fancybox'] = False
plt.rcParams['legend.edgecolor'] = 'black'
plt.rcParams['legend.borderpad'] = 0.4
plt.rcParams['figure.titlesize'] = 12
plt.rcParams['axes.linewidth'] = 0.8
plt.rcParams['grid.linewidth'] = 0.5
plt.rcParams['grid.alpha'] = 0.3
plt.rcParams['lines.linewidth'] = 1.5
plt.rcParams['lines.markersize'] = 5
# IEEE-style color palette: professional, distinct colors
# Optimized for maximum distinguishability
# Colors are carefully selected to be easily distinguishable in both print and screen
IEEE_COLORS = {
'benign': [
'#0066CC', # Blue (Agent 1)
'#FF6600', # Orange (Agent 2)
'#00B050', # Green (Agent 3)
'#FFC000', # Amber/Yellow (Agent 4)
'#7030A0', # Purple (Agent 5)
'#C55A11', # Brown (Agent 6)
'#70AD47', # Light Green (Agent 7)
'#5B9BD5', # Light Blue (Agent 8)
'#2E75B6', # Dark Blue (Agent 9)
'#0070C0', # Cyan Blue (Agent 10)
'#954F72', # Rose (Agent 11)
'#1F4E79', # Navy (Agent 12)
'#000000', # Black (Agent 13)
'#C00000', # Red (Agent 14) - use carefully, distinguish from attackers
'#FF0000' # Bright Red (Agent 15)
],
'attacker': [
'#DC143C', # Crimson (Attacker 1)
'#C00000', # Dark Red (Attacker 2)
'#FF4500', # Orange Red (Attacker 3)
'#B22222', # Fire Brick (Attacker 4)
'#E74C3C', # Red (Attacker 5)
'#C0392B', # Dark Red (Attacker 6)
'#8B0000', # Dark Red (Attacker 7)
'#A52A2A' # Brown Red (Attacker 8)
],
'global': '#0066CC' # Professional blue for global accuracy
}
# IEEE-style markers: distinct, professional, optimized for clarity
IEEE_MARKERS = {
'benign': ['o', 's', '^', 'D', 'v', 'p', '*', 'h', 'X', 'd', '<', '>', 'P', 'H', '8'],
'attacker': ['s', 'D', '^', 'v', 'p', '*', 'h', 'X']
}
class ExperimentVisualizer:
"""Visualizer for GRMP attack experiment results"""
def __init__(self, results_dir: Path = Path("results")):
self.results_dir = Path(results_dir)
self.results_dir.mkdir(exist_ok=True)
def load_results(self, results_path: str) -> Dict:
"""Load experiment results from JSON file"""
with open(results_path, 'r') as f:
return json.load(f)
def plot_figure3_global_accuracy_stability(self, log_data: List[Dict], save_path: Optional[str] = None, num_rounds: Optional[int] = None):
"""
Figure 3: Global learning accuracy over communication rounds.
Displays only the global accuracy curve without additional metrics.
"""
rounds = [log['round'] for log in log_data]
clean_acc = [log.get('clean_accuracy', 0.0) for log in log_data]
# Ensure all arrays have the same length
min_len = min(len(rounds), len(clean_acc))
if min_len == 0:
print(" โ ๏ธ Warning: Figure 3 - No data to plot")
return
# Truncate all arrays to the same length
rounds = rounds[:min_len]
clean_acc = clean_acc[:min_len]
# Validate/pad
if num_rounds is not None and len(rounds) != num_rounds:
print(f" โ ๏ธ Warning: Figure 3 - Expected {num_rounds} rounds, got {len(rounds)}")
expected_rounds = list(range(1, num_rounds + 1))
if len(rounds) < num_rounds:
missing = [r for r in expected_rounds if r not in rounds]
for _ in missing:
rounds.append(expected_rounds[len(rounds)])
clean_acc.append(clean_acc[-1] if clean_acc else 0.0)
print(f" Padded {len(missing)} missing rounds")
fig, ax = plt.subplots(figsize=(6.5, 5))
# IEEE-style: clean, professional appearance
ax.set_xlabel('Episodes', fontsize=11, fontweight='normal')
ax.set_ylabel('Global Testing Accuracy (%)', fontsize=11, fontweight='normal')
# Convert to percentage for IEEE style
clean_acc_pct = [acc * 100 for acc in clean_acc]
# Plot accuracy line - IEEE style: solid line, clear marker
ax.plot(rounds, clean_acc_pct, '-', color=IEEE_COLORS['global'],
linewidth=2, marker='o', markersize=4, markevery=max(1, len(rounds)//20),
label='Global Accuracy', zorder=3, markerfacecolor=IEEE_COLORS['global'],
markeredgecolor='white', markeredgewidth=0.5)
# IEEE-style: subtle grid, clean axes
ax.set_ylim([max(0.0, min(clean_acc_pct) - 2), min(100.0, max(clean_acc_pct) + 2)])
ax.set_xlim([1, max(rounds) if rounds else 1])
ax.grid(True, alpha=0.2, linestyle='--', linewidth=0.5)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# IEEE-style legend: clear, professional
ax.legend(loc='best', frameon=True, fancybox=False, shadow=False,
edgecolor='black', framealpha=1.0, fontsize=9)
# No title for IEEE style (usually added in LaTeX)
plt.tight_layout()
out_path = save_path or (self.results_dir / 'figure3_global_accuracy_stability.png')
plt.savefig(out_path, dpi=600, bbox_inches='tight')
print(f" โ
Saved Figure 3 to: {out_path}")
plt.close()
def plot_figure4_cosine_similarity(self, log_data: List[Dict],
attacker_ids: Optional[List[int]] = None,
save_path: Optional[str] = None,
num_rounds: Optional[int] = None,
num_clients: Optional[int] = None,
num_attackers: Optional[int] = None):
"""
Figure 4: Temporal evolution of cosine similarity for each LLM agent
over communication rounds.
Args:
log_data: List of round logs
attacker_ids: List of attacker client IDs (if None, will infer from num_clients and num_attackers)
save_path: Path to save the figure
num_rounds: Total number of rounds (for validation)
num_clients: Total number of clients (for inferring attacker_ids if not provided)
num_attackers: Number of attacker clients (for inferring attacker_ids if not provided)
"""
rounds = [log['round'] for log in log_data]
# Validate data length
if num_rounds is not None and len(rounds) != num_rounds:
print(f" โ ๏ธ Warning: Figure 4 - Expected {num_rounds} rounds, got {len(rounds)}")
if len(rounds) < num_rounds:
# Pad missing rounds (similarities will be handled in the loop)
expected_rounds = list(range(1, num_rounds + 1))
missing_rounds = [r for r in expected_rounds if r not in rounds]
# Add placeholder logs for missing rounds
if log_data:
last_log = log_data[-1].copy()
for r in missing_rounds:
placeholder_log = last_log.copy()
placeholder_log['round'] = r
placeholder_log['aggregation'] = last_log.get('aggregation', {}).copy()
log_data.append(placeholder_log)
rounds = expected_rounds
print(f" Padded {len(missing_rounds)} missing rounds")
fig, ax = plt.subplots(figsize=(6.5, 5))
# Extract similarities and client info from aggregation logs
# Build a mapping of client_id -> list of similarities over rounds
client_similarities = {} # {client_id: [sim1, sim2, ...]}
for log in log_data:
aggregation = log.get('aggregation', {})
similarities = aggregation.get('similarities', [])
accepted_clients = aggregation.get('accepted_clients', [])
# Map similarities to client IDs
# The similarities list is ordered by sorted client IDs (from aggregate_updates)
all_client_ids = sorted(set(accepted_clients))
# Ensure we have the same number of similarities as clients
if len(similarities) != len(all_client_ids):
# If mismatch, try to infer from the log structure
# Similarities should match the order of sorted client IDs
print(f" โ ๏ธ Warning: Similarity count ({len(similarities)}) != client count ({len(all_client_ids)}) in round {log.get('round', '?')}")
for i, client_id in enumerate(all_client_ids):
if client_id not in client_similarities:
client_similarities[client_id] = []
if i < len(similarities):
client_similarities[client_id].append(similarities[i])
else:
# Pad with previous value or 0 if no previous value
if len(client_similarities[client_id]) > 0:
client_similarities[client_id].append(client_similarities[client_id][-1])
else:
client_similarities[client_id].append(0.0)
# Separate into benign and attacker
all_ids = sorted(client_similarities.keys())
if attacker_ids is None:
# Infer attacker_ids from num_clients and num_attackers
if num_clients is not None and num_attackers is not None:
attacker_ids_set = set(range(num_clients - num_attackers, num_clients))
else:
# Fallback: use all_ids to infer (assume last clients are attackers)
if num_attackers is not None:
attacker_ids_set = set(all_ids[-num_attackers:]) if len(all_ids) >= num_attackers else set()
else:
# Last resort: assume 2 attackers (old behavior)
print(" โ ๏ธ Warning: Could not infer attacker_ids, assuming last 2 clients are attackers")
attacker_ids_set = set(all_ids[-2:]) if len(all_ids) >= 2 else set()
else:
attacker_ids_set = set(attacker_ids)
benign_clients = [{'id': cid, 'sims': client_similarities[cid]}
for cid in all_ids if cid not in attacker_ids_set]
attacker_clients = [{'id': cid, 'sims': client_similarities[cid]}
for cid in all_ids if cid in attacker_ids_set]
# Collect all similarity values for adaptive y-axis range (before plotting)
all_similarity_values = []
# Process benign clients - align and collect data
aligned_benign_data = []
for client in benign_clients:
sims = client['sims']
# Align similarities with rounds length
if len(sims) < len(rounds):
sims = sims + [sims[-1] if len(sims) > 0 else 0.0] * (len(rounds) - len(sims))
elif len(sims) > len(rounds):
sims = sims[:len(rounds)]
if len(sims) == len(rounds):
all_similarity_values.extend(sims)
aligned_benign_data.append({'id': client['id'], 'sims': sims})
# Process attacker clients - align and collect data
aligned_attacker_data = []
for client in attacker_clients:
sims = client['sims']
if len(sims) < len(rounds):
sims = sims + [sims[-1] if len(sims) > 0 else 0.0] * (len(rounds) - len(sims))
elif len(sims) > len(rounds):
sims = sims[:len(rounds)]
if len(sims) == len(rounds):
all_similarity_values.extend(sims)
aligned_attacker_data.append({'id': client['id'], 'sims': sims})
# Calculate adaptive y-axis range with padding
if all_similarity_values:
y_min = min(all_similarity_values)
y_max = max(all_similarity_values)
y_range = y_max - y_min
# Add 10% padding on both sides
padding = max(y_range * 0.1, 0.05) # At least 0.05 padding
y_min_adjusted = max(0.0, y_min - padding) # Don't go below 0
y_max_adjusted = min(1.0, y_max + padding) # Don't go above 1
# If range is very small, ensure minimum range of 0.2
if y_max_adjusted - y_min_adjusted < 0.2:
center = (y_min + y_max) / 2
y_min_adjusted = max(0.0, center - 0.1)
y_max_adjusted = min(1.0, center + 0.1)
else:
# Fallback to default range if no data
y_min_adjusted = 0.0
y_max_adjusted = 1.0
# Plot benign agents - IEEE style colors (use aligned data)
for i, client_data in enumerate(aligned_benign_data):
sims = client_data['sims']
# Use modulo to cycle through colors and markers if needed
color = IEEE_COLORS['benign'][i % len(IEEE_COLORS['benign'])]
marker = IEEE_MARKERS['benign'][i % len(IEEE_MARKERS['benign'])]
ax.plot(rounds, sims, '-', color=color, linewidth=1.5,
marker=marker, markersize=4, markevery=max(1, len(rounds)//15),
label=f'Agent {client_data["id"]+1}', zorder=2,
markerfacecolor=color, markeredgecolor='white', markeredgewidth=0.5)
# Plot attacker agents - IEEE style red/orange (use aligned data)
for i, client_data in enumerate(aligned_attacker_data):
sims = client_data['sims']
# Use modulo to cycle through colors and markers if needed
color = IEEE_COLORS['attacker'][i % len(IEEE_COLORS['attacker'])]
marker = IEEE_MARKERS['attacker'][i % len(IEEE_MARKERS['attacker'])]
ax.plot(rounds, sims, '-', color=color, linewidth=1.5,
marker=marker, markersize=4, markevery=max(1, len(rounds)//15),
label=f'Attacker {client_data["id"]+1}', zorder=2,
markerfacecolor=color, markeredgecolor='white', markeredgewidth=0.5)
# IEEE-style axes (y-axis range already calculated above)
ax.set_xlabel('Episodes', fontsize=11, fontweight='normal')
ax.set_ylabel('Cosine Similarity', fontsize=11, fontweight='normal')
ax.set_ylim([y_min_adjusted, y_max_adjusted]) # Adaptive y-axis range
ax.set_xlim([1, max(rounds) if rounds else 1])
ax.grid(True, alpha=0.2, linestyle='--', linewidth=0.5)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# IEEE-style legend: place inside plot area, use 'best' location to avoid blocking data
# 'best' automatically finds the best location that minimizes overlap with plot elements
legend = ax.legend(loc='best', frameon=True, fancybox=False, shadow=False,
edgecolor='black', framealpha=1.0, fontsize=9,
ncol=1, columnspacing=0.5)
plt.tight_layout()
if save_path:
plt.savefig(save_path, dpi=600, bbox_inches='tight')
print(f" โ
Saved Figure 4 to: {save_path}")
else:
plt.savefig(self.results_dir / 'figure4_cosine_similarity.png',
dpi=600, bbox_inches='tight')
plt.close()
def plot_figure4_euclidean_distance(self, log_data: List[Dict],
attacker_ids: Optional[List[int]] = None,
save_path: Optional[str] = None,
num_rounds: Optional[int] = None,
num_clients: Optional[int] = None,
num_attackers: Optional[int] = None):
"""
Figure 4: Temporal evolution of Euclidean distance for each LLM agent
from the mean update over communication rounds.
This figure shows how far each client's update is from the average update,
which can help identify outliers (potentially malicious clients).
Args:
log_data: List of round logs
attacker_ids: List of attacker client IDs (if None, will infer from num_clients and num_attackers)
save_path: Path to save the figure
num_rounds: Total number of rounds (for validation)
num_clients: Total number of clients (for inferring attacker_ids if not provided)
num_attackers: Number of attacker clients (for inferring attacker_ids if not provided)
"""
rounds = [log['round'] for log in log_data]
# Validate data length
if num_rounds is not None and len(rounds) != num_rounds:
print(f" โ ๏ธ Warning: Figure 4 - Expected {num_rounds} rounds, got {len(rounds)}")
if len(rounds) < num_rounds:
# Pad missing rounds (distances will be handled in the loop)
expected_rounds = list(range(1, num_rounds + 1))
missing_rounds = [r for r in expected_rounds if r not in rounds]
# Add placeholder logs for missing rounds
if log_data:
last_log = log_data[-1].copy()
for r in missing_rounds:
placeholder_log = last_log.copy()
placeholder_log['round'] = r
placeholder_log['aggregation'] = last_log.get('aggregation', {}).copy()
log_data.append(placeholder_log)
rounds = expected_rounds
print(f" Padded {len(missing_rounds)} missing rounds")
fig, ax = plt.subplots(figsize=(6.5, 5))
# Extract Euclidean distances and client info from aggregation logs
# Build a mapping of client_id -> list of distances over rounds
client_distances = {} # {client_id: [dist1, dist2, ...]}
for log in log_data:
aggregation = log.get('aggregation', {})
euclidean_distances = aggregation.get('euclidean_distances', [])
accepted_clients = aggregation.get('accepted_clients', [])
# Map distances to client IDs
# The euclidean_distances list is ordered by sorted client IDs (from aggregate_updates)
all_client_ids = sorted(set(accepted_clients))
# Ensure we have the same number of distances as clients
if len(euclidean_distances) != len(all_client_ids):
# If mismatch, try to infer from the log structure
# Distances should match the order of sorted client IDs
print(f" โ ๏ธ Warning: Distance count ({len(euclidean_distances)}) != client count ({len(all_client_ids)}) in round {log.get('round', '?')}")
for i, client_id in enumerate(all_client_ids):
if client_id not in client_distances:
client_distances[client_id] = []
if i < len(euclidean_distances):
client_distances[client_id].append(euclidean_distances[i])
else:
# Pad with previous value or 0 if no previous value
if len(client_distances[client_id]) > 0:
client_distances[client_id].append(client_distances[client_id][-1])
else:
client_distances[client_id].append(0.0)
# Separate into benign and attacker
all_ids = sorted(client_distances.keys())
if attacker_ids is None:
# Infer attacker_ids from num_clients and num_attackers
if num_clients is not None and num_attackers is not None:
attacker_ids_set = set(range(num_clients - num_attackers, num_clients))
else:
# Fallback: use all_ids to infer (assume last clients are attackers)
if num_attackers is not None:
attacker_ids_set = set(all_ids[-num_attackers:]) if len(all_ids) >= num_attackers else set()
else:
# Last resort: assume 2 attackers (old behavior)
print(" โ ๏ธ Warning: Could not infer attacker_ids, assuming last 2 clients are attackers")
attacker_ids_set = set(all_ids[-2:]) if len(all_ids) >= 2 else set()
else:
attacker_ids_set = set(attacker_ids)
benign_clients = [{'id': cid, 'dists': client_distances[cid]}
for cid in all_ids if cid not in attacker_ids_set]
attacker_clients = [{'id': cid, 'dists': client_distances[cid]}
for cid in all_ids if cid in attacker_ids_set]
# Collect all distance values for adaptive y-axis range (before plotting)
all_distance_values = []
# Process benign clients - align and collect data
aligned_benign_data = []
for client in benign_clients:
dists = client['dists']
# Align distances with rounds length
if len(dists) < len(rounds):
dists = dists + [dists[-1] if len(dists) > 0 else 0.0] * (len(rounds) - len(dists))
elif len(dists) > len(rounds):
dists = dists[:len(rounds)]
if len(dists) == len(rounds):
all_distance_values.extend(dists)
aligned_benign_data.append({'id': client['id'], 'dists': dists})
# Process attacker clients - align and collect data
aligned_attacker_data = []
for client in attacker_clients:
dists = client['dists']
if len(dists) < len(rounds):
dists = dists + [dists[-1] if len(dists) > 0 else 0.0] * (len(rounds) - len(dists))
elif len(dists) > len(rounds):
dists = dists[:len(rounds)]
if len(dists) == len(rounds):
all_distance_values.extend(dists)
aligned_attacker_data.append({'id': client['id'], 'dists': dists})
# Calculate adaptive y-axis range with padding
if all_distance_values:
y_min = min(all_distance_values)
y_max = max(all_distance_values)
y_range = y_max - y_min
# Add 10% padding on both sides
padding = max(y_range * 0.1, 0.01) # At least 0.01 padding for distances
y_min_adjusted = max(0.0, y_min - padding) # Don't go below 0
y_max_adjusted = y_max + padding
# If range is very small, ensure minimum range
if y_max_adjusted - y_min_adjusted < y_max * 0.1:
center = (y_min + y_max) / 2
range_size = max(y_max * 0.1, 0.01)
y_min_adjusted = max(0.0, center - range_size / 2)
y_max_adjusted = center + range_size / 2
else:
# Fallback to default range if no data
y_min_adjusted = 0.0
y_max_adjusted = 1.0
# Plot benign agents - IEEE style colors (use aligned data)
for i, client_data in enumerate(aligned_benign_data):
dists = client_data['dists']
# Use modulo to cycle through colors and markers if needed
color = IEEE_COLORS['benign'][i % len(IEEE_COLORS['benign'])]
marker = IEEE_MARKERS['benign'][i % len(IEEE_MARKERS['benign'])]
ax.plot(rounds, dists, '-', color=color, linewidth=1.5,
marker=marker, markersize=4, markevery=max(1, len(rounds)//15),
label=f'Agent {client_data["id"]+1}', zorder=2,
markerfacecolor=color, markeredgecolor='white', markeredgewidth=0.5)
# Plot attacker agents - IEEE style red/orange (use aligned data)
for i, client_data in enumerate(aligned_attacker_data):
dists = client_data['dists']
# Use modulo to cycle through colors and markers if needed
color = IEEE_COLORS['attacker'][i % len(IEEE_COLORS['attacker'])]
marker = IEEE_MARKERS['attacker'][i % len(IEEE_MARKERS['attacker'])]
ax.plot(rounds, dists, '-', color=color, linewidth=1.5,
marker=marker, markersize=4, markevery=max(1, len(rounds)//15),
label=f'Attacker {client_data["id"]+1}', zorder=2,
markerfacecolor=color, markeredgecolor='white', markeredgewidth=0.5)
# IEEE-style axes (y-axis range already calculated above)
ax.set_xlabel('Episodes', fontsize=11, fontweight='normal')
ax.set_ylabel('Euclidean Distance', fontsize=11, fontweight='normal')
ax.set_ylim([y_min_adjusted, y_max_adjusted]) # Adaptive y-axis range
ax.set_xlim([1, max(rounds) if rounds else 1])
ax.grid(True, alpha=0.2, linestyle='--', linewidth=0.5)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# IEEE-style legend: place inside plot area, use 'best' location to avoid blocking data
# 'best' automatically finds the best location that minimizes overlap with plot elements
legend = ax.legend(loc='best', frameon=True, fancybox=False, shadow=False,
edgecolor='black', framealpha=1.0, fontsize=9,
ncol=1, columnspacing=0.5)
plt.tight_layout()
if save_path:
plt.savefig(save_path, dpi=600, bbox_inches='tight')
print(f" โ
Saved Figure 4 to: {save_path}")
else:
plt.savefig(self.results_dir / 'figure4_euclidean_distance.png',
dpi=600, bbox_inches='tight')
plt.close()
def plot_figure6_local_accuracy_with_attack(self, local_accuracies: Dict[int, List[float]],
rounds: List[int],
attacker_ids: List[int],
save_path: Optional[str] = None,
num_clients: Optional[int] = None,
num_attackers: Optional[int] = None):
"""
Figure 6: Learning accuracy of local LLM agents under the GRMP attack
over communication rounds.
Args:
local_accuracies: Dict mapping client_id to list of local accuracies per round
rounds: List of round numbers
attacker_ids: List of attacker client IDs
save_path: Path to save the figure
num_clients: Total number of clients (for validation)
num_attackers: Number of attacker clients (for validation)
"""
fig, ax = plt.subplots(figsize=(6.5, 5))
# Separate benign and attacker
benign_accs = {cid: accs for cid, accs in local_accuracies.items()
if cid not in attacker_ids}
attacker_accs = {cid: accs for cid, accs in local_accuracies.items()
if cid in attacker_ids}
# Plot benign agents - IEEE style
# Ensure ALL benign clients are plotted with distinct colors and markers
for i, (client_id, accs) in enumerate(sorted(benign_accs.items())):
if len(accs) < len(rounds):
accs = accs + [accs[-1] if len(accs) > 0 else 0.0] * (len(rounds) - len(accs))
elif len(accs) > len(rounds):
accs = accs[:len(rounds)]
if len(accs) == len(rounds):
# Convert to percentage
accs_pct = [acc * 100 for acc in accs]
# Use modulo to cycle through colors and markers if needed
color = IEEE_COLORS['benign'][i % len(IEEE_COLORS['benign'])]
marker = IEEE_MARKERS['benign'][i % len(IEEE_MARKERS['benign'])]
ax.plot(rounds, accs_pct, '-', color=color, linewidth=1.5,
marker=marker, markersize=4, markevery=max(1, len(rounds)//20),
label=f'Agent {client_id+1}', zorder=2,
markerfacecolor=color, markeredgecolor='white', markeredgewidth=0.5)
else:
print(f" โ ๏ธ Warning: Benign Client {client_id} - accs length ({len(accs)}) != rounds length ({len(rounds)})")
# Plot attacker agents - IEEE style red/orange
# Ensure ALL attackers are plotted with distinct colors and markers
for i, (client_id, accs) in enumerate(sorted(attacker_accs.items())):
if len(accs) < len(rounds):
accs = accs + [accs[-1] if len(accs) > 0 else 0.0] * (len(rounds) - len(accs))
elif len(accs) > len(rounds):
accs = accs[:len(rounds)]
if len(accs) == len(rounds):
# Convert to percentage
accs_pct = [acc * 100 for acc in accs]
# Use modulo to cycle through colors and markers if needed
color = IEEE_COLORS['attacker'][i % len(IEEE_COLORS['attacker'])]
marker = IEEE_MARKERS['attacker'][i % len(IEEE_MARKERS['attacker'])]
ax.plot(rounds, accs_pct, '-', color=color, linewidth=1.5,
marker=marker, markersize=4, markevery=max(1, len(rounds)//20),
label=f'Attacker {client_id+1}', zorder=2,
markerfacecolor=color, markeredgecolor='white', markeredgewidth=0.5)
else:
print(f" โ ๏ธ Warning: Attacker Client {client_id} - accs length ({len(accs)}) != rounds length ({len(rounds)})")
# Calculate dynamic y-axis range based on actual data (in percentage)
all_acc_values = []
for accs in local_accuracies.values():
if accs:
all_acc_values.extend([acc * 100 for acc in accs])
if all_acc_values:
min_acc = min(all_acc_values)
max_acc = max(all_acc_values)
y_min = max(0.0, min_acc - 2)
y_max = min(100.0, max_acc + 2)
if y_max - y_min < 10:
center = (y_min + y_max) / 2
y_min = max(0.0, center - 5)
y_max = min(100.0, center + 5)
else:
y_min, y_max = 0.0, 100.0
# IEEE-style axes
ax.set_xlabel('Episodes', fontsize=11, fontweight='normal')
ax.set_ylabel('Local Testing Accuracy (%)', fontsize=11, fontweight='normal')
ax.set_ylim([y_min, y_max])
ax.set_xlim([1, max(rounds)])
ax.grid(True, alpha=0.2, linestyle='--', linewidth=0.5)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# IEEE-style legend: place inside plot area, use 'best' location to avoid blocking data
# 'best' automatically finds the best location that minimizes overlap with plot elements
legend = ax.legend(loc='best', frameon=True, fancybox=False, shadow=False,
edgecolor='black', framealpha=1.0, fontsize=9,
ncol=1, columnspacing=0.5)
plt.tight_layout()
if save_path:
plt.savefig(save_path, dpi=600, bbox_inches='tight')
print(f" โ
Saved Figure 6 to: {save_path}")
else:
plt.savefig(self.results_dir / 'figure6_local_accuracy_with_attack.png',
dpi=600, bbox_inches='tight')
plt.close()
def plot_global_loss(self, log_data: List[Dict], save_path: Optional[str] = None, num_rounds: Optional[int] = None):
"""
Plot global loss over communication rounds.
Args:
log_data: List of round logs from server
save_path: Path to save the figure
num_rounds: Total number of rounds (for validation)
"""
rounds = [log['round'] for log in log_data]
global_losses = [log.get('global_loss', 0.0) for log in log_data]
# Ensure all arrays have the same length
min_len = min(len(rounds), len(global_losses))
if min_len == 0:
print(" โ ๏ธ Warning: Global Loss - No data to plot")
return
# Truncate all arrays to the same length
rounds = rounds[:min_len]
global_losses = global_losses[:min_len]
# Validate/pad
if num_rounds is not None and len(rounds) != num_rounds:
print(f" โ ๏ธ Warning: Global Loss - Expected {num_rounds} rounds, got {len(rounds)}")
expected_rounds = list(range(1, num_rounds + 1))
if len(rounds) < num_rounds:
missing = [r for r in expected_rounds if r not in rounds]
for _ in missing:
rounds.append(expected_rounds[len(rounds)])
global_losses.append(global_losses[-1] if global_losses else 0.0)
print(f" Padded {len(missing)} missing rounds")
fig, ax = plt.subplots(figsize=(6.5, 5))
# IEEE-style: clean, professional appearance
ax.set_xlabel('Episodes', fontsize=11, fontweight='normal')
ax.set_ylabel('Global Loss', fontsize=11, fontweight='normal')
# Plot loss line - IEEE style: solid line, clear marker
ax.plot(rounds, global_losses, '-', color=IEEE_COLORS['global'],
linewidth=2, marker='o', markersize=4, markevery=max(1, len(rounds)//20),
label='Global Loss', zorder=3, markerfacecolor=IEEE_COLORS['global'],
markeredgecolor='white', markeredgewidth=0.5)
# IEEE-style: subtle grid, clean axes
if global_losses:
y_min = max(0.0, min(global_losses) * 0.9)
y_max = max(global_losses) * 1.1
ax.set_ylim([y_min, y_max])
else:
ax.set_ylim([0.0, 1.0])
ax.set_xlim([1, max(rounds) if rounds else 1])
ax.grid(True, alpha=0.2, linestyle='--', linewidth=0.5)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# IEEE-style legend: clear, professional
ax.legend(loc='best', frameon=True, fancybox=False, shadow=False,
edgecolor='black', framealpha=1.0, fontsize=9)
# No title for IEEE style (usually added in LaTeX)
plt.tight_layout()
out_path = save_path or (self.results_dir / 'global_loss.png')
plt.savefig(out_path, dpi=600, bbox_inches='tight')
print(f" โ
Saved Global Loss figure to: {out_path}")
plt.close()
def generate_all_figures(self, server_log_data: List[Dict],
local_accuracies: Optional[Dict[int, List[float]]] = None,
attacker_ids: Optional[List[int]] = None,
experiment_name: str = "experiment",
num_rounds: Optional[int] = None,
attack_start_round: Optional[int] = None,
num_clients: Optional[int] = None,
num_attackers: Optional[int] = None):
"""
Generate all figures from the paper.
Args:
server_log_data: List of round logs from server (attack experiment)
local_accuracies: Dict mapping client_id to list of local accuracies per round (attack experiment)
attacker_ids: List of attacker client IDs
experiment_name: Name for output files
num_rounds: Total number of rounds (from config) - ensures all figures use correct round count
attack_start_round: Round when attack phase starts
num_clients: Total number of clients (from config) - used to correctly identify all clients
num_attackers: Number of attacker clients (from config) - used to correctly identify attackers
"""
print("\n" + "=" * 60)
print("Generating Visualization Figures")
print("=" * 60)
# Extract rounds from log_data, but ensure alignment with num_rounds
rounds = [log['round'] for log in server_log_data]
# Validate and align rounds with num_rounds if provided
if num_rounds is not None:
expected_rounds = list(range(1, num_rounds + 1))
if len(rounds) != num_rounds:
print(f" โ ๏ธ Warning: log_data has {len(rounds)} rounds, but num_rounds={num_rounds}")
print(f" Expected rounds: 1 to {num_rounds}")
if len(rounds) > 0:
print(f" Actual rounds in log_data: {rounds[:min(5, len(rounds))]}...{rounds[-min(5, len(rounds)):] if len(rounds) > 10 else rounds}")
# Use expected rounds if log_data is incomplete
if len(rounds) < num_rounds:
print(f" Using expected rounds (1 to {num_rounds}) for all figures")
rounds = expected_rounds
else:
# If log_data has more rounds, truncate to num_rounds
print(f" Truncating to first {num_rounds} rounds")
rounds = rounds[:num_rounds]
# Create a copy to avoid modifying original data
server_log_data = server_log_data[:num_rounds]
# Figure 1: Global Accuracy Stability (from attack experiment)
print("\n๐ Generating Figure 1: Global Accuracy Stability...")
self.plot_figure3_global_accuracy_stability(
server_log_data,
save_path=self.results_dir / f'{experiment_name}_figure1.png',
num_rounds=num_rounds
)
# Figure 2: Cosine Similarity (from attack experiment)
print("๐ Generating Figure 2: Cosine Similarity...")
self.plot_figure4_cosine_similarity(
server_log_data,
attacker_ids=attacker_ids,
save_path=self.results_dir / f'{experiment_name}_figure2.png',
num_rounds=num_rounds,
num_clients=num_clients,
num_attackers=num_attackers
)
# Figure 3: Local Accuracy (With Attack)
if local_accuracies is not None:
print("๐ Generating Figure 3: Local Accuracy (With Attack)...")
if attacker_ids is None:
attacker_ids = []
# Ensure local_accuracies align with rounds
aligned_local_accs = {}
for cid, accs in local_accuracies.items():
if len(accs) < len(rounds):
# Pad with last value if incomplete
accs = accs + [accs[-1] if len(accs) > 0 else 0.0] * (len(rounds) - len(accs))
elif len(accs) > len(rounds):
# Truncate if too long
accs = accs[:len(rounds)]
aligned_local_accs[cid] = accs
self.plot_figure6_local_accuracy_with_attack(
aligned_local_accs, rounds, attacker_ids,
save_path=self.results_dir / f'{experiment_name}_figure3.png',
num_clients=num_clients,
num_attackers=num_attackers
)
else:
print(" โ ๏ธ Figure 3 skipped: Local accuracies not available.")
print(" Local accuracies are automatically tracked during training.")
# Figure 4: Euclidean Distance (from attack experiment)
print("๐ Generating Figure 4: Euclidean Distance...")
self.plot_figure4_euclidean_distance(
server_log_data,
attacker_ids=attacker_ids,
save_path=self.results_dir / f'{experiment_name}_figure4.png',
num_rounds=num_rounds,
num_clients=num_clients,
num_attackers=num_attackers
)
# Figure 5: Global Loss (new figure)
print("๐ Generating Figure 5: Global Loss...")
self.plot_global_loss(
server_log_data,
save_path=self.results_dir / f'{experiment_name}_figure5.png',
num_rounds=num_rounds
)
print("\nโ
All available figures generated successfully!")
print(f" Output directory: {self.results_dir}")
# --------------------------------------------------------------------------- #
# HMP-GAE dedicated figures (V1: trust evolution + attack-vs-defense bar) #
# --------------------------------------------------------------------------- #
def plot_trust_weight_evolution(server_log_data, attacker_ids, save_path,
num_clients=None, title_suffix=""):
"""
Fig C: per-client trust weight alpha_i over rounds.
Benign clients are drawn in blue-ish IEEE palette; attacker clients in red.
If ``trust_weights`` is missing from a round (e.g. pre-V1 run) that round
is skipped for plotting.
"""
rounds = []
weights_by_client: Dict[int, List[float]] = {}
for log in server_log_data:
rnd = log.get('round')
agg = log.get('aggregation', {})
tw = agg.get('trust_weights', None) if isinstance(agg, dict) else None
accepted = agg.get('accepted_clients', []) if isinstance(agg, dict) else []
if tw is None or not accepted or len(tw) != len(accepted):
continue
rounds.append(int(rnd))
for cid, w in zip(accepted, tw):
weights_by_client.setdefault(int(cid), []).append(float(w))
if not rounds:
print(" โ ๏ธ plot_trust_weight_evolution: no trust_weights in log; skipping.")
return
# Ensure every client's list has same length as rounds (pad with last val)
n_rounds = len(rounds)
for cid, w in list(weights_by_client.items()):
if len(w) < n_rounds:
w = w + [w[-1] if w else 0.0] * (n_rounds - len(w))
weights_by_client[cid] = w[:n_rounds]
all_cids = sorted(weights_by_client.keys())
N = num_clients if num_clients is not None else len(all_cids)
attackers = set(int(a) for a in (attacker_ids or []))
uniform = 1.0 / max(1, N)
fig, ax = plt.subplots(figsize=(6.5, 4.0))
benign_colors = IEEE_COLORS['benign']
attacker_colors = IEEE_COLORS['attacker']
benign_markers = IEEE_MARKERS['benign']
attacker_markers = IEEE_MARKERS['attacker']
bi, ai = 0, 0
for cid in all_cids:
ys = weights_by_client[cid]
if cid in attackers:
ax.plot(rounds, ys,
color=attacker_colors[ai % len(attacker_colors)],
marker=attacker_markers[ai % len(attacker_markers)],
markersize=5, linewidth=1.6,
label=f'Attacker {cid}')
ai += 1
else:
ax.plot(rounds, ys,
color=benign_colors[bi % len(benign_colors)],
marker=benign_markers[bi % len(benign_markers)],
markersize=4, linewidth=1.2,
label=f'Benign {cid}')
bi += 1
ax.axhline(uniform, linestyle='--', linewidth=1.0, color='gray',
label=f'Uniform 1/N={uniform:.3f}')
ax.set_xlabel('Communication Round')
ax.set_ylabel(r'Trust Weight $\alpha_i$')
title = 'HMP-GAE Trust Weight Evolution'
if title_suffix:
title += f' ({title_suffix})'
ax.set_title(title)
ax.set_ylim(-0.02, max(0.5, ax.get_ylim()[1]))
ax.grid(True, alpha=0.3)
ax.legend(loc='center left', bbox_to_anchor=(1.01, 0.5),
fontsize=8, ncol=1, frameon=True)
fig.tight_layout()
save_path = Path(save_path)
save_path.parent.mkdir(parents=True, exist_ok=True)
fig.savefig(save_path, bbox_inches='tight', dpi=300)
pdf_path = save_path.with_suffix('.pdf')
fig.savefig(pdf_path, bbox_inches='tight')
plt.close(fig)
print(f" โ
Trust-weight evolution saved to: {save_path} (+ .pdf)")
def plot_defense_acc_bar(results_by_defense: Dict[str, Dict[str, Any]],
save_path,
metric_key: str = 'final_clean_acc',
attack_label: str = 'Hallucination Attack',
include_no_attack: bool = True):
"""
Fig A: final clean accuracy grouped by defense method.
Args:
results_by_defense: mapping label -> dict with at least metric_key.
Example:
{
'No Attack': {'final_clean_acc': 0.84, 'acc_std': 0.01},
'Hallu + FedAvg': {'final_clean_acc': 0.72, 'acc_std': 0.02},
'Hallu + HMP-GAE': {'final_clean_acc': 0.82, 'acc_std': 0.01},
}
save_path: output path; PDF twin is saved alongside.
metric_key: field to read from each value dict.
attack_label: descriptor for x-label context.
"""
labels = list(results_by_defense.keys())
values = [float(results_by_defense[k].get(metric_key, 0.0)) for k in labels]
errs = [float(results_by_defense[k].get('acc_std', 0.0)) for k in labels]
fig, ax = plt.subplots(figsize=(6.0, 4.0))
colors = []
for lbl in labels:
l = lbl.lower()
if 'hmp' in l:
colors.append('#0B6E4F') # deep green for ours
elif 'fedavg' in l or 'no defense' in l:
colors.append('#C0392B') # red for baseline under attack
elif 'no attack' in l or 'clean' in l:
colors.append('#2E75B6') # blue for clean
else:
colors.append('#7F7F7F')
xs = np.arange(len(labels))
bars = ax.bar(xs, values, yerr=errs if any(e > 0 for e in errs) else None,
capsize=3, color=colors, edgecolor='black', linewidth=0.8)
for b, v in zip(bars, values):
ax.text(b.get_x() + b.get_width() / 2, v + 0.005,
f'{v:.3f}', ha='center', va='bottom', fontsize=9)
ax.set_xticks(xs)
ax.set_xticklabels(labels, rotation=15, ha='right')
ax.set_ylabel('Final Clean Accuracy')
ax.set_title(f'Defense Effectiveness under {attack_label}')
ax.set_ylim(0, max(1.0, max(values) * 1.15))
ax.grid(True, axis='y', alpha=0.3)
fig.tight_layout()
save_path = Path(save_path)
save_path.parent.mkdir(parents=True, exist_ok=True)
fig.savefig(save_path, bbox_inches='tight', dpi=300)
pdf_path = save_path.with_suffix('.pdf')
fig.savefig(pdf_path, bbox_inches='tight')
plt.close(fig)
print(f" โ
Defense accuracy bar saved to: {save_path} (+ .pdf)")
def summarize_run_for_fig_a(results_json_path, default_label='run') -> Dict[str, Any]:
"""
Read a single `<exp>_results.json` and extract the final clean accuracy
plus a couple of useful numbers for Fig A.
"""
p = Path(results_json_path)
with open(p, 'r', encoding='utf-8') as f:
data = json.load(f)
pm = data.get('progressive_metrics', {})
accs = pm.get('clean_acc', [])
final_acc = float(accs[-1]) if accs else 0.0
best_acc = float(max(accs)) if accs else 0.0
return {
'final_clean_acc': final_acc,
'best_clean_acc': best_acc,
'label': default_label,
'acc_std': 0.0,
}
# --------------------------------------------------------------------------- #
# V2 M7 hallucination-eval plotting (CSE + PPL) #
# --------------------------------------------------------------------------- #
def summarize_run_multi_metric(results_json_path,
ppl_json_path=None,
default_label='run') -> Dict[str, Any]:
"""
Extended single-run summary including V2 M7 metrics.
Reads `<exp>_results.json` for accuracy and per-round CSE, and optionally
the separate `<exp>_eval_ppl.json` produced by evaluation_hallucination.
Returns a dict with final_acc / final_cse / mean_cse / ppl fields.
"""
p = Path(results_json_path)
summary: Dict[str, Any] = {
'label': default_label,
'final_clean_acc': 0.0,
'best_clean_acc': 0.0,
'final_cse': None,
'mean_cse': None,
'ppl': None,
'acc_std': 0.0,
'cse_std': 0.0,
'ppl_std': 0.0,
}
if not p.is_file():
return summary
with open(p, 'r', encoding='utf-8') as f:
data = json.load(f)
pm = data.get('progressive_metrics', {})
accs = pm.get('clean_acc', [])
if accs:
summary['final_clean_acc'] = float(accs[-1])
summary['best_clean_acc'] = float(max(accs))
cse = pm.get('cse', [])
cse_nums = [float(x) for x in cse if isinstance(x, (int, float)) and not isinstance(x, bool)]
if cse_nums:
summary['final_cse'] = float(cse_nums[-1])
summary['mean_cse'] = float(sum(cse_nums) / len(cse_nums))
if ppl_json_path is not None:
q = Path(ppl_json_path)
if q.is_file():
with open(q, 'r', encoding='utf-8') as f:
pdata = json.load(f)
if not pdata.get('skipped'):
summary['ppl'] = float(pdata.get('ppl_mean')) if pdata.get('ppl_mean') is not None else None
return summary
def plot_cse_evolution(runs: Dict[str, Any], save_path,
title_suffix: str = '',
x_attack_start: Optional[int] = None):
"""
Fig F: per-round Classification Semantic Entropy curves across configurations.
Args:
runs: dict label -> {'rounds': [...], 'cse': [...]} or a result-json path.
When a value is a str/Path, this function reads the JSON and pulls
progressive_metrics.rounds + .cse automatically.
save_path: output path (PDF twin saved alongside).
title_suffix: appended to the figure title.
x_attack_start: if set, draws a dashed vertical line at that round to
mark when the attacker activates.
"""
resolved: Dict[str, Dict[str, List[float]]] = {}
for label, val in runs.items():
if isinstance(val, (str, Path)):
p = Path(val)
if not p.is_file():
print(f" [plot_cse_evolution] skip {label!r}: {p} not found")
continue
with open(p, 'r', encoding='utf-8') as f:
d = json.load(f)
pm = d.get('progressive_metrics', {})
rs = list(pm.get('rounds', []))
cs = list(pm.get('cse', []))
pairs = [(r, c) for r, c in zip(rs, cs)
if c is not None and isinstance(c, (int, float)) and not isinstance(c, bool)]
resolved[label] = {
'rounds': [p[0] for p in pairs],
'cse': [float(p[1]) for p in pairs],
}
elif isinstance(val, dict):
rs = list(val.get('rounds', []))
cs = list(val.get('cse', []))
pairs = [(r, c) for r, c in zip(rs, cs)
if c is not None and isinstance(c, (int, float)) and not isinstance(c, bool)]
resolved[label] = {
'rounds': [p[0] for p in pairs],
'cse': [float(p[1]) for p in pairs],
}
# Drop empty runs.
resolved = {k: v for k, v in resolved.items() if v.get('cse')}
if not resolved:
print(" [plot_cse_evolution] no usable runs; skipping")
return
fig, ax = plt.subplots(figsize=(6.5, 4.0))
style_map = {
'no attack': {'color': '#2E75B6', 'linestyle': '--', 'marker': 'o'},
'fedavg': {'color': '#C0392B', 'linestyle': '-', 'marker': 's'},
'hmp-gae': {'color': '#0B6E4F', 'linestyle': '-', 'marker': '^'},
}
for label, series in resolved.items():
key = 'no attack' if 'no attack' in label.lower() else (
'hmp-gae' if 'hmp' in label.lower() else 'fedavg'
)
style = style_map.get(key, {'color': '#7F7F7F', 'linestyle': '-', 'marker': 'x'})
ax.plot(series['rounds'], series['cse'],
label=label, linewidth=1.6, markersize=5,
**style)
if x_attack_start is not None:
ax.axvline(x_attack_start, linestyle=':', linewidth=1.0, color='gray',
label=f'attack start ({x_attack_start})')
ax.set_xlabel('Communication Round')
ax.set_ylabel(r'Classification Semantic Entropy $H(p(y|x))$')
title = 'Semantic Entropy Evolution'
if title_suffix:
title += f' ({title_suffix})'
ax.set_title(title)
ax.grid(True, alpha=0.3)
ax.legend(loc='best', fontsize=9)
fig.tight_layout()
save_path = Path(save_path)
save_path.parent.mkdir(parents=True, exist_ok=True)
fig.savefig(save_path, bbox_inches='tight', dpi=300)
fig.savefig(save_path.with_suffix('.pdf'), bbox_inches='tight')
plt.close(fig)
print(f" CSE evolution saved to: {save_path} (+ .pdf)")
def plot_hallucination_metrics_grouped_bar(
summaries_by_defense: Dict[str, Dict[str, Any]],
save_path,
attack_label: str = 'Hallucination Attack',
):
"""
Fig E: three-panel bar chart (Accuracy / CSE / PPL) comparing defenses.
Args:
summaries_by_defense: dict label -> summary from summarize_run_multi_metric.
Expected fields per summary: final_clean_acc, final_cse (or mean_cse),
ppl, and optional _std counterparts.
save_path: output path (PDF twin saved alongside).
"""
labels = list(summaries_by_defense.keys())
if not labels:
print(" [plot_hallucination_metrics_grouped_bar] no labels; skipping")
return
def _field(label: str, key: str, default=None):
return summaries_by_defense[label].get(key, default)
accs = [float(_field(k, 'final_clean_acc', 0.0)) for k in labels]
cses = [float(_field(k, 'mean_cse') if _field(k, 'mean_cse') is not None
else _field(k, 'final_cse', 0.0) or 0.0) for k in labels]
# Skip CSE bar when everything is zero/None; still plot accuracy + PPL.
ppls_raw = [_field(k, 'ppl') for k in labels]
ppls = [float(v) if v is not None else float('nan') for v in ppls_raw]
acc_stds = [float(_field(k, 'acc_std', 0.0)) for k in labels]
cse_stds = [float(_field(k, 'cse_std', 0.0)) for k in labels]
ppl_stds = [float(_field(k, 'ppl_std', 0.0)) for k in labels]
def _color(lbl: str) -> str:
l = lbl.lower()
if 'hmp' in l:
return '#0B6E4F'
if 'no attack' in l or 'clean' in l:
return '#2E75B6'
if 'fedavg' in l:
return '#C0392B'
return '#7F7F7F'
colors = [_color(k) for k in labels]
fig, axes = plt.subplots(1, 3, figsize=(11.5, 4.0))
xs = np.arange(len(labels))
# Panel 1: accuracy (higher better)
axes[0].bar(xs, accs,
yerr=acc_stds if any(s > 0 for s in acc_stds) else None,
capsize=3, color=colors, edgecolor='black', linewidth=0.8)
for x, v in zip(xs, accs):
axes[0].text(x, v + 0.005, f'{v:.3f}', ha='center', va='bottom', fontsize=9)
axes[0].set_xticks(xs); axes[0].set_xticklabels(labels, rotation=15, ha='right')
axes[0].set_ylabel('Accuracy')
axes[0].set_title(r'Task Accuracy $\uparrow$')
axes[0].set_ylim(0, max(1.0, max(accs) * 1.15))
axes[0].grid(True, axis='y', alpha=0.3)
# Panel 2: CSE (lower better)
axes[1].bar(xs, cses,
yerr=cse_stds if any(s > 0 for s in cse_stds) else None,
capsize=3, color=colors, edgecolor='black', linewidth=0.8)
for x, v in zip(xs, cses):
axes[1].text(x, v * 1.01, f'{v:.3f}', ha='center', va='bottom', fontsize=9)
axes[1].set_xticks(xs); axes[1].set_xticklabels(labels, rotation=15, ha='right')
axes[1].set_ylabel('Mean CSE')
axes[1].set_title(r'Classification Semantic Entropy $\downarrow$')
axes[1].set_ylim(0, max(1e-6, max(cses)) * 1.25)
axes[1].grid(True, axis='y', alpha=0.3)
# Panel 3: PPL (lower better). If everything is NaN (encoder-only model),
# display a message.
if all(math.isnan(p) for p in ppls):
axes[2].text(0.5, 0.5, 'PPL unavailable\n(encoder-only backbone)',
ha='center', va='center', transform=axes[2].transAxes,
fontsize=10, color='#7F7F7F')
axes[2].set_xticks([]); axes[2].set_yticks([])
axes[2].set_title(r'Perplexity $\downarrow$')
else:
safe_ppls = [0.0 if math.isnan(p) else p for p in ppls]
axes[2].bar(xs, safe_ppls,
yerr=ppl_stds if any(s > 0 for s in ppl_stds) else None,
capsize=3, color=colors, edgecolor='black', linewidth=0.8)
for x, v in zip(xs, ppls):
if not math.isnan(v):
axes[2].text(x, v * 1.01, f'{v:.1f}', ha='center', va='bottom', fontsize=9)
axes[2].set_xticks(xs); axes[2].set_xticklabels(labels, rotation=15, ha='right')
axes[2].set_ylabel('Perplexity')
axes[2].set_title(r'Perplexity $\downarrow$')
axes[2].set_ylim(0, max(1e-6, max(safe_ppls)) * 1.25)
axes[2].grid(True, axis='y', alpha=0.3)
fig.suptitle(f'Hallucination-Resilience Metrics under {attack_label}', y=1.02, fontsize=12)
fig.tight_layout()
save_path = Path(save_path)
save_path.parent.mkdir(parents=True, exist_ok=True)
fig.savefig(save_path, bbox_inches='tight', dpi=300)
fig.savefig(save_path.with_suffix('.pdf'), bbox_inches='tight')
plt.close(fig)
print(f" Hallucination-metrics grouped bar saved to: {save_path} (+ .pdf)")
|