gitextract_9j7ufkjh/ ├── .idea/ │ └── vcs.xml ├── LICENSE ├── README.md ├── emolga/ │ ├── __init__.py │ ├── basic/ │ │ ├── __init__.py │ │ ├── activations.py │ │ ├── initializations.py │ │ ├── objectives.py │ │ └── optimizers.py │ ├── config.py │ ├── config_variant.py │ ├── dataset/ │ │ └── build_dataset.py │ ├── layers/ │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── core.py │ │ ├── embeddings.py │ │ ├── gridlstm.py │ │ ├── ntm_minibatch.py │ │ └── recurrent.py │ ├── models/ │ │ ├── __init__.py │ │ ├── core.py │ │ ├── covc_encdec.py │ │ ├── encdec.py │ │ ├── ntm_encdec.py │ │ ├── pointers.py │ │ └── variational.py │ ├── run.py │ ├── test_lm.py │ ├── test_nvtm.py │ ├── test_run.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── generic_utils.py │ │ ├── io_utils.py │ │ ├── np_utils.py │ │ ├── test_utils.py │ │ └── theano_utils.py │ └── voc.pkl └── experiments/ ├── __init__.py ├── bst_dataset.py ├── bst_vest.py ├── config.py ├── copynet.py ├── copynet_input.py ├── dataset.py ├── lcsts_dataset.py ├── lcsts_rouge.py ├── lcsts_sample.py ├── lcsts_test.py ├── lcsts_vest.py ├── lcsts_vest_new.py ├── movie_dataset.py ├── syn_vest.py ├── syntest.py ├── synthetic.py ├── weibo_dataset.py └── weibo_vest.py