mjawad17 commited on
Commit
b04e760
1 Parent(s): df6f3ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -89,14 +89,15 @@ def classify_audio(audio_file):
89
 
90
  # Page title and subtitle
91
  st.markdown("<h1 class='main-title'>🎵 Music Genre Classification</h1>", unsafe_allow_html=True)
92
- st.markdown("<p class='sub-title'>CNN Deep Learning</p>")
93
  st.markdown("<p class='sub-title'>Upload a music file and let AI detect its genre!</p>", unsafe_allow_html=True)
94
 
95
  # Sidebar with model and dataset information
96
  st.sidebar.title("About")
97
  st.sidebar.subheader("Project")
98
  st.sidebar.info("""Our project is to classify the music on the based of it's genre. We use the GTZAN dataset, python programming language with librosa, transformer libraries etc.""")
99
-
 
100
  # Upload file section
101
  uploaded_file = st.file_uploader("Choose an audio file", type=["wav", "mp3", "ogg"])
102
 
 
89
 
90
  # Page title and subtitle
91
  st.markdown("<h1 class='main-title'>🎵 Music Genre Classification</h1>", unsafe_allow_html=True)
92
+ st.markdown("<p class='sub-title'> CNN Deep Learning </p>", unsafe_allow_html=True)
93
  st.markdown("<p class='sub-title'>Upload a music file and let AI detect its genre!</p>", unsafe_allow_html=True)
94
 
95
  # Sidebar with model and dataset information
96
  st.sidebar.title("About")
97
  st.sidebar.subheader("Project")
98
  st.sidebar.info("""Our project is to classify the music on the based of it's genre. We use the GTZAN dataset, python programming language with librosa, transformer libraries etc.""")
99
+ st.sidebar.subheader("Us")
100
+ st.sidebar.info("""Muhammad Jawad and Muhammad Ahmad Fakhar \nRegisteration: 065970-GCUF-2024, 073420-GUCF-2024 \nRoll no: 329916, 329991 .""")
101
  # Upload file section
102
  uploaded_file = st.file_uploader("Choose an audio file", type=["wav", "mp3", "ogg"])
103