backend-module
Main backend module, which is used for developing web-app logic and deploying AI model.
Installation
Run the following to install:
pip install tqatest
Usage
from tqatest.app.services.predict import MachineLearningModel
model = MachineLearningModel()
data_input = [1.0, 2.0, 3.0, 4.0]
result = model.predict(data_input)
print(result)
Developing HelloG
To install helloG, along with the tools you need to develop and run tests, run the following in your virtualenv:
$ pip install tqatest[dev]