Best Flask open-source libraries and packages

RapLyrics Front

Front end repository for raplyrics.eu - A rap music lyrics generation project
Updated 2 years ago

RapLyrics Front End

lyrics generation

Context

This repository contains the assets used for the front-end of the raplyrics web-app available at raplyrics.eu.

This project consumes a lyric generative web-app served with gunicorn.

References

Learn more on how we built the data pipeline including the scraping of lyrics, the training of a state of the art text-generative model and the serving of a tensorflow model through gunicorn by checking our related repositories:

Protips

You want to test some models using our front-end? Easy! To do so, simply change the callback settings in the index.html file.

From:

var settings = {"async": true,
               "url":"https://raplyrics.eu/apiUS",
               ...,
               }

to:

var settings = {"async": true,
               "url":"http://127.0.0.1:5000/myAPIEndPoint",
               ...,
               }

with your correct localhost address and API endpoint set of course.