├── .gitignore ├── LICENSE ├── README.md └── nlp ├── __init__.py ├── encode_blocks.py ├── fuse_blocks.py └── nn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxiao/encoding-blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxiao/encoding-blocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxiao/encoding-blocks/HEAD/README.md -------------------------------------------------------------------------------- /nlp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nlp/encode_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxiao/encoding-blocks/HEAD/nlp/encode_blocks.py -------------------------------------------------------------------------------- /nlp/fuse_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxiao/encoding-blocks/HEAD/nlp/fuse_blocks.py -------------------------------------------------------------------------------- /nlp/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxiao/encoding-blocks/HEAD/nlp/nn.py --------------------------------------------------------------------------------