├── LICENSE ├── README.md ├── dist.sh ├── test ├── run.sh ├── syms ├── vocab ├── x.txt └── y.txt └── vocab2edit.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/README.md -------------------------------------------------------------------------------- /dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/dist.sh -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/syms: -------------------------------------------------------------------------------- 1 | ε 0 2 | A 1 3 | B 2 4 | C 3 5 | D 4 6 | -------------------------------------------------------------------------------- /test/vocab: -------------------------------------------------------------------------------- 1 | A 2 | B 3 | C 4 | D 5 | -------------------------------------------------------------------------------- /test/x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/test/x.txt -------------------------------------------------------------------------------- /test/y.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/test/y.txt -------------------------------------------------------------------------------- /vocab2edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogancan/expected-edit-distance/HEAD/vocab2edit.py --------------------------------------------------------------------------------