Skip to content

Commit 06343c5

Browse files
Flegyaslucmos
andcommitted
Fixes post release
* Fix status badge in the documentation (#64) * Minor fixes post release (#65) * Fix broken links in the README * Remove placeholder * Version 0.2.1 Co-authored-by: Luca Moschella <luca.moschella94@gmail.com>
1 parent 931fa7a commit 06343c5

File tree

8 files changed

+11
-12
lines changed

8 files changed

+11
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ Install it with:
5151
</code></pre>
5252
</details>
5353

54-
More details in the [documentation](https://grok-ai.github.io/nn-template/getting-started/generation/).
54+
More details in the [documentation](https://grok-ai.github.io/nn-template/latest/getting-started/generation/).
5555

5656
## Strengths
57-
- **Actually works for [research](https://grok-ai.github.io/nn-template/papers/)**!
57+
- **Actually works for [research](https://grok-ai.github.io/nn-template/latest/papers/)**!
5858
- Guided setup to customize project bootstrapping;
5959
- Fast prototyping of new ideas, no need to build a new code base from scratch;
6060
- Less boilerplate with no impact on the learning curve (as long as you know the integrated tools);
6161
- Automatize via GitHub actions: testing, stylish documentation deploy, PyPi upload;
62-
- Enforce Python [best practices](https://grok-ai.github.io/nn-template/features/bestpractices/);
62+
- Enforce Python [best practices](https://grok-ai.github.io/nn-template/latest/features/bestpractices/);
6363

6464
## Integrations
6565

cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"repository_url": "https://github.com/{{ cookiecutter.github_user }}/{{ cookiecutter.project_name.strip().lower().replace(' ', '-') }}",
1010
"conda_env_name": "{{ cookiecutter.project_name.strip().lower().replace(' ', '-') }}",
1111
"python_version": "3.9",
12-
"__version": "0.2.0"
12+
"__version": "0.2.1"
1313
}

docs/features/cicd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The generated project contains two [GiHub Actions](https://github.com/features/a
1010
between workflow runs.
1111

1212
!!! warning
13-
The annotated tags in the git repository to manage releases should follow the [semantic versioning](https://semver.org/l)
13+
The annotated tags in the git repository to manage releases should follow the [semantic versioning](https://semver.org/)
1414
conventions: `<major>.<minor>.<patch>`
1515

1616

docs/features/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ In order to create your docs it is enough to:
2727
```
2828

2929
3. To preview your documentation it is enough to run `mkdocs serve`. To manually deploy the documentation
30-
see [`mike`](https://github.com/jimporter/mike), or see the integrated GitHub Action to [publish the docs on release](/features/cicd/#publish-docs).
30+
see [`mike`](https://github.com/jimporter/mike), or see the integrated GitHub Action to [publish the docs on release](/latest/features/cicd/#publish-docs).

docs/getting-started/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
When developing neural models ourselves, we often struggled with:
44

5-
- **Reproducibility**. We strongly believe in the reproducibility requirement of scientific work. Link a WikiNEuRal e
6-
set-ops che usano il template!
5+
- **Reproducibility**. We strongly believe in the reproducibility requirement of scientific work.
76
- **Framework Learning**. Even when you find (or code yourself) the best framework to fit your needs, you still end up
87
in messy situations when collaborating since others have to learn to use it;
98
- **Avoiding boilerplate**. We were bored to write the same code over and over in

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ hide:
77
# NN Template
88

99
<p align="center">
10-
<a href="https://github.com/grok-ai/nn-template/actions/workflows/test_suite.yml"><img alt="CI" src=https://img.shields.io/github/workflow/status/grok-ai/nn-template/Test%20Suite/main"></a>
11-
<a href="https://grok-ai.github.io/nn-template"><img alt="Docs" src=https://img.shields.io/github/workflow/status/grok-ai/nn-template/pages%20build%20and%20deployment/gh-pages?label=docs></a>
10+
<a href="https://github.com/grok-ai/nn-template/actions/workflows/test_suite.yml"><img alt="CI" src="https://img.shields.io/github/workflow/status/grok-ai/nn-template/Test%20Suite/main"></a>
11+
<a href="https://grok-ai.github.io/nn-template"><img alt="Docs" src="https://img.shields.io/github/workflow/status/grok-ai/nn-template/pages%20build%20and%20deployment/gh-pages?label=docs"></a>
1212
<a href="https://pypi.org/project/nn-template-core/"><img alt="Release" src="https://img.shields.io/pypi/v/nn-template-core?label=nn-core"></a>
1313
<a href="https://black.readthedocs.io/en/stable/"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
1414
</p>

docs/integrations/hydra.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ You can explore aggregate statistics or compare and analyze each run in the W&B
2323

2424
!!! info
2525

26-
We recommend to go through at least the [Basic Tutorial](https://hydra.cc/docs/tutorials/basic/your_first_app/simple_cli), and the docs about [Instantiating objects with Hydra](https://hydra.cc/docs/patterns/instantiate_objects/overview).
26+
We recommend to go through at least the [Basic Tutorial](https://hydra.cc/docs/tutorials/basic/your_first_app/simple_cli), keep in mind that Hydra builds on top of [OmegaConf](https://omegaconf.readthedocs.io/en/latest/index.html).

docs/integrations/mkdocs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Documentation source files are written in Markdown, and configured with a single
1313
The template comes with Material for MkDocs already configured,
1414
to create your documentation you only need to write markdown files and define the `nav`.
1515

16-
See the [Documentation](/features/docs/) page to get started!
16+
See the [Documentation](/latest/features/docs/) page to get started!

0 commit comments

Comments
 (0)