Skip to content

Instantly share code, notes, and snippets.

View poxyu's full-sized avatar

Andrei Spiridonov poxyu

  • ods.ai
  • Barcelona
View GitHub Profile
import torch
from collections import OrderedDict
from typing import List
checkpoints_weights_paths: List[str] = ... # sorted in descending order by score
model: torch.nn.Module = ...
def average_weights(state_dicts: List[dict]):
everage_dict = OrderedDict()