├── .idea └── deployment.xml ├── README.md ├── checkpoints └── .gitkeep ├── datasets └── SCv2-GEN │ └── raw.pickle ├── images └── siatl.png ├── logger ├── __init__.py ├── experiment.py ├── helpers.py └── plotting.py ├── model_configs ├── SCV2_aux_ft_gu.yaml ├── SCV2_naive_att_gu.yaml └── lm_20m_word.yaml ├── models ├── run_clf.py ├── sent_clf.py ├── sent_clf_no_aux.py ├── sent_clf_no_aux_trainer.py ├── sent_clf_trainer.py ├── sent_lm.py └── sent_lm_trainer.py ├── modules ├── embed_regularize.py ├── helpers.py ├── layers.py ├── locked_dropout.py ├── modules.py └── trainer.py ├── requirements.txt ├── sys_config.py └── utils ├── config.py ├── data_parsing.py ├── datasets.py ├── early_stopping.py ├── logging.py ├── nlp.py ├── opts.py ├── training.py └── transfer.py /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/SCv2-GEN/raw.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/datasets/SCv2-GEN/raw.pickle -------------------------------------------------------------------------------- /images/siatl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/images/siatl.png -------------------------------------------------------------------------------- /logger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logger/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/logger/experiment.py -------------------------------------------------------------------------------- /logger/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/logger/helpers.py -------------------------------------------------------------------------------- /logger/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/logger/plotting.py -------------------------------------------------------------------------------- /model_configs/SCV2_aux_ft_gu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/model_configs/SCV2_aux_ft_gu.yaml -------------------------------------------------------------------------------- /model_configs/SCV2_naive_att_gu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/model_configs/SCV2_naive_att_gu.yaml -------------------------------------------------------------------------------- /model_configs/lm_20m_word.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/model_configs/lm_20m_word.yaml -------------------------------------------------------------------------------- /models/run_clf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/run_clf.py -------------------------------------------------------------------------------- /models/sent_clf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/sent_clf.py -------------------------------------------------------------------------------- /models/sent_clf_no_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/sent_clf_no_aux.py -------------------------------------------------------------------------------- /models/sent_clf_no_aux_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/sent_clf_no_aux_trainer.py -------------------------------------------------------------------------------- /models/sent_clf_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/sent_clf_trainer.py -------------------------------------------------------------------------------- /models/sent_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/sent_lm.py -------------------------------------------------------------------------------- /models/sent_lm_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/models/sent_lm_trainer.py -------------------------------------------------------------------------------- /modules/embed_regularize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/modules/embed_regularize.py -------------------------------------------------------------------------------- /modules/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/modules/helpers.py -------------------------------------------------------------------------------- /modules/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/modules/layers.py -------------------------------------------------------------------------------- /modules/locked_dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/modules/locked_dropout.py -------------------------------------------------------------------------------- /modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/modules/modules.py -------------------------------------------------------------------------------- /modules/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/modules/trainer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/requirements.txt -------------------------------------------------------------------------------- /sys_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/sys_config.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/data_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/data_parsing.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/early_stopping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/early_stopping.py -------------------------------------------------------------------------------- /utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/logging.py -------------------------------------------------------------------------------- /utils/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/nlp.py -------------------------------------------------------------------------------- /utils/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/opts.py -------------------------------------------------------------------------------- /utils/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/training.py -------------------------------------------------------------------------------- /utils/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandra-chron/siatl/HEAD/utils/transfer.py --------------------------------------------------------------------------------