Spaces:
Runtime error
Runtime error
metadata
title: TaylorSwiftDJ
emoji: π
colorFrom: pink
colorTo: indigo
sdk: streamlit
sdk_version: 1.26.0
app_file: app.py
pinned: false
license: creativeml-openrail-m
TaylorSwiftDJ π
Made with DeepLake π and LangChain π¦βοΈ
π« Hey there Swifties! Welcome to "TaylorSwiftDJ"! π€πΆ
This streamlit powered app recommends Taylor Swift's iconic songs 'tailored'(hah! :D) to your emotions.
Dance, reminisce, and embrace your feelings with every beat β because life's a melody, and Taylor's your DJ. β¨ π π
How it works
The application follows a sequence of steps to deliver Taylor Swift songs matching the user's emotions:
- User Input: The application starts by collecting user's emotional state through a text input.
- Emotion Encoding: The user-provided emotions are then fed to a Language Model (LLM). The LLM interprets and encodes these emotions.
- Similarity Search: These encoded emotions are utilized to perform a similarity search within our vector database. This database houses ~130 Taylor Swift songs, each represented as emotional embeddings.
- Song Selection: From the pool of top matching songs, the application randomly selects one. The selection is weighted, giving preference to songs with higher similarity scores.
- Song Retrieval: The selected song's embedded player is displayed on the webpage for the user. Additionally, the LLM interpreted emotional state associated with the chosen song is displayed.
Setup instructions
Checkout the repo
Clone the repository using the following command:
git clone https://huggingface.co/spaces/mchockal/TaylorSwiftDJ
Set Environment Variables
You'll need to set the following variables in the env_vars.env
file:
OPENAI_API_KEY=
ACTIVELOOP_TOKEN=
ACTIVELOOP_ORG_ID=
MODEL = "text-embedding-ada-002"
DATASET = <your_vector_space_for_emotions>
UPSTASH_URL=
UPSTASH_PASSWORD=
USE_STORAGE="False"
ROOT=
Install Dependencies
Install the required dependencies using the following command:
pip install -r requirements.txt
Run the Streamlit App
Launch the Streamlit app using the following command:
streamlit run app.py
DISCLAIMER: This project is 200% inspired by Francesco's FairyTaleDJ.