CoolFace
Apppublic

jackdewinter/Lofi_University

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
README.md41 linesDownload Raw Back to root
1---2title: Lofi_University3app_file: app.py4sdk: gradio5sdk_version: 3.45.26---7Set up initial anaconda environment8 9```10conda create --name lofi-uni python=3.911```12 13Activate created environment14 15```16conda activate lofi-uni17```18 19Install dependencies20 21```22pip install -r requirements.txt23```24 25## Usage26 27Running a model for the first time will take a while as the model needs to be28downloaded.29 30Run app31 32```33python -m app34```35 36Run with public link37 38```39python -m app --share40```41