Skip to content

Commit d3b6977

Browse files
reuvenperetzreuvenp
andauthored
Fix broken links in readme (#100)
Co-authored-by: reuvenp <[email protected]>
1 parent bef9d39 commit d3b6977

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ Users can set the quantizers and all the quantization information for each layer
1515

1616
Please note that the quantization wrapper and the quantizers are framework-specific.
1717

18-
<img src="quantization_infra.png" width="700">
18+
<img src="https://github.com/sony/mct_quantizers/raw/main/quantization_infra.png" width="700">
1919

2020
## Quantizers:
2121

2222
The library provides the "Inferable Quantizer" interface for implementing new quantizers.
23-
This interface is based on the [`BaseInferableQuantizer`](common/base_inferable_quantizer.py) class, which allows the definition of quantizers used for emulating inference-time quantization.
23+
This interface is based on the [`BaseInferableQuantizer`](https://github.com/sony/mct_quantizers/blob/main/mct_quantizers/common/base_inferable_quantizer.py) class, which allows the definition of quantizers used for emulating inference-time quantization.
2424

2525
On top of `BaseInferableQuantizer` the library defines a set of framework-specific quantizers for both weights and activations:
26-
1. [Keras Quantizers](mct_quantizers/keras/quantizers)
27-
2. [Pytorch Quantizers](mct_quantizers/pytorch/quantizers)
26+
1. [Keras Quantizers](https://github.com/sony/mct_quantizers/tree/main/mct_quantizers/keras/quantizers)
27+
2. [Pytorch Quantizers](https://github.com/sony/mct_quantizers/tree/main/mct_quantizers/pytorch/quantizers)
2828

2929
### The mark_quantizer Decorator
3030

31-
The [`@mark_quantizer`](mct_quantizers/common/base_inferable_quantizer.py) decorator is used to assign each quantizer with static properties that define its task compatibility. Each quantizer class should be decorated with this decorator, which defines the following properties:
32-
- [`QuantizationTarget`](mct_quantizers/common/base_inferable_quantizer.py): An Enum that indicates whether the quantizer is intended for weights or activations quantization.
33-
- [`QuantizationMethod`](mct_quantizers/common/quant_info.py): A list of quantization methods (Uniform, Symmetric, etc.).
31+
The [`@mark_quantizer`](https://github.com/sony/mct_quantizers/blob/main/mct_quantizers/common/base_inferable_quantizer.py) decorator is used to assign each quantizer with static properties that define its task compatibility. Each quantizer class should be decorated with this decorator, which defines the following properties:
32+
- [`QuantizationTarget`](https://github.com/sony/mct_quantizers/blob/main/mct_quantizers/common/base_inferable_quantizer.py): An Enum that indicates whether the quantizer is intended for weights or activations quantization.
33+
- [`QuantizationMethod`](https://github.com/sony/mct_quantizers/blob/main/mct_quantizers/common/quant_info.py): A list of quantization methods (Uniform, Symmetric, etc.).
3434
- `identifier`: A unique identifier for the quantizer class. This is a helper property that allows the creation of advanced quantizers for specific tasks.
3535

3636
## Getting Started
@@ -68,7 +68,7 @@ For use with Tensorflow, please install the following package:
6868
For use with PyTorch, please install the following package:
6969
[torch](https://pytorch.org/)
7070

71-
You can also use the [requirements](requirements.txt) file to set up your environment.
71+
You can also use the [requirements](https://github.com/sony/mct_quantizers/blob/main/requirements.txt) file to set up your environment.
7272

7373
## License
74-
[Apache License 2.0](LICENSE.md).
74+
[Apache License 2.0](https://github.com/sony/mct_quantizers/blob/main/LICENSE.md).

0 commit comments

Comments
 (0)