Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit d26ef6e

Browse files
authored
footer copyright fix, sidenav tweaks, icon url for pypi (#56)
* footer copyright fix, sidenav tweaks, misc doc edits * icon for pypi presentation * incorrect product referenced in release list
1 parent 1151abf commit d26ef6e

File tree

4 files changed

+28
-25
lines changed

4 files changed

+28
-25
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
-->
1616

17-
# ![icon for SparseMl](https://github.com/neuralmagic/sparseml/blob/main/docs/icon-sparseml.png) SparseML
17+
# ![icon for SparseMl](https://raw.githubusercontent.com/neuralmagic/sparseml/main/docs/source/icon-sparseml.png) SparseML
1818

1919
### Libraries for state-of-the-art deep neural network optimization algorithms, enabling simple pipelines integration with a few lines of code
2020

@@ -23,12 +23,12 @@ limitations under the License.
2323
<img alt="GitHub" src="https://img.shields.io/github/license/neuralmagic/comingsoon.svg?color=purple&style=for-the-badge" height=25>
2424
</a>
2525
<a href="https://docs.neuralmagic.com/sparseml/">
26-
<img alt="Documentation" src="https://img.shields.io/website/http/neuralmagic.com/sparseml/index.html.svg?down_color=red&down_message=offline&up_message=online&style=for-the-badge" height=25>
26+
<img alt="Documentation" src="https://img.shields.io/website/http/docs.neuralmagic.com/sparseml/index.html.svg?down_color=red&down_message=offline&up_message=online&style=for-the-badge" height=25>
2727
</a>
2828
<a href="https://github.com/neuralmagic/sparseml/releases">
2929
<img alt="GitHub release" src="https://img.shields.io/github/release/neuralmagic/sparseml.svg?style=for-the-badge" height=25>
3030
</a>
31-
<a href="https://github.com/neuralmagic.com/sparseml/blob/main/CODE_OF_CONDUCT.md">
31+
<a href="https://github.com/neuralmagic/sparseml/blob/main/CODE_OF_CONDUCT.md">
3232
<img alt="Contributor Covenant" src="https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg?color=yellow&style=for-the-badge" height=25>
3333
</a>
3434
<a href="https://www.youtube.com/channel/UCo8dO_WMGYbWCRnj_Dxr4EA">
@@ -163,7 +163,7 @@ The integration is done using the `ScheduledModifierManager` class which can be
163163
This class handles modifying the TensorFlow graph for the desired optimizations.
164164
With this setup, the training process can then be modified as desired to optimize the model.
165165

166-
#### Estimator-based pipelines
166+
#### Estimator-Based pipelines
167167

168168
Estimator-based pipelines are simpler to integrate with as compared to session-based pipelines.
169169
The `ScheduledModifierManager` can override the necessary callbacks in the estimator to modify the graph using the `modify_estimator` function.
@@ -180,7 +180,7 @@ manager.modify_estimator(estimator, steps_per_epoch=num_train_batches)
180180
# Normal estimator training code...
181181
```
182182

183-
#### Session-based pipelines
183+
#### Session-Based pipelines
184184

185185
Session-based pipelines need a little bit more as compared to estimator-based pipelines; however,
186186
it is still designed to require only a few lines of code for integration.
@@ -321,15 +321,15 @@ TensorFlow V1:
321321

322322
```bash
323323
pip install sparseml[tf_v1]
324-
```
324+
```
325325

326326
TensorFlow V1 with GPU operations enabled:
327+
327328
```bash
328329
pip install sparseml[tf_v1_gpu]
329-
```
330-
Depending on your device and CUDA version, you may need to install additional
331-
dependencies for using TensorFlow V1 with GPU operations. You can find these
332-
steps [here](https://www.tensorflow.org/install/gpu#older_versions_of_tensorflow).
330+
```
331+
332+
Depending on your device and CUDA version, you may need to install additional dependencies for using TensorFlow V1 with GPU operations. You can find these steps [here](https://www.tensorflow.org/install/gpu#older_versions_of_tensorflow).
333333

334334
## Resources and Learning More
335335

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
project = "SparseML"
2222
copyright = (
23-
"Copyright (c) 2021 - present / Neuralmagic, Inc. All Rights Reserved. "
23+
"2021 - present / Neuralmagic, Inc. All Rights Reserved. "
2424
'Licensed under the Apache License, Version 2.0 (the "License")'
2525
)
2626
author = "Neural Magic"

docs/source/index.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ enabling simple pipelines integration with a few lines of code
2323
.. raw:: html
2424

2525
<div style="margin-bottom:16px;">
26-
<a href="https://github.com/neuralmagic/sparseml/blob/master/LICENSE">
26+
<a href="https://github.com/neuralmagic/sparseml/blob/main/LICENSE">
2727
<img alt="GitHub" src="https://img.shields.io/github/license/neuralmagic/sparseml.svg?color=purple&style=for-the-badge" height=25 style="margin-bottom:4px;">
2828
</a>
2929
<a href="https://docs.neuralmagic.com/sparseml/index.html">
30-
<img alt="Documentation" src="https://img.shields.io/website/http/neuralmagic.com/sparseml/index.html.svg?down_color=red&down_message=offline&up_message=online&style=for-the-badge" height=25 style="margin-bottom:4px;">
30+
<img alt="Documentation" src="https://img.shields.io/website/http/docs.neuralmagic.com/sparseml/index.html.svg?down_color=red&down_message=offline&up_message=online&style=for-the-badge" height=25 style="margin-bottom:4px;">
3131
</a>
3232
<a href="https://github.com/neuralmagic/sparseml/releases">
3333
<img alt="GitHub release" src="https://img.shields.io/github/release/neuralmagic/sparseml.svg?style=for-the-badge" height=25 style="margin-bottom:4px;">
3434
</a>
35-
<a href="https://github.com/neuralmagic.com/sparseml/blob/master/CODE_OF_CONDUCT.md">
35+
<a href="https://github.com/neuralmagic/sparseml/blob/main/CODE_OF_CONDUCT.md">
3636
<img alt="Contributor Covenant" src="https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg?color=yellow&style=for-the-badge" height=25 style="margin-bottom:4px;">
3737
</a>
3838
<a href="https://www.youtube.com/channel/UCo8dO_WMGYbWCRnj_Dxr4EA">
@@ -63,7 +63,7 @@ Related Products
6363

6464
- `DeepSparse <https://github.com/neuralmagic/deepsparse />`_:
6565
CPU inference engine that delivers unprecedented performance for sparse models
66-
- `Sparse Zoo <https://github.com/neuralmagic/sparsezoo />`_:
66+
- `SparseZoo <https://github.com/neuralmagic/sparsezoo />`_:
6767
Neural network model repository for highly sparse models and optimization recipes
6868
- `Sparsify <https://github.com/neuralmagic/sparsify />`_:
6969
Easy-to-use autoML interface to optimize deep neural networks for
@@ -73,7 +73,6 @@ Resources and Learning More
7373
===========================
7474

7575
- `SparseZoo Documentation <https://docs.neuralmagic.com/sparsezoo/ />`_
76-
- `SparseML Documentation <https://docs.neuralmagic.com/sparseml/ />`_
7776
- `Sparsify Documentation <https://docs.neuralmagic.com/sparsify/ />`_
7877
- `DeepSparse Documentation <https://docs.neuralmagic.com/deepsparse/ />`_
7978
- `Neural Magic Blog <https://www.neuralmagic.com/blog/ />`_,
@@ -84,8 +83,8 @@ Release History
8483
===============
8584

8685
Official builds are hosted on PyPi
87-
- stable: `sparsezoo <https://pypi.org/project/sparseml/ />`_
88-
- nightly (dev): `sparsezoo-nightly <https://pypi.org/project/sparseml-nightly/ />`_
86+
- stable: `sparseml <https://pypi.org/project/sparseml/ />`_
87+
- nightly (dev): `sparseml-nightly <https://pypi.org/project/sparseml-nightly/ />`_
8988

9089
Additionally, more information can be found via
9190
`GitHub Releases <https://github.com/neuralmagic/sparseml/releases />`_.
@@ -103,3 +102,11 @@ Additionally, more information can be found via
103102
:caption: API
104103

105104
api/sparseml
105+
106+
.. toctree::
107+
:maxdepth: 2
108+
:caption: Help and Support
109+
110+
`Bugs, Feature Requests <https://github.com/neuralmagic/sparseml/discussions>`_
111+
`Support, General Q&A <https://github.com/neuralmagic/sparseml/issues>`_
112+

docs/source/installation.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,12 @@ limitations under the License.
1717
### Installation
1818

1919
This repository is tested on Python 3.6+, and Linux/Debian systems.
20-
It is recommended to install in a [virtual environment](https://docs.python.org/3/library/venv.html)
21-
to keep your system in order.
20+
It is recommended to install in a [virtual environment](https://docs.python.org/3/library/venv.html) to keep your system in order.
2221

2322
Install with pip using:
2423

2524
```bash
26-
pip install sparsezoo
25+
pip install sparseml
2726
```
2827

29-
Then if you would like to explore any of the [scripts](https://github.com/neuralmagic/sparsezoo/tree/main/scripts),
30-
[notebooks](https://github.com/neuralmagic/sparsezoo/tree/main/notebooks),
31-
or [examples](https://github.com/neuralmagic/sparsezoo/tree/main/examples)
32-
clone the repository and install any additional dependencies as required.
28+
Then if you would like to explore any of the [scripts](https://github.com/neuralmagic/sparseml/tree/main/scripts), [notebooks](https://github.com/neuralmagic/sparseml/tree/main/notebooks), or [examples](https://github.com/neuralmagic/sparseml/tree/main/examples) clone the repository and install any additional dependencies as required.

0 commit comments

Comments
 (0)