-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed data type of trials argument. Added main documentation file.
- Loading branch information
1 parent
fc93c94
commit 31ca8e1
Showing
5 changed files
with
55 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<div align="center"> | ||
<h2>Configuration-free imbalanced learning</h2> | ||
|
||
The long-term goal of the project is to facilitate automated design of machine learning pipelines in the case of imbalanced distribution of target classes. | ||
</div> | ||
|
||
### Project status | ||
Currently, only binary classification setting is implemented. | ||
<br/> | ||
<br/> | ||
Benchmark experiments are available for [Auto-gluon](https://github.com/autogluon/autogluon) and Imba. | ||
### Prerequisites | ||
|
||
1. Python interpreter 3.10. | ||
2. Installation of requirements. | ||
|
||
### Usage example | ||
|
||
To run a benchmark just type in the terminal: | ||
``` | ||
./experiment.sh | ||
``` | ||
|
||
By default, benchmark for Imba will be run. To change to **Auto-gluon**, add the `ag` argument. | ||
<br/> | ||
<br/> | ||
Stdout is in a file. To change to **console** output, add the `c` argument. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hyperopt==0.2.7 | ||
imbalanced-ensemble==0.2.2 | ||
imbalanced-learn==0.12.3 | ||
openml==0.14.2 | ||
ray==2.40.0 | ||
scikit-learn==1.5.1 |