1. 27 Nov, 2022 19 commits
  2. 26 Nov, 2022 8 commits
  3. 25 Nov, 2022 1 commit
  4. 23 Nov, 2022 4 commits
  5. 22 Nov, 2022 6 commits
  6. 21 Nov, 2022 2 commits
    • Nicolas Patry's avatar
      Supporting `*.safetensors` format. · 0efffbb4
      Nicolas Patry authored
      If a model file exists with extension `.safetensors` then we can load it
      more safely than with PyTorch weights.
      0efffbb4
    • brkirch's avatar
      Add fixes for PyTorch 1.12.1 · e247b740
      brkirch authored
      Fix typo "MasOS" -> "macOS"
      
      If MPS is available and PyTorch is an earlier version than 1.13:
      * Monkey patch torch.Tensor.to to ensure all tensors sent to MPS are contiguous
      * Monkey patch torch.nn.functional.layer_norm to ensure input tensor is contiguous (required for this program to work with MPS on unmodified PyTorch 1.12.1)
      e247b740