Skip to content

Commit e34d90a

Browse files
committed
[DOC] Update index.rst
1 parent 96edba1 commit e34d90a

3 files changed

Lines changed: 19 additions & 9 deletions

File tree

docs/_static/custom.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.center {text-align: center;}

docs/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,8 @@
106106
# Add any paths that contain custom static files (such as style sheets) here,
107107
# relative to this directory. They are copied after the builtin static files,
108108
# so a file named "default.css" will overwrite the builtin "default.css".
109-
# html_static_path = ['_static']
109+
html_static_path = ['_static']
110+
111+
html_css_files = [
112+
'custom.css',
113+
]

docs/index.rst

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,28 @@
2222
Ensemble-PyTorch Documentation
2323
==============================
2424

25+
.. rst-class:: center
26+
27+
| |:homes:| `GitHub <https://github.com/xuyxu/Ensemble-Pytorch>`__ | |:book:| `Documentation <https://readthedocs.org/projects/ensemble-pytorch/>`__ | |:hammer_and_wrench:| `Codecov <https://codecov.io/gh/xuyxu/Ensemble-Pytorch>`__
28+
|
29+
2530
**Ensemble-PyTorch** implements a collection of ensemble methods in PyTorch. It provides:
2631

27-
* |:chart_with_upwards_trend:| Easy ways to boost the performance of your deep learning models;
28-
* |:baby:| Easy-to-use APIs on training and evaluating;
32+
* |:arrow_up_small:| Easy ways to boost the performance of your deep learning models.
33+
* |:eyes:| Easy-to-use APIs on training and evaluating.
2934
* |:zap:| High training efficiency with parallelization.
3035

3136
This package is under active development. Please feel free to open an `issue <https://github.com/AaronX121/Ensemble-Pytorch/issues>`__ if your have any problem. In addition, any feature request or `pull request <https://github.com/AaronX121/Ensemble-Pytorch/pulls>`__ would be highly welcomed.
3237

33-
|:triangular_flag_on_post:| Guidepost
34-
-------------------------------------
38+
Guidepost
39+
---------
3540

3641
* To get started, please refer to `Quick Start <./quick_start.html>`__;
3742
* To learn more about ensemble methods supported, please refer to `Introduction <./introduction.html>`__;
3843
* If you are confused on which ensemble method to use, instructions in `Guidance <./guide.html>`__ may be helpful.
3944

40-
|:woman_teacher:| Example
41-
-------------------------
45+
How tu Use
46+
----------
4247

4348
.. code:: python
4449
@@ -64,8 +69,8 @@ This package is under active development. Please feel free to open an `issue <ht
6469
# Evaluate
6570
accuracy = model.predict(test_loader)
6671
67-
|:book:| Content
68-
----------------
72+
Content
73+
-------
6974

7075
.. toctree::
7176
:maxdepth: 2

0 commit comments

Comments
 (0)