├── .github └── workflows │ ├── python-package.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── varbert.png └── varbert_no_background.png ├── setup.cfg ├── setup.py ├── tests ├── binaries │ └── fauxware └── tests.py └── varbert ├── __init__.py ├── __main__.py ├── api.py ├── logger.py ├── model.py ├── models └── __init__.py └── text_processor.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/README.md -------------------------------------------------------------------------------- /assets/varbert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/assets/varbert.png -------------------------------------------------------------------------------- /assets/varbert_no_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/assets/varbert_no_background.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/setup.py -------------------------------------------------------------------------------- /tests/binaries/fauxware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/tests/binaries/fauxware -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/tests/tests.py -------------------------------------------------------------------------------- /varbert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/varbert/__init__.py -------------------------------------------------------------------------------- /varbert/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/varbert/__main__.py -------------------------------------------------------------------------------- /varbert/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/varbert/api.py -------------------------------------------------------------------------------- /varbert/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/varbert/logger.py -------------------------------------------------------------------------------- /varbert/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/varbert/model.py -------------------------------------------------------------------------------- /varbert/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /varbert/text_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binsync/varbert_api/HEAD/varbert/text_processor.py --------------------------------------------------------------------------------