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 and Prodigy

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 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.
  • 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. Before you install Thinc and its dependencies, make sure that your pip, setuptools and wheel are up to date. For the most recent releases, pip 19.3 or newer is recommended.

pip install -U pip setuptools wheel
pip install thinc

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.

⚠️ If you have installed PyTorch and you are using Python 3.7+, uninstall the package dataclasses with pip uninstall dataclasses, since it may have been installed by PyTorch and is incompatible with Python 3.7+.

📓 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

Documentation Description
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 and cupy.
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
pip install -U pip setuptools wheel
pip install -r requirements.txt
pip install --no-build-isolation .

Alternatively, install in editable mode:

pip install -r requirements.txt
pip install --no-build-isolation --editable .

Or by setting PYTHONPATH:

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

This version

8.1.3

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.1.3.tar.gz (180.5 kB view details)

Uploaded Source

Built Distributions

thinc-8.1.3-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

thinc-8.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (804.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

thinc-8.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (759.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

thinc-8.1.3-cp310-cp310-macosx_11_0_arm64.whl (688.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

thinc-8.1.3-cp310-cp310-macosx_10_9_x86_64.whl (759.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

thinc-8.1.3-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

thinc-8.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (813.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

thinc-8.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (768.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

thinc-8.1.3-cp39-cp39-macosx_11_0_arm64.whl (692.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

thinc-8.1.3-cp39-cp39-macosx_10_9_x86_64.whl (766.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

thinc-8.1.3-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

thinc-8.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (817.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

thinc-8.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (769.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

thinc-8.1.3-cp38-cp38-macosx_11_0_arm64.whl (683.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

thinc-8.1.3-cp38-cp38-macosx_10_9_x86_64.whl (752.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

thinc-8.1.3-cp37-cp37m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

thinc-8.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (804.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

thinc-8.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (762.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

thinc-8.1.3-cp37-cp37m-macosx_10_9_x86_64.whl (746.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

thinc-8.1.3-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

thinc-8.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (807.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

thinc-8.1.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (765.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

File details

Details for the file thinc-8.1.3.tar.gz.

File metadata

  • Download URL: thinc-8.1.3.tar.gz
  • Upload date:
  • Size: 180.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for thinc-8.1.3.tar.gz
Algorithm Hash digest
SHA256 b62b5761ead7c9f82f038820605117530495df21b4636f3ddbe13fe19a1e5b36
MD5 11c89f32fd163760a964f99639a88c32
BLAKE2b-256 02c3c4f9f37f16c40cabdc17cad0d824ac4ba94ee418402e77410c511a77af6f

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: thinc-8.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for thinc-8.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb0f030a63b9244434ff1e2052e9658e3518d8aaf353bdd73e4c7621471217e8
MD5 940da268d37e1e4a6ba0931f9d104f5f
BLAKE2b-256 749373928d7b7c308b179dc5fd33651b1ca3ee0f0b684cdceaadcc362b35dc8c

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 472d573195331b7c1a8d2b908f6a0f6d2d0c04a0e19524060a6260dfc6fb35a3
MD5 7e3997f848063a2ff1d6b19e4871b2b3
BLAKE2b-256 231f04eb5ea1c1ea0acbf6ab776286a6737bfd7da6ab40cf5484a9a7ff6a0e44

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60a5215cb7595b163474b015a301bc798f3da702a55865e6eb5661db13865f28
MD5 a19411c922ab740d86c963e5dbaba78f
BLAKE2b-256 8f208de0ccefc86bd2560b165305e7e00ad2400d3e37294401a3dea415897ede

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9159d033600a4c772eba7f4dcec7ae80db7968bd6f8b1faaf8c2809b71453f4c
MD5 f4c9c528c258ea264166d3c3b25f8e1e
BLAKE2b-256 718cf654b95297dc3c227e894165c8df7215ed1da9e6008c0d49793894b754fa

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87c81bfef92946336f28d780332866762c393c85daf7f682b46ee4daab3d1536
MD5 24c0f0af6a90bd1eaf86372af0c22652
BLAKE2b-256 fc14c25f53db9c89d178155c32dfe7d94f7410354fd852ebe2477c03f270696d

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: thinc-8.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for thinc-8.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 190464cc88c62d64ee23a61afbec3284e19521d881c5edad969d407c0039f5cc
MD5 c2b9eee2e7d865b50d1214de975edf47
BLAKE2b-256 4865bf4c0bdddd4014271ad9d7628ebc4fedd4c417e1a015bfc13abb387ce252

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f64bbbb6e7c8e416e3e3d3c41fd64ef49318d0011b5011c5ec66a5a7d058b52c
MD5 b89b526ef6a0e312c416aa297b84da4f
BLAKE2b-256 f06057742902be15e7ea4a8dd83a787fc19851a35e1e6270a6c821d1be31f418

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac5f8238084587f19927627eb919d7b142ee85c0d89662bdaa4ff5d92f6891ab
MD5 6e178dd7785bd76e9fc69ea43294d264
BLAKE2b-256 970b1d4b5f5cba91ef1da1bdb1fbf0c34a231a6614fd1e775fa9dd87b9fda9e9

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9a7c30a4f227f26c3e3b47872826436d1c8e567f16bfaa4c8cb517822e31ab
MD5 b6b219d7cb829cdb4bbfb77685e5a502
BLAKE2b-256 3d1793b4a0a42e3e1af5df5d3b06a86304ea2fb974d2334d3c1068f17d107643

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc955a2b20393bc0f0ca5961090c9ad4573ad1e53029b4f19989d206048e5b5c
MD5 0c48c92dd99a07e8f4d90382b39d9f6b
BLAKE2b-256 ea47e31526a3e78ec5028b96a70654585d41a7675311e8d8101cb88e857abe24

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: thinc-8.1.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for thinc-8.1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aa33dddaee4a0498ab77337632028c2cf791e671b5e5e4664c4862837a571a65
MD5 d2c217dbd918197f2898bbee7b46f29d
BLAKE2b-256 a3846a38fc6fe6aef8c400b622e781894d845b537aa03ada84b200d0cda5f8b4

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8e493e948a2cc3f8881e30d12e56501660ce8a34d61d82c1fc6ee162430f10c
MD5 9c3586502e54d586ee547f4e12ba6b4d
BLAKE2b-256 63215e45218e03cc8fcbbc2f821ba7d4de1b357582f1127735a4fd84480cd3e3

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a81adffd22f44095762628a169aca41e64358d1b9294ade23c8ce64725609fb
MD5 d983d0b7108424ba50194a8ce9692631
BLAKE2b-256 0d8de9d84ad682e049b680990d5f702f9dcc045914ad2f6d20bb35ecb3e71561

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 057b14c4445e9377bd3eaee2400f990f386f91ad40e64c31a63aac4a961527bc
MD5 278be2863675a51581744eeb1eb9c7d7
BLAKE2b-256 cddfc940247683f12015951a76389ca04dd74855d639c8d1931f7b6f19b13107

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1204e950b645fd6336008382ea68da7bdbf4063c22f4fc386045e117277b52b
MD5 3512a64764356cc1797cce45c1774fb6
BLAKE2b-256 295e90d144393143de32ae526fb37a7faabcedaacbc073b911a1d72823f2e16a

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: thinc-8.1.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for thinc-8.1.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3b6cc4b29e5124d45c5f3598be29ad9abfb3fe4d126b9f34ce0a11f2be1fdcf9
MD5 d8541d8e26b41417a3f4452a8bd09a67
BLAKE2b-256 301fe12e88ee60387eef18a343f57b5574c1c23f3a1f41bbb6dd7b218eabc231

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58da2eef362e574f9c2ea8afee196e6885f34aafbe2e309fea1e556653fdaabd
MD5 c51f4f2354f0928c121f59409df7058e
BLAKE2b-256 9d32b5a717a2360a3ebb25b257464440a40fffb12c8009e6408531ad1d2c4583

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e67ef34a89ab86b57b905f6ab8c69a9ee4e910e080f9b357daa19856c6c809f
MD5 5174412b665e1dced62742c984fcf732
BLAKE2b-256 29cb094448c49a5fa5e847559bf09af83a121938101c550da3a0e4c2fe3e0bae

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1dae14b3fc2f3b5baa46e700db556bb0f6162484b4dab4009f0428904132cd2
MD5 159d8b9558ce006d450b9a543edab94c
BLAKE2b-256 dc8202deee9fb4fe347b9af284cfa0d2bd4cd8a4b51b13bb4db27a009517ca56

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: thinc-8.1.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for thinc-8.1.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 75ae4d65e3a02e69d19ef9ef180abf4ce6e24fc70eef58c8372a10e729cbfc92
MD5 70fe63098b7901cdfe56e2b4c09da0da
BLAKE2b-256 e37fbfb56f44a29f15120b754c120b397477874a3c5866961d21955ed716f095

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d87fe4196615b0766fb91778d3a39ef1e25321b58176c59ce3005431d55131f
MD5 8907957e2193d16c41d585672d8ec9ca
BLAKE2b-256 ae22e627c92b89938f5c14234e4e7cb341f5953532ea8277fafeb149178331dc

See more details on using hashes here.

File details

Details for the file thinc-8.1.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thinc-8.1.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fddab9a19947779c97a2f3e50287debc113c94a54553a73f402a1dc47d436adc
MD5 eb2a3e8b96ad5c887752c14e3fdb251b
BLAKE2b-256 796c4876277751139bdc2dbbc7f61cbddae059412462878a6b26b09552d98e50

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