v0.7.0-beta
- For the latest news, blog posts, tutorials, papers, etc. related to Snorkel, check out snorkel.stanford.edu!
- Get set up quickly
- Try the tutorials
- Read the documentation
Snorkel is a system for rapidly creating, modeling, and managing training data. Today's state-of-the-art machine learning models require massive labeled training sets--which usually do not exist for real-world applications. Instead, Snorkel is based around the new data programming paradigm, in which the developer focuses on writing a set of labeling functions, which are just scripts that programmatically label data. The resulting labels are noisy, but Snorkel automatically models this process—learning, essentially, which labeling functions are more accurate than others—and then uses this to train an end model (for example, a deep neural network in TensorFlow).
By modeling a noisy training set creation process in this way, we can take potentially low-quality labeling functions from the user, and use these to train high-quality end models. We see Snorkel as providing a general framework for many weak supervision techniques, and as defining a new programming model for weakly-supervised machine learning systems.
Check out a new blog post and accompanying SIGMOD paper on Snorkel's usage at Google and some thoughts about applying weak supervision at industrial scale!
Read a recent one-pager about Snorkel and the Software 2.0 vision!
For an alternative implementation of data programming with improved scalability and support for multi-task supervision, check out Snorkel MeTaL.
We're lucky to have some amazing collaborators who are currently using Snorkel!
However, Snorkel is very much a work in progress, so we're eager for any and all feedback... let us know what you think and how we can improve Snorkel in the Issues section!
- Snorkel: Rapid Training Data Creation with Weak Supervision (VLDB 2018)
- Data Programming: Creating Large Training Sets, Quickly (NeurIPS 2016)
- Learning the Structure of Generative Models without Labeled Data (ICML 2017)
- Training Complex Models with Multi-Task Weak Supervision (AAAI 2019)
- The Role of Massively Multi-Task and Weak Supervision in Software 2.0 (CIDR 2019)
- Snorkel: Fast Training Set Generation for Information Extraction (SIGMOD DEMO 2017)
- Inferring Generative Model Structure with Static Analysis (NeurIPS 2017)
- Data Programming with DDLite: Putting Humans in a Different Part of the Loop (HILDA @ SIGMOD 2016; note Snorkel was previously DDLite)
- Socratic Learning: Correcting Misspecified Generative Models using Discriminative Models
- Fonduer: Knowledge Base Construction from Richly Formatted Data (SIGMOD 2018)
- Learning to Compose Domain-Specific Transformations for Data Augmentation (NeurIPS 2017)
- Gaussian Quadrature for Kernel Features (NeurIPS 2017)
This section has the commands to quickly get started running Snorkel. For more detailed installation instructions, see the Installation section below. These instructions assume that you already have conda installed.
First, download and extract a copy of the Snorkel directory from a GitHub release (version 0.7.0 or greater).
Then navigate to the root of the snorkel
directory in a terminal and run the following:
# Install the environment
conda env create --file=environment.yml
# Activate the environment
source activate snorkel
# Install snorkel in the environment
pip install .
# Optionally: You may need to explicitly set the Jupyter Notebook kernel
python -m ipykernel install --user --name snorkel --display-name "Python (snorkel)"
# Activate jupyter widgets
jupyter nbextension enable --py widgetsnbextension
# Initiate a jupyter notebook server
jupyter notebook
Then a Jupyter notebook tab will open in your browser. From here you can run existing Snorkel notebooks or create your own.
From within the Jupyter browser, navigate to the tutorials
directory and try out one of the existing notebooks!
The introductory tutorial in tutorials/intro
covers the entire Snorkel workflow, showing how to extract spouse relations from news articles.
You can also check out all the great materials from the recent Mobilize Center-hosted Snorkel workshop!
- PyTorch classifiers
- Installation now via Conda and
pip
- Now spaCy is the default parser (v1), with support for v2
- And many more fixes, additions, and new material!
- Support for categorical classification, including "dynamically-scoped" or blocked categoricals (see tutorial)
- Support for structure learning (see tutorial, ICML 2017 paper)
- Support for labeled data in generative model
- Refactor of TensorFlow bindings; fixes grid search and model saving / reloading issues (see
snorkel/learning
) - New, simplified Intro tutorial (here)
- Refactored parser class and support for spaCy as new parser
- Support for easy use of the BRAT annotation tool (see tutorial)
- Initial Spark integration, for scale out of LF application (see tutorial)
- Tutorial on using crowdsourced data here
- Integration with Apache Tika via the Tika Python binding.
- And many more fixes, additions, and new material!
Starting with version 0.7.0, Snorkel should be installed as a Python package using pip
.
However, installing Snorkel via pip
will not install dependencies, which are required for Snorkel to run.
To manage its dependencies, Snorkel uses conda, which allows specifying an environment via an environment.yml
file.
This documentation covers two common cases (usage and development) for setting up conda environments for Snorkel.
In both cases, the environment can be activated using conda activate snorkel
and deactivated using conda deactivate
(for versions of conda prior to 4.4, replace conda
with source
in these commands).
Users just looking to try out a Snorkel tutorial notebook should see the quick-start instructions above.
This setup is intended for users who would like to use Snorkel in their own applications by importing the package.
In such cases, users should define a custom environment.yml
to manage their project's dependencies.
We recommend starting with the environment.yml
in this repository.
The below modifications can help customize it for your needs:
- Specifying versions for the listed packages, such as changing
python
topython=3.6.5
. Versioned specification of your environment is critical to reproducibility and ensuring dependency updates do not break your pipeline. When first setting your package versions, you likely want to start with the latest versions available on the conda-forge channel, unless you have a reason to do otherwise. - Adding other packages to your environment as required by your use case.
Consider maintaining alphabetical sorting of packages in
environment.yml
to assist with maintainability. In addition, we recommend installing packages via pip, only if they are not available in the conda-forge channel. - Add the
snorkel
package installation to yourenvironment.yml
, under the- pip
section. Of course, we suggest versioning snorkel, which you can do via a release number or commit hash (to access more bleeding edge functionality)
# Versioned via release tag
- git+https://github.com/HazyResearch/snorkel@v0.6.3
# Versioned via commit hash (commit hash below is fake to ensure you change it)
- git+https://github.com/HazyResearch/snorkel@7eb7076f70078c06bef9752f22acf92fd86e616a
Finally, consider versioning the numbskull
and treedlib
pip dependencies by changing master
to their latest commit hash on GitHub.
This setup is intended for users who have cloned this repository and would like to access the environment for development.
This approach installs the snorkel
package in development mode, meaning that changes you make to the source code will automatically be applied to the snorkel
package in the environment.
# From the root direcectory of this repo run the following command.
conda env create --file=environment.yml
# Activate the conda environment (if using a version of conda below 4.4, use "source" instead of "conda")
conda activate snorkel
# Install snorkel in development mode
pip install --editable .
Snorkel can be installed directly from its GitHub repository via:
# WARNING: read installation section before running this command! This command
# does not install any dependencies. It installs the latest master version but
# you can change master to tag or commit
pip install git+https://github.com/HazyResearch/snorkel@master
Note: Currently the Viewer
is supported on the following versions:
jupyter
: 4.1jupyter notebook
: 4.2
Many questions about Snorkel get answered in the issues section--along with general discussions and conversations of interest. We tag these all as "Q&A" and save them here
We like issues as a place to put bugs, questions, feature requests, etc- don't be shy! If submitting an issue about a bug, however, please provide a pointer to a notebook (and relevant data) to reproduce it.
Note: if you have an issue with the matplotlib install related to the module freetype
, see this post; if you have an issue installing ipython, try upgrading setuptools
Snorkel is built specifically with usage in Jupyter/IPython notebooks in mind; an incomplete set of best practices for the notebooks:
It's usually most convenient to write most code in an external .py
file, and load as a module that's automatically reloaded; use:
%load_ext autoreload
%autoreload 2
A more convenient option is to add these lines to your IPython config file, in ~/.ipython/profile_default/ipython_config.py
:
c.InteractiveShellApp.extensions = ['autoreload']
c.InteractiveShellApp.exec_lines = ['%autoreload 2']
Sponsored in part by DARPA as part of the D3M program under contract No. FA8750-17-2-0095 and the SIMPLEX program under contract number N66001-15-C-4043, and also by the NIH through the Mobilize Center under grant number U54EB020405.