├── README.md ├── auxilary_functions.py ├── config.py ├── example.py ├── models.py ├── paper_figs ├── bmvc-functionality.png ├── detailed_arch.png └── htr_overview.png ├── requirements.txt ├── set_split ├── testset.txt ├── trainset.txt └── valset.txt ├── test_funcs.py ├── train_words.py └── utils ├── iam-stopwords └── iam_loader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/README.md -------------------------------------------------------------------------------- /auxilary_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/auxilary_functions.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/config.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/example.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/models.py -------------------------------------------------------------------------------- /paper_figs/bmvc-functionality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/paper_figs/bmvc-functionality.png -------------------------------------------------------------------------------- /paper_figs/detailed_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/paper_figs/detailed_arch.png -------------------------------------------------------------------------------- /paper_figs/htr_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/paper_figs/htr_overview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/requirements.txt -------------------------------------------------------------------------------- /set_split/testset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/set_split/testset.txt -------------------------------------------------------------------------------- /set_split/trainset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/set_split/trainset.txt -------------------------------------------------------------------------------- /set_split/valset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/set_split/valset.txt -------------------------------------------------------------------------------- /test_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/test_funcs.py -------------------------------------------------------------------------------- /train_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/train_words.py -------------------------------------------------------------------------------- /utils/iam-stopwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/utils/iam-stopwords -------------------------------------------------------------------------------- /utils/iam_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeretsi/Seq2Emb/HEAD/utils/iam_loader.py --------------------------------------------------------------------------------