gitextract_99jv75gb/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── Examples/ │ ├── SPE2Vec.ipynb │ └── train_SPE.ipynb ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── SPE_ChEMBL.txt ├── SmilesPE/ │ ├── __init__.py │ ├── _nbdev.py │ ├── learner.py │ ├── pretokenizer.py │ ├── spe2vec.py │ └── tokenizer.py ├── docs/ │ ├── .gitignore │ ├── Gemfile │ ├── _config.yml │ ├── _data/ │ │ ├── alerts.yml │ │ ├── definitions.yml │ │ ├── glossary.yml │ │ ├── sidebars/ │ │ │ └── home_sidebar.yml │ │ ├── tags.yml │ │ ├── terms.yml │ │ └── topnav.yml │ ├── _includes/ │ │ ├── archive.html │ │ ├── callout.html │ │ ├── footer.html │ │ ├── google_analytics.html │ │ ├── head.html │ │ ├── head_print.html │ │ ├── image.html │ │ ├── important.html │ │ ├── initialize_shuffle.html │ │ ├── inline_image.html │ │ ├── links.html │ │ ├── note.html │ │ ├── search_google_custom.html │ │ ├── search_simple_jekyll.html │ │ ├── sidebar.html │ │ ├── tip.html │ │ ├── toc.html │ │ ├── topnav.html │ │ └── warning.html │ ├── _layouts/ │ │ ├── default.html │ │ ├── default_print.html │ │ ├── none.html │ │ ├── page.html │ │ └── page_print.html │ ├── css/ │ │ ├── boxshadowproperties.css │ │ ├── customstyles.css │ │ ├── fonts/ │ │ │ └── FontAwesome.otf │ │ ├── modern-business.css │ │ ├── printstyles.css │ │ ├── syntax.css │ │ ├── theme-blue.css │ │ └── theme-green.css │ ├── feed.xml │ ├── fonts/ │ │ └── FontAwesome.otf │ ├── index.html │ ├── js/ │ │ ├── customscripts.js │ │ ├── jekyll-search.js │ │ └── toc.js │ ├── learner.html │ ├── licenses/ │ │ ├── LICENSE │ │ └── LICENSE-BSD-NAVGOCO.txt │ ├── pretokenizer.html │ ├── sidebar.json │ ├── sitemap.xml │ ├── spe2vec.html │ ├── tokenizer.html │ └── tooltips.json ├── notebooks_build/ │ ├── 00_pretokenizer.ipynb │ ├── 01_learner.ipynb │ ├── 02_tokenizer.ipynb │ ├── 03_spe2vec.ipynb │ └── index.ipynb ├── settings.ini └── setup.py