• Stars
    star
    420
  • Rank 100,899 (Top 3 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created about 6 years ago
  • Updated almost 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Snorkel MeTaL: A framework for training models with multi-task weak supervision

This repository is in maintenance mode as of 15 Aug. 2019. See Project Status for details.

Snorkel MeTaL

Build Status

v0.5.0

Snorkel MeTaL is the multi-task learning (MTL) extension of Snorkel prior to Snorkel v0.9, at which point the projects were merged.

Contents

Project Status

The Snorkel project is more active than ever! With the release of Snorkel v0.9 in Aug. 2019, we added support for new training data operators (transformation functions and slicing functions, in addition to labeling functions), ported the label model algorithm first introduced in Snorkel MeTaL, added a Snorkel webpage with additional resources and fresh batch of tutorials, simplified installation options, etc.

As part of that major release, we integrated the best parts of Snorkel MeTaL back into the main Snorkel repository (including flexible MTL modeling), and improved upon many of them. For those starting new projects in Snorkel, we strongly recommend building on top of the main Snorkel repository.

At the same time, we recognize that many users built successful applications and extensions on Snorkel MeTaL. For that reason, we will continue to make that code available in this repository. However, this repository is officially in maintenance mode as of 15 Aug. 2019. We intend to keep the repository functioning with its current feature set to support existing applications built on it but will not be adding any new features or functionality.

If you would like to stay informed of progress in the Snorkel open source project, join the Snorkel email list for relatively rare announcements (e.g., major releases, new tutorials, etc.) or the Snorkel community forum on Spectrum for more regular discussion.

Motivation

This project builds on Snorkel in an attempt to understand how massively multi-task supervision and learning changes the way people program. Multitask learning (MTL) is an established technique that effectively pools samples by sharing representations across related tasks, leading to better performance with less training data (for a great primer of recent advances, see this survey). However, most existing multi-task systems rely on two or three fixed, hand-labeled training sets. Instead, weak supervision opens the floodgates, allowing users to add arbitrarily many weakly-supervised tasks. We call this setting massively multitask learning, and envision models with tens or hundreds of tasks with supervision of widely varying quality. Our goal with the Snorkel MeTaL project is to understand this new regime, and the programming model it entails.

More concretely, Snorkel MeTaL is a framework for using multi-task weak supervision (MTS), provided by users in the form of labeling functions applied over unlabeled data, to train multi-task models. Snorkel MeTaL can use the output of labeling functions developed and executed in Snorkel, or take in arbitrary label matrices representing weak supervision from multiple sources of unknown quality, and then use this to train auto-compiled MTL networks.

Snorkel MeTaL uses a new matrix approximation approach to learn the accuracies of diverse sources with unknown accuracies, arbitrary dependency structures, and structured multi-task outputs. This makes it significantly more scalable than our previous approaches.

Installation

[1] Install anaconda: Instructions here: https://www.anaconda.com/download/

[2] Clone the repository:

git clone https://github.com/HazyResearch/metal.git
cd metal

[3] Create virtual environment:

conda env create -f environment.yml
source activate metal

[4] Run unit tests:

nosetests

If the tests run successfully, you should see 50+ dots followed by "OK". Check out the tutorials to get familiar with the Snorkel MeTaL codebase!

Or, to use Snorkel Metal in another project, install it with pip:

pip install snorkel-metal

References

Blog Posts

Q&A

If you are looking for help regarding how to use a particular class or method, the best references are (in order):

  • The docstrings for that class
  • The MeTaL Commandments
  • The corresponding unit tests in tests/
  • The Issues page (We tag issues that might be particularly helpful with the "reference question" label)

Sample Usage

This sample is for a single-task problem. For a multi-task example, see tutorials/Multitask.ipynb.

"""
n = # data points
m = # labeling functions
k = cardinality of the classification task

Load for each split:
L: an [n,m] scipy.sparse label matrix of noisy labels
Y: an n-dim numpy.ndarray of target labels
X: an n-dim iterable (e.g., a list) of end model inputs
"""

from metal.label_model import LabelModel, EndModel

# Train a label model and generate training labels
label_model = LabelModel(k)
label_model.train_model(L_train)
Y_train_probs = label_model.predict_proba(L_train)

# Train a discriminative end model with the generated labels
end_model = EndModel([1000,10,2])
end_model.train_model(train_data=(X_train, Y_train_probs), valid_data=(X_dev, Y_dev))

# Evaluate performance
score = end_model.score(data=(X_test, Y_test), metric="accuracy")

Note for Snorkel users: Snorkel MeTaL, even in the single-task case, learns a slightly different label model than Snorkel does (e.g. here we learn class-conditional accuracies for each LF, etc.)---so expect slightly different (hopefully better!) results.

Release Notes

Major changes in v0.5:

  • Introduction of Massive Multi-Task Learning (MMTL) package in metal/mmtl/ with tutorial.
  • Additional logging improvements from v0.4

Major changes in v0.4:

  • Upgrade to pytorch v1.0
  • Improved control over logging/checkpointing/validation
    • More modular code, separate Logger, Checkpointer, LogWriter classes
    • Support for user-defined metrics for validation/checkpointing
    • Logging frequency can now be based on seconds, examples, batches, or epochs
  • Naming convention change: hard (int) labels -> preds, soft (float) labels -> probs

Developer Guidelines

First, read the MeTaL Commandments, which describe the major design principles, terminology, and style guidelines for Snorkel MeTaL.

If you are interested in contributing to Snorkel MeTaL (and we welcome whole-heartedly contributions via pull requests!), follow the setup guidelines above, then run the following additional command:

make dev

This will install a few additional tools that help to ensure that any commits or pull requests you submit conform with our established standards. We use the following packages:

  • isort: import standardization
  • black: automatic code formatting
  • flake8: PEP8 linting

After running make dev to install the necessary tools, you can run make check to see if any changes you've made violate the repo standards and make fix to fix any related to isort/black. Fixes for flake8 violations will need to be made manually.

GPU Usage

MeTaL supports GPU usage, but does not include this in automatically-run tests; to run these tests, first install the requirements in tests/gpu/requirements.txt, then run:

nosetests tests/gpu

More Repositories

1

flash-attention

Fast and memory-efficient exact attention
Python
3,673
star
2

deepdive

DeepDive
Shell
1,949
star
3

state-spaces

Sequence Modeling with Structured State Spaces
Jupyter Notebook
1,372
star
4

ThunderKittens

Tile primitives for speedy kernels
Cuda
1,324
star
5

data-centric-ai

Resources for Data Centric AI
TeX
1,070
star
6

safari

Convolutions for Sequence Modeling
Assembly
841
star
7

meerkat

Creative interactive views of any dataset.
Python
814
star
8

hgcn

Hyperbolic Graph Convolutional Networks in PyTorch.
Python
556
star
9

ama_prompting

Ask Me Anything language model prompting
Python
530
star
10

hyena-dna

Official implementation for HyenaDNA, a long-range genomic foundation model built with Hyena
Assembly
528
star
11

m2

Repo for "Monarch Mixer: A Simple Sub-Quadratic GEMM-Based Architecture"
Assembly
507
star
12

H3

Language Modeling with the H3 State Space Model
Assembly
493
star
13

evaporate

This repo contains data and code for the paper "Language Models Enable Simple Systems for Generating Structured Views of Heterogeneous Data Lakes"
Python
467
star
14

manifest

Prompt programming with FMs.
Python
437
star
15

pdftotree

🌲 A tool for converting PDF into hOCR with text, tables, and figures being recognized and preserved.
Python
403
star
16

fonduer

A knowledge base construction engine for richly formatted data
Python
403
star
17

hyperbolics

Hyperbolic Embeddings
Python
364
star
18

flyingsquid

More interactive weak supervision with FlyingSquid
Python
310
star
19

legalbench

An open science effort to benchmark legal reasoning in foundation models
Python
282
star
20

KGEmb

Hyperbolic Knowledge Graph embeddings.
Python
242
star
21

flash-fft-conv

FlashFFTConv: Efficient Convolutions for Long Sequences with Tensor Cores
C++
242
star
22

aisys-building-blocks

Building blocks for foundation models.
242
star
23

bootleg

Self-Supervision for Named Entity Disambiguation at the Tail
Python
211
star
24

HypHC

Hyperbolic Hierarchical Clustering.
Python
186
star
25

TART

TART: A plug-and-play Transformer module for task-agnostic reasoning
Python
184
star
26

based

Code for exploring Based models from "Simple linear attention language models balance the recall-throughput tradeoff"
Python
178
star
27

fly

Python
174
star
28

tanda

Learning to Compose Domain-Specific Transformations for Data Augmentation
Python
169
star
29

spacetime

Code for SpaceTime 🌌⏱️. Proposed in Effectively Modeling Time Series with Simple Discrete State Spaces, ICLR 2023.
Python
156
star
30

butterfly

Butterfly matrix multiplication in PyTorch
Python
154
star
31

zoology

Understand and test language model architectures on synthetic tasks.
Python
149
star
32

babble

A system for generating training labels via natural language explanations
Python
144
star
33

hippo-code

Python
139
star
34

EmptyHeaded

Your worst case is our best case.
C++
136
star
35

domino

Python
133
star
36

blocking-tutorial

C++
127
star
37

mindbender

Tools for iterative knowledge base development with DeepDive
CoffeeScript
116
star
38

reef

Automatically labeling training data
Jupyter Notebook
103
star
39

fonduer-tutorials

A collection of simple tutorials for using Fonduer
Jupyter Notebook
100
star
40

fm_data_tasks

Foundation Models for Data Tasks
Python
92
star
41

TreeStructure

Table Extraction Tool
Jupyter Notebook
90
star
42

epoxy

Interactive Model Iteration with Weak Supervision and Pre-Trained Embeddings
Python
76
star
43

CaffeConTroll

C++
75
star
44

HoroPCA

Hyperbolic PCA via Horospherical Projections
Python
65
star
45

structured-nets

Structured matrices for compressing neural networks
Python
64
star
46

hidden-stratification

Combating hidden stratification with GEORGE
Jupyter Notebook
60
star
47

eclair-agents

Jupyter Notebook
50
star
48

numbskull

Numba-based version of DimmWitted Gibbs sampler
Python
45
star
49

model-patching

Model Patching: Closing the Subgroup Performance Gap with Data Augmentation
Python
42
star
50

cs145-notebooks-2016

Public materials for the Fall 2016 offering of CS145
Jupyter Notebook
35
star
51

skill-it

Skill-It! A Data-Driven Skills Framework for Understanding and Training Language Models
Jupyter Notebook
34
star
52

mandoline

(ICML 2021) Mandoline: Model Evaluation under Distribution Shift
Python
30
star
53

mongoose

A Learnable LSH Framework for Efficient NN Training
Python
28
star
54

thanos-code

Code release for the paper Perfectly Balanced: Improving Transfer and Robustness of Supervised Contrastive Learning
Python
28
star
55

tuffy

Tuffy, a Markov Logic Network solver
Java
23
star
56

snorkel-superglue

Applying Snorkel to SuperGLUE
Jupyter Notebook
23
star
57

ukb-cardiac-mri

Weakly Supervised MRI Series Classification for the UK Biobank
Python
22
star
58

correct-n-contrast

Official code repository for Correct-N-Contrast
Python
20
star
59

ludwig-benchmarking-toolkit

Ludwig benchmark
Python
19
star
60

ddlog

Compiler for writing DeepDive applications in a Datalog-like language — ⚠️🚧🛑 REPO MOVED TO DEEPDIVE 👇🏿
Scala
19
star
61

augmentation_code

Reproducible code for Augmentation paper
Python
18
star
62

smallfry

Python
18
star
63

tabi

Code release for Type-Aware Bi-Encoders for Open-Domain Entity Retrieval
Python
18
star
64

lp_rffs

Low precision random Fourier features for kernel approximation
Python
17
star
65

sampler

DimmWitted Gibbs Sampler in C++ — ⚠️🚧🛑 REPO MOVED TO DEEPDIVE 👉🏿
C++
17
star
66

random_embedding

Python
16
star
67

snorkel-biocorpus

Python
16
star
68

bazaar

JavaScript
14
star
69

ddbiolib

DeepDive Biomedical Tools
Python
13
star
70

anchor-stability

A study of the downstream instability of word embeddings
Jupyter Notebook
12
star
71

Omnivore

Omnivore Optimizer and Distributed CcT
C++
12
star
72

dd-genomics

The Genomics DeepDive project
Python
11
star
73

embroid

Embroid: Unsupervised Prediction Smoothing Can Improve Few-Shot Classification
Jupyter Notebook
11
star
74

dimmwitted

C++
10
star
75

medical-ned-integration

Cross-domain data integration for named entity disambiguation in biomedical text
Python
10
star
76

torchhalp

Python
9
star
77

cross-modal-ws-demo

HTML
9
star
78

liger

Liger: Fusing Weak Supervision and Model Embeddings
Python
8
star
79

treedlib

Jupyter Notebook
8
star
80

Accelerated-PCA

Accelerated Stochastic Power Iteration with Momentum
Jupyter Notebook
8
star
81

hyperE

HTML
7
star
82

chinstrap

C++
6
star
83

ivy-tutorial

An Introductory Tutorial for Ivy
Jupyter Notebook
6
star
84

quadrature-features

Code to generate kernel features using Gaussian quadrature
Python
5
star
85

icij-maude

Weakly supervised classification of adverse event reports from the FDA's MAUDE database.
Python
5
star
86

observational

Observational Supervision for Medical Image Classification using Gaze Data
Jupyter Notebook
5
star
87

librarian

DeepDive Librarian for managing all data sets we publish and receive
Python
3
star
88

halp

Python
3
star
89

bert-pretraining

Python
2
star
90

d3m-model-search

D3M Model Search Component
Python
2
star
91

elementary

Data services and APIs
Python
1
star
92

dependency_model

Structure learning code from [ICML'19 paper](https://arxiv.org/abs/1903.05844)
Python
1
star