dennisvdang / chorus-detection

A deep learning project for automated chorus detection in songs, featuring a command-line interface (CLI) tool that allows users to input a YouTube link and utilize a pre-trained CRNN model to detect chorus sections from a song on YouTube
15 stars 4 forks source link

About training #1

Closed KirinHao closed 7 months ago

KirinHao commented 7 months ago

Dear dennisvdang, thank you for sharing. I am very interested in chorus detection. I would like to ask how can I get the dataset for training, or can you share the model best_model .h5, thank you very much.

dennisvdang commented 7 months ago

Hi, thanks for showing interest! I just uploaded best_model.h5. The dataset contains music that I'm not allowed to distribute due to copyright, however, you can use the preprocessing notebook or adapt it to create your own training dataset on your own music.

KirinHao commented 7 months ago

OK, thank you!

KirinHao commented 7 months ago

I have another question. In practice, does deep learning use tensorflow more? I am a beginner, and I first came into contact with PyTorch, so I know less about this aspect.

Hi, thanks for showing interest! I just uploaded best_model.h5. The dataset contains music that I'm not allowed to distribute due to copyright, however, you can use the preprocessing notebook or adapt it to create your own training dataset on your own music.

dennisvdang commented 7 months ago

From what I've seen so far, a lot of academic research uses PyTorch and PyTorch's API is more user-friendly/intuitive. I ran into an issue (I forgot what exactly) when trying to build my model using PyTorch and TensorFlow allowed me to do what I wanted so I just went with that. I'd suggest to try doing different projects with both and see which one you like better!