Compare commits

...

2 Commits

Author SHA1 Message Date
ad138b37d6 Bump version to 2.1.2 2022-07-21 11:49:59 -07:00
3634a10aeb Fix another emoji bug 2022-07-21 11:49:35 -07:00
2 changed files with 2 additions and 2 deletions

View File

@ -77,6 +77,6 @@ def compile(
model["__names__"] = names
model["__ngrams__"] = max_ngram_length
model["__version__"] = 3
model["__emoji__"] = int(tokenizer.has_emoji)
model["__emoji__"] = int(gptc.tokenizer.has_emoji)
return model

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "gptc"
version = "2.1.1"
version = "2.1.2"
description = "General-purpose text classifier"
readme = "README.md"
authors = [{ name = "Samuel Sloniker", email = "sam@kj7rrv.com"}]