Skip to content

Commit bc7592f

Browse files
committed
update READE and doc website
1 parent fca1e6f commit bc7592f

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

.github/workflows/build_docs.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
permissions:
6+
contents: write
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Configure Git Credentials
13+
run: |
14+
git config user.name github-actions[bot]
15+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: 3.x
19+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
20+
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install setuptools
25+
bash install.sh
26+
python -m pip install -r docs/requirements.txt
27+
28+
- uses: actions/cache@v4
29+
with:
30+
key: mkdocs-material-${{ env.cache_id }}
31+
path: .cache
32+
restore-keys: |
33+
mkdocs-material-
34+
- run: pip install mkdocs-material
35+
- run: mkdocs gh-deploy --force

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<p align="center">
99
[<a href="https://arxiv.org/abs/2312.05320">Arxiv</a>][<a href="https://qiauil.github.io/ConFIG/">📖 Documentation & Examples</a>]
1010
</p>
11+
1112
## About
1213

1314
* **What is the ConFIG method?**
@@ -99,9 +100,9 @@ for input_i in dataset:
99100
optimizer.step()
100101
```
101102

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

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

106107
## Additional Information
107108

0 commit comments

Comments
 (0)