Spaces:
Runtime error
Runtime error
SpartanCinder
commited on
Update README.md
Browse files
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
|