Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandi Indika Saputra committed Apr 30, 2024
0 parents commit 47bbbec
Show file tree
Hide file tree
Showing 13 changed files with 981 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.venv
/.vscode
/data
9 changes: 9 additions & 0 deletions .streamlit/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[theme]
primaryColor = "#B6244F"
backgroundColor = "#F4F4F8"
secondaryBackgroundColor = "E6E6EA"
textColor = "#020122"
font = "sans serif"

[server]
runOnSave = true
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### [1.0.0] - 2024-05-01

## Release
8 changes: 8 additions & 0 deletions Fia Qonita.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Sandi Indika Saputra

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# KLASIFIKASI MUSIK BERDASARKAN GENRE MENGGUNAKAN METODE NAIVE BAYES

## Instalasi dan Dependensi

Untuk instalasi perangkat lunak, pastikan dependensi bawaan telah diinstal. Dependensi yang dibutuhkan tercantum dalam:

```bash
requirements.txt
```

## Dukungan atau Kontak

Untuk informasi lebih lanjut atau bantuan, hubungi melalui email: bimbingin.id@gmail.com or sandidikaputra@gmail.com.
6 changes: 6 additions & 0 deletions RUN.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off

echo Running the program...
streamlit run src/app.py

pause
31 changes: 31 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.title, h1, h2 {
text-align: center;
}

.st-emotion-cache-1o4beor p {
text-align: center;
}

h4, h5 {
text-align: left;
}

.ms-20{
margin: 20px;
}

.ms-40{
margin: 40px;
}

.ms-60{
margin: 60px;
}

.ms-80{
margin: 80px;
}

.paragraph {
text-align: justify;
}
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
streamlit
librosa
numpy
pandas
matplotlib
scikit-learn
Binary file added src/__pycache__/functions.cpython-311.pyc
Binary file not shown.
Binary file added src/__pycache__/functions.cpython-312.pyc
Binary file not shown.
Loading

0 comments on commit 47bbbec

Please sign in to comment.