Merge LLM weights files that are split into multiple parts
Project description
PyTorch Merge
This repository contains a script, py_merge.py, that can be used to merge two PyTorch model .bin files into a single model file. This can be useful when you need to combine the weights of two models that have the same architecture and are compatible. The script averages the parameter values of the models for keys that exist in both models.
Prerequisites
Before using this script, make sure you have the following Python packages installed:
- PyTorch
- Transformers
You can install them using pip:
pip install pytorch_merge
This will automatically install the dependencies (torch
and transformers
).
Usage
Open a terminal, and type:
pytorch_merge --help
To get the instructions on how to use it.
This tool requires 3 arguments:
--config config.json
-- The configuration file for the model architecture you are working with.--bin model1.bin model2.bin model3.bin
-- All the model’s weights .bin files you want to merge. You can merge weights files of one multiparts model, or weights from different models, in which case weights will be averaged. You can specify as many files as you want, they will be merged one after the others in a loop.--output merged_model.bin
-- Where to save the output merged model.
For example:
pytorch_merge -c config.json -b model1.bin model2.bin -o merged_model.bin
You can now use the merged merged_model.bin file with your model architecture.
Note: Merging models may not always produce the desired results, especially if the models have different architectures or were trained on different data.
Use this script only when you are sure that the models are compatible.
License
This tool was made by Donalda Feith and is licensed under GNU General Public License v3 or later (GPLv3+).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytorch_merge-0.1.2.tar.gz
.
File metadata
- Download URL: pytorch_merge-0.1.2.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6a862143ea489a78e569e3897a1f7e5ae0d8342b3425c10a6a47c2d75d6b660 |
|
MD5 | 47649bd34857208e77dff3748fec0f13 |
|
BLAKE2b-256 | 2881a81850b25fa3657cd8bf7004721c36fe72aaeb320f1eb14f947f3e54ae7c |
File details
Details for the file pytorch_merge-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: pytorch_merge-0.1.2-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 806e511a6b04a532dc19e12f0e0c0a6d12d0a1a38f2be35ea88ac1f532689858 |
|
MD5 | 23e588ffbb9d475a969d3ad4f38c5623 |
|
BLAKE2b-256 | 913710448d8d684e514c03fd3f6c45191e3098830e758f2801c4a794b9e41048 |