Skip to content

Commit

Permalink
Decent Diffusers generation
Browse files Browse the repository at this point in the history
  • Loading branch information
rkdan committed Jun 12, 2024
1 parent 26c91b8 commit 56f8ab0
Show file tree
Hide file tree
Showing 4 changed files with 346 additions and 64 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocstrings mkdocs-material
- run: mkdocs gh-deploy --force
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/venv
docs/.DS_Store
diffusion-models/notebooks/mnist_data/
diffusion-models/notebooks/mnist_data/
diffusion-models/notebooks/ecg/
Loading

0 comments on commit 56f8ab0

Please sign in to comment.