Skip to content

Commit

Permalink
update READE and doc website
Browse files Browse the repository at this point in the history
  • Loading branch information
qiauil committed Aug 13, 2024
1 parent fca1e6f commit bc7592f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools
bash install.sh
python -m pip install -r docs/requirements.txt
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<p align="center">
[<a href="https://arxiv.org/abs/2312.05320">Arxiv</a>][<a href="https://qiauil.github.io/ConFIG/">📖 Documentation & Examples</a>]
</p>

## About

* **What is the ConFIG method?**
Expand Down Expand Up @@ -99,9 +100,9 @@ for input_i in dataset:
optimizer.step()
```

More details and examples can be found in our [doc page]("https://qiauil.github.io/ConFIG/").
More details and examples can be found in our [doc page](https://qiauil.github.io/ConFIG/).

To reproduce the result in our paper, please check the [experiments](https://github.com/tum-pbs/ConFIG/tree/main/experiments)folder.
To reproduce the result in our paper, please check the [experiments](https://github.com/tum-pbs/ConFIG/tree/main/experiments) folder.

## Additional Information

Expand Down

0 comments on commit bc7592f

Please sign in to comment.