Skip to main content

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

Project description

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

From the makers of spaCy, Prodigy and FastAPI

Thinc is a lightweight deep learning library that offers an elegant, type-checked, functional-programming API for composing models, with support for layers defined in other frameworks such as PyTorch, TensorFlow and MXNet. You can use Thinc as an interface layer, a standalone toolkit or a flexible way to develop new models. Previous versions of Thinc have been running quietly in production in thousands of companies, via both spaCy and Prodigy. We wrote the new version to let users compose, configure and deploy custom models built with their favorite framework.

Azure Pipelines codecov Current Release Version PyPi Version conda Version Python wheels Code style: black Open demo in Colab

🔥 Features

  • Type-check your model definitions with custom types and mypy plugin.
  • Wrap PyTorch, TensorFlow and MXNet models for use in your network.
  • Concise functional-programming approach to model definition, using composition rather than inheritance.
  • Optional custom infix notation via operator overloading.
  • Integrated config system to describe trees of objects and hyperparameters.
  • Choice of extensible backends, including JAX support (experimental).
  • Read more →

🚀 Quickstart

Thinc is compatible with Python 3.6+ and runs on Linux, macOS and Windows. The latest releases with binary wheels are available from pip.

pip install thinc==8.0.0a1

⚠️ Note that Thinc 8.0 is currently in alpha preview and not necessarily ready for production yet.

See the extended installation docs for details on optional dependencies for different backends and GPU. You might also want to set up static type checking to take advantage of Thinc's type system.

📓 Selected examples and notebooks

Also see the /examples directory and usage documentation for more examples. Most examples are Jupyter notebooks – to launch them on Google Colab (with GPU support!) click on the button next to the notebook name.

Notebook Description
intro_to_thinc
Open in Colab
Everything you need to know to get started. Composing and training a model on the MNIST data, using config files, registering custom functions and wrapping PyTorch, TensorFlow and MXNet models.
transformers_tagger_bert
Open in Colab
How to use Thinc, transformers and PyTorch to train a part-of-speech tagger. From model definition and config to the training loop.
pos_tagger_basic_cnn
Open in Colab
Implementing and training a basic CNN for part-of-speech tagging model without external dependencies and using different levels of Thinc's config system.
parallel_training_ray
Open in Colab
How to set up synchronous and asynchronous parameter server training with Thinc and Ray.

View more →

📖 Documentation & usage guides

Introduction Everything you need to know.
Concept & Design Thinc's conceptual model and how it works.
Defining and using models How to compose models and update state.
Configuration system Thinc's config system and function registry.
Integrating PyTorch, TensorFlow & MXNet Interoperability with machine learning frameworks
Layers API Weights layers, transforms, combinators and wrappers.
Type Checking Type-check your model definitions and more.

🗺 What's where

Module Description
thinc.api User-facing API. All classes and functions should be imported from here.
thinc.types Custom types and dataclasses.
thinc.model The Model class. All Thinc models are an instance (not a subclass) of Model.
thinc.layers The layers. Each layer is implemented in its own module.
thinc.shims Interface for external models implemented in PyTorch, TensorFlow etc.
thinc.loss Functions to calculate losses.
thinc.optimizers Functions to create optimizers. Currently supports "vanilla" SGD, Adam and RAdam.
thinc.schedules Generators for different rates, schedules, decays or series.
thinc.backends Backends for numpy, cupy and jax.
thinc.config Config parsing and validation and function registry system.
thinc.util Utilities and helper functions.

🐍 Development notes

Thinc uses black for auto-formatting, flake8 for linting and mypy for type checking. All code is written compatible with Python 3.6+, with type hints wherever possible. See the type reference for more details on Thinc's custom types.

👷‍♀️ Building Thinc from source

Building Thinc from source requires the full dependencies listed in requirements.txt to be installed. You'll also need a compiler to build the C extensions.

git clone https://github.com/explosion/thinc
cd thinc
python -m venv .env
source .env/bin/activate
export PYTHONPATH=`pwd`
pip install -r requirements.txt
python setup.py build_ext --inplace

🚦 Running tests

Thinc comes with an extensive test suite. The following should all pass and not report any warnings or errors:

python -m pytest thinc    # test suite
python -m mypy thinc      # type checks
python -m flake8 thinc    # linting

To view test coverage, you can run python -m pytest thinc --cov=thinc. We aim for a 100% test coverage. This doesn't mean that we meticulously write tests for every single line – we ignore blocks that are not relevant or difficult to test and make sure that the tests execute all code paths.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thinc-8.0.0a9.tar.gz (580.7 kB view details)

Uploaded Source

Built Distributions

thinc-8.0.0a9-cp38-cp38-win_amd64.whl (924.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

thinc-8.0.0a9-cp38-cp38-manylinux1_x86_64.whl (943.1 kB view details)

Uploaded CPython 3.8

thinc-8.0.0a9-cp38-cp38-macosx_10_9_x86_64.whl (963.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

thinc-8.0.0a9-cp37-cp37m-win_amd64.whl (916.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

thinc-8.0.0a9-cp37-cp37m-manylinux1_x86_64.whl (950.9 kB view details)

Uploaded CPython 3.7m

thinc-8.0.0a9-cp37-cp37m-macosx_10_9_x86_64.whl (959.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

thinc-8.0.0a9-cp36-cp36m-win_amd64.whl (916.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

thinc-8.0.0a9-cp36-cp36m-manylinux1_x86_64.whl (953.1 kB view details)

Uploaded CPython 3.6m

thinc-8.0.0a9-cp36-cp36m-macosx_10_9_x86_64.whl (966.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file thinc-8.0.0a9.tar.gz.

File metadata

  • Download URL: thinc-8.0.0a9.tar.gz
  • Upload date:
  • Size: 580.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9.tar.gz
Algorithm Hash digest
SHA256 e4f093ffec839c0f433b02ad80d2cb5134a4074a26414f5ed1d723c51796322c
MD5 b6137a914df683958485618a697a7dc1
BLAKE2b-256 26e3ca7c3c25b8ca0ad7d00d4b9b293928a4f1fc64ea45d23b08eb01b02be99f

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 924.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 19bb7d1905a68ecec7e6330667666c431d78eb0a3c819b68107ca59a0d981562
MD5 69edffba7e05c91044aeafab7cf63b98
BLAKE2b-256 f6505f45a0bc3fa5de18d852c7faaa8cc43a860ce2c73761b037d5954cc7323f

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 943.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e405f8ed32fc5105e4851b3b4a9c65bdbf4e6ca726c8885ceb10c1942de20b8
MD5 0a630fc1535e2e7b508a08931dc7c1ac
BLAKE2b-256 20c4123d8fce8bf203531031e9d50a8bbc7dad7c67255db513f32c699cf3ef29

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 963.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86d8ff2c41ed16d2f00bd7ba77a541fc2c8b974e0b70b0935f0a52418f67f156
MD5 24a05a4a044c48c07d8c0b34a5618c0c
BLAKE2b-256 cf846be18aafea814ce6a4fa643da49819ac465346450d2fb78f118c2e8e60dc

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 916.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ce2e194db2a9ac5e58f964a423c1cb030fdf709e4d5c1e75baa993c5a16a997b
MD5 0ff4b4f0fc3a41fef6b55de25ad00e13
BLAKE2b-256 a855ae82bdfcf1bc1f6dac3f4ba39f6d257a3e435e35533e90684538534c295f

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 950.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f382f99d388fc3ee05d58408d0400f7dd5c583e5d171e9eaeb644ea121eb55b2
MD5 9191216ab8ffb97d8be52999911d22ae
BLAKE2b-256 747e24cee9f83957dff261a5eeb5ce46cd0f87e8f0a82aed8b3bc1ee2e532cbe

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 959.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf6d6191f04bfe5fe04798dd102fff6152b337fd1d6d781c0f12fb18d80a3e9d
MD5 a62302ddf69f04c2fa2c7126147e94e5
BLAKE2b-256 08ac19558801220976bdf8a018f2c4645415c211680bc23d324afc6dbce6d391

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 916.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a5d14506b859315a852d81202a12153c191679fc918025cc83a29479af3ef8b5
MD5 3c981626fa4d21a7ef609ed7dcbd9649
BLAKE2b-256 e92aff0502d8ea66c54496e07f701fb49c2628610c3c81c9343cb2dbef56bb95

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 953.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e0fc31d48b1a5ff0423ecd80c67d76014427d5c2d6a44d353c9e195bacd0fb9
MD5 cca8567fee8bf9a39f86089472806950
BLAKE2b-256 57d7385aed1fb9145d1491b572c1f27177563462cdc773bd41bf36ec26a50a11

See more details on using hashes here.

File details

Details for the file thinc-8.0.0a9-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: thinc-8.0.0a9-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 966.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for thinc-8.0.0a9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebf48faee445f165fc1bae9139da6881c11c8d9419c9ffbf4ad8e7a476310347
MD5 96cc7cf52c2e7affe7bbf3ae72324dd5
BLAKE2b-256 543752e8be1716664fd1674933b63535e46128303a9d60e1f99600ab6cda2c18

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page