A Flask application that uses a fine-tuned LLM to generate song lyrics in the style of different artists.
- Generate song lyrics based on your prompts
- Specify artist styles and themes
- Copy generated lyrics to clipboard
- Responsive design for all devices
- Clone this repository:
git clone <repository-url>
cd lyrics-master
- Create a virtual environment and activate it:
# Windows
python -m venv venv
venv\Scripts\activate
# Linux/Mac
python -m venv venv
source venv/bin/activate
- Install the required packages:
pip install -r requirements.txt
- Run the Flask application:
python app.py
-
Open your browser and navigate to
http://127.0.0.1:5000 -
Enter a prompt like "Generate a song in the style of [artist] about [theme]" and click "Generate Lyrics"
- Python 3.8 or higher
- CUDA-compatible GPU for faster generation (optional but recommended)
This application uses a fine-tuned DeepSeek-R1-Distill-Llama-8B model for generating lyrics.
