diff options
author | slaren <slarengh@gmail.com> | 2024-04-10 15:23:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-10 15:23:12 +0200 |
commit | 65c64dc36f9bca5b3f100614cdd02bf12d6b3e49 (patch) | |
tree | 5505f36478d4458c4e18c79b0575d90af1d92eb0 | |
parent | 67fac4b95fcccfda8ab965e9ba4992a9ddf3a25f (diff) |
convert.py : add consolidated.safetensors for mixtral 8x22b (#6587)
-rwxr-xr-x | convert.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1350,7 +1350,7 @@ def load_some_model(path: Path) -> ModelPlus: # Be extra-friendly and accept either a file or a directory: if path.is_dir(): # Check if it's a set of safetensors files first - globs = ["model-00001-of-*.safetensors", "model.safetensors"] + globs = ["model-00001-of-*.safetensors", "model.safetensors", "consolidated.safetensors"] files = [file for glob in globs for file in path.glob(glob)] if not files: # Try the PyTorch patterns too, with lower priority |