-
Notifications
You must be signed in to change notification settings - Fork 300
Commit e4863fe
Final changes for v0.1.0 (#341)
* [enhance] Increase the coverage (#336)
* [feat] Support statistics print by adding results manager object (#334)
* [feat] Support statistics print by adding results manager object
* [refactor] Make SearchResults extract run_history at __init__
Since the search results should not be kept in eternally,
I made this class to take run_history in __init__ so that
we can implicitly call extraction inside.
From this change, the call of extraction from outside is not recommended.
However, you can still call it from outside and to prevent mixup of
the environment, self.clear() will be called.
* [fix] Separate those changes into PR#336
* [fix] Fix so that test_loss includes all the metrics
* [enhance] Strengthen the test for sprint and SearchResults
* [fix] Fix an issue in documentation
* [enhance] Increase the coverage
* [refactor] Separate the test for results_manager to organize the structure
* [test] Add the test for get_incumbent_Result
* [test] Remove the previous test_get_incumbent and see the coverage
* [fix] [test] Fix reversion of metric and strengthen the test cases
* [fix] Fix flake8 issues and increase coverage
* [fix] Address Ravin's comments
* [enhance] Increase the coverage
* [fix] Fix a flake8 issu
* Update for release (#335)
* Create release workflow and CITATION.cff and update README, setup.py
* fix bug in pypy token
* fix documentation formatting
* TODO for docker image
* accept suggestions from shuhei
* add further options for disable_file_output documentation
* remove from release.yml
* [feat] Add templates for issue and PR with the Ravin's suggestions (#136)
* [doc] Add the workflow of the Auto-Pytorch (#285)
* [doc] Add workflow of the AutoPytorch
* [doc] Address Ravin's comment
* [FIX] Silence catboost (#338)
* set verbose=False in catboost
* fix flake
* change worst possible result of r2 (#340)
* Update README.md with link for master branch
* [FIX formatting in docs (#342)
* fix formatting in docs
* Update examples/40_advanced/example_resampling_strategy.py
* Update README.md, remove cat requirements.txt
Co-authored-by: nabenabe0928 <47781922+nabenabe0928@users.noreply.github.com>1 parent a1512d5 commit e4863fe
File tree
28 files changed
+3018
-259
lines changed- .github
- workflows
- autoPyTorch
- api
- evaluation
- pipeline/components
- setup/traditional_ml/traditional_learner
- training/metrics
- docs
- examples
- 20_basics
- 40_advanced
- figs
- test
- test_api
- .tmp_api
- test_pipeline
28 files changed
+3018
-259
lines changedLines changed: 48 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + | ||
44 | + | ||
45 | + | ||
46 | + | ||
47 | + | ||
48 | + |
Lines changed: 38 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + |
Lines changed: 33 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + |
Lines changed: 19 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + |
Lines changed: 81 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | - | ||
3 | + | ||
4 | 4 |
| |
5 | - | ||
6 | - | ||
7 | - | ||
5 | + | ||
8 | 6 |
| |
7 | + | ||
8 | + | ||
9 | + | ||
9 | 10 |
| |
10 | - | ||
11 | + | ||
12 | + | ||
11 | 13 |
| |
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
12 | 40 |
| |
13 | 41 |
| |
14 | 42 |
| |
| |||
25 | 53 |
| |
26 | 54 |
| |
27 | 55 |
| |
28 | - | ||
29 | - | ||
56 | + | ||
57 | + | ||
30 | 58 |
| |
31 | - | ||
32 | 59 |
| |
33 | 60 |
| |
34 | 61 |
| |
35 | 62 |
| |
63 | + | ||
64 | + | ||
65 | + | ||
66 | + | ||
67 | + | ||
68 | + | ||
69 | + | ||
70 | + | ||
71 | + | ||
72 | + | ||
73 | + | ||
74 | + | ||
75 | + | ||
76 | + | ||
77 | + | ||
78 | + | ||
79 | + | ||
80 | + | ||
81 | + | ||
82 | + | ||
83 | + | ||
84 | + | ||
85 | + | ||
86 | + | ||
87 | + | ||
88 | + | ||
89 | + | ||
90 | + | ||
91 | + | ||
92 | + | ||
93 | + | ||
94 | + | ||
95 | + | ||
96 | + | ||
97 | + | ||
98 | + | ||
99 | + | ||
100 | + | ||
101 | + | ||
102 | + | ||
103 | + | ||
104 | + | ||
105 | + | ||
106 | + | ||
36 | 107 |
| |
37 | 108 |
| |
38 | 109 |
| |
| |||
63 | 134 |
| |
64 | 135 |
| |
65 | 136 |
| |
66 | - | ||
67 | - | ||
137 | + | ||
138 | + | ||
68 | 139 |
| |
69 | 140 |
| |
70 | 141 |
| |
|
0 commit comments