Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove text from titles #371

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down
Loading