Compare commits

...

2 Commits

Author SHA1 Message Date
7ecb7dd90a
Bump version to 3.0.0 2022-11-23 17:48:46 -08:00
3340abbf15
Fix CLI tool 2022-11-23 17:47:27 -08:00
2 changed files with 5 additions and 8 deletions

View File

@ -72,8 +72,8 @@ def main() -> None:
).serialize()
)
elif args.subparser_name == "classify":
with open(args.model, "r") as f:
model = json.load(f)
with open(args.model, "rb") as f:
model = gptc.deserialize(f.read())
classifier = gptc.Classifier(model, args.max_ngram_length)

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "gptc"
version = "2.1.3"
version = "3.0.0"
description = "General-purpose text classifier"
readme = "README.md"
authors = [{ name = "Samuel Sloniker", email = "sam@kj7rrv.com"}]
@ -12,15 +12,12 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = []
dependencies = ["emoji"]
requires-python = ">=3.7"
[project.optional-dependencies]
emoji = ["emoji"]
[project.urls]
Homepage = "https://git.kj7rrv.com/kj7rrv/gptc"