ascender
Accelerator of Scientific Development and Research. A project template developed by XCCV group of cvpaper.challenge.
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.9%) to scientific vocabulary
Keywords
Repository
Accelerator of Scientific Development and Research. A project template developed by XCCV group of cvpaper.challenge.
Basic Info
Statistics
- Stars: 412
- Watchers: 6
- Forks: 25
- Open Issues: 5
- Releases: 0
Topics
Metadata Files
README.md
Ascender
What is Ascender?
Ascender (Accelerator of SCiENtific DEvelopment and Research) is a GitHub repository template designed for research projects using Python. It incorporates several pre-implemented features to expedite development:
- Containerization: Dependency minimization and code portability enhancement using Docker.
- Virtual Environment / Package Management: Development environment reproducibility ensured by Poetry.
- Coding Style: Automatic code linting and formatting with Ruff.
- Static Type Checking: Early bug detection assisted by Mypy.
- Testing: Testing simplification achieved through pytest.
- Task Runner: Simple task automation with Poe the Poet.
- GitHub Integration: Integration features including GitHub Actions workflows, issue templates, and more.
Please also view resources about Ascender (in Japanese).
Project Organization
├── .github/ <- GitHub settings.
│
├── data/ <- Datasets.
│
├── environments/ <- Environment-specific configurations.
│
├── models/ <- Pretrained and serialized models.
│
├── notebooks/ <- Jupyter notebooks.
│
├── outputs/ <- Outputs.
│
├── src/ <- Python Source code.
│
├── tests/ <- Test code.
│
├── .dockerignore
├── .gitignore
├── LICENSE
├── poetry.lock <- Auto-generated lock file (do not edit manually).
├── poetry.toml <- Poetry configuration.
├── pyproject.toml <- Main project configuration file.
└── README.md <- Top-level README for developers.
Prerequisites
[!Note] The example codes in the README.md are written for
Docker Compose v2. However, Ascender is also compatible withDocker Compose v1. If you are usingDocker Compose v1, simply replacedocker composewithdocker-composein the example commands.
Prerequisites Installation
This section provides installation instructions for Ubuntu. If you have already installed the prerequisites, you may skip this section. For installations on other operating systems, please refer to the official documentation.
- Docker and Docker Compose: Install Docker Engine
- NVIDIA Container Toolkit (nvidia-docker2): Installation Guide
Install Docker and Docker Compose
```bash
Set up the repository
$ sudo apt update $ sudo apt install ca-certificates curl gnupg lsb-release $ sudo mkdir -p /etc/apt/keyrings $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg $ echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Install Docker and Docker Compose
$ sudo apt update $ sudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin ```
If sudo docker run hello-world works, the installation was successful.
(Optional) Install NVIDIA Container Toolkit
To use GPUs with Ascender, install the NVIDIA Container Toolkit as well. This toolkit has specific prerequisites, detailed in the official documentation.
```bash $ distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \ && curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \ && curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.list | \ sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \ sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
$ sudo apt update $ sudo apt install -y nvidia-docker2 $ sudo systemctl restart docker ```
If sudo docker run --rm --gpus all nvidia/cuda:11.0.3-base nvidia-smi works, the installation was successful.
Quick Start
This section outlines how to begin using Ascender. For more detailed information, please refer to this slide (in Japanese).
Create a GitHub Repository from Ascender
To start, you need to create your own GitHub repository from Ascender:
- Visit the GitHub repository page of Ascender.
- Click the "Use this template" button at the top right of the page.
- Complete the form and click the "Create repository from template" button.
Your new repository should now be set up in your GitHub account.
(Optional) Modify Names Used in the Template
In the Ascender template, names used in the system by default, such as those for Docker containers and bind-mounted volumes, are set to "ascender." Particularly when using Ascender’s template to create and manage multiple containers, to avoid name conflicts between containers, it is necessary to change the container names for each project (refer also to the FAQ section "Building multiple containers with Ascender’s template").
If you want to change the default names used in the system, please modify the value of PROJECT_NAME_ENV in environments/[cpu,gpu,ci]/.env.
(Optional) Set Environment Variables for Development Within the Container
Depending on the services, frameworks, and libraries used during development, it may be necessary to specify API keys, database hostnames, and passwords as environment variables. To use environment variables within the container, please follow the steps below.
Copy
environments/envs.env.sampleto createenvironments/envs.envEdit
environments/envs.envto set the environment variables you want to use inside the containerAdd the
env_fileoption toenvironments/[cpu,gpu]/docker-compose.yaml, and specify the path toenvironments/envs.envthat was created above (by uncommenting the section that is commented out by default)."
yaml
# env_file: # <- uncomment here
# - ../envs.env # <- uncomment here
[!Note] The
envs.envfile may contain sensitive information such as API keys and passwords and should not be version-controlled by Git. In Ascender, files named*.envare excluded from Git tracking by default, as they are listed in the.gitignorefile.
Start Development
```bash
Clone the repository
$ git clone git@github.com:cvpaperchallenge/
Build the Docker image and run the container
$ cd environments/gpu # For CPU only, navigate to environments/cpu
$ sudo docker compose up -d
Enter the container shell
$ sudo docker compose exec core bash
Set up the virtual environment and install dependencies with Poetry
$ poetry install ```
You are now ready to start developing with Ascender.
Stop Development
```bash
Stop the container
$ cd environments/gpu # Or cd environments/cpu
$ sudo docker compose stop
```
FAQ
Using Ascender Without Docker
While we recommend using Docker as described, you may encounter issues installing Docker due to permissions or other constraints.
If you cannot use Docker, Ascender can be operated without it. Simply install Poetry on your computer and proceed as described in the "Start Development" section, omitting the Docker steps.
```bash
Install Poetry
$ pip3 install poetry
Clone the repository
$ git clone git@github.com:
Set up the virtual environment and install dependencies with Poetry
$ poetry install ```
[!Note] The CI jobs in Ascender's GitHub Actions workflows utilize a Dockerfile. Running without Docker may cause these jobs to fail, necessitating modifications to the Dockerfile or the deletion of the CI job (
.github/workflows/lint-and-test.yaml).
Permission Errors When Running poetry install
Sometimes, running poetry install may result in a permission error:
```bash $ poetry install ...
virtualenv: error: argument dest: the destination . is not write-able at /home/challenger/ascender ```
If this occurs, check your local PC's UID (user ID) and GID (group ID) with the following commands:
bash
$ id -u $USER # Check UID
$ id -g $USER # Check GID
In Ascender, the default UID and GID are both '1000'. If your local PC's UID or GID differs from this, you'll need to adjust the 'UID' or 'GID' values in 'docker-compose.yaml' to match your local settings. Alternatively, if the 'HOSTUID' and 'HOSTGID' environment variables are set on your host PC, Ascender will use these values.
Compatibility Issues Between PyTorch and Poetry
[!Note] Now poetry 1.2 is used in Ascender. So this issue is expected to be solved.
As of now, there is a known compatibility issue between PyTorch and Poetry, which the Poetry community is actively addressing. This issue is anticipated to be resolved in Poetry version 1.2.0. You can track progress and explore pre-releases of this version here.
We plan to integrate Poetry 1.2.0 into Ascender as soon as it becomes available. In the meantime, you may need to use workarounds detailed in this issue.
Related GitHub Issues
- https://github.com/python-poetry/poetry/issues/2339
- https://github.com/python-poetry/poetry/issues/2543
- https://github.com/python-poetry/poetry/issues/2613
- https://github.com/python-poetry/poetry/issues/3855
- https://github.com/python-poetry/poetry/issues/4231
- https://github.com/python-poetry/poetry/issues/4704
Changing Python Versions for CI Jobs
By default, Ascender's CI jobs run using Python 3.8 and 3.9. If you wish to target a different Python version, modify the matrix in .github/workflows/lint-and-test.yaml.
Incorrect Reflection of Dockerfile Changes in Image Builds
If you find that changes to the Dockerfile are not reflected when building the image, try the following commands:
bash
$ sudo docker compose build --no-cache
$ sudo docker compose up --force-recreate -d
When changes to the Dockerfile are not reflected correctly, the potential reasons could be:
Docker uses a cache to build the image.
Docker does not recreate a container.
The sudo docker compose build --no-cache command builds the Docker image without using the cache, addressing the first issue. The sudo docker compose up --force-recreate -d command recreates and starts the containers, addressing the second issue.
Activating/Deactivating Caching in CI Jobs
Caching was introduced in CI jobs (lint-and-tests.yaml) starting from v0.1.2 to reduce delays caused by Docker image builds and Poetry installations. However, if you prefer not to use this feature, set the USE_CACHE variable in lint-and-tests.yaml to false.
Excessive Strictness of Ruff's Code Style Constraints
If you find the style checks enforced by Ruff too stringent, you can adjust the settings in pyproject.toml under tool.ruff.[xxx].
select: Specify which Ruff style rules to apply.ignore: Set rules to be ignored during style checking.fixable: Allow automatic correction for certain fixable rules.unfixable: Specify rules that should not be automatically corrected.
For details on each rule, please refer to here. For more information on how to configure the pyproject.toml file, see here.
Building multiple containers with Ascender’s template
When using Ascender's templates for multiple projects, the following additional settings are necessary:
- Specify port numbers: To avoid specifying the same port numbers as the existing containers, change the host PC's port in
environments/[cpu,gpu,ci]/docker-compose.yamlfrom the default value.
yaml
ports:
- 8000:8000 # Example: Change to 8001:8000
- Change the project name: To prevent conflicting with the existing container names, change
PROJECT_NAME_ENVinenvironments/[cpu,gpu,ci]/.env.
text
# If you need to change the default name of the project, edit the following.
PROJECT_NAME_ENV=ascender # Example: Change to a new project name
Owner
- Name: cvpaper.challenge
- Login: cvpaperchallenge
- Kind: organization
- Repositories: 8
- Profile: https://github.com/cvpaperchallenge
Citation (CITATION.cff)
cff-version: 1.2.0
message: "If you want to cite the framework, feel free to use this (but only if you loved it 😊)"
title: "Ascender"
abstract: "Ascender is a GitHub repository template for research projects using Python as a developing language."
date-released: 2022-10-26
authors:
- family-names: "Fukuhara"
given-names: "Yoshihiro"
- family-names: "Kubotani"
given-names: "Yoshiki"
- name: "cvpaper.challenge XCCV group"
version: 0.2.0
doi: 10.5281/zenodo.7672842
license: "MIT"
url: "https://github.com/cvpaperchallenge/Ascender"
GitHub Events
Total
- Issues event: 4
- Watch event: 17
- Issue comment event: 4
- Push event: 1
- Pull request review event: 1
- Pull request event: 2
- Fork event: 3
Last Year
- Issues event: 4
- Watch event: 17
- Issue comment event: 4
- Push event: 1
- Pull request review event: 1
- Pull request event: 2
- Fork event: 3
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 5
- Total pull requests: 0
- Average time to close issues: 9 months
- Average time to close pull requests: N/A
- Total issue authors: 2
- Total pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 3
- Pull requests: 0
- Average time to close issues: 3 days
- Average time to close pull requests: N/A
- Issue authors: 2
- Pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- gatheluck (11)
- YoshikiKubotani (4)
Pull Request Authors
- gatheluck (7)
- YoshikiKubotani (4)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- actions/cache v3 composite
- actions/checkout v3 composite
- docker/setup-buildx-action v2 composite
- ${BASE_IMAGE} latest build
- attrs 22.2.0 develop
- black 22.12.0 develop
- click 8.1.3 develop
- colorama 0.4.6 develop
- coverage 7.0.3 develop
- exceptiongroup 1.1.0 develop
- flake8 5.0.4 develop
- importlib-metadata 6.0.0 develop
- iniconfig 1.1.1 develop
- isort 5.11.4 develop
- linkify-it-py 1.0.3 develop
- markdown-it-py 2.1.0 develop
- mccabe 0.7.0 develop
- mdformat 0.7.16 develop
- mdformat-footnote 0.1.1 develop
- mdformat-frontmatter 0.4.1 develop
- mdformat-gfm 0.3.5 develop
- mdformat-tables 0.4.1 develop
- mdit-py-plugins 0.3.3 develop
- mdurl 0.1.2 develop
- mypy 0.991 develop
- mypy-extensions 0.4.3 develop
- packaging 22.0 develop
- pathspec 0.10.3 develop
- platformdirs 2.6.2 develop
- pluggy 1.0.0 develop
- pycodestyle 2.9.1 develop
- pyflakes 2.5.0 develop
- pytest 7.2.0 develop
- pytest-cov 4.0.0 develop
- ruamel-yaml 0.17.21 develop
- ruamel-yaml-clib 0.2.7 develop
- tomli 2.0.1 develop
- typing-extensions 4.4.0 develop
- uc-micro-py 1.0.1 develop
- zipp 3.11.0 develop
- python ^3.8