├── .gitignore ├── LICENSE ├── README.md ├── bertify ├── __init__.py └── bertify.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khalidsaifullaah/BERTify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khalidsaifullaah/BERTify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khalidsaifullaah/BERTify/HEAD/README.md -------------------------------------------------------------------------------- /bertify/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" 2 | 3 | from .bertify import * -------------------------------------------------------------------------------- /bertify/bertify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khalidsaifullaah/BERTify/HEAD/bertify/bertify.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khalidsaifullaah/BERTify/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khalidsaifullaah/BERTify/HEAD/setup.py --------------------------------------------------------------------------------