├── .gitignore ├── LICENSE ├── Quote_model_train.ipynb ├── README.md ├── config_template.py ├── corpus ├── datasets ├── QUOTE||CSV||,||1||.csv ├── author-quote||CSV||TAB||1|| ├── author-quote||CSV||TAB||1||.txt ├── quotes_all||CSV||;||0||.csv └── quotes||JSON||ARRAY||Quote||||.json ├── docs ├── 20190704225727.png ├── 20190704225936.png ├── workflow.drawio.xml └── workflow.png ├── download_files.py ├── fonts ├── BalooTamma-Regular.ttf ├── Barriecito-Regular.ttf ├── DMSerifDisplay-Regular.ttf ├── InknutAntiqua-Bold.ttf ├── JosefinSans-SemiBold.ttf ├── Pacifico-Regular.ttf ├── Poppins-Medium.ttf ├── Pridi-Light.ttf ├── RobotoMono-MediumItalic.ttf ├── RobotoMono-Regular.ttf └── Ultra-Regular.ttf ├── quote_me_ai.py ├── quotemeai.conf ├── quotes_2_corpus.py ├── requirements.txt └── src ├── __init__.py ├── config_mixin.py ├── image.py ├── image_text.py ├── logger_mixin.py ├── quotes_generator.py ├── quotes_importer.py ├── reddit_post.py ├── similarity.py └── unsplash.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /Quote_model_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/Quote_model_train.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/README.md -------------------------------------------------------------------------------- /config_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/config_template.py -------------------------------------------------------------------------------- /corpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/corpus -------------------------------------------------------------------------------- /datasets/QUOTE||CSV||,||1||.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/datasets/QUOTE||CSV||,||1||.csv -------------------------------------------------------------------------------- /datasets/author-quote||CSV||TAB||1||: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/datasets/author-quote||CSV||TAB||1|| -------------------------------------------------------------------------------- /datasets/author-quote||CSV||TAB||1||.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/datasets/author-quote||CSV||TAB||1||.txt -------------------------------------------------------------------------------- /datasets/quotes_all||CSV||;||0||.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/datasets/quotes_all||CSV||;||0||.csv -------------------------------------------------------------------------------- /datasets/quotes||JSON||ARRAY||Quote||||.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/datasets/quotes||JSON||ARRAY||Quote||||.json -------------------------------------------------------------------------------- /docs/20190704225727.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/docs/20190704225727.png -------------------------------------------------------------------------------- /docs/20190704225936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/docs/20190704225936.png -------------------------------------------------------------------------------- /docs/workflow.drawio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/docs/workflow.drawio.xml -------------------------------------------------------------------------------- /docs/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/docs/workflow.png -------------------------------------------------------------------------------- /download_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/download_files.py -------------------------------------------------------------------------------- /fonts/BalooTamma-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/BalooTamma-Regular.ttf -------------------------------------------------------------------------------- /fonts/Barriecito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/Barriecito-Regular.ttf -------------------------------------------------------------------------------- /fonts/DMSerifDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/DMSerifDisplay-Regular.ttf -------------------------------------------------------------------------------- /fonts/InknutAntiqua-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/InknutAntiqua-Bold.ttf -------------------------------------------------------------------------------- /fonts/JosefinSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/JosefinSans-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/Pacifico-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/Pacifico-Regular.ttf -------------------------------------------------------------------------------- /fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /fonts/Pridi-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/Pridi-Light.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/Ultra-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/fonts/Ultra-Regular.ttf -------------------------------------------------------------------------------- /quote_me_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/quote_me_ai.py -------------------------------------------------------------------------------- /quotemeai.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/quotemeai.conf -------------------------------------------------------------------------------- /quotes_2_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/quotes_2_corpus.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/config_mixin.py -------------------------------------------------------------------------------- /src/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/image.py -------------------------------------------------------------------------------- /src/image_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/image_text.py -------------------------------------------------------------------------------- /src/logger_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/logger_mixin.py -------------------------------------------------------------------------------- /src/quotes_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/quotes_generator.py -------------------------------------------------------------------------------- /src/quotes_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/quotes_importer.py -------------------------------------------------------------------------------- /src/reddit_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/reddit_post.py -------------------------------------------------------------------------------- /src/similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/similarity.py -------------------------------------------------------------------------------- /src/unsplash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasrasymas/quote-me-ai/HEAD/src/unsplash.py --------------------------------------------------------------------------------