thinc

Functional deep learning library with NumPy and PyTorch integration

pipmacoslinuxwindows
Try with needOr install directly
Source

About

A refreshing functional take on deep learning, compatible with your favorite libraries

Commands

thinc

Examples

Import and create a simple neural network layer$ python -c "from thinc.api import chain, with_array; print('Thinc imported successfully')"
Use Thinc for model composition with functional approach$ python -c "from thinc.api import Model, Relu, Softmax; model = chain(Relu(nO=64), Softmax()); print(model)"
Initialize and configure a Thinc model for training$ python -c "from thinc.api import Config; config = Config().from_str(''); print('Config loaded')"