diff --git a/README.md b/README.md index f912b9e..812e9d8 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Want to run aitextgen and finetune GPT-2? Use the Colab notebooks in the Demos s ## Upcoming Features -The current release (v0.1.X) of aitextgen **is considered to be a beta**, targeting the most common use cases. The Notebooks and examples written so far are tested to work, but more fleshing out of the docs/use cases will be done over the next few months in addition to fixing the known issues noted above. +The current release (v0.2.X) of aitextgen **is considered to be a beta**, targeting the most common use cases. The Notebooks and examples written so far are tested to work, but more fleshing out of the docs/use cases will be done over the next few months in addition to fixing the known issues noted above. The next versions of aitextgen (and one of the reasons I made this package in the first place) will have native support for _schema-based generation_. (see [this repo](https://github.com/minimaxir/gpt-2-keyword-generation) for a rough proof-of-concept) diff --git a/setup.py b/setup.py index a743a35..99c7288 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="aitextgen", packages=["aitextgen"], # this must be the same as the name above - version="0.1.1", + version="0.2.0", description="A robust Python tool for text-based AI training and generation using GPT-2.", long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown",