From 4d8b2262b3ba118f6f1645345bd071920fa4e41a Mon Sep 17 00:00:00 2001 From: Eleven Liu Date: Fri, 24 May 2024 00:08:32 +0800 Subject: [PATCH] Remove text from titles --- README.md | 2 +- docs/index.rst | 2 +- main.py | 2 +- setup.cfg | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dca3cb670..cb21a68cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# LibMultiLabel — a Library for Multi-class and Multi-label Text Classification +# LibMultiLabel — a Library for Multi-class and Multi-label Classification LibMultiLabel is a library for binary, multi-class, and multi-label classification. It has the following functionalities diff --git a/docs/index.rst b/docs/index.rst index 347719ce9..7fb4aec9a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -LibMultiLabel - a Library for Multi-class and Multi-label Text Classification +LibMultiLabel - a Library for Multi-class and Multi-label Classification ============================================================================== LibMultiLabel is a library for binary, multi-class, and multi-label classification. It has the following functionalities diff --git a/main.py b/main.py index 26538d365..12564f6bb 100644 --- a/main.py +++ b/main.py @@ -246,7 +246,7 @@ def add_all_arguments(parser): def get_config(): - parser = argparse.ArgumentParser(add_help=False, description="multi-label learning for text classification") + parser = argparse.ArgumentParser(add_help=False, description="multi-label and multi-class classification") # load params from config file parser.add_argument("-c", "--config", help="Path to configuration file") diff --git a/setup.cfg b/setup.cfg index 12f041b4e..927d596c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,10 @@ [metadata] name = libmultilabel -version = 0.6.2 +version = 0.7.0 author = LibMultiLabel Team license = MIT License license_file = LICENSE -description = A library for multi-label text classification +description = A library for multi-class and multi-label classification long_description = See documentation here: https://www.csie.ntu.edu.tw/~cjlin/libmultilabel url = https://github.com/ASUS-AICS/LibMultiLabel project_urls =