Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor references to organization name into grok-ai #48

Merged
merged 1 commit into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@


Generic cookiecutter template to bootstrap your [PyTorch](https://pytorch.org/get-started/locally/) project,
read more in the [documentation](https://lucmos.github.io/nn-template).
read more in the [documentation](https://grok-ai.github.io/nn-template).

## Get started

Generate your project with cookiecutter:

```bash
cookiecutter https://github.com/lucmos/nn-template
cookiecutter https://github.com/grok-ai/nn-template
```

> This is a *parametrized* template that uses [cookiecutter](https://github.com/cookiecutter/cookiecutter).
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
See the changelog in the [releases](https://github.com/lucmos/nn-template/releases) page.
See the changelog in the [releases](https://github.com/grok-ai/nn-template/releases) page.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ hide:
# NN Template

<p align="center">
<a href="https://github.com/lucmos/nn-template/actions/workflows/test_suite.yml"><img alt="CI" src=https://img.shields.io/github/workflow/status/lucmos/nn-template/Test%20Suite/main"></a>
<a href="https://lucmos.github.io/nn-template"><img alt="Docs" src=https://img.shields.io/github/workflow/status/lucmos/nn-template/pages%20build%20and%20deployment/gh-pages?label=docs></a>
<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>
<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>
<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>
<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>
</p>
Expand All @@ -23,7 +23,7 @@ hide:
---

```bash
cookiecutter https://github.com/lucmos/nn-template
cookiecutter https://github.com/grok-ai/nn-template
```

---
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: NN Template
site_description: Generic template to bootstrap your PyTorch project with PyTorch Lightning, Hydra, W&B, DVC, and Streamlit.
repo_url: https://github.com/lucmos/nn-template
repo_url: https://github.com/grok-ai/nn-template

nav:
- Home: index.md
Expand Down
4 changes: 2 additions & 2 deletions {{ cookiecutter.repository_name }}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p align="center">
<a href="https://github.com/{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}/actions/workflows/test_suite.yml"><img alt="CI" src=https://img.shields.io/github/workflow/status/{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}/Test%20Suite/main?label=main%20checks></a>
<a href="https://{{ cookiecutter.github_user }}.github.io/{{ cookiecutter.repository_name }}"><img alt="Docs" src=https://img.shields.io/github/workflow/status/{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}/pages%20build%20and%20deployment/gh-pages?label=docs></a>
<a href="https://github.com/lucmos/nn-template"><img alt="NN Template" src="https://shields.io/badge/nn--template-{{ cookiecutter.__version }}-emerald?style=flat&labelColor=gray"></a>
<a href="https://github.com/grok-ai/nn-template"><img alt="NN Template" src="https://shields.io/badge/nn--template-{{ cookiecutter.__version }}-emerald?style=flat&labelColor=gray"></a>
<a href="https://www.python.org/downloads/"><img alt="Python" src="https://img.shields.io/badge/python-{{ cookiecutter.python_version }}-blue.svg"></a>
<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>
</p>
Expand All @@ -28,7 +28,7 @@ pip install git+ssh://git@github.com/{{ cookiecutter.github_user }}/{{ cookiecut
Setup the development environment:

```bash
git clone git+ssh://git@lucmos/{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}.git
git clone git+ssh://git@grok-ai/{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}.git
conda env create -f env.yaml
conda activate {{ cookiecutter.conda_env_name }}
pre-commit install
Expand Down