Skip to content

growingnet/growing_wiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Growing Wiki logo

The Growing Wiki

https://growingnet.github.io/growing_wiki

The Growing Wiki documents algorithms for growing neural networks during training.

Repository Layout

  • docs/: Sphinx source and build configuration
  • docs/overview/: conceptual and survey-style pages
  • docs/algorithms/: per-algorithm reference pages
  • docs/applications/: application-focused pages
  • references.bib: bibliography used by the docs

Build Locally

Install dependencies

With python 3.11, install the requirements

pip install -r requirements.txt

Build HTML documentation

make -C docs html

Built files will be in:

docs/_build/html

To rebuild automatically while editing locally after installing the requirements, run make -C docs livehtml. Rendered html is served locally at http://127.0.0.1:8000.

Writing Docs

This wiki uses custom prose preprocessing in docs/conf.py, so contributors should not treat the .rst files as plain reStructuredText.

  • Use [[Page]] to link to another page when the page title or docname resolves uniquely.

  • Use [[Label|path/to/docname]] when the target would otherwise be ambiguous or when you want explicit control over the destination page.

  • Use standard citation roles such as:

    :cite:p:`key`
  • Pages with citations receive a local References section automatically during the Sphinx build, so you should not add a manual .. bibliography:: block unless you intend to override that behavior.

If a prose change introduces broken or ambiguous wiki links, the Sphinx build will emit warnings from the custom link resolver in docs/conf.py.

The CI requires that the Sphinx build produces no errors or warnings. To run this check manually, run:

pre-commit run --all-files

To enforce the check automatically on every local commit, run pre-commit install.

About

Wiki for growing Neural Networks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors