├── README.md ├── adg-stega.py ├── bit_stream └── bit_stream.txt ├── lm.py ├── measure ├── er │ └── measure_er.py ├── kld1 │ └── measure_kld1.py └── kld2 │ ├── build_vec.py │ ├── dataset_remove_unk.py │ ├── matutils.py │ ├── measure_kld2.py │ ├── utils.py │ └── word2vec.py ├── run_lm.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/README.md -------------------------------------------------------------------------------- /adg-stega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/adg-stega.py -------------------------------------------------------------------------------- /bit_stream/bit_stream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/bit_stream/bit_stream.txt -------------------------------------------------------------------------------- /lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/lm.py -------------------------------------------------------------------------------- /measure/er/measure_er.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/er/measure_er.py -------------------------------------------------------------------------------- /measure/kld1/measure_kld1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld1/measure_kld1.py -------------------------------------------------------------------------------- /measure/kld2/build_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld2/build_vec.py -------------------------------------------------------------------------------- /measure/kld2/dataset_remove_unk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld2/dataset_remove_unk.py -------------------------------------------------------------------------------- /measure/kld2/matutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld2/matutils.py -------------------------------------------------------------------------------- /measure/kld2/measure_kld2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld2/measure_kld2.py -------------------------------------------------------------------------------- /measure/kld2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld2/utils.py -------------------------------------------------------------------------------- /measure/kld2/word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/measure/kld2/word2vec.py -------------------------------------------------------------------------------- /run_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/run_lm.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhzzzzz/ADG-steganography/HEAD/utils.py --------------------------------------------------------------------------------