Skip to content

Commit

Permalink
[Release] v0.1.3 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
RektPunk authored Aug 23, 2024
1 parent 3bf177f commit b2ab426
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ Here’s a quick example to showcase how you can use RektGBM in your machine lea
```bash
$ rektgbm --help
Usage: rektgbm [OPTIONS] DATA_PATH TEST_DATA_PATH TARGET [RESULT_PATH] [N_TRIALS]
╭─ Arguments ───────────────────────────────────────────────────────────────────────────────────────
* data_path TEXT Path to the training data file. [required]
* test_data_path TEXT Path to the test data file. [required]
* target TEXT Name of the target column. [required]
│ result_path [RESULT_PATH] Path to the prediction results. [default: predict.csv]
│ n_trials [N_TRIALS] Number of optimization trials. [default: 100]
╰───────────────────────────────────────────────────────────────────────────────────────────────────
╭─ Options ─────────────────────────────────────────────────────────────────────────────────────────
╭─ Arguments ───────────────────────────────────────────────────────────────────────────────────╮
* data_path TEXT Path to the training data file. [required]
* test_data_path TEXT Path to the test data file. [required]
* target TEXT Name of the target column. [required]
│ result_path [RESULT_PATH] Path to the prediction results. [default: predict.csv]
│ n_trials [N_TRIALS] Number of optimization trials. [default: 100]
╰───────────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Options ─────────────────────────────────────────────────────────────────────────────────────╮
│ --help Show this message and exit.
╰───────────────────────────────────────────────────────────────────────────────────────────────────
╰───────────────────────────────────────────────────────────────────────────────────────────────╯

$ rektgbm train.csv test.csv target predict.csv 100
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rektgbm"
version = "0.1.2"
version = "0.1.3"
description = "No-brainer machine learning solution to achieve satisfactory performance"
authors = ["RektPunk <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rektgbm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from rektgbm.gbm import RektGBM
from rektgbm.optimizer import RektOptimizer

__version__ = "0.1.2"
__version__ = "0.1.3"

0 comments on commit b2ab426

Please sign in to comment.