Categories:

Social Share

Which ML libraries or frameworks are supported for deployment?

All the ML libraries which are available as pip packages (eg: pip install pkg_name) are supported for deployment.

Along with 'pip install pkg_name', if a library also requires additional manual installations or downloads, it should be handled in the inference code files provided or else the deployment may not work.

For example, when nltk package requires 'stopwords', 'punkt'; they can be handled in the inference code as below
import nltk nltk.data.path.append("/tmp") nltk.download(["punkt", "stopwords"], download_dir = "/tmp")​​ ​