Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First draft for user code introspection into components #1505

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8a9d53f
First draft
eddiebergman Jun 9, 2022
ad0675f
Fix moo things (#1501)
eddiebergman Jun 14, 2022
b44b1c1
Create simple example and doc for naive early stopping (#1476)
eddiebergman Jun 14, 2022
4d8401f
Rename `rval` to `return_value` or `run_value` (#1504)
eddiebergman Jun 14, 2022
ed60fc1
Bump actions/setup-python from 3 to 4 (#1511)
dependabot[bot] Jun 14, 2022
b98b3d9
Bump actions/download-artifact from 2 to 3 (#1512)
dependabot[bot] Jun 14, 2022
58d2316
Bump codecov/codecov-action from 2 to 3 (#1513)
dependabot[bot] Jun 14, 2022
147de23
Bump actions/upload-artifact from 2 to 3 (#1514)
dependabot[bot] Jun 14, 2022
0ae2463
Fix logging server cleanup (#1503)
eddiebergman Jun 15, 2022
8d82be8
Bump peter-evans/find-comment from 1 to 2 (#1520)
dependabot[bot] Jun 15, 2022
9002fca
Bump actions/stale from 4 to 5 (#1521)
dependabot[bot] Jun 15, 2022
c69800d
Remove references to validation set in evaluator (#1517)
eddiebergman Jun 17, 2022
9d63cb5
Fix timeouts related to metalearnings tests (#1508)
eddiebergman Jun 17, 2022
5e21e9c
Fix prediction fails with MOO ensemble and dummy is best (#1518)
eddiebergman Jun 23, 2022
ca46861
Fix no _preprocessors attribute
eddiebergman Jun 23, 2022
f0c8ecd
fix-1527-Fix-mlp-regressor-test-fixture-values (#1528)
eddiebergman Jun 23, 2022
4f691a1
fix docker workflow (#1526)
eddiebergman Jun 23, 2022
44b956c
First draft
eddiebergman Jun 9, 2022
c64f0fd
Fix no _preprocessors attribute
eddiebergman Jun 23, 2022
b03dddd
Revert "fix docker workflow (#1526)"
eddiebergman Jun 24, 2022
59e60e1
Merge branch 'document_model_capabilities' of github.com:automl/auto-…
eddiebergman Jun 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
submodules: recursive

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
submodules: recursive

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-baselines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# value: The python version used by the installed system

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ steps.python-version.outputs.value }}

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
# results_path: path to the benchmark results

- name: Upload Results as Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: baselines
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
submodules: recursive

- name: Setup Python 3.7
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.7

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:
pytest-args: >-
--forked
--durations=20
--timeout=300
--timeout=600
--timeout-method=thread
-s

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
submodules: recursive

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Upload coverage
if: matrix.code-cov && always()
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true
10 changes: 5 additions & 5 deletions .github/workflows/regressions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
# value: The python version used by the installed system

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ steps.python-version.outputs.value }}

Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
# value: The python version used by the installed system

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ steps.python-version.outputs.value }}

Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
# - baseline_regression_x_x_x.csv

- name: Download workflow artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: artifacts

Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
# compared_means: path to the results of regression test vs baseline

- name: Upload all results together as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ github.repository_owner }}_${{ steps.extract.outputs.branch }}_${{ github.sha }}
path: |
Expand All @@ -327,7 +327,7 @@ jobs:
&& github.event.action == 'labeled'
&& github.event.label.name == 'regression-tests'
)
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: comment_finder
with:
issue-number: ${{ github.event.pull_request.number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
- uses: actions/stale@v5
with:
days-before-stale: 60
days-before-close: 7
Expand Down
Loading