Applying Snorkel to SuperGLUE
This repository includes a demonstration of how to use the Snorkel library to achieve a state-of-the-art score on the SuperGLUE benchmark. The specific code used to create the submission on the leaderboard is hosted in the emmental-tutorials repository. This repository contains a refactored version of that code made compatible with the Snorkel API for general exploration.
Best Reference: Blog post
To use this repository:
-
[Optional] Create a virtual environment and activate it:
virtualenv .env source .env/bin/activate
-
Install requirements:
pip install -r requirements.txt
-
Set the environment variable $SUPERGLUEDATA that points to the directory where the data will be stored. We recommend using a directory called
data/
at the root of the repo) by running:export SUPERGLUEDATA=$(pwd)/data/
-
Download the SuperGLUE data by running:
bash download_superglue_data.sh $SUPERGLUEDATA
This will download the data for the primary SuperGLUE tasks as well as the SWAG dataset used for pretraining COPA. To obtain the MNLI dataset for pretraining RTE and CB, we recommend referring to the starter code for the GLUE benchmark.
- Tutorials for using Slicing Functions (SFs), Transformation Functions (TFs), or doing pre-training with an auxiliary task are included under
tutorials/
. Start with theWiC_augmentation_tutorial
andWiC_slicing_tutorial
for gentler introductions to those concepts. - To train a model for one of the SuperGLUE tasks, use
run.py
with settings you specify orrun.sh
to use general defaults we recommend. (e.g.,bash run.sh CB
) - See
run.py
for an example of how to add slicing functions to a run. - Note that the first training run will automatically download the pretrained BERT module, and that training will be very slow in general without a GPU.