Spaces:
Runtime error
Runtime error
Merge branch 'main' of https://huggingface.co/spaces/SpartanCinder/NLP_Song_Generator_Guessing_Game
Browse files- .gitattributes +1 -0
- README.md +20 -2
- RobotSinger.png +3 -0
- sgg_app.py β app.py +0 -0
- requirements.txt +4 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
RobotSinger.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,13 +1,31 @@
|
|
1 |
---
|
2 |
title: NLP Song Generator Guessing Game
|
3 |
-
emoji:
|
4 |
colorFrom: gray
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.26.0
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
10 |
license: apache-2.0
|
11 |
---
|
|
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
title: NLP Song Generator Guessing Game
|
3 |
+
emoji: π€π€
|
4 |
colorFrom: gray
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.26.0
|
8 |
app_file: app.py
|
9 |
+
pinned: true
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
+
# Song Generator Guessing Game
|
13 |
|
14 |
+
This program generates a song using a language model and then presents a multiple-choice question to the user to guess the artist of the generated song.
|
15 |
+
|
16 |
+
## Models Used
|
17 |
+
|
18 |
+
The program uses the following models:
|
19 |
+
|
20 |
+
1. **Language Model**: This model is used to generate the song.
|
21 |
+
|
22 |
+
|
23 |
+
## Custom Dataset
|
24 |
+
|
25 |
+
The program uses a custom dataset of songs and artists. The dataset includes the following columns:
|
26 |
+
|
27 |
+
- 'Song': The lyrics of the song.
|
28 |
+
- 'Artist': The artist of the song.
|
29 |
+
|
30 |
+
The dataset is used to generate the multiple-choice options for the guessing game. One of the artists in the options is the artist that the language model was conditioned on to generate the song.
|
31 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
RobotSinger.png
ADDED
![]() |
Git LFS Details
|
sgg_app.py β app.py
RENAMED
File without changes
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
torch
|
3 |
+
transformers
|
4 |
+
datasets
|