├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── app_image_search.py ├── bge-small-en-v1.5 ├── create_embedding_bge-small-en-v1.5_two.py ├── create_lance_db_table_three.py └── test_cosine_similarity_using_sentence_embedding.py ├── openai ├── async_openai_embedding_two.py ├── create_lance_db_table_openai_three.py └── create_openai_embedding_sync_two.py ├── preprocess_tweets_one.py ├── projector.py ├── requirements.txt ├── run_scripts.sh ├── run_sentence_tf_scripts.sh ├── static ├── anya_glass.png └── style.css └── templates ├── image_search.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | venv 3 | twitter-archive/ 4 | *.csv 5 | data/ 6 | .ruff_cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/app.py -------------------------------------------------------------------------------- /app_image_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/app_image_search.py -------------------------------------------------------------------------------- /bge-small-en-v1.5/create_embedding_bge-small-en-v1.5_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/bge-small-en-v1.5/create_embedding_bge-small-en-v1.5_two.py -------------------------------------------------------------------------------- /bge-small-en-v1.5/create_lance_db_table_three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/bge-small-en-v1.5/create_lance_db_table_three.py -------------------------------------------------------------------------------- /bge-small-en-v1.5/test_cosine_similarity_using_sentence_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/bge-small-en-v1.5/test_cosine_similarity_using_sentence_embedding.py -------------------------------------------------------------------------------- /openai/async_openai_embedding_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/openai/async_openai_embedding_two.py -------------------------------------------------------------------------------- /openai/create_lance_db_table_openai_three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/openai/create_lance_db_table_openai_three.py -------------------------------------------------------------------------------- /openai/create_openai_embedding_sync_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/openai/create_openai_embedding_sync_two.py -------------------------------------------------------------------------------- /preprocess_tweets_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/preprocess_tweets_one.py -------------------------------------------------------------------------------- /projector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/projector.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/run_scripts.sh -------------------------------------------------------------------------------- /run_sentence_tf_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/run_sentence_tf_scripts.sh -------------------------------------------------------------------------------- /static/anya_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/static/anya_glass.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/image_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/templates/image_search.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalp1999/semantweet-search/HEAD/templates/index.html --------------------------------------------------------------------------------