Functional deep learning library with NumPy and PyTorch integration
A refreshing functional take on deep learning, compatible with your favorite libraries
thinc$ python -c "from thinc.api import chain, with_array; print('Thinc imported successfully')"$ python -c "from thinc.api import Model, Relu, Softmax; model = chain(Relu(nO=64), Softmax()); print(model)"$ python -c "from thinc.api import Config; config = Config().from_str(''); print('Config loaded')"