From b2ab426e3d187e403abaf5f7c8f4e17c50193555 Mon Sep 17 00:00:00 2001 From: RektPunk <110188257+RektPunk@users.noreply.github.com> Date: Fri, 23 Aug 2024 12:41:15 +0900 Subject: [PATCH] [Release] v0.1.3 (#24) --- README.md | 18 +++++++++--------- pyproject.toml | 2 +- rektgbm/__init__.py | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index cb5a397..4ced6af 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/pyproject.toml b/pyproject.toml index 8e8a04c..d1b6ae9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" diff --git a/rektgbm/__init__.py b/rektgbm/__init__.py index 9f5c248..14144a4 100644 --- a/rektgbm/__init__.py +++ b/rektgbm/__init__.py @@ -3,4 +3,4 @@ from rektgbm.gbm import RektGBM from rektgbm.optimizer import RektOptimizer -__version__ = "0.1.2" +__version__ = "0.1.3"