Edit model card

Mixtral-8x22B Original

The original weights for Mixtral 8x22B.

These weights are unconverted. For converted weights, see mistral-community/Mixtral-8x22B-v0.1.

Joining Files

(Untested) script to join the files back together (run this where you downloaded the files):

import os
from tqdm import tqdm
print('Opening files...')
files = os.listdir('.')
files = [file for file in files if file.startswith('consolidated.safetensors.')]
files_sorted = sorted(files, key=lambda x: int(x.split('.')[-1]))
output_file = 'consolidated.safetensors'
progress_bar = tqdm(total=len(files_sorted), desc='Joining Files')
with open(os.path.join(directory, output_file), 'wb') as output:
    for file in files_sorted:
        with open(os.path.join(directory, file), 'rb') as input_file:
            output.write(input_file.read())
        progress_bar.update(1)
progress_bar.close()
print('Done!')

It may take a while.

Conversion to HF

It's in the Transformers repo.

License

Confirmed Apache https://x.com/arthurmensch/status/1778308399144333411

Downloads last month
0
Unable to determine this model's library. Check the docs .