| """ |
| Utilities for loading policy checkpoints with automatic architecture detection. |
| © 2025 The MITRE Corporation, All Rights Reserved |
| """ |
|
|
| import torch |
| from typing import Dict, Optional |
| from metaqctrl.meta_rl.policy import PulsePolicy |
|
|
|
|
| def infer_policy_architecture_from_checkpoint( |
| checkpoint_path: str, |
| config: Dict, |
| verbose: bool = True |
| ) -> Dict: |
| """ |
| Infer the policy architecture from a checkpoint file. |
| |
| This handles cases where the checkpoint was saved with different architecture |
| parameters than the current config (e.g., different n_hidden_layers). |
| |
| Args: |
| checkpoint_path: Path to the checkpoint file |
| config: Configuration dictionary (used for n_segments, n_controls) |
| verbose: Whether to print architecture info |
| |
| Returns: |
| arch_config: Dictionary with inferred architecture parameters |
| """ |
| checkpoint = torch.load(checkpoint_path, map_location='cpu', weights_only=False) |
|
|
| if isinstance(checkpoint, dict) and 'policy_state_dict' in checkpoint: |
| state_dict = checkpoint['policy_state_dict'] |
| elif isinstance(checkpoint, dict) and 'model_state_dict' in checkpoint: |
| state_dict = checkpoint['model_state_dict'] |
| else: |
| state_dict = checkpoint |
|
|
| max_layer_idx = max([ |
| int(key.split('.')[1]) |
| for key in state_dict.keys() |
| if key.startswith('network.') and '.weight' in key |
| ]) |
|
|
|
|
| input_layer_out = state_dict['network.0.weight'].shape[0] |
| output_layer_in = state_dict[f'network.{max_layer_idx}.weight'].shape[1] |
| output_dim = state_dict[f'network.{max_layer_idx}.weight'].shape[0] |
|
|
| |
| n_hidden_layers = (max_layer_idx - 2) // 2 |
|
|
| |
| n_segments = config['n_segments'] |
| n_controls = config['n_controls'] |
| expected_output_dim = n_segments * n_controls |
|
|
| if output_dim != expected_output_dim and verbose: |
| print(f"WARNING: Checkpoint output_dim ({output_dim}) doesn't match expected ({expected_output_dim})") |
| print(f" This might indicate different n_segments or n_controls in checkpoint") |
|
|
| arch_config = { |
| 'task_feature_dim': config.get('task_feature_dim', 3), |
| 'hidden_dim': input_layer_out, |
| 'n_hidden_layers': n_hidden_layers, |
| 'n_segments': config['n_segments'], |
| 'n_controls': config['n_controls'] |
| } |
|
|
| if verbose: |
| print(f"Inferred architecture from checkpoint:") |
| print(f" hidden_dim: {arch_config['hidden_dim']}") |
| print(f" n_hidden_layers: {arch_config['n_hidden_layers']}") |
| print(f" output_dim: {output_dim} (n_segments={n_segments} × n_controls={n_controls})") |
|
|
| return arch_config |
|
|
|
|
| def load_policy_from_checkpoint( |
| checkpoint_path: str, |
| config: Dict, |
| device: torch.device = torch.device('cpu'), |
| eval_mode: bool = True, |
| verbose: bool = True |
| ) -> PulsePolicy: |
| """ |
| Load a PulsePolicy from checkpoint with automatic architecture detection. |
| |
| Args: |
| checkpoint_path: Path to the checkpoint file |
| config: Configuration dictionary |
| device: Device to load the model on |
| eval_mode: Whether to set the policy to eval mode |
| verbose: Whether to print loading info |
| |
| Returns: |
| Loaded PulsePolicy |
| """ |
| |
| arch_config = infer_policy_architecture_from_checkpoint( |
| checkpoint_path, config, verbose=verbose |
| ) |
|
|
| policy = PulsePolicy( |
| task_feature_dim=arch_config['task_feature_dim'], |
| hidden_dim=arch_config['hidden_dim'], |
| n_hidden_layers=arch_config['n_hidden_layers'], |
| n_segments=arch_config['n_segments'], |
| n_controls=arch_config['n_controls'] |
| ).to(device) |
|
|
| |
| checkpoint = torch.load(checkpoint_path, map_location=device, weights_only=False) |
|
|
| |
| if isinstance(checkpoint, dict) and 'policy_state_dict' in checkpoint: |
| state_dict = checkpoint['policy_state_dict'] |
| elif isinstance(checkpoint, dict) and 'model_state_dict' in checkpoint: |
| state_dict = checkpoint['model_state_dict'] |
| else: |
| state_dict = checkpoint |
|
|
| |
| policy.load_state_dict(state_dict) |
|
|
| if eval_mode: |
| policy.eval() |
|
|
| if verbose: |
| print(f"Successfully loaded policy from {checkpoint_path}") |
|
|
| return policy |
|
|