├── .gitignore ├── LICENSE ├── README.md ├── adam.py ├── chainer_transformer.py ├── constant.py ├── dataset.py ├── exp_setting.py ├── order_samplers.py ├── resource.py └── updater.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/README.md -------------------------------------------------------------------------------- /adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/adam.py -------------------------------------------------------------------------------- /chainer_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/chainer_transformer.py -------------------------------------------------------------------------------- /constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/constant.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/dataset.py -------------------------------------------------------------------------------- /exp_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/exp_setting.py -------------------------------------------------------------------------------- /order_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/order_samplers.py -------------------------------------------------------------------------------- /resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/resource.py -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfnet-research/vat_nmt/HEAD/updater.py --------------------------------------------------------------------------------