Skip to content

Commit

Permalink
Update README.md with absolute links of images (#1357)
Browse files Browse the repository at this point in the history
Images in Pypi are not displayed due to the usage of relative paths of the images.

Co-authored-by: Ofir Gordon <[email protected]>
  • Loading branch information
reuvenperetz and ofirgo authored Feb 13, 2025
1 parent 345113d commit b151d9d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center" markdown="1">
<p>
<a href="https://sony.github.io/model_optimization/" target="_blank">
<img src="/docsrc/images/mctHeader1-cropped.svg" width="1000"></a>
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/mctHeader1-cropped.svg" width="1000"></a>
</p>

______________________________________________________________________
Expand Down Expand Up @@ -67,7 +67,7 @@ For further details, please see [Supported features and algorithms](#high-level-
<div align="center">
<p align="center">

<img src="/docsrc/images/mctDiagram_clean.svg" width="800">
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/mctDiagram_clean.svg" width="800">
</p>
</div>

Expand Down Expand Up @@ -148,16 +148,16 @@ Currently, MCT is being tested on various Python, Pytorch and TensorFlow version
## <div align="center">Results</div>

<p align="center">
<img src="/docsrc/images/Classification.png" width="200">
<img src="/docsrc/images/SemSeg.png" width="200">
<img src="/docsrc/images/PoseEst.png" width="200">
<img src="/docsrc/images/ObjDet.png" width="200">
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/Classification.png" width="200">
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/SemSeg.png" width="200">
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/PoseEst.png" width="200">
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/ObjDet.png" width="200">

MCT can quantize an existing 32-bit floating-point model to an 8-bit fixed-point (or less) model without compromising accuracy.
Below is a graph of [MobileNetV2](https://pytorch.org/vision/main/models/generated/torchvision.models.mobilenet_v2.html) accuracy on ImageNet vs average bit-width of weights (X-axis), using **single-precision** quantization, **mixed-precision** quantization, and mixed-precision quantization with GPTQ.

<p align="center">
<img src="/docsrc/images/torch_mobilenetv2.png" width="800">
<img src="https://github.com/sony/model_optimization/blob/main/docsrc/images/torch_mobilenetv2.png" width="800">

For more results, please see [1]

Expand Down

0 comments on commit b151d9d

Please sign in to comment.