Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adamyordan/lyrics-information-retrieval

Information Retrieval system to search music through databases utilizing Information Retrieval techniques
https://github.com/adamyordan/lyrics-information-retrieval

Last synced: 6 days ago
JSON representation

Information Retrieval system to search music through databases utilizing Information Retrieval techniques

Awesome Lists containing this project

README

        

# Music-IR
Information Retrieval system to search music through databases utilizing Information Retrieval techniques

# Dependencies
* Flask (web server)
* pandas (reading csv)
* tqdm (progress bar)

# Running
* download dataset from kaggle https://www.kaggle.com/gyani95/380000-lyrics-from-metrolyrics, create new "ir/data" directory, and put dataset in the directory
* create virtualenv for the project
```
virtualenv env
```
* activate virtualenv
```
source env/bin/activate
```
* install depedencies
```
pip install -r requirements.txt
```

- Generate tf-idf by running preprocessing.py
```
python ir/preprocessing.py
```
- WIP