Skip to content

Commit 3bc532d

Browse files
committed
Merge branch 'main' of github.com:DoubleML/doubleml-docs into m-nonlinear-score-mixin
2 parents cc4a090 + d6680eb commit 3bc532d

File tree

5 files changed

+36
-46
lines changed

5 files changed

+36
-46
lines changed

.github/workflows/deploy_docu_dev.yml

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,19 @@ jobs:
1818

1919
steps:
2020
- name: Check out the repo containing the docu source
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222

2323
- name: Check out the repo containing the python pkg DoubleML (dev)
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
with:
2626
repository: DoubleML/doubleml-for-py
2727
path: doubleml-for-py
2828

29-
- name: Install SSH Client for deploying the docu to github pages
30-
uses: webfactory/[email protected]
31-
with:
32-
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
33-
3429
- name: Install graphviz
3530
run: sudo apt-get install graphviz
3631

3732
- name: Install python
38-
uses: actions/setup-python@v2
33+
uses: actions/setup-python@v4
3934
with:
4035
python-version: '3.8'
4136
- name: Install dependencies and the python package
@@ -69,7 +64,7 @@ jobs:
6964
shell: Rscript {0}
7065

7166
- name: Cache R packages
72-
uses: actions/cache@v2
67+
uses: actions/cache@v3
7368
with:
7469
path: ${{ env.R_LIBS_USER }}
7570
key: doubleml-user-guide-dev-${{ hashFiles('.github/R-version') }}
@@ -87,13 +82,13 @@ jobs:
8782
make -C doc html # build docu
8883
8984
- name: Deploy to dev
90-
uses: JamesIves/github-pages-deploy-action@3.7.1
85+
uses: JamesIves/github-pages-deploy-action@v4
9186
with:
92-
REPOSITORY_NAME: DoubleML/doubleml.github.io
93-
BRANCH: main
94-
FOLDER: doc/_build/html
95-
TARGET_FOLDER: dev
96-
GIT_CONFIG_NAME: DoubleML Deploy Bot
97-
GIT_CONFIG_EMAIL: [email protected]
98-
CLEAN: true
99-
SSH: true
87+
repository-name: DoubleML/doubleml.github.io
88+
branch: main
89+
folder: doc/_build/html
90+
target-folder: dev
91+
git-config-name: DoubleML Deploy Bot
92+
git-config-email: [email protected]
93+
clean: true
94+
ssh-key: ${{ secrets.DEPLOY_KEY }}

.github/workflows/deploy_docu_stable.yml

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,13 @@ jobs:
1313

1414
steps:
1515
- name: Check out the repo containing the docu source
16-
uses: actions/checkout@v2
17-
18-
- name: Install SSH Client for deploying the docu to github pages
19-
uses: webfactory/[email protected]
20-
with:
21-
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
16+
uses: actions/checkout@v3
2217

2318
- name: Install graphviz
2419
run: sudo apt-get install graphviz
2520

2621
- name: Install python
27-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2823
with:
2924
python-version: '3.8'
3025
- name: Install dependencies and the python package
@@ -55,7 +50,7 @@ jobs:
5550
shell: Rscript {0}
5651

5752
- name: Cache R packages
58-
uses: actions/cache@v2
53+
uses: actions/cache@v3
5954
with:
6055
path: ${{ env.R_LIBS_USER }}
6156
key: doubleml-user-guide-stable-${{ hashFiles('.github/R-version') }}
@@ -73,13 +68,13 @@ jobs:
7368
make -C doc html # build docu
7469
7570
- name: Deploy to stable
76-
uses: JamesIves/github-pages-deploy-action@3.7.1
71+
uses: JamesIves/github-pages-deploy-action@v4
7772
with:
78-
REPOSITORY_NAME: DoubleML/doubleml.github.io
79-
BRANCH: main
80-
FOLDER: doc/_build/html
81-
TARGET_FOLDER: stable
82-
GIT_CONFIG_NAME: DoubleML Deploy Bot
83-
GIT_CONFIG_EMAIL: [email protected]
84-
CLEAN: true
85-
SSH: true
73+
repository-name: DoubleML/doubleml.github.io
74+
branch: main
75+
folder: doc/_build/html
76+
target-folder: stable
77+
git-config-name: DoubleML Deploy Bot
78+
git-config-email: [email protected]
79+
clean: true
80+
ssh-key: ${{ secrets.DEPLOY_KEY }}

.github/workflows/test_build_docu_dev.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232

3333
steps:
3434
- name: Check out the repo containing the docu source
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636

3737
- name: Check out the repo containing the python pkg DoubleML (dev)
3838
if: ${{ github.event_name != 'workflow_dispatch' }}
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040
with:
4141
repository: DoubleML/doubleml-for-py
4242
path: doubleml-for-py
4343

4444
- name: Check out the repo containing the python pkg DoubleML (dev)
4545
if: ${{ github.event_name == 'workflow_dispatch' }}
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747
with:
4848
repository: DoubleML/doubleml-for-py
4949
path: doubleml-for-py
@@ -53,7 +53,7 @@ jobs:
5353
run: sudo apt-get install graphviz
5454

5555
- name: Install python
56-
uses: actions/setup-python@v2
56+
uses: actions/setup-python@v4
5757
with:
5858
python-version: '3.8'
5959
- name: Install dependencies and the python package
@@ -87,7 +87,7 @@ jobs:
8787
shell: Rscript {0}
8888

8989
- name: Cache R packages
90-
uses: actions/cache@v2
90+
uses: actions/cache@v3
9191
with:
9292
path: ${{ env.R_LIBS_USER }}
9393
key: doubleml-test-build-dev-${{ hashFiles('.github/R-version') }}
@@ -119,7 +119,7 @@ jobs:
119119
make -C doc linkcheck
120120
121121
- name: Upload html artifacts
122-
uses: actions/upload-artifact@v2
122+
uses: actions/upload-artifact@v3
123123
with:
124124
name: build_html
125125
path: doc/_build/html/

.github/workflows/test_build_docu_released.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121

2222
steps:
2323
- name: Check out the repo containing the docu source
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Install graphviz
2727
run: sudo apt-get install graphviz
2828

2929
- name: Install python
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: '3.8'
3333
- name: Install dependencies and the python package
@@ -58,7 +58,7 @@ jobs:
5858
shell: Rscript {0}
5959

6060
- name: Cache R packages
61-
uses: actions/cache@v2
61+
uses: actions/cache@v3
6262
with:
6363
path: ${{ env.R_LIBS_USER }}
6464
key: doubleml-test-build-stable-${{ hashFiles('.github/R-version') }}
@@ -80,7 +80,7 @@ jobs:
8080
make -C doc linkcheck
8181
8282
- name: Upload html artifacts
83-
uses: actions/upload-artifact@v2
83+
uses: actions/upload-artifact@v3
8484
with:
8585
name: build_html
8686
path: doc/_build/html/

doc/guide/learners.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ The entries in the list specify options during parameter tuning with `mlr3tuning
420420
`Tuner <https://mlr3tuning.mlr-org.com/reference/Tuner.html>`_ and specifies the tuning algorithm.
421421
Alternatively, ``algorithm`` can be a ``character()`` that is used as an argument in the wrapper
422422
`mlr3tuning <https://mlr3tuning.mlr-org.com/>`_ call
423-
`tnr(algorithm) <https://mlr3tuning.mlr-org.com/reference/mlr_sugar.html>`_.
423+
`tnr(algorithm) <https://mlr3tuning.mlr-org.com/reference/tnr.html>`_.
424424
`The corresponding chapter in the mlr3book <https://mlr3book.mlr-org.com/optimization.html#sec-model-tuning>`_ illustrates
425425
how the `Tuner <https://mlr3tuning.mlr-org.com/reference/Tuner.html>`_ class supports grid search, random search,
426426
generalized simulated annealing and non-linear optimization.

0 commit comments

Comments
 (0)