From 877814d45f865cb9b2b884e3357d659608bc5ee6 Mon Sep 17 00:00:00 2001 From: RektPunk Date: Wed, 18 Sep 2024 21:25:20 +0900 Subject: [PATCH] change readme and version --- README.md | 19 +++++++++++++++---- imlightgbm/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1e8ea9a..0b2de7c 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,28 @@ -# Imbalanced-LightGBM - +
+ +
+

+ + release + + + Pythonv + License Lint +

+ This repository contains implementations of weighted loss and focal loss functions specifically designed for classification problems using LightGBM. ## Installation -Not implemented yet. - +```bash +pip install imlightgbm +``` ## Example Please refer to the [**Examples**](https://github.com/RektPunk/Imbalance-LightGBM/tree/main/examples) provided for further clarification. diff --git a/imlightgbm/__init__.py b/imlightgbm/__init__.py index 1a6e365..ba7af74 100644 --- a/imlightgbm/__init__.py +++ b/imlightgbm/__init__.py @@ -1,4 +1,4 @@ # ruff: noqa from imlightgbm.engine import cv, train -__version__ = "0.0.1" +__version__ = "0.0.2" diff --git a/pyproject.toml b/pyproject.toml index 2171f12..8665946 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "imlightgbm" -version = "0.0.1" +version = "0.0.2" description = "LightGBM for label-imbalanced data with focal and weighted loss function" authors = ["RektPunk "] license = "MIT"