Metalearning
Educational Resources about Metalearning
Stanford metalearning course Facebook package with metalearning utilities in pytorch Chelsea F...
Integration of DAML
This describes efforts to work on integration of DAML into the existing content scoring pipeline ...
DAML code
import torch import random import numpy as np from config import global_config as cfg from re...
DAML walkthrough
The main point of interest is train_maml in model.py. prev_min_loss gets set to a high value on ...
Optimizer filter notes
The DAML implementation uses this filter when constructing the optimizer Adam(lr = self.meta_lr, ...
Gameplan
Done Switch optimizer over to the ifltered optimizer. todo determine if self.model needs to be m...
Status tracker
2-21-2020: Finished a bunch of updates to the outer loop of maml to make it better reflect the d...
Integration of multi-task code in allennlp
Allennlp has some code in tests that is gearing for multitask setups. Ideally, we'd like to be co...
Testing
Repo cleanup notes
The BertRegressor model is now called "general_regressor" Doesn't seem that transition away from...
Design notes 5-27
Current status: Multi-task training is working using interleaving dataset reader, off the shelf ...