Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ tokenizer = joblib.load('tokenizer.pkl') # Correct the path
|
|
27 |
|
28 |
# Load the dataset and preprocess
|
29 |
df = pd.read_csv('df1.csv')
|
30 |
-
df = df.drop(['Unnamed: 0', 'lyrics_filename', 'analysis_url', 'track_href', "type", "id", "uri"], axis=1)
|
31 |
|
32 |
# Set up the title of the app
|
33 |
st.title('Emotion and Audio Feature-based Song Recommendation System')
|
|
|
27 |
|
28 |
# Load the dataset and preprocess
|
29 |
df = pd.read_csv('df1.csv')
|
30 |
+
df = df.drop(['Unnamed: 0', 'lyrics_filename', 'analysis_url', 'track_href', "type", "id", "uri", 'mood'], axis=1)
|
31 |
|
32 |
# Set up the title of the app
|
33 |
st.title('Emotion and Audio Feature-based Song Recommendation System')
|