Compare commits

..

No commits in common. "ad138b37d682cf2c73ea9bc4dd2184d8cfcf83a5" and "72507872289f4ac4c5347a4bb3f3d07e92307670" have entirely different histories.

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(gptc.tokenizer.has_emoji)
model["__emoji__"] = int(tokenizer.has_emoji)
return model

View File

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