Skip to content

Commit 47bbbec

Browse files
author
Sandi Indika Saputra
committed
first commit
0 parents  commit 47bbbec

File tree

13 files changed

+981
-0
lines changed

13 files changed

+981
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.venv
2+
/.vscode
3+
/data

.streamlit/config.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[theme]
2+
primaryColor = "#B6244F"
3+
backgroundColor = "#F4F4F8"
4+
secondaryBackgroundColor = "E6E6EA"
5+
textColor = "#020122"
6+
font = "sans serif"
7+
8+
[server]
9+
runOnSave = true

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### [1.0.0] - 2024-05-01
2+
3+
## Release

Fia Qonita.code-workspace

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {}
8+
}

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Sandi Indika Saputra
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# KLASIFIKASI MUSIK BERDASARKAN GENRE MENGGUNAKAN METODE NAIVE BAYES
2+
3+
## Instalasi dan Dependensi
4+
5+
Untuk instalasi perangkat lunak, pastikan dependensi bawaan telah diinstal. Dependensi yang dibutuhkan tercantum dalam:
6+
7+
```bash
8+
requirements.txt
9+
```
10+
11+
## Dukungan atau Kontak
12+
13+
Untuk informasi lebih lanjut atau bantuan, hubungi melalui email: bimbingin.id@gmail.com or sandidikaputra@gmail.com.

RUN.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
3+
echo Running the program...
4+
streamlit run src/app.py
5+
6+
pause

css/style.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.title, h1, h2 {
2+
text-align: center;
3+
}
4+
5+
.st-emotion-cache-1o4beor p {
6+
text-align: center;
7+
}
8+
9+
h4, h5 {
10+
text-align: left;
11+
}
12+
13+
.ms-20{
14+
margin: 20px;
15+
}
16+
17+
.ms-40{
18+
margin: 40px;
19+
}
20+
21+
.ms-60{
22+
margin: 60px;
23+
}
24+
25+
.ms-80{
26+
margin: 80px;
27+
}
28+
29+
.paragraph {
30+
text-align: justify;
31+
}

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
streamlit
2+
librosa
3+
numpy
4+
pandas
5+
matplotlib
6+
scikit-learn
19.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)