1. 24 Dec, 2022 27 commits
  2. 21 Dec, 2022 2 commits
  3. 20 Dec, 2022 1 commit
  4. 19 Dec, 2022 1 commit
  5. 18 Dec, 2022 5 commits
  6. 17 Dec, 2022 4 commits
    • timntorres's avatar
      Add upscaler name as a suffix. · a26fe850
      timntorres authored
      a26fe850
    • brkirch's avatar
      Add attributes used by MPS · cca16373
      brkirch authored
      cca16373
    • brkirch's avatar
      Add numpy fix for MPS on PyTorch 1.12.1 · 16b4509f
      brkirch authored
      When saving training results with torch.save(), an exception is thrown:
      "RuntimeError: Can't call numpy() on Tensor that requires grad. Use tensor.detach().numpy() instead."
      
      So for MPS, check if Tensor.requires_grad and detach() if necessary.
      16b4509f
    • MMaker's avatar
      fix: Modify font size when unable to fit in plot · b7c478c3
      MMaker authored
      This prevents scenarios where text without line breaks will start overlapping with each other when generating X/Y plots. This is most evident when generating X/Y plots with checkpoints, as most don't contain spaces and sometimes include extra information such as the epoch, making it extra long.
      b7c478c3