├── .gitignore ├── README.md ├── inferlight ├── __init__.py ├── data.py ├── worker.py └── wrapper.py ├── requirements.txt ├── setup.py └── test ├── bert_test.py └── dummy_test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/README.md -------------------------------------------------------------------------------- /inferlight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/inferlight/__init__.py -------------------------------------------------------------------------------- /inferlight/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/inferlight/data.py -------------------------------------------------------------------------------- /inferlight/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/inferlight/worker.py -------------------------------------------------------------------------------- /inferlight/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/inferlight/wrapper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cachetools -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/setup.py -------------------------------------------------------------------------------- /test/bert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/test/bert_test.py -------------------------------------------------------------------------------- /test/dummy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuwyh/InferLight/HEAD/test/dummy_test.py --------------------------------------------------------------------------------