Commit 9aa790e5 authored by Aditya Hiteshbhai's avatar Aditya Hiteshbhai

fix: github profile link fixed, found and fixed small bug in app.py

parent 7ff2e846
Pipeline #1889 failed with stages
...@@ -8,23 +8,23 @@ The EmoMusic Recommender is an innovative application that combines text and fac ...@@ -8,23 +8,23 @@ The EmoMusic Recommender is an innovative application that combines text and fac
- **Udhay Brahmi** - **Udhay Brahmi**
- Responsibilities: Implementing CNN model - Responsibilities: Implementing CNN model
- GitHub: [GitHub Profile](https://github.com/udhaybrahmi) - GitHub: [GitHub Profile](https://git.cse.iitb.ac.in/udhaybrahmi)
- **Jay Gorakhiya** - **Jay Gorakhiya**
- Responsibilities: Implementing Text-Based model and Database - Responsibilities: Implementing Text-Based model and Database
- GitHub: [GitHub Profile](https://github.com/jaygorakhiya) - GitHub: [GitHub Profile](https://git.cse.iitb.ac.in/jaygorakhiya)
- **Utsav Manani** - **Utsav Manani**
- Responsibilities: Streamlit Design and Implementation, GitHub - Responsibilities: Streamlit Design and Implementation, GitHub
- GitHub: [GitHub Profile](https://github.com/utsavmanani) - GitHub: [GitHub Profile](https://git.cse.iitb.ac.in/utsavuv)
- **Vinit Patel** - **Vinit Patel**
- Responsibilities: Streamlit Implementation and Presentation - Responsibilities: Streamlit Implementation and Presentation
- GitHub: [GitHub Profile](https://github.com/vinitpatel-007) - GitHub: [GitHub Profile](https://git.cse.iitb.ac.in/vinitpatel)
- **Aditya Kansara** - **Aditya Kansara**
- Responsibilities: UI and Model integration with Database - Responsibilities: UI and Model integration with Database
- GitHub: [GitHub Profile](https://github.com/adityakansara) - GitHub: [GitHub Profile](https://git.cse.iitb.ac.in/adityakansara)
## Work Split ## Work Split
......
...@@ -95,7 +95,7 @@ def fun(emotions): ...@@ -95,7 +95,7 @@ def fun(emotions):
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'happyn': elif v == 'happyn':
temp = df_happypn.sample(n=t) temp = df_happyn.sample(n=t)
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'sadp': elif v == 'sadp':
...@@ -142,7 +142,7 @@ def fun(emotions): ...@@ -142,7 +142,7 @@ def fun(emotions):
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'happyn': elif v == 'happyn':
temp = df_happypn.sample(n=t) temp = df_happyn.sample(n=t)
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'sadp': elif v == 'sadp':
...@@ -189,7 +189,7 @@ def fun(emotions): ...@@ -189,7 +189,7 @@ def fun(emotions):
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'happyn': elif v == 'happyn':
temp = df_happypn.sample(n=t) temp = df_happyn.sample(n=t)
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'sadp': elif v == 'sadp':
...@@ -236,7 +236,7 @@ def fun(emotions): ...@@ -236,7 +236,7 @@ def fun(emotions):
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'happyn': elif v == 'happyn':
temp = df_happypn.sample(n=t) temp = df_happyn.sample(n=t)
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'sadp': elif v == 'sadp':
...@@ -283,7 +283,7 @@ def fun(emotions): ...@@ -283,7 +283,7 @@ def fun(emotions):
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'happyn': elif v == 'happyn':
temp = df_happypn.sample(n=t) temp = df_happyn.sample(n=t)
data = pd.concat([data, temp[:]]) data = pd.concat([data, temp[:]])
elif v == 'sadp': elif v == 'sadp':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment