chomayouni commited on
Commit
ed15da6
β€’
2 Parent(s): 1719da7 f10c88e

Merge branch 'main' of https://huggingface.co/spaces/SpartanCinder/NLP_Song_Generator_Guessing_Game

Browse files
.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: false
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

  • SHA256: a3999022f27b3954e744096f4c612b230186c345fdf80a1bc6e5ab3442d58b43
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
sgg_app.py β†’ app.py RENAMED
File without changes
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ gradio
2
+ torch
3
+ transformers
4
+ datasets