nullHawk / music-generation

Music Generation using LSTM
https://huggingface.co/spaces/nullHawk/Music-Generator
3 stars 0 forks source link

Click the button below to generate a new random song using a trained RNN model.is error #3

Open lmj282371 opened 11 hours ago

lmj282371 commented 11 hours ago

FileNotFoundError: [WinError 2] 系统找不到指定的文件。

nullHawk commented 3 hours ago

Hi @lmj282371

You need to install abc2midi, which is used to convert the ABC notation produced by the model into MIDI. Additionally, you need to install fluidsynth, which is used to convert MIDI to WAV.

This error occurs when the script tries to use the command-line tool to convert ABC notation, but the tool is not present. As a result, it mistakenly detects it as a file and tries to open it.

lmj282371 commented 3 hours ago

I have not been able to successfully install the abc2midi library as you suggested. I am using Python version 3.10, and I have just updated pip to its latest version. However, I am still encountering errors during the installation process. Why is this happening?

lmj282371 commented 3 hours ago

The error message in English is:

"Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple ERROR: Could not find a version that satisfies the requirement abc2midi (from versions: none) ERROR: No matching distribution found for abc2midi"

nullHawk commented 3 hours ago

You need to install command line version of that tool, In ubuntu you can try, apt-get update apt-get install -y fluidsynth apt-get install -y abcmidi

For windows I guess you need to install it the other way, or you can use WSL

lmj282371 commented 3 hours ago

Can't this library be downloaded on a Windows system? Is it only available on Linux systems?

nullHawk commented 3 hours ago

I guess it is available for windows too You can check that out here: https://sourceforge.net/projects/abcmidi/ https://github.com/xlvector/abcmidi

lmj282371 commented 3 hours ago

I'll give it a try.Thank you very much for your reply.

nullHawk commented 2 hours ago

I have hosted this on hugging face, you can check it there too https://huggingface.co/spaces/nullHawk/Music-Generator