feat(ml): batchnorm to groupnorm in projected D and f_s unet to lower multi-gpu sync requirements #1657
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: black | |
on: pull_request | |
jobs: | |
black: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install black==22.3.0 | |
- run: | | |
black --check --verbose . |