File tree Expand file tree Collapse file tree 2 files changed +38
-2
lines changed Expand file tree Collapse file tree 2 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 8
8
<p align =" center " >
9
9
[ <a href =" https://arxiv.org/abs/2312.05320 " >Arxiv</a >] •[ <a href =" https://qiauil.github.io/ConFIG/ " >📖 Documentation & Examples</a >]
10
10
</p >
11
+
11
12
## About
12
13
13
14
* ** What is the ConFIG method?**
@@ -99,9 +100,9 @@ for input_i in dataset:
99
100
optimizer.step()
100
101
```
101
102
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/ ) .
103
104
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.
105
106
106
107
## Additional Information
107
108
You can’t perform that action at this time.
0 commit comments