├── .gitignore ├── LICENSE ├── README.md ├── clipgrams.py ├── extract_wds_txt.py ├── index.py ├── requirements.txt └── tag.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/README.md -------------------------------------------------------------------------------- /clipgrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/clipgrams.py -------------------------------------------------------------------------------- /extract_wds_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/extract_wds_txt.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/requirements.txt -------------------------------------------------------------------------------- /tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzryk/clip-grams/HEAD/tag.py --------------------------------------------------------------------------------