A very simple tool that compresses the overall size of the ONNX model by aggregating duplicate constant values as much as possible. Simple Constant value Shrink for ONNX.
Project description
scs4onnx
A very simple tool that compresses the overall size of the ONNX model by aggregating duplicate constant values as much as possible. Simple Constant value Shrink for ONNX.
Key concept
- If the same constant tensor is found by scanning the entire graph for Constant values, it is aggregated into a single constant tensor.
- Ignore scalar values.
- Ignore variables.
1. Setup
### option
$ echo export PATH="~/.local/bin:$PATH" >> ~/.bashrc \
&& source ~/.bashrc
### run
$ pip install -U onnx \
&& python3 -m pip install -U onnx_graphsurgeon --index-url https://pypi.ngc.nvidia.com \
&& pip install -U scs4onnx
2. Usage
$ scs4onnx -h
usage: scs4onnx [-h] [--mode {shrink,npy}] input_onnx_file_path output_onnx_file_path
positional arguments:
input_onnx_file_path
Input onnx file path.
output_onnx_file_path
Output onnx file path.
optional arguments:
-h, --help show this help message and exit
--mode {shrink,npy} Constant Value Compression Mode.
shrink: Share constant values inside the model as much as possible.
The model size is slightly larger because
some shared constant values remain inside the model,
but performance is maximized.
npy: Outputs constant values used repeatedly in the model to an
external file .npy. Instead of the smallest model body size,
the file loading overhead is greater.
Default: shrink
3. CLI Execution
$ scs4onnx input.onnx output.onnx --mode=shrink
4. In-script Execution
from scs4onnx import shrinking
shrunk_graph, npy_file_paths = shrinking('input.onnx', 'output.onnx', mode='npy')
5. Sample
5-1. shrink
mode sample
-
297.8MB -> 67.4MB
5-2. npy
mode sample
-
297.8MB -> 21.3MB
5. Reference
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
scs4onnx-1.0.3.tar.gz
(5.7 kB
view details)
Built Distribution
File details
Details for the file scs4onnx-1.0.3.tar.gz
.
File metadata
- Download URL: scs4onnx-1.0.3.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4941ea6e630038c8312aa8e9a4faeb073bee53870dd6b2c2046487d25cb61a66 |
|
MD5 | bad34b77aa1f62cb001195564caa158b |
|
BLAKE2b-256 | 99b3b4cd3183519af0422ab4077036e185766f0794b3bf431272b998d1ddb6f6 |
File details
Details for the file scs4onnx-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: scs4onnx-1.0.3-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9486425eacc629a49e1fb80359cbeaa3c5a3b534aeaf0526520c6d07f1cb6cd |
|
MD5 | 12d97b0f89e8bf526c6b7dda86bef247 |
|
BLAKE2b-256 | c6d686c32edba3da34f82d04d2cdedcf25d7484c0410e205a66e5785eddc5b21 |