Spacy Task
We have also included a simply Spacy Disdat task. All it does is load up a Spacy model. Here we just want to show how to build your container to contain some non-Python code.
The $CODE/pipelines/en_core_web_sm
directory contains the English-trained CNN. We need to have this data in our container. We do that by:
Create a
MANIFEST.in
file at the same level assetup.py
And inside our
setup.py
we have theinclude_package_data=True
directive.
You've already built the container in the previous step with the MNIST example. So you can simply run the simple pipeline to see that it works.
Last updated