diff --git a/GraySpectrogram.py b/GraySpectrogram.py index e735118597a10e3b6eacbd4e7121f827395c1d58..98033186436e2374e810699d83579fba860d7606 100644 --- a/GraySpectrogram.py +++ b/GraySpectrogram.py @@ -95,71 +95,308 @@ class GraySpectrogram(datasets.GeneratorBasedBuilder): # データのサブセットはここで用意 metadata_urls, data_urls = get_information() - BUILDER_CONFIGS = [ - GraySpectrogramConfig( - name="data 0-200", - description=_DESCRIPTION, - data_url = { - "train" : data_urls["train"][0], - "test" : data_urls["test"][0] - }, - metadata_url = { - "train" : metadata_urls["train"][0], - "test" : metadata_urls["test"][0] - } + subset_name_list = [ + "data 0-200", + "data 200-600", + "data 600-1000", + "data 1000-1300", + "data 1300-1600", + "data 1600-2000", + ] + for i in range(2000, 2800, 200): + subset_name_list.append(f"data {i}-{i+200}") + for i in range(3000, 5200, 200): + subset_name_list.append(f"data {i}-{i+200}") + subset_name_list.append("data 5200-5520") + + config_list = list() + for i in range(22): + config_list.append( + GraySpectrogramConfig( + name = subset_name_list[i], + desctiption = _DESCRIPTION, + data_url = { + "train" : data_urls["train"][i], + "test" : data_urls["test"][i] + }, + metadata_url = { + "train" : metadata_urls["train"][i], + "test" : metadata_urls["test"][i] + } + ) + ) + + BUILDER_CONFIGS = config_list + + # BUILDER_CONFIGS = [ + # GraySpectrogramConfig( + # name="data 0-200", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][0], + # "test" : data_urls["test"][0] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][0], + # "test" : metadata_urls["test"][0] + # } - ), - GraySpectrogramConfig( - name="data 200-600", - description=_DESCRIPTION, - data_url ={ - "train" : data_urls["train"][1], - "test" : data_urls["test"][1] - }, - metadata_url = { - "train": metadata_urls["train"][1], - "test" : metadata_urls["test"][1] - } + # ), + # GraySpectrogramConfig( + # name="data 200-600", + # description=_DESCRIPTION, + # data_url ={ + # "train" : data_urls["train"][1], + # "test" : data_urls["test"][1] + # }, + # metadata_url = { + # "train": metadata_urls["train"][1], + # "test" : metadata_urls["test"][1] + # } - ), - GraySpectrogramConfig( - name="data 600-1000", - description=_DESCRIPTION, - data_url = { - "train" : data_urls["train"][2], - "test" : data_urls["test"][2] - }, - metadata_url = { - "train" : metadata_urls["train"][2], - "test" : metadata_urls["test"][2] - } - ), - GraySpectrogramConfig( - name="data 1000-1300", - description=_DESCRIPTION, - data_url = { - "train" : data_urls["train"][3], - "test" : data_urls["test"][3] - }, - metadata_url = { - "train" : metadata_urls["train"][3], - "test" : metadata_urls["test"][3] - } + # ), + # GraySpectrogramConfig( + # name="data 600-1000", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][2], + # "test" : data_urls["test"][2] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][2], + # "test" : metadata_urls["test"][2] + # } + # ), + # GraySpectrogramConfig( + # name="data 1000-1300", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][3], + # "test" : data_urls["test"][3] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][3], + # "test" : metadata_urls["test"][3] + # } - ), - GraySpectrogramConfig( - name="data 1300-1600", - description=_DESCRIPTION, - data_url = { - "train" : data_urls["train"][4], - "test" : data_urls["test"][4] - }, - metadata_url = { - "train" : metadata_urls["train"][4], - "test" : metadata_urls["test"][4] - } - ) - ] + # ), + # GraySpectrogramConfig( + # name="data 1300-1600", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][4], + # "test" : data_urls["test"][4] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][4], + # "test" : metadata_urls["test"][4] + # } + # ), + # GraySpectrogramConfig( + # name="data 1600-2000", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][5], + # "test" : data_urls["test"][5] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][5], + # "test" : metadata_urls["test"][5] + # } + # ), + # GraySpectrogramConfig( + # name="data 2000-2200", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][6], + # "test" : data_urls["test"][6] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][6], + # "test" : metadata_urls["test"][6] + # } + # ), + # GraySpectrogramConfig( + # name="data 2200-2600", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][7], + # "test" : data_urls["test"][7] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][7], + # "test" : metadata_urls["test"][7] + # } + # ), + # GraySpectrogramConfig( + # name="data 2600-2800", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][8], + # "test" : data_urls["test"][8] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][8], + # "test" : metadata_urls["test"][8] + # } + # ), + # GraySpectrogramConfig( + # name="data 3000-3200", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][9], + # "test" : data_urls["test"][9] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][9], + # "test" : metadata_urls["test"][9] + # } + # ), + # GraySpectrogramConfig( + # name="data 3200-3400", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][10], + # "test" : data_urls["test"][10] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][11], + # "test" : metadata_urls["test"][11] + # } + # ), + # GraySpectrogramConfig( + # name="data 3400-3600", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][12], + # "test" : data_urls["test"][12] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][12], + # "test" : metadata_urls["test"][12] + # } + # ), + # GraySpectrogramConfig( + # name="data 3600-3800", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][13], + # "test" : data_urls["test"][1] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][14], + # "test" : metadata_urls["test"][14] + # } + # ), + # GraySpectrogramConfig( + # name="data 3800-4000", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][15], + # "test" : data_urls["test"][15] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][15], + # "test" : metadata_urls["test"][15] + # } + # ), + # GraySpectrogramConfig( + # name="data 4000-4200", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][16], + # "test" : data_urls["test"][16] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][16], + # "test" : metadata_urls["test"][16] + # } + # ), + # GraySpectrogramConfig( + # name="data 4200-4400", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][17], + # "test" : data_urls["test"][17] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][17], + # "test" : metadata_urls["test"][17] + # } + # ), + # GraySpectrogramConfig( + # name="data 4400-4600", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][18], + # "test" : data_urls["test"][18] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][18], + # "test" : metadata_urls["test"][18] + # } + # ), + # GraySpectrogramConfig( + # name="data 4600-4800", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][19], + # "test" : data_urls["test"][19] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][19], + # "test" : metadata_urls["test"][19] + # } + # ), + # GraySpectrogramConfig( + # name="data 4800-5000", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][20], + # "test" : data_urls["test"][20] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][20], + # "test" : metadata_urls["test"][20] + # } + # ), + # GraySpectrogramConfig( + # name="data 5000-5200", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][21], + # "test" : data_urls["test"][21] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][4], + # "test" : metadata_urls["test"][4] + # } + # ), + # GraySpectrogramConfig( + # name="data 5200-5520", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][4], + # "test" : data_urls["test"][4] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][4], + # "test" : metadata_urls["test"][4] + # } + # ), + # GraySpectrogramConfig( + # name="data 2800-3000", + # description=_DESCRIPTION, + # data_url = { + # "train" : data_urls["train"][4], + # "test" : data_urls["test"][4] + # }, + # metadata_url = { + # "train" : metadata_urls["train"][4], + # "test" : metadata_urls["test"][4] + # } + # ) + # ] def _info(self) -> DatasetInfo: return datasets.DatasetInfo( diff --git a/data/test/metadata_0005.jsonl b/data/test/metadata_0005.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d554b1a886862b4b3794c946992646ed72b4480f --- /dev/null +++ b/data/test/metadata_0005.jsonl @@ -0,0 +1,666 @@ +{"file_name": "test_02838.png", "caption": "A male vocalist sings this soft Christian Worship song. The tempo is medium with a keyboard accompaniment, steady drumming, flute melody, subtle bass line; rhythmic acoustic guitar and soft vocals. The song is a melodious, soothing, prayerful, calm ,contemporary Christian Praise and Worship song.", "data_idx": 1600, "number": 0, "label": "country"} +{"file_name": "test_02839.png", "caption": "A male vocalist sings this soft Christian Worship song. The tempo is medium with a keyboard accompaniment, steady drumming, flute melody, subtle bass line; rhythmic acoustic guitar and soft vocals. The song is a melodious, soothing, prayerful, calm ,contemporary Christian Praise and Worship song.", "data_idx": 1600, "number": 1, "label": "country"} +{"file_name": "test_02840.png", "caption": "A male vocalist sings this soft Christian Worship song. The tempo is medium with a keyboard accompaniment, steady drumming, flute melody, subtle bass line; rhythmic acoustic guitar and soft vocals. The song is a melodious, soothing, prayerful, calm ,contemporary Christian Praise and Worship song.", "data_idx": 1600, "number": 2, "label": "country"} +{"file_name": "test_02841.png", "caption": "A male vocalist sings this soft Christian Worship song. The tempo is medium with a keyboard accompaniment, steady drumming, flute melody, subtle bass line; rhythmic acoustic guitar and soft vocals. The song is a melodious, soothing, prayerful, calm ,contemporary Christian Praise and Worship song.", "data_idx": 1600, "number": 3, "label": "country"} +{"file_name": "test_02842.png", "caption": "The low quality recording features a mellow keys melody and breathy flute melody being played. It sounds sad, passionate and emotional. The recording is noisy and in mono as it was probably recorded with a phone.", "data_idx": 1606, "number": 0, "label": "classical"} +{"file_name": "test_02843.png", "caption": "The low quality recording features a mellow keys melody and breathy flute melody being played. It sounds sad, passionate and emotional. The recording is noisy and in mono as it was probably recorded with a phone.", "data_idx": 1606, "number": 1, "label": "classical"} +{"file_name": "test_02844.png", "caption": "The low quality recording features a mellow keys melody and breathy flute melody being played. It sounds sad, passionate and emotional. The recording is noisy and in mono as it was probably recorded with a phone.", "data_idx": 1606, "number": 2, "label": "classical"} +{"file_name": "test_02845.png", "caption": "The low quality recording features a mellow keys melody and breathy flute melody being played. It sounds sad, passionate and emotional. The recording is noisy and in mono as it was probably recorded with a phone.", "data_idx": 1606, "number": 3, "label": "classical"} +{"file_name": "test_02846.png", "caption": "This is an instrumental jam piece. The only instrument is an acoustic guitar which is being played with a percussive slap technique. The track is groovy. This piece could fit perfectly as an advertisement jingle.", "data_idx": 1608, "number": 0, "label": "reggae"} +{"file_name": "test_02847.png", "caption": "This is an instrumental jam piece. The only instrument is an acoustic guitar which is being played with a percussive slap technique. The track is groovy. This piece could fit perfectly as an advertisement jingle.", "data_idx": 1608, "number": 1, "label": "reggae"} +{"file_name": "test_02848.png", "caption": "This is an instrumental jam piece. The only instrument is an acoustic guitar which is being played with a percussive slap technique. The track is groovy. This piece could fit perfectly as an advertisement jingle.", "data_idx": 1608, "number": 2, "label": "reggae"} +{"file_name": "test_02849.png", "caption": "This is an instrumental jam piece. The only instrument is an acoustic guitar which is being played with a percussive slap technique. The track is groovy. This piece could fit perfectly as an advertisement jingle.", "data_idx": 1608, "number": 3, "label": "reggae"} +{"file_name": "test_02850.png", "caption": "The low quality recording features a cello solo melody played over mellow piano chords. It sounds passionate and emotional. The recording is noisy.", "data_idx": 1609, "number": 0, "label": "classical"} +{"file_name": "test_02851.png", "caption": "The low quality recording features a cello solo melody played over mellow piano chords. It sounds passionate and emotional. The recording is noisy.", "data_idx": 1609, "number": 1, "label": "classical"} +{"file_name": "test_02852.png", "caption": "The low quality recording features a cello solo melody played over mellow piano chords. It sounds passionate and emotional. The recording is noisy.", "data_idx": 1609, "number": 2, "label": "classical"} +{"file_name": "test_02853.png", "caption": "The low quality recording features a cello solo melody played over mellow piano chords. It sounds passionate and emotional. The recording is noisy.", "data_idx": 1609, "number": 3, "label": "classical"} +{"file_name": "test_02854.png", "caption": "This salsa song features a male voice. It starts off with the keyboard and bass playing a synchronized melody. The percussion is played only as a rimshot in a grouping of two strokes followed by a group of three strokes. This is followed by a male voice singing one word. The rest of the instruments start playing at a faster tempo. The main melody of the song is played on the trumpet and saxophone. This is accompanied by percussion playing a salsa beat. A keyboard plays chords with a salsa feel. This song can be played at a dance party.", "data_idx": 1612, "number": 0, "label": "hiphop"} +{"file_name": "test_02855.png", "caption": "This salsa song features a male voice. It starts off with the keyboard and bass playing a synchronized melody. The percussion is played only as a rimshot in a grouping of two strokes followed by a group of three strokes. This is followed by a male voice singing one word. The rest of the instruments start playing at a faster tempo. The main melody of the song is played on the trumpet and saxophone. This is accompanied by percussion playing a salsa beat. A keyboard plays chords with a salsa feel. This song can be played at a dance party.", "data_idx": 1612, "number": 1, "label": "hiphop"} +{"file_name": "test_02856.png", "caption": "This salsa song features a male voice. It starts off with the keyboard and bass playing a synchronized melody. The percussion is played only as a rimshot in a grouping of two strokes followed by a group of three strokes. This is followed by a male voice singing one word. The rest of the instruments start playing at a faster tempo. The main melody of the song is played on the trumpet and saxophone. This is accompanied by percussion playing a salsa beat. A keyboard plays chords with a salsa feel. This song can be played at a dance party.", "data_idx": 1612, "number": 2, "label": "hiphop"} +{"file_name": "test_02857.png", "caption": "This salsa song features a male voice. It starts off with the keyboard and bass playing a synchronized melody. The percussion is played only as a rimshot in a grouping of two strokes followed by a group of three strokes. This is followed by a male voice singing one word. The rest of the instruments start playing at a faster tempo. The main melody of the song is played on the trumpet and saxophone. This is accompanied by percussion playing a salsa beat. A keyboard plays chords with a salsa feel. This song can be played at a dance party.", "data_idx": 1612, "number": 3, "label": "hiphop"} +{"file_name": "test_02858.png", "caption": "We hear a viola and harpsichord being played, with the overall emotion of the piece being thrilling and suspenseful. A high tremolo is played on the violin, which creates the feeling of an energy build-up. This is a classical style piece.", "data_idx": 1613, "number": 0, "label": "classical"} +{"file_name": "test_02859.png", "caption": "We hear a viola and harpsichord being played, with the overall emotion of the piece being thrilling and suspenseful. A high tremolo is played on the violin, which creates the feeling of an energy build-up. This is a classical style piece.", "data_idx": 1613, "number": 1, "label": "classical"} +{"file_name": "test_02860.png", "caption": "We hear a viola and harpsichord being played, with the overall emotion of the piece being thrilling and suspenseful. A high tremolo is played on the violin, which creates the feeling of an energy build-up. This is a classical style piece.", "data_idx": 1613, "number": 2, "label": "classical"} +{"file_name": "test_02861.png", "caption": "We hear a viola and harpsichord being played, with the overall emotion of the piece being thrilling and suspenseful. A high tremolo is played on the violin, which creates the feeling of an energy build-up. This is a classical style piece.", "data_idx": 1613, "number": 3, "label": "classical"} +{"file_name": "test_02862.png", "caption": "This is an educational recording. There is a male voice speaking in an instructive manner regarding numerous singing bowls in different shapes and sizes. The player hits each singing bowl while describing their feelings. The sound of the bowls could be isolated from the voice for meditation music.", "data_idx": 1615, "number": 0, "label": "classical"} +{"file_name": "test_02863.png", "caption": "This is an educational recording. There is a male voice speaking in an instructive manner regarding numerous singing bowls in different shapes and sizes. The player hits each singing bowl while describing their feelings. The sound of the bowls could be isolated from the voice for meditation music.", "data_idx": 1615, "number": 1, "label": "classical"} +{"file_name": "test_02864.png", "caption": "This is an educational recording. There is a male voice speaking in an instructive manner regarding numerous singing bowls in different shapes and sizes. The player hits each singing bowl while describing their feelings. The sound of the bowls could be isolated from the voice for meditation music.", "data_idx": 1615, "number": 2, "label": "classical"} +{"file_name": "test_02865.png", "caption": "This is an educational recording. There is a male voice speaking in an instructive manner regarding numerous singing bowls in different shapes and sizes. The player hits each singing bowl while describing their feelings. The sound of the bowls could be isolated from the voice for meditation music.", "data_idx": 1615, "number": 3, "label": "classical"} +{"file_name": "test_02866.png", "caption": "Someone is strumming chords on a guitar while someone else is playing a melody using a harmonica. This song sounds like sitting around a bonfire.", "data_idx": 1617, "number": 0, "label": "classical"} +{"file_name": "test_02867.png", "caption": "Someone is strumming chords on a guitar while someone else is playing a melody using a harmonica. This song sounds like sitting around a bonfire.", "data_idx": 1617, "number": 1, "label": "classical"} +{"file_name": "test_02868.png", "caption": "Someone is strumming chords on a guitar while someone else is playing a melody using a harmonica. This song sounds like sitting around a bonfire.", "data_idx": 1617, "number": 2, "label": "classical"} +{"file_name": "test_02869.png", "caption": "Someone is strumming chords on a guitar while someone else is playing a melody using a harmonica. This song sounds like sitting around a bonfire.", "data_idx": 1617, "number": 3, "label": "classical"} +{"file_name": "test_02870.png", "caption": "This audio contains marching drums with a kick and snare rolls. A brass section starts to play a melody in the low to mid range up to the higher register. In the background you can hear a strong wind that seems not to be part of the song. This song may be playing in a pirate movie-scene.", "data_idx": 1618, "number": 0, "label": "hiphop"} +{"file_name": "test_02871.png", "caption": "This audio contains marching drums with a kick and snare rolls. A brass section starts to play a melody in the low to mid range up to the higher register. In the background you can hear a strong wind that seems not to be part of the song. This song may be playing in a pirate movie-scene.", "data_idx": 1618, "number": 1, "label": "hiphop"} +{"file_name": "test_02872.png", "caption": "This audio contains marching drums with a kick and snare rolls. A brass section starts to play a melody in the low to mid range up to the higher register. In the background you can hear a strong wind that seems not to be part of the song. This song may be playing in a pirate movie-scene.", "data_idx": 1618, "number": 2, "label": "hiphop"} +{"file_name": "test_02873.png", "caption": "This audio contains marching drums with a kick and snare rolls. A brass section starts to play a melody in the low to mid range up to the higher register. In the background you can hear a strong wind that seems not to be part of the song. This song may be playing in a pirate movie-scene.", "data_idx": 1618, "number": 3, "label": "hiphop"} +{"file_name": "test_02874.png", "caption": "This is a recording of the steel pan tuning process. The performer repeatedly hits different parts of the steel pan to check if the tuning is correct. The instrument gives off a tropical sound. There is an irritating crackle sound coming from the recording. If it were not for this noise, the piece could be sampled for use in beat-making.", "data_idx": 1620, "number": 0, "label": "classical"} +{"file_name": "test_02875.png", "caption": "This is a recording of the steel pan tuning process. The performer repeatedly hits different parts of the steel pan to check if the tuning is correct. The instrument gives off a tropical sound. There is an irritating crackle sound coming from the recording. If it were not for this noise, the piece could be sampled for use in beat-making.", "data_idx": 1620, "number": 1, "label": "classical"} +{"file_name": "test_02876.png", "caption": "This is a recording of the steel pan tuning process. The performer repeatedly hits different parts of the steel pan to check if the tuning is correct. The instrument gives off a tropical sound. There is an irritating crackle sound coming from the recording. If it were not for this noise, the piece could be sampled for use in beat-making.", "data_idx": 1620, "number": 2, "label": "classical"} +{"file_name": "test_02877.png", "caption": "This is a recording of the steel pan tuning process. The performer repeatedly hits different parts of the steel pan to check if the tuning is correct. The instrument gives off a tropical sound. There is an irritating crackle sound coming from the recording. If it were not for this noise, the piece could be sampled for use in beat-making.", "data_idx": 1620, "number": 3, "label": "classical"} +{"file_name": "test_02878.png", "caption": "This is a drum cover of a hard rock/alternative metal music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the distorted electric guitar. There is a bass guitar playing in the background. The rhythmic background consists of a simple but loud rock acoustic drum beat. The atmosphere is aggressive.", "data_idx": 1621, "number": 0, "label": "rock"} +{"file_name": "test_02879.png", "caption": "This is a drum cover of a hard rock/alternative metal music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the distorted electric guitar. There is a bass guitar playing in the background. The rhythmic background consists of a simple but loud rock acoustic drum beat. The atmosphere is aggressive.", "data_idx": 1621, "number": 1, "label": "rock"} +{"file_name": "test_02880.png", "caption": "This is a drum cover of a hard rock/alternative metal music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the distorted electric guitar. There is a bass guitar playing in the background. The rhythmic background consists of a simple but loud rock acoustic drum beat. The atmosphere is aggressive.", "data_idx": 1621, "number": 2, "label": "rock"} +{"file_name": "test_02881.png", "caption": "This is a drum cover of a hard rock/alternative metal music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the distorted electric guitar. There is a bass guitar playing in the background. The rhythmic background consists of a simple but loud rock acoustic drum beat. The atmosphere is aggressive.", "data_idx": 1621, "number": 3, "label": "rock"} +{"file_name": "test_02882.png", "caption": "The low quality recording features a live performance of an urban latin song that consists of flat male vocal singing over groovy piano melody, groovy bass guitar, wooden percussive elements, wide toms, warm brass melody and widely spread claps. There is a short, exciting background male vocal in the middle of the loop. It sounds exotic, groovy and passionate.", "data_idx": 1627, "number": 0, "label": "reggae"} +{"file_name": "test_02883.png", "caption": "The low quality recording features a live performance of an urban latin song that consists of flat male vocal singing over groovy piano melody, groovy bass guitar, wooden percussive elements, wide toms, warm brass melody and widely spread claps. There is a short, exciting background male vocal in the middle of the loop. It sounds exotic, groovy and passionate.", "data_idx": 1627, "number": 1, "label": "reggae"} +{"file_name": "test_02884.png", "caption": "The low quality recording features a live performance of an urban latin song that consists of flat male vocal singing over groovy piano melody, groovy bass guitar, wooden percussive elements, wide toms, warm brass melody and widely spread claps. There is a short, exciting background male vocal in the middle of the loop. It sounds exotic, groovy and passionate.", "data_idx": 1627, "number": 2, "label": "reggae"} +{"file_name": "test_02885.png", "caption": "The low quality recording features a live performance of an urban latin song that consists of flat male vocal singing over groovy piano melody, groovy bass guitar, wooden percussive elements, wide toms, warm brass melody and widely spread claps. There is a short, exciting background male vocal in the middle of the loop. It sounds exotic, groovy and passionate.", "data_idx": 1627, "number": 3, "label": "reggae"} +{"file_name": "test_02886.png", "caption": "This is a drum & bass electronic music piece. There is no singer. There is a strong and fuzzy feeling bass sound. The rhythmic background consists of a loud and high tempo electronic drum beat. The atmosphere is modern and energetic. This piece could be playing at a nightclub or a dance club.", "data_idx": 1629, "number": 0, "label": "hiphop"} +{"file_name": "test_02887.png", "caption": "This is a drum & bass electronic music piece. There is no singer. There is a strong and fuzzy feeling bass sound. The rhythmic background consists of a loud and high tempo electronic drum beat. The atmosphere is modern and energetic. This piece could be playing at a nightclub or a dance club.", "data_idx": 1629, "number": 1, "label": "hiphop"} +{"file_name": "test_02888.png", "caption": "A female singer sings this spirited song. The tempo is fast with a lively piano accompaniment, punchy drumming, funky bass line, rhythmic acoustic guitar, and a droning synthesiser harmony. The music is loud, busy, chaotic and bustling and the vocals are subdued. This clip sounds like the song climax as the instrumentation is strong and powerful. The song is spirited, melodic,energetic, enthusiastic, youthful and engaging. This song is an Indie Pop song.", "data_idx": 1630, "number": 0, "label": "disco"} +{"file_name": "test_02889.png", "caption": "A female singer sings this spirited song. The tempo is fast with a lively piano accompaniment, punchy drumming, funky bass line, rhythmic acoustic guitar, and a droning synthesiser harmony. The music is loud, busy, chaotic and bustling and the vocals are subdued. This clip sounds like the song climax as the instrumentation is strong and powerful. The song is spirited, melodic,energetic, enthusiastic, youthful and engaging. This song is an Indie Pop song.", "data_idx": 1630, "number": 1, "label": "disco"} +{"file_name": "test_02890.png", "caption": "A female singer sings this spirited song. The tempo is fast with a lively piano accompaniment, punchy drumming, funky bass line, rhythmic acoustic guitar, and a droning synthesiser harmony. The music is loud, busy, chaotic and bustling and the vocals are subdued. This clip sounds like the song climax as the instrumentation is strong and powerful. The song is spirited, melodic,energetic, enthusiastic, youthful and engaging. This song is an Indie Pop song.", "data_idx": 1630, "number": 2, "label": "disco"} +{"file_name": "test_02891.png", "caption": "A female singer sings this spirited song. The tempo is fast with a lively piano accompaniment, punchy drumming, funky bass line, rhythmic acoustic guitar, and a droning synthesiser harmony. The music is loud, busy, chaotic and bustling and the vocals are subdued. This clip sounds like the song climax as the instrumentation is strong and powerful. The song is spirited, melodic,energetic, enthusiastic, youthful and engaging. This song is an Indie Pop song.", "data_idx": 1630, "number": 3, "label": "disco"} +{"file_name": "test_02892.png", "caption": "A female vocalist sings this soft love song in a foreign language. The tempo is medium with a mellifluous violin harmony, keyboard accompaniment, subtle bass, steady drumming and rhythmic acoustic guitar. The song is sweet, youthful, simple, romantic, sentimental, melancholic and pensive. This song is Romantic Pop.", "data_idx": 1631, "number": 0, "label": "rock"} +{"file_name": "test_02893.png", "caption": "A female vocalist sings this soft love song in a foreign language. The tempo is medium with a mellifluous violin harmony, keyboard accompaniment, subtle bass, steady drumming and rhythmic acoustic guitar. The song is sweet, youthful, simple, romantic, sentimental, melancholic and pensive. This song is Romantic Pop.", "data_idx": 1631, "number": 1, "label": "rock"} +{"file_name": "test_02894.png", "caption": "A female vocalist sings this soft love song in a foreign language. The tempo is medium with a mellifluous violin harmony, keyboard accompaniment, subtle bass, steady drumming and rhythmic acoustic guitar. The song is sweet, youthful, simple, romantic, sentimental, melancholic and pensive. This song is Romantic Pop.", "data_idx": 1631, "number": 2, "label": "rock"} +{"file_name": "test_02895.png", "caption": "A female vocalist sings this soft love song in a foreign language. The tempo is medium with a mellifluous violin harmony, keyboard accompaniment, subtle bass, steady drumming and rhythmic acoustic guitar. The song is sweet, youthful, simple, romantic, sentimental, melancholic and pensive. This song is Romantic Pop.", "data_idx": 1631, "number": 3, "label": "rock"} +{"file_name": "test_02896.png", "caption": "The low quality recording features a cover of a rock song sung by harmonizing female choir vocals. The recording is noisy, in mono and it sounds emotional and passionate.", "data_idx": 1632, "number": 0, "label": "classical"} +{"file_name": "test_02897.png", "caption": "The low quality recording features a cover of a rock song sung by harmonizing female choir vocals. The recording is noisy, in mono and it sounds emotional and passionate.", "data_idx": 1632, "number": 1, "label": "classical"} +{"file_name": "test_02898.png", "caption": "The low quality recording features a cover of a rock song sung by harmonizing female choir vocals. The recording is noisy, in mono and it sounds emotional and passionate.", "data_idx": 1632, "number": 2, "label": "classical"} +{"file_name": "test_02899.png", "caption": "The low quality recording features a cover of a rock song sung by harmonizing female choir vocals. The recording is noisy, in mono and it sounds emotional and passionate.", "data_idx": 1632, "number": 3, "label": "classical"} +{"file_name": "test_02900.png", "caption": "The low quality recording features a suspenseful synth pad playing in the background and echoing breathy flute melody playing over it. It sounds intense, mellow and relaxing.", "data_idx": 1633, "number": 0, "label": "classical"} +{"file_name": "test_02901.png", "caption": "The low quality recording features a suspenseful synth pad playing in the background and echoing breathy flute melody playing over it. It sounds intense, mellow and relaxing.", "data_idx": 1633, "number": 1, "label": "classical"} +{"file_name": "test_02902.png", "caption": "The low quality recording features a suspenseful synth pad playing in the background and echoing breathy flute melody playing over it. It sounds intense, mellow and relaxing.", "data_idx": 1633, "number": 2, "label": "classical"} +{"file_name": "test_02903.png", "caption": "The low quality recording features a suspenseful synth pad playing in the background and echoing breathy flute melody playing over it. It sounds intense, mellow and relaxing.", "data_idx": 1633, "number": 3, "label": "classical"} +{"file_name": "test_02904.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal, alongside monotone female vocal, singing over sustained strings melody, wooden percussion, shimmering shakers and some claps. It sounds passionate and the recording is in mono and noisy.", "data_idx": 1634, "number": 0, "label": "blues"} +{"file_name": "test_02905.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal, alongside monotone female vocal, singing over sustained strings melody, wooden percussion, shimmering shakers and some claps. It sounds passionate and the recording is in mono and noisy.", "data_idx": 1634, "number": 1, "label": "blues"} +{"file_name": "test_02906.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal, alongside monotone female vocal, singing over sustained strings melody, wooden percussion, shimmering shakers and some claps. It sounds passionate and the recording is in mono and noisy.", "data_idx": 1634, "number": 2, "label": "blues"} +{"file_name": "test_02907.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal, alongside monotone female vocal, singing over sustained strings melody, wooden percussion, shimmering shakers and some claps. It sounds passionate and the recording is in mono and noisy.", "data_idx": 1634, "number": 3, "label": "blues"} +{"file_name": "test_02908.png", "caption": "The low quality recording features an accordion melody played over regional Mexican playback that consists of accordion chords, groovy bass and flat male vocal singing over it. The recording is in mono, noisy and it sounds emotional and passionate.", "data_idx": 1637, "number": 0, "label": "blues"} +{"file_name": "test_02909.png", "caption": "The low quality recording features an accordion melody played over regional Mexican playback that consists of accordion chords, groovy bass and flat male vocal singing over it. The recording is in mono, noisy and it sounds emotional and passionate.", "data_idx": 1637, "number": 1, "label": "blues"} +{"file_name": "test_02910.png", "caption": "The low quality recording features an accordion melody played over regional Mexican playback that consists of accordion chords, groovy bass and flat male vocal singing over it. The recording is in mono, noisy and it sounds emotional and passionate.", "data_idx": 1637, "number": 2, "label": "blues"} +{"file_name": "test_02911.png", "caption": "The low quality recording features an accordion melody played over regional Mexican playback that consists of accordion chords, groovy bass and flat male vocal singing over it. The recording is in mono, noisy and it sounds emotional and passionate.", "data_idx": 1637, "number": 3, "label": "blues"} +{"file_name": "test_02912.png", "caption": "This audio contains someone playing a fast paced piece with a fast left hand and a slower melody in the right hand playing in the midrange. Someone starts playing an accordion alone. This song may be playing live jamming with your friend.", "data_idx": 1638, "number": 0, "label": "classical"} +{"file_name": "test_02913.png", "caption": "This audio contains someone playing a fast paced piece with a fast left hand and a slower melody in the right hand playing in the midrange. Someone starts playing an accordion alone. This song may be playing live jamming with your friend.", "data_idx": 1638, "number": 1, "label": "classical"} +{"file_name": "test_02914.png", "caption": "This audio contains someone playing a fast paced piece with a fast left hand and a slower melody in the right hand playing in the midrange. Someone starts playing an accordion alone. This song may be playing live jamming with your friend.", "data_idx": 1638, "number": 2, "label": "classical"} +{"file_name": "test_02915.png", "caption": "This audio contains someone playing a fast paced piece with a fast left hand and a slower melody in the right hand playing in the midrange. Someone starts playing an accordion alone. This song may be playing live jamming with your friend.", "data_idx": 1638, "number": 3, "label": "classical"} +{"file_name": "test_02916.png", "caption": "This blues song features a solo played on a harmonica. It starts off with the harmonica playing three descending notes. This is followed by the same three notes but the first note is played twice followed by the remaining two notes. This is accompanied by a guitar playing a rock and roll strumming pattern. The bass plays the root note of the chord. A piano plays in the background. There are no voices in this song. This song can be played in a bar scene in a movie.", "data_idx": 1640, "number": 0, "label": "hiphop"} +{"file_name": "test_02917.png", "caption": "This blues song features a solo played on a harmonica. It starts off with the harmonica playing three descending notes. This is followed by the same three notes but the first note is played twice followed by the remaining two notes. This is accompanied by a guitar playing a rock and roll strumming pattern. The bass plays the root note of the chord. A piano plays in the background. There are no voices in this song. This song can be played in a bar scene in a movie.", "data_idx": 1640, "number": 1, "label": "hiphop"} +{"file_name": "test_02918.png", "caption": "A male vocalist sings this quirky Rock melody. The tempo is medium fast with groovy electric guitar harmony, funky, intense bass lines, infectious drumming, keyboard accompaniment and vocal backup. The song is catchy, rhythmic, emotional, incessant, sentimental, melancholic, lonely, romantic , unconventional, quirky and upbeat. This song is classic rock.", "data_idx": 1641, "number": 0, "label": "disco"} +{"file_name": "test_02919.png", "caption": "A male vocalist sings this quirky Rock melody. The tempo is medium fast with groovy electric guitar harmony, funky, intense bass lines, infectious drumming, keyboard accompaniment and vocal backup. The song is catchy, rhythmic, emotional, incessant, sentimental, melancholic, lonely, romantic , unconventional, quirky and upbeat. This song is classic rock.", "data_idx": 1641, "number": 1, "label": "disco"} +{"file_name": "test_02920.png", "caption": "A male vocalist sings this quirky Rock melody. The tempo is medium fast with groovy electric guitar harmony, funky, intense bass lines, infectious drumming, keyboard accompaniment and vocal backup. The song is catchy, rhythmic, emotional, incessant, sentimental, melancholic, lonely, romantic , unconventional, quirky and upbeat. This song is classic rock.", "data_idx": 1641, "number": 2, "label": "disco"} +{"file_name": "test_02921.png", "caption": "A male vocalist sings this quirky Rock melody. The tempo is medium fast with groovy electric guitar harmony, funky, intense bass lines, infectious drumming, keyboard accompaniment and vocal backup. The song is catchy, rhythmic, emotional, incessant, sentimental, melancholic, lonely, romantic , unconventional, quirky and upbeat. This song is classic rock.", "data_idx": 1641, "number": 3, "label": "disco"} +{"file_name": "test_02922.png", "caption": "This is a folk metal/Celtic metal music piece. There is a male vocalist singing in the lead using the brutal vocal technique. The electric guitar is playing the main tune with a keyboard and a bass guitar backing it. The rhythm is being played by the acoustic drums at a slightly fast tempo. The atmosphere is loud and aggressive. This piece could be used in the soundtrack of a Celtic historical drama movie during scenes of battle.", "data_idx": 1643, "number": 0, "label": "metal"} +{"file_name": "test_02923.png", "caption": "This is a folk metal/Celtic metal music piece. There is a male vocalist singing in the lead using the brutal vocal technique. The electric guitar is playing the main tune with a keyboard and a bass guitar backing it. The rhythm is being played by the acoustic drums at a slightly fast tempo. The atmosphere is loud and aggressive. This piece could be used in the soundtrack of a Celtic historical drama movie during scenes of battle.", "data_idx": 1643, "number": 1, "label": "metal"} +{"file_name": "test_02924.png", "caption": "This is a folk metal/Celtic metal music piece. There is a male vocalist singing in the lead using the brutal vocal technique. The electric guitar is playing the main tune with a keyboard and a bass guitar backing it. The rhythm is being played by the acoustic drums at a slightly fast tempo. The atmosphere is loud and aggressive. This piece could be used in the soundtrack of a Celtic historical drama movie during scenes of battle.", "data_idx": 1643, "number": 2, "label": "metal"} +{"file_name": "test_02925.png", "caption": "This is a folk metal/Celtic metal music piece. There is a male vocalist singing in the lead using the brutal vocal technique. The electric guitar is playing the main tune with a keyboard and a bass guitar backing it. The rhythm is being played by the acoustic drums at a slightly fast tempo. The atmosphere is loud and aggressive. This piece could be used in the soundtrack of a Celtic historical drama movie during scenes of battle.", "data_idx": 1643, "number": 3, "label": "metal"} +{"file_name": "test_02926.png", "caption": "A male singer sings this cool melody. The song is medium tempo with a groovy guitar lead and steady drumming with tambourine percussion. The song is cool and sophisticated. The audio quality is bad.", "data_idx": 1645, "number": 0, "label": "rock"} +{"file_name": "test_02927.png", "caption": "A male singer sings this cool melody. The song is medium tempo with a groovy guitar lead and steady drumming with tambourine percussion. The song is cool and sophisticated. The audio quality is bad.", "data_idx": 1645, "number": 1, "label": "rock"} +{"file_name": "test_02928.png", "caption": "This song contains acoustic drums playing kind of a slow drum&bass rhythm along with a bass playing the rootnote of a e-guitar strumming along. Another e-guitar is strumming along, panned to the right side of the speakers. A male voice is singing in a higher key with delay in his voice. This song may be playing with headphones on a rainy colder day.", "data_idx": 1646, "number": 0, "label": "reggae"} +{"file_name": "test_02929.png", "caption": "This song contains acoustic drums playing kind of a slow drum&bass rhythm along with a bass playing the rootnote of a e-guitar strumming along. Another e-guitar is strumming along, panned to the right side of the speakers. A male voice is singing in a higher key with delay in his voice. This song may be playing with headphones on a rainy colder day.", "data_idx": 1646, "number": 1, "label": "reggae"} +{"file_name": "test_02930.png", "caption": "This song contains acoustic drums playing kind of a slow drum&bass rhythm along with a bass playing the rootnote of a e-guitar strumming along. Another e-guitar is strumming along, panned to the right side of the speakers. A male voice is singing in a higher key with delay in his voice. This song may be playing with headphones on a rainy colder day.", "data_idx": 1646, "number": 2, "label": "reggae"} +{"file_name": "test_02931.png", "caption": "This song contains acoustic drums playing kind of a slow drum&bass rhythm along with a bass playing the rootnote of a e-guitar strumming along. Another e-guitar is strumming along, panned to the right side of the speakers. A male voice is singing in a higher key with delay in his voice. This song may be playing with headphones on a rainy colder day.", "data_idx": 1646, "number": 3, "label": "reggae"} +{"file_name": "test_02932.png", "caption": "This music is an enthusiastic instrumental. The tempo is fast with an amplified harmonica solo. The music is lively, animated, happy, cheerful, energetic, enthusiastic and peppy.", "data_idx": 1647, "number": 0, "label": "classical"} +{"file_name": "test_02933.png", "caption": "This music is an enthusiastic instrumental. The tempo is fast with an amplified harmonica solo. The music is lively, animated, happy, cheerful, energetic, enthusiastic and peppy.", "data_idx": 1647, "number": 1, "label": "classical"} +{"file_name": "test_02934.png", "caption": "This music is an enthusiastic instrumental. The tempo is fast with an amplified harmonica solo. The music is lively, animated, happy, cheerful, energetic, enthusiastic and peppy.", "data_idx": 1647, "number": 2, "label": "classical"} +{"file_name": "test_02935.png", "caption": "This music is an enthusiastic instrumental. The tempo is fast with an amplified harmonica solo. The music is lively, animated, happy, cheerful, energetic, enthusiastic and peppy.", "data_idx": 1647, "number": 3, "label": "classical"} +{"file_name": "test_02936.png", "caption": "This is a live recording of the outro of a latin american salsa song. There are brass instruments like the saxophone and trumpet. There is a man who speaks in Spanish once the music stops. It was the end section or outro of a song.", "data_idx": 1648, "number": 0, "label": "rock"} +{"file_name": "test_02937.png", "caption": "This is a live recording of the outro of a latin american salsa song. There are brass instruments like the saxophone and trumpet. There is a man who speaks in Spanish once the music stops. It was the end section or outro of a song.", "data_idx": 1648, "number": 1, "label": "rock"} +{"file_name": "test_02938.png", "caption": "This is a live recording of the outro of a latin american salsa song. There are brass instruments like the saxophone and trumpet. There is a man who speaks in Spanish once the music stops. It was the end section or outro of a song.", "data_idx": 1648, "number": 2, "label": "rock"} +{"file_name": "test_02939.png", "caption": "This is a live recording of the outro of a latin american salsa song. There are brass instruments like the saxophone and trumpet. There is a man who speaks in Spanish once the music stops. It was the end section or outro of a song.", "data_idx": 1648, "number": 3, "label": "rock"} +{"file_name": "test_02940.png", "caption": "The Classical song features a mixed harmonizing choir singing over organ melody, brass section melody and wooden percussion. It sounds powerful and epic.", "data_idx": 1655, "number": 0, "label": "classical"} +{"file_name": "test_02941.png", "caption": "The Classical song features a mixed harmonizing choir singing over organ melody, brass section melody and wooden percussion. It sounds powerful and epic.", "data_idx": 1655, "number": 1, "label": "classical"} +{"file_name": "test_02942.png", "caption": "The Classical song features a mixed harmonizing choir singing over organ melody, brass section melody and wooden percussion. It sounds powerful and epic.", "data_idx": 1655, "number": 2, "label": "classical"} +{"file_name": "test_02943.png", "caption": "The Classical song features a mixed harmonizing choir singing over organ melody, brass section melody and wooden percussion. It sounds powerful and epic.", "data_idx": 1655, "number": 3, "label": "classical"} +{"file_name": "test_02944.png", "caption": "This is a techno music remix of a classical music piece. It is an instrumental piece. The melody is being played by a melodic pad. There is a constantly shifting synth sound. The rhythm is being played by an electronic drum beat. The atmosphere is trippy and eccentric. This piece could be used in the soundtrack of a psychedelic movie during a hallucination scene.", "data_idx": 1656, "number": 0, "label": "classical"} +{"file_name": "test_02945.png", "caption": "This is a techno music remix of a classical music piece. It is an instrumental piece. The melody is being played by a melodic pad. There is a constantly shifting synth sound. The rhythm is being played by an electronic drum beat. The atmosphere is trippy and eccentric. This piece could be used in the soundtrack of a psychedelic movie during a hallucination scene.", "data_idx": 1656, "number": 1, "label": "classical"} +{"file_name": "test_02946.png", "caption": "This is a techno music remix of a classical music piece. It is an instrumental piece. The melody is being played by a melodic pad. There is a constantly shifting synth sound. The rhythm is being played by an electronic drum beat. The atmosphere is trippy and eccentric. This piece could be used in the soundtrack of a psychedelic movie during a hallucination scene.", "data_idx": 1656, "number": 2, "label": "classical"} +{"file_name": "test_02947.png", "caption": "This is a techno music remix of a classical music piece. It is an instrumental piece. The melody is being played by a melodic pad. There is a constantly shifting synth sound. The rhythm is being played by an electronic drum beat. The atmosphere is trippy and eccentric. This piece could be used in the soundtrack of a psychedelic movie during a hallucination scene.", "data_idx": 1656, "number": 3, "label": "classical"} +{"file_name": "test_02948.png", "caption": "This is an Arabic music piece being performed live by an orchestra. There is a new flute playing a solo in the lead. The melodic background consists of the violin, the oud, and the qanun while the cello and the bass guitar are playing in the lower range. The rhythmic background is provided by percussive elements that sound like the doumbek. The atmosphere is vibrant. This piece could be used as an opening theme for a drama movie or a TV series that takes place in the Middle East.", "data_idx": 1657, "number": 0, "label": "classical"} +{"file_name": "test_02949.png", "caption": "This is an Arabic music piece being performed live by an orchestra. There is a new flute playing a solo in the lead. The melodic background consists of the violin, the oud, and the qanun while the cello and the bass guitar are playing in the lower range. The rhythmic background is provided by percussive elements that sound like the doumbek. The atmosphere is vibrant. This piece could be used as an opening theme for a drama movie or a TV series that takes place in the Middle East.", "data_idx": 1657, "number": 1, "label": "classical"} +{"file_name": "test_02950.png", "caption": "This is an Arabic music piece being performed live by an orchestra. There is a new flute playing a solo in the lead. The melodic background consists of the violin, the oud, and the qanun while the cello and the bass guitar are playing in the lower range. The rhythmic background is provided by percussive elements that sound like the doumbek. The atmosphere is vibrant. This piece could be used as an opening theme for a drama movie or a TV series that takes place in the Middle East.", "data_idx": 1657, "number": 2, "label": "classical"} +{"file_name": "test_02951.png", "caption": "This is an Arabic music piece being performed live by an orchestra. There is a new flute playing a solo in the lead. The melodic background consists of the violin, the oud, and the qanun while the cello and the bass guitar are playing in the lower range. The rhythmic background is provided by percussive elements that sound like the doumbek. The atmosphere is vibrant. This piece could be used as an opening theme for a drama movie or a TV series that takes place in the Middle East.", "data_idx": 1657, "number": 3, "label": "classical"} +{"file_name": "test_02952.png", "caption": "This is a piano-based ballad. The song is emotional, uplifting and generally pulls on your heartstrings. The singer sounds passionate and sings legato notes while the violins play sustained notes behind him to create an even more dramatic effect.", "data_idx": 1659, "number": 0, "label": "country"} +{"file_name": "test_02953.png", "caption": "This is a piano-based ballad. The song is emotional, uplifting and generally pulls on your heartstrings. The singer sounds passionate and sings legato notes while the violins play sustained notes behind him to create an even more dramatic effect.", "data_idx": 1659, "number": 1, "label": "country"} +{"file_name": "test_02954.png", "caption": "This folk song features the melody played on a harp. The instrument plays the bass and treble notes of the song. There are no other instruments in this song. There is no voice in this song. This song can be played in a sad movie.", "data_idx": 1661, "number": 0, "label": "jazz"} +{"file_name": "test_02955.png", "caption": "This folk song features the melody played on a harp. The instrument plays the bass and treble notes of the song. There are no other instruments in this song. There is no voice in this song. This song can be played in a sad movie.", "data_idx": 1661, "number": 1, "label": "jazz"} +{"file_name": "test_02956.png", "caption": "This folk song features the melody played on a harp. The instrument plays the bass and treble notes of the song. There are no other instruments in this song. There is no voice in this song. This song can be played in a sad movie.", "data_idx": 1661, "number": 2, "label": "jazz"} +{"file_name": "test_02957.png", "caption": "This folk song features the melody played on a harp. The instrument plays the bass and treble notes of the song. There are no other instruments in this song. There is no voice in this song. This song can be played in a sad movie.", "data_idx": 1661, "number": 3, "label": "jazz"} +{"file_name": "test_02958.png", "caption": "The low quality recording features a reverberant female vocal singing over acoustic guitar arpeggiated melody. It sounds soft, mellow and passionate. The recording is noisy and since the overall sound is leaning towards the right channel, the stereo image is unbalanced.", "data_idx": 1663, "number": 0, "label": "country"} +{"file_name": "test_02959.png", "caption": "The low quality recording features a reverberant female vocal singing over acoustic guitar arpeggiated melody. It sounds soft, mellow and passionate. The recording is noisy and since the overall sound is leaning towards the right channel, the stereo image is unbalanced.", "data_idx": 1663, "number": 1, "label": "country"} +{"file_name": "test_02960.png", "caption": "The low quality recording features a reverberant female vocal singing over acoustic guitar arpeggiated melody. It sounds soft, mellow and passionate. The recording is noisy and since the overall sound is leaning towards the right channel, the stereo image is unbalanced.", "data_idx": 1663, "number": 2, "label": "country"} +{"file_name": "test_02961.png", "caption": "The low quality recording features a reverberant female vocal singing over acoustic guitar arpeggiated melody. It sounds soft, mellow and passionate. The recording is noisy and since the overall sound is leaning towards the right channel, the stereo image is unbalanced.", "data_idx": 1663, "number": 3, "label": "country"} +{"file_name": "test_02962.png", "caption": "The low quality recording features a DJ scratching a hip hop song that consists of punchy kick and snare hits, shimmering hi hats and syncopated open hats. There are some plastic tapping sounds. The recording is noisy, in mono and it sounds groovy.", "data_idx": 1664, "number": 0, "label": "hiphop"} +{"file_name": "test_02963.png", "caption": "The low quality recording features a DJ scratching a hip hop song that consists of punchy kick and snare hits, shimmering hi hats and syncopated open hats. There are some plastic tapping sounds. The recording is noisy, in mono and it sounds groovy.", "data_idx": 1664, "number": 1, "label": "hiphop"} +{"file_name": "test_02964.png", "caption": "A male vocalist sings this simple pop. The tempo is medium with an electric guitar melody, keyboard accompaniment, steady drumming, steady bass lines and acoustic guitar rhythm. The song is a simple, melodic, earnest, engaging Soft Rock;", "data_idx": 1665, "number": 0, "label": "rock"} +{"file_name": "test_02965.png", "caption": "A male vocalist sings this simple pop. The tempo is medium with an electric guitar melody, keyboard accompaniment, steady drumming, steady bass lines and acoustic guitar rhythm. The song is a simple, melodic, earnest, engaging Soft Rock;", "data_idx": 1665, "number": 1, "label": "rock"} +{"file_name": "test_02966.png", "caption": "A male vocalist sings this simple pop. The tempo is medium with an electric guitar melody, keyboard accompaniment, steady drumming, steady bass lines and acoustic guitar rhythm. The song is a simple, melodic, earnest, engaging Soft Rock;", "data_idx": 1665, "number": 2, "label": "rock"} +{"file_name": "test_02967.png", "caption": "A male vocalist sings this simple pop. The tempo is medium with an electric guitar melody, keyboard accompaniment, steady drumming, steady bass lines and acoustic guitar rhythm. The song is a simple, melodic, earnest, engaging Soft Rock;", "data_idx": 1665, "number": 3, "label": "rock"} +{"file_name": "test_02968.png", "caption": "This symphonic song features a string section playing the main melody. There are multiple violins playing different parts in harmony. The music starts off with four ascending notes followed by one descending note which is stretched out. This is followed by a descending run. The song has an epic feel and can be played as a grand entrance theme of royalty.", "data_idx": 1667, "number": 0, "label": "hiphop"} +{"file_name": "test_02969.png", "caption": "This symphonic song features a string section playing the main melody. There are multiple violins playing different parts in harmony. The music starts off with four ascending notes followed by one descending note which is stretched out. This is followed by a descending run. The song has an epic feel and can be played as a grand entrance theme of royalty.", "data_idx": 1667, "number": 1, "label": "hiphop"} +{"file_name": "test_02970.png", "caption": "solo marching snare music. The snare is tight and high pitched. The player is performing various rudiments. The feel is regimented, almost militaristic and demonstrates virtuosity.", "data_idx": 1670, "number": 0, "label": "hiphop"} +{"file_name": "test_02971.png", "caption": "solo marching snare music. The snare is tight and high pitched. The player is performing various rudiments. The feel is regimented, almost militaristic and demonstrates virtuosity.", "data_idx": 1670, "number": 1, "label": "hiphop"} +{"file_name": "test_02972.png", "caption": "Amateur recording of solo beat boxing of a cover of a popular song.", "data_idx": 1672, "number": 0, "label": "hiphop"} +{"file_name": "test_02973.png", "caption": "Amateur recording of solo beat boxing of a cover of a popular song.", "data_idx": 1672, "number": 1, "label": "hiphop"} +{"file_name": "test_02974.png", "caption": "The low quality recording features a drum cover of a pop song that consists of energetic tom rolls, shimmering cymbals and punchy kick and snare hits. The audio slowly fades out, as it is probably an Outro section of the song.", "data_idx": 1676, "number": 0, "label": "hiphop"} +{"file_name": "test_02975.png", "caption": "The low quality recording features a drum cover of a pop song that consists of energetic tom rolls, shimmering cymbals and punchy kick and snare hits. The audio slowly fades out, as it is probably an Outro section of the song.", "data_idx": 1676, "number": 1, "label": "hiphop"} +{"file_name": "test_02976.png", "caption": "The low quality recording features a drum cover of a pop song that consists of energetic tom rolls, shimmering cymbals and punchy kick and snare hits. The audio slowly fades out, as it is probably an Outro section of the song.", "data_idx": 1676, "number": 2, "label": "hiphop"} +{"file_name": "test_02977.png", "caption": "The low quality recording features a drum cover of a pop song that consists of energetic tom rolls, shimmering cymbals and punchy kick and snare hits. The audio slowly fades out, as it is probably an Outro section of the song.", "data_idx": 1676, "number": 3, "label": "hiphop"} +{"file_name": "test_02978.png", "caption": "This is an Ethiopian traditional music piece. There is a female vocalist singing in a crying-like manner through the use of autotune. There are traditional Ethiopian instruments such as washing and masenqo in the melodic background. The rhythm is being played by the percussion. There is an atmosphere of mourning in this piece. This piece could be used in the soundtrack of an Ethiopian drama movie.", "data_idx": 1680, "number": 0, "label": "blues"} +{"file_name": "test_02979.png", "caption": "This is an Ethiopian traditional music piece. There is a female vocalist singing in a crying-like manner through the use of autotune. There are traditional Ethiopian instruments such as washing and masenqo in the melodic background. The rhythm is being played by the percussion. There is an atmosphere of mourning in this piece. This piece could be used in the soundtrack of an Ethiopian drama movie.", "data_idx": 1680, "number": 1, "label": "blues"} +{"file_name": "test_02980.png", "caption": "The low quality recording features a mixed harmonizing vocals singing over shimmering bells and groovy piano melody. It sounds passionate and euphoric. The recording is noisy.", "data_idx": 1682, "number": 0, "label": "blues"} +{"file_name": "test_02981.png", "caption": "The low quality recording features a mixed harmonizing vocals singing over shimmering bells and groovy piano melody. It sounds passionate and euphoric. The recording is noisy.", "data_idx": 1682, "number": 1, "label": "blues"} +{"file_name": "test_02982.png", "caption": "The low quality recording features a mixed harmonizing vocals singing over shimmering bells and groovy piano melody. It sounds passionate and euphoric. The recording is noisy.", "data_idx": 1682, "number": 2, "label": "blues"} +{"file_name": "test_02983.png", "caption": "The low quality recording features a mixed harmonizing vocals singing over shimmering bells and groovy piano melody. It sounds passionate and euphoric. The recording is noisy.", "data_idx": 1682, "number": 3, "label": "blues"} +{"file_name": "test_02984.png", "caption": "The low quality recording features a flat male vocal counting rhythm over shimmering ride cymbals and soft snare hits. The recording is a bit noisy and it sounds like a tutorial on how to play drums.", "data_idx": 1684, "number": 0, "label": "hiphop"} +{"file_name": "test_02985.png", "caption": "The low quality recording features a flat male vocal counting rhythm over shimmering ride cymbals and soft snare hits. The recording is a bit noisy and it sounds like a tutorial on how to play drums.", "data_idx": 1684, "number": 1, "label": "hiphop"} +{"file_name": "test_02986.png", "caption": "The low quality recording features a flat male vocal counting rhythm over shimmering ride cymbals and soft snare hits. The recording is a bit noisy and it sounds like a tutorial on how to play drums.", "data_idx": 1684, "number": 2, "label": "hiphop"} +{"file_name": "test_02987.png", "caption": "The low quality recording features a flat male vocal counting rhythm over shimmering ride cymbals and soft snare hits. The recording is a bit noisy and it sounds like a tutorial on how to play drums.", "data_idx": 1684, "number": 3, "label": "hiphop"} +{"file_name": "test_02988.png", "caption": "This song contains an overlayer of trumpets playing a melody in a higher register along to a tuba serving as bass. This song may be playing for a video layering sounds on top of each other.", "data_idx": 1685, "number": 0, "label": "jazz"} +{"file_name": "test_02989.png", "caption": "This song contains an overlayer of trumpets playing a melody in a higher register along to a tuba serving as bass. This song may be playing for a video layering sounds on top of each other.", "data_idx": 1685, "number": 1, "label": "jazz"} +{"file_name": "test_02990.png", "caption": "This song contains an overlayer of trumpets playing a melody in a higher register along to a tuba serving as bass. This song may be playing for a video layering sounds on top of each other.", "data_idx": 1685, "number": 2, "label": "jazz"} +{"file_name": "test_02991.png", "caption": "This song contains an overlayer of trumpets playing a melody in a higher register along to a tuba serving as bass. This song may be playing for a video layering sounds on top of each other.", "data_idx": 1685, "number": 3, "label": "jazz"} +{"file_name": "test_02992.png", "caption": "This is a live performance of an electronic dance music piece. There is a vocal sample repeating the same line. A synth is playing the tune while the electronic drums are playing the rhythm. There is a rising pattern and an energetic atmosphere. If it were not for the poor quality of the recording, this piece would fit nicely at a nightclub.", "data_idx": 1686, "number": 0, "label": "metal"} +{"file_name": "test_02993.png", "caption": "This is a live performance of an electronic dance music piece. There is a vocal sample repeating the same line. A synth is playing the tune while the electronic drums are playing the rhythm. There is a rising pattern and an energetic atmosphere. If it were not for the poor quality of the recording, this piece would fit nicely at a nightclub.", "data_idx": 1686, "number": 1, "label": "metal"} +{"file_name": "test_02994.png", "caption": "This is a live performance of an electronic dance music piece. There is a vocal sample repeating the same line. A synth is playing the tune while the electronic drums are playing the rhythm. There is a rising pattern and an energetic atmosphere. If it were not for the poor quality of the recording, this piece would fit nicely at a nightclub.", "data_idx": 1686, "number": 2, "label": "metal"} +{"file_name": "test_02995.png", "caption": "This is a live performance of an electronic dance music piece. There is a vocal sample repeating the same line. A synth is playing the tune while the electronic drums are playing the rhythm. There is a rising pattern and an energetic atmosphere. If it were not for the poor quality of the recording, this piece would fit nicely at a nightclub.", "data_idx": 1686, "number": 3, "label": "metal"} +{"file_name": "test_02996.png", "caption": "This audio contains a male voice talking with a lot of reverb on his voice. Then someone starts playing a single tone on a cembalo. This is an amateur recording and sounds more like a tutorial.", "data_idx": 1691, "number": 0, "label": "classical"} +{"file_name": "test_02997.png", "caption": "This audio contains a male voice talking with a lot of reverb on his voice. Then someone starts playing a single tone on a cembalo. This is an amateur recording and sounds more like a tutorial.", "data_idx": 1691, "number": 1, "label": "classical"} +{"file_name": "test_02998.png", "caption": "The low quality recording features a live performance of a classical song and it consists of tuba melody. It sounds mellow, soft and reverberant, as it was recorded in a huge concert hall. The recording is a bit noisy.", "data_idx": 1692, "number": 0, "label": "jazz"} +{"file_name": "test_02999.png", "caption": "The low quality recording features a live performance of a classical song and it consists of tuba melody. It sounds mellow, soft and reverberant, as it was recorded in a huge concert hall. The recording is a bit noisy.", "data_idx": 1692, "number": 1, "label": "jazz"} +{"file_name": "test_03000.png", "caption": "The low quality recording features a live performance of a classical song and it consists of tuba melody. It sounds mellow, soft and reverberant, as it was recorded in a huge concert hall. The recording is a bit noisy.", "data_idx": 1692, "number": 2, "label": "jazz"} +{"file_name": "test_03001.png", "caption": "The low quality recording features a live performance of a classical song and it consists of tuba melody. It sounds mellow, soft and reverberant, as it was recorded in a huge concert hall. The recording is a bit noisy.", "data_idx": 1692, "number": 3, "label": "jazz"} +{"file_name": "test_03002.png", "caption": "The song is an instrumental. The tempo is medium fast with a strong guitar lead, rock drumming rhythm, percussive bass line and an electric guitar strumming rhythm. The song is high on adrenaline and exciting. The audio quality is very bad with ambient crowd screaming noises.", "data_idx": 1693, "number": 0, "label": "metal"} +{"file_name": "test_03003.png", "caption": "The song is an instrumental. The tempo is medium fast with a strong guitar lead, rock drumming rhythm, percussive bass line and an electric guitar strumming rhythm. The song is high on adrenaline and exciting. The audio quality is very bad with ambient crowd screaming noises.", "data_idx": 1693, "number": 1, "label": "metal"} +{"file_name": "test_03004.png", "caption": "This song features a male voice singing the main melody. Other male voices sing fills in between lines as backing voices. A repetitive melody is played on the marimba. The percussion is programmed and the focus is on the continuous hi-hat strokes. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played at a dance party.", "data_idx": 1694, "number": 0, "label": "disco"} +{"file_name": "test_03005.png", "caption": "This song features a male voice singing the main melody. Other male voices sing fills in between lines as backing voices. A repetitive melody is played on the marimba. The percussion is programmed and the focus is on the continuous hi-hat strokes. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played at a dance party.", "data_idx": 1694, "number": 1, "label": "disco"} +{"file_name": "test_03006.png", "caption": "This song features a male voice singing the main melody. Other male voices sing fills in between lines as backing voices. A repetitive melody is played on the marimba. The percussion is programmed and the focus is on the continuous hi-hat strokes. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played at a dance party.", "data_idx": 1694, "number": 2, "label": "disco"} +{"file_name": "test_03007.png", "caption": "This song features a male voice singing the main melody. Other male voices sing fills in between lines as backing voices. A repetitive melody is played on the marimba. The percussion is programmed and the focus is on the continuous hi-hat strokes. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played at a dance party.", "data_idx": 1694, "number": 3, "label": "disco"} +{"file_name": "test_03008.png", "caption": "Ominous orchestral music with long held string notes, bowed string bass, electronic cymbal roll and concert bass drum. The mood is eerie.", "data_idx": 1695, "number": 0, "label": "reggae"} +{"file_name": "test_03009.png", "caption": "Ominous orchestral music with long held string notes, bowed string bass, electronic cymbal roll and concert bass drum. The mood is eerie.", "data_idx": 1695, "number": 1, "label": "reggae"} +{"file_name": "test_03010.png", "caption": "Ominous orchestral music with long held string notes, bowed string bass, electronic cymbal roll and concert bass drum. The mood is eerie.", "data_idx": 1695, "number": 2, "label": "reggae"} +{"file_name": "test_03011.png", "caption": "Ominous orchestral music with long held string notes, bowed string bass, electronic cymbal roll and concert bass drum. The mood is eerie.", "data_idx": 1695, "number": 3, "label": "reggae"} +{"file_name": "test_03012.png", "caption": "This music is a didgeridoo instrumental. The tempo is slow with an incessant unusual, droning harmony of the didgeridoo. There are no other instruments used. The music is continuous droning, meditative, hypnotic and trance like.", "data_idx": 1698, "number": 0, "label": "hiphop"} +{"file_name": "test_03013.png", "caption": "This music is a didgeridoo instrumental. The tempo is slow with an incessant unusual, droning harmony of the didgeridoo. There are no other instruments used. The music is continuous droning, meditative, hypnotic and trance like.", "data_idx": 1698, "number": 1, "label": "hiphop"} +{"file_name": "test_03014.png", "caption": "This music is a didgeridoo instrumental. The tempo is slow with an incessant unusual, droning harmony of the didgeridoo. There are no other instruments used. The music is continuous droning, meditative, hypnotic and trance like.", "data_idx": 1698, "number": 2, "label": "hiphop"} +{"file_name": "test_03015.png", "caption": "This music is a didgeridoo instrumental. The tempo is slow with an incessant unusual, droning harmony of the didgeridoo. There are no other instruments used. The music is continuous droning, meditative, hypnotic and trance like.", "data_idx": 1698, "number": 3, "label": "hiphop"} +{"file_name": "test_03016.png", "caption": "This is a country folk song with a generally positive, cheerful and joyful vibe to it. The singer is a man with an elderly voice that has a quality that sounds like a gurgle. His style of singing and the content of lyrics and melody are similar to hearing a story being told. There aren't really any rhyming lyrics - it's more like he is telling a story in song form. There are licks being played on an electric guitar, as well as certain motifs on the violin in between particular phrases by the singer.", "data_idx": 1701, "number": 0, "label": "reggae"} +{"file_name": "test_03017.png", "caption": "This is a country folk song with a generally positive, cheerful and joyful vibe to it. The singer is a man with an elderly voice that has a quality that sounds like a gurgle. His style of singing and the content of lyrics and melody are similar to hearing a story being told. There aren't really any rhyming lyrics - it's more like he is telling a story in song form. There are licks being played on an electric guitar, as well as certain motifs on the violin in between particular phrases by the singer.", "data_idx": 1701, "number": 1, "label": "reggae"} +{"file_name": "test_03018.png", "caption": "This is a country folk song with a generally positive, cheerful and joyful vibe to it. The singer is a man with an elderly voice that has a quality that sounds like a gurgle. His style of singing and the content of lyrics and melody are similar to hearing a story being told. There aren't really any rhyming lyrics - it's more like he is telling a story in song form. There are licks being played on an electric guitar, as well as certain motifs on the violin in between particular phrases by the singer.", "data_idx": 1701, "number": 2, "label": "reggae"} +{"file_name": "test_03019.png", "caption": "This is a country folk song with a generally positive, cheerful and joyful vibe to it. The singer is a man with an elderly voice that has a quality that sounds like a gurgle. His style of singing and the content of lyrics and melody are similar to hearing a story being told. There aren't really any rhyming lyrics - it's more like he is telling a story in song form. There are licks being played on an electric guitar, as well as certain motifs on the violin in between particular phrases by the singer.", "data_idx": 1701, "number": 3, "label": "reggae"} +{"file_name": "test_03020.png", "caption": "This music is an upbeat instrumental. The tempo is fast with an animated trombone melody with an enthusiastic piano accompaniment. The music is vibrant, engaging, buzzing, incessant, untiring and droning like a bee.This music a Western Classical.", "data_idx": 1704, "number": 0, "label": "jazz"} +{"file_name": "test_03021.png", "caption": "This music is an upbeat instrumental. The tempo is fast with an animated trombone melody with an enthusiastic piano accompaniment. The music is vibrant, engaging, buzzing, incessant, untiring and droning like a bee.This music a Western Classical.", "data_idx": 1704, "number": 1, "label": "jazz"} +{"file_name": "test_03022.png", "caption": "This music is an upbeat instrumental. The tempo is fast with an animated trombone melody with an enthusiastic piano accompaniment. The music is vibrant, engaging, buzzing, incessant, untiring and droning like a bee.This music a Western Classical.", "data_idx": 1704, "number": 2, "label": "jazz"} +{"file_name": "test_03023.png", "caption": "This music is an upbeat instrumental. The tempo is fast with an animated trombone melody with an enthusiastic piano accompaniment. The music is vibrant, engaging, buzzing, incessant, untiring and droning like a bee.This music a Western Classical.", "data_idx": 1704, "number": 3, "label": "jazz"} +{"file_name": "test_03024.png", "caption": "Two male vocalists sing this melodic Indian Classical music. The tempo is medium slow with Carnatic music accompaniments like violin, Ghatak and mridangam. The song is a good natured vocal duel between two carnatically trained vocalists. There is the sound of people cheering and clapping to the beat in the background.", "data_idx": 1707, "number": 0, "label": "rock"} +{"file_name": "test_03025.png", "caption": "Two male vocalists sing this melodic Indian Classical music. The tempo is medium slow with Carnatic music accompaniments like violin, Ghatak and mridangam. The song is a good natured vocal duel between two carnatically trained vocalists. There is the sound of people cheering and clapping to the beat in the background.", "data_idx": 1707, "number": 1, "label": "rock"} +{"file_name": "test_03026.png", "caption": "Two male vocalists sing this melodic Indian Classical music. The tempo is medium slow with Carnatic music accompaniments like violin, Ghatak and mridangam. The song is a good natured vocal duel between two carnatically trained vocalists. There is the sound of people cheering and clapping to the beat in the background.", "data_idx": 1707, "number": 2, "label": "rock"} +{"file_name": "test_03027.png", "caption": "Two male vocalists sing this melodic Indian Classical music. The tempo is medium slow with Carnatic music accompaniments like violin, Ghatak and mridangam. The song is a good natured vocal duel between two carnatically trained vocalists. There is the sound of people cheering and clapping to the beat in the background.", "data_idx": 1707, "number": 3, "label": "rock"} +{"file_name": "test_03028.png", "caption": "This is a classical music piece played with the virtual sounds of a wind orchestra. The orchestra is composed of the oboe, the clarinet, the basset horn, the bassoon and the contrabass. The piece is in major key which gives the piece a more positive aura in general, but the virtual sounds make it feel inauthentic.", "data_idx": 1710, "number": 0, "label": "rock"} +{"file_name": "test_03029.png", "caption": "This is a classical music piece played with the virtual sounds of a wind orchestra. The orchestra is composed of the oboe, the clarinet, the basset horn, the bassoon and the contrabass. The piece is in major key which gives the piece a more positive aura in general, but the virtual sounds make it feel inauthentic.", "data_idx": 1710, "number": 1, "label": "rock"} +{"file_name": "test_03030.png", "caption": "This is a classical music piece played with the virtual sounds of a wind orchestra. The orchestra is composed of the oboe, the clarinet, the basset horn, the bassoon and the contrabass. The piece is in major key which gives the piece a more positive aura in general, but the virtual sounds make it feel inauthentic.", "data_idx": 1710, "number": 2, "label": "rock"} +{"file_name": "test_03031.png", "caption": "This is a classical music piece played with the virtual sounds of a wind orchestra. The orchestra is composed of the oboe, the clarinet, the basset horn, the bassoon and the contrabass. The piece is in major key which gives the piece a more positive aura in general, but the virtual sounds make it feel inauthentic.", "data_idx": 1710, "number": 3, "label": "rock"} +{"file_name": "test_03032.png", "caption": "This is a bass guitar jam in the style of funk. It is an instrumental performance. The bass guitar is playing a complex solo using the slap technique. There is a backing track composed of a programmed acoustic sounding drum beat. There is a groovy atmosphere to it. This piece could be used in the opening theme of a tutorial/unboxing YouTube channel.", "data_idx": 1714, "number": 0, "label": "hiphop"} +{"file_name": "test_03033.png", "caption": "This is a bass guitar jam in the style of funk. It is an instrumental performance. The bass guitar is playing a complex solo using the slap technique. There is a backing track composed of a programmed acoustic sounding drum beat. There is a groovy atmosphere to it. This piece could be used in the opening theme of a tutorial/unboxing YouTube channel.", "data_idx": 1714, "number": 1, "label": "hiphop"} +{"file_name": "test_03034.png", "caption": "This is a bass guitar jam in the style of funk. It is an instrumental performance. The bass guitar is playing a complex solo using the slap technique. There is a backing track composed of a programmed acoustic sounding drum beat. There is a groovy atmosphere to it. This piece could be used in the opening theme of a tutorial/unboxing YouTube channel.", "data_idx": 1714, "number": 2, "label": "hiphop"} +{"file_name": "test_03035.png", "caption": "This is a bass guitar jam in the style of funk. It is an instrumental performance. The bass guitar is playing a complex solo using the slap technique. There is a backing track composed of a programmed acoustic sounding drum beat. There is a groovy atmosphere to it. This piece could be used in the opening theme of a tutorial/unboxing YouTube channel.", "data_idx": 1714, "number": 3, "label": "hiphop"} +{"file_name": "test_03036.png", "caption": "Low fidelity live recording of an instrumental eastern European string ensemble with bowed violin, bowed bass. Crowd noise is audible. No drums are present. There is a feeling of gaiety and levity.", "data_idx": 1717, "number": 0, "label": "classical"} +{"file_name": "test_03037.png", "caption": "Low fidelity live recording of an instrumental eastern European string ensemble with bowed violin, bowed bass. Crowd noise is audible. No drums are present. There is a feeling of gaiety and levity.", "data_idx": 1717, "number": 1, "label": "classical"} +{"file_name": "test_03038.png", "caption": "Low fidelity live recording of an instrumental eastern European string ensemble with bowed violin, bowed bass. Crowd noise is audible. No drums are present. There is a feeling of gaiety and levity.", "data_idx": 1717, "number": 2, "label": "classical"} +{"file_name": "test_03039.png", "caption": "Low fidelity live recording of an instrumental eastern European string ensemble with bowed violin, bowed bass. Crowd noise is audible. No drums are present. There is a feeling of gaiety and levity.", "data_idx": 1717, "number": 3, "label": "classical"} +{"file_name": "test_03040.png", "caption": "This is a hip-hop music piece. There is a duo of one male and one female vocal singing in a way that resembles rapping. The beat has an electric guitar and a bass guitar playing a groovy tune. The rhythmic background consists of an electronic drum beat. The atmosphere is urban. This piece could be playing in the soundtrack of a crime movie where the characters are doubting their actions.", "data_idx": 1722, "number": 0, "label": "reggae"} +{"file_name": "test_03041.png", "caption": "This is a hip-hop music piece. There is a duo of one male and one female vocal singing in a way that resembles rapping. The beat has an electric guitar and a bass guitar playing a groovy tune. The rhythmic background consists of an electronic drum beat. The atmosphere is urban. This piece could be playing in the soundtrack of a crime movie where the characters are doubting their actions.", "data_idx": 1722, "number": 1, "label": "reggae"} +{"file_name": "test_03042.png", "caption": "This is a hip-hop music piece. There is a duo of one male and one female vocal singing in a way that resembles rapping. The beat has an electric guitar and a bass guitar playing a groovy tune. The rhythmic background consists of an electronic drum beat. The atmosphere is urban. This piece could be playing in the soundtrack of a crime movie where the characters are doubting their actions.", "data_idx": 1722, "number": 2, "label": "reggae"} +{"file_name": "test_03043.png", "caption": "This is a hip-hop music piece. There is a duo of one male and one female vocal singing in a way that resembles rapping. The beat has an electric guitar and a bass guitar playing a groovy tune. The rhythmic background consists of an electronic drum beat. The atmosphere is urban. This piece could be playing in the soundtrack of a crime movie where the characters are doubting their actions.", "data_idx": 1722, "number": 3, "label": "reggae"} +{"file_name": "test_03044.png", "caption": "The song is an instrumental blues song. The song is medium tempo with a blues harmonica playing a cool melody, walking bass line, guitar accompaniment , steady drumming rhythm and other percussion hits. The song is exciting and groovy. The song has a bad audio quality.", "data_idx": 1724, "number": 0, "label": "blues"} +{"file_name": "test_03045.png", "caption": "The song is an instrumental blues song. The song is medium tempo with a blues harmonica playing a cool melody, walking bass line, guitar accompaniment , steady drumming rhythm and other percussion hits. The song is exciting and groovy. The song has a bad audio quality.", "data_idx": 1724, "number": 1, "label": "blues"} +{"file_name": "test_03046.png", "caption": "The song is an instrumental blues song. The song is medium tempo with a blues harmonica playing a cool melody, walking bass line, guitar accompaniment , steady drumming rhythm and other percussion hits. The song is exciting and groovy. The song has a bad audio quality.", "data_idx": 1724, "number": 2, "label": "blues"} +{"file_name": "test_03047.png", "caption": "The song is an instrumental blues song. The song is medium tempo with a blues harmonica playing a cool melody, walking bass line, guitar accompaniment , steady drumming rhythm and other percussion hits. The song is exciting and groovy. The song has a bad audio quality.", "data_idx": 1724, "number": 3, "label": "blues"} +{"file_name": "test_03048.png", "caption": "This is the live performance of a flamenco music piece. There is a male vocalist singing passionately in the Spanish language. An acoustic guitar strums a characteristic flamenco tune. Sounds of the crowd cheering can be heard in the background. The atmosphere is vibrant.", "data_idx": 1726, "number": 0, "label": "rock"} +{"file_name": "test_03049.png", "caption": "This is the live performance of a flamenco music piece. There is a male vocalist singing passionately in the Spanish language. An acoustic guitar strums a characteristic flamenco tune. Sounds of the crowd cheering can be heard in the background. The atmosphere is vibrant.", "data_idx": 1726, "number": 1, "label": "rock"} +{"file_name": "test_03050.png", "caption": "This is the live performance of a flamenco music piece. There is a male vocalist singing passionately in the Spanish language. An acoustic guitar strums a characteristic flamenco tune. Sounds of the crowd cheering can be heard in the background. The atmosphere is vibrant.", "data_idx": 1726, "number": 2, "label": "rock"} +{"file_name": "test_03051.png", "caption": "This is the live performance of a flamenco music piece. There is a male vocalist singing passionately in the Spanish language. An acoustic guitar strums a characteristic flamenco tune. Sounds of the crowd cheering can be heard in the background. The atmosphere is vibrant.", "data_idx": 1726, "number": 3, "label": "rock"} +{"file_name": "test_03052.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking, followed by acoustic rhythm guitar chords. The recording is mono and noisy.", "data_idx": 1727, "number": 0, "label": "blues"} +{"file_name": "test_03053.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking, followed by acoustic rhythm guitar chords. The recording is mono and noisy.", "data_idx": 1727, "number": 1, "label": "blues"} +{"file_name": "test_03054.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking, followed by acoustic rhythm guitar chords. The recording is mono and noisy.", "data_idx": 1727, "number": 2, "label": "blues"} +{"file_name": "test_03055.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking, followed by acoustic rhythm guitar chords. The recording is mono and noisy.", "data_idx": 1727, "number": 3, "label": "blues"} +{"file_name": "test_03056.png", "caption": "This clip features a drum solo being played. The first beat in the clip is played by striking the hi-hat and kick twice and then the snare once. This pattern is repeated three times followed by a roll. The snare is played four times followed by the toms. This pattern is played twice. This is followed by a pattern where the snare and toms are struck in a sequence of four strokes, five strokes and six strokes all fitting within the counts of the bar. This song is a demo of the percussion instrument being used.", "data_idx": 1728, "number": 0, "label": "jazz"} +{"file_name": "test_03057.png", "caption": "This clip features a drum solo being played. The first beat in the clip is played by striking the hi-hat and kick twice and then the snare once. This pattern is repeated three times followed by a roll. The snare is played four times followed by the toms. This pattern is played twice. This is followed by a pattern where the snare and toms are struck in a sequence of four strokes, five strokes and six strokes all fitting within the counts of the bar. This song is a demo of the percussion instrument being used.", "data_idx": 1728, "number": 1, "label": "jazz"} +{"file_name": "test_03058.png", "caption": "This clip features a drum solo being played. The first beat in the clip is played by striking the hi-hat and kick twice and then the snare once. This pattern is repeated three times followed by a roll. The snare is played four times followed by the toms. This pattern is played twice. This is followed by a pattern where the snare and toms are struck in a sequence of four strokes, five strokes and six strokes all fitting within the counts of the bar. This song is a demo of the percussion instrument being used.", "data_idx": 1728, "number": 2, "label": "jazz"} +{"file_name": "test_03059.png", "caption": "This clip features a drum solo being played. The first beat in the clip is played by striking the hi-hat and kick twice and then the snare once. This pattern is repeated three times followed by a roll. The snare is played four times followed by the toms. This pattern is played twice. This is followed by a pattern where the snare and toms are struck in a sequence of four strokes, five strokes and six strokes all fitting within the counts of the bar. This song is a demo of the percussion instrument being used.", "data_idx": 1728, "number": 3, "label": "jazz"} +{"file_name": "test_03060.png", "caption": "The low quality recording features a breathy flute melody played over mellow strings melody. It sounds soulful and passionate. The recording is noisy and slightly distorted.", "data_idx": 1729, "number": 0, "label": "classical"} +{"file_name": "test_03061.png", "caption": "The low quality recording features a breathy flute melody played over mellow strings melody. It sounds soulful and passionate. The recording is noisy and slightly distorted.", "data_idx": 1729, "number": 1, "label": "classical"} +{"file_name": "test_03062.png", "caption": "The low quality recording features a breathy flute melody played over mellow strings melody. It sounds soulful and passionate. The recording is noisy and slightly distorted.", "data_idx": 1729, "number": 2, "label": "classical"} +{"file_name": "test_03063.png", "caption": "The low quality recording features a breathy flute melody played over mellow strings melody. It sounds soulful and passionate. The recording is noisy and slightly distorted.", "data_idx": 1729, "number": 3, "label": "classical"} +{"file_name": "test_03064.png", "caption": "This is the poor quality recording of a bebop jazz music performance. The organ is playing an insanely complex improvised solo. In the background, there is a bass guitar and a jazz acoustic drum beat. The atmosphere is energetic.", "data_idx": 1730, "number": 0, "label": "rock"} +{"file_name": "test_03065.png", "caption": "This is the poor quality recording of a bebop jazz music performance. The organ is playing an insanely complex improvised solo. In the background, there is a bass guitar and a jazz acoustic drum beat. The atmosphere is energetic.", "data_idx": 1730, "number": 1, "label": "rock"} +{"file_name": "test_03066.png", "caption": "This is the poor quality recording of a bebop jazz music performance. The organ is playing an insanely complex improvised solo. In the background, there is a bass guitar and a jazz acoustic drum beat. The atmosphere is energetic.", "data_idx": 1730, "number": 2, "label": "rock"} +{"file_name": "test_03067.png", "caption": "This is the poor quality recording of a bebop jazz music performance. The organ is playing an insanely complex improvised solo. In the background, there is a bass guitar and a jazz acoustic drum beat. The atmosphere is energetic.", "data_idx": 1730, "number": 3, "label": "rock"} +{"file_name": "test_03068.png", "caption": "This music is an ominous instrumental. The tempo is slow with a spooky electronic keyboard harmony and menacing bass on the cello. The music is eerie, sinister, frightening, and baleful.", "data_idx": 1735, "number": 0, "label": "classical"} +{"file_name": "test_03069.png", "caption": "This music is an ominous instrumental. The tempo is slow with a spooky electronic keyboard harmony and menacing bass on the cello. The music is eerie, sinister, frightening, and baleful.", "data_idx": 1735, "number": 1, "label": "classical"} +{"file_name": "test_03070.png", "caption": "This music is an ominous instrumental. The tempo is slow with a spooky electronic keyboard harmony and menacing bass on the cello. The music is eerie, sinister, frightening, and baleful.", "data_idx": 1735, "number": 2, "label": "classical"} +{"file_name": "test_03071.png", "caption": "This music is an ominous instrumental. The tempo is slow with a spooky electronic keyboard harmony and menacing bass on the cello. The music is eerie, sinister, frightening, and baleful.", "data_idx": 1735, "number": 3, "label": "classical"} +{"file_name": "test_03072.png", "caption": "The low quality recording features, in the first half of the loop, a mono and noisy recording of a punk live performance with some crowd cheering noises. It sounds energetic and the recording suddenly fades out, transitioning into the second part of the loop which features a side synth pad that sounds suspenseful.", "data_idx": 1739, "number": 0, "label": "hiphop"} +{"file_name": "test_03073.png", "caption": "The low quality recording features, in the first half of the loop, a mono and noisy recording of a punk live performance with some crowd cheering noises. It sounds energetic and the recording suddenly fades out, transitioning into the second part of the loop which features a side synth pad that sounds suspenseful.", "data_idx": 1739, "number": 1, "label": "hiphop"} +{"file_name": "test_03074.png", "caption": "The low quality recording features, in the first half of the loop, a mono and noisy recording of a punk live performance with some crowd cheering noises. It sounds energetic and the recording suddenly fades out, transitioning into the second part of the loop which features a side synth pad that sounds suspenseful.", "data_idx": 1739, "number": 2, "label": "hiphop"} +{"file_name": "test_03075.png", "caption": "The low quality recording features, in the first half of the loop, a mono and noisy recording of a punk live performance with some crowd cheering noises. It sounds energetic and the recording suddenly fades out, transitioning into the second part of the loop which features a side synth pad that sounds suspenseful.", "data_idx": 1739, "number": 3, "label": "hiphop"} +{"file_name": "test_03076.png", "caption": "This amateur recording features a rock song. A repetitive phrase is played on the guitar. The first bar consists of only the guitar sound. The bass and percussion start playing after one bar. The bass plays one note in groups of twos. The percussion plays a groovy rock beat. The hi-hat is played in a group of four strokes on the closed hi-hat followed by one stroke on the open hi-hat. There are no voices in this song. The mood of this song is melancholic.", "data_idx": 1740, "number": 0, "label": "disco"} +{"file_name": "test_03077.png", "caption": "This amateur recording features a rock song. A repetitive phrase is played on the guitar. The first bar consists of only the guitar sound. The bass and percussion start playing after one bar. The bass plays one note in groups of twos. The percussion plays a groovy rock beat. The hi-hat is played in a group of four strokes on the closed hi-hat followed by one stroke on the open hi-hat. There are no voices in this song. The mood of this song is melancholic.", "data_idx": 1740, "number": 1, "label": "disco"} +{"file_name": "test_03078.png", "caption": "This amateur recording features a rock song. A repetitive phrase is played on the guitar. The first bar consists of only the guitar sound. The bass and percussion start playing after one bar. The bass plays one note in groups of twos. The percussion plays a groovy rock beat. The hi-hat is played in a group of four strokes on the closed hi-hat followed by one stroke on the open hi-hat. There are no voices in this song. The mood of this song is melancholic.", "data_idx": 1740, "number": 2, "label": "disco"} +{"file_name": "test_03079.png", "caption": "This amateur recording features a rock song. A repetitive phrase is played on the guitar. The first bar consists of only the guitar sound. The bass and percussion start playing after one bar. The bass plays one note in groups of twos. The percussion plays a groovy rock beat. The hi-hat is played in a group of four strokes on the closed hi-hat followed by one stroke on the open hi-hat. There are no voices in this song. The mood of this song is melancholic.", "data_idx": 1740, "number": 3, "label": "disco"} +{"file_name": "test_03080.png", "caption": "This song features a female voice crooning the main melody. She is using vocables and no lyrics. The same melody is played on the synth immediately after she sings the first first line. A percussion player plays a simple beat. A tambourine plays in the background. The rest of the instruments are not clear due to the low audio quality. This song can be played in a coffee shop. The mood of this song is romantic.", "data_idx": 1746, "number": 0, "label": "reggae"} +{"file_name": "test_03081.png", "caption": "This song features a female voice crooning the main melody. She is using vocables and no lyrics. The same melody is played on the synth immediately after she sings the first first line. A percussion player plays a simple beat. A tambourine plays in the background. The rest of the instruments are not clear due to the low audio quality. This song can be played in a coffee shop. The mood of this song is romantic.", "data_idx": 1746, "number": 1, "label": "reggae"} +{"file_name": "test_03082.png", "caption": "This song features a female voice crooning the main melody. She is using vocables and no lyrics. The same melody is played on the synth immediately after she sings the first first line. A percussion player plays a simple beat. A tambourine plays in the background. The rest of the instruments are not clear due to the low audio quality. This song can be played in a coffee shop. The mood of this song is romantic.", "data_idx": 1746, "number": 2, "label": "reggae"} +{"file_name": "test_03083.png", "caption": "This song features a female voice crooning the main melody. She is using vocables and no lyrics. The same melody is played on the synth immediately after she sings the first first line. A percussion player plays a simple beat. A tambourine plays in the background. The rest of the instruments are not clear due to the low audio quality. This song can be played in a coffee shop. The mood of this song is romantic.", "data_idx": 1746, "number": 3, "label": "reggae"} +{"file_name": "test_03084.png", "caption": "This is a traditional south asian song. We have an accordion-like instrument for the melodic component and a tabla for percussion. The singer has a passionate voice. The audio quality is poor and the song distorts.", "data_idx": 1750, "number": 0, "label": "disco"} +{"file_name": "test_03085.png", "caption": "This is a traditional south asian song. We have an accordion-like instrument for the melodic component and a tabla for percussion. The singer has a passionate voice. The audio quality is poor and the song distorts.", "data_idx": 1750, "number": 1, "label": "disco"} +{"file_name": "test_03086.png", "caption": "Someone is playing an acoustic guitar strumming chords on the backbeat while someone is holding the rhythm with a shaker and a percussion in the background. This song may be playing while having a jam session with your friends.", "data_idx": 1754, "number": 0, "label": "rock"} +{"file_name": "test_03087.png", "caption": "Someone is playing an acoustic guitar strumming chords on the backbeat while someone is holding the rhythm with a shaker and a percussion in the background. This song may be playing while having a jam session with your friends.", "data_idx": 1754, "number": 1, "label": "rock"} +{"file_name": "test_03088.png", "caption": "Someone is playing an acoustic guitar strumming chords on the backbeat while someone is holding the rhythm with a shaker and a percussion in the background. This song may be playing while having a jam session with your friends.", "data_idx": 1754, "number": 2, "label": "rock"} +{"file_name": "test_03089.png", "caption": "Someone is playing an acoustic guitar strumming chords on the backbeat while someone is holding the rhythm with a shaker and a percussion in the background. This song may be playing while having a jam session with your friends.", "data_idx": 1754, "number": 3, "label": "rock"} +{"file_name": "test_03090.png", "caption": "The low quality recording features a live performance of a folk song and it contains a steel guitar solo melody played over, acoustic rhythm guitar, electric guitar melody, shimmering cymbals, punchy snare, groovy bass, followed by violin melody, crowd noises and claps. It sounds passionate, uptempo, soulful and energetic.", "data_idx": 1757, "number": 0, "label": "rock"} +{"file_name": "test_03091.png", "caption": "The low quality recording features a live performance of a folk song and it contains a steel guitar solo melody played over, acoustic rhythm guitar, electric guitar melody, shimmering cymbals, punchy snare, groovy bass, followed by violin melody, crowd noises and claps. It sounds passionate, uptempo, soulful and energetic.", "data_idx": 1757, "number": 1, "label": "rock"} +{"file_name": "test_03092.png", "caption": "The low quality recording features a live performance of a folk song and it contains a steel guitar solo melody played over, acoustic rhythm guitar, electric guitar melody, shimmering cymbals, punchy snare, groovy bass, followed by violin melody, crowd noises and claps. It sounds passionate, uptempo, soulful and energetic.", "data_idx": 1757, "number": 2, "label": "rock"} +{"file_name": "test_03093.png", "caption": "The low quality recording features a live performance of a folk song and it contains a steel guitar solo melody played over, acoustic rhythm guitar, electric guitar melody, shimmering cymbals, punchy snare, groovy bass, followed by violin melody, crowd noises and claps. It sounds passionate, uptempo, soulful and energetic.", "data_idx": 1757, "number": 3, "label": "rock"} +{"file_name": "test_03094.png", "caption": "Along with the vintage south asian vocal performance from an emotive female vocalist, this song features enchanting melodies from the bansuri. For percussion, we have tablas and tambourines. This is a live performance in a concert venue.", "data_idx": 1758, "number": 0, "label": "pop"} +{"file_name": "test_03095.png", "caption": "Along with the vintage south asian vocal performance from an emotive female vocalist, this song features enchanting melodies from the bansuri. For percussion, we have tablas and tambourines. This is a live performance in a concert venue.", "data_idx": 1758, "number": 1, "label": "pop"} +{"file_name": "test_03096.png", "caption": "Along with the vintage south asian vocal performance from an emotive female vocalist, this song features enchanting melodies from the bansuri. For percussion, we have tablas and tambourines. This is a live performance in a concert venue.", "data_idx": 1758, "number": 2, "label": "pop"} +{"file_name": "test_03097.png", "caption": "Along with the vintage south asian vocal performance from an emotive female vocalist, this song features enchanting melodies from the bansuri. For percussion, we have tablas and tambourines. This is a live performance in a concert venue.", "data_idx": 1758, "number": 3, "label": "pop"} +{"file_name": "test_03098.png", "caption": "The low quality recording features an arpeggiated harp melody. It sounds emotional and passionate and the recording is noisy, in mono and a bit muffled.", "data_idx": 1765, "number": 0, "label": "classical"} +{"file_name": "test_03099.png", "caption": "The low quality recording features an arpeggiated harp melody. It sounds emotional and passionate and the recording is noisy, in mono and a bit muffled.", "data_idx": 1765, "number": 1, "label": "classical"} +{"file_name": "test_03100.png", "caption": "The low quality recording features an arpeggiated harp melody. It sounds emotional and passionate and the recording is noisy, in mono and a bit muffled.", "data_idx": 1765, "number": 2, "label": "classical"} +{"file_name": "test_03101.png", "caption": "The low quality recording features an arpeggiated harp melody. It sounds emotional and passionate and the recording is noisy, in mono and a bit muffled.", "data_idx": 1765, "number": 3, "label": "classical"} +{"file_name": "test_03102.png", "caption": "The low quality recording features a funky harmonica solo melody being played. The recording is noisy and in mono.", "data_idx": 1766, "number": 0, "label": "classical"} +{"file_name": "test_03103.png", "caption": "The low quality recording features a funky harmonica solo melody being played. The recording is noisy and in mono.", "data_idx": 1766, "number": 1, "label": "classical"} +{"file_name": "test_03104.png", "caption": "The low quality recording features a funky harmonica solo melody being played. The recording is noisy and in mono.", "data_idx": 1766, "number": 2, "label": "classical"} +{"file_name": "test_03105.png", "caption": "The low quality recording features a funky harmonica solo melody being played. The recording is noisy and in mono.", "data_idx": 1766, "number": 3, "label": "classical"} +{"file_name": "test_03106.png", "caption": "The low quality recording features a female vocal beatboxing a dubstep song. It sounds energetic and aggressive.", "data_idx": 1767, "number": 0, "label": "disco"} +{"file_name": "test_03107.png", "caption": "The low quality recording features a female vocal beatboxing a dubstep song. It sounds energetic and aggressive.", "data_idx": 1767, "number": 1, "label": "disco"} +{"file_name": "test_03108.png", "caption": "The low quality recording features a female vocal beatboxing a dubstep song. It sounds energetic and aggressive.", "data_idx": 1767, "number": 2, "label": "disco"} +{"file_name": "test_03109.png", "caption": "The low quality recording features a female vocal beatboxing a dubstep song. It sounds energetic and aggressive.", "data_idx": 1767, "number": 3, "label": "disco"} +{"file_name": "test_03110.png", "caption": "In this clip we have a set of uilleann pipes being used to play a sweet and enchanting melody. It's a live performance. There's a sustained pad synth which also sounds ethereal, being used to support the uilleann pipes. This is traditional Irish or Celtic folk music. The song is emotional and captivating, with a slow tempo.", "data_idx": 1768, "number": 0, "label": "classical"} +{"file_name": "test_03111.png", "caption": "In this clip we have a set of uilleann pipes being used to play a sweet and enchanting melody. It's a live performance. There's a sustained pad synth which also sounds ethereal, being used to support the uilleann pipes. This is traditional Irish or Celtic folk music. The song is emotional and captivating, with a slow tempo.", "data_idx": 1768, "number": 1, "label": "classical"} +{"file_name": "test_03112.png", "caption": "In this clip we have a set of uilleann pipes being used to play a sweet and enchanting melody. It's a live performance. There's a sustained pad synth which also sounds ethereal, being used to support the uilleann pipes. This is traditional Irish or Celtic folk music. The song is emotional and captivating, with a slow tempo.", "data_idx": 1768, "number": 2, "label": "classical"} +{"file_name": "test_03113.png", "caption": "In this clip we have a set of uilleann pipes being used to play a sweet and enchanting melody. It's a live performance. There's a sustained pad synth which also sounds ethereal, being used to support the uilleann pipes. This is traditional Irish or Celtic folk music. The song is emotional and captivating, with a slow tempo.", "data_idx": 1768, "number": 3, "label": "classical"} +{"file_name": "test_03114.png", "caption": "This is a gear review jam. There is an electric guitar playing simple tunes. An amp plug is connected to the electric guitar. The atmosphere is easygoing. Sounds from this recording can be sampled to be used in advertisement jingles.", "data_idx": 1773, "number": 0, "label": "reggae"} +{"file_name": "test_03115.png", "caption": "This is a gear review jam. There is an electric guitar playing simple tunes. An amp plug is connected to the electric guitar. The atmosphere is easygoing. Sounds from this recording can be sampled to be used in advertisement jingles.", "data_idx": 1773, "number": 1, "label": "reggae"} +{"file_name": "test_03116.png", "caption": "This is a gear review jam. There is an electric guitar playing simple tunes. An amp plug is connected to the electric guitar. The atmosphere is easygoing. Sounds from this recording can be sampled to be used in advertisement jingles.", "data_idx": 1773, "number": 2, "label": "reggae"} +{"file_name": "test_03117.png", "caption": "This is a gear review jam. There is an electric guitar playing simple tunes. An amp plug is connected to the electric guitar. The atmosphere is easygoing. Sounds from this recording can be sampled to be used in advertisement jingles.", "data_idx": 1773, "number": 3, "label": "reggae"} +{"file_name": "test_03118.png", "caption": "A male vocalist sings this light melody. The tempo is medium with a funky bass line, keyboards accompaniment; slick drumming, groovy electric guitar and acoustic guitar riff with female vocal backup. The song is light, punchy, buoyant, groovy, funky,insightful, reflective and melodic. This song is a spirited Reggae song.", "data_idx": 1778, "number": 0, "label": "reggae"} +{"file_name": "test_03119.png", "caption": "A male vocalist sings this light melody. The tempo is medium with a funky bass line, keyboards accompaniment; slick drumming, groovy electric guitar and acoustic guitar riff with female vocal backup. The song is light, punchy, buoyant, groovy, funky,insightful, reflective and melodic. This song is a spirited Reggae song.", "data_idx": 1778, "number": 1, "label": "reggae"} +{"file_name": "test_03120.png", "caption": "A male vocalist sings this light melody. The tempo is medium with a funky bass line, keyboards accompaniment; slick drumming, groovy electric guitar and acoustic guitar riff with female vocal backup. The song is light, punchy, buoyant, groovy, funky,insightful, reflective and melodic. This song is a spirited Reggae song.", "data_idx": 1778, "number": 2, "label": "reggae"} +{"file_name": "test_03121.png", "caption": "A male vocalist sings this light melody. The tempo is medium with a funky bass line, keyboards accompaniment; slick drumming, groovy electric guitar and acoustic guitar riff with female vocal backup. The song is light, punchy, buoyant, groovy, funky,insightful, reflective and melodic. This song is a spirited Reggae song.", "data_idx": 1778, "number": 3, "label": "reggae"} +{"file_name": "test_03122.png", "caption": "This is a rap rock song that fuses elements from each genre. The rapper has a charismatic and fiery approach, and after his rap verse we hear a blues-rock electric guitar solo. There's a sustained warm synth with a flanger that supports the whole melodic aspect of the track. The mood of this song feels motivating.", "data_idx": 1780, "number": 0, "label": "disco"} +{"file_name": "test_03123.png", "caption": "This is a rap rock song that fuses elements from each genre. The rapper has a charismatic and fiery approach, and after his rap verse we hear a blues-rock electric guitar solo. There's a sustained warm synth with a flanger that supports the whole melodic aspect of the track. The mood of this song feels motivating.", "data_idx": 1780, "number": 1, "label": "disco"} +{"file_name": "test_03124.png", "caption": "This is a rap rock song that fuses elements from each genre. The rapper has a charismatic and fiery approach, and after his rap verse we hear a blues-rock electric guitar solo. There's a sustained warm synth with a flanger that supports the whole melodic aspect of the track. The mood of this song feels motivating.", "data_idx": 1780, "number": 2, "label": "disco"} +{"file_name": "test_03125.png", "caption": "This is a rap rock song that fuses elements from each genre. The rapper has a charismatic and fiery approach, and after his rap verse we hear a blues-rock electric guitar solo. There's a sustained warm synth with a flanger that supports the whole melodic aspect of the track. The mood of this song feels motivating.", "data_idx": 1780, "number": 3, "label": "disco"} +{"file_name": "test_03126.png", "caption": "The song is an instrumental. The tempo is medium fast with a groovy bass line, massive bass drops, various percussion hits, chirping tones, keyboard accompaniment and syncopated rhythms. The song is a modern electronic techno dance tune produced in a home studio.", "data_idx": 1785, "number": 0, "label": "hiphop"} +{"file_name": "test_03127.png", "caption": "The song is an instrumental. The tempo is medium fast with a groovy bass line, massive bass drops, various percussion hits, chirping tones, keyboard accompaniment and syncopated rhythms. The song is a modern electronic techno dance tune produced in a home studio.", "data_idx": 1785, "number": 1, "label": "hiphop"} +{"file_name": "test_03128.png", "caption": "The song is an instrumental. The tempo is medium fast with a groovy bass line, massive bass drops, various percussion hits, chirping tones, keyboard accompaniment and syncopated rhythms. The song is a modern electronic techno dance tune produced in a home studio.", "data_idx": 1785, "number": 2, "label": "hiphop"} +{"file_name": "test_03129.png", "caption": "The song is an instrumental. The tempo is medium fast with a groovy bass line, massive bass drops, various percussion hits, chirping tones, keyboard accompaniment and syncopated rhythms. The song is a modern electronic techno dance tune produced in a home studio.", "data_idx": 1785, "number": 3, "label": "hiphop"} +{"file_name": "test_03130.png", "caption": "This folk song features a female voice singing the main melody. This is accompanied by a tabla playing the percussion. A guitar strums chords. For most parts of the song, only one chord is played. At the last bar, a different chord is played. This song has minimal instruments. This song has a story-telling mood. This song can be played in a village scene in an Indian movie.", "data_idx": 1787, "number": 0, "label": "pop"} +{"file_name": "test_03131.png", "caption": "This folk song features a female voice singing the main melody. This is accompanied by a tabla playing the percussion. A guitar strums chords. For most parts of the song, only one chord is played. At the last bar, a different chord is played. This song has minimal instruments. This song has a story-telling mood. This song can be played in a village scene in an Indian movie.", "data_idx": 1787, "number": 1, "label": "pop"} +{"file_name": "test_03132.png", "caption": "This folk song features a female voice singing the main melody. This is accompanied by a tabla playing the percussion. A guitar strums chords. For most parts of the song, only one chord is played. At the last bar, a different chord is played. This song has minimal instruments. This song has a story-telling mood. This song can be played in a village scene in an Indian movie.", "data_idx": 1787, "number": 2, "label": "pop"} +{"file_name": "test_03133.png", "caption": "This folk song features a female voice singing the main melody. This is accompanied by a tabla playing the percussion. A guitar strums chords. For most parts of the song, only one chord is played. At the last bar, a different chord is played. This song has minimal instruments. This song has a story-telling mood. This song can be played in a village scene in an Indian movie.", "data_idx": 1787, "number": 3, "label": "pop"} +{"file_name": "test_03134.png", "caption": "This funk song features a male voice singing the main melody. Female voices sing backing vocals. This is accompanied by percussion playing a simple beat. The bass plays a funky bassline using the root notes of the chords. A wah or tron effect is added on the bass. The sound of bells is heard in the background. This song has a flirty mood. This song can be played as a slow dance song in a club.", "data_idx": 1788, "number": 0, "label": "disco"} +{"file_name": "test_03135.png", "caption": "This funk song features a male voice singing the main melody. Female voices sing backing vocals. This is accompanied by percussion playing a simple beat. The bass plays a funky bassline using the root notes of the chords. A wah or tron effect is added on the bass. The sound of bells is heard in the background. This song has a flirty mood. This song can be played as a slow dance song in a club.", "data_idx": 1788, "number": 1, "label": "disco"} +{"file_name": "test_03136.png", "caption": "This funk song features a male voice singing the main melody. Female voices sing backing vocals. This is accompanied by percussion playing a simple beat. The bass plays a funky bassline using the root notes of the chords. A wah or tron effect is added on the bass. The sound of bells is heard in the background. This song has a flirty mood. This song can be played as a slow dance song in a club.", "data_idx": 1788, "number": 2, "label": "disco"} +{"file_name": "test_03137.png", "caption": "This funk song features a male voice singing the main melody. Female voices sing backing vocals. This is accompanied by percussion playing a simple beat. The bass plays a funky bassline using the root notes of the chords. A wah or tron effect is added on the bass. The sound of bells is heard in the background. This song has a flirty mood. This song can be played as a slow dance song in a club.", "data_idx": 1788, "number": 3, "label": "disco"} +{"file_name": "test_03138.png", "caption": "The low quality recording features a live performance of a classical song and it consists of harpsichord and sustained strings melodies. The recording is a bit noisy and quite reverberant, as it was recorded in a medium size concert hall. It sounds easygoing, passionate and emotional.", "data_idx": 1789, "number": 0, "label": "classical"} +{"file_name": "test_03139.png", "caption": "The low quality recording features a live performance of a classical song and it consists of harpsichord and sustained strings melodies. The recording is a bit noisy and quite reverberant, as it was recorded in a medium size concert hall. It sounds easygoing, passionate and emotional.", "data_idx": 1789, "number": 1, "label": "classical"} +{"file_name": "test_03140.png", "caption": "The low quality recording features a live performance of a classical song and it consists of harpsichord and sustained strings melodies. The recording is a bit noisy and quite reverberant, as it was recorded in a medium size concert hall. It sounds easygoing, passionate and emotional.", "data_idx": 1789, "number": 2, "label": "classical"} +{"file_name": "test_03141.png", "caption": "The low quality recording features a live performance of a classical song and it consists of harpsichord and sustained strings melodies. The recording is a bit noisy and quite reverberant, as it was recorded in a medium size concert hall. It sounds easygoing, passionate and emotional.", "data_idx": 1789, "number": 3, "label": "classical"} +{"file_name": "test_03142.png", "caption": "Someone is beatboxing a reggaeton beat. In the background you can hear the crowd clapping and cheering. This song may be playing live as part of a beatbox performance.", "data_idx": 1794, "number": 0, "label": "hiphop"} +{"file_name": "test_03143.png", "caption": "Someone is beatboxing a reggaeton beat. In the background you can hear the crowd clapping and cheering. This song may be playing live as part of a beatbox performance.", "data_idx": 1794, "number": 1, "label": "hiphop"} +{"file_name": "test_03144.png", "caption": "Someone is beatboxing a reggaeton beat. In the background you can hear the crowd clapping and cheering. This song may be playing live as part of a beatbox performance.", "data_idx": 1794, "number": 2, "label": "hiphop"} +{"file_name": "test_03145.png", "caption": "Someone is beatboxing a reggaeton beat. In the background you can hear the crowd clapping and cheering. This song may be playing live as part of a beatbox performance.", "data_idx": 1794, "number": 3, "label": "hiphop"} +{"file_name": "test_03146.png", "caption": "The low quality recording features a synth key melody played over simple bass and snare rolls. It sounds happy and fun, while the recording is quiet, dull and muffled.", "data_idx": 1797, "number": 0, "label": "classical"} +{"file_name": "test_03147.png", "caption": "The low quality recording features a synth key melody played over simple bass and snare rolls. It sounds happy and fun, while the recording is quiet, dull and muffled.", "data_idx": 1797, "number": 1, "label": "classical"} +{"file_name": "test_03148.png", "caption": "The low quality recording features a synth key melody played over simple bass and snare rolls. It sounds happy and fun, while the recording is quiet, dull and muffled.", "data_idx": 1797, "number": 2, "label": "classical"} +{"file_name": "test_03149.png", "caption": "The low quality recording features a synth key melody played over simple bass and snare rolls. It sounds happy and fun, while the recording is quiet, dull and muffled.", "data_idx": 1797, "number": 3, "label": "classical"} +{"file_name": "test_03150.png", "caption": "This is a clip of a tutorial where we have a male teacher playing a minor scale on a nylon string guitar. The energy of the video is calm.", "data_idx": 1798, "number": 0, "label": "blues"} +{"file_name": "test_03151.png", "caption": "This is a clip of a tutorial where we have a male teacher playing a minor scale on a nylon string guitar. The energy of the video is calm.", "data_idx": 1798, "number": 1, "label": "blues"} +{"file_name": "test_03152.png", "caption": "This is a clip of a tutorial where we have a male teacher playing a minor scale on a nylon string guitar. The energy of the video is calm.", "data_idx": 1798, "number": 2, "label": "blues"} +{"file_name": "test_03153.png", "caption": "This is a clip of a tutorial where we have a male teacher playing a minor scale on a nylon string guitar. The energy of the video is calm.", "data_idx": 1798, "number": 3, "label": "blues"} +{"file_name": "test_03154.png", "caption": "The low quality recording features an orchestra song that consists of a string section melody. The section contains violin melody playing in the left channel, cello in the right channel and later on, double bass in the middle. It sounds emotional and passionate.", "data_idx": 1800, "number": 0, "label": "classical"} +{"file_name": "test_03155.png", "caption": "The low quality recording features an orchestra song that consists of a string section melody. The section contains violin melody playing in the left channel, cello in the right channel and later on, double bass in the middle. It sounds emotional and passionate.", "data_idx": 1800, "number": 1, "label": "classical"} +{"file_name": "test_03156.png", "caption": "The low quality recording features an orchestra song that consists of a string section melody. The section contains violin melody playing in the left channel, cello in the right channel and later on, double bass in the middle. It sounds emotional and passionate.", "data_idx": 1800, "number": 2, "label": "classical"} +{"file_name": "test_03157.png", "caption": "The low quality recording features an orchestra song that consists of a string section melody. The section contains violin melody playing in the left channel, cello in the right channel and later on, double bass in the middle. It sounds emotional and passionate.", "data_idx": 1800, "number": 3, "label": "classical"} +{"file_name": "test_03158.png", "caption": "Someone is hitting a high pitched singing bowl that rings out for a long time. This song may be playing during a meditation session.", "data_idx": 1801, "number": 0, "label": "hiphop"} +{"file_name": "test_03159.png", "caption": "Someone is hitting a high pitched singing bowl that rings out for a long time. This song may be playing during a meditation session.", "data_idx": 1801, "number": 1, "label": "hiphop"} +{"file_name": "test_03160.png", "caption": "This clip starts with a low frequency music bowl being struck. The note is allowed to sustain. After a while, a higher frequency music bowl is struck and that note is allowed to sustain. There are no other instruments in this song. There are no voices in this song. The sound of music bowls can be played in a meditation center.", "data_idx": 1803, "number": 0, "label": "hiphop"} +{"file_name": "test_03161.png", "caption": "This clip starts with a low frequency music bowl being struck. The note is allowed to sustain. After a while, a higher frequency music bowl is struck and that note is allowed to sustain. There are no other instruments in this song. There are no voices in this song. The sound of music bowls can be played in a meditation center.", "data_idx": 1803, "number": 1, "label": "hiphop"} +{"file_name": "test_03162.png", "caption": "This clip starts with a low frequency music bowl being struck. The note is allowed to sustain. After a while, a higher frequency music bowl is struck and that note is allowed to sustain. There are no other instruments in this song. There are no voices in this song. The sound of music bowls can be played in a meditation center.", "data_idx": 1803, "number": 2, "label": "hiphop"} +{"file_name": "test_03163.png", "caption": "This clip starts with a low frequency music bowl being struck. The note is allowed to sustain. After a while, a higher frequency music bowl is struck and that note is allowed to sustain. There are no other instruments in this song. There are no voices in this song. The sound of music bowls can be played in a meditation center.", "data_idx": 1803, "number": 3, "label": "hiphop"} +{"file_name": "test_03164.png", "caption": "This is a Christmas music piece. There is one male and one female vocalist singing in a festive manner in the Romanian language. There is a keyboard playing the melody and a bass guitar playing in the background. The rhythm is kept by the sleigh bells. The atmosphere is joyful. This piece could be playing in the background at a Christmas event in Romania.", "data_idx": 1804, "number": 0, "label": "pop"} +{"file_name": "test_03165.png", "caption": "This is a Christmas music piece. There is one male and one female vocalist singing in a festive manner in the Romanian language. There is a keyboard playing the melody and a bass guitar playing in the background. The rhythm is kept by the sleigh bells. The atmosphere is joyful. This piece could be playing in the background at a Christmas event in Romania.", "data_idx": 1804, "number": 1, "label": "pop"} +{"file_name": "test_03166.png", "caption": "This is a Christmas music piece. There is one male and one female vocalist singing in a festive manner in the Romanian language. There is a keyboard playing the melody and a bass guitar playing in the background. The rhythm is kept by the sleigh bells. The atmosphere is joyful. This piece could be playing in the background at a Christmas event in Romania.", "data_idx": 1804, "number": 2, "label": "pop"} +{"file_name": "test_03167.png", "caption": "This is a Christmas music piece. There is one male and one female vocalist singing in a festive manner in the Romanian language. There is a keyboard playing the melody and a bass guitar playing in the background. The rhythm is kept by the sleigh bells. The atmosphere is joyful. This piece could be playing in the background at a Christmas event in Romania.", "data_idx": 1804, "number": 3, "label": "pop"} +{"file_name": "test_03168.png", "caption": "This music is a short instrumental. The tempo is medium with a church organ harmony with a male voice speaking something incoherent and subtle sounds like clinking and whirring. The audio is short and skillful. This is a tutorial on how to play the piano/organ.", "data_idx": 1806, "number": 0, "label": "classical"} +{"file_name": "test_03169.png", "caption": "This music is a short instrumental. The tempo is medium with a church organ harmony with a male voice speaking something incoherent and subtle sounds like clinking and whirring. The audio is short and skillful. This is a tutorial on how to play the piano/organ.", "data_idx": 1806, "number": 1, "label": "classical"} +{"file_name": "test_03170.png", "caption": "This music is a short instrumental. The tempo is medium with a church organ harmony with a male voice speaking something incoherent and subtle sounds like clinking and whirring. The audio is short and skillful. This is a tutorial on how to play the piano/organ.", "data_idx": 1806, "number": 2, "label": "classical"} +{"file_name": "test_03171.png", "caption": "This music is a short instrumental. The tempo is medium with a church organ harmony with a male voice speaking something incoherent and subtle sounds like clinking and whirring. The audio is short and skillful. This is a tutorial on how to play the piano/organ.", "data_idx": 1806, "number": 3, "label": "classical"} +{"file_name": "test_03172.png", "caption": "This instrumental song features a violin playing the main melody. This is accompanied by a guitar playing chords. The piano plays backing chords. At the end of the song, the piano plays a fill. The bass is played on a double bass. There is no percussion in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 1810, "number": 0, "label": "jazz"} +{"file_name": "test_03173.png", "caption": "This instrumental song features a violin playing the main melody. This is accompanied by a guitar playing chords. The piano plays backing chords. At the end of the song, the piano plays a fill. The bass is played on a double bass. There is no percussion in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 1810, "number": 1, "label": "jazz"} +{"file_name": "test_03174.png", "caption": "This instrumental song features a violin playing the main melody. This is accompanied by a guitar playing chords. The piano plays backing chords. At the end of the song, the piano plays a fill. The bass is played on a double bass. There is no percussion in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 1810, "number": 2, "label": "jazz"} +{"file_name": "test_03175.png", "caption": "This instrumental song features a violin playing the main melody. This is accompanied by a guitar playing chords. The piano plays backing chords. At the end of the song, the piano plays a fill. The bass is played on a double bass. There is no percussion in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 1810, "number": 3, "label": "jazz"} +{"file_name": "test_03176.png", "caption": "This jazz song features a trumpet playing the main melody. This is accompanied by a string section. There are long pauses in between lines where the backing instruments pause while the trumpet solo is played. Percussion is played along with the string section. There are no voices in this song. This is an instrumental song. This song can be played in a silent movie.", "data_idx": 1811, "number": 0, "label": "classical"} +{"file_name": "test_03177.png", "caption": "This jazz song features a trumpet playing the main melody. This is accompanied by a string section. There are long pauses in between lines where the backing instruments pause while the trumpet solo is played. Percussion is played along with the string section. There are no voices in this song. This is an instrumental song. This song can be played in a silent movie.", "data_idx": 1811, "number": 1, "label": "classical"} +{"file_name": "test_03178.png", "caption": "This jazz song features a trumpet playing the main melody. This is accompanied by a string section. There are long pauses in between lines where the backing instruments pause while the trumpet solo is played. Percussion is played along with the string section. There are no voices in this song. This is an instrumental song. This song can be played in a silent movie.", "data_idx": 1811, "number": 2, "label": "classical"} +{"file_name": "test_03179.png", "caption": "This jazz song features a trumpet playing the main melody. This is accompanied by a string section. There are long pauses in between lines where the backing instruments pause while the trumpet solo is played. Percussion is played along with the string section. There are no voices in this song. This is an instrumental song. This song can be played in a silent movie.", "data_idx": 1811, "number": 3, "label": "classical"} +{"file_name": "test_03180.png", "caption": "This audio contains a e-guitar playing a riff in the mid range. Another clean e-guitar is strumming chords while another e-guitar answers to the first melody. An e-bass is underlining the scenario. All the instruments are spread across the speakers. This song may be playing live using a looper pedal.", "data_idx": 1812, "number": 0, "label": "hiphop"} +{"file_name": "test_03181.png", "caption": "This audio contains a e-guitar playing a riff in the mid range. Another clean e-guitar is strumming chords while another e-guitar answers to the first melody. An e-bass is underlining the scenario. All the instruments are spread across the speakers. This song may be playing live using a looper pedal.", "data_idx": 1812, "number": 1, "label": "hiphop"} +{"file_name": "test_03182.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live while listening to a concert.", "data_idx": 1816, "number": 0, "label": "classical"} +{"file_name": "test_03183.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live while listening to a concert.", "data_idx": 1816, "number": 1, "label": "classical"} +{"file_name": "test_03184.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live while listening to a concert.", "data_idx": 1816, "number": 2, "label": "classical"} +{"file_name": "test_03185.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live while listening to a concert.", "data_idx": 1816, "number": 3, "label": "classical"} +{"file_name": "test_03186.png", "caption": "This audio contains a very fast snare drum-roll. You can hear a high pitched sound falling in pitch and then a explosion of a bomb. This audio may be playing in a movie-warscene.", "data_idx": 1818, "number": 0, "label": "classical"} +{"file_name": "test_03187.png", "caption": "This audio contains a very fast snare drum-roll. You can hear a high pitched sound falling in pitch and then a explosion of a bomb. This audio may be playing in a movie-warscene.", "data_idx": 1818, "number": 1, "label": "classical"} +{"file_name": "test_03188.png", "caption": "This audio contains a very fast snare drum-roll. You can hear a high pitched sound falling in pitch and then a explosion of a bomb. This audio may be playing in a movie-warscene.", "data_idx": 1818, "number": 2, "label": "classical"} +{"file_name": "test_03189.png", "caption": "This audio contains a very fast snare drum-roll. You can hear a high pitched sound falling in pitch and then a explosion of a bomb. This audio may be playing in a movie-warscene.", "data_idx": 1818, "number": 3, "label": "classical"} +{"file_name": "test_03190.png", "caption": "A female vocalist sings this Hindi Devotion song. The tempo is slow with keyboard harmony,tambourine beats, violin melody and rhythmic tanpura accompaniment. This clip is the song introduction with slow chants like singing. The song is a Hindu Devotion song to the God Shiva. It is emotional, sentimental, devotional, prayerful praise and worship. There are ambient sounds of people talking and cheering, indicating that this is a live performance.", "data_idx": 1820, "number": 0, "label": "hiphop"} +{"file_name": "test_03191.png", "caption": "A female vocalist sings this Hindi Devotion song. The tempo is slow with keyboard harmony,tambourine beats, violin melody and rhythmic tanpura accompaniment. This clip is the song introduction with slow chants like singing. The song is a Hindu Devotion song to the God Shiva. It is emotional, sentimental, devotional, prayerful praise and worship. There are ambient sounds of people talking and cheering, indicating that this is a live performance.", "data_idx": 1820, "number": 1, "label": "hiphop"} +{"file_name": "test_03192.png", "caption": "A female vocalist sings this Hindi Devotion song. The tempo is slow with keyboard harmony,tambourine beats, violin melody and rhythmic tanpura accompaniment. This clip is the song introduction with slow chants like singing. The song is a Hindu Devotion song to the God Shiva. It is emotional, sentimental, devotional, prayerful praise and worship. There are ambient sounds of people talking and cheering, indicating that this is a live performance.", "data_idx": 1820, "number": 2, "label": "hiphop"} +{"file_name": "test_03193.png", "caption": "A female vocalist sings this Hindi Devotion song. The tempo is slow with keyboard harmony,tambourine beats, violin melody and rhythmic tanpura accompaniment. This clip is the song introduction with slow chants like singing. The song is a Hindu Devotion song to the God Shiva. It is emotional, sentimental, devotional, prayerful praise and worship. There are ambient sounds of people talking and cheering, indicating that this is a live performance.", "data_idx": 1820, "number": 3, "label": "hiphop"} +{"file_name": "test_03194.png", "caption": "This is an orchestral piece from a video game soundtrack. The brass and the strings sections are playing an ominous sounding tune. There is a timpani being played with a crescendo pattern. The atmosphere is grim. This piece could be added to the soundtrack of thrilling movies and video games.", "data_idx": 1821, "number": 0, "label": "classical"} +{"file_name": "test_03195.png", "caption": "This is an orchestral piece from a video game soundtrack. The brass and the strings sections are playing an ominous sounding tune. There is a timpani being played with a crescendo pattern. The atmosphere is grim. This piece could be added to the soundtrack of thrilling movies and video games.", "data_idx": 1821, "number": 1, "label": "classical"} +{"file_name": "test_03196.png", "caption": "This is an orchestral piece from a video game soundtrack. The brass and the strings sections are playing an ominous sounding tune. There is a timpani being played with a crescendo pattern. The atmosphere is grim. This piece could be added to the soundtrack of thrilling movies and video games.", "data_idx": 1821, "number": 2, "label": "classical"} +{"file_name": "test_03197.png", "caption": "This is an orchestral piece from a video game soundtrack. The brass and the strings sections are playing an ominous sounding tune. There is a timpani being played with a crescendo pattern. The atmosphere is grim. This piece could be added to the soundtrack of thrilling movies and video games.", "data_idx": 1821, "number": 3, "label": "classical"} +{"file_name": "test_03198.png", "caption": "The low quality recording features harmonizing vocals singing over punchy kick and snare hits, shimmering hi hats, synth pads, simple bass and mellow piano chords. There are crowd cheering noises in the background as this is a live performance. It sounds passionate, emotional, exciting and the recording is noisy, in mono and slightly distorted.", "data_idx": 1822, "number": 0, "label": "rock"} +{"file_name": "test_03199.png", "caption": "The low quality recording features harmonizing vocals singing over punchy kick and snare hits, shimmering hi hats, synth pads, simple bass and mellow piano chords. There are crowd cheering noises in the background as this is a live performance. It sounds passionate, emotional, exciting and the recording is noisy, in mono and slightly distorted.", "data_idx": 1822, "number": 1, "label": "rock"} +{"file_name": "test_03200.png", "caption": "The low quality recording features harmonizing vocals singing over punchy kick and snare hits, shimmering hi hats, synth pads, simple bass and mellow piano chords. There are crowd cheering noises in the background as this is a live performance. It sounds passionate, emotional, exciting and the recording is noisy, in mono and slightly distorted.", "data_idx": 1822, "number": 2, "label": "rock"} +{"file_name": "test_03201.png", "caption": "The low quality recording features harmonizing vocals singing over punchy kick and snare hits, shimmering hi hats, synth pads, simple bass and mellow piano chords. There are crowd cheering noises in the background as this is a live performance. It sounds passionate, emotional, exciting and the recording is noisy, in mono and slightly distorted.", "data_idx": 1822, "number": 3, "label": "rock"} +{"file_name": "test_03202.png", "caption": "This music is instrumental. The tempo is fast with a male vocalist, beat boxing rhythmically to the melody of a backup track. The audio quality is inferior but the music is upbeat, punchy, buoyant and youthful with a dance groove. This music is a Synth Pop/Electro Pop with beat boxing.", "data_idx": 1823, "number": 0, "label": "hiphop"} +{"file_name": "test_03203.png", "caption": "This music is instrumental. The tempo is fast with a male vocalist, beat boxing rhythmically to the melody of a backup track. The audio quality is inferior but the music is upbeat, punchy, buoyant and youthful with a dance groove. This music is a Synth Pop/Electro Pop with beat boxing.", "data_idx": 1823, "number": 1, "label": "hiphop"} +{"file_name": "test_03204.png", "caption": "This music is instrumental. The tempo is fast with a male vocalist, beat boxing rhythmically to the melody of a backup track. The audio quality is inferior but the music is upbeat, punchy, buoyant and youthful with a dance groove. This music is a Synth Pop/Electro Pop with beat boxing.", "data_idx": 1823, "number": 2, "label": "hiphop"} +{"file_name": "test_03205.png", "caption": "This music is instrumental. The tempo is fast with a male vocalist, beat boxing rhythmically to the melody of a backup track. The audio quality is inferior but the music is upbeat, punchy, buoyant and youthful with a dance groove. This music is a Synth Pop/Electro Pop with beat boxing.", "data_idx": 1823, "number": 3, "label": "hiphop"} +{"file_name": "test_03206.png", "caption": "This classical song is played on a harpsichord. This is music for royalty or aristocrats. There are some pedal notes played on the bass part and the main melody is played on the treble part. There are no other instruments in this song. There is no percussion in this song. There are no voices in this song. This song can be played in a movie scene where a king is entering his castle.", "data_idx": 1827, "number": 0, "label": "classical"} +{"file_name": "test_03207.png", "caption": "This classical song is played on a harpsichord. This is music for royalty or aristocrats. There are some pedal notes played on the bass part and the main melody is played on the treble part. There are no other instruments in this song. There is no percussion in this song. There are no voices in this song. This song can be played in a movie scene where a king is entering his castle.", "data_idx": 1827, "number": 1, "label": "classical"} +{"file_name": "test_03208.png", "caption": "This classical song is played on a harpsichord. This is music for royalty or aristocrats. There are some pedal notes played on the bass part and the main melody is played on the treble part. There are no other instruments in this song. There is no percussion in this song. There are no voices in this song. This song can be played in a movie scene where a king is entering his castle.", "data_idx": 1827, "number": 2, "label": "classical"} +{"file_name": "test_03209.png", "caption": "This classical song is played on a harpsichord. This is music for royalty or aristocrats. There are some pedal notes played on the bass part and the main melody is played on the treble part. There are no other instruments in this song. There is no percussion in this song. There are no voices in this song. This song can be played in a movie scene where a king is entering his castle.", "data_idx": 1827, "number": 3, "label": "classical"} +{"file_name": "test_03210.png", "caption": "The Pop song features an echoing synth keys melody that consists of a passionate female vocal singing over punchy kick, synth bells melody, echoing synth keys melody and shimmering hi hats. It sounds emotional and passionate.", "data_idx": 1828, "number": 0, "label": "rock"} +{"file_name": "test_03211.png", "caption": "The Pop song features an echoing synth keys melody that consists of a passionate female vocal singing over punchy kick, synth bells melody, echoing synth keys melody and shimmering hi hats. It sounds emotional and passionate.", "data_idx": 1828, "number": 1, "label": "rock"} +{"file_name": "test_03212.png", "caption": "The Pop song features an echoing synth keys melody that consists of a passionate female vocal singing over punchy kick, synth bells melody, echoing synth keys melody and shimmering hi hats. It sounds emotional and passionate.", "data_idx": 1828, "number": 2, "label": "rock"} +{"file_name": "test_03213.png", "caption": "The Pop song features an echoing synth keys melody that consists of a passionate female vocal singing over punchy kick, synth bells melody, echoing synth keys melody and shimmering hi hats. It sounds emotional and passionate.", "data_idx": 1828, "number": 3, "label": "rock"} +{"file_name": "test_03214.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. Strings play staccato notes in the background and at the end of the bar, the notes are allowed to ring. A synth plays chords using an organ voice. This voice plays chords in the background. At the end, the synth plays the sound of two bells playing a descending sequence. This song can be played in a romantic movie.", "data_idx": 1829, "number": 0, "label": "rock"} +{"file_name": "test_03215.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. Strings play staccato notes in the background and at the end of the bar, the notes are allowed to ring. A synth plays chords using an organ voice. This voice plays chords in the background. At the end, the synth plays the sound of two bells playing a descending sequence. This song can be played in a romantic movie.", "data_idx": 1829, "number": 1, "label": "rock"} +{"file_name": "test_03216.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. Strings play staccato notes in the background and at the end of the bar, the notes are allowed to ring. A synth plays chords using an organ voice. This voice plays chords in the background. At the end, the synth plays the sound of two bells playing a descending sequence. This song can be played in a romantic movie.", "data_idx": 1829, "number": 2, "label": "rock"} +{"file_name": "test_03217.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. Strings play staccato notes in the background and at the end of the bar, the notes are allowed to ring. A synth plays chords using an organ voice. This voice plays chords in the background. At the end, the synth plays the sound of two bells playing a descending sequence. This song can be played in a romantic movie.", "data_idx": 1829, "number": 3, "label": "rock"} +{"file_name": "test_03218.png", "caption": "This is an electronic dance music song, with a four on the floor beat. The melodic component of the song consists of a fuzzy beat that's treated with a flanger, and a drum roll upon arrival.", "data_idx": 1831, "number": 0, "label": "hiphop"} +{"file_name": "test_03219.png", "caption": "This is an electronic dance music song, with a four on the floor beat. The melodic component of the song consists of a fuzzy beat that's treated with a flanger, and a drum roll upon arrival.", "data_idx": 1831, "number": 1, "label": "hiphop"} +{"file_name": "test_03220.png", "caption": "This is an electronic dance music song, with a four on the floor beat. The melodic component of the song consists of a fuzzy beat that's treated with a flanger, and a drum roll upon arrival.", "data_idx": 1831, "number": 2, "label": "hiphop"} +{"file_name": "test_03221.png", "caption": "This is an electronic dance music song, with a four on the floor beat. The melodic component of the song consists of a fuzzy beat that's treated with a flanger, and a drum roll upon arrival.", "data_idx": 1831, "number": 3, "label": "hiphop"} +{"file_name": "test_03222.png", "caption": "This music is instrumental. The tempo is slow with an electric guitar playing two corresponding notes. The plucking pattern indicates that the guitar is being tuned. This is a Guitar tuning Tutorial/ Lesson.", "data_idx": 1832, "number": 0, "label": "hiphop"} +{"file_name": "test_03223.png", "caption": "This music is instrumental. The tempo is slow with an electric guitar playing two corresponding notes. The plucking pattern indicates that the guitar is being tuned. This is a Guitar tuning Tutorial/ Lesson.", "data_idx": 1832, "number": 1, "label": "hiphop"} +{"file_name": "test_03224.png", "caption": "The low quality recording features a dynamic bass guitar playing. The recording is noisy.", "data_idx": 1834, "number": 0, "label": "reggae"} +{"file_name": "test_03225.png", "caption": "The low quality recording features a dynamic bass guitar playing. The recording is noisy.", "data_idx": 1834, "number": 1, "label": "reggae"} +{"file_name": "test_03226.png", "caption": "The low quality recording features a dynamic bass guitar playing. The recording is noisy.", "data_idx": 1834, "number": 2, "label": "reggae"} +{"file_name": "test_03227.png", "caption": "The low quality recording features a dynamic bass guitar playing. The recording is noisy.", "data_idx": 1834, "number": 3, "label": "reggae"} +{"file_name": "test_03228.png", "caption": "This song contains digital drums playing a four on the floor groove with a kick on every beat along to an e-bass. In the background you can hear additional bongo rhythms. A synth string sound is playing long chord notes in the background. An e-guitar is finger picking a chord melody. A female voice is singing in a higher key and with backing vocals. This song may be playing while cleaning the kitchen.", "data_idx": 1835, "number": 0, "label": "pop"} +{"file_name": "test_03229.png", "caption": "This song contains digital drums playing a four on the floor groove with a kick on every beat along to an e-bass. In the background you can hear additional bongo rhythms. A synth string sound is playing long chord notes in the background. An e-guitar is finger picking a chord melody. A female voice is singing in a higher key and with backing vocals. This song may be playing while cleaning the kitchen.", "data_idx": 1835, "number": 1, "label": "pop"} +{"file_name": "test_03230.png", "caption": "This song contains digital drums playing a four on the floor groove with a kick on every beat along to an e-bass. In the background you can hear additional bongo rhythms. A synth string sound is playing long chord notes in the background. An e-guitar is finger picking a chord melody. A female voice is singing in a higher key and with backing vocals. This song may be playing while cleaning the kitchen.", "data_idx": 1835, "number": 2, "label": "pop"} +{"file_name": "test_03231.png", "caption": "This song contains digital drums playing a four on the floor groove with a kick on every beat along to an e-bass. In the background you can hear additional bongo rhythms. A synth string sound is playing long chord notes in the background. An e-guitar is finger picking a chord melody. A female voice is singing in a higher key and with backing vocals. This song may be playing while cleaning the kitchen.", "data_idx": 1835, "number": 3, "label": "pop"} +{"file_name": "test_03232.png", "caption": "This is the recording of a flute lesson. There is a male voice speaking in an instructive manner on the technique of embouchure.", "data_idx": 1836, "number": 0, "label": "blues"} +{"file_name": "test_03233.png", "caption": "This is the recording of a flute lesson. There is a male voice speaking in an instructive manner on the technique of embouchure.", "data_idx": 1836, "number": 1, "label": "blues"} +{"file_name": "test_03234.png", "caption": "This is the recording of a flute lesson. There is a male voice speaking in an instructive manner on the technique of embouchure.", "data_idx": 1836, "number": 2, "label": "blues"} +{"file_name": "test_03235.png", "caption": "This is the recording of a flute lesson. There is a male voice speaking in an instructive manner on the technique of embouchure.", "data_idx": 1836, "number": 3, "label": "blues"} +{"file_name": "test_03236.png", "caption": "This is an amateur recording of a gospel music performance. There are two organs playing simultaneously, taking turns in playing groovy melodies. There is a bass guitar playing in the background. The rhythmic background consists of an acoustic drum beat that gives peak sounds due to the poor quality of the recording. There is a sophisticated feel to this piece.", "data_idx": 1839, "number": 0, "label": "disco"} +{"file_name": "test_03237.png", "caption": "This is an amateur recording of a gospel music performance. There are two organs playing simultaneously, taking turns in playing groovy melodies. There is a bass guitar playing in the background. The rhythmic background consists of an acoustic drum beat that gives peak sounds due to the poor quality of the recording. There is a sophisticated feel to this piece.", "data_idx": 1839, "number": 1, "label": "disco"} +{"file_name": "test_03238.png", "caption": "This is an amateur recording of a gospel music performance. There are two organs playing simultaneously, taking turns in playing groovy melodies. There is a bass guitar playing in the background. The rhythmic background consists of an acoustic drum beat that gives peak sounds due to the poor quality of the recording. There is a sophisticated feel to this piece.", "data_idx": 1839, "number": 2, "label": "disco"} +{"file_name": "test_03239.png", "caption": "This is an amateur recording of a gospel music performance. There are two organs playing simultaneously, taking turns in playing groovy melodies. There is a bass guitar playing in the background. The rhythmic background consists of an acoustic drum beat that gives peak sounds due to the poor quality of the recording. There is a sophisticated feel to this piece.", "data_idx": 1839, "number": 3, "label": "disco"} +{"file_name": "test_03240.png", "caption": "This music is an Altai instrumental. The tempo is medium fast with use of traditional and regional instruments. There is use of a droning stringed instrument, shakers and wind instruments. The music is incessant droning, pleasant, unique, close to nature and simple.", "data_idx": 1840, "number": 0, "label": "hiphop"} +{"file_name": "test_03241.png", "caption": "This music is an Altai instrumental. The tempo is medium fast with use of traditional and regional instruments. There is use of a droning stringed instrument, shakers and wind instruments. The music is incessant droning, pleasant, unique, close to nature and simple.", "data_idx": 1840, "number": 1, "label": "hiphop"} +{"file_name": "test_03242.png", "caption": "This music is an Altai instrumental. The tempo is medium fast with use of traditional and regional instruments. There is use of a droning stringed instrument, shakers and wind instruments. The music is incessant droning, pleasant, unique, close to nature and simple.", "data_idx": 1840, "number": 2, "label": "hiphop"} +{"file_name": "test_03243.png", "caption": "This music is an Altai instrumental. The tempo is medium fast with use of traditional and regional instruments. There is use of a droning stringed instrument, shakers and wind instruments. The music is incessant droning, pleasant, unique, close to nature and simple.", "data_idx": 1840, "number": 3, "label": "hiphop"} +{"file_name": "test_03244.png", "caption": "The low quality recording features an echoing electric guitar melody played over synth pad chords and smooth bass. It sounds relaxing, calming and passionate - like something you would hear in a spa center.", "data_idx": 1843, "number": 0, "label": "classical"} +{"file_name": "test_03245.png", "caption": "The low quality recording features an echoing electric guitar melody played over synth pad chords and smooth bass. It sounds relaxing, calming and passionate - like something you would hear in a spa center.", "data_idx": 1843, "number": 1, "label": "classical"} +{"file_name": "test_03246.png", "caption": "The low quality recording features an echoing electric guitar melody played over synth pad chords and smooth bass. It sounds relaxing, calming and passionate - like something you would hear in a spa center.", "data_idx": 1843, "number": 2, "label": "classical"} +{"file_name": "test_03247.png", "caption": "The low quality recording features an echoing electric guitar melody played over synth pad chords and smooth bass. It sounds relaxing, calming and passionate - like something you would hear in a spa center.", "data_idx": 1843, "number": 3, "label": "classical"} +{"file_name": "test_03248.png", "caption": "This game music starts off with midi sounds playing a high pitched melody. This is followed by another instrument playing a louder melody in a descending pattern of five notes followed by an ascending pattern of three notes. Then an industrial machinery sound is heard followed by the sound of a person in boots running. This song is used in a game.", "data_idx": 1845, "number": 0, "label": "classical"} +{"file_name": "test_03249.png", "caption": "This game music starts off with midi sounds playing a high pitched melody. This is followed by another instrument playing a louder melody in a descending pattern of five notes followed by an ascending pattern of three notes. Then an industrial machinery sound is heard followed by the sound of a person in boots running. This song is used in a game.", "data_idx": 1845, "number": 1, "label": "classical"} +{"file_name": "test_03250.png", "caption": "This game music starts off with midi sounds playing a high pitched melody. This is followed by another instrument playing a louder melody in a descending pattern of five notes followed by an ascending pattern of three notes. Then an industrial machinery sound is heard followed by the sound of a person in boots running. This song is used in a game.", "data_idx": 1845, "number": 2, "label": "classical"} +{"file_name": "test_03251.png", "caption": "This game music starts off with midi sounds playing a high pitched melody. This is followed by another instrument playing a louder melody in a descending pattern of five notes followed by an ascending pattern of three notes. Then an industrial machinery sound is heard followed by the sound of a person in boots running. This song is used in a game.", "data_idx": 1845, "number": 3, "label": "classical"} +{"file_name": "test_03252.png", "caption": "This clip features a melody played on the accordion. There are no other instruments in this song. This song starts off with an ascending triplet run played twelve times. The melody continues on the same scale. There are no voices in this song. This song is an instrumental. This song can be played in a silent movie.", "data_idx": 1846, "number": 0, "label": "blues"} +{"file_name": "test_03253.png", "caption": "This clip features a melody played on the accordion. There are no other instruments in this song. This song starts off with an ascending triplet run played twelve times. The melody continues on the same scale. There are no voices in this song. This song is an instrumental. This song can be played in a silent movie.", "data_idx": 1846, "number": 1, "label": "blues"} +{"file_name": "test_03254.png", "caption": "This clip features a melody played on the accordion. There are no other instruments in this song. This song starts off with an ascending triplet run played twelve times. The melody continues on the same scale. There are no voices in this song. This song is an instrumental. This song can be played in a silent movie.", "data_idx": 1846, "number": 2, "label": "blues"} +{"file_name": "test_03255.png", "caption": "This clip features a melody played on the accordion. There are no other instruments in this song. This song starts off with an ascending triplet run played twelve times. The melody continues on the same scale. There are no voices in this song. This song is an instrumental. This song can be played in a silent movie.", "data_idx": 1846, "number": 3, "label": "blues"} +{"file_name": "test_03256.png", "caption": "This song contains an acoustic drum playing along with a bass and an accordion melody creating a cheerful atmosphere. The crowd is so loud. Cheering, screaming and laughing. This song may be playing at a local event.", "data_idx": 1847, "number": 0, "label": "metal"} +{"file_name": "test_03257.png", "caption": "This song contains an acoustic drum playing along with a bass and an accordion melody creating a cheerful atmosphere. The crowd is so loud. Cheering, screaming and laughing. This song may be playing at a local event.", "data_idx": 1847, "number": 1, "label": "metal"} +{"file_name": "test_03258.png", "caption": "This song contains an acoustic drum playing along with a bass and an accordion melody creating a cheerful atmosphere. The crowd is so loud. Cheering, screaming and laughing. This song may be playing at a local event.", "data_idx": 1847, "number": 2, "label": "metal"} +{"file_name": "test_03259.png", "caption": "This song contains an acoustic drum playing along with a bass and an accordion melody creating a cheerful atmosphere. The crowd is so loud. Cheering, screaming and laughing. This song may be playing at a local event.", "data_idx": 1847, "number": 3, "label": "metal"} +{"file_name": "test_03260.png", "caption": "This audio contains a lot of percussion such as tablas playing a rhythm along with shakers and more. Male voices are singing something like a mantra repeating the same melody. Kids' voices are also singing the same melody in a higher octave. A bansuri flute adds little melody lines. This song may be playing during a ceremony.", "data_idx": 1853, "number": 0, "label": "blues"} +{"file_name": "test_03261.png", "caption": "This audio contains a lot of percussion such as tablas playing a rhythm along with shakers and more. Male voices are singing something like a mantra repeating the same melody. Kids' voices are also singing the same melody in a higher octave. A bansuri flute adds little melody lines. This song may be playing during a ceremony.", "data_idx": 1853, "number": 1, "label": "blues"} +{"file_name": "test_03262.png", "caption": "This audio contains a lot of percussion such as tablas playing a rhythm along with shakers and more. Male voices are singing something like a mantra repeating the same melody. Kids' voices are also singing the same melody in a higher octave. A bansuri flute adds little melody lines. This song may be playing during a ceremony.", "data_idx": 1853, "number": 2, "label": "blues"} +{"file_name": "test_03263.png", "caption": "This audio contains a lot of percussion such as tablas playing a rhythm along with shakers and more. Male voices are singing something like a mantra repeating the same melody. Kids' voices are also singing the same melody in a higher octave. A bansuri flute adds little melody lines. This song may be playing during a ceremony.", "data_idx": 1853, "number": 3, "label": "blues"} +{"file_name": "test_03264.png", "caption": "The low quality recording features hip hop song that contains a low pitched male vocal singing over some camera shuttering sound effects, after which an echoing male vocal starts rapping over punchy kick and snare hits, low toms, electric guitar melody, reversed crash cymbal riser and shimmering hi hats. It sounds groovy.", "data_idx": 1860, "number": 0, "label": "hiphop"} +{"file_name": "test_03265.png", "caption": "The low quality recording features hip hop song that contains a low pitched male vocal singing over some camera shuttering sound effects, after which an echoing male vocal starts rapping over punchy kick and snare hits, low toms, electric guitar melody, reversed crash cymbal riser and shimmering hi hats. It sounds groovy.", "data_idx": 1860, "number": 1, "label": "hiphop"} +{"file_name": "test_03266.png", "caption": "This is a Peruvian folk music piece. It is an instrumental piece. There is a violin and a Peruvian harp playing a festive melody. The atmosphere is lively. This piece could be playing from a radio station in a movie that takes place in Peru.", "data_idx": 1862, "number": 0, "label": "classical"} +{"file_name": "test_03267.png", "caption": "This is a Peruvian folk music piece. It is an instrumental piece. There is a violin and a Peruvian harp playing a festive melody. The atmosphere is lively. This piece could be playing from a radio station in a movie that takes place in Peru.", "data_idx": 1862, "number": 1, "label": "classical"} +{"file_name": "test_03268.png", "caption": "This is a Peruvian folk music piece. It is an instrumental piece. There is a violin and a Peruvian harp playing a festive melody. The atmosphere is lively. This piece could be playing from a radio station in a movie that takes place in Peru.", "data_idx": 1862, "number": 2, "label": "classical"} +{"file_name": "test_03269.png", "caption": "This is a Peruvian folk music piece. It is an instrumental piece. There is a violin and a Peruvian harp playing a festive melody. The atmosphere is lively. This piece could be playing from a radio station in a movie that takes place in Peru.", "data_idx": 1862, "number": 3, "label": "classical"} +{"file_name": "test_03270.png", "caption": "Male and female singers sing together in vocal unison. The song is medium tempo with a violin playing countermelody, along with a traditional string bass rhythm and percussion instruments. The song is South American folk music with a lot of passion. The song audio quality is bad with high gains all over.", "data_idx": 1863, "number": 0, "label": "classical"} +{"file_name": "test_03271.png", "caption": "Male and female singers sing together in vocal unison. The song is medium tempo with a violin playing countermelody, along with a traditional string bass rhythm and percussion instruments. The song is South American folk music with a lot of passion. The song audio quality is bad with high gains all over.", "data_idx": 1863, "number": 1, "label": "classical"} +{"file_name": "test_03272.png", "caption": "Male and female singers sing together in vocal unison. The song is medium tempo with a violin playing countermelody, along with a traditional string bass rhythm and percussion instruments. The song is South American folk music with a lot of passion. The song audio quality is bad with high gains all over.", "data_idx": 1863, "number": 2, "label": "classical"} +{"file_name": "test_03273.png", "caption": "Male and female singers sing together in vocal unison. The song is medium tempo with a violin playing countermelody, along with a traditional string bass rhythm and percussion instruments. The song is South American folk music with a lot of passion. The song audio quality is bad with high gains all over.", "data_idx": 1863, "number": 3, "label": "classical"} +{"file_name": "test_03274.png", "caption": "The low quality recording features a traditional song that consists of a distant woodwinds melody playing over wooden low percussion and strummed strings melody. It sounds soulful and passionate.", "data_idx": 1866, "number": 0, "label": "disco"} +{"file_name": "test_03275.png", "caption": "The low quality recording features a traditional song that consists of a distant woodwinds melody playing over wooden low percussion and strummed strings melody. It sounds soulful and passionate.", "data_idx": 1866, "number": 1, "label": "disco"} +{"file_name": "test_03276.png", "caption": "Someone is playing a big djembe along to a fast paced melody in a higher register played on a bagpipe. This song may be playing during a traditional holiday in Ireland.", "data_idx": 1871, "number": 0, "label": "reggae"} +{"file_name": "test_03277.png", "caption": "Someone is playing a big djembe along to a fast paced melody in a higher register played on a bagpipe. This song may be playing during a traditional holiday in Ireland.", "data_idx": 1871, "number": 1, "label": "reggae"} +{"file_name": "test_03278.png", "caption": "Someone is playing a big djembe along to a fast paced melody in a higher register played on a bagpipe. This song may be playing during a traditional holiday in Ireland.", "data_idx": 1871, "number": 2, "label": "reggae"} +{"file_name": "test_03279.png", "caption": "Someone is playing a big djembe along to a fast paced melody in a higher register played on a bagpipe. This song may be playing during a traditional holiday in Ireland.", "data_idx": 1871, "number": 3, "label": "reggae"} +{"file_name": "test_03280.png", "caption": "The low quality recording features a cover of a pop song sung by passionate female vocalists over acoustic guitar melody and acoustic rhythm guitar chords. It sounds emotional, passionate and the recording is noisy and in mono.", "data_idx": 1873, "number": 0, "label": "country"} +{"file_name": "test_03281.png", "caption": "The low quality recording features a cover of a pop song sung by passionate female vocalists over acoustic guitar melody and acoustic rhythm guitar chords. It sounds emotional, passionate and the recording is noisy and in mono.", "data_idx": 1873, "number": 1, "label": "country"} +{"file_name": "test_03282.png", "caption": "The low quality recording features a cover of a pop song sung by passionate female vocalists over acoustic guitar melody and acoustic rhythm guitar chords. It sounds emotional, passionate and the recording is noisy and in mono.", "data_idx": 1873, "number": 2, "label": "country"} +{"file_name": "test_03283.png", "caption": "The low quality recording features a cover of a pop song sung by passionate female vocalists over acoustic guitar melody and acoustic rhythm guitar chords. It sounds emotional, passionate and the recording is noisy and in mono.", "data_idx": 1873, "number": 3, "label": "country"} +{"file_name": "test_03284.png", "caption": "This music is instrumental. The tempo is medium with a dramatic, intense and suspenseful synthesiser arrangement, cymbal riff and conch shell sound. The music is a background score for a Bengali movie / TV series with a male voice giving instructions, a Hindu priest chanting Om with women joining in with the chant and vocalisations and the sound of the conch shell.", "data_idx": 1874, "number": 0, "label": "rock"} +{"file_name": "test_03285.png", "caption": "This music is instrumental. The tempo is medium with a dramatic, intense and suspenseful synthesiser arrangement, cymbal riff and conch shell sound. The music is a background score for a Bengali movie / TV series with a male voice giving instructions, a Hindu priest chanting Om with women joining in with the chant and vocalisations and the sound of the conch shell.", "data_idx": 1874, "number": 1, "label": "rock"} +{"file_name": "test_03286.png", "caption": "This music is instrumental. The tempo is medium with a dramatic, intense and suspenseful synthesiser arrangement, cymbal riff and conch shell sound. The music is a background score for a Bengali movie / TV series with a male voice giving instructions, a Hindu priest chanting Om with women joining in with the chant and vocalisations and the sound of the conch shell.", "data_idx": 1874, "number": 2, "label": "rock"} +{"file_name": "test_03287.png", "caption": "This music is instrumental. The tempo is medium with a dramatic, intense and suspenseful synthesiser arrangement, cymbal riff and conch shell sound. The music is a background score for a Bengali movie / TV series with a male voice giving instructions, a Hindu priest chanting Om with women joining in with the chant and vocalisations and the sound of the conch shell.", "data_idx": 1874, "number": 3, "label": "rock"} +{"file_name": "test_03288.png", "caption": "The low quality recording features a harmonica solo melody played over funky acoustic rhythm guitar. It sounds passionate and easygoing, even though the recording is a bit noisy and in mono.", "data_idx": 1876, "number": 0, "label": "blues"} +{"file_name": "test_03289.png", "caption": "The low quality recording features a harmonica solo melody played over funky acoustic rhythm guitar. It sounds passionate and easygoing, even though the recording is a bit noisy and in mono.", "data_idx": 1876, "number": 1, "label": "blues"} +{"file_name": "test_03290.png", "caption": "The low quality recording features a harmonica solo melody played over funky acoustic rhythm guitar. It sounds passionate and easygoing, even though the recording is a bit noisy and in mono.", "data_idx": 1876, "number": 2, "label": "blues"} +{"file_name": "test_03291.png", "caption": "The low quality recording features a harmonica solo melody played over funky acoustic rhythm guitar. It sounds passionate and easygoing, even though the recording is a bit noisy and in mono.", "data_idx": 1876, "number": 3, "label": "blues"} +{"file_name": "test_03292.png", "caption": "Someone is playing a steady groove on the drums along with a simple bassline playing the footnote while a e-piano is playing minor chords panned to the right side of the speakers. Another distorted e-piano sound is playing a countermelody in a lower register panned more to the left side. A male voice is singing in the midrange. This song may be playing late night at a bar having a drink by yourself.", "data_idx": 1877, "number": 0, "label": "disco"} +{"file_name": "test_03293.png", "caption": "Someone is playing a steady groove on the drums along with a simple bassline playing the footnote while a e-piano is playing minor chords panned to the right side of the speakers. Another distorted e-piano sound is playing a countermelody in a lower register panned more to the left side. A male voice is singing in the midrange. This song may be playing late night at a bar having a drink by yourself.", "data_idx": 1877, "number": 1, "label": "disco"} +{"file_name": "test_03294.png", "caption": "Someone is playing a steady groove on the drums along with a simple bassline playing the footnote while a e-piano is playing minor chords panned to the right side of the speakers. Another distorted e-piano sound is playing a countermelody in a lower register panned more to the left side. A male voice is singing in the midrange. This song may be playing late night at a bar having a drink by yourself.", "data_idx": 1877, "number": 2, "label": "disco"} +{"file_name": "test_03295.png", "caption": "Someone is playing a steady groove on the drums along with a simple bassline playing the footnote while a e-piano is playing minor chords panned to the right side of the speakers. Another distorted e-piano sound is playing a countermelody in a lower register panned more to the left side. A male voice is singing in the midrange. This song may be playing late night at a bar having a drink by yourself.", "data_idx": 1877, "number": 3, "label": "disco"} +{"file_name": "test_03296.png", "caption": "This house music features a female voice singing the main melody. This is accompanied by programmed percussion playing a simple beat. The kick is played on every count. Hand claps are played at every alternate count. The bass plays the root notes of the chords. Synth chords are played in the background. This song can be played at a club.", "data_idx": 1878, "number": 0, "label": "hiphop"} +{"file_name": "test_03297.png", "caption": "This house music features a female voice singing the main melody. This is accompanied by programmed percussion playing a simple beat. The kick is played on every count. Hand claps are played at every alternate count. The bass plays the root notes of the chords. Synth chords are played in the background. This song can be played at a club.", "data_idx": 1878, "number": 1, "label": "hiphop"} +{"file_name": "test_03298.png", "caption": "This is a gospel music piece. The piece is a church hymn that is being sung by a choir in the style of acapella. The male vocals are harmony singing. The atmosphere is festive. This piece can be played at Christian religious events. It could also be used in the soundtrack of a modern drama movie during religious scenes.", "data_idx": 1881, "number": 0, "label": "rock"} +{"file_name": "test_03299.png", "caption": "This is a gospel music piece. The piece is a church hymn that is being sung by a choir in the style of acapella. The male vocals are harmony singing. The atmosphere is festive. This piece can be played at Christian religious events. It could also be used in the soundtrack of a modern drama movie during religious scenes.", "data_idx": 1881, "number": 1, "label": "rock"} +{"file_name": "test_03300.png", "caption": "This is a gospel music piece. The piece is a church hymn that is being sung by a choir in the style of acapella. The male vocals are harmony singing. The atmosphere is festive. This piece can be played at Christian religious events. It could also be used in the soundtrack of a modern drama movie during religious scenes.", "data_idx": 1881, "number": 2, "label": "rock"} +{"file_name": "test_03301.png", "caption": "This is a gospel music piece. The piece is a church hymn that is being sung by a choir in the style of acapella. The male vocals are harmony singing. The atmosphere is festive. This piece can be played at Christian religious events. It could also be used in the soundtrack of a modern drama movie during religious scenes.", "data_idx": 1881, "number": 3, "label": "rock"} +{"file_name": "test_03302.png", "caption": "This audio contains an e-bass playing a melody along with a simple drum groove and other stringlike instruments. An e-guitar is playing a lead melody on top and in the background you can hear the crowd screaming. This is an amateur recording and of poor audio-quality. This song may be playing during a live show.", "data_idx": 1885, "number": 0, "label": "hiphop"} +{"file_name": "test_03303.png", "caption": "This audio contains an e-bass playing a melody along with a simple drum groove and other stringlike instruments. An e-guitar is playing a lead melody on top and in the background you can hear the crowd screaming. This is an amateur recording and of poor audio-quality. This song may be playing during a live show.", "data_idx": 1885, "number": 1, "label": "hiphop"} +{"file_name": "test_03304.png", "caption": "This audio contains an e-bass playing a melody along with a simple drum groove and other stringlike instruments. An e-guitar is playing a lead melody on top and in the background you can hear the crowd screaming. This is an amateur recording and of poor audio-quality. This song may be playing during a live show.", "data_idx": 1885, "number": 2, "label": "hiphop"} +{"file_name": "test_03305.png", "caption": "This audio contains an e-bass playing a melody along with a simple drum groove and other stringlike instruments. An e-guitar is playing a lead melody on top and in the background you can hear the crowd screaming. This is an amateur recording and of poor audio-quality. This song may be playing during a live show.", "data_idx": 1885, "number": 3, "label": "hiphop"} +{"file_name": "test_03306.png", "caption": "This song features the main melody played on a french horn and on a trumpet. The first part of the song is played on a french horn and the melody is continued on the trumpet. There are no other instruments in this song. The trumpet plays a battle call pattern. This is an instrumental song. There are no voices in this song. This song can be played just before a battle scene in a movie.", "data_idx": 1886, "number": 0, "label": "hiphop"} +{"file_name": "test_03307.png", "caption": "This song features the main melody played on a french horn and on a trumpet. The first part of the song is played on a french horn and the melody is continued on the trumpet. There are no other instruments in this song. The trumpet plays a battle call pattern. This is an instrumental song. There are no voices in this song. This song can be played just before a battle scene in a movie.", "data_idx": 1886, "number": 1, "label": "hiphop"} +{"file_name": "test_03308.png", "caption": "This song features the main melody played on a french horn and on a trumpet. The first part of the song is played on a french horn and the melody is continued on the trumpet. There are no other instruments in this song. The trumpet plays a battle call pattern. This is an instrumental song. There are no voices in this song. This song can be played just before a battle scene in a movie.", "data_idx": 1886, "number": 2, "label": "hiphop"} +{"file_name": "test_03309.png", "caption": "This song features the main melody played on a french horn and on a trumpet. The first part of the song is played on a french horn and the melody is continued on the trumpet. There are no other instruments in this song. The trumpet plays a battle call pattern. This is an instrumental song. There are no voices in this song. This song can be played just before a battle scene in a movie.", "data_idx": 1886, "number": 3, "label": "hiphop"} +{"file_name": "test_03310.png", "caption": "This is a jazz music piece. It is an instrumental piece. The saxophone and the trumpet are playing the melody. The piano, the electric guitar and the bass guitar are accompanying them in the background. The tempo is slow. The atmosphere is chill. This piece could be playing in the background at a coffee shop.", "data_idx": 1887, "number": 0, "label": "jazz"} +{"file_name": "test_03311.png", "caption": "This is a jazz music piece. It is an instrumental piece. The saxophone and the trumpet are playing the melody. The piano, the electric guitar and the bass guitar are accompanying them in the background. The tempo is slow. The atmosphere is chill. This piece could be playing in the background at a coffee shop.", "data_idx": 1887, "number": 1, "label": "jazz"} +{"file_name": "test_03312.png", "caption": "This is a jazz music piece. It is an instrumental piece. The saxophone and the trumpet are playing the melody. The piano, the electric guitar and the bass guitar are accompanying them in the background. The tempo is slow. The atmosphere is chill. This piece could be playing in the background at a coffee shop.", "data_idx": 1887, "number": 2, "label": "jazz"} +{"file_name": "test_03313.png", "caption": "This is a jazz music piece. It is an instrumental piece. The saxophone and the trumpet are playing the melody. The piano, the electric guitar and the bass guitar are accompanying them in the background. The tempo is slow. The atmosphere is chill. This piece could be playing in the background at a coffee shop.", "data_idx": 1887, "number": 3, "label": "jazz"} +{"file_name": "test_03314.png", "caption": "This is the recording of a trombone lesson. The male instructor is playing a note on the trombone and then speaking in an instructive manner in the Japanese language. The click of the metronome can be heard in the background. This recording can be sampled for use in beat-making.", "data_idx": 1888, "number": 0, "label": "jazz"} +{"file_name": "test_03315.png", "caption": "This is the recording of a trombone lesson. The male instructor is playing a note on the trombone and then speaking in an instructive manner in the Japanese language. The click of the metronome can be heard in the background. This recording can be sampled for use in beat-making.", "data_idx": 1888, "number": 1, "label": "jazz"} +{"file_name": "test_03316.png", "caption": "This is the recording of a trombone lesson. The male instructor is playing a note on the trombone and then speaking in an instructive manner in the Japanese language. The click of the metronome can be heard in the background. This recording can be sampled for use in beat-making.", "data_idx": 1888, "number": 2, "label": "jazz"} +{"file_name": "test_03317.png", "caption": "This is the recording of a trombone lesson. The male instructor is playing a note on the trombone and then speaking in an instructive manner in the Japanese language. The click of the metronome can be heard in the background. This recording can be sampled for use in beat-making.", "data_idx": 1888, "number": 3, "label": "jazz"} +{"file_name": "test_03318.png", "caption": "The low quality recording features a wide arpeggiated electric guitar melody. It sounds clean, passionate and the recording is a bit noisy.", "data_idx": 1889, "number": 0, "label": "jazz"} +{"file_name": "test_03319.png", "caption": "The low quality recording features a wide arpeggiated electric guitar melody. It sounds clean, passionate and the recording is a bit noisy.", "data_idx": 1889, "number": 1, "label": "jazz"} +{"file_name": "test_03320.png", "caption": "The low quality recording features a wide arpeggiated electric guitar melody. It sounds clean, passionate and the recording is a bit noisy.", "data_idx": 1889, "number": 2, "label": "jazz"} +{"file_name": "test_03321.png", "caption": "The low quality recording features a wide arpeggiated electric guitar melody. It sounds clean, passionate and the recording is a bit noisy.", "data_idx": 1889, "number": 3, "label": "jazz"} +{"file_name": "test_03322.png", "caption": "This is a classical harpsichord piece that elicits a feeling of suspense and tension in the listener. There are low sustained cellos which provide a contrast to the bright tones of the harpsichord. The piece feels haunting and has a sense of drama about it.", "data_idx": 1890, "number": 0, "label": "classical"} +{"file_name": "test_03323.png", "caption": "This is a classical harpsichord piece that elicits a feeling of suspense and tension in the listener. There are low sustained cellos which provide a contrast to the bright tones of the harpsichord. The piece feels haunting and has a sense of drama about it.", "data_idx": 1890, "number": 1, "label": "classical"} +{"file_name": "test_03324.png", "caption": "This is a classical harpsichord piece that elicits a feeling of suspense and tension in the listener. There are low sustained cellos which provide a contrast to the bright tones of the harpsichord. The piece feels haunting and has a sense of drama about it.", "data_idx": 1890, "number": 2, "label": "classical"} +{"file_name": "test_03325.png", "caption": "This is a classical harpsichord piece that elicits a feeling of suspense and tension in the listener. There are low sustained cellos which provide a contrast to the bright tones of the harpsichord. The piece feels haunting and has a sense of drama about it.", "data_idx": 1890, "number": 3, "label": "classical"} +{"file_name": "test_03326.png", "caption": "The low quality recording features an arpeggiated acoustic flamenco guitar melody. The recording is noisy, in mono, and it sounds sad, easygoing and emotional.", "data_idx": 1893, "number": 0, "label": "classical"} +{"file_name": "test_03327.png", "caption": "The low quality recording features an arpeggiated acoustic flamenco guitar melody. The recording is noisy, in mono, and it sounds sad, easygoing and emotional.", "data_idx": 1893, "number": 1, "label": "classical"} +{"file_name": "test_03328.png", "caption": "The low quality recording features an arpeggiated acoustic flamenco guitar melody. The recording is noisy, in mono, and it sounds sad, easygoing and emotional.", "data_idx": 1893, "number": 2, "label": "classical"} +{"file_name": "test_03329.png", "caption": "The low quality recording features an arpeggiated acoustic flamenco guitar melody. The recording is noisy, in mono, and it sounds sad, easygoing and emotional.", "data_idx": 1893, "number": 3, "label": "classical"} +{"file_name": "test_03330.png", "caption": "This audio contains someone playing a fast melody on a tenor saxophone. This song may be playing in a jazz band.", "data_idx": 1895, "number": 0, "label": "jazz"} +{"file_name": "test_03331.png", "caption": "This audio contains someone playing a fast melody on a tenor saxophone. This song may be playing in a jazz band.", "data_idx": 1895, "number": 1, "label": "jazz"} +{"file_name": "test_03332.png", "caption": "This audio contains someone playing a fast melody on a tenor saxophone. This song may be playing in a jazz band.", "data_idx": 1895, "number": 2, "label": "jazz"} +{"file_name": "test_03333.png", "caption": "This audio contains someone playing a fast melody on a tenor saxophone. This song may be playing in a jazz band.", "data_idx": 1895, "number": 3, "label": "jazz"} +{"file_name": "test_03334.png", "caption": "A male singer sings this exciting melody with backup singers in vocal harmony. The song is medium fast tempo with a steady drumming rhythm, keyboard accompaniment, groovy bass line and various percussion hits. The song is energetic and passionate. The song is a retro pop hit.", "data_idx": 1896, "number": 0, "label": "reggae"} +{"file_name": "test_03335.png", "caption": "A male singer sings this exciting melody with backup singers in vocal harmony. The song is medium fast tempo with a steady drumming rhythm, keyboard accompaniment, groovy bass line and various percussion hits. The song is energetic and passionate. The song is a retro pop hit.", "data_idx": 1896, "number": 1, "label": "reggae"} +{"file_name": "test_03336.png", "caption": "A male singer sings this exciting melody with backup singers in vocal harmony. The song is medium fast tempo with a steady drumming rhythm, keyboard accompaniment, groovy bass line and various percussion hits. The song is energetic and passionate. The song is a retro pop hit.", "data_idx": 1896, "number": 2, "label": "reggae"} +{"file_name": "test_03337.png", "caption": "A male singer sings this exciting melody with backup singers in vocal harmony. The song is medium fast tempo with a steady drumming rhythm, keyboard accompaniment, groovy bass line and various percussion hits. The song is energetic and passionate. The song is a retro pop hit.", "data_idx": 1896, "number": 3, "label": "reggae"} +{"file_name": "test_03338.png", "caption": "The song is an instrumental. The tempo is medium with a strong bass line, steady drumming rhythm, triangle percussion, keyboard accompaniment and a male vocalist making guttural noises. The song is a modern techno pop dance tune.", "data_idx": 1897, "number": 0, "label": "reggae"} +{"file_name": "test_03339.png", "caption": "The song is an instrumental. The tempo is medium with a strong bass line, steady drumming rhythm, triangle percussion, keyboard accompaniment and a male vocalist making guttural noises. The song is a modern techno pop dance tune.", "data_idx": 1897, "number": 1, "label": "reggae"} +{"file_name": "test_03340.png", "caption": "The song is an instrumental. The tempo is medium with a strong bass line, steady drumming rhythm, triangle percussion, keyboard accompaniment and a male vocalist making guttural noises. The song is a modern techno pop dance tune.", "data_idx": 1897, "number": 2, "label": "reggae"} +{"file_name": "test_03341.png", "caption": "The song is an instrumental. The tempo is medium with a strong bass line, steady drumming rhythm, triangle percussion, keyboard accompaniment and a male vocalist making guttural noises. The song is a modern techno pop dance tune.", "data_idx": 1897, "number": 3, "label": "reggae"} +{"file_name": "test_03342.png", "caption": "This is a live recording of a keyboardist playing a twelve bar blues progression on an electric keyboard. The player adds embellishments between chord changes and the piece sounds groovy, bluesy and soulful.", "data_idx": 1900, "number": 0, "label": "classical"} +{"file_name": "test_03343.png", "caption": "This is a live recording of a keyboardist playing a twelve bar blues progression on an electric keyboard. The player adds embellishments between chord changes and the piece sounds groovy, bluesy and soulful.", "data_idx": 1900, "number": 1, "label": "classical"} +{"file_name": "test_03344.png", "caption": "This is a live recording of a keyboardist playing a twelve bar blues progression on an electric keyboard. The player adds embellishments between chord changes and the piece sounds groovy, bluesy and soulful.", "data_idx": 1900, "number": 2, "label": "classical"} +{"file_name": "test_03345.png", "caption": "This is a live recording of a keyboardist playing a twelve bar blues progression on an electric keyboard. The player adds embellishments between chord changes and the piece sounds groovy, bluesy and soulful.", "data_idx": 1900, "number": 3, "label": "classical"} +{"file_name": "test_03346.png", "caption": "The low quality recording features a mellow harp melody. The recording is noisy, in mono and it sounds soft and mellow.", "data_idx": 1901, "number": 0, "label": "classical"} +{"file_name": "test_03347.png", "caption": "The low quality recording features a mellow harp melody. The recording is noisy, in mono and it sounds soft and mellow.", "data_idx": 1901, "number": 1, "label": "classical"} +{"file_name": "test_03348.png", "caption": "A male singer sings this passionately with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, various percussion, percussive bass line, guitar rhythm and keyboard harmony . The song is passionate and romantic with a cool dance groove. The song has poor audio quality.", "data_idx": 1903, "number": 0, "label": "disco"} +{"file_name": "test_03349.png", "caption": "A male singer sings this passionately with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, various percussion, percussive bass line, guitar rhythm and keyboard harmony . The song is passionate and romantic with a cool dance groove. The song has poor audio quality.", "data_idx": 1903, "number": 1, "label": "disco"} +{"file_name": "test_03350.png", "caption": "A male singer sings this passionately with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, various percussion, percussive bass line, guitar rhythm and keyboard harmony . The song is passionate and romantic with a cool dance groove. The song has poor audio quality.", "data_idx": 1903, "number": 2, "label": "disco"} +{"file_name": "test_03351.png", "caption": "A male singer sings this passionately with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, various percussion, percussive bass line, guitar rhythm and keyboard harmony . The song is passionate and romantic with a cool dance groove. The song has poor audio quality.", "data_idx": 1903, "number": 3, "label": "disco"} +{"file_name": "test_03352.png", "caption": "The low quality recording features a musician practicing bassoon scale. In the background, there is a muffled male vocal. The recording is mono and noisy.", "data_idx": 1905, "number": 0, "label": "jazz"} +{"file_name": "test_03353.png", "caption": "The low quality recording features a musician practicing bassoon scale. In the background, there is a muffled male vocal. The recording is mono and noisy.", "data_idx": 1905, "number": 1, "label": "jazz"} +{"file_name": "test_03354.png", "caption": "The low quality recording features a musician practicing bassoon scale. In the background, there is a muffled male vocal. The recording is mono and noisy.", "data_idx": 1905, "number": 2, "label": "jazz"} +{"file_name": "test_03355.png", "caption": "The low quality recording features a musician practicing bassoon scale. In the background, there is a muffled male vocal. The recording is mono and noisy.", "data_idx": 1905, "number": 3, "label": "jazz"} +{"file_name": "test_03356.png", "caption": "This music is an electronic instrumental. The tempo is fast with synthesiser arrangements, electronic beats , Dj mixer and a repetitive vocal riff. The music is incessant, psychedelic, hypnotic, trippy and trance like with a dance groove. This music is Techno Pop/EDM.", "data_idx": 1909, "number": 0, "label": "reggae"} +{"file_name": "test_03357.png", "caption": "This music is an electronic instrumental. The tempo is fast with synthesiser arrangements, electronic beats , Dj mixer and a repetitive vocal riff. The music is incessant, psychedelic, hypnotic, trippy and trance like with a dance groove. This music is Techno Pop/EDM.", "data_idx": 1909, "number": 1, "label": "reggae"} +{"file_name": "test_03358.png", "caption": "This music is an electronic instrumental. The tempo is fast with synthesiser arrangements, electronic beats , Dj mixer and a repetitive vocal riff. The music is incessant, psychedelic, hypnotic, trippy and trance like with a dance groove. This music is Techno Pop/EDM.", "data_idx": 1909, "number": 2, "label": "reggae"} +{"file_name": "test_03359.png", "caption": "This music is an electronic instrumental. The tempo is fast with synthesiser arrangements, electronic beats , Dj mixer and a repetitive vocal riff. The music is incessant, psychedelic, hypnotic, trippy and trance like with a dance groove. This music is Techno Pop/EDM.", "data_idx": 1909, "number": 3, "label": "reggae"} +{"file_name": "test_03360.png", "caption": "The low quality recording features electric rhythm guitar chords being strummed. It sounds monotone, but groovy and the recording is noisy and in mono.", "data_idx": 1910, "number": 0, "label": "blues"} +{"file_name": "test_03361.png", "caption": "The low quality recording features electric rhythm guitar chords being strummed. It sounds monotone, but groovy and the recording is noisy and in mono.", "data_idx": 1910, "number": 1, "label": "blues"} +{"file_name": "test_03362.png", "caption": "The low quality recording features electric rhythm guitar chords being strummed. It sounds monotone, but groovy and the recording is noisy and in mono.", "data_idx": 1910, "number": 2, "label": "blues"} +{"file_name": "test_03363.png", "caption": "The low quality recording features electric rhythm guitar chords being strummed. It sounds monotone, but groovy and the recording is noisy and in mono.", "data_idx": 1910, "number": 3, "label": "blues"} +{"file_name": "test_03364.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, followed by shimmering hi hats and groovy synth bass. It sounds exciting and like something you would hear in clubs.", "data_idx": 1916, "number": 0, "label": "hiphop"} +{"file_name": "test_03365.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, followed by shimmering hi hats and groovy synth bass. It sounds exciting and like something you would hear in clubs.", "data_idx": 1916, "number": 1, "label": "hiphop"} +{"file_name": "test_03366.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, followed by shimmering hi hats and groovy synth bass. It sounds exciting and like something you would hear in clubs.", "data_idx": 1916, "number": 2, "label": "hiphop"} +{"file_name": "test_03367.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, followed by shimmering hi hats and groovy synth bass. It sounds exciting and like something you would hear in clubs.", "data_idx": 1916, "number": 3, "label": "hiphop"} +{"file_name": "test_03368.png", "caption": "This audio contains several male voices singing an a acapella song as a choir. The voices go from the higher mids to the higher register. This song may be playing live in a church.", "data_idx": 1917, "number": 0, "label": "classical"} +{"file_name": "test_03369.png", "caption": "This audio contains several male voices singing an a acapella song as a choir. The voices go from the higher mids to the higher register. This song may be playing live in a church.", "data_idx": 1917, "number": 1, "label": "classical"} +{"file_name": "test_03370.png", "caption": "This audio contains a digital drum playing a four on the flor groove with a kick on every beat and building up kicks to doubletime and triplets. Synth bass sounds and synth sounds in the midrange are playing arpeggiated melodies. This song may be playing with headphones while playing video-games.", "data_idx": 1918, "number": 0, "label": "hiphop"} +{"file_name": "test_03371.png", "caption": "This audio contains a digital drum playing a four on the flor groove with a kick on every beat and building up kicks to doubletime and triplets. Synth bass sounds and synth sounds in the midrange are playing arpeggiated melodies. This song may be playing with headphones while playing video-games.", "data_idx": 1918, "number": 1, "label": "hiphop"} +{"file_name": "test_03372.png", "caption": "This audio contains a digital drum playing a four on the flor groove with a kick on every beat and building up kicks to doubletime and triplets. Synth bass sounds and synth sounds in the midrange are playing arpeggiated melodies. This song may be playing with headphones while playing video-games.", "data_idx": 1918, "number": 2, "label": "hiphop"} +{"file_name": "test_03373.png", "caption": "This audio contains a digital drum playing a four on the flor groove with a kick on every beat and building up kicks to doubletime and triplets. Synth bass sounds and synth sounds in the midrange are playing arpeggiated melodies. This song may be playing with headphones while playing video-games.", "data_idx": 1918, "number": 3, "label": "hiphop"} +{"file_name": "test_03374.png", "caption": "This music is a ukelele instrumental. The tempo is medium with the sound of a bee buzzing and an animated sound followed by a dialogue between two men in a foreign language. The music is mellow, soft and simple like it's meant for children.", "data_idx": 1919, "number": 0, "label": "hiphop"} +{"file_name": "test_03375.png", "caption": "This music is a ukelele instrumental. The tempo is medium with the sound of a bee buzzing and an animated sound followed by a dialogue between two men in a foreign language. The music is mellow, soft and simple like it's meant for children.", "data_idx": 1919, "number": 1, "label": "hiphop"} +{"file_name": "test_03376.png", "caption": "This music is a ukelele instrumental. The tempo is medium with the sound of a bee buzzing and an animated sound followed by a dialogue between two men in a foreign language. The music is mellow, soft and simple like it's meant for children.", "data_idx": 1919, "number": 2, "label": "hiphop"} +{"file_name": "test_03377.png", "caption": "This music is a ukelele instrumental. The tempo is medium with the sound of a bee buzzing and an animated sound followed by a dialogue between two men in a foreign language. The music is mellow, soft and simple like it's meant for children.", "data_idx": 1919, "number": 3, "label": "hiphop"} +{"file_name": "test_03378.png", "caption": "This music is instrumental. The tempo is fast with a spirited small pipe harmony with rhythmic foot tapping. The music is upbeat, engaging, sharp, humming, haunting, droning and cheerful. This a live performance with ambient sounds of people talking and static as this is an amateur recording.", "data_idx": 1920, "number": 0, "label": "classical"} +{"file_name": "test_03379.png", "caption": "This music is instrumental. The tempo is fast with a spirited small pipe harmony with rhythmic foot tapping. The music is upbeat, engaging, sharp, humming, haunting, droning and cheerful. This a live performance with ambient sounds of people talking and static as this is an amateur recording.", "data_idx": 1920, "number": 1, "label": "classical"} +{"file_name": "test_03380.png", "caption": "This music is instrumental. The tempo is fast with a spirited small pipe harmony with rhythmic foot tapping. The music is upbeat, engaging, sharp, humming, haunting, droning and cheerful. This a live performance with ambient sounds of people talking and static as this is an amateur recording.", "data_idx": 1920, "number": 2, "label": "classical"} +{"file_name": "test_03381.png", "caption": "This music is instrumental. The tempo is fast with a spirited small pipe harmony with rhythmic foot tapping. The music is upbeat, engaging, sharp, humming, haunting, droning and cheerful. This a live performance with ambient sounds of people talking and static as this is an amateur recording.", "data_idx": 1920, "number": 3, "label": "classical"} +{"file_name": "test_03382.png", "caption": "This classical song features the main melody played on a harpsichord. The mood of this song is happy. This song does not have any percussion or any other instruments. There are no voices in this song. This song can be played for aristocracy.", "data_idx": 1923, "number": 0, "label": "classical"} +{"file_name": "test_03383.png", "caption": "This classical song features the main melody played on a harpsichord. The mood of this song is happy. This song does not have any percussion or any other instruments. There are no voices in this song. This song can be played for aristocracy.", "data_idx": 1923, "number": 1, "label": "classical"} +{"file_name": "test_03384.png", "caption": "This classical song features the main melody played on a harpsichord. The mood of this song is happy. This song does not have any percussion or any other instruments. There are no voices in this song. This song can be played for aristocracy.", "data_idx": 1923, "number": 2, "label": "classical"} +{"file_name": "test_03385.png", "caption": "This classical song features the main melody played on a harpsichord. The mood of this song is happy. This song does not have any percussion or any other instruments. There are no voices in this song. This song can be played for aristocracy.", "data_idx": 1923, "number": 3, "label": "classical"} +{"file_name": "test_03386.png", "caption": "This is a hard rock music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the overdriven electric guitar with the bass guitar playing in the background. The rhythm is being played by the acoustic drums. The atmosphere is energetic. There is a vintage sound. This piece can be played in the background at a rock bar.", "data_idx": 1925, "number": 0, "label": "metal"} +{"file_name": "test_03387.png", "caption": "This is a hard rock music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the overdriven electric guitar with the bass guitar playing in the background. The rhythm is being played by the acoustic drums. The atmosphere is energetic. There is a vintage sound. This piece can be played in the background at a rock bar.", "data_idx": 1925, "number": 1, "label": "metal"} +{"file_name": "test_03388.png", "caption": "This is a hard rock music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the overdriven electric guitar with the bass guitar playing in the background. The rhythm is being played by the acoustic drums. The atmosphere is energetic. There is a vintage sound. This piece can be played in the background at a rock bar.", "data_idx": 1925, "number": 2, "label": "metal"} +{"file_name": "test_03389.png", "caption": "This is a hard rock music piece. There is a male vocalist singing melodically in the lead. The main tune is being played by the overdriven electric guitar with the bass guitar playing in the background. The rhythm is being played by the acoustic drums. The atmosphere is energetic. There is a vintage sound. This piece can be played in the background at a rock bar.", "data_idx": 1925, "number": 3, "label": "metal"} +{"file_name": "test_03390.png", "caption": "This song features a marimba playing a melody on the higher register. The marimba plays a repetitive melody. This is accompanied by a clarinet and flute playing a dissonant chord together. This song is relaxing. It has a dreamy sound. This song can be played at the beginning of a dream sequence in a children's animation movie.", "data_idx": 1926, "number": 0, "label": "classical"} +{"file_name": "test_03391.png", "caption": "This song features a marimba playing a melody on the higher register. The marimba plays a repetitive melody. This is accompanied by a clarinet and flute playing a dissonant chord together. This song is relaxing. It has a dreamy sound. This song can be played at the beginning of a dream sequence in a children's animation movie.", "data_idx": 1926, "number": 1, "label": "classical"} +{"file_name": "test_03392.png", "caption": "This song features a marimba playing a melody on the higher register. The marimba plays a repetitive melody. This is accompanied by a clarinet and flute playing a dissonant chord together. This song is relaxing. It has a dreamy sound. This song can be played at the beginning of a dream sequence in a children's animation movie.", "data_idx": 1926, "number": 2, "label": "classical"} +{"file_name": "test_03393.png", "caption": "This song features a marimba playing a melody on the higher register. The marimba plays a repetitive melody. This is accompanied by a clarinet and flute playing a dissonant chord together. This song is relaxing. It has a dreamy sound. This song can be played at the beginning of a dream sequence in a children's animation movie.", "data_idx": 1926, "number": 3, "label": "classical"} +{"file_name": "test_03394.png", "caption": "The clip has no melodic instruments. It is mainly built of a complex persuasive rhythm played on the drums, and a repeated phrase by a male speaker in a raspy vocal. In the background, we have a soulful male voice chanting the same phrase repeatedly, and a female screaming voice once roughly every two bars.", "data_idx": 1928, "number": 0, "label": "reggae"} +{"file_name": "test_03395.png", "caption": "The clip has no melodic instruments. It is mainly built of a complex persuasive rhythm played on the drums, and a repeated phrase by a male speaker in a raspy vocal. In the background, we have a soulful male voice chanting the same phrase repeatedly, and a female screaming voice once roughly every two bars.", "data_idx": 1928, "number": 1, "label": "reggae"} +{"file_name": "test_03396.png", "caption": "The clip has no melodic instruments. It is mainly built of a complex persuasive rhythm played on the drums, and a repeated phrase by a male speaker in a raspy vocal. In the background, we have a soulful male voice chanting the same phrase repeatedly, and a female screaming voice once roughly every two bars.", "data_idx": 1928, "number": 2, "label": "reggae"} +{"file_name": "test_03397.png", "caption": "The clip has no melodic instruments. It is mainly built of a complex persuasive rhythm played on the drums, and a repeated phrase by a male speaker in a raspy vocal. In the background, we have a soulful male voice chanting the same phrase repeatedly, and a female screaming voice once roughly every two bars.", "data_idx": 1928, "number": 3, "label": "reggae"} +{"file_name": "test_03398.png", "caption": "The recording features a brass quartet playing in a reverberant space. It consists of synchronized trombone melody and it sounds passionate, epic and powerful.", "data_idx": 1931, "number": 0, "label": "hiphop"} +{"file_name": "test_03399.png", "caption": "The recording features a brass quartet playing in a reverberant space. It consists of synchronized trombone melody and it sounds passionate, epic and powerful.", "data_idx": 1931, "number": 1, "label": "hiphop"} +{"file_name": "test_03400.png", "caption": "The recording features a brass quartet playing in a reverberant space. It consists of synchronized trombone melody and it sounds passionate, epic and powerful.", "data_idx": 1931, "number": 2, "label": "hiphop"} +{"file_name": "test_03401.png", "caption": "The recording features a brass quartet playing in a reverberant space. It consists of synchronized trombone melody and it sounds passionate, epic and powerful.", "data_idx": 1931, "number": 3, "label": "hiphop"} +{"file_name": "test_03402.png", "caption": "This music is instrumental. The tempo is medium with a short,electric guitar riff and a male voice doing an introduction to a demo. The video is a tutorial/review of an electric guitar.", "data_idx": 1932, "number": 0, "label": "blues"} +{"file_name": "test_03403.png", "caption": "This music is instrumental. The tempo is medium with a short,electric guitar riff and a male voice doing an introduction to a demo. The video is a tutorial/review of an electric guitar.", "data_idx": 1932, "number": 1, "label": "blues"} +{"file_name": "test_03404.png", "caption": "This music is instrumental. The tempo is medium with a short,electric guitar riff and a male voice doing an introduction to a demo. The video is a tutorial/review of an electric guitar.", "data_idx": 1932, "number": 2, "label": "blues"} +{"file_name": "test_03405.png", "caption": "This music is instrumental. The tempo is medium with a short,electric guitar riff and a male voice doing an introduction to a demo. The video is a tutorial/review of an electric guitar.", "data_idx": 1932, "number": 3, "label": "blues"} +{"file_name": "test_03406.png", "caption": "The low quality recording features a groovy piano melody, played over, groovy bass guitar, punchy kick and snare hits, shimmering hi hats, shimmering crash cymbal and short electric guitar lick. It sounds energetic, fun, happy, joyful and like an in-game video game sound.", "data_idx": 1933, "number": 0, "label": "blues"} +{"file_name": "test_03407.png", "caption": "The low quality recording features a groovy piano melody, played over, groovy bass guitar, punchy kick and snare hits, shimmering hi hats, shimmering crash cymbal and short electric guitar lick. It sounds energetic, fun, happy, joyful and like an in-game video game sound.", "data_idx": 1933, "number": 1, "label": "blues"} +{"file_name": "test_03408.png", "caption": "The low quality recording features a groovy piano melody, played over, groovy bass guitar, punchy kick and snare hits, shimmering hi hats, shimmering crash cymbal and short electric guitar lick. It sounds energetic, fun, happy, joyful and like an in-game video game sound.", "data_idx": 1933, "number": 2, "label": "blues"} +{"file_name": "test_03409.png", "caption": "The low quality recording features a groovy piano melody, played over, groovy bass guitar, punchy kick and snare hits, shimmering hi hats, shimmering crash cymbal and short electric guitar lick. It sounds energetic, fun, happy, joyful and like an in-game video game sound.", "data_idx": 1933, "number": 3, "label": "blues"} +{"file_name": "test_03410.png", "caption": "Tablas and accordion lead a coed group chant with a male lead singer. Sounds spiritual.", "data_idx": 1938, "number": 0, "label": "rock"} +{"file_name": "test_03411.png", "caption": "Tablas and accordion lead a coed group chant with a male lead singer. Sounds spiritual.", "data_idx": 1938, "number": 1, "label": "rock"} +{"file_name": "test_03412.png", "caption": "Tablas and accordion lead a coed group chant with a male lead singer. Sounds spiritual.", "data_idx": 1938, "number": 2, "label": "rock"} +{"file_name": "test_03413.png", "caption": "Tablas and accordion lead a coed group chant with a male lead singer. Sounds spiritual.", "data_idx": 1938, "number": 3, "label": "rock"} +{"file_name": "test_03414.png", "caption": "This is a kids music piece. There are child vocals singing. There are idiophone instruments that sound much like a xylophone and a music box. There is a simple bass line in the background. The atmosphere is cheerful. This piece could be playing in the background at a theme park, especially for a carousel.", "data_idx": 1939, "number": 0, "label": "rock"} +{"file_name": "test_03415.png", "caption": "This is a kids music piece. There are child vocals singing. There are idiophone instruments that sound much like a xylophone and a music box. There is a simple bass line in the background. The atmosphere is cheerful. This piece could be playing in the background at a theme park, especially for a carousel.", "data_idx": 1939, "number": 1, "label": "rock"} +{"file_name": "test_03416.png", "caption": "This is a kids music piece. There are child vocals singing. There are idiophone instruments that sound much like a xylophone and a music box. There is a simple bass line in the background. The atmosphere is cheerful. This piece could be playing in the background at a theme park, especially for a carousel.", "data_idx": 1939, "number": 2, "label": "rock"} +{"file_name": "test_03417.png", "caption": "This is a kids music piece. There are child vocals singing. There are idiophone instruments that sound much like a xylophone and a music box. There is a simple bass line in the background. The atmosphere is cheerful. This piece could be playing in the background at a theme park, especially for a carousel.", "data_idx": 1939, "number": 3, "label": "rock"} +{"file_name": "test_03418.png", "caption": "A female vocalist sings this romantic love song. The tempo is slow with a melodic violin harmony, groovy bass line, rhythmic acoustic guitar and keyboard accompaniment. The song is soft, mellow, romantic, emotional, sentimental, melancholic and gentle. This. The song is a cover of a Classic Elvis Presley song.", "data_idx": 1941, "number": 0, "label": "classical"} +{"file_name": "test_03419.png", "caption": "A female vocalist sings this romantic love song. The tempo is slow with a melodic violin harmony, groovy bass line, rhythmic acoustic guitar and keyboard accompaniment. The song is soft, mellow, romantic, emotional, sentimental, melancholic and gentle. This. The song is a cover of a Classic Elvis Presley song.", "data_idx": 1941, "number": 1, "label": "classical"} +{"file_name": "test_03420.png", "caption": "A female vocalist sings this romantic love song. The tempo is slow with a melodic violin harmony, groovy bass line, rhythmic acoustic guitar and keyboard accompaniment. The song is soft, mellow, romantic, emotional, sentimental, melancholic and gentle. This. The song is a cover of a Classic Elvis Presley song.", "data_idx": 1941, "number": 2, "label": "classical"} +{"file_name": "test_03421.png", "caption": "A female vocalist sings this romantic love song. The tempo is slow with a melodic violin harmony, groovy bass line, rhythmic acoustic guitar and keyboard accompaniment. The song is soft, mellow, romantic, emotional, sentimental, melancholic and gentle. This. The song is a cover of a Classic Elvis Presley song.", "data_idx": 1941, "number": 3, "label": "classical"} +{"file_name": "test_03422.png", "caption": "A male singer sings this cool and animated melody with backup singers in vocal harmony. The song is medium tempo with steady drumming rhythm, groovy bass line, organ accompaniment and horns playing. The song is entertaining and cheerful. The audio quality is bad.", "data_idx": 1944, "number": 0, "label": "hiphop"} +{"file_name": "test_03423.png", "caption": "A male singer sings this cool and animated melody with backup singers in vocal harmony. The song is medium tempo with steady drumming rhythm, groovy bass line, organ accompaniment and horns playing. The song is entertaining and cheerful. The audio quality is bad.", "data_idx": 1944, "number": 1, "label": "hiphop"} +{"file_name": "test_03424.png", "caption": "A male singer sings this cool and animated melody with backup singers in vocal harmony. The song is medium tempo with steady drumming rhythm, groovy bass line, organ accompaniment and horns playing. The song is entertaining and cheerful. The audio quality is bad.", "data_idx": 1944, "number": 2, "label": "hiphop"} +{"file_name": "test_03425.png", "caption": "A male singer sings this cool and animated melody with backup singers in vocal harmony. The song is medium tempo with steady drumming rhythm, groovy bass line, organ accompaniment and horns playing. The song is entertaining and cheerful. The audio quality is bad.", "data_idx": 1944, "number": 3, "label": "hiphop"} +{"file_name": "test_03426.png", "caption": "The low quality recording features a flat male vocal talking and playing a low pitched harmonica. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 1946, "number": 0, "label": "hiphop"} +{"file_name": "test_03427.png", "caption": "The low quality recording features a flat male vocal talking and playing a low pitched harmonica. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 1946, "number": 1, "label": "hiphop"} +{"file_name": "test_03428.png", "caption": "The low quality recording features a flat male vocal talking and playing a low pitched harmonica. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 1946, "number": 2, "label": "hiphop"} +{"file_name": "test_03429.png", "caption": "The low quality recording features a flat male vocal talking and playing a low pitched harmonica. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 1946, "number": 3, "label": "hiphop"} +{"file_name": "test_03430.png", "caption": "This song starts off with 2 heartbeats. The sound of a knife being honed is played. After this, we hear a short blasting sound. This is followed by a fast paced percussion starting off with a roll and then playing -two strokes on a hi-hat and one stroke on the snare drum. A male voice speaks in a narrative voice with a distortion guitar playing power chords in the background. The rest of the instruments continue playing in the background while the voice is narrating.", "data_idx": 1947, "number": 0, "label": "hiphop"} +{"file_name": "test_03431.png", "caption": "This song starts off with 2 heartbeats. The sound of a knife being honed is played. After this, we hear a short blasting sound. This is followed by a fast paced percussion starting off with a roll and then playing -two strokes on a hi-hat and one stroke on the snare drum. A male voice speaks in a narrative voice with a distortion guitar playing power chords in the background. The rest of the instruments continue playing in the background while the voice is narrating.", "data_idx": 1947, "number": 1, "label": "hiphop"} +{"file_name": "test_03432.png", "caption": "This song features a drum pad being played. This is following a pattern of fast strokes in a rhythmic pattern. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 1950, "number": 0, "label": "reggae"} +{"file_name": "test_03433.png", "caption": "This song features a drum pad being played. This is following a pattern of fast strokes in a rhythmic pattern. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 1950, "number": 1, "label": "reggae"} +{"file_name": "test_03434.png", "caption": "This song features a drum pad being played. This is following a pattern of fast strokes in a rhythmic pattern. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 1950, "number": 2, "label": "reggae"} +{"file_name": "test_03435.png", "caption": "This song features a drum pad being played. This is following a pattern of fast strokes in a rhythmic pattern. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 1950, "number": 3, "label": "reggae"} +{"file_name": "test_03436.png", "caption": "In this clip, a wooden percussion instrument is being played in a rhythmic manner. The instrument has a hollow sound, which also creates a partially melodic tone amidst the percussion.", "data_idx": 1951, "number": 0, "label": "hiphop"} +{"file_name": "test_03437.png", "caption": "In this clip, a wooden percussion instrument is being played in a rhythmic manner. The instrument has a hollow sound, which also creates a partially melodic tone amidst the percussion.", "data_idx": 1951, "number": 1, "label": "hiphop"} +{"file_name": "test_03438.png", "caption": "In this clip, a wooden percussion instrument is being played in a rhythmic manner. The instrument has a hollow sound, which also creates a partially melodic tone amidst the percussion.", "data_idx": 1951, "number": 2, "label": "hiphop"} +{"file_name": "test_03439.png", "caption": "In this clip, a wooden percussion instrument is being played in a rhythmic manner. The instrument has a hollow sound, which also creates a partially melodic tone amidst the percussion.", "data_idx": 1951, "number": 3, "label": "hiphop"} +{"file_name": "test_03440.png", "caption": "The low quality recording features a wide brass melody played over mellow piano melody. The recording is very noisy and it sounds like it was recorded in a large room.", "data_idx": 1953, "number": 0, "label": "classical"} +{"file_name": "test_03441.png", "caption": "The low quality recording features a wide brass melody played over mellow piano melody. The recording is very noisy and it sounds like it was recorded in a large room.", "data_idx": 1953, "number": 1, "label": "classical"} +{"file_name": "test_03442.png", "caption": "The low quality recording features a wide brass melody played over mellow piano melody. The recording is very noisy and it sounds like it was recorded in a large room.", "data_idx": 1953, "number": 2, "label": "classical"} +{"file_name": "test_03443.png", "caption": "The low quality recording features a wide brass melody played over mellow piano melody. The recording is very noisy and it sounds like it was recorded in a large room.", "data_idx": 1953, "number": 3, "label": "classical"} +{"file_name": "test_03444.png", "caption": "This is a French opera/opera-ballet music piece. There is no singer in this piece. The only instrument that is being played is a harpsichord. The sound and the tunes are reminiscent of the medieval era. There is a theatrical feel to the piece. This piece could be used in the soundtrack of a historical drama that takes place in the medieval era. It could also be used as an accompaniment piece for a theater play or a ballet dance performance.", "data_idx": 1956, "number": 0, "label": "classical"} +{"file_name": "test_03445.png", "caption": "This is a French opera/opera-ballet music piece. There is no singer in this piece. The only instrument that is being played is a harpsichord. The sound and the tunes are reminiscent of the medieval era. There is a theatrical feel to the piece. This piece could be used in the soundtrack of a historical drama that takes place in the medieval era. It could also be used as an accompaniment piece for a theater play or a ballet dance performance.", "data_idx": 1956, "number": 1, "label": "classical"} +{"file_name": "test_03446.png", "caption": "This is a French opera/opera-ballet music piece. There is no singer in this piece. The only instrument that is being played is a harpsichord. The sound and the tunes are reminiscent of the medieval era. There is a theatrical feel to the piece. This piece could be used in the soundtrack of a historical drama that takes place in the medieval era. It could also be used as an accompaniment piece for a theater play or a ballet dance performance.", "data_idx": 1956, "number": 2, "label": "classical"} +{"file_name": "test_03447.png", "caption": "This is a French opera/opera-ballet music piece. There is no singer in this piece. The only instrument that is being played is a harpsichord. The sound and the tunes are reminiscent of the medieval era. There is a theatrical feel to the piece. This piece could be used in the soundtrack of a historical drama that takes place in the medieval era. It could also be used as an accompaniment piece for a theater play or a ballet dance performance.", "data_idx": 1956, "number": 3, "label": "classical"} +{"file_name": "test_03448.png", "caption": "A DJ plays a cool groove with some female vocals. The song is medium tempo with a steady drumming rhythm, scratch disc percussions, and percussive bass line. The song is exciting and groovy. The audio quality is average.", "data_idx": 1959, "number": 0, "label": "hiphop"} +{"file_name": "test_03449.png", "caption": "A DJ plays a cool groove with some female vocals. The song is medium tempo with a steady drumming rhythm, scratch disc percussions, and percussive bass line. The song is exciting and groovy. The audio quality is average.", "data_idx": 1959, "number": 1, "label": "hiphop"} +{"file_name": "test_03450.png", "caption": "This is an instrumental rendition of a Christian gospel music piece. There is a melodeon and a piano accordion playing the tune. The atmosphere is festive and cheerful. This piece could be playing in the background at a charity event.", "data_idx": 1962, "number": 0, "label": "classical"} +{"file_name": "test_03451.png", "caption": "This is an instrumental rendition of a Christian gospel music piece. There is a melodeon and a piano accordion playing the tune. The atmosphere is festive and cheerful. This piece could be playing in the background at a charity event.", "data_idx": 1962, "number": 1, "label": "classical"} +{"file_name": "test_03452.png", "caption": "This is an instrumental rendition of a Christian gospel music piece. There is a melodeon and a piano accordion playing the tune. The atmosphere is festive and cheerful. This piece could be playing in the background at a charity event.", "data_idx": 1962, "number": 2, "label": "classical"} +{"file_name": "test_03453.png", "caption": "This is an instrumental rendition of a Christian gospel music piece. There is a melodeon and a piano accordion playing the tune. The atmosphere is festive and cheerful. This piece could be playing in the background at a charity event.", "data_idx": 1962, "number": 3, "label": "classical"} +{"file_name": "test_03454.png", "caption": "This song contains a digital drum playing a techno groove with an overdrive kick and snare.A synth lead sound is playing a slightly offkey melody along with some reversed digital sounds converting into a high pitch note. This song may be playing in a techno club.", "data_idx": 1964, "number": 0, "label": "reggae"} +{"file_name": "test_03455.png", "caption": "This song contains a digital drum playing a techno groove with an overdrive kick and snare.A synth lead sound is playing a slightly offkey melody along with some reversed digital sounds converting into a high pitch note. This song may be playing in a techno club.", "data_idx": 1964, "number": 1, "label": "reggae"} +{"file_name": "test_03456.png", "caption": "This song contains a digital drum playing a techno groove with an overdrive kick and snare.A synth lead sound is playing a slightly offkey melody along with some reversed digital sounds converting into a high pitch note. This song may be playing in a techno club.", "data_idx": 1964, "number": 2, "label": "reggae"} +{"file_name": "test_03457.png", "caption": "This song contains a digital drum playing a techno groove with an overdrive kick and snare.A synth lead sound is playing a slightly offkey melody along with some reversed digital sounds converting into a high pitch note. This song may be playing in a techno club.", "data_idx": 1964, "number": 3, "label": "reggae"} +{"file_name": "test_03458.png", "caption": "This is the live performance of a Huayno folk music piece which belongs to the Andean region. There is a female vocalist singing at a high-pitch, almost at a screeching range. The tune is being played by a violin and an Andean/Peruvian harp. The atmosphere is eccentric. This piece could be playing from a radio in a movie taking place in a mountainous Latin American village.", "data_idx": 1967, "number": 0, "label": "classical"} +{"file_name": "test_03459.png", "caption": "This is the live performance of a Huayno folk music piece which belongs to the Andean region. There is a female vocalist singing at a high-pitch, almost at a screeching range. The tune is being played by a violin and an Andean/Peruvian harp. The atmosphere is eccentric. This piece could be playing from a radio in a movie taking place in a mountainous Latin American village.", "data_idx": 1967, "number": 1, "label": "classical"} +{"file_name": "test_03460.png", "caption": "This is the live performance of a Huayno folk music piece which belongs to the Andean region. There is a female vocalist singing at a high-pitch, almost at a screeching range. The tune is being played by a violin and an Andean/Peruvian harp. The atmosphere is eccentric. This piece could be playing from a radio in a movie taking place in a mountainous Latin American village.", "data_idx": 1967, "number": 2, "label": "classical"} +{"file_name": "test_03461.png", "caption": "This is the live performance of a Huayno folk music piece which belongs to the Andean region. There is a female vocalist singing at a high-pitch, almost at a screeching range. The tune is being played by a violin and an Andean/Peruvian harp. The atmosphere is eccentric. This piece could be playing from a radio in a movie taking place in a mountainous Latin American village.", "data_idx": 1967, "number": 3, "label": "classical"} +{"file_name": "test_03462.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing female vocals, singing over simple bass guitar, punchy snare, soft kick hits, acoustic rhythm guitar, groovy piano melody and shimmering hi-hats. It sounds emotional.", "data_idx": 1971, "number": 0, "label": "rock"} +{"file_name": "test_03463.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing female vocals, singing over simple bass guitar, punchy snare, soft kick hits, acoustic rhythm guitar, groovy piano melody and shimmering hi-hats. It sounds emotional.", "data_idx": 1971, "number": 1, "label": "rock"} +{"file_name": "test_03464.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing female vocals, singing over simple bass guitar, punchy snare, soft kick hits, acoustic rhythm guitar, groovy piano melody and shimmering hi-hats. It sounds emotional.", "data_idx": 1971, "number": 2, "label": "rock"} +{"file_name": "test_03465.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing female vocals, singing over simple bass guitar, punchy snare, soft kick hits, acoustic rhythm guitar, groovy piano melody and shimmering hi-hats. It sounds emotional.", "data_idx": 1971, "number": 3, "label": "rock"} +{"file_name": "test_03466.png", "caption": "The song is an instrumental. The tempo is fast with three percussionists performing a rhythmic groove with sounds breathed by clapping body parts and tapping the floor. The song is energetic and highly engaging. The audio quality is average and performed live.", "data_idx": 1972, "number": 0, "label": "disco"} +{"file_name": "test_03467.png", "caption": "The song is an instrumental. The tempo is fast with three percussionists performing a rhythmic groove with sounds breathed by clapping body parts and tapping the floor. The song is energetic and highly engaging. The audio quality is average and performed live.", "data_idx": 1972, "number": 1, "label": "disco"} +{"file_name": "test_03468.png", "caption": "The song is an instrumental. The tempo is fast with three percussionists performing a rhythmic groove with sounds breathed by clapping body parts and tapping the floor. The song is energetic and highly engaging. The audio quality is average and performed live.", "data_idx": 1972, "number": 2, "label": "disco"} +{"file_name": "test_03469.png", "caption": "The song is an instrumental. The tempo is fast with three percussionists performing a rhythmic groove with sounds breathed by clapping body parts and tapping the floor. The song is energetic and highly engaging. The audio quality is average and performed live.", "data_idx": 1972, "number": 3, "label": "disco"} +{"file_name": "test_03470.png", "caption": "The low quality recording features a blues song that consists of a passionate fruity male vocal singing over harmonica licks, acoustic rhythm guitar, groovy bass and steel guitar melody. It sounds passionate and soulful. The recording is noisy and since the bass sound is leaning towards the right channel of the stereo image - the stereo image is unbalanced.", "data_idx": 1976, "number": 0, "label": "rock"} +{"file_name": "test_03471.png", "caption": "The low quality recording features a blues song that consists of a passionate fruity male vocal singing over harmonica licks, acoustic rhythm guitar, groovy bass and steel guitar melody. It sounds passionate and soulful. The recording is noisy and since the bass sound is leaning towards the right channel of the stereo image - the stereo image is unbalanced.", "data_idx": 1976, "number": 1, "label": "rock"} +{"file_name": "test_03472.png", "caption": "The low quality recording features a blues song that consists of a passionate fruity male vocal singing over harmonica licks, acoustic rhythm guitar, groovy bass and steel guitar melody. It sounds passionate and soulful. The recording is noisy and since the bass sound is leaning towards the right channel of the stereo image - the stereo image is unbalanced.", "data_idx": 1976, "number": 2, "label": "rock"} +{"file_name": "test_03473.png", "caption": "The low quality recording features a blues song that consists of a passionate fruity male vocal singing over harmonica licks, acoustic rhythm guitar, groovy bass and steel guitar melody. It sounds passionate and soulful. The recording is noisy and since the bass sound is leaning towards the right channel of the stereo image - the stereo image is unbalanced.", "data_idx": 1976, "number": 3, "label": "rock"} +{"file_name": "test_03474.png", "caption": "The low quality recording features a harpsichord melody being played. There are some keyboard tapping sounds in the right channel of the stereo image. The whole sound is leaning towards the right channel, making the stereo image unbalanced. The recording is noisy and it sounds passionate and emotional.", "data_idx": 1978, "number": 0, "label": "classical"} +{"file_name": "test_03475.png", "caption": "The low quality recording features a harpsichord melody being played. There are some keyboard tapping sounds in the right channel of the stereo image. The whole sound is leaning towards the right channel, making the stereo image unbalanced. The recording is noisy and it sounds passionate and emotional.", "data_idx": 1978, "number": 1, "label": "classical"} +{"file_name": "test_03476.png", "caption": "The low quality recording features a harpsichord melody being played. There are some keyboard tapping sounds in the right channel of the stereo image. The whole sound is leaning towards the right channel, making the stereo image unbalanced. The recording is noisy and it sounds passionate and emotional.", "data_idx": 1978, "number": 2, "label": "classical"} +{"file_name": "test_03477.png", "caption": "The low quality recording features a harpsichord melody being played. There are some keyboard tapping sounds in the right channel of the stereo image. The whole sound is leaning towards the right channel, making the stereo image unbalanced. The recording is noisy and it sounds passionate and emotional.", "data_idx": 1978, "number": 3, "label": "classical"} +{"file_name": "test_03478.png", "caption": "This recording contains a male voice talking and then playing a blues riff on a clean e-guitar. This song may be playing as part of a video tutorial.", "data_idx": 1980, "number": 0, "label": "blues"} +{"file_name": "test_03479.png", "caption": "This recording contains a male voice talking and then playing a blues riff on a clean e-guitar. This song may be playing as part of a video tutorial.", "data_idx": 1980, "number": 1, "label": "blues"} +{"file_name": "test_03480.png", "caption": "This recording contains a male voice talking and then playing a blues riff on a clean e-guitar. This song may be playing as part of a video tutorial.", "data_idx": 1980, "number": 2, "label": "blues"} +{"file_name": "test_03481.png", "caption": "This recording contains a male voice talking and then playing a blues riff on a clean e-guitar. This song may be playing as part of a video tutorial.", "data_idx": 1980, "number": 3, "label": "blues"} +{"file_name": "test_03482.png", "caption": "Funk music featuring a bass guitar, synth melody, synth counter melody and group vocals, with a snare on the backbeat.", "data_idx": 1982, "number": 0, "label": "disco"} +{"file_name": "test_03483.png", "caption": "Funk music featuring a bass guitar, synth melody, synth counter melody and group vocals, with a snare on the backbeat.", "data_idx": 1982, "number": 1, "label": "disco"} +{"file_name": "test_03484.png", "caption": "Funk music featuring a bass guitar, synth melody, synth counter melody and group vocals, with a snare on the backbeat.", "data_idx": 1982, "number": 2, "label": "disco"} +{"file_name": "test_03485.png", "caption": "Funk music featuring a bass guitar, synth melody, synth counter melody and group vocals, with a snare on the backbeat.", "data_idx": 1982, "number": 3, "label": "disco"} +{"file_name": "test_03486.png", "caption": "Someone is playing an acoustic drum groove with a snare that uses reverb. An e-bass is playing a sub bassline. An e-guitar is strumming short rhythmic chords on the backbeat giving this music its reggae vibe. A keyboard is playing a sound in the mid range and another keyboard responds with a countermelody playing a melody using a brass sound. In the background you can hear people talking. This song may be playing live at a festival.", "data_idx": 1983, "number": 0, "label": "reggae"} +{"file_name": "test_03487.png", "caption": "Someone is playing an acoustic drum groove with a snare that uses reverb. An e-bass is playing a sub bassline. An e-guitar is strumming short rhythmic chords on the backbeat giving this music its reggae vibe. A keyboard is playing a sound in the mid range and another keyboard responds with a countermelody playing a melody using a brass sound. In the background you can hear people talking. This song may be playing live at a festival.", "data_idx": 1983, "number": 1, "label": "reggae"} +{"file_name": "test_03488.png", "caption": "Someone is playing an acoustic drum groove with a snare that uses reverb. An e-bass is playing a sub bassline. An e-guitar is strumming short rhythmic chords on the backbeat giving this music its reggae vibe. A keyboard is playing a sound in the mid range and another keyboard responds with a countermelody playing a melody using a brass sound. In the background you can hear people talking. This song may be playing live at a festival.", "data_idx": 1983, "number": 2, "label": "reggae"} +{"file_name": "test_03489.png", "caption": "Someone is playing an acoustic drum groove with a snare that uses reverb. An e-bass is playing a sub bassline. An e-guitar is strumming short rhythmic chords on the backbeat giving this music its reggae vibe. A keyboard is playing a sound in the mid range and another keyboard responds with a countermelody playing a melody using a brass sound. In the background you can hear people talking. This song may be playing live at a festival.", "data_idx": 1983, "number": 3, "label": "reggae"} +{"file_name": "test_03490.png", "caption": "This folk song features a kora being played in waltz time. This starts off with the strings being plucked in waltz time followed by a descending run. The waltz plucking is played twice more followed by another descending run. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be sampled and played in a hip-hop song.", "data_idx": 1986, "number": 0, "label": "blues"} +{"file_name": "test_03491.png", "caption": "This folk song features a kora being played in waltz time. This starts off with the strings being plucked in waltz time followed by a descending run. The waltz plucking is played twice more followed by another descending run. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be sampled and played in a hip-hop song.", "data_idx": 1986, "number": 1, "label": "blues"} +{"file_name": "test_03492.png", "caption": "This folk song features a kora being played in waltz time. This starts off with the strings being plucked in waltz time followed by a descending run. The waltz plucking is played twice more followed by another descending run. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be sampled and played in a hip-hop song.", "data_idx": 1986, "number": 2, "label": "blues"} +{"file_name": "test_03493.png", "caption": "This folk song features a kora being played in waltz time. This starts off with the strings being plucked in waltz time followed by a descending run. The waltz plucking is played twice more followed by another descending run. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be sampled and played in a hip-hop song.", "data_idx": 1986, "number": 3, "label": "blues"} +{"file_name": "test_03494.png", "caption": "The low quality recording features an ambient song that consists of sustained synth pad chord and mellow strings melody. It sounds mystical, soft, mellow, relaxing and calming - like something you would hear while having a massage.", "data_idx": 1990, "number": 0, "label": "classical"} +{"file_name": "test_03495.png", "caption": "The low quality recording features an ambient song that consists of sustained synth pad chord and mellow strings melody. It sounds mystical, soft, mellow, relaxing and calming - like something you would hear while having a massage.", "data_idx": 1990, "number": 1, "label": "classical"} +{"file_name": "test_03496.png", "caption": "The low quality recording features an ambient song that consists of sustained synth pad chord and mellow strings melody. It sounds mystical, soft, mellow, relaxing and calming - like something you would hear while having a massage.", "data_idx": 1990, "number": 2, "label": "classical"} +{"file_name": "test_03497.png", "caption": "The low quality recording features an ambient song that consists of sustained synth pad chord and mellow strings melody. It sounds mystical, soft, mellow, relaxing and calming - like something you would hear while having a massage.", "data_idx": 1990, "number": 3, "label": "classical"} +{"file_name": "test_03498.png", "caption": "The low quality recording features a metal song that consists of an aggressive male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering cymbals, distorted bass guitar and wide aggressive electric guitar melody.", "data_idx": 1991, "number": 0, "label": "metal"} +{"file_name": "test_03499.png", "caption": "The low quality recording features a metal song that consists of an aggressive male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering cymbals, distorted bass guitar and wide aggressive electric guitar melody.", "data_idx": 1991, "number": 1, "label": "metal"} +{"file_name": "test_03500.png", "caption": "The low quality recording features a metal song that consists of an aggressive male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering cymbals, distorted bass guitar and wide aggressive electric guitar melody.", "data_idx": 1991, "number": 2, "label": "metal"} +{"file_name": "test_03501.png", "caption": "The low quality recording features a metal song that consists of an aggressive male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering cymbals, distorted bass guitar and wide aggressive electric guitar melody.", "data_idx": 1991, "number": 3, "label": "metal"} +{"file_name": "test_03502.png", "caption": "The song is an instrumental. The tempo is medium with a slick drumming rhythm starting with a solid drum introduction, strong bass line and a blues guitar solo. The song is energetic and passionate. The audio quality is excellent.", "data_idx": 1993, "number": 0, "label": "hiphop"} +{"file_name": "test_03503.png", "caption": "The song is an instrumental. The tempo is medium with a slick drumming rhythm starting with a solid drum introduction, strong bass line and a blues guitar solo. The song is energetic and passionate. The audio quality is excellent.", "data_idx": 1993, "number": 1, "label": "hiphop"} diff --git a/data/test/metadata_0006.jsonl b/data/test/metadata_0006.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9029cda122fcf1932b917706c419a2e4076766cc --- /dev/null +++ b/data/test/metadata_0006.jsonl @@ -0,0 +1,342 @@ +{"file_name": "test_03504.png", "caption": "This audio contains a catchy melody played by a brass instrument, maybe a saxophone and a keyboard. A horn is playing a bass in a lower register along with a drum. In the background you can hear people laughing. This is an amateur recording and of poor audio-quality.", "data_idx": 2008, "number": 0, "label": "metal"} +{"file_name": "test_03505.png", "caption": "This audio contains a catchy melody played by a brass instrument, maybe a saxophone and a keyboard. A horn is playing a bass in a lower register along with a drum. In the background you can hear people laughing. This is an amateur recording and of poor audio-quality.", "data_idx": 2008, "number": 1, "label": "metal"} +{"file_name": "test_03506.png", "caption": "This audio contains a catchy melody played by a brass instrument, maybe a saxophone and a keyboard. A horn is playing a bass in a lower register along with a drum. In the background you can hear people laughing. This is an amateur recording and of poor audio-quality.", "data_idx": 2008, "number": 2, "label": "metal"} +{"file_name": "test_03507.png", "caption": "This audio contains a catchy melody played by a brass instrument, maybe a saxophone and a keyboard. A horn is playing a bass in a lower register along with a drum. In the background you can hear people laughing. This is an amateur recording and of poor audio-quality.", "data_idx": 2008, "number": 3, "label": "metal"} +{"file_name": "test_03508.png", "caption": "This is a big band jazz music piece. It is an instrumental piece. The main melody is played by a wide variety of the winds section composed of the saxophone, the trumpet, the flute and the clarinet. The piano and the upright bass provide backing structures. The rhythmic background consists of a jazz acoustic drum beat. The atmosphere is playful. This piece could fit perfectly in the soundtrack of a Disney-type animation movie.", "data_idx": 2010, "number": 0, "label": "hiphop"} +{"file_name": "test_03509.png", "caption": "This is a big band jazz music piece. It is an instrumental piece. The main melody is played by a wide variety of the winds section composed of the saxophone, the trumpet, the flute and the clarinet. The piano and the upright bass provide backing structures. The rhythmic background consists of a jazz acoustic drum beat. The atmosphere is playful. This piece could fit perfectly in the soundtrack of a Disney-type animation movie.", "data_idx": 2010, "number": 1, "label": "hiphop"} +{"file_name": "test_03510.png", "caption": "This is a big band jazz music piece. It is an instrumental piece. The main melody is played by a wide variety of the winds section composed of the saxophone, the trumpet, the flute and the clarinet. The piano and the upright bass provide backing structures. The rhythmic background consists of a jazz acoustic drum beat. The atmosphere is playful. This piece could fit perfectly in the soundtrack of a Disney-type animation movie.", "data_idx": 2010, "number": 2, "label": "hiphop"} +{"file_name": "test_03511.png", "caption": "This is a big band jazz music piece. It is an instrumental piece. The main melody is played by a wide variety of the winds section composed of the saxophone, the trumpet, the flute and the clarinet. The piano and the upright bass provide backing structures. The rhythmic background consists of a jazz acoustic drum beat. The atmosphere is playful. This piece could fit perfectly in the soundtrack of a Disney-type animation movie.", "data_idx": 2010, "number": 3, "label": "hiphop"} +{"file_name": "test_03512.png", "caption": "The low quality recording features a passionate reverberant female vocal singing over quiet resonating sound. The recording is noisy and it sounds passionate, soulful and cultural.", "data_idx": 2011, "number": 0, "label": "reggae"} +{"file_name": "test_03513.png", "caption": "The low quality recording features a passionate reverberant female vocal singing over quiet resonating sound. The recording is noisy and it sounds passionate, soulful and cultural.", "data_idx": 2011, "number": 1, "label": "reggae"} +{"file_name": "test_03514.png", "caption": "The low quality recording features a passionate reverberant female vocal singing over quiet resonating sound. The recording is noisy and it sounds passionate, soulful and cultural.", "data_idx": 2011, "number": 2, "label": "reggae"} +{"file_name": "test_03515.png", "caption": "The low quality recording features a passionate reverberant female vocal singing over quiet resonating sound. The recording is noisy and it sounds passionate, soulful and cultural.", "data_idx": 2011, "number": 3, "label": "reggae"} +{"file_name": "test_03516.png", "caption": "This is a Gujarati folk song. There is a female vocalist singing in a passionate manner. The melody is being played by a harmonium. The rhythm is being played by the tabla and little cymbals. The atmosphere is lively.", "data_idx": 2012, "number": 0, "label": "disco"} +{"file_name": "test_03517.png", "caption": "This is a Gujarati folk song. There is a female vocalist singing in a passionate manner. The melody is being played by a harmonium. The rhythm is being played by the tabla and little cymbals. The atmosphere is lively.", "data_idx": 2012, "number": 1, "label": "disco"} +{"file_name": "test_03518.png", "caption": "This is a Gujarati folk song. There is a female vocalist singing in a passionate manner. The melody is being played by a harmonium. The rhythm is being played by the tabla and little cymbals. The atmosphere is lively.", "data_idx": 2012, "number": 2, "label": "disco"} +{"file_name": "test_03519.png", "caption": "This is a Gujarati folk song. There is a female vocalist singing in a passionate manner. The melody is being played by a harmonium. The rhythm is being played by the tabla and little cymbals. The atmosphere is lively.", "data_idx": 2012, "number": 3, "label": "disco"} +{"file_name": "test_03520.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing background vocals, singing over people cheering sounds, shimmering hi hats, claps, snare rolls, groovy bass and wide electric guitar melody. It sounds energetic and exciting.", "data_idx": 2015, "number": 0, "label": "hiphop"} +{"file_name": "test_03521.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing background vocals, singing over people cheering sounds, shimmering hi hats, claps, snare rolls, groovy bass and wide electric guitar melody. It sounds energetic and exciting.", "data_idx": 2015, "number": 1, "label": "hiphop"} +{"file_name": "test_03522.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing background vocals, singing over people cheering sounds, shimmering hi hats, claps, snare rolls, groovy bass and wide electric guitar melody. It sounds energetic and exciting.", "data_idx": 2015, "number": 2, "label": "hiphop"} +{"file_name": "test_03523.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing background vocals, singing over people cheering sounds, shimmering hi hats, claps, snare rolls, groovy bass and wide electric guitar melody. It sounds energetic and exciting.", "data_idx": 2015, "number": 3, "label": "hiphop"} +{"file_name": "test_03524.png", "caption": "This music is an enthusiastic Irish tenor Banjo instrumental. The tempo is fast with a lively, upbeat, soothing, emphatic, twangy, sweet, rich, and engaging with traditional and folksy groove.", "data_idx": 2016, "number": 0, "label": "reggae"} +{"file_name": "test_03525.png", "caption": "This music is an enthusiastic Irish tenor Banjo instrumental. The tempo is fast with a lively, upbeat, soothing, emphatic, twangy, sweet, rich, and engaging with traditional and folksy groove.", "data_idx": 2016, "number": 1, "label": "reggae"} +{"file_name": "test_03526.png", "caption": "This music is an enthusiastic Irish tenor Banjo instrumental. The tempo is fast with a lively, upbeat, soothing, emphatic, twangy, sweet, rich, and engaging with traditional and folksy groove.", "data_idx": 2016, "number": 2, "label": "reggae"} +{"file_name": "test_03527.png", "caption": "This music is an enthusiastic Irish tenor Banjo instrumental. The tempo is fast with a lively, upbeat, soothing, emphatic, twangy, sweet, rich, and engaging with traditional and folksy groove.", "data_idx": 2016, "number": 3, "label": "reggae"} +{"file_name": "test_03528.png", "caption": "This song features three trombones playing different parts. One trombone plays the bass part. A second trombone outlines the chords being played. The third trombone plays the main melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. The mood of this song is motivational. The song can be played in an adventure movie just before the adventure begins.", "data_idx": 2019, "number": 0, "label": "jazz"} +{"file_name": "test_03529.png", "caption": "This song features three trombones playing different parts. One trombone plays the bass part. A second trombone outlines the chords being played. The third trombone plays the main melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. The mood of this song is motivational. The song can be played in an adventure movie just before the adventure begins.", "data_idx": 2019, "number": 1, "label": "jazz"} +{"file_name": "test_03530.png", "caption": "This song features three trombones playing different parts. One trombone plays the bass part. A second trombone outlines the chords being played. The third trombone plays the main melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. The mood of this song is motivational. The song can be played in an adventure movie just before the adventure begins.", "data_idx": 2019, "number": 2, "label": "jazz"} +{"file_name": "test_03531.png", "caption": "This song features three trombones playing different parts. One trombone plays the bass part. A second trombone outlines the chords being played. The third trombone plays the main melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. The mood of this song is motivational. The song can be played in an adventure movie just before the adventure begins.", "data_idx": 2019, "number": 3, "label": "jazz"} +{"file_name": "test_03532.png", "caption": "This is a Christmas music piece in the style of hip-hop. There is a child voice announcing the arrival of Santa. The male vocalist is rapping. There is a groovy bass line in the beat. The rhythmic background is provided by an electronic drum beat that has sleigh bells in it. The atmosphere is festive and amusing at the same time. This piece could be used in the soundtrack of a comedic Christmas movie.", "data_idx": 2020, "number": 0, "label": "hiphop"} +{"file_name": "test_03533.png", "caption": "This is a Christmas music piece in the style of hip-hop. There is a child voice announcing the arrival of Santa. The male vocalist is rapping. There is a groovy bass line in the beat. The rhythmic background is provided by an electronic drum beat that has sleigh bells in it. The atmosphere is festive and amusing at the same time. This piece could be used in the soundtrack of a comedic Christmas movie.", "data_idx": 2020, "number": 1, "label": "hiphop"} +{"file_name": "test_03534.png", "caption": "This Regional Mexican song features a live recording of a male voice singing the main melody. The song starts with the cymbal played once and held so that it does not ring. Then the male voice sings one line with the crowd. The crowd shouts out in joy after a line is sung. The bass is played on a tuba. This is followed by trumpets playing a high pitched melody. This song is at a slow tempo. Apart from the initial cymbal sound, no other percussion is played. This song can be played in a romantic movie.", "data_idx": 2022, "number": 0, "label": "blues"} +{"file_name": "test_03535.png", "caption": "This Regional Mexican song features a live recording of a male voice singing the main melody. The song starts with the cymbal played once and held so that it does not ring. Then the male voice sings one line with the crowd. The crowd shouts out in joy after a line is sung. The bass is played on a tuba. This is followed by trumpets playing a high pitched melody. This song is at a slow tempo. Apart from the initial cymbal sound, no other percussion is played. This song can be played in a romantic movie.", "data_idx": 2022, "number": 1, "label": "blues"} +{"file_name": "test_03536.png", "caption": "This Regional Mexican song features a live recording of a male voice singing the main melody. The song starts with the cymbal played once and held so that it does not ring. Then the male voice sings one line with the crowd. The crowd shouts out in joy after a line is sung. The bass is played on a tuba. This is followed by trumpets playing a high pitched melody. This song is at a slow tempo. Apart from the initial cymbal sound, no other percussion is played. This song can be played in a romantic movie.", "data_idx": 2022, "number": 2, "label": "blues"} +{"file_name": "test_03537.png", "caption": "This Regional Mexican song features a live recording of a male voice singing the main melody. The song starts with the cymbal played once and held so that it does not ring. Then the male voice sings one line with the crowd. The crowd shouts out in joy after a line is sung. The bass is played on a tuba. This is followed by trumpets playing a high pitched melody. This song is at a slow tempo. Apart from the initial cymbal sound, no other percussion is played. This song can be played in a romantic movie.", "data_idx": 2022, "number": 3, "label": "blues"} +{"file_name": "test_03538.png", "caption": "The low quality recording features a clock ticking and clock bells sounds, alongside some camera sounds. The recording is loud, noisy and in mono.", "data_idx": 2026, "number": 0, "label": "classical"} +{"file_name": "test_03539.png", "caption": "The low quality recording features a clock ticking and clock bells sounds, alongside some camera sounds. The recording is loud, noisy and in mono.", "data_idx": 2026, "number": 1, "label": "classical"} +{"file_name": "test_03540.png", "caption": "This music is a lively Bagpiper instrumental. The tempo is fast with a piper playing a cheerful harmony on the bagpiper with an enthusiastic acoustic guitar accompaniment. The music is vibrant, vivacious, vigorous, engaging, cheerful and merry. The performance is live with a live audience and ambient sounds.", "data_idx": 2027, "number": 0, "label": "classical"} +{"file_name": "test_03541.png", "caption": "This music is a lively Bagpiper instrumental. The tempo is fast with a piper playing a cheerful harmony on the bagpiper with an enthusiastic acoustic guitar accompaniment. The music is vibrant, vivacious, vigorous, engaging, cheerful and merry. The performance is live with a live audience and ambient sounds.", "data_idx": 2027, "number": 1, "label": "classical"} +{"file_name": "test_03542.png", "caption": "This music is a lively Bagpiper instrumental. The tempo is fast with a piper playing a cheerful harmony on the bagpiper with an enthusiastic acoustic guitar accompaniment. The music is vibrant, vivacious, vigorous, engaging, cheerful and merry. The performance is live with a live audience and ambient sounds.", "data_idx": 2027, "number": 2, "label": "classical"} +{"file_name": "test_03543.png", "caption": "This music is a lively Bagpiper instrumental. The tempo is fast with a piper playing a cheerful harmony on the bagpiper with an enthusiastic acoustic guitar accompaniment. The music is vibrant, vivacious, vigorous, engaging, cheerful and merry. The performance is live with a live audience and ambient sounds.", "data_idx": 2027, "number": 3, "label": "classical"} +{"file_name": "test_03544.png", "caption": "The Disco song features a passionate male vocalist singing over funky electric guitar melody, groovy bass, punchy kick and snare hits, shimmering hi hats and groovy synth keys melody. It sounds groovy, funky and passionate.", "data_idx": 2030, "number": 0, "label": "disco"} +{"file_name": "test_03545.png", "caption": "The Disco song features a passionate male vocalist singing over funky electric guitar melody, groovy bass, punchy kick and snare hits, shimmering hi hats and groovy synth keys melody. It sounds groovy, funky and passionate.", "data_idx": 2030, "number": 1, "label": "disco"} +{"file_name": "test_03546.png", "caption": "The Disco song features a passionate male vocalist singing over funky electric guitar melody, groovy bass, punchy kick and snare hits, shimmering hi hats and groovy synth keys melody. It sounds groovy, funky and passionate.", "data_idx": 2030, "number": 2, "label": "disco"} +{"file_name": "test_03547.png", "caption": "The Disco song features a passionate male vocalist singing over funky electric guitar melody, groovy bass, punchy kick and snare hits, shimmering hi hats and groovy synth keys melody. It sounds groovy, funky and passionate.", "data_idx": 2030, "number": 3, "label": "disco"} +{"file_name": "test_03548.png", "caption": "This is an R&B/pop dance music piece. There is a versatile female vocalist singing melodically. There is a keyboard and an electric guitar playing the melody while there is a groovy bass guitar line in the background. The rhythmic background is provided by an electronic drum beat. The atmosphere is urban and danceable. This piece could be used in the soundtrack of a romantic comedy movie.", "data_idx": 2031, "number": 0, "label": "disco"} +{"file_name": "test_03549.png", "caption": "This is an R&B/pop dance music piece. There is a versatile female vocalist singing melodically. There is a keyboard and an electric guitar playing the melody while there is a groovy bass guitar line in the background. The rhythmic background is provided by an electronic drum beat. The atmosphere is urban and danceable. This piece could be used in the soundtrack of a romantic comedy movie.", "data_idx": 2031, "number": 1, "label": "disco"} +{"file_name": "test_03550.png", "caption": "This is an R&B/pop dance music piece. There is a versatile female vocalist singing melodically. There is a keyboard and an electric guitar playing the melody while there is a groovy bass guitar line in the background. The rhythmic background is provided by an electronic drum beat. The atmosphere is urban and danceable. This piece could be used in the soundtrack of a romantic comedy movie.", "data_idx": 2031, "number": 2, "label": "disco"} +{"file_name": "test_03551.png", "caption": "This is an R&B/pop dance music piece. There is a versatile female vocalist singing melodically. There is a keyboard and an electric guitar playing the melody while there is a groovy bass guitar line in the background. The rhythmic background is provided by an electronic drum beat. The atmosphere is urban and danceable. This piece could be used in the soundtrack of a romantic comedy movie.", "data_idx": 2031, "number": 3, "label": "disco"} +{"file_name": "test_03552.png", "caption": "This is an instrumental punk rock/dub music piece. There is a distorted electric playing the main tune with a bass guitar in the background. The rhythmic background consists of a loud and rapid acoustic drum beat. The atmosphere is aggressive. This piece could be used in the soundtrack of a violent video game.", "data_idx": 2035, "number": 0, "label": "hiphop"} +{"file_name": "test_03553.png", "caption": "This is an instrumental punk rock/dub music piece. There is a distorted electric playing the main tune with a bass guitar in the background. The rhythmic background consists of a loud and rapid acoustic drum beat. The atmosphere is aggressive. This piece could be used in the soundtrack of a violent video game.", "data_idx": 2035, "number": 1, "label": "hiphop"} +{"file_name": "test_03554.png", "caption": "A male singer sings this poignant love song. The song is medium tempo with a steady drumming rhythm, strong bass line, keyboard accompaniment, guitar accompaniment and percussion hits. The song is emotional and romantic. The song audio quality is bad.", "data_idx": 2036, "number": 0, "label": "rock"} +{"file_name": "test_03555.png", "caption": "A male singer sings this poignant love song. The song is medium tempo with a steady drumming rhythm, strong bass line, keyboard accompaniment, guitar accompaniment and percussion hits. The song is emotional and romantic. The song audio quality is bad.", "data_idx": 2036, "number": 1, "label": "rock"} +{"file_name": "test_03556.png", "caption": "A male singer sings this poignant love song. The song is medium tempo with a steady drumming rhythm, strong bass line, keyboard accompaniment, guitar accompaniment and percussion hits. The song is emotional and romantic. The song audio quality is bad.", "data_idx": 2036, "number": 2, "label": "rock"} +{"file_name": "test_03557.png", "caption": "A male singer sings this poignant love song. The song is medium tempo with a steady drumming rhythm, strong bass line, keyboard accompaniment, guitar accompaniment and percussion hits. The song is emotional and romantic. The song audio quality is bad.", "data_idx": 2036, "number": 3, "label": "rock"} +{"file_name": "test_03558.png", "caption": "The song is an instrumental. The song is medium tempo with two accordion players playing on harmony and no other instrumentation. The music is romantic and passionate. The song has gypsy music roots.", "data_idx": 2041, "number": 0, "label": "blues"} +{"file_name": "test_03559.png", "caption": "The song is an instrumental. The song is medium tempo with two accordion players playing on harmony and no other instrumentation. The music is romantic and passionate. The song has gypsy music roots.", "data_idx": 2041, "number": 1, "label": "blues"} +{"file_name": "test_03560.png", "caption": "The song is an instrumental. The song is medium tempo with two accordion players playing on harmony and no other instrumentation. The music is romantic and passionate. The song has gypsy music roots.", "data_idx": 2041, "number": 2, "label": "blues"} +{"file_name": "test_03561.png", "caption": "The song is an instrumental. The song is medium tempo with two accordion players playing on harmony and no other instrumentation. The music is romantic and passionate. The song has gypsy music roots.", "data_idx": 2041, "number": 3, "label": "blues"} +{"file_name": "test_03562.png", "caption": "This music is a soulful instrumental. The tempo is medium with a harmonica melody with a background track which is muffled. The melody is of a popular Spanish Classic song. This music is a Harmonica instrumental of Besame Mucho.", "data_idx": 2042, "number": 0, "label": "classical"} +{"file_name": "test_03563.png", "caption": "This music is a soulful instrumental. The tempo is medium with a harmonica melody with a background track which is muffled. The melody is of a popular Spanish Classic song. This music is a Harmonica instrumental of Besame Mucho.", "data_idx": 2042, "number": 1, "label": "classical"} +{"file_name": "test_03564.png", "caption": "This techno song features a female voice singing only in non-lexical vocables. This is accompanied by programmed percussion. The percussion pauses after one and a half bars. It plays again after half a bar in an eighth note pattern. A synth plays a melody that is the same as that of the voice. The melody is repetitive. This song has a happy mood. This song can be played in a club.", "data_idx": 2047, "number": 0, "label": "disco"} +{"file_name": "test_03565.png", "caption": "This techno song features a female voice singing only in non-lexical vocables. This is accompanied by programmed percussion. The percussion pauses after one and a half bars. It plays again after half a bar in an eighth note pattern. A synth plays a melody that is the same as that of the voice. The melody is repetitive. This song has a happy mood. This song can be played in a club.", "data_idx": 2047, "number": 1, "label": "disco"} +{"file_name": "test_03566.png", "caption": "This techno song features a female voice singing only in non-lexical vocables. This is accompanied by programmed percussion. The percussion pauses after one and a half bars. It plays again after half a bar in an eighth note pattern. A synth plays a melody that is the same as that of the voice. The melody is repetitive. This song has a happy mood. This song can be played in a club.", "data_idx": 2047, "number": 2, "label": "disco"} +{"file_name": "test_03567.png", "caption": "This techno song features a female voice singing only in non-lexical vocables. This is accompanied by programmed percussion. The percussion pauses after one and a half bars. It plays again after half a bar in an eighth note pattern. A synth plays a melody that is the same as that of the voice. The melody is repetitive. This song has a happy mood. This song can be played in a club.", "data_idx": 2047, "number": 3, "label": "disco"} +{"file_name": "test_03568.png", "caption": "This is a latin dance music piece in the style of salsa. There are male vocals shouting in the lead. There is a crisp synth sound playing the melody with the backing of a piano and a bass guitar. The rhythm is played by the latin percussive elements. There is a sensual atmosphere to this piece. It could be playing in the background at a latin nightclub.", "data_idx": 2054, "number": 0, "label": "hiphop"} +{"file_name": "test_03569.png", "caption": "This is a latin dance music piece in the style of salsa. There are male vocals shouting in the lead. There is a crisp synth sound playing the melody with the backing of a piano and a bass guitar. The rhythm is played by the latin percussive elements. There is a sensual atmosphere to this piece. It could be playing in the background at a latin nightclub.", "data_idx": 2054, "number": 1, "label": "hiphop"} +{"file_name": "test_03570.png", "caption": "This is an instrumental song. We have piano, brass, and string instruments. The piano melody is light and dainty, but also uplifting and positive. The pattern is like a dance among the clouds. The string instruments are violins, and the brass being the french horn. The brass gives the clip the sense of importance and grand atmosphere.", "data_idx": 2055, "number": 0, "label": "hiphop"} +{"file_name": "test_03571.png", "caption": "This is an instrumental song. We have piano, brass, and string instruments. The piano melody is light and dainty, but also uplifting and positive. The pattern is like a dance among the clouds. The string instruments are violins, and the brass being the french horn. The brass gives the clip the sense of importance and grand atmosphere.", "data_idx": 2055, "number": 1, "label": "hiphop"} +{"file_name": "test_03572.png", "caption": "This is an instrumental song. We have piano, brass, and string instruments. The piano melody is light and dainty, but also uplifting and positive. The pattern is like a dance among the clouds. The string instruments are violins, and the brass being the french horn. The brass gives the clip the sense of importance and grand atmosphere.", "data_idx": 2055, "number": 2, "label": "hiphop"} +{"file_name": "test_03573.png", "caption": "This is an instrumental song. We have piano, brass, and string instruments. The piano melody is light and dainty, but also uplifting and positive. The pattern is like a dance among the clouds. The string instruments are violins, and the brass being the french horn. The brass gives the clip the sense of importance and grand atmosphere.", "data_idx": 2055, "number": 3, "label": "hiphop"} +{"file_name": "test_03574.png", "caption": "This instrumental song features a lute being played. This is played using fingerstyle. The song sounds like a folk song. There are no other instruments in this song. There are no voices in this song. This song can be played in a documentary scene with green hills at the backdrop. The mood of this song is happy.", "data_idx": 2056, "number": 0, "label": "hiphop"} +{"file_name": "test_03575.png", "caption": "This instrumental song features a lute being played. This is played using fingerstyle. The song sounds like a folk song. There are no other instruments in this song. There are no voices in this song. This song can be played in a documentary scene with green hills at the backdrop. The mood of this song is happy.", "data_idx": 2056, "number": 1, "label": "hiphop"} +{"file_name": "test_03576.png", "caption": "This instrumental song features a lute being played. This is played using fingerstyle. The song sounds like a folk song. There are no other instruments in this song. There are no voices in this song. This song can be played in a documentary scene with green hills at the backdrop. The mood of this song is happy.", "data_idx": 2056, "number": 2, "label": "hiphop"} +{"file_name": "test_03577.png", "caption": "This instrumental song features a lute being played. This is played using fingerstyle. The song sounds like a folk song. There are no other instruments in this song. There are no voices in this song. This song can be played in a documentary scene with green hills at the backdrop. The mood of this song is happy.", "data_idx": 2056, "number": 3, "label": "hiphop"} +{"file_name": "test_03578.png", "caption": "This audio contains a didgeridoo with reverb panned to the right side of the speakers, some white noise risers that sound like wind. Various synth pads are playing drones in different ranges. This song may be playing while meditation or falling asleep.", "data_idx": 2057, "number": 0, "label": "hiphop"} +{"file_name": "test_03579.png", "caption": "This audio contains a didgeridoo with reverb panned to the right side of the speakers, some white noise risers that sound like wind. Various synth pads are playing drones in different ranges. This song may be playing while meditation or falling asleep.", "data_idx": 2057, "number": 1, "label": "hiphop"} +{"file_name": "test_03580.png", "caption": "This audio contains a didgeridoo with reverb panned to the right side of the speakers, some white noise risers that sound like wind. Various synth pads are playing drones in different ranges. This song may be playing while meditation or falling asleep.", "data_idx": 2057, "number": 2, "label": "hiphop"} +{"file_name": "test_03581.png", "caption": "This audio contains a didgeridoo with reverb panned to the right side of the speakers, some white noise risers that sound like wind. Various synth pads are playing drones in different ranges. This song may be playing while meditation or falling asleep.", "data_idx": 2057, "number": 3, "label": "hiphop"} +{"file_name": "test_03582.png", "caption": "Empowering youthful music with heavily processed female vocals and compressed drum samples. big claps on the backbeat and a funky electric bass part accompany. The production aims at high fidelity but comes across sounding over produced and ultimately amateur.", "data_idx": 2060, "number": 0, "label": "pop"} +{"file_name": "test_03583.png", "caption": "Empowering youthful music with heavily processed female vocals and compressed drum samples. big claps on the backbeat and a funky electric bass part accompany. The production aims at high fidelity but comes across sounding over produced and ultimately amateur.", "data_idx": 2060, "number": 1, "label": "pop"} +{"file_name": "test_03584.png", "caption": "Empowering youthful music with heavily processed female vocals and compressed drum samples. big claps on the backbeat and a funky electric bass part accompany. The production aims at high fidelity but comes across sounding over produced and ultimately amateur.", "data_idx": 2060, "number": 2, "label": "pop"} +{"file_name": "test_03585.png", "caption": "Empowering youthful music with heavily processed female vocals and compressed drum samples. big claps on the backbeat and a funky electric bass part accompany. The production aims at high fidelity but comes across sounding over produced and ultimately amateur.", "data_idx": 2060, "number": 3, "label": "pop"} +{"file_name": "test_03586.png", "caption": "The low quality recording features a live performance that consists of a tuba solo melody and some loud impact in the background. The recording is noisy, loud and distorted.", "data_idx": 2061, "number": 0, "label": "jazz"} +{"file_name": "test_03587.png", "caption": "The low quality recording features a live performance that consists of a tuba solo melody and some loud impact in the background. The recording is noisy, loud and distorted.", "data_idx": 2061, "number": 1, "label": "jazz"} +{"file_name": "test_03588.png", "caption": "The low quality recording features a live performance that consists of a tuba solo melody and some loud impact in the background. The recording is noisy, loud and distorted.", "data_idx": 2061, "number": 2, "label": "jazz"} +{"file_name": "test_03589.png", "caption": "The low quality recording features a live performance that consists of a tuba solo melody and some loud impact in the background. The recording is noisy, loud and distorted.", "data_idx": 2061, "number": 3, "label": "jazz"} +{"file_name": "test_03590.png", "caption": "This is a recording of two flamenco guitarists playing a captivating latin american rhythm. It's upbeat and suitable for dancing. The one guitarist strums chords in the percussive flamenco style, while the other guitarist plays flamenco lead with arpeggios and licks. The performance is live and outside. There is reverb applied to the lead guitar. Both are playing on nylon strings.", "data_idx": 2063, "number": 0, "label": "blues"} +{"file_name": "test_03591.png", "caption": "This is a recording of two flamenco guitarists playing a captivating latin american rhythm. It's upbeat and suitable for dancing. The one guitarist strums chords in the percussive flamenco style, while the other guitarist plays flamenco lead with arpeggios and licks. The performance is live and outside. There is reverb applied to the lead guitar. Both are playing on nylon strings.", "data_idx": 2063, "number": 1, "label": "blues"} +{"file_name": "test_03592.png", "caption": "This is a recording of two flamenco guitarists playing a captivating latin american rhythm. It's upbeat and suitable for dancing. The one guitarist strums chords in the percussive flamenco style, while the other guitarist plays flamenco lead with arpeggios and licks. The performance is live and outside. There is reverb applied to the lead guitar. Both are playing on nylon strings.", "data_idx": 2063, "number": 2, "label": "blues"} +{"file_name": "test_03593.png", "caption": "This is a recording of two flamenco guitarists playing a captivating latin american rhythm. It's upbeat and suitable for dancing. The one guitarist strums chords in the percussive flamenco style, while the other guitarist plays flamenco lead with arpeggios and licks. The performance is live and outside. There is reverb applied to the lead guitar. Both are playing on nylon strings.", "data_idx": 2063, "number": 3, "label": "blues"} +{"file_name": "test_03594.png", "caption": "The Children song features wide harmonizing vocals singing over shimmering shakers, groovy bass, punchy snare, soft kick hits, groovy piano chords, shimmering bells melody and acoustic rhythm guitar chords. It sounds addictive, happy and fun - as every children's song should sound.", "data_idx": 2066, "number": 0, "label": "reggae"} +{"file_name": "test_03595.png", "caption": "The Children song features wide harmonizing vocals singing over shimmering shakers, groovy bass, punchy snare, soft kick hits, groovy piano chords, shimmering bells melody and acoustic rhythm guitar chords. It sounds addictive, happy and fun - as every children's song should sound.", "data_idx": 2066, "number": 1, "label": "reggae"} +{"file_name": "test_03596.png", "caption": "The Children song features wide harmonizing vocals singing over shimmering shakers, groovy bass, punchy snare, soft kick hits, groovy piano chords, shimmering bells melody and acoustic rhythm guitar chords. It sounds addictive, happy and fun - as every children's song should sound.", "data_idx": 2066, "number": 2, "label": "reggae"} +{"file_name": "test_03597.png", "caption": "The Children song features wide harmonizing vocals singing over shimmering shakers, groovy bass, punchy snare, soft kick hits, groovy piano chords, shimmering bells melody and acoustic rhythm guitar chords. It sounds addictive, happy and fun - as every children's song should sound.", "data_idx": 2066, "number": 3, "label": "reggae"} +{"file_name": "test_03598.png", "caption": "This is a classical music piece. There is a wide range of strings in the orchestra playing a lively melody while a horn is in the lead. The atmosphere is lighthearted. This piece could be used in the soundtrack of a documentary where there are natural movements happening in the scene.", "data_idx": 2069, "number": 0, "label": "classical"} +{"file_name": "test_03599.png", "caption": "This is a classical music piece. There is a wide range of strings in the orchestra playing a lively melody while a horn is in the lead. The atmosphere is lighthearted. This piece could be used in the soundtrack of a documentary where there are natural movements happening in the scene.", "data_idx": 2069, "number": 1, "label": "classical"} +{"file_name": "test_03600.png", "caption": "This is a classical music piece. There is a wide range of strings in the orchestra playing a lively melody while a horn is in the lead. The atmosphere is lighthearted. This piece could be used in the soundtrack of a documentary where there are natural movements happening in the scene.", "data_idx": 2069, "number": 2, "label": "classical"} +{"file_name": "test_03601.png", "caption": "This is a classical music piece. There is a wide range of strings in the orchestra playing a lively melody while a horn is in the lead. The atmosphere is lighthearted. This piece could be used in the soundtrack of a documentary where there are natural movements happening in the scene.", "data_idx": 2069, "number": 3, "label": "classical"} +{"file_name": "test_03602.png", "caption": "The song is an instrumental. The song is in medium tempo with a classical guitar playing a lilting melody in accompaniment style. The song is emotional and romantic. The song is a romantic instrumental song.", "data_idx": 2071, "number": 0, "label": "classical"} +{"file_name": "test_03603.png", "caption": "The song is an instrumental. The song is in medium tempo with a classical guitar playing a lilting melody in accompaniment style. The song is emotional and romantic. The song is a romantic instrumental song.", "data_idx": 2071, "number": 1, "label": "classical"} +{"file_name": "test_03604.png", "caption": "The song is an instrumental. The song is in medium tempo with a classical guitar playing a lilting melody in accompaniment style. The song is emotional and romantic. The song is a romantic instrumental song.", "data_idx": 2071, "number": 2, "label": "classical"} +{"file_name": "test_03605.png", "caption": "The song is an instrumental. The song is in medium tempo with a classical guitar playing a lilting melody in accompaniment style. The song is emotional and romantic. The song is a romantic instrumental song.", "data_idx": 2071, "number": 3, "label": "classical"} +{"file_name": "test_03606.png", "caption": "This music is instrumental. The tempo is medium with a lilting middle eastern kind of melody on a string instrument that sounds like a santoor along with a classical tabla accompaniment. The music is traditional, classical, captivating, romantic and nostalgic. This music is an Eastern Classical instrumental.", "data_idx": 2072, "number": 0, "label": "reggae"} +{"file_name": "test_03607.png", "caption": "This music is instrumental. The tempo is medium with a lilting middle eastern kind of melody on a string instrument that sounds like a santoor along with a classical tabla accompaniment. The music is traditional, classical, captivating, romantic and nostalgic. This music is an Eastern Classical instrumental.", "data_idx": 2072, "number": 1, "label": "reggae"} +{"file_name": "test_03608.png", "caption": "This music is instrumental. The tempo is medium with a lilting middle eastern kind of melody on a string instrument that sounds like a santoor along with a classical tabla accompaniment. The music is traditional, classical, captivating, romantic and nostalgic. This music is an Eastern Classical instrumental.", "data_idx": 2072, "number": 2, "label": "reggae"} +{"file_name": "test_03609.png", "caption": "This music is instrumental. The tempo is medium with a lilting middle eastern kind of melody on a string instrument that sounds like a santoor along with a classical tabla accompaniment. The music is traditional, classical, captivating, romantic and nostalgic. This music is an Eastern Classical instrumental.", "data_idx": 2072, "number": 3, "label": "reggae"} +{"file_name": "test_03610.png", "caption": "The Hard Rock song features a repetitive filtered male vocal over shimmering hi hats, down sweep, wide aggressive electric guitar chords, distorted bass guitar, echoing electric guitar licks, punchy kick and punchy snare hits. It sounds energetic, aggressive and addictive.", "data_idx": 2073, "number": 0, "label": "metal"} +{"file_name": "test_03611.png", "caption": "The Hard Rock song features a repetitive filtered male vocal over shimmering hi hats, down sweep, wide aggressive electric guitar chords, distorted bass guitar, echoing electric guitar licks, punchy kick and punchy snare hits. It sounds energetic, aggressive and addictive.", "data_idx": 2073, "number": 1, "label": "metal"} +{"file_name": "test_03612.png", "caption": "The Hard Rock song features a repetitive filtered male vocal over shimmering hi hats, down sweep, wide aggressive electric guitar chords, distorted bass guitar, echoing electric guitar licks, punchy kick and punchy snare hits. It sounds energetic, aggressive and addictive.", "data_idx": 2073, "number": 2, "label": "metal"} +{"file_name": "test_03613.png", "caption": "The Hard Rock song features a repetitive filtered male vocal over shimmering hi hats, down sweep, wide aggressive electric guitar chords, distorted bass guitar, echoing electric guitar licks, punchy kick and punchy snare hits. It sounds energetic, aggressive and addictive.", "data_idx": 2073, "number": 3, "label": "metal"} +{"file_name": "test_03614.png", "caption": "The low quality recording features shimmering cymbals, brass melody, woodwinds melody, groovy piano, groovy bass and soft kick and snare hits played altogether. It sounds chaotic and manic.", "data_idx": 2074, "number": 0, "label": "jazz"} +{"file_name": "test_03615.png", "caption": "The low quality recording features shimmering cymbals, brass melody, woodwinds melody, groovy piano, groovy bass and soft kick and snare hits played altogether. It sounds chaotic and manic.", "data_idx": 2074, "number": 1, "label": "jazz"} +{"file_name": "test_03616.png", "caption": "The low quality recording features shimmering cymbals, brass melody, woodwinds melody, groovy piano, groovy bass and soft kick and snare hits played altogether. It sounds chaotic and manic.", "data_idx": 2074, "number": 2, "label": "jazz"} +{"file_name": "test_03617.png", "caption": "The low quality recording features shimmering cymbals, brass melody, woodwinds melody, groovy piano, groovy bass and soft kick and snare hits played altogether. It sounds chaotic and manic.", "data_idx": 2074, "number": 3, "label": "jazz"} +{"file_name": "test_03618.png", "caption": "The low quality recording features a R&B/Soul song that consists of snappy rimshots layered with shimmering tambourine, mellow piano melody, punchy kick, smooth bass and synth keys melody. At the very end of the loop, there is a short snippet of passionate female vocal singing over the instrumental. It sounds emotional, passionate and hopeful.", "data_idx": 2076, "number": 0, "label": "hiphop"} +{"file_name": "test_03619.png", "caption": "The low quality recording features a R&B/Soul song that consists of snappy rimshots layered with shimmering tambourine, mellow piano melody, punchy kick, smooth bass and synth keys melody. At the very end of the loop, there is a short snippet of passionate female vocal singing over the instrumental. It sounds emotional, passionate and hopeful.", "data_idx": 2076, "number": 1, "label": "hiphop"} +{"file_name": "test_03620.png", "caption": "The low quality recording features a R&B/Soul song that consists of snappy rimshots layered with shimmering tambourine, mellow piano melody, punchy kick, smooth bass and synth keys melody. At the very end of the loop, there is a short snippet of passionate female vocal singing over the instrumental. It sounds emotional, passionate and hopeful.", "data_idx": 2076, "number": 2, "label": "hiphop"} +{"file_name": "test_03621.png", "caption": "The low quality recording features a R&B/Soul song that consists of snappy rimshots layered with shimmering tambourine, mellow piano melody, punchy kick, smooth bass and synth keys melody. At the very end of the loop, there is a short snippet of passionate female vocal singing over the instrumental. It sounds emotional, passionate and hopeful.", "data_idx": 2076, "number": 3, "label": "hiphop"} +{"file_name": "test_03622.png", "caption": "This techno song features a synth lead playing the main melody. This is accompanied by programmed percussion playing a simple kick focused beat. The hi-hat is accented in an open position on the 3-and count of every bar. The synth plays the bass part with a voicing that sounds like a cello. This techno song can be played in a club.", "data_idx": 2077, "number": 0, "label": "hiphop"} +{"file_name": "test_03623.png", "caption": "This techno song features a synth lead playing the main melody. This is accompanied by programmed percussion playing a simple kick focused beat. The hi-hat is accented in an open position on the 3-and count of every bar. The synth plays the bass part with a voicing that sounds like a cello. This techno song can be played in a club.", "data_idx": 2077, "number": 1, "label": "hiphop"} +{"file_name": "test_03624.png", "caption": "This techno song features a synth lead playing the main melody. This is accompanied by programmed percussion playing a simple kick focused beat. The hi-hat is accented in an open position on the 3-and count of every bar. The synth plays the bass part with a voicing that sounds like a cello. This techno song can be played in a club.", "data_idx": 2077, "number": 2, "label": "hiphop"} +{"file_name": "test_03625.png", "caption": "This techno song features a synth lead playing the main melody. This is accompanied by programmed percussion playing a simple kick focused beat. The hi-hat is accented in an open position on the 3-and count of every bar. The synth plays the bass part with a voicing that sounds like a cello. This techno song can be played in a club.", "data_idx": 2077, "number": 3, "label": "hiphop"} +{"file_name": "test_03626.png", "caption": "This low quality audio features a guitar playing flamenco style. The guitar plays only two chords. The sound of foot-stomping can be heard. A female voice sings vocals in the background. This song has no other instruments. This song can be played for a flamenco dance.", "data_idx": 2080, "number": 0, "label": "disco"} +{"file_name": "test_03627.png", "caption": "This low quality audio features a guitar playing flamenco style. The guitar plays only two chords. The sound of foot-stomping can be heard. A female voice sings vocals in the background. This song has no other instruments. This song can be played for a flamenco dance.", "data_idx": 2080, "number": 1, "label": "disco"} +{"file_name": "test_03628.png", "caption": "This low quality audio features a guitar playing flamenco style. The guitar plays only two chords. The sound of foot-stomping can be heard. A female voice sings vocals in the background. This song has no other instruments. This song can be played for a flamenco dance.", "data_idx": 2080, "number": 2, "label": "disco"} +{"file_name": "test_03629.png", "caption": "This low quality audio features a guitar playing flamenco style. The guitar plays only two chords. The sound of foot-stomping can be heard. A female voice sings vocals in the background. This song has no other instruments. This song can be played for a flamenco dance.", "data_idx": 2080, "number": 3, "label": "disco"} +{"file_name": "test_03630.png", "caption": "This audio contains a e-guitar running through a tremolo effect that gets into faster modulation speed. This is an amateur recording and may be used for educational purposes.", "data_idx": 2082, "number": 0, "label": "blues"} +{"file_name": "test_03631.png", "caption": "This audio contains a e-guitar running through a tremolo effect that gets into faster modulation speed. This is an amateur recording and may be used for educational purposes.", "data_idx": 2082, "number": 1, "label": "blues"} +{"file_name": "test_03632.png", "caption": "This music is an upbeat instrumental. The tempo is fast with keyboard harmony, enthusiastic drumming and electronic arrangements. The harmony sounds like a synthetic sound of a bagpiper . The music is chaotic, quirky, playful, and cheerful.", "data_idx": 2085, "number": 0, "label": "rock"} +{"file_name": "test_03633.png", "caption": "This music is an upbeat instrumental. The tempo is fast with keyboard harmony, enthusiastic drumming and electronic arrangements. The harmony sounds like a synthetic sound of a bagpiper . The music is chaotic, quirky, playful, and cheerful.", "data_idx": 2085, "number": 1, "label": "rock"} +{"file_name": "test_03634.png", "caption": "This music is an upbeat instrumental. The tempo is fast with keyboard harmony, enthusiastic drumming and electronic arrangements. The harmony sounds like a synthetic sound of a bagpiper . The music is chaotic, quirky, playful, and cheerful.", "data_idx": 2085, "number": 2, "label": "rock"} +{"file_name": "test_03635.png", "caption": "This music is an upbeat instrumental. The tempo is fast with keyboard harmony, enthusiastic drumming and electronic arrangements. The harmony sounds like a synthetic sound of a bagpiper . The music is chaotic, quirky, playful, and cheerful.", "data_idx": 2085, "number": 3, "label": "rock"} +{"file_name": "test_03636.png", "caption": "This is a calm and relaxing meditation track. We hear the ringing of a tibetan bowl and its resonance. This would be useful for any tranquil environment primed for meditation.", "data_idx": 2087, "number": 0, "label": "hiphop"} +{"file_name": "test_03637.png", "caption": "This is a calm and relaxing meditation track. We hear the ringing of a tibetan bowl and its resonance. This would be useful for any tranquil environment primed for meditation.", "data_idx": 2087, "number": 1, "label": "hiphop"} +{"file_name": "test_03638.png", "caption": "This is a calm and relaxing meditation track. We hear the ringing of a tibetan bowl and its resonance. This would be useful for any tranquil environment primed for meditation.", "data_idx": 2087, "number": 2, "label": "hiphop"} +{"file_name": "test_03639.png", "caption": "This is a calm and relaxing meditation track. We hear the ringing of a tibetan bowl and its resonance. This would be useful for any tranquil environment primed for meditation.", "data_idx": 2087, "number": 3, "label": "hiphop"} +{"file_name": "test_03640.png", "caption": "This is a doo wop music piece. There are male vocals singing melodically. The main tune is being played by the electric guitar and the keyboard while the bass guitar is playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is danceable and joyful. This piece could be playing at a dance club for an oldies night.", "data_idx": 2088, "number": 0, "label": "blues"} +{"file_name": "test_03641.png", "caption": "This is a doo wop music piece. There are male vocals singing melodically. The main tune is being played by the electric guitar and the keyboard while the bass guitar is playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is danceable and joyful. This piece could be playing at a dance club for an oldies night.", "data_idx": 2088, "number": 1, "label": "blues"} +{"file_name": "test_03642.png", "caption": "This is a doo wop music piece. There are male vocals singing melodically. The main tune is being played by the electric guitar and the keyboard while the bass guitar is playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is danceable and joyful. This piece could be playing at a dance club for an oldies night.", "data_idx": 2088, "number": 2, "label": "blues"} +{"file_name": "test_03643.png", "caption": "This is a doo wop music piece. There are male vocals singing melodically. The main tune is being played by the electric guitar and the keyboard while the bass guitar is playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is danceable and joyful. This piece could be playing at a dance club for an oldies night.", "data_idx": 2088, "number": 3, "label": "blues"} +{"file_name": "test_03644.png", "caption": "This is an amateur recording of a Ugandan traditional music piece. The piece is instrumental and percussive in nature. The amadinda (which is a Ugandan xylophone) is playing a joyful tune. The atmosphere is playful.", "data_idx": 2092, "number": 0, "label": "reggae"} +{"file_name": "test_03645.png", "caption": "This is an amateur recording of a Ugandan traditional music piece. The piece is instrumental and percussive in nature. The amadinda (which is a Ugandan xylophone) is playing a joyful tune. The atmosphere is playful.", "data_idx": 2092, "number": 1, "label": "reggae"} +{"file_name": "test_03646.png", "caption": "This is an amateur recording of a Ugandan traditional music piece. The piece is instrumental and percussive in nature. The amadinda (which is a Ugandan xylophone) is playing a joyful tune. The atmosphere is playful.", "data_idx": 2092, "number": 2, "label": "reggae"} +{"file_name": "test_03647.png", "caption": "This is an amateur recording of a Ugandan traditional music piece. The piece is instrumental and percussive in nature. The amadinda (which is a Ugandan xylophone) is playing a joyful tune. The atmosphere is playful.", "data_idx": 2092, "number": 3, "label": "reggae"} +{"file_name": "test_03648.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody that sounds emotional and passionate. The recording is a bit noisy.", "data_idx": 2094, "number": 0, "label": "classical"} +{"file_name": "test_03649.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody that sounds emotional and passionate. The recording is a bit noisy.", "data_idx": 2094, "number": 1, "label": "classical"} +{"file_name": "test_03650.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody that sounds emotional and passionate. The recording is a bit noisy.", "data_idx": 2094, "number": 2, "label": "classical"} +{"file_name": "test_03651.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody that sounds emotional and passionate. The recording is a bit noisy.", "data_idx": 2094, "number": 3, "label": "classical"} +{"file_name": "test_03652.png", "caption": "The low quality recording features a passionate trumpet melody. The recording is noisy and in mono.", "data_idx": 2095, "number": 0, "label": "hiphop"} +{"file_name": "test_03653.png", "caption": "The low quality recording features a passionate trumpet melody. The recording is noisy and in mono.", "data_idx": 2095, "number": 1, "label": "hiphop"} +{"file_name": "test_03654.png", "caption": "This is a live recording. The percussion is beatboxing and the melodic element of the instrumental is a flute player who plays a low riff which ascends towards the end.", "data_idx": 2096, "number": 0, "label": "rock"} +{"file_name": "test_03655.png", "caption": "This is a live recording. The percussion is beatboxing and the melodic element of the instrumental is a flute player who plays a low riff which ascends towards the end.", "data_idx": 2096, "number": 1, "label": "rock"} +{"file_name": "test_03656.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a synth key melody playing. The recording is noisy, in mono and it sounds happy.", "data_idx": 2097, "number": 0, "label": "classical"} +{"file_name": "test_03657.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a synth key melody playing. The recording is noisy, in mono and it sounds happy.", "data_idx": 2097, "number": 1, "label": "classical"} +{"file_name": "test_03658.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a synth key melody playing. The recording is noisy, in mono and it sounds happy.", "data_idx": 2097, "number": 2, "label": "classical"} +{"file_name": "test_03659.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a synth key melody playing. The recording is noisy, in mono and it sounds happy.", "data_idx": 2097, "number": 3, "label": "classical"} +{"file_name": "test_03660.png", "caption": "This song contains acoustic drums playing a kick on every half-beat along with an e-bass playing a repeating bassline along with an e-guitar. Another e-guitar is playing long notes with a lot of reverb in a higher register. Another guitar is playing a counter melody in an even higher key. A male voice is singing in a higher key while being backed by another male voice singing a harmony in an even higher key. This song may be playing live at a festival.", "data_idx": 2098, "number": 0, "label": "rock"} +{"file_name": "test_03661.png", "caption": "This song contains acoustic drums playing a kick on every half-beat along with an e-bass playing a repeating bassline along with an e-guitar. Another e-guitar is playing long notes with a lot of reverb in a higher register. Another guitar is playing a counter melody in an even higher key. A male voice is singing in a higher key while being backed by another male voice singing a harmony in an even higher key. This song may be playing live at a festival.", "data_idx": 2098, "number": 1, "label": "rock"} +{"file_name": "test_03662.png", "caption": "This song contains acoustic drums playing a kick on every half-beat along with an e-bass playing a repeating bassline along with an e-guitar. Another e-guitar is playing long notes with a lot of reverb in a higher register. Another guitar is playing a counter melody in an even higher key. A male voice is singing in a higher key while being backed by another male voice singing a harmony in an even higher key. This song may be playing live at a festival.", "data_idx": 2098, "number": 2, "label": "rock"} +{"file_name": "test_03663.png", "caption": "This song contains acoustic drums playing a kick on every half-beat along with an e-bass playing a repeating bassline along with an e-guitar. Another e-guitar is playing long notes with a lot of reverb in a higher register. Another guitar is playing a counter melody in an even higher key. A male voice is singing in a higher key while being backed by another male voice singing a harmony in an even higher key. This song may be playing live at a festival.", "data_idx": 2098, "number": 3, "label": "rock"} +{"file_name": "test_03664.png", "caption": "The song is an instrumental tolled by a guitarist introducing the lesson. The tempo is slow, a guitar playing gently with feedback buzz noise. The song is relaxing but has poor audio quality with a feedback noise.", "data_idx": 2101, "number": 0, "label": "hiphop"} +{"file_name": "test_03665.png", "caption": "The song is an instrumental tolled by a guitarist introducing the lesson. The tempo is slow, a guitar playing gently with feedback buzz noise. The song is relaxing but has poor audio quality with a feedback noise.", "data_idx": 2101, "number": 1, "label": "hiphop"} +{"file_name": "test_03666.png", "caption": "This song contains an acoustic piano playing a melody in the higher register playing mostly one note at a time. Celli is playing along the melody then changing into staccato strokes playing a melody in the low to high register. This song may be playing live during a dance scene in a musical.", "data_idx": 2102, "number": 0, "label": "jazz"} +{"file_name": "test_03667.png", "caption": "This song contains an acoustic piano playing a melody in the higher register playing mostly one note at a time. Celli is playing along the melody then changing into staccato strokes playing a melody in the low to high register. This song may be playing live during a dance scene in a musical.", "data_idx": 2102, "number": 1, "label": "jazz"} +{"file_name": "test_03668.png", "caption": "This song contains an acoustic piano playing a melody in the higher register playing mostly one note at a time. Celli is playing along the melody then changing into staccato strokes playing a melody in the low to high register. This song may be playing live during a dance scene in a musical.", "data_idx": 2102, "number": 2, "label": "jazz"} +{"file_name": "test_03669.png", "caption": "This song contains an acoustic piano playing a melody in the higher register playing mostly one note at a time. Celli is playing along the melody then changing into staccato strokes playing a melody in the low to high register. This song may be playing live during a dance scene in a musical.", "data_idx": 2102, "number": 3, "label": "jazz"} +{"file_name": "test_03670.png", "caption": "This song features a male voice singing the main melody. The first two lines are sung using the same melody and it culminates in the third line. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. The keyboard plays arpeggiated chords in the background. Another synth plays a windy pad voice throughout the song sounding like strings. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 2103, "number": 0, "label": "rock"} +{"file_name": "test_03671.png", "caption": "This song features a male voice singing the main melody. The first two lines are sung using the same melody and it culminates in the third line. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. The keyboard plays arpeggiated chords in the background. Another synth plays a windy pad voice throughout the song sounding like strings. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 2103, "number": 1, "label": "rock"} +{"file_name": "test_03672.png", "caption": "This song features a male voice singing the main melody. The first two lines are sung using the same melody and it culminates in the third line. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. The keyboard plays arpeggiated chords in the background. Another synth plays a windy pad voice throughout the song sounding like strings. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 2103, "number": 2, "label": "rock"} +{"file_name": "test_03673.png", "caption": "This song features a male voice singing the main melody. The first two lines are sung using the same melody and it culminates in the third line. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. The keyboard plays arpeggiated chords in the background. Another synth plays a windy pad voice throughout the song sounding like strings. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 2103, "number": 3, "label": "rock"} +{"file_name": "test_03674.png", "caption": "The low quality recording features a didgeridoo melody and some water flowing sounds in the background, as it was recorded outdoors. The recording is mono and noisy.", "data_idx": 2104, "number": 0, "label": "hiphop"} +{"file_name": "test_03675.png", "caption": "The low quality recording features a didgeridoo melody and some water flowing sounds in the background, as it was recorded outdoors. The recording is mono and noisy.", "data_idx": 2104, "number": 1, "label": "hiphop"} +{"file_name": "test_03676.png", "caption": "This music is instrumental. The tempo is fast with an intense, rigorous violin harmony, grim cello and keyboard harmony. The music is untiring, incessant, serious, grim, and staid. This music is a classical violin piece.", "data_idx": 2105, "number": 0, "label": "classical"} +{"file_name": "test_03677.png", "caption": "This music is instrumental. The tempo is fast with an intense, rigorous violin harmony, grim cello and keyboard harmony. The music is untiring, incessant, serious, grim, and staid. This music is a classical violin piece.", "data_idx": 2105, "number": 1, "label": "classical"} +{"file_name": "test_03678.png", "caption": "This song features a middle-eastern melody played on a flute. This song has no other instruments. There are no voices in this song. This is an amateur recording. This song can be played at a desert party.", "data_idx": 2107, "number": 0, "label": "jazz"} +{"file_name": "test_03679.png", "caption": "This song features a middle-eastern melody played on a flute. This song has no other instruments. There are no voices in this song. This is an amateur recording. This song can be played at a desert party.", "data_idx": 2107, "number": 1, "label": "jazz"} +{"file_name": "test_03680.png", "caption": "This song features a middle-eastern melody played on a flute. This song has no other instruments. There are no voices in this song. This is an amateur recording. This song can be played at a desert party.", "data_idx": 2107, "number": 2, "label": "jazz"} +{"file_name": "test_03681.png", "caption": "This song features a middle-eastern melody played on a flute. This song has no other instruments. There are no voices in this song. This is an amateur recording. This song can be played at a desert party.", "data_idx": 2107, "number": 3, "label": "jazz"} +{"file_name": "test_03682.png", "caption": "We hear a twangy electric guitar on which some arpeggiated chords are played. The music style is a bluesy country rock style.", "data_idx": 2109, "number": 0, "label": "blues"} +{"file_name": "test_03683.png", "caption": "We hear a twangy electric guitar on which some arpeggiated chords are played. The music style is a bluesy country rock style.", "data_idx": 2109, "number": 1, "label": "blues"} +{"file_name": "test_03684.png", "caption": "This is a box opening video. There is a male voice speaking and kids shouting. A rock music piece starts playing with a common sounding electric guitar tune and a simple acoustic drum beat. The atmosphere is generic.", "data_idx": 2110, "number": 0, "label": "hiphop"} +{"file_name": "test_03685.png", "caption": "This is a box opening video. There is a male voice speaking and kids shouting. A rock music piece starts playing with a common sounding electric guitar tune and a simple acoustic drum beat. The atmosphere is generic.", "data_idx": 2110, "number": 1, "label": "hiphop"} +{"file_name": "test_03686.png", "caption": "This is a box opening video. There is a male voice speaking and kids shouting. A rock music piece starts playing with a common sounding electric guitar tune and a simple acoustic drum beat. The atmosphere is generic.", "data_idx": 2110, "number": 2, "label": "hiphop"} +{"file_name": "test_03687.png", "caption": "This is a box opening video. There is a male voice speaking and kids shouting. A rock music piece starts playing with a common sounding electric guitar tune and a simple acoustic drum beat. The atmosphere is generic.", "data_idx": 2110, "number": 3, "label": "hiphop"} +{"file_name": "test_03688.png", "caption": "This audio contains someone playing an upright bass with a bow creating a dissonant melody and tension. This song may be playing at a live concert.", "data_idx": 2113, "number": 0, "label": "jazz"} +{"file_name": "test_03689.png", "caption": "This audio contains someone playing an upright bass with a bow creating a dissonant melody and tension. This song may be playing at a live concert.", "data_idx": 2113, "number": 1, "label": "jazz"} +{"file_name": "test_03690.png", "caption": "This audio contains someone playing an upright bass with a bow creating a dissonant melody and tension. This song may be playing at a live concert.", "data_idx": 2113, "number": 2, "label": "jazz"} +{"file_name": "test_03691.png", "caption": "This audio contains someone playing an upright bass with a bow creating a dissonant melody and tension. This song may be playing at a live concert.", "data_idx": 2113, "number": 3, "label": "jazz"} +{"file_name": "test_03692.png", "caption": "This audio contains a fast complex drumpart playing along with a synth lead sound playing a complex melody in a high pitch. Then the song changes to a more calm part with a piano before changing back to action with a distorted e-guitar playing along the low notes with a e-bass. This song sounds very fast paced and may be playing in an arcade fighting game.", "data_idx": 2114, "number": 0, "label": "metal"} +{"file_name": "test_03693.png", "caption": "This audio contains a fast complex drumpart playing along with a synth lead sound playing a complex melody in a high pitch. Then the song changes to a more calm part with a piano before changing back to action with a distorted e-guitar playing along the low notes with a e-bass. This song sounds very fast paced and may be playing in an arcade fighting game.", "data_idx": 2114, "number": 1, "label": "metal"} +{"file_name": "test_03694.png", "caption": "This audio contains a fast complex drumpart playing along with a synth lead sound playing a complex melody in a high pitch. Then the song changes to a more calm part with a piano before changing back to action with a distorted e-guitar playing along the low notes with a e-bass. This song sounds very fast paced and may be playing in an arcade fighting game.", "data_idx": 2114, "number": 2, "label": "metal"} +{"file_name": "test_03695.png", "caption": "This audio contains a fast complex drumpart playing along with a synth lead sound playing a complex melody in a high pitch. Then the song changes to a more calm part with a piano before changing back to action with a distorted e-guitar playing along the low notes with a e-bass. This song sounds very fast paced and may be playing in an arcade fighting game.", "data_idx": 2114, "number": 3, "label": "metal"} +{"file_name": "test_03696.png", "caption": "The low quality recording features a metallic scraping sound effect, soft scratching sound effect, water leaking sound effect, breathy flute melody and birds chirping sound effects. It sounds relaxing and calming.", "data_idx": 2117, "number": 0, "label": "jazz"} +{"file_name": "test_03697.png", "caption": "The low quality recording features a metallic scraping sound effect, soft scratching sound effect, water leaking sound effect, breathy flute melody and birds chirping sound effects. It sounds relaxing and calming.", "data_idx": 2117, "number": 1, "label": "jazz"} +{"file_name": "test_03698.png", "caption": "The low quality recording features a metallic scraping sound effect, soft scratching sound effect, water leaking sound effect, breathy flute melody and birds chirping sound effects. It sounds relaxing and calming.", "data_idx": 2117, "number": 2, "label": "jazz"} +{"file_name": "test_03699.png", "caption": "The low quality recording features a metallic scraping sound effect, soft scratching sound effect, water leaking sound effect, breathy flute melody and birds chirping sound effects. It sounds relaxing and calming.", "data_idx": 2117, "number": 3, "label": "jazz"} +{"file_name": "test_03700.png", "caption": "The song is an instrumental. The tempo is medium, with a dj creating vinyl scratch tones to a steady drumming rhythm, groovy bass line and a keyboard accompaniment. The song is youthful and groovy. The song is a techno dance rhythm.", "data_idx": 2120, "number": 0, "label": "reggae"} +{"file_name": "test_03701.png", "caption": "The song is an instrumental. The tempo is medium, with a dj creating vinyl scratch tones to a steady drumming rhythm, groovy bass line and a keyboard accompaniment. The song is youthful and groovy. The song is a techno dance rhythm.", "data_idx": 2120, "number": 1, "label": "reggae"} +{"file_name": "test_03702.png", "caption": "The song is an instrumental. The tempo is medium, with a dj creating vinyl scratch tones to a steady drumming rhythm, groovy bass line and a keyboard accompaniment. The song is youthful and groovy. The song is a techno dance rhythm.", "data_idx": 2120, "number": 2, "label": "reggae"} +{"file_name": "test_03703.png", "caption": "The song is an instrumental. The tempo is medium, with a dj creating vinyl scratch tones to a steady drumming rhythm, groovy bass line and a keyboard accompaniment. The song is youthful and groovy. The song is a techno dance rhythm.", "data_idx": 2120, "number": 3, "label": "reggae"} +{"file_name": "test_03704.png", "caption": "The low quality recording features a drums solo at the very beginning of the loop, after which a pop song starts playing and it consists of a passionate female vocal singing over buzzy synth lead melody. The drums solo contains snare roll and shimmering cymbals. Overall it sounds exciting.", "data_idx": 2124, "number": 0, "label": "hiphop"} +{"file_name": "test_03705.png", "caption": "The low quality recording features a drums solo at the very beginning of the loop, after which a pop song starts playing and it consists of a passionate female vocal singing over buzzy synth lead melody. The drums solo contains snare roll and shimmering cymbals. Overall it sounds exciting.", "data_idx": 2124, "number": 1, "label": "hiphop"} +{"file_name": "test_03706.png", "caption": "The low quality recording features a reverberant electric guitar melody. It sounds mellow, chill, relaxing and like a player is trying out his reverb pedals. The recording is noisy and in mono.", "data_idx": 2126, "number": 0, "label": "classical"} +{"file_name": "test_03707.png", "caption": "The low quality recording features a reverberant electric guitar melody. It sounds mellow, chill, relaxing and like a player is trying out his reverb pedals. The recording is noisy and in mono.", "data_idx": 2126, "number": 1, "label": "classical"} +{"file_name": "test_03708.png", "caption": "The low quality recording features a reverberant electric guitar melody. It sounds mellow, chill, relaxing and like a player is trying out his reverb pedals. The recording is noisy and in mono.", "data_idx": 2126, "number": 2, "label": "classical"} +{"file_name": "test_03709.png", "caption": "The low quality recording features a reverberant electric guitar melody. It sounds mellow, chill, relaxing and like a player is trying out his reverb pedals. The recording is noisy and in mono.", "data_idx": 2126, "number": 3, "label": "classical"} +{"file_name": "test_03710.png", "caption": "The low quality recording features a breathy flute melody playing over acoustic rhythm guitar. The recording is noisy, in mono and it sounds passionate and easygoing.", "data_idx": 2127, "number": 0, "label": "classical"} +{"file_name": "test_03711.png", "caption": "The low quality recording features a breathy flute melody playing over acoustic rhythm guitar. The recording is noisy, in mono and it sounds passionate and easygoing.", "data_idx": 2127, "number": 1, "label": "classical"} +{"file_name": "test_03712.png", "caption": "This techno song features a female voice singing the main melody. This is accompanied by programmed percussion playing a techno beat. The kick is played at every count. The hi-hi-hat is played on every 'and' of the count. The bass plays a disco pattern using the root notes of the chords being played. Synth bursts are played in between lines. This song can be played in a club. The audio quality is low.", "data_idx": 2128, "number": 0, "label": "reggae"} +{"file_name": "test_03713.png", "caption": "This techno song features a female voice singing the main melody. This is accompanied by programmed percussion playing a techno beat. The kick is played at every count. The hi-hi-hat is played on every 'and' of the count. The bass plays a disco pattern using the root notes of the chords being played. Synth bursts are played in between lines. This song can be played in a club. The audio quality is low.", "data_idx": 2128, "number": 1, "label": "reggae"} +{"file_name": "test_03714.png", "caption": "This techno song features a female voice singing the main melody. This is accompanied by programmed percussion playing a techno beat. The kick is played at every count. The hi-hi-hat is played on every 'and' of the count. The bass plays a disco pattern using the root notes of the chords being played. Synth bursts are played in between lines. This song can be played in a club. The audio quality is low.", "data_idx": 2128, "number": 2, "label": "reggae"} +{"file_name": "test_03715.png", "caption": "This techno song features a female voice singing the main melody. This is accompanied by programmed percussion playing a techno beat. The kick is played at every count. The hi-hi-hat is played on every 'and' of the count. The bass plays a disco pattern using the root notes of the chords being played. Synth bursts are played in between lines. This song can be played in a club. The audio quality is low.", "data_idx": 2128, "number": 3, "label": "reggae"} +{"file_name": "test_03716.png", "caption": "The song is an instrumental. The tempo is medium with various horns like trumpets, trombones and tubas playing blaring lots in harmony. The song is mysterious and ominous in nature. The song is a wildlife documentary soundtrack.", "data_idx": 2130, "number": 0, "label": "hiphop"} +{"file_name": "test_03717.png", "caption": "The song is an instrumental. The tempo is medium with various horns like trumpets, trombones and tubas playing blaring lots in harmony. The song is mysterious and ominous in nature. The song is a wildlife documentary soundtrack.", "data_idx": 2130, "number": 1, "label": "hiphop"} +{"file_name": "test_03718.png", "caption": "The song is an instrumental. The tempo is medium with various horns like trumpets, trombones and tubas playing blaring lots in harmony. The song is mysterious and ominous in nature. The song is a wildlife documentary soundtrack.", "data_idx": 2130, "number": 2, "label": "hiphop"} +{"file_name": "test_03719.png", "caption": "The song is an instrumental. The tempo is medium with various horns like trumpets, trombones and tubas playing blaring lots in harmony. The song is mysterious and ominous in nature. The song is a wildlife documentary soundtrack.", "data_idx": 2130, "number": 3, "label": "hiphop"} +{"file_name": "test_03720.png", "caption": "A percussionist plays various drum rhythms at a medium tempo. The tempo is me doom with no harmony instruments. The song is exciting and energetic. The audio quality is poor and sounds like a music tutorial for drummers.", "data_idx": 2131, "number": 0, "label": "jazz"} +{"file_name": "test_03721.png", "caption": "A percussionist plays various drum rhythms at a medium tempo. The tempo is me doom with no harmony instruments. The song is exciting and energetic. The audio quality is poor and sounds like a music tutorial for drummers.", "data_idx": 2131, "number": 1, "label": "jazz"} +{"file_name": "test_03722.png", "caption": "This is a hardcore hip-hop/gangsta rap music piece. There are male vocals taking turns rapping and when they are not rapping they are shouting ad-libs. There is a fuzzy synth bass playing the repeated melodic theme of the beat while the rhythm consists of an electronic drum beat with gunshot effects every now and then. The atmosphere is urban and violent. This piece could be included in the soundtrack of a crime movie that takes place in the big city. It could also be used in the soundtrack of a crime video game.", "data_idx": 2133, "number": 0, "label": "hiphop"} +{"file_name": "test_03723.png", "caption": "This is a hardcore hip-hop/gangsta rap music piece. There are male vocals taking turns rapping and when they are not rapping they are shouting ad-libs. There is a fuzzy synth bass playing the repeated melodic theme of the beat while the rhythm consists of an electronic drum beat with gunshot effects every now and then. The atmosphere is urban and violent. This piece could be included in the soundtrack of a crime movie that takes place in the big city. It could also be used in the soundtrack of a crime video game.", "data_idx": 2133, "number": 1, "label": "hiphop"} +{"file_name": "test_03724.png", "caption": "This is a hardcore hip-hop/gangsta rap music piece. There are male vocals taking turns rapping and when they are not rapping they are shouting ad-libs. There is a fuzzy synth bass playing the repeated melodic theme of the beat while the rhythm consists of an electronic drum beat with gunshot effects every now and then. The atmosphere is urban and violent. This piece could be included in the soundtrack of a crime movie that takes place in the big city. It could also be used in the soundtrack of a crime video game.", "data_idx": 2133, "number": 2, "label": "hiphop"} +{"file_name": "test_03725.png", "caption": "This is a hardcore hip-hop/gangsta rap music piece. There are male vocals taking turns rapping and when they are not rapping they are shouting ad-libs. There is a fuzzy synth bass playing the repeated melodic theme of the beat while the rhythm consists of an electronic drum beat with gunshot effects every now and then. The atmosphere is urban and violent. This piece could be included in the soundtrack of a crime movie that takes place in the big city. It could also be used in the soundtrack of a crime video game.", "data_idx": 2133, "number": 3, "label": "hiphop"} +{"file_name": "test_03726.png", "caption": "Low-fidelity recording of a female singer displaying vocal virtuosity and melisma, accompaniment by strummed steel string acoustic guitar.", "data_idx": 2135, "number": 0, "label": "classical"} +{"file_name": "test_03727.png", "caption": "Low-fidelity recording of a female singer displaying vocal virtuosity and melisma, accompaniment by strummed steel string acoustic guitar.", "data_idx": 2135, "number": 1, "label": "classical"} +{"file_name": "test_03728.png", "caption": "Low-fidelity recording of a female singer displaying vocal virtuosity and melisma, accompaniment by strummed steel string acoustic guitar.", "data_idx": 2135, "number": 2, "label": "classical"} +{"file_name": "test_03729.png", "caption": "Low-fidelity recording of a female singer displaying vocal virtuosity and melisma, accompaniment by strummed steel string acoustic guitar.", "data_idx": 2135, "number": 3, "label": "classical"} +{"file_name": "test_03730.png", "caption": "This music is an electronic dance instrumental. The tempo is fast with synthesiser arrangements, digital drumming, DJ mixer and electronic effects. The sound quality is inferior and muffled with static and booming sounds. The performance is live with ambient sounds of people whistling, cheering and talking. This is an Electro Pop instrumental.", "data_idx": 2136, "number": 0, "label": "hiphop"} +{"file_name": "test_03731.png", "caption": "This music is an electronic dance instrumental. The tempo is fast with synthesiser arrangements, digital drumming, DJ mixer and electronic effects. The sound quality is inferior and muffled with static and booming sounds. The performance is live with ambient sounds of people whistling, cheering and talking. This is an Electro Pop instrumental.", "data_idx": 2136, "number": 1, "label": "hiphop"} +{"file_name": "test_03732.png", "caption": "This music is an electronic dance instrumental. The tempo is fast with synthesiser arrangements, digital drumming, DJ mixer and electronic effects. The sound quality is inferior and muffled with static and booming sounds. The performance is live with ambient sounds of people whistling, cheering and talking. This is an Electro Pop instrumental.", "data_idx": 2136, "number": 2, "label": "hiphop"} +{"file_name": "test_03733.png", "caption": "This music is an electronic dance instrumental. The tempo is fast with synthesiser arrangements, digital drumming, DJ mixer and electronic effects. The sound quality is inferior and muffled with static and booming sounds. The performance is live with ambient sounds of people whistling, cheering and talking. This is an Electro Pop instrumental.", "data_idx": 2136, "number": 3, "label": "hiphop"} +{"file_name": "test_03734.png", "caption": "This is an instrument showcase jam. Different tracks are being played to show the features of a keyboard. Initially, there is a synth pad playing. Then, an acoustic sounding drum beat and a groovy bass line starts playing in the background of a brass sounding melody. The sounds are mostly generic. Parts of this recording could be sampled to be used in advertisement jingles.", "data_idx": 2139, "number": 0, "label": "reggae"} +{"file_name": "test_03735.png", "caption": "This is an instrument showcase jam. Different tracks are being played to show the features of a keyboard. Initially, there is a synth pad playing. Then, an acoustic sounding drum beat and a groovy bass line starts playing in the background of a brass sounding melody. The sounds are mostly generic. Parts of this recording could be sampled to be used in advertisement jingles.", "data_idx": 2139, "number": 1, "label": "reggae"} +{"file_name": "test_03736.png", "caption": "This is an instrument showcase jam. Different tracks are being played to show the features of a keyboard. Initially, there is a synth pad playing. Then, an acoustic sounding drum beat and a groovy bass line starts playing in the background of a brass sounding melody. The sounds are mostly generic. Parts of this recording could be sampled to be used in advertisement jingles.", "data_idx": 2139, "number": 2, "label": "reggae"} +{"file_name": "test_03737.png", "caption": "This is an instrument showcase jam. Different tracks are being played to show the features of a keyboard. Initially, there is a synth pad playing. Then, an acoustic sounding drum beat and a groovy bass line starts playing in the background of a brass sounding melody. The sounds are mostly generic. Parts of this recording could be sampled to be used in advertisement jingles.", "data_idx": 2139, "number": 3, "label": "reggae"} +{"file_name": "test_03738.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocals singing over shimmering hi hats, snappy snare, punchy kick, groovy bass, brass melody and funky electric guitar chords. It sounds chill and easygoing.", "data_idx": 2140, "number": 0, "label": "disco"} +{"file_name": "test_03739.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocals singing over shimmering hi hats, snappy snare, punchy kick, groovy bass, brass melody and funky electric guitar chords. It sounds chill and easygoing.", "data_idx": 2140, "number": 1, "label": "disco"} +{"file_name": "test_03740.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocals singing over shimmering hi hats, snappy snare, punchy kick, groovy bass, brass melody and funky electric guitar chords. It sounds chill and easygoing.", "data_idx": 2140, "number": 2, "label": "disco"} +{"file_name": "test_03741.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocals singing over shimmering hi hats, snappy snare, punchy kick, groovy bass, brass melody and funky electric guitar chords. It sounds chill and easygoing.", "data_idx": 2140, "number": 3, "label": "disco"} +{"file_name": "test_03742.png", "caption": "Someone is strumming chords on a distorted e-guitar while someone is playing a fast solo up the fretboard with another e-guitar. This song may be playing practicing solos at home.", "data_idx": 2142, "number": 0, "label": "classical"} +{"file_name": "test_03743.png", "caption": "Someone is strumming chords on a distorted e-guitar while someone is playing a fast solo up the fretboard with another e-guitar. This song may be playing practicing solos at home.", "data_idx": 2142, "number": 1, "label": "classical"} +{"file_name": "test_03744.png", "caption": "Someone is strumming chords on a distorted e-guitar while someone is playing a fast solo up the fretboard with another e-guitar. This song may be playing practicing solos at home.", "data_idx": 2142, "number": 2, "label": "classical"} +{"file_name": "test_03745.png", "caption": "Someone is strumming chords on a distorted e-guitar while someone is playing a fast solo up the fretboard with another e-guitar. This song may be playing practicing solos at home.", "data_idx": 2142, "number": 3, "label": "classical"} +{"file_name": "test_03746.png", "caption": "The Pop song features a passionate male vocal, alongside wide harmonizing background vocals, singing over clapping, shimmering cymbals, groovy bass and soft kick hits. It sounds addictive, happy and joyful.", "data_idx": 2145, "number": 0, "label": "reggae"} +{"file_name": "test_03747.png", "caption": "The Pop song features a passionate male vocal, alongside wide harmonizing background vocals, singing over clapping, shimmering cymbals, groovy bass and soft kick hits. It sounds addictive, happy and joyful.", "data_idx": 2145, "number": 1, "label": "reggae"} +{"file_name": "test_03748.png", "caption": "The Pop song features a passionate male vocal, alongside wide harmonizing background vocals, singing over clapping, shimmering cymbals, groovy bass and soft kick hits. It sounds addictive, happy and joyful.", "data_idx": 2145, "number": 2, "label": "reggae"} +{"file_name": "test_03749.png", "caption": "The Pop song features a passionate male vocal, alongside wide harmonizing background vocals, singing over clapping, shimmering cymbals, groovy bass and soft kick hits. It sounds addictive, happy and joyful.", "data_idx": 2145, "number": 3, "label": "reggae"} +{"file_name": "test_03750.png", "caption": "This is a shofar being played. Two notes are being played. The first note is short and the second note is played at a higher pitch and for a longer duration. There is no voice in this song. There are no other instruments in this song. This song can be played in a movie scene where soldiers are given instructions for a battle.", "data_idx": 2147, "number": 0, "label": "jazz"} +{"file_name": "test_03751.png", "caption": "This is a shofar being played. Two notes are being played. The first note is short and the second note is played at a higher pitch and for a longer duration. There is no voice in this song. There are no other instruments in this song. This song can be played in a movie scene where soldiers are given instructions for a battle.", "data_idx": 2147, "number": 1, "label": "jazz"} +{"file_name": "test_03752.png", "caption": "This is a shofar being played. Two notes are being played. The first note is short and the second note is played at a higher pitch and for a longer duration. There is no voice in this song. There are no other instruments in this song. This song can be played in a movie scene where soldiers are given instructions for a battle.", "data_idx": 2147, "number": 2, "label": "jazz"} +{"file_name": "test_03753.png", "caption": "This is a shofar being played. Two notes are being played. The first note is short and the second note is played at a higher pitch and for a longer duration. There is no voice in this song. There are no other instruments in this song. This song can be played in a movie scene where soldiers are given instructions for a battle.", "data_idx": 2147, "number": 3, "label": "jazz"} +{"file_name": "test_03754.png", "caption": "Here we have two saxophonists playing baritone saxophones. They play a jazzy bebop song that's groovy and light-hearted in its tone.", "data_idx": 2148, "number": 0, "label": "classical"} +{"file_name": "test_03755.png", "caption": "Here we have two saxophonists playing baritone saxophones. They play a jazzy bebop song that's groovy and light-hearted in its tone.", "data_idx": 2148, "number": 1, "label": "classical"} +{"file_name": "test_03756.png", "caption": "Here we have two saxophonists playing baritone saxophones. They play a jazzy bebop song that's groovy and light-hearted in its tone.", "data_idx": 2148, "number": 2, "label": "classical"} +{"file_name": "test_03757.png", "caption": "Here we have two saxophonists playing baritone saxophones. They play a jazzy bebop song that's groovy and light-hearted in its tone.", "data_idx": 2148, "number": 3, "label": "classical"} +{"file_name": "test_03758.png", "caption": "This music is instrumental. The tempo is slow with a lush guitar harmony with the sound of switches being turned on and off. The sound is rich, deep, intense and dense. This is a review audio between a Tortuga Martini vs an Analog Martini.", "data_idx": 2152, "number": 0, "label": "country"} +{"file_name": "test_03759.png", "caption": "This music is instrumental. The tempo is slow with a lush guitar harmony with the sound of switches being turned on and off. The sound is rich, deep, intense and dense. This is a review audio between a Tortuga Martini vs an Analog Martini.", "data_idx": 2152, "number": 1, "label": "country"} +{"file_name": "test_03760.png", "caption": "This music is instrumental. The tempo is slow with a lush guitar harmony with the sound of switches being turned on and off. The sound is rich, deep, intense and dense. This is a review audio between a Tortuga Martini vs an Analog Martini.", "data_idx": 2152, "number": 2, "label": "country"} +{"file_name": "test_03761.png", "caption": "This music is instrumental. The tempo is slow with a lush guitar harmony with the sound of switches being turned on and off. The sound is rich, deep, intense and dense. This is a review audio between a Tortuga Martini vs an Analog Martini.", "data_idx": 2152, "number": 3, "label": "country"} +{"file_name": "test_03762.png", "caption": "This is a live classical music performance. The piece is being performed by a brass orchestra. There is a trombone playing the lead melody while other trombones and a tuba play the bass backing. The atmosphere is epic. This piece could be playing in the soundtrack of a historical drama movie during the scenes of an army marching towards the enemy territory.", "data_idx": 2153, "number": 0, "label": "jazz"} +{"file_name": "test_03763.png", "caption": "This is a live classical music performance. The piece is being performed by a brass orchestra. There is a trombone playing the lead melody while other trombones and a tuba play the bass backing. The atmosphere is epic. This piece could be playing in the soundtrack of a historical drama movie during the scenes of an army marching towards the enemy territory.", "data_idx": 2153, "number": 1, "label": "jazz"} +{"file_name": "test_03764.png", "caption": "This is a live classical music performance. The piece is being performed by a brass orchestra. There is a trombone playing the lead melody while other trombones and a tuba play the bass backing. The atmosphere is epic. This piece could be playing in the soundtrack of a historical drama movie during the scenes of an army marching towards the enemy territory.", "data_idx": 2153, "number": 2, "label": "jazz"} +{"file_name": "test_03765.png", "caption": "This is a live classical music performance. The piece is being performed by a brass orchestra. There is a trombone playing the lead melody while other trombones and a tuba play the bass backing. The atmosphere is epic. This piece could be playing in the soundtrack of a historical drama movie during the scenes of an army marching towards the enemy territory.", "data_idx": 2153, "number": 3, "label": "jazz"} +{"file_name": "test_03766.png", "caption": "This is an indie rock/pop rock music piece. There is a male vocalist singing melodically with a telephone vocal effect. The melodic background consists of an electric guitar and a bass guitar. The rhythm is played by a simple acoustic drum beat. The atmosphere is groovy. This piece could be used during a badass scene in a thriller movie.", "data_idx": 2156, "number": 0, "label": "rock"} +{"file_name": "test_03767.png", "caption": "This is an indie rock/pop rock music piece. There is a male vocalist singing melodically with a telephone vocal effect. The melodic background consists of an electric guitar and a bass guitar. The rhythm is played by a simple acoustic drum beat. The atmosphere is groovy. This piece could be used during a badass scene in a thriller movie.", "data_idx": 2156, "number": 1, "label": "rock"} +{"file_name": "test_03768.png", "caption": "This is an indie rock/pop rock music piece. There is a male vocalist singing melodically with a telephone vocal effect. The melodic background consists of an electric guitar and a bass guitar. The rhythm is played by a simple acoustic drum beat. The atmosphere is groovy. This piece could be used during a badass scene in a thriller movie.", "data_idx": 2156, "number": 2, "label": "rock"} +{"file_name": "test_03769.png", "caption": "This is an indie rock/pop rock music piece. There is a male vocalist singing melodically with a telephone vocal effect. The melodic background consists of an electric guitar and a bass guitar. The rhythm is played by a simple acoustic drum beat. The atmosphere is groovy. This piece could be used during a badass scene in a thriller movie.", "data_idx": 2156, "number": 3, "label": "rock"} +{"file_name": "test_03770.png", "caption": "The low quality recording features a flat female vocal shortly talking on a very noisy microphone, after which a song fades in. The song consists of soft, reverberant female vocal singing over echoing dark rimshots, punchy kick and groovy piano melody. Overall it has a dark and mellow vibe to it.", "data_idx": 2158, "number": 0, "label": "pop"} +{"file_name": "test_03771.png", "caption": "The low quality recording features a flat female vocal shortly talking on a very noisy microphone, after which a song fades in. The song consists of soft, reverberant female vocal singing over echoing dark rimshots, punchy kick and groovy piano melody. Overall it has a dark and mellow vibe to it.", "data_idx": 2158, "number": 1, "label": "pop"} +{"file_name": "test_03772.png", "caption": "The low quality recording features a flat female vocal shortly talking on a very noisy microphone, after which a song fades in. The song consists of soft, reverberant female vocal singing over echoing dark rimshots, punchy kick and groovy piano melody. Overall it has a dark and mellow vibe to it.", "data_idx": 2158, "number": 2, "label": "pop"} +{"file_name": "test_03773.png", "caption": "The low quality recording features a flat female vocal shortly talking on a very noisy microphone, after which a song fades in. The song consists of soft, reverberant female vocal singing over echoing dark rimshots, punchy kick and groovy piano melody. Overall it has a dark and mellow vibe to it.", "data_idx": 2158, "number": 3, "label": "pop"} +{"file_name": "test_03774.png", "caption": "The low quality recording features an arpeggiated harp melody playing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 2161, "number": 0, "label": "classical"} +{"file_name": "test_03775.png", "caption": "The low quality recording features an arpeggiated harp melody playing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 2161, "number": 1, "label": "classical"} +{"file_name": "test_03776.png", "caption": "The low quality recording features an arpeggiated harp melody playing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 2161, "number": 2, "label": "classical"} +{"file_name": "test_03777.png", "caption": "The low quality recording features an arpeggiated harp melody playing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 2161, "number": 3, "label": "classical"} +{"file_name": "test_03778.png", "caption": "This audio contains someone playing a melody on a violin. A female voice is singing along in a high pitch. The background is filled with percussive instruments and a tambourine. This song may be playing during the celebration.", "data_idx": 2168, "number": 0, "label": "metal"} +{"file_name": "test_03779.png", "caption": "This audio contains someone playing a melody on a violin. A female voice is singing along in a high pitch. The background is filled with percussive instruments and a tambourine. This song may be playing during the celebration.", "data_idx": 2168, "number": 1, "label": "metal"} +{"file_name": "test_03780.png", "caption": "This audio contains someone playing a melody on a violin. A female voice is singing along in a high pitch. The background is filled with percussive instruments and a tambourine. This song may be playing during the celebration.", "data_idx": 2168, "number": 2, "label": "metal"} +{"file_name": "test_03781.png", "caption": "This audio contains someone playing a melody on a violin. A female voice is singing along in a high pitch. The background is filled with percussive instruments and a tambourine. This song may be playing during the celebration.", "data_idx": 2168, "number": 3, "label": "metal"} +{"file_name": "test_03782.png", "caption": "This R&B song features a male voice singing the main melody in falsetto. There are other male voices singing backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords without any flourishes or embellishments. A piano plays an arpeggiated pattern that changes with the chords of the song. A guitar strums chords using upstrokes. The mood of this song is romantic. The melody has a motown feel. This song can be played at the end credits of a romantic movie.", "data_idx": 2169, "number": 0, "label": "disco"} +{"file_name": "test_03783.png", "caption": "This R&B song features a male voice singing the main melody in falsetto. There are other male voices singing backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords without any flourishes or embellishments. A piano plays an arpeggiated pattern that changes with the chords of the song. A guitar strums chords using upstrokes. The mood of this song is romantic. The melody has a motown feel. This song can be played at the end credits of a romantic movie.", "data_idx": 2169, "number": 1, "label": "disco"} +{"file_name": "test_03784.png", "caption": "This R&B song features a male voice singing the main melody in falsetto. There are other male voices singing backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords without any flourishes or embellishments. A piano plays an arpeggiated pattern that changes with the chords of the song. A guitar strums chords using upstrokes. The mood of this song is romantic. The melody has a motown feel. This song can be played at the end credits of a romantic movie.", "data_idx": 2169, "number": 2, "label": "disco"} +{"file_name": "test_03785.png", "caption": "This R&B song features a male voice singing the main melody in falsetto. There are other male voices singing backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords without any flourishes or embellishments. A piano plays an arpeggiated pattern that changes with the chords of the song. A guitar strums chords using upstrokes. The mood of this song is romantic. The melody has a motown feel. This song can be played at the end credits of a romantic movie.", "data_idx": 2169, "number": 3, "label": "disco"} +{"file_name": "test_03786.png", "caption": "The low quality recording features a shimmering, widely spread, bell melody. It sounds soft, mellow and haunting. The recording is a bit noisy.", "data_idx": 2170, "number": 0, "label": "pop"} +{"file_name": "test_03787.png", "caption": "The low quality recording features a shimmering, widely spread, bell melody. It sounds soft, mellow and haunting. The recording is a bit noisy.", "data_idx": 2170, "number": 1, "label": "pop"} +{"file_name": "test_03788.png", "caption": "The low quality recording features a shimmering, widely spread, bell melody. It sounds soft, mellow and haunting. The recording is a bit noisy.", "data_idx": 2170, "number": 2, "label": "pop"} +{"file_name": "test_03789.png", "caption": "The low quality recording features a shimmering, widely spread, bell melody. It sounds soft, mellow and haunting. The recording is a bit noisy.", "data_idx": 2170, "number": 3, "label": "pop"} +{"file_name": "test_03790.png", "caption": "This audio contains someone playing a bass solo melody. In the background you can hear something that almost sounds like a dog barking. This song may be playing while listening to a live concert.", "data_idx": 2172, "number": 0, "label": "hiphop"} +{"file_name": "test_03791.png", "caption": "This audio contains someone playing a bass solo melody. In the background you can hear something that almost sounds like a dog barking. This song may be playing while listening to a live concert.", "data_idx": 2172, "number": 1, "label": "hiphop"} +{"file_name": "test_03792.png", "caption": "This audio contains someone playing a bass solo melody. In the background you can hear something that almost sounds like a dog barking. This song may be playing while listening to a live concert.", "data_idx": 2172, "number": 2, "label": "hiphop"} +{"file_name": "test_03793.png", "caption": "This audio contains someone playing a bass solo melody. In the background you can hear something that almost sounds like a dog barking. This song may be playing while listening to a live concert.", "data_idx": 2172, "number": 3, "label": "hiphop"} +{"file_name": "test_03794.png", "caption": "The low quality recording features a cover of a rock song and it contains an ukulele bass guitar. The recording is in mono and very noisy.", "data_idx": 2173, "number": 0, "label": "blues"} +{"file_name": "test_03795.png", "caption": "The low quality recording features a cover of a rock song and it contains an ukulele bass guitar. The recording is in mono and very noisy.", "data_idx": 2173, "number": 1, "label": "blues"} +{"file_name": "test_03796.png", "caption": "The low quality recording features a cover of a rock song and it contains an ukulele bass guitar. The recording is in mono and very noisy.", "data_idx": 2173, "number": 2, "label": "blues"} +{"file_name": "test_03797.png", "caption": "The low quality recording features a cover of a rock song and it contains an ukulele bass guitar. The recording is in mono and very noisy.", "data_idx": 2173, "number": 3, "label": "blues"} +{"file_name": "test_03798.png", "caption": "The song is an instrumental. The song is medium tempo with various Latin percussion playing groovily to the sounds of a Rhodes organ melody. The song is romantic and passionate. The soundtrack is a demonstration for a keyboard model.", "data_idx": 2176, "number": 0, "label": "hiphop"} +{"file_name": "test_03799.png", "caption": "The song is an instrumental. The song is medium tempo with various Latin percussion playing groovily to the sounds of a Rhodes organ melody. The song is romantic and passionate. The soundtrack is a demonstration for a keyboard model.", "data_idx": 2176, "number": 1, "label": "hiphop"} +{"file_name": "test_03800.png", "caption": "The song is an instrumental. The song is medium tempo with various Latin percussion playing groovily to the sounds of a Rhodes organ melody. The song is romantic and passionate. The soundtrack is a demonstration for a keyboard model.", "data_idx": 2176, "number": 2, "label": "hiphop"} +{"file_name": "test_03801.png", "caption": "The song is an instrumental. The song is medium tempo with various Latin percussion playing groovily to the sounds of a Rhodes organ melody. The song is romantic and passionate. The soundtrack is a demonstration for a keyboard model.", "data_idx": 2176, "number": 3, "label": "hiphop"} +{"file_name": "test_03802.png", "caption": "Someone is playing a melody on a zitar along with a shrutibox in the background. At the end male and female voices are chanting in the mid to high range and a percussive sound can be heard. This song may be playing live at a concert while meditating.", "data_idx": 2177, "number": 0, "label": "classical"} +{"file_name": "test_03803.png", "caption": "Someone is playing a melody on a zitar along with a shrutibox in the background. At the end male and female voices are chanting in the mid to high range and a percussive sound can be heard. This song may be playing live at a concert while meditating.", "data_idx": 2177, "number": 1, "label": "classical"} +{"file_name": "test_03804.png", "caption": "Someone is playing a melody on a zitar along with a shrutibox in the background. At the end male and female voices are chanting in the mid to high range and a percussive sound can be heard. This song may be playing live at a concert while meditating.", "data_idx": 2177, "number": 2, "label": "classical"} +{"file_name": "test_03805.png", "caption": "Someone is playing a melody on a zitar along with a shrutibox in the background. At the end male and female voices are chanting in the mid to high range and a percussive sound can be heard. This song may be playing live at a concert while meditating.", "data_idx": 2177, "number": 3, "label": "classical"} +{"file_name": "test_03806.png", "caption": "A male singer sings these whispering vocals. The song is medium fast tempo with a fast metal drumming rhythm, percussive bass line, keyboard accompaniment and various percussion hits. The song is tense and full of suspense. The song is a game soundtrack.", "data_idx": 2178, "number": 0, "label": "metal"} +{"file_name": "test_03807.png", "caption": "A male singer sings these whispering vocals. The song is medium fast tempo with a fast metal drumming rhythm, percussive bass line, keyboard accompaniment and various percussion hits. The song is tense and full of suspense. The song is a game soundtrack.", "data_idx": 2178, "number": 1, "label": "metal"} +{"file_name": "test_03808.png", "caption": "The song is an instrumental. The tempo is medium with a strong marching drum rhythm, with cymbal crashes and bass drum kicks, percussive bass line and amplified guitar playing rhythm. The audio quality is pristine and the soundtrack is high on adrenaline.", "data_idx": 2180, "number": 0, "label": "metal"} +{"file_name": "test_03809.png", "caption": "The song is an instrumental. The tempo is medium with a strong marching drum rhythm, with cymbal crashes and bass drum kicks, percussive bass line and amplified guitar playing rhythm. The audio quality is pristine and the soundtrack is high on adrenaline.", "data_idx": 2180, "number": 1, "label": "metal"} +{"file_name": "test_03810.png", "caption": "The song is an instrumental. The tempo is medium with a strong marching drum rhythm, with cymbal crashes and bass drum kicks, percussive bass line and amplified guitar playing rhythm. The audio quality is pristine and the soundtrack is high on adrenaline.", "data_idx": 2180, "number": 2, "label": "metal"} +{"file_name": "test_03811.png", "caption": "The song is an instrumental. The tempo is medium with a strong marching drum rhythm, with cymbal crashes and bass drum kicks, percussive bass line and amplified guitar playing rhythm. The audio quality is pristine and the soundtrack is high on adrenaline.", "data_idx": 2180, "number": 3, "label": "metal"} +{"file_name": "test_03812.png", "caption": "The low quality recording features a flat male vocal talking over a double bass slap. The recording is noisy and in mono.", "data_idx": 2181, "number": 0, "label": "blues"} +{"file_name": "test_03813.png", "caption": "The low quality recording features a flat male vocal talking over a double bass slap. The recording is noisy and in mono.", "data_idx": 2181, "number": 1, "label": "blues"} +{"file_name": "test_03814.png", "caption": "The low quality recording features a flat male vocal talking over a double bass slap. The recording is noisy and in mono.", "data_idx": 2181, "number": 2, "label": "blues"} +{"file_name": "test_03815.png", "caption": "The low quality recording features a flat male vocal talking over a double bass slap. The recording is noisy and in mono.", "data_idx": 2181, "number": 3, "label": "blues"} +{"file_name": "test_03816.png", "caption": "The song is an instrumental. The song is medium tempo and tempo changes occur later, with piano accompaniment, guitar solo, chord changes, steady drumming rhythm, rhythm guitar, and strong bass line . The song is an iconic rock hit and has a bad audio quality.", "data_idx": 2185, "number": 0, "label": "rock"} +{"file_name": "test_03817.png", "caption": "The song is an instrumental. The song is medium tempo and tempo changes occur later, with piano accompaniment, guitar solo, chord changes, steady drumming rhythm, rhythm guitar, and strong bass line . The song is an iconic rock hit and has a bad audio quality.", "data_idx": 2185, "number": 1, "label": "rock"} +{"file_name": "test_03818.png", "caption": "The song is an instrumental. The song is medium tempo and tempo changes occur later, with piano accompaniment, guitar solo, chord changes, steady drumming rhythm, rhythm guitar, and strong bass line . The song is an iconic rock hit and has a bad audio quality.", "data_idx": 2185, "number": 2, "label": "rock"} +{"file_name": "test_03819.png", "caption": "The song is an instrumental. The song is medium tempo and tempo changes occur later, with piano accompaniment, guitar solo, chord changes, steady drumming rhythm, rhythm guitar, and strong bass line . The song is an iconic rock hit and has a bad audio quality.", "data_idx": 2185, "number": 3, "label": "rock"} +{"file_name": "test_03820.png", "caption": "The low quality recording features a saxophone solo melody being played. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 2188, "number": 0, "label": "jazz"} +{"file_name": "test_03821.png", "caption": "The low quality recording features a saxophone solo melody being played. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 2188, "number": 1, "label": "jazz"} +{"file_name": "test_03822.png", "caption": "The low quality recording features a saxophone solo melody being played. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 2188, "number": 2, "label": "jazz"} +{"file_name": "test_03823.png", "caption": "The low quality recording features a saxophone solo melody being played. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 2188, "number": 3, "label": "jazz"} +{"file_name": "test_03824.png", "caption": "The low quality recording features an arpeggiated acoustic guitar melody, shimmering bells melody, plucked strings melody and sustained strings melody, followed by chime bells. There are some crowd cheering noises in the background. It sounds emotional and joyful.", "data_idx": 2190, "number": 0, "label": "hiphop"} +{"file_name": "test_03825.png", "caption": "The low quality recording features an arpeggiated acoustic guitar melody, shimmering bells melody, plucked strings melody and sustained strings melody, followed by chime bells. There are some crowd cheering noises in the background. It sounds emotional and joyful.", "data_idx": 2190, "number": 1, "label": "hiphop"} +{"file_name": "test_03826.png", "caption": "The low quality recording features a cover of a rock song and it consists of a passionate girl vocal singing over acoustic rhythm guitar chords and simple bass guitar. It sounds passionate, emotional, heartfelt, mellow and soft.", "data_idx": 2191, "number": 0, "label": "pop"} +{"file_name": "test_03827.png", "caption": "The low quality recording features a cover of a rock song and it consists of a passionate girl vocal singing over acoustic rhythm guitar chords and simple bass guitar. It sounds passionate, emotional, heartfelt, mellow and soft.", "data_idx": 2191, "number": 1, "label": "pop"} +{"file_name": "test_03828.png", "caption": "The low quality recording features a cover of a rock song and it consists of a passionate girl vocal singing over acoustic rhythm guitar chords and simple bass guitar. It sounds passionate, emotional, heartfelt, mellow and soft.", "data_idx": 2191, "number": 2, "label": "pop"} +{"file_name": "test_03829.png", "caption": "The low quality recording features a cover of a rock song and it consists of a passionate girl vocal singing over acoustic rhythm guitar chords and simple bass guitar. It sounds passionate, emotional, heartfelt, mellow and soft.", "data_idx": 2191, "number": 3, "label": "pop"} +{"file_name": "test_03830.png", "caption": "This is a folk music piece from the Balkans. It is an instrumental piece performed with virtual sounds. The leading tune is played by a realistic accordion sound. There is an upbeat bass guitar following the rhythm of a fast tempo acoustic sounding drum beat. The atmosphere is cheerful. This piece could be the perfect accompaniment piece for a Balkan folk dancing course. It could also fit well in the soundtrack of a comedy movie that takes place in the Balkan region.", "data_idx": 2192, "number": 0, "label": "reggae"} +{"file_name": "test_03831.png", "caption": "This is a folk music piece from the Balkans. It is an instrumental piece performed with virtual sounds. The leading tune is played by a realistic accordion sound. There is an upbeat bass guitar following the rhythm of a fast tempo acoustic sounding drum beat. The atmosphere is cheerful. This piece could be the perfect accompaniment piece for a Balkan folk dancing course. It could also fit well in the soundtrack of a comedy movie that takes place in the Balkan region.", "data_idx": 2192, "number": 1, "label": "reggae"} +{"file_name": "test_03832.png", "caption": "This is a folk music piece from the Balkans. It is an instrumental piece performed with virtual sounds. The leading tune is played by a realistic accordion sound. There is an upbeat bass guitar following the rhythm of a fast tempo acoustic sounding drum beat. The atmosphere is cheerful. This piece could be the perfect accompaniment piece for a Balkan folk dancing course. It could also fit well in the soundtrack of a comedy movie that takes place in the Balkan region.", "data_idx": 2192, "number": 2, "label": "reggae"} +{"file_name": "test_03833.png", "caption": "This is a folk music piece from the Balkans. It is an instrumental piece performed with virtual sounds. The leading tune is played by a realistic accordion sound. There is an upbeat bass guitar following the rhythm of a fast tempo acoustic sounding drum beat. The atmosphere is cheerful. This piece could be the perfect accompaniment piece for a Balkan folk dancing course. It could also fit well in the soundtrack of a comedy movie that takes place in the Balkan region.", "data_idx": 2192, "number": 3, "label": "reggae"} +{"file_name": "test_03834.png", "caption": "This is a hip hop song which features a young and energetic rapper who raps his lines with passion. The instrumental is minimal, and features a high pitched percussive type of synth which has a transient element. Then we hear a deep 808 sub bass. There's a snare once a bar throughout the clip.", "data_idx": 2194, "number": 0, "label": "hiphop"} +{"file_name": "test_03835.png", "caption": "This is a hip hop song which features a young and energetic rapper who raps his lines with passion. The instrumental is minimal, and features a high pitched percussive type of synth which has a transient element. Then we hear a deep 808 sub bass. There's a snare once a bar throughout the clip.", "data_idx": 2194, "number": 1, "label": "hiphop"} +{"file_name": "test_03836.png", "caption": "This is a hip hop song which features a young and energetic rapper who raps his lines with passion. The instrumental is minimal, and features a high pitched percussive type of synth which has a transient element. Then we hear a deep 808 sub bass. There's a snare once a bar throughout the clip.", "data_idx": 2194, "number": 2, "label": "hiphop"} +{"file_name": "test_03837.png", "caption": "This is a hip hop song which features a young and energetic rapper who raps his lines with passion. The instrumental is minimal, and features a high pitched percussive type of synth which has a transient element. Then we hear a deep 808 sub bass. There's a snare once a bar throughout the clip.", "data_idx": 2194, "number": 3, "label": "hiphop"} +{"file_name": "test_03838.png", "caption": "This is a Latin salsa dance music piece. There are male vocals singing loudly in the Spanish language. There is a groovy bass line. The rhythmic background is provided by the cowbell strokes. The atmosphere is lively. This piece could be used as an accompaniment piece for a Latin dance course.", "data_idx": 2195, "number": 0, "label": "reggae"} +{"file_name": "test_03839.png", "caption": "This is a Latin salsa dance music piece. There are male vocals singing loudly in the Spanish language. There is a groovy bass line. The rhythmic background is provided by the cowbell strokes. The atmosphere is lively. This piece could be used as an accompaniment piece for a Latin dance course.", "data_idx": 2195, "number": 1, "label": "reggae"} +{"file_name": "test_03840.png", "caption": "This is a Latin salsa dance music piece. There are male vocals singing loudly in the Spanish language. There is a groovy bass line. The rhythmic background is provided by the cowbell strokes. The atmosphere is lively. This piece could be used as an accompaniment piece for a Latin dance course.", "data_idx": 2195, "number": 2, "label": "reggae"} +{"file_name": "test_03841.png", "caption": "This is a Latin salsa dance music piece. There are male vocals singing loudly in the Spanish language. There is a groovy bass line. The rhythmic background is provided by the cowbell strokes. The atmosphere is lively. This piece could be used as an accompaniment piece for a Latin dance course.", "data_idx": 2195, "number": 3, "label": "reggae"} +{"file_name": "test_03842.png", "caption": "The low quality recording features a regional Mexican song that consists of a flat male vocal singing over groovy trombone, shimmering shakers, short brass melody and wooden percussive elements. It sounds emotional, passionate and happy.", "data_idx": 2196, "number": 0, "label": "blues"} +{"file_name": "test_03843.png", "caption": "The low quality recording features a regional Mexican song that consists of a flat male vocal singing over groovy trombone, shimmering shakers, short brass melody and wooden percussive elements. It sounds emotional, passionate and happy.", "data_idx": 2196, "number": 1, "label": "blues"} +{"file_name": "test_03844.png", "caption": "The low quality recording features a regional Mexican song that consists of a flat male vocal singing over groovy trombone, shimmering shakers, short brass melody and wooden percussive elements. It sounds emotional, passionate and happy.", "data_idx": 2196, "number": 2, "label": "blues"} +{"file_name": "test_03845.png", "caption": "The low quality recording features a regional Mexican song that consists of a flat male vocal singing over groovy trombone, shimmering shakers, short brass melody and wooden percussive elements. It sounds emotional, passionate and happy.", "data_idx": 2196, "number": 3, "label": "blues"} diff --git a/data/test/metadata_0007.jsonl b/data/test/metadata_0007.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7269b790c59c382bbbc8fe2de76868e3b31c966e --- /dev/null +++ b/data/test/metadata_0007.jsonl @@ -0,0 +1,314 @@ +{"file_name": "test_03846.png", "caption": "The recording contains two parts. One being a song with digital drums with a sub bass on the kick and a finger snapping sound used as a snare. A steeldrum sample is playing a repeating melody while a male voice is rapping in a higher pitch along to backing vocals creating a cheerful atmosphere. Then the song stops and you can hear mobile phones ringing. Two male voices are talking to each other. Then the recording stops with a beeping sound. This recording may be playing in a movie scene.", "data_idx": 2201, "number": 0, "label": "hiphop"} +{"file_name": "test_03847.png", "caption": "The recording contains two parts. One being a song with digital drums with a sub bass on the kick and a finger snapping sound used as a snare. A steeldrum sample is playing a repeating melody while a male voice is rapping in a higher pitch along to backing vocals creating a cheerful atmosphere. Then the song stops and you can hear mobile phones ringing. Two male voices are talking to each other. Then the recording stops with a beeping sound. This recording may be playing in a movie scene.", "data_idx": 2201, "number": 1, "label": "hiphop"} +{"file_name": "test_03848.png", "caption": "The recording contains two parts. One being a song with digital drums with a sub bass on the kick and a finger snapping sound used as a snare. A steeldrum sample is playing a repeating melody while a male voice is rapping in a higher pitch along to backing vocals creating a cheerful atmosphere. Then the song stops and you can hear mobile phones ringing. Two male voices are talking to each other. Then the recording stops with a beeping sound. This recording may be playing in a movie scene.", "data_idx": 2201, "number": 2, "label": "hiphop"} +{"file_name": "test_03849.png", "caption": "The recording contains two parts. One being a song with digital drums with a sub bass on the kick and a finger snapping sound used as a snare. A steeldrum sample is playing a repeating melody while a male voice is rapping in a higher pitch along to backing vocals creating a cheerful atmosphere. Then the song stops and you can hear mobile phones ringing. Two male voices are talking to each other. Then the recording stops with a beeping sound. This recording may be playing in a movie scene.", "data_idx": 2201, "number": 3, "label": "hiphop"} +{"file_name": "test_03850.png", "caption": "The low quality recording features a cover of a classical song and it consists of a saxophone solo melody playing over a groovy piano melody. At the very end of the loop, there is an applause. It sounds easygoing, passionate and the recording is noisy and in mono.", "data_idx": 2203, "number": 0, "label": "classical"} +{"file_name": "test_03851.png", "caption": "The low quality recording features a cover of a classical song and it consists of a saxophone solo melody playing over a groovy piano melody. At the very end of the loop, there is an applause. It sounds easygoing, passionate and the recording is noisy and in mono.", "data_idx": 2203, "number": 1, "label": "classical"} +{"file_name": "test_03852.png", "caption": "The low quality recording features a cover of a classical song and it consists of a saxophone solo melody playing over a groovy piano melody. At the very end of the loop, there is an applause. It sounds easygoing, passionate and the recording is noisy and in mono.", "data_idx": 2203, "number": 2, "label": "classical"} +{"file_name": "test_03853.png", "caption": "The low quality recording features a cover of a classical song and it consists of a saxophone solo melody playing over a groovy piano melody. At the very end of the loop, there is an applause. It sounds easygoing, passionate and the recording is noisy and in mono.", "data_idx": 2203, "number": 3, "label": "classical"} +{"file_name": "test_03854.png", "caption": "Someone is hitting tibetan bowls that keep ringing out with a big release time. This may be playing in a meditation workshop.", "data_idx": 2204, "number": 0, "label": "jazz"} +{"file_name": "test_03855.png", "caption": "Someone is hitting tibetan bowls that keep ringing out with a big release time. This may be playing in a meditation workshop.", "data_idx": 2204, "number": 1, "label": "jazz"} +{"file_name": "test_03856.png", "caption": "Someone is hitting tibetan bowls that keep ringing out with a big release time. This may be playing in a meditation workshop.", "data_idx": 2204, "number": 2, "label": "jazz"} +{"file_name": "test_03857.png", "caption": "Someone is hitting tibetan bowls that keep ringing out with a big release time. This may be playing in a meditation workshop.", "data_idx": 2204, "number": 3, "label": "jazz"} +{"file_name": "test_03858.png", "caption": "This is a solo trumpet piece which is cheery and upbeat. The pitch is generally high, with a few low notes which contrast and stand out against the high notes.", "data_idx": 2207, "number": 0, "label": "jazz"} +{"file_name": "test_03859.png", "caption": "This is a solo trumpet piece which is cheery and upbeat. The pitch is generally high, with a few low notes which contrast and stand out against the high notes.", "data_idx": 2207, "number": 1, "label": "jazz"} +{"file_name": "test_03860.png", "caption": "This is a solo trumpet piece which is cheery and upbeat. The pitch is generally high, with a few low notes which contrast and stand out against the high notes.", "data_idx": 2207, "number": 2, "label": "jazz"} +{"file_name": "test_03861.png", "caption": "This is a solo trumpet piece which is cheery and upbeat. The pitch is generally high, with a few low notes which contrast and stand out against the high notes.", "data_idx": 2207, "number": 3, "label": "jazz"} +{"file_name": "test_03862.png", "caption": "This song contains loud acoustic drums with a groove on the ride. An e-bass and e-guitar are playing along in the lower register. A deeper male voice is singing/screaming with a delay on his voice. his voice is doubled. This song may be playing for an action packed youtube video.", "data_idx": 2209, "number": 0, "label": "blues"} +{"file_name": "test_03863.png", "caption": "This song contains loud acoustic drums with a groove on the ride. An e-bass and e-guitar are playing along in the lower register. A deeper male voice is singing/screaming with a delay on his voice. his voice is doubled. This song may be playing for an action packed youtube video.", "data_idx": 2209, "number": 1, "label": "blues"} +{"file_name": "test_03864.png", "caption": "This song contains loud acoustic drums with a groove on the ride. An e-bass and e-guitar are playing along in the lower register. A deeper male voice is singing/screaming with a delay on his voice. his voice is doubled. This song may be playing for an action packed youtube video.", "data_idx": 2209, "number": 2, "label": "blues"} +{"file_name": "test_03865.png", "caption": "This song contains loud acoustic drums with a groove on the ride. An e-bass and e-guitar are playing along in the lower register. A deeper male voice is singing/screaming with a delay on his voice. his voice is doubled. This song may be playing for an action packed youtube video.", "data_idx": 2209, "number": 3, "label": "blues"} +{"file_name": "test_03866.png", "caption": "This is the recording of a harmonica solo. The tune being played on the harmonica is a melancholic one. There is an emotional aura to it. It could be used in the soundtrack of an animation movie, especially during a scene where a character is going through feelings of heartbreak or disappointment.", "data_idx": 2214, "number": 0, "label": "jazz"} +{"file_name": "test_03867.png", "caption": "This is the recording of a harmonica solo. The tune being played on the harmonica is a melancholic one. There is an emotional aura to it. It could be used in the soundtrack of an animation movie, especially during a scene where a character is going through feelings of heartbreak or disappointment.", "data_idx": 2214, "number": 1, "label": "jazz"} +{"file_name": "test_03868.png", "caption": "This is the recording of a harmonica solo. The tune being played on the harmonica is a melancholic one. There is an emotional aura to it. It could be used in the soundtrack of an animation movie, especially during a scene where a character is going through feelings of heartbreak or disappointment.", "data_idx": 2214, "number": 2, "label": "jazz"} +{"file_name": "test_03869.png", "caption": "This is the recording of a harmonica solo. The tune being played on the harmonica is a melancholic one. There is an emotional aura to it. It could be used in the soundtrack of an animation movie, especially during a scene where a character is going through feelings of heartbreak or disappointment.", "data_idx": 2214, "number": 3, "label": "jazz"} +{"file_name": "test_03870.png", "caption": "This audio contains a deeper male voice singing along with the rhythm played on a mridangam while someone is playing te melody on a viola. A second male voice starts singing in a higher register. In the background you can hear a shrutibox playing a drone chord. This song may be playing during a concert.", "data_idx": 2217, "number": 0, "label": "classical"} +{"file_name": "test_03871.png", "caption": "This audio contains a deeper male voice singing along with the rhythm played on a mridangam while someone is playing te melody on a viola. A second male voice starts singing in a higher register. In the background you can hear a shrutibox playing a drone chord. This song may be playing during a concert.", "data_idx": 2217, "number": 1, "label": "classical"} +{"file_name": "test_03872.png", "caption": "This audio contains a deeper male voice singing along with the rhythm played on a mridangam while someone is playing te melody on a viola. A second male voice starts singing in a higher register. In the background you can hear a shrutibox playing a drone chord. This song may be playing during a concert.", "data_idx": 2217, "number": 2, "label": "classical"} +{"file_name": "test_03873.png", "caption": "This audio contains a deeper male voice singing along with the rhythm played on a mridangam while someone is playing te melody on a viola. A second male voice starts singing in a higher register. In the background you can hear a shrutibox playing a drone chord. This song may be playing during a concert.", "data_idx": 2217, "number": 3, "label": "classical"} +{"file_name": "test_03874.png", "caption": "This music is an aggressive instrumental . The tempo is fast with a violent yet melodic tune that dips suddenly to the sound of gunshots and the metallic sound of empty shells hitting the ground. This music is a violent, harsh, loud, and violent Hard Electronica.", "data_idx": 2219, "number": 0, "label": "hiphop"} +{"file_name": "test_03875.png", "caption": "This music is an aggressive instrumental . The tempo is fast with a violent yet melodic tune that dips suddenly to the sound of gunshots and the metallic sound of empty shells hitting the ground. This music is a violent, harsh, loud, and violent Hard Electronica.", "data_idx": 2219, "number": 1, "label": "hiphop"} +{"file_name": "test_03876.png", "caption": "A male preacher talks and plays horn -like instruments to explain the ritual sequence. The song is medium tempo and the small horn is played rhythmically without any accompaniment. The audio quality is bad and the movie talks about Jewish custom sequences.", "data_idx": 2221, "number": 0, "label": "blues"} +{"file_name": "test_03877.png", "caption": "A male preacher talks and plays horn -like instruments to explain the ritual sequence. The song is medium tempo and the small horn is played rhythmically without any accompaniment. The audio quality is bad and the movie talks about Jewish custom sequences.", "data_idx": 2221, "number": 1, "label": "blues"} +{"file_name": "test_03878.png", "caption": "A male preacher talks and plays horn -like instruments to explain the ritual sequence. The song is medium tempo and the small horn is played rhythmically without any accompaniment. The audio quality is bad and the movie talks about Jewish custom sequences.", "data_idx": 2221, "number": 2, "label": "blues"} +{"file_name": "test_03879.png", "caption": "A male preacher talks and plays horn -like instruments to explain the ritual sequence. The song is medium tempo and the small horn is played rhythmically without any accompaniment. The audio quality is bad and the movie talks about Jewish custom sequences.", "data_idx": 2221, "number": 3, "label": "blues"} +{"file_name": "test_03880.png", "caption": "This audio contains someone playing a solo on a distorted e-guitar in the mid range up to the higher register. This song may be playing for a product advertisement.", "data_idx": 2222, "number": 0, "label": "hiphop"} +{"file_name": "test_03881.png", "caption": "This audio contains someone playing a solo on a distorted e-guitar in the mid range up to the higher register. This song may be playing for a product advertisement.", "data_idx": 2222, "number": 1, "label": "hiphop"} +{"file_name": "test_03882.png", "caption": "This audio contains someone playing a solo on a distorted e-guitar in the mid range up to the higher register. This song may be playing for a product advertisement.", "data_idx": 2222, "number": 2, "label": "hiphop"} +{"file_name": "test_03883.png", "caption": "This audio contains someone playing a solo on a distorted e-guitar in the mid range up to the higher register. This song may be playing for a product advertisement.", "data_idx": 2222, "number": 3, "label": "hiphop"} +{"file_name": "test_03884.png", "caption": "This is a live performance of a boogie woogie music piece. There is a trio of female vocal harmony singers. The main melody is being played by the piano and the electric guitar. Then, a trombone plays a brief solo. The bass guitar is playing in the background. The rhythmic background consists of an acoustic drum beat. The atmosphere is upbeat.", "data_idx": 2224, "number": 0, "label": "disco"} +{"file_name": "test_03885.png", "caption": "This is a live performance of a boogie woogie music piece. There is a trio of female vocal harmony singers. The main melody is being played by the piano and the electric guitar. Then, a trombone plays a brief solo. The bass guitar is playing in the background. The rhythmic background consists of an acoustic drum beat. The atmosphere is upbeat.", "data_idx": 2224, "number": 1, "label": "disco"} +{"file_name": "test_03886.png", "caption": "This is a live performance of a boogie woogie music piece. There is a trio of female vocal harmony singers. The main melody is being played by the piano and the electric guitar. Then, a trombone plays a brief solo. The bass guitar is playing in the background. The rhythmic background consists of an acoustic drum beat. The atmosphere is upbeat.", "data_idx": 2224, "number": 2, "label": "disco"} +{"file_name": "test_03887.png", "caption": "This is a live performance of a boogie woogie music piece. There is a trio of female vocal harmony singers. The main melody is being played by the piano and the electric guitar. Then, a trombone plays a brief solo. The bass guitar is playing in the background. The rhythmic background consists of an acoustic drum beat. The atmosphere is upbeat.", "data_idx": 2224, "number": 3, "label": "disco"} +{"file_name": "test_03888.png", "caption": "A male singer introduces the DJ lineup with an enthusiastic song. The tempo is medium with a groovy bass line, steady drumming rhythm, keyboard harmony and other percussion hits. The song is enthusiastic and energetic. The audio quality is very poor.", "data_idx": 2227, "number": 0, "label": "hiphop"} +{"file_name": "test_03889.png", "caption": "A male singer introduces the DJ lineup with an enthusiastic song. The tempo is medium with a groovy bass line, steady drumming rhythm, keyboard harmony and other percussion hits. The song is enthusiastic and energetic. The audio quality is very poor.", "data_idx": 2227, "number": 1, "label": "hiphop"} +{"file_name": "test_03890.png", "caption": "A male singer introduces the DJ lineup with an enthusiastic song. The tempo is medium with a groovy bass line, steady drumming rhythm, keyboard harmony and other percussion hits. The song is enthusiastic and energetic. The audio quality is very poor.", "data_idx": 2227, "number": 2, "label": "hiphop"} +{"file_name": "test_03891.png", "caption": "A male singer introduces the DJ lineup with an enthusiastic song. The tempo is medium with a groovy bass line, steady drumming rhythm, keyboard harmony and other percussion hits. The song is enthusiastic and energetic. The audio quality is very poor.", "data_idx": 2227, "number": 3, "label": "hiphop"} +{"file_name": "test_03892.png", "caption": "This is a live recording of a section on the french horn, played in classical style. The piece ascends rapidly and then descends rapidly. The piece has a regal and important feel to it.", "data_idx": 2229, "number": 0, "label": "jazz"} +{"file_name": "test_03893.png", "caption": "This is a live recording of a section on the french horn, played in classical style. The piece ascends rapidly and then descends rapidly. The piece has a regal and important feel to it.", "data_idx": 2229, "number": 1, "label": "jazz"} +{"file_name": "test_03894.png", "caption": "A male vocalist sings this energetic Rap. The tempo is fast with the vocalist singing a Hip-Hop song with Acapella . No instrumentation is used apart from the vocal percussive beats. The song is a youthful, enthusiastic,engaging, insistent, passionate , groovy, rhythmic patter with slangy lyrics and a dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2233, "number": 0, "label": "hiphop"} +{"file_name": "test_03895.png", "caption": "A male vocalist sings this energetic Rap. The tempo is fast with the vocalist singing a Hip-Hop song with Acapella . No instrumentation is used apart from the vocal percussive beats. The song is a youthful, enthusiastic,engaging, insistent, passionate , groovy, rhythmic patter with slangy lyrics and a dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2233, "number": 1, "label": "hiphop"} +{"file_name": "test_03896.png", "caption": "A male vocalist sings this energetic Rap. The tempo is fast with the vocalist singing a Hip-Hop song with Acapella . No instrumentation is used apart from the vocal percussive beats. The song is a youthful, enthusiastic,engaging, insistent, passionate , groovy, rhythmic patter with slangy lyrics and a dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2233, "number": 2, "label": "hiphop"} +{"file_name": "test_03897.png", "caption": "A male vocalist sings this energetic Rap. The tempo is fast with the vocalist singing a Hip-Hop song with Acapella . No instrumentation is used apart from the vocal percussive beats. The song is a youthful, enthusiastic,engaging, insistent, passionate , groovy, rhythmic patter with slangy lyrics and a dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2233, "number": 3, "label": "hiphop"} +{"file_name": "test_03898.png", "caption": "This clip consists of a blowing horn being played. The horn's sound creates the feeling of an impending battle, and is reminiscent of the middle ages.", "data_idx": 2234, "number": 0, "label": "hiphop"} +{"file_name": "test_03899.png", "caption": "This clip consists of a blowing horn being played. The horn's sound creates the feeling of an impending battle, and is reminiscent of the middle ages.", "data_idx": 2234, "number": 1, "label": "hiphop"} +{"file_name": "test_03900.png", "caption": "The song is an instrumental. The song is medium tempo with chord changes played on different keyboards to check subtle differences in tonality. The song track is a comparison video playing funk jazz accompaniment.", "data_idx": 2235, "number": 0, "label": "hiphop"} +{"file_name": "test_03901.png", "caption": "The song is an instrumental. The song is medium tempo with chord changes played on different keyboards to check subtle differences in tonality. The song track is a comparison video playing funk jazz accompaniment.", "data_idx": 2235, "number": 1, "label": "hiphop"} +{"file_name": "test_03902.png", "caption": "The song is an instrumental. The song is medium tempo with chord changes played on different keyboards to check subtle differences in tonality. The song track is a comparison video playing funk jazz accompaniment.", "data_idx": 2235, "number": 2, "label": "hiphop"} +{"file_name": "test_03903.png", "caption": "The song is an instrumental. The song is medium tempo with chord changes played on different keyboards to check subtle differences in tonality. The song track is a comparison video playing funk jazz accompaniment.", "data_idx": 2235, "number": 3, "label": "hiphop"} +{"file_name": "test_03904.png", "caption": "This DJ music features a didgeridoo playing the low end registers. There are different frequencies of didgeridoo instruments played in this clip which have been remixed. There are droning sounds which are all the sounds of didgeridoos. A synth plays staccato chords after two bars. The voicing used in the synth is close to a trumpet. A delay effect is used on the synth sound. This song has a tribal feel. This song can be played in a club.", "data_idx": 2238, "number": 0, "label": "reggae"} +{"file_name": "test_03905.png", "caption": "This DJ music features a didgeridoo playing the low end registers. There are different frequencies of didgeridoo instruments played in this clip which have been remixed. There are droning sounds which are all the sounds of didgeridoos. A synth plays staccato chords after two bars. The voicing used in the synth is close to a trumpet. A delay effect is used on the synth sound. This song has a tribal feel. This song can be played in a club.", "data_idx": 2238, "number": 1, "label": "reggae"} +{"file_name": "test_03906.png", "caption": "This DJ music features a didgeridoo playing the low end registers. There are different frequencies of didgeridoo instruments played in this clip which have been remixed. There are droning sounds which are all the sounds of didgeridoos. A synth plays staccato chords after two bars. The voicing used in the synth is close to a trumpet. A delay effect is used on the synth sound. This song has a tribal feel. This song can be played in a club.", "data_idx": 2238, "number": 2, "label": "reggae"} +{"file_name": "test_03907.png", "caption": "This DJ music features a didgeridoo playing the low end registers. There are different frequencies of didgeridoo instruments played in this clip which have been remixed. There are droning sounds which are all the sounds of didgeridoos. A synth plays staccato chords after two bars. The voicing used in the synth is close to a trumpet. A delay effect is used on the synth sound. This song has a tribal feel. This song can be played in a club.", "data_idx": 2238, "number": 3, "label": "reggae"} +{"file_name": "test_03908.png", "caption": "The low quality recording features a digital flute melody, synth brass melody and monster growling sound effect. It sounds emotional and like an in game sound.", "data_idx": 2244, "number": 0, "label": "jazz"} +{"file_name": "test_03909.png", "caption": "The low quality recording features a digital flute melody, synth brass melody and monster growling sound effect. It sounds emotional and like an in game sound.", "data_idx": 2244, "number": 1, "label": "jazz"} +{"file_name": "test_03910.png", "caption": "The low quality recording features a classical song that consists of harmonizing trombone melodies. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 2245, "number": 0, "label": "classical"} +{"file_name": "test_03911.png", "caption": "The low quality recording features a classical song that consists of harmonizing trombone melodies. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 2245, "number": 1, "label": "classical"} +{"file_name": "test_03912.png", "caption": "The low quality recording features a classical song that consists of harmonizing trombone melodies. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 2245, "number": 2, "label": "classical"} +{"file_name": "test_03913.png", "caption": "The low quality recording features a classical song that consists of harmonizing trombone melodies. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 2245, "number": 3, "label": "classical"} +{"file_name": "test_03914.png", "caption": "The low quality recording features a breathy flute playing over dark mellow keys melody. It sounds passionate, soulful, emotional and the recording is noisy and in mono.", "data_idx": 2246, "number": 0, "label": "classical"} +{"file_name": "test_03915.png", "caption": "The low quality recording features a breathy flute playing over dark mellow keys melody. It sounds passionate, soulful, emotional and the recording is noisy and in mono.", "data_idx": 2246, "number": 1, "label": "classical"} +{"file_name": "test_03916.png", "caption": "The low quality recording features a breathy flute playing over dark mellow keys melody. It sounds passionate, soulful, emotional and the recording is noisy and in mono.", "data_idx": 2246, "number": 2, "label": "classical"} +{"file_name": "test_03917.png", "caption": "The low quality recording features a breathy flute playing over dark mellow keys melody. It sounds passionate, soulful, emotional and the recording is noisy and in mono.", "data_idx": 2246, "number": 3, "label": "classical"} +{"file_name": "test_03918.png", "caption": "This dancehall song features a male voice singing the main melody. Another male voice sings backing vocals in harmony with the main melody. The voice sings at a fast pace fitting many syllables in the rhythm phrases. This is accompanied by programmed percussion playing a simple beat. Synth sounds are played in between lines. This song is flirty. This song can be played in a club.", "data_idx": 2247, "number": 0, "label": "hiphop"} +{"file_name": "test_03919.png", "caption": "This dancehall song features a male voice singing the main melody. Another male voice sings backing vocals in harmony with the main melody. The voice sings at a fast pace fitting many syllables in the rhythm phrases. This is accompanied by programmed percussion playing a simple beat. Synth sounds are played in between lines. This song is flirty. This song can be played in a club.", "data_idx": 2247, "number": 1, "label": "hiphop"} +{"file_name": "test_03920.png", "caption": "This dancehall song features a male voice singing the main melody. Another male voice sings backing vocals in harmony with the main melody. The voice sings at a fast pace fitting many syllables in the rhythm phrases. This is accompanied by programmed percussion playing a simple beat. Synth sounds are played in between lines. This song is flirty. This song can be played in a club.", "data_idx": 2247, "number": 2, "label": "hiphop"} +{"file_name": "test_03921.png", "caption": "This dancehall song features a male voice singing the main melody. Another male voice sings backing vocals in harmony with the main melody. The voice sings at a fast pace fitting many syllables in the rhythm phrases. This is accompanied by programmed percussion playing a simple beat. Synth sounds are played in between lines. This song is flirty. This song can be played in a club.", "data_idx": 2247, "number": 3, "label": "hiphop"} +{"file_name": "test_03922.png", "caption": "This is an R&B/soul music piece. There is a whole mix of male and female vocals singing melodically. The tune is being performed by the keyboard while the electric guitar and the bass guitar are playing in the background. There is a slow tempo electronic drum beat in the rhythmic background. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie, especially during the scenes of resolution.", "data_idx": 2249, "number": 0, "label": "rock"} +{"file_name": "test_03923.png", "caption": "This is an R&B/soul music piece. There is a whole mix of male and female vocals singing melodically. The tune is being performed by the keyboard while the electric guitar and the bass guitar are playing in the background. There is a slow tempo electronic drum beat in the rhythmic background. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie, especially during the scenes of resolution.", "data_idx": 2249, "number": 1, "label": "rock"} +{"file_name": "test_03924.png", "caption": "This is an R&B/soul music piece. There is a whole mix of male and female vocals singing melodically. The tune is being performed by the keyboard while the electric guitar and the bass guitar are playing in the background. There is a slow tempo electronic drum beat in the rhythmic background. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie, especially during the scenes of resolution.", "data_idx": 2249, "number": 2, "label": "rock"} +{"file_name": "test_03925.png", "caption": "This is an R&B/soul music piece. There is a whole mix of male and female vocals singing melodically. The tune is being performed by the keyboard while the electric guitar and the bass guitar are playing in the background. There is a slow tempo electronic drum beat in the rhythmic background. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie, especially during the scenes of resolution.", "data_idx": 2249, "number": 3, "label": "rock"} +{"file_name": "test_03926.png", "caption": "This is a live performance of a Khaliji music piece. There is an orchestra performing the piece. The melody is being played by the oud and the violin. The rhythmic background is composed of various percussive elements such as the riq, the darbuka and performers clapping their hands. The atmosphere is vibrant. This piece could be playing in the background at an Arab cuisine restaurant.", "data_idx": 2250, "number": 0, "label": "reggae"} +{"file_name": "test_03927.png", "caption": "This is a live performance of a Khaliji music piece. There is an orchestra performing the piece. The melody is being played by the oud and the violin. The rhythmic background is composed of various percussive elements such as the riq, the darbuka and performers clapping their hands. The atmosphere is vibrant. This piece could be playing in the background at an Arab cuisine restaurant.", "data_idx": 2250, "number": 1, "label": "reggae"} +{"file_name": "test_03928.png", "caption": "This is a live performance of a Khaliji music piece. There is an orchestra performing the piece. The melody is being played by the oud and the violin. The rhythmic background is composed of various percussive elements such as the riq, the darbuka and performers clapping their hands. The atmosphere is vibrant. This piece could be playing in the background at an Arab cuisine restaurant.", "data_idx": 2250, "number": 2, "label": "reggae"} +{"file_name": "test_03929.png", "caption": "This is a live performance of a Khaliji music piece. There is an orchestra performing the piece. The melody is being played by the oud and the violin. The rhythmic background is composed of various percussive elements such as the riq, the darbuka and performers clapping their hands. The atmosphere is vibrant. This piece could be playing in the background at an Arab cuisine restaurant.", "data_idx": 2250, "number": 3, "label": "reggae"} +{"file_name": "test_03930.png", "caption": "The low quality recording features a Christmas song, played on a device that can produce mono sounds only, and it consists of a passionate male vocal singing over some muffled instrumental. It sounds euphoric, happy, joyful and fun. The recording is messy, in mono, noisy and slightly distorted.", "data_idx": 2251, "number": 0, "label": "hiphop"} +{"file_name": "test_03931.png", "caption": "The low quality recording features a Christmas song, played on a device that can produce mono sounds only, and it consists of a passionate male vocal singing over some muffled instrumental. It sounds euphoric, happy, joyful and fun. The recording is messy, in mono, noisy and slightly distorted.", "data_idx": 2251, "number": 1, "label": "hiphop"} +{"file_name": "test_03932.png", "caption": "The low quality recording features a Christmas song, played on a device that can produce mono sounds only, and it consists of a passionate male vocal singing over some muffled instrumental. It sounds euphoric, happy, joyful and fun. The recording is messy, in mono, noisy and slightly distorted.", "data_idx": 2251, "number": 2, "label": "hiphop"} +{"file_name": "test_03933.png", "caption": "The low quality recording features a Christmas song, played on a device that can produce mono sounds only, and it consists of a passionate male vocal singing over some muffled instrumental. It sounds euphoric, happy, joyful and fun. The recording is messy, in mono, noisy and slightly distorted.", "data_idx": 2251, "number": 3, "label": "hiphop"} +{"file_name": "test_03934.png", "caption": "This amateur recording starts off with the sound of the crowd at a live show. This is followed by a male voice mouthing four blasting sounds over the mic. This is followed by a guitar playing a funk riff and another guitar playing a lower register melody. The percussion plays a fast beat. The bass plays only one note in a continuous pattern following the percussion. The mood of this song is upbeat. This song can be played in a retro club.", "data_idx": 2258, "number": 0, "label": "rock"} +{"file_name": "test_03935.png", "caption": "This amateur recording starts off with the sound of the crowd at a live show. This is followed by a male voice mouthing four blasting sounds over the mic. This is followed by a guitar playing a funk riff and another guitar playing a lower register melody. The percussion plays a fast beat. The bass plays only one note in a continuous pattern following the percussion. The mood of this song is upbeat. This song can be played in a retro club.", "data_idx": 2258, "number": 1, "label": "rock"} +{"file_name": "test_03936.png", "caption": "Eastern European music featuring clean electric guitar, tambourine, two male vocalists. Could be traditional dance music.", "data_idx": 2259, "number": 0, "label": "blues"} +{"file_name": "test_03937.png", "caption": "Eastern European music featuring clean electric guitar, tambourine, two male vocalists. Could be traditional dance music.", "data_idx": 2259, "number": 1, "label": "blues"} +{"file_name": "test_03938.png", "caption": "Eastern European music featuring clean electric guitar, tambourine, two male vocalists. Could be traditional dance music.", "data_idx": 2259, "number": 2, "label": "blues"} +{"file_name": "test_03939.png", "caption": "Eastern European music featuring clean electric guitar, tambourine, two male vocalists. Could be traditional dance music.", "data_idx": 2259, "number": 3, "label": "blues"} +{"file_name": "test_03940.png", "caption": "The low quality recording features a french horn melody played over playback that consists of snappy rimshots, shimmering hi hats and arpeggiated guitar melody. It sounds emotional and passionate, even though the recording is in mono and noisy.", "data_idx": 2260, "number": 0, "label": "jazz"} +{"file_name": "test_03941.png", "caption": "The low quality recording features a french horn melody played over playback that consists of snappy rimshots, shimmering hi hats and arpeggiated guitar melody. It sounds emotional and passionate, even though the recording is in mono and noisy.", "data_idx": 2260, "number": 1, "label": "jazz"} +{"file_name": "test_03942.png", "caption": "The low quality recording features a french horn melody played over playback that consists of snappy rimshots, shimmering hi hats and arpeggiated guitar melody. It sounds emotional and passionate, even though the recording is in mono and noisy.", "data_idx": 2260, "number": 2, "label": "jazz"} +{"file_name": "test_03943.png", "caption": "The low quality recording features a french horn melody played over playback that consists of snappy rimshots, shimmering hi hats and arpeggiated guitar melody. It sounds emotional and passionate, even though the recording is in mono and noisy.", "data_idx": 2260, "number": 3, "label": "jazz"} +{"file_name": "test_03944.png", "caption": "Quiet instrumental cover of a popular pop/rock song by an orchestra that features winds and strings trading off parts of the melody.", "data_idx": 2263, "number": 0, "label": "classical"} +{"file_name": "test_03945.png", "caption": "Quiet instrumental cover of a popular pop/rock song by an orchestra that features winds and strings trading off parts of the melody.", "data_idx": 2263, "number": 1, "label": "classical"} +{"file_name": "test_03946.png", "caption": "Quiet instrumental cover of a popular pop/rock song by an orchestra that features winds and strings trading off parts of the melody.", "data_idx": 2263, "number": 2, "label": "classical"} +{"file_name": "test_03947.png", "caption": "Quiet instrumental cover of a popular pop/rock song by an orchestra that features winds and strings trading off parts of the melody.", "data_idx": 2263, "number": 3, "label": "classical"} +{"file_name": "test_03948.png", "caption": "This is the live performance of a hard rock piece. There is a male vocal who is shouting at the crowd while revving up a chainsaw. The electric guitar is playing the melody while the bass guitar is playing in the background. The acoustic drums are playing a simple blues rock beat. The atmosphere is aggressive.", "data_idx": 2264, "number": 0, "label": "metal"} +{"file_name": "test_03949.png", "caption": "This is the live performance of a hard rock piece. There is a male vocal who is shouting at the crowd while revving up a chainsaw. The electric guitar is playing the melody while the bass guitar is playing in the background. The acoustic drums are playing a simple blues rock beat. The atmosphere is aggressive.", "data_idx": 2264, "number": 1, "label": "metal"} +{"file_name": "test_03950.png", "caption": "This is the live performance of a hard rock piece. There is a male vocal who is shouting at the crowd while revving up a chainsaw. The electric guitar is playing the melody while the bass guitar is playing in the background. The acoustic drums are playing a simple blues rock beat. The atmosphere is aggressive.", "data_idx": 2264, "number": 2, "label": "metal"} +{"file_name": "test_03951.png", "caption": "This is the live performance of a hard rock piece. There is a male vocal who is shouting at the crowd while revving up a chainsaw. The electric guitar is playing the melody while the bass guitar is playing in the background. The acoustic drums are playing a simple blues rock beat. The atmosphere is aggressive.", "data_idx": 2264, "number": 3, "label": "metal"} +{"file_name": "test_03952.png", "caption": "This is a cover of an alternative rock music piece. There is an electric guitar with a clean sound and a lot of reverb playing a gentle arpeggio. The atmosphere is dreamy and hazy. This piece could be used in the background of a tutorial video.", "data_idx": 2267, "number": 0, "label": "jazz"} +{"file_name": "test_03953.png", "caption": "This is a cover of an alternative rock music piece. There is an electric guitar with a clean sound and a lot of reverb playing a gentle arpeggio. The atmosphere is dreamy and hazy. This piece could be used in the background of a tutorial video.", "data_idx": 2267, "number": 1, "label": "jazz"} +{"file_name": "test_03954.png", "caption": "This is a cover of an alternative rock music piece. There is an electric guitar with a clean sound and a lot of reverb playing a gentle arpeggio. The atmosphere is dreamy and hazy. This piece could be used in the background of a tutorial video.", "data_idx": 2267, "number": 2, "label": "jazz"} +{"file_name": "test_03955.png", "caption": "This is a cover of an alternative rock music piece. There is an electric guitar with a clean sound and a lot of reverb playing a gentle arpeggio. The atmosphere is dreamy and hazy. This piece could be used in the background of a tutorial video.", "data_idx": 2267, "number": 3, "label": "jazz"} +{"file_name": "test_03956.png", "caption": "This song features a cowbell being struck with a stick. The cowbell is struck at different parts producing different sounds. The first sound is a muted sound. At the beginning, the cowbell is struck three times at different parts. The first sound is muted. The second sound is slightly open and at a higher pitch than the first sound. The third sound is higher in pitch again and sounds more open than the first two sounds. A pattern is then played using a drumstick and striking the cowbell at different parts. There are no other instruments in this song. There are no voices in this song. This song can be played in a cowbell instructional video.", "data_idx": 2270, "number": 0, "label": "reggae"} +{"file_name": "test_03957.png", "caption": "This song features a cowbell being struck with a stick. The cowbell is struck at different parts producing different sounds. The first sound is a muted sound. At the beginning, the cowbell is struck three times at different parts. The first sound is muted. The second sound is slightly open and at a higher pitch than the first sound. The third sound is higher in pitch again and sounds more open than the first two sounds. A pattern is then played using a drumstick and striking the cowbell at different parts. There are no other instruments in this song. There are no voices in this song. This song can be played in a cowbell instructional video.", "data_idx": 2270, "number": 1, "label": "reggae"} +{"file_name": "test_03958.png", "caption": "This song features a cowbell being struck with a stick. The cowbell is struck at different parts producing different sounds. The first sound is a muted sound. At the beginning, the cowbell is struck three times at different parts. The first sound is muted. The second sound is slightly open and at a higher pitch than the first sound. The third sound is higher in pitch again and sounds more open than the first two sounds. A pattern is then played using a drumstick and striking the cowbell at different parts. There are no other instruments in this song. There are no voices in this song. This song can be played in a cowbell instructional video.", "data_idx": 2270, "number": 2, "label": "reggae"} +{"file_name": "test_03959.png", "caption": "This song features a cowbell being struck with a stick. The cowbell is struck at different parts producing different sounds. The first sound is a muted sound. At the beginning, the cowbell is struck three times at different parts. The first sound is muted. The second sound is slightly open and at a higher pitch than the first sound. The third sound is higher in pitch again and sounds more open than the first two sounds. A pattern is then played using a drumstick and striking the cowbell at different parts. There are no other instruments in this song. There are no voices in this song. This song can be played in a cowbell instructional video.", "data_idx": 2270, "number": 3, "label": "reggae"} +{"file_name": "test_03960.png", "caption": "This is a parody montage of a K-pop music piece. There is a girl band singing in the original track. On the parts where the girls are hollering, the sounds of goats bleating were added. The original track has a keyboard playing the melody while there is a strong bass in the background. The rhythm is played by the electronic drums. There is an amusing atmosphere.", "data_idx": 2271, "number": 0, "label": "hiphop"} +{"file_name": "test_03961.png", "caption": "This is a parody montage of a K-pop music piece. There is a girl band singing in the original track. On the parts where the girls are hollering, the sounds of goats bleating were added. The original track has a keyboard playing the melody while there is a strong bass in the background. The rhythm is played by the electronic drums. There is an amusing atmosphere.", "data_idx": 2271, "number": 1, "label": "hiphop"} +{"file_name": "test_03962.png", "caption": "This is a parody montage of a K-pop music piece. There is a girl band singing in the original track. On the parts where the girls are hollering, the sounds of goats bleating were added. The original track has a keyboard playing the melody while there is a strong bass in the background. The rhythm is played by the electronic drums. There is an amusing atmosphere.", "data_idx": 2271, "number": 2, "label": "hiphop"} +{"file_name": "test_03963.png", "caption": "This is a parody montage of a K-pop music piece. There is a girl band singing in the original track. On the parts where the girls are hollering, the sounds of goats bleating were added. The original track has a keyboard playing the melody while there is a strong bass in the background. The rhythm is played by the electronic drums. There is an amusing atmosphere.", "data_idx": 2271, "number": 3, "label": "hiphop"} +{"file_name": "test_03964.png", "caption": "This audio contains a very present kick on every beat. A synth bass is playing an arpeggio melody along with a synth lead sound playing in a higher pitch rising up in pitch. Then a riser sound also rises in pitch. Then the music stops and you can hear glass breaking. This song may be playing in a techno club.", "data_idx": 2272, "number": 0, "label": "hiphop"} +{"file_name": "test_03965.png", "caption": "This audio contains a very present kick on every beat. A synth bass is playing an arpeggio melody along with a synth lead sound playing in a higher pitch rising up in pitch. Then a riser sound also rises in pitch. Then the music stops and you can hear glass breaking. This song may be playing in a techno club.", "data_idx": 2272, "number": 1, "label": "hiphop"} +{"file_name": "test_03966.png", "caption": "This audio contains a very present kick on every beat. A synth bass is playing an arpeggio melody along with a synth lead sound playing in a higher pitch rising up in pitch. Then a riser sound also rises in pitch. Then the music stops and you can hear glass breaking. This song may be playing in a techno club.", "data_idx": 2272, "number": 2, "label": "hiphop"} +{"file_name": "test_03967.png", "caption": "This audio contains a very present kick on every beat. A synth bass is playing an arpeggio melody along with a synth lead sound playing in a higher pitch rising up in pitch. Then a riser sound also rises in pitch. Then the music stops and you can hear glass breaking. This song may be playing in a techno club.", "data_idx": 2272, "number": 3, "label": "hiphop"} +{"file_name": "test_03968.png", "caption": "This is a classical music piece. There is a piano playing an arpeggio in the background while a violin gently plays the main tune. The atmosphere of the piece is sentimental. This piece could be used in the background of tutorial videos. It could also be playing in the background at a coffee shop.", "data_idx": 2275, "number": 0, "label": "classical"} +{"file_name": "test_03969.png", "caption": "This is a classical music piece. There is a piano playing an arpeggio in the background while a violin gently plays the main tune. The atmosphere of the piece is sentimental. This piece could be used in the background of tutorial videos. It could also be playing in the background at a coffee shop.", "data_idx": 2275, "number": 1, "label": "classical"} +{"file_name": "test_03970.png", "caption": "This is a classical music piece. There is a piano playing an arpeggio in the background while a violin gently plays the main tune. The atmosphere of the piece is sentimental. This piece could be used in the background of tutorial videos. It could also be playing in the background at a coffee shop.", "data_idx": 2275, "number": 2, "label": "classical"} +{"file_name": "test_03971.png", "caption": "This is a classical music piece. There is a piano playing an arpeggio in the background while a violin gently plays the main tune. The atmosphere of the piece is sentimental. This piece could be used in the background of tutorial videos. It could also be playing in the background at a coffee shop.", "data_idx": 2275, "number": 3, "label": "classical"} +{"file_name": "test_03972.png", "caption": "This is a contemporary classic music piece being performed on a theremin. The player gives the theremin and electronic sounding character. The atmosphere is weird and eccentric. This piece could go well in the soundtrack of an absurdist/surrealist art movie.", "data_idx": 2276, "number": 0, "label": "classical"} +{"file_name": "test_03973.png", "caption": "This is a contemporary classic music piece being performed on a theremin. The player gives the theremin and electronic sounding character. The atmosphere is weird and eccentric. This piece could go well in the soundtrack of an absurdist/surrealist art movie.", "data_idx": 2276, "number": 1, "label": "classical"} +{"file_name": "test_03974.png", "caption": "This is a contemporary classic music piece being performed on a theremin. The player gives the theremin and electronic sounding character. The atmosphere is weird and eccentric. This piece could go well in the soundtrack of an absurdist/surrealist art movie.", "data_idx": 2276, "number": 2, "label": "classical"} +{"file_name": "test_03975.png", "caption": "This is a contemporary classic music piece being performed on a theremin. The player gives the theremin and electronic sounding character. The atmosphere is weird and eccentric. This piece could go well in the soundtrack of an absurdist/surrealist art movie.", "data_idx": 2276, "number": 3, "label": "classical"} +{"file_name": "test_03976.png", "caption": "This dubstep song features a turntable being played. It starts off with a high frequency pitch that is being brought down to a lower pitch till it fades away. A male voice raps a line and the instruments pause momentarily. This is followed by scratching of a vinyl in a pattern. This is accompanied by programmed percussion playing a dubstep beat. The sounds played are all synthesized by the DJ console. This song can be played in a club.", "data_idx": 2277, "number": 0, "label": "hiphop"} +{"file_name": "test_03977.png", "caption": "This dubstep song features a turntable being played. It starts off with a high frequency pitch that is being brought down to a lower pitch till it fades away. A male voice raps a line and the instruments pause momentarily. This is followed by scratching of a vinyl in a pattern. This is accompanied by programmed percussion playing a dubstep beat. The sounds played are all synthesized by the DJ console. This song can be played in a club.", "data_idx": 2277, "number": 1, "label": "hiphop"} +{"file_name": "test_03978.png", "caption": "This dubstep song features a turntable being played. It starts off with a high frequency pitch that is being brought down to a lower pitch till it fades away. A male voice raps a line and the instruments pause momentarily. This is followed by scratching of a vinyl in a pattern. This is accompanied by programmed percussion playing a dubstep beat. The sounds played are all synthesized by the DJ console. This song can be played in a club.", "data_idx": 2277, "number": 2, "label": "hiphop"} +{"file_name": "test_03979.png", "caption": "This dubstep song features a turntable being played. It starts off with a high frequency pitch that is being brought down to a lower pitch till it fades away. A male voice raps a line and the instruments pause momentarily. This is followed by scratching of a vinyl in a pattern. This is accompanied by programmed percussion playing a dubstep beat. The sounds played are all synthesized by the DJ console. This song can be played in a club.", "data_idx": 2277, "number": 3, "label": "hiphop"} +{"file_name": "test_03980.png", "caption": "These are the sounds coming from a martial arts movie. There are male voices shouting at each other. Sounds of footsteps and the movements of fighting can be heard. The music in the background has a dramatic tune being played on the strings. The rhythmic background is composed of Chinese paigu drums and the gong. There is a feeling of tension in this track. Some parts of this recording can be sampled for use in beat-making.", "data_idx": 2283, "number": 0, "label": "jazz"} +{"file_name": "test_03981.png", "caption": "These are the sounds coming from a martial arts movie. There are male voices shouting at each other. Sounds of footsteps and the movements of fighting can be heard. The music in the background has a dramatic tune being played on the strings. The rhythmic background is composed of Chinese paigu drums and the gong. There is a feeling of tension in this track. Some parts of this recording can be sampled for use in beat-making.", "data_idx": 2283, "number": 1, "label": "jazz"} +{"file_name": "test_03982.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The hi-hat is played in eighth notes. The bass is played on a tuba. The root notes of the chords are played. Trumpets play a staccato note at every alternate beat. A brass instrument plays a fill after the first two bars. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2284, "number": 0, "label": "rock"} +{"file_name": "test_03983.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The hi-hat is played in eighth notes. The bass is played on a tuba. The root notes of the chords are played. Trumpets play a staccato note at every alternate beat. A brass instrument plays a fill after the first two bars. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2284, "number": 1, "label": "rock"} +{"file_name": "test_03984.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The hi-hat is played in eighth notes. The bass is played on a tuba. The root notes of the chords are played. Trumpets play a staccato note at every alternate beat. A brass instrument plays a fill after the first two bars. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2284, "number": 2, "label": "rock"} +{"file_name": "test_03985.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The hi-hat is played in eighth notes. The bass is played on a tuba. The root notes of the chords are played. Trumpets play a staccato note at every alternate beat. A brass instrument plays a fill after the first two bars. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2284, "number": 3, "label": "rock"} +{"file_name": "test_03986.png", "caption": "This audio contains various acoustic guitars playing a lead melody, a countermelody and strumming chords. An acoustic drum is holding a simple bossa nova groove along with shaker and percussion. This song may be played live outside by a busker.", "data_idx": 2288, "number": 0, "label": "rock"} +{"file_name": "test_03987.png", "caption": "This audio contains various acoustic guitars playing a lead melody, a countermelody and strumming chords. An acoustic drum is holding a simple bossa nova groove along with shaker and percussion. This song may be played live outside by a busker.", "data_idx": 2288, "number": 1, "label": "rock"} +{"file_name": "test_03988.png", "caption": "This audio contains various acoustic guitars playing a lead melody, a countermelody and strumming chords. An acoustic drum is holding a simple bossa nova groove along with shaker and percussion. This song may be played live outside by a busker.", "data_idx": 2288, "number": 2, "label": "rock"} +{"file_name": "test_03989.png", "caption": "This audio contains various acoustic guitars playing a lead melody, a countermelody and strumming chords. An acoustic drum is holding a simple bossa nova groove along with shaker and percussion. This song may be played live outside by a busker.", "data_idx": 2288, "number": 3, "label": "rock"} +{"file_name": "test_03990.png", "caption": "This is the recording of a gear review video. There is a male voice describing the feel of a certain reverb amp. There is a static sound that can be heard while he is talking, because the guitar is still plugged in. A mellow tune can be heard playing from a clean sounding electric guitar in the background.", "data_idx": 2289, "number": 0, "label": "rock"} +{"file_name": "test_03991.png", "caption": "This is the recording of a gear review video. There is a male voice describing the feel of a certain reverb amp. There is a static sound that can be heard while he is talking, because the guitar is still plugged in. A mellow tune can be heard playing from a clean sounding electric guitar in the background.", "data_idx": 2289, "number": 1, "label": "rock"} +{"file_name": "test_03992.png", "caption": "This is the recording of a gear review video. There is a male voice describing the feel of a certain reverb amp. There is a static sound that can be heard while he is talking, because the guitar is still plugged in. A mellow tune can be heard playing from a clean sounding electric guitar in the background.", "data_idx": 2289, "number": 2, "label": "rock"} +{"file_name": "test_03993.png", "caption": "This is the recording of a gear review video. There is a male voice describing the feel of a certain reverb amp. There is a static sound that can be heard while he is talking, because the guitar is still plugged in. A mellow tune can be heard playing from a clean sounding electric guitar in the background.", "data_idx": 2289, "number": 3, "label": "rock"} +{"file_name": "test_03994.png", "caption": "The low quality recording features a Harmonica solo melody. The recording is noisy and in mono, as it was probably recorded with a phone and it sounds emotional and passionate.", "data_idx": 2294, "number": 0, "label": "classical"} +{"file_name": "test_03995.png", "caption": "The low quality recording features a Harmonica solo melody. The recording is noisy and in mono, as it was probably recorded with a phone and it sounds emotional and passionate.", "data_idx": 2294, "number": 1, "label": "classical"} +{"file_name": "test_03996.png", "caption": "The low quality recording features a Harmonica solo melody. The recording is noisy and in mono, as it was probably recorded with a phone and it sounds emotional and passionate.", "data_idx": 2294, "number": 2, "label": "classical"} +{"file_name": "test_03997.png", "caption": "The low quality recording features a Harmonica solo melody. The recording is noisy and in mono, as it was probably recorded with a phone and it sounds emotional and passionate.", "data_idx": 2294, "number": 3, "label": "classical"} +{"file_name": "test_03998.png", "caption": "This song contains a marching band playing a melody with a big brass section. Horns are playing the bass melody and kicks and snare rolls are providing the rhythm along with some cymbal hits. This song may be playing at a national sports-event.", "data_idx": 2295, "number": 0, "label": "classical"} +{"file_name": "test_03999.png", "caption": "This song contains a marching band playing a melody with a big brass section. Horns are playing the bass melody and kicks and snare rolls are providing the rhythm along with some cymbal hits. This song may be playing at a national sports-event.", "data_idx": 2295, "number": 1, "label": "classical"} +{"file_name": "test_04000.png", "caption": "This song contains a marching band playing a melody with a big brass section. Horns are playing the bass melody and kicks and snare rolls are providing the rhythm along with some cymbal hits. This song may be playing at a national sports-event.", "data_idx": 2295, "number": 2, "label": "classical"} +{"file_name": "test_04001.png", "caption": "This song contains a marching band playing a melody with a big brass section. Horns are playing the bass melody and kicks and snare rolls are providing the rhythm along with some cymbal hits. This song may be playing at a national sports-event.", "data_idx": 2295, "number": 3, "label": "classical"} +{"file_name": "test_04002.png", "caption": "The low quality recording features a wide synth pad, soft sustained strings, mellow harp melody, soft toms, reverberant rimshots and strummed strings. It sounds mystical, suspenseful and haunting, like something you would hear as the background music of a thriller movie.", "data_idx": 2298, "number": 0, "label": "hiphop"} +{"file_name": "test_04003.png", "caption": "The low quality recording features a wide synth pad, soft sustained strings, mellow harp melody, soft toms, reverberant rimshots and strummed strings. It sounds mystical, suspenseful and haunting, like something you would hear as the background music of a thriller movie.", "data_idx": 2298, "number": 1, "label": "hiphop"} +{"file_name": "test_04004.png", "caption": "A male singer sings this popular song. The tempo is medium with an ukulele playing rhythm accompanying the male vocals with no other instrumentation. The song is emotional and inspiring. The audio quality is bad.", "data_idx": 2301, "number": 0, "label": "reggae"} +{"file_name": "test_04005.png", "caption": "A male singer sings this popular song. The tempo is medium with an ukulele playing rhythm accompanying the male vocals with no other instrumentation. The song is emotional and inspiring. The audio quality is bad.", "data_idx": 2301, "number": 1, "label": "reggae"} +{"file_name": "test_04006.png", "caption": "The low quality recording features a latin jazz song played in the background over which a drums solo is played. The solo consists of shimmering hi hats, punchy snare and kick hits and low tom rolls, while the latin jazz song consists of groovy piano chords and wooden percussion. It sounds energetic and exciting.", "data_idx": 2302, "number": 0, "label": "blues"} +{"file_name": "test_04007.png", "caption": "The low quality recording features a latin jazz song played in the background over which a drums solo is played. The solo consists of shimmering hi hats, punchy snare and kick hits and low tom rolls, while the latin jazz song consists of groovy piano chords and wooden percussion. It sounds energetic and exciting.", "data_idx": 2302, "number": 1, "label": "blues"} +{"file_name": "test_04008.png", "caption": "The low quality recording features a latin jazz song played in the background over which a drums solo is played. The solo consists of shimmering hi hats, punchy snare and kick hits and low tom rolls, while the latin jazz song consists of groovy piano chords and wooden percussion. It sounds energetic and exciting.", "data_idx": 2302, "number": 2, "label": "blues"} +{"file_name": "test_04009.png", "caption": "The low quality recording features a latin jazz song played in the background over which a drums solo is played. The solo consists of shimmering hi hats, punchy snare and kick hits and low tom rolls, while the latin jazz song consists of groovy piano chords and wooden percussion. It sounds energetic and exciting.", "data_idx": 2302, "number": 3, "label": "blues"} +{"file_name": "test_04010.png", "caption": "This is a live performance of a Russian folk music piece. There is no singer in this piece. The single instrument being played is a garmon. The performer is playing a melancholic solo on the garmon. This piece could be used in the soundtrack of a movie or a documentary that takes place in Russia. It could also be playing in the background at a Russian cuisine restaurant.", "data_idx": 2305, "number": 0, "label": "classical"} +{"file_name": "test_04011.png", "caption": "This is a live performance of a Russian folk music piece. There is no singer in this piece. The single instrument being played is a garmon. The performer is playing a melancholic solo on the garmon. This piece could be used in the soundtrack of a movie or a documentary that takes place in Russia. It could also be playing in the background at a Russian cuisine restaurant.", "data_idx": 2305, "number": 1, "label": "classical"} +{"file_name": "test_04012.png", "caption": "This is a live performance of a Russian folk music piece. There is no singer in this piece. The single instrument being played is a garmon. The performer is playing a melancholic solo on the garmon. This piece could be used in the soundtrack of a movie or a documentary that takes place in Russia. It could also be playing in the background at a Russian cuisine restaurant.", "data_idx": 2305, "number": 2, "label": "classical"} +{"file_name": "test_04013.png", "caption": "This is a live performance of a Russian folk music piece. There is no singer in this piece. The single instrument being played is a garmon. The performer is playing a melancholic solo on the garmon. This piece could be used in the soundtrack of a movie or a documentary that takes place in Russia. It could also be playing in the background at a Russian cuisine restaurant.", "data_idx": 2305, "number": 3, "label": "classical"} +{"file_name": "test_04014.png", "caption": "This is a video game theme in the style of jazz music. There is a male vocalist singing gibberish while imitating a brass instrument. The vibraphone is playing the main melody. There is a piano playing chords in a syncopated manner. The bass guitar is playing a groovy bass line. The rhythmic background consists of an acoustic jazz drum beat. The atmosphere is dreamy and cheerful. This piece could be playing in the soundtrack of an animation movie during a dream sequence.", "data_idx": 2306, "number": 0, "label": "reggae"} +{"file_name": "test_04015.png", "caption": "This is a video game theme in the style of jazz music. There is a male vocalist singing gibberish while imitating a brass instrument. The vibraphone is playing the main melody. There is a piano playing chords in a syncopated manner. The bass guitar is playing a groovy bass line. The rhythmic background consists of an acoustic jazz drum beat. The atmosphere is dreamy and cheerful. This piece could be playing in the soundtrack of an animation movie during a dream sequence.", "data_idx": 2306, "number": 1, "label": "reggae"} +{"file_name": "test_04016.png", "caption": "This is a video game theme in the style of jazz music. There is a male vocalist singing gibberish while imitating a brass instrument. The vibraphone is playing the main melody. There is a piano playing chords in a syncopated manner. The bass guitar is playing a groovy bass line. The rhythmic background consists of an acoustic jazz drum beat. The atmosphere is dreamy and cheerful. This piece could be playing in the soundtrack of an animation movie during a dream sequence.", "data_idx": 2306, "number": 2, "label": "reggae"} +{"file_name": "test_04017.png", "caption": "This is a video game theme in the style of jazz music. There is a male vocalist singing gibberish while imitating a brass instrument. The vibraphone is playing the main melody. There is a piano playing chords in a syncopated manner. The bass guitar is playing a groovy bass line. The rhythmic background consists of an acoustic jazz drum beat. The atmosphere is dreamy and cheerful. This piece could be playing in the soundtrack of an animation movie during a dream sequence.", "data_idx": 2306, "number": 3, "label": "reggae"} +{"file_name": "test_04018.png", "caption": "Someone is strumming chords on a guitar while playing a sad sounding melody on a harmonica. This song may be playing sitting on a bonfire surrounded by friends.", "data_idx": 2311, "number": 0, "label": "classical"} +{"file_name": "test_04019.png", "caption": "Someone is strumming chords on a guitar while playing a sad sounding melody on a harmonica. This song may be playing sitting on a bonfire surrounded by friends.", "data_idx": 2311, "number": 1, "label": "classical"} +{"file_name": "test_04020.png", "caption": "Someone is strumming chords on a guitar while playing a sad sounding melody on a harmonica. This song may be playing sitting on a bonfire surrounded by friends.", "data_idx": 2311, "number": 2, "label": "classical"} +{"file_name": "test_04021.png", "caption": "Someone is strumming chords on a guitar while playing a sad sounding melody on a harmonica. This song may be playing sitting on a bonfire surrounded by friends.", "data_idx": 2311, "number": 3, "label": "classical"} +{"file_name": "test_04022.png", "caption": "This is an orchestral movie music piece. There is a brass section and a cinematic sounding strings section playing a dramatic tune. A percussive syncopation provides the rhythmic background. There is a faint high-pitched choir sound that is most likely coming from a synth. The atmosphere is full of suspense. This piece could be used in the soundtrack of a video game or a movie at a scene that implies an imminent threat or danger.", "data_idx": 2315, "number": 0, "label": "classical"} +{"file_name": "test_04023.png", "caption": "This is an orchestral movie music piece. There is a brass section and a cinematic sounding strings section playing a dramatic tune. A percussive syncopation provides the rhythmic background. There is a faint high-pitched choir sound that is most likely coming from a synth. The atmosphere is full of suspense. This piece could be used in the soundtrack of a video game or a movie at a scene that implies an imminent threat or danger.", "data_idx": 2315, "number": 1, "label": "classical"} +{"file_name": "test_04024.png", "caption": "This is an orchestral movie music piece. There is a brass section and a cinematic sounding strings section playing a dramatic tune. A percussive syncopation provides the rhythmic background. There is a faint high-pitched choir sound that is most likely coming from a synth. The atmosphere is full of suspense. This piece could be used in the soundtrack of a video game or a movie at a scene that implies an imminent threat or danger.", "data_idx": 2315, "number": 2, "label": "classical"} +{"file_name": "test_04025.png", "caption": "This is an orchestral movie music piece. There is a brass section and a cinematic sounding strings section playing a dramatic tune. A percussive syncopation provides the rhythmic background. There is a faint high-pitched choir sound that is most likely coming from a synth. The atmosphere is full of suspense. This piece could be used in the soundtrack of a video game or a movie at a scene that implies an imminent threat or danger.", "data_idx": 2315, "number": 3, "label": "classical"} +{"file_name": "test_04026.png", "caption": "This clip features a variety of sounds that would be suitable for meditation or at a massage parlour. The music is serene, peaceful, and calm. It features a gong, a wind-chime and a diapason.", "data_idx": 2318, "number": 0, "label": "classical"} +{"file_name": "test_04027.png", "caption": "This clip features a variety of sounds that would be suitable for meditation or at a massage parlour. The music is serene, peaceful, and calm. It features a gong, a wind-chime and a diapason.", "data_idx": 2318, "number": 1, "label": "classical"} +{"file_name": "test_04028.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a piano or keyboard accompaniment and no other instrumentation. The song is emotional and passionate like a love song. The audio quality is very poor with a lot of hissing noise and distortion.", "data_idx": 2322, "number": 0, "label": "classical"} +{"file_name": "test_04029.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a piano or keyboard accompaniment and no other instrumentation. The song is emotional and passionate like a love song. The audio quality is very poor with a lot of hissing noise and distortion.", "data_idx": 2322, "number": 1, "label": "classical"} +{"file_name": "test_04030.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a piano or keyboard accompaniment and no other instrumentation. The song is emotional and passionate like a love song. The audio quality is very poor with a lot of hissing noise and distortion.", "data_idx": 2322, "number": 2, "label": "classical"} +{"file_name": "test_04031.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a piano or keyboard accompaniment and no other instrumentation. The song is emotional and passionate like a love song. The audio quality is very poor with a lot of hissing noise and distortion.", "data_idx": 2322, "number": 3, "label": "classical"} +{"file_name": "test_04032.png", "caption": "The low quality recording features mellow piano chords playing. There is a short audio cut and the recording is noisy and in mono.", "data_idx": 2323, "number": 0, "label": "classical"} +{"file_name": "test_04033.png", "caption": "The low quality recording features mellow piano chords playing. There is a short audio cut and the recording is noisy and in mono.", "data_idx": 2323, "number": 1, "label": "classical"} +{"file_name": "test_04034.png", "caption": "The low quality recording features mellow piano chords playing. There is a short audio cut and the recording is noisy and in mono.", "data_idx": 2323, "number": 2, "label": "classical"} +{"file_name": "test_04035.png", "caption": "The low quality recording features mellow piano chords playing. There is a short audio cut and the recording is noisy and in mono.", "data_idx": 2323, "number": 3, "label": "classical"} +{"file_name": "test_04036.png", "caption": "The R&B song features a passionate female vocal, alongside wide background female vocals, singing over shimmering cymbals, punchy kick and snare hits, groovy bass guitar and wide electric guitar melody. It sounds passionate, emotional and addictive - like something you would hear in clubs a lot.", "data_idx": 2324, "number": 0, "label": "pop"} +{"file_name": "test_04037.png", "caption": "The R&B song features a passionate female vocal, alongside wide background female vocals, singing over shimmering cymbals, punchy kick and snare hits, groovy bass guitar and wide electric guitar melody. It sounds passionate, emotional and addictive - like something you would hear in clubs a lot.", "data_idx": 2324, "number": 1, "label": "pop"} +{"file_name": "test_04038.png", "caption": "The R&B song features a passionate female vocal, alongside wide background female vocals, singing over shimmering cymbals, punchy kick and snare hits, groovy bass guitar and wide electric guitar melody. It sounds passionate, emotional and addictive - like something you would hear in clubs a lot.", "data_idx": 2324, "number": 2, "label": "pop"} +{"file_name": "test_04039.png", "caption": "The R&B song features a passionate female vocal, alongside wide background female vocals, singing over shimmering cymbals, punchy kick and snare hits, groovy bass guitar and wide electric guitar melody. It sounds passionate, emotional and addictive - like something you would hear in clubs a lot.", "data_idx": 2324, "number": 3, "label": "pop"} +{"file_name": "test_04040.png", "caption": "This is a German Romantic era music piece. It is being performed live, however the quality of the recording is poor with frequently occurring peak noise. The french horn is playing the main melody while the background consists of a steady grand piano tune. The piece has a heart-touching feel to it.", "data_idx": 2325, "number": 0, "label": "classical"} +{"file_name": "test_04041.png", "caption": "This is a German Romantic era music piece. It is being performed live, however the quality of the recording is poor with frequently occurring peak noise. The french horn is playing the main melody while the background consists of a steady grand piano tune. The piece has a heart-touching feel to it.", "data_idx": 2325, "number": 1, "label": "classical"} +{"file_name": "test_04042.png", "caption": "This is a German Romantic era music piece. It is being performed live, however the quality of the recording is poor with frequently occurring peak noise. The french horn is playing the main melody while the background consists of a steady grand piano tune. The piece has a heart-touching feel to it.", "data_idx": 2325, "number": 2, "label": "classical"} +{"file_name": "test_04043.png", "caption": "This is a German Romantic era music piece. It is being performed live, however the quality of the recording is poor with frequently occurring peak noise. The french horn is playing the main melody while the background consists of a steady grand piano tune. The piece has a heart-touching feel to it.", "data_idx": 2325, "number": 3, "label": "classical"} +{"file_name": "test_04044.png", "caption": "The low quality recording features shoe tapping sounds alongside loud bagpipe melody and drum rolls. It sounds like it was recorded outside and therefore it is reverberant, epic and powerful. The recording is in mono and a bit noisy.", "data_idx": 2329, "number": 0, "label": "blues"} +{"file_name": "test_04045.png", "caption": "The low quality recording features shoe tapping sounds alongside loud bagpipe melody and drum rolls. It sounds like it was recorded outside and therefore it is reverberant, epic and powerful. The recording is in mono and a bit noisy.", "data_idx": 2329, "number": 1, "label": "blues"} +{"file_name": "test_04046.png", "caption": "The low quality recording features shoe tapping sounds alongside loud bagpipe melody and drum rolls. It sounds like it was recorded outside and therefore it is reverberant, epic and powerful. The recording is in mono and a bit noisy.", "data_idx": 2329, "number": 2, "label": "blues"} +{"file_name": "test_04047.png", "caption": "The low quality recording features shoe tapping sounds alongside loud bagpipe melody and drum rolls. It sounds like it was recorded outside and therefore it is reverberant, epic and powerful. The recording is in mono and a bit noisy.", "data_idx": 2329, "number": 3, "label": "blues"} +{"file_name": "test_04048.png", "caption": "The low quality recording features a wide harmonizing background vocals singing alongside passionate female lead vocal, over punchy snare hits, shimmering bells melody, simple hi hats, soft kick hits, simple bass and acoustic guitar melody. It sounds passionate, mellow and soft.", "data_idx": 2331, "number": 0, "label": "country"} +{"file_name": "test_04049.png", "caption": "The low quality recording features a wide harmonizing background vocals singing alongside passionate female lead vocal, over punchy snare hits, shimmering bells melody, simple hi hats, soft kick hits, simple bass and acoustic guitar melody. It sounds passionate, mellow and soft.", "data_idx": 2331, "number": 1, "label": "country"} +{"file_name": "test_04050.png", "caption": "The low quality recording features a wide harmonizing background vocals singing alongside passionate female lead vocal, over punchy snare hits, shimmering bells melody, simple hi hats, soft kick hits, simple bass and acoustic guitar melody. It sounds passionate, mellow and soft.", "data_idx": 2331, "number": 2, "label": "country"} +{"file_name": "test_04051.png", "caption": "The low quality recording features a wide harmonizing background vocals singing alongside passionate female lead vocal, over punchy snare hits, shimmering bells melody, simple hi hats, soft kick hits, simple bass and acoustic guitar melody. It sounds passionate, mellow and soft.", "data_idx": 2331, "number": 3, "label": "country"} +{"file_name": "test_04052.png", "caption": "This audio features a drum machine playing different beats. It starts off with a phrase using seven strokes on the kick and one hand clap. This is followed by another sequence of seven strokes on another percussive instrument and one stroke on a different part of the instrument. This is followed by a hip-hop beat using booming kick sounds. This is a demonstration of a drum machine.", "data_idx": 2333, "number": 0, "label": "hiphop"} +{"file_name": "test_04053.png", "caption": "This audio features a drum machine playing different beats. It starts off with a phrase using seven strokes on the kick and one hand clap. This is followed by another sequence of seven strokes on another percussive instrument and one stroke on a different part of the instrument. This is followed by a hip-hop beat using booming kick sounds. This is a demonstration of a drum machine.", "data_idx": 2333, "number": 1, "label": "hiphop"} +{"file_name": "test_04054.png", "caption": "This audio features a drum machine playing different beats. It starts off with a phrase using seven strokes on the kick and one hand clap. This is followed by another sequence of seven strokes on another percussive instrument and one stroke on a different part of the instrument. This is followed by a hip-hop beat using booming kick sounds. This is a demonstration of a drum machine.", "data_idx": 2333, "number": 2, "label": "hiphop"} +{"file_name": "test_04055.png", "caption": "This audio features a drum machine playing different beats. It starts off with a phrase using seven strokes on the kick and one hand clap. This is followed by another sequence of seven strokes on another percussive instrument and one stroke on a different part of the instrument. This is followed by a hip-hop beat using booming kick sounds. This is a demonstration of a drum machine.", "data_idx": 2333, "number": 3, "label": "hiphop"} +{"file_name": "test_04056.png", "caption": "This is an excerpt from a music show. There is a female voice narrating an event that took place. In the background, there is hip-hop music playing. A male vocal can be heard rapping. The melody is being played by a synth sound. There is a strong bass in the piece. The rhythm is played by the electronic drums. This piece could be used as an advertisement jingle for a sportswear or automobile company.", "data_idx": 2335, "number": 0, "label": "reggae"} +{"file_name": "test_04057.png", "caption": "This is an excerpt from a music show. There is a female voice narrating an event that took place. In the background, there is hip-hop music playing. A male vocal can be heard rapping. The melody is being played by a synth sound. There is a strong bass in the piece. The rhythm is played by the electronic drums. This piece could be used as an advertisement jingle for a sportswear or automobile company.", "data_idx": 2335, "number": 1, "label": "reggae"} +{"file_name": "test_04058.png", "caption": "This is an excerpt from a music show. There is a female voice narrating an event that took place. In the background, there is hip-hop music playing. A male vocal can be heard rapping. The melody is being played by a synth sound. There is a strong bass in the piece. The rhythm is played by the electronic drums. This piece could be used as an advertisement jingle for a sportswear or automobile company.", "data_idx": 2335, "number": 2, "label": "reggae"} +{"file_name": "test_04059.png", "caption": "This is an excerpt from a music show. There is a female voice narrating an event that took place. In the background, there is hip-hop music playing. A male vocal can be heard rapping. The melody is being played by a synth sound. There is a strong bass in the piece. The rhythm is played by the electronic drums. This piece could be used as an advertisement jingle for a sportswear or automobile company.", "data_idx": 2335, "number": 3, "label": "reggae"} +{"file_name": "test_04060.png", "caption": "This music is instrumental. The tempo is slow with a dominant Trombone lead. The music is loud, powerful, emphatic , clear and rich. This music is a Western Classical Trombone instrumental.", "data_idx": 2336, "number": 0, "label": "hiphop"} +{"file_name": "test_04061.png", "caption": "This music is instrumental. The tempo is slow with a dominant Trombone lead. The music is loud, powerful, emphatic , clear and rich. This music is a Western Classical Trombone instrumental.", "data_idx": 2336, "number": 1, "label": "hiphop"} +{"file_name": "test_04062.png", "caption": "This music is instrumental. The tempo is slow with a dominant Trombone lead. The music is loud, powerful, emphatic , clear and rich. This music is a Western Classical Trombone instrumental.", "data_idx": 2336, "number": 2, "label": "hiphop"} +{"file_name": "test_04063.png", "caption": "This music is instrumental. The tempo is slow with a dominant Trombone lead. The music is loud, powerful, emphatic , clear and rich. This music is a Western Classical Trombone instrumental.", "data_idx": 2336, "number": 3, "label": "hiphop"} +{"file_name": "test_04064.png", "caption": "The low quality recording features an electro song scratched by a DJ. The song consists of buzzy synth bass, bouncy cowbells, stretched low pitched male vocals, punchy kick, punchy snare layered with claps and shimmering hi-hats. It sounds energetic and groovy, like something you would hear in an underground club during the 90s.", "data_idx": 2337, "number": 0, "label": "disco"} +{"file_name": "test_04065.png", "caption": "The low quality recording features an electro song scratched by a DJ. The song consists of buzzy synth bass, bouncy cowbells, stretched low pitched male vocals, punchy kick, punchy snare layered with claps and shimmering hi-hats. It sounds energetic and groovy, like something you would hear in an underground club during the 90s.", "data_idx": 2337, "number": 1, "label": "disco"} +{"file_name": "test_04066.png", "caption": "The low quality recording features an electro song scratched by a DJ. The song consists of buzzy synth bass, bouncy cowbells, stretched low pitched male vocals, punchy kick, punchy snare layered with claps and shimmering hi-hats. It sounds energetic and groovy, like something you would hear in an underground club during the 90s.", "data_idx": 2337, "number": 2, "label": "disco"} +{"file_name": "test_04067.png", "caption": "The low quality recording features an electro song scratched by a DJ. The song consists of buzzy synth bass, bouncy cowbells, stretched low pitched male vocals, punchy kick, punchy snare layered with claps and shimmering hi-hats. It sounds energetic and groovy, like something you would hear in an underground club during the 90s.", "data_idx": 2337, "number": 3, "label": "disco"} +{"file_name": "test_04068.png", "caption": "This clip is a meditative and calming track. The leading instrument is a flute, which is played intricately and dynamically. In support, is a piano, on which arpeggios are played. The track would be suitable as music for relaxation at a spa.", "data_idx": 2338, "number": 0, "label": "jazz"} +{"file_name": "test_04069.png", "caption": "This clip is a meditative and calming track. The leading instrument is a flute, which is played intricately and dynamically. In support, is a piano, on which arpeggios are played. The track would be suitable as music for relaxation at a spa.", "data_idx": 2338, "number": 1, "label": "jazz"} +{"file_name": "test_04070.png", "caption": "This clip is a meditative and calming track. The leading instrument is a flute, which is played intricately and dynamically. In support, is a piano, on which arpeggios are played. The track would be suitable as music for relaxation at a spa.", "data_idx": 2338, "number": 2, "label": "jazz"} +{"file_name": "test_04071.png", "caption": "This clip is a meditative and calming track. The leading instrument is a flute, which is played intricately and dynamically. In support, is a piano, on which arpeggios are played. The track would be suitable as music for relaxation at a spa.", "data_idx": 2338, "number": 3, "label": "jazz"} +{"file_name": "test_04072.png", "caption": "The song is an instrumental. The song is slow tempo with three accordions playing in harmony and in a relaxed manner. The song is beautiful and romantic. The audio quality is average and an amateur home recording.", "data_idx": 2339, "number": 0, "label": "classical"} +{"file_name": "test_04073.png", "caption": "The song is an instrumental. The song is slow tempo with three accordions playing in harmony and in a relaxed manner. The song is beautiful and romantic. The audio quality is average and an amateur home recording.", "data_idx": 2339, "number": 1, "label": "classical"} +{"file_name": "test_04074.png", "caption": "The song is an instrumental. The song is slow tempo with three accordions playing in harmony and in a relaxed manner. The song is beautiful and romantic. The audio quality is average and an amateur home recording.", "data_idx": 2339, "number": 2, "label": "classical"} +{"file_name": "test_04075.png", "caption": "The song is an instrumental. The song is slow tempo with three accordions playing in harmony and in a relaxed manner. The song is beautiful and romantic. The audio quality is average and an amateur home recording.", "data_idx": 2339, "number": 3, "label": "classical"} +{"file_name": "test_04076.png", "caption": "Here we have an electric guitarist intricately playing a guitar solo with a reverb effect applied to his guitar. The music is a jazzy type of backing track with a sophisticated walking bassline. The guitarist is highly skilled.", "data_idx": 2340, "number": 0, "label": "disco"} +{"file_name": "test_04077.png", "caption": "Here we have an electric guitarist intricately playing a guitar solo with a reverb effect applied to his guitar. The music is a jazzy type of backing track with a sophisticated walking bassline. The guitarist is highly skilled.", "data_idx": 2340, "number": 1, "label": "disco"} +{"file_name": "test_04078.png", "caption": "Here we have an electric guitarist intricately playing a guitar solo with a reverb effect applied to his guitar. The music is a jazzy type of backing track with a sophisticated walking bassline. The guitarist is highly skilled.", "data_idx": 2340, "number": 2, "label": "disco"} +{"file_name": "test_04079.png", "caption": "Here we have an electric guitarist intricately playing a guitar solo with a reverb effect applied to his guitar. The music is a jazzy type of backing track with a sophisticated walking bassline. The guitarist is highly skilled.", "data_idx": 2340, "number": 3, "label": "disco"} +{"file_name": "test_04080.png", "caption": "This audio contains a digital drum with a kick with a lot of overdrive, a snare on the backbeat and a long noisy snare sound. This song sounds very monoton. This song may be playing in a club.", "data_idx": 2342, "number": 0, "label": "reggae"} +{"file_name": "test_04081.png", "caption": "This audio contains a digital drum with a kick with a lot of overdrive, a snare on the backbeat and a long noisy snare sound. This song sounds very monoton. This song may be playing in a club.", "data_idx": 2342, "number": 1, "label": "reggae"} +{"file_name": "test_04082.png", "caption": "The low quality recording features an electric guitar melody played over a playback that consists of groovy bass, punchy snare and shimmering cymbals. At the end of the loop, there is a flat male vocal talking. It sounds groovy, fun and the recording is noisy and slightly distorted.", "data_idx": 2344, "number": 0, "label": "blues"} +{"file_name": "test_04083.png", "caption": "The low quality recording features an electric guitar melody played over a playback that consists of groovy bass, punchy snare and shimmering cymbals. At the end of the loop, there is a flat male vocal talking. It sounds groovy, fun and the recording is noisy and slightly distorted.", "data_idx": 2344, "number": 1, "label": "blues"} +{"file_name": "test_04084.png", "caption": "The low quality recording features an electric guitar melody played over a playback that consists of groovy bass, punchy snare and shimmering cymbals. At the end of the loop, there is a flat male vocal talking. It sounds groovy, fun and the recording is noisy and slightly distorted.", "data_idx": 2344, "number": 2, "label": "blues"} +{"file_name": "test_04085.png", "caption": "The low quality recording features an electric guitar melody played over a playback that consists of groovy bass, punchy snare and shimmering cymbals. At the end of the loop, there is a flat male vocal talking. It sounds groovy, fun and the recording is noisy and slightly distorted.", "data_idx": 2344, "number": 3, "label": "blues"} +{"file_name": "test_04086.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over pad chords. The recording is very noisy and it sounds passionate.", "data_idx": 2345, "number": 0, "label": "country"} +{"file_name": "test_04087.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over pad chords. The recording is very noisy and it sounds passionate.", "data_idx": 2345, "number": 1, "label": "country"} +{"file_name": "test_04088.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over pad chords. The recording is very noisy and it sounds passionate.", "data_idx": 2345, "number": 2, "label": "country"} +{"file_name": "test_04089.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over pad chords. The recording is very noisy and it sounds passionate.", "data_idx": 2345, "number": 3, "label": "country"} +{"file_name": "test_04090.png", "caption": "A male singer sings this groovy melody. The tempo is medium with a strong bass line, steady drumming, keyboard playing a countermelody and various percussion hits. The song is funk pop in nature. The song has poor audio quality.", "data_idx": 2346, "number": 0, "label": "disco"} +{"file_name": "test_04091.png", "caption": "A male singer sings this groovy melody. The tempo is medium with a strong bass line, steady drumming, keyboard playing a countermelody and various percussion hits. The song is funk pop in nature. The song has poor audio quality.", "data_idx": 2346, "number": 1, "label": "disco"} +{"file_name": "test_04092.png", "caption": "A male singer sings this groovy melody. The tempo is medium with a strong bass line, steady drumming, keyboard playing a countermelody and various percussion hits. The song is funk pop in nature. The song has poor audio quality.", "data_idx": 2346, "number": 2, "label": "disco"} +{"file_name": "test_04093.png", "caption": "A male singer sings this groovy melody. The tempo is medium with a strong bass line, steady drumming, keyboard playing a countermelody and various percussion hits. The song is funk pop in nature. The song has poor audio quality.", "data_idx": 2346, "number": 3, "label": "disco"} +{"file_name": "test_04094.png", "caption": "The song is an instrumental. The song is medium fast tempo with percussionists playing a groovy rhythm on three clap boxes. The sound quality is poor with a lot of ambient crowd noise.", "data_idx": 2350, "number": 0, "label": "disco"} +{"file_name": "test_04095.png", "caption": "The song is an instrumental. The song is medium fast tempo with percussionists playing a groovy rhythm on three clap boxes. The sound quality is poor with a lot of ambient crowd noise.", "data_idx": 2350, "number": 1, "label": "disco"} +{"file_name": "test_04096.png", "caption": "The song is an instrumental. The song is medium fast tempo with percussionists playing a groovy rhythm on three clap boxes. The sound quality is poor with a lot of ambient crowd noise.", "data_idx": 2350, "number": 2, "label": "disco"} +{"file_name": "test_04097.png", "caption": "The song is an instrumental. The song is medium fast tempo with percussionists playing a groovy rhythm on three clap boxes. The sound quality is poor with a lot of ambient crowd noise.", "data_idx": 2350, "number": 3, "label": "disco"} +{"file_name": "test_04098.png", "caption": "This is an instrumental jam recording. There is a mini theremin being played at a high pitch. It is making vibrating and squeaking sounds. There is an instructive male voice speaking. There is an eerie feel to the sound. This recording could be sampled for use in beat-making.", "data_idx": 2352, "number": 0, "label": "country"} +{"file_name": "test_04099.png", "caption": "This is an instrumental jam recording. There is a mini theremin being played at a high pitch. It is making vibrating and squeaking sounds. There is an instructive male voice speaking. There is an eerie feel to the sound. This recording could be sampled for use in beat-making.", "data_idx": 2352, "number": 1, "label": "country"} +{"file_name": "test_04100.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a flat male vocal singing over sustained strings melody and mellow, subtle percussive element. There are some people talking in the background, followed by a cough. It sounds passionate and emotional, even though the recording is noisy and in mono.", "data_idx": 2354, "number": 0, "label": "rock"} +{"file_name": "test_04101.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a flat male vocal singing over sustained strings melody and mellow, subtle percussive element. There are some people talking in the background, followed by a cough. It sounds passionate and emotional, even though the recording is noisy and in mono.", "data_idx": 2354, "number": 1, "label": "rock"} +{"file_name": "test_04102.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a flat male vocal singing over sustained strings melody and mellow, subtle percussive element. There are some people talking in the background, followed by a cough. It sounds passionate and emotional, even though the recording is noisy and in mono.", "data_idx": 2354, "number": 2, "label": "rock"} +{"file_name": "test_04103.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a flat male vocal singing over sustained strings melody and mellow, subtle percussive element. There are some people talking in the background, followed by a cough. It sounds passionate and emotional, even though the recording is noisy and in mono.", "data_idx": 2354, "number": 3, "label": "rock"} +{"file_name": "test_04104.png", "caption": "This clip features a male voice in a narrative voice. This is accompanied by a synth sound using a ring modulator effect. The voice is calming. This song can be played in a documentary movie. There is no vocal melody in this song. There are no other instruments in this clip.", "data_idx": 2356, "number": 0, "label": "reggae"} +{"file_name": "test_04105.png", "caption": "This clip features a male voice in a narrative voice. This is accompanied by a synth sound using a ring modulator effect. The voice is calming. This song can be played in a documentary movie. There is no vocal melody in this song. There are no other instruments in this clip.", "data_idx": 2356, "number": 1, "label": "reggae"} +{"file_name": "test_04106.png", "caption": "This clip features a male voice in a narrative voice. This is accompanied by a synth sound using a ring modulator effect. The voice is calming. This song can be played in a documentary movie. There is no vocal melody in this song. There are no other instruments in this clip.", "data_idx": 2356, "number": 2, "label": "reggae"} +{"file_name": "test_04107.png", "caption": "This clip features a male voice in a narrative voice. This is accompanied by a synth sound using a ring modulator effect. The voice is calming. This song can be played in a documentary movie. There is no vocal melody in this song. There are no other instruments in this clip.", "data_idx": 2356, "number": 3, "label": "reggae"} +{"file_name": "test_04108.png", "caption": "This music is instrumental , the tempo is slow with an electric guitar lead and a strong bass guitar accompaniment. The music is assertive and emphatic but sounds sad, melancholic,nostalgic, romantic , wistful and sentimental. This music is Blues Harmony.", "data_idx": 2358, "number": 0, "label": "jazz"} +{"file_name": "test_04109.png", "caption": "This music is instrumental , the tempo is slow with an electric guitar lead and a strong bass guitar accompaniment. The music is assertive and emphatic but sounds sad, melancholic,nostalgic, romantic , wistful and sentimental. This music is Blues Harmony.", "data_idx": 2358, "number": 1, "label": "jazz"} +{"file_name": "test_04110.png", "caption": "This music is instrumental , the tempo is slow with an electric guitar lead and a strong bass guitar accompaniment. The music is assertive and emphatic but sounds sad, melancholic,nostalgic, romantic , wistful and sentimental. This music is Blues Harmony.", "data_idx": 2358, "number": 2, "label": "jazz"} +{"file_name": "test_04111.png", "caption": "This music is instrumental , the tempo is slow with an electric guitar lead and a strong bass guitar accompaniment. The music is assertive and emphatic but sounds sad, melancholic,nostalgic, romantic , wistful and sentimental. This music is Blues Harmony.", "data_idx": 2358, "number": 3, "label": "jazz"} +{"file_name": "test_04112.png", "caption": "The low quality recording features synth pad chords, followed by mellow arpeggiated piano melody. It sounds soft and emotional.", "data_idx": 2359, "number": 0, "label": "jazz"} +{"file_name": "test_04113.png", "caption": "The low quality recording features synth pad chords, followed by mellow arpeggiated piano melody. It sounds soft and emotional.", "data_idx": 2359, "number": 1, "label": "jazz"} +{"file_name": "test_04114.png", "caption": "The low quality recording features synth pad chords, followed by mellow arpeggiated piano melody. It sounds soft and emotional.", "data_idx": 2359, "number": 2, "label": "jazz"} +{"file_name": "test_04115.png", "caption": "The low quality recording features synth pad chords, followed by mellow arpeggiated piano melody. It sounds soft and emotional.", "data_idx": 2359, "number": 3, "label": "jazz"} +{"file_name": "test_04116.png", "caption": "The low quality recording features a tutorial on how to make the electric guitar sound like a banjo. It consists of a flat male vocalist talking over the background instrumental music, after which he starts playing the electric guitar. The recording is noisy.", "data_idx": 2363, "number": 0, "label": "reggae"} +{"file_name": "test_04117.png", "caption": "The low quality recording features a tutorial on how to make the electric guitar sound like a banjo. It consists of a flat male vocalist talking over the background instrumental music, after which he starts playing the electric guitar. The recording is noisy.", "data_idx": 2363, "number": 1, "label": "reggae"} +{"file_name": "test_04118.png", "caption": "The low quality recording features a tutorial on how to make the electric guitar sound like a banjo. It consists of a flat male vocalist talking over the background instrumental music, after which he starts playing the electric guitar. The recording is noisy.", "data_idx": 2363, "number": 2, "label": "reggae"} +{"file_name": "test_04119.png", "caption": "The low quality recording features a tutorial on how to make the electric guitar sound like a banjo. It consists of a flat male vocalist talking over the background instrumental music, after which he starts playing the electric guitar. The recording is noisy.", "data_idx": 2363, "number": 3, "label": "reggae"} +{"file_name": "test_04120.png", "caption": "The low quality recording features a commercial song that consists of wooden percussion, soft kick hits, echoing bells, toms and buzzy synth lead. There is a very weird pause in the song, which was supposed to be a break. It sounds weird and minimal.", "data_idx": 2364, "number": 0, "label": "hiphop"} +{"file_name": "test_04121.png", "caption": "The low quality recording features a commercial song that consists of wooden percussion, soft kick hits, echoing bells, toms and buzzy synth lead. There is a very weird pause in the song, which was supposed to be a break. It sounds weird and minimal.", "data_idx": 2364, "number": 1, "label": "hiphop"} +{"file_name": "test_04122.png", "caption": "The low quality recording features a commercial song that consists of wooden percussion, soft kick hits, echoing bells, toms and buzzy synth lead. There is a very weird pause in the song, which was supposed to be a break. It sounds weird and minimal.", "data_idx": 2364, "number": 2, "label": "hiphop"} +{"file_name": "test_04123.png", "caption": "The low quality recording features a commercial song that consists of wooden percussion, soft kick hits, echoing bells, toms and buzzy synth lead. There is a very weird pause in the song, which was supposed to be a break. It sounds weird and minimal.", "data_idx": 2364, "number": 3, "label": "hiphop"} +{"file_name": "test_04124.png", "caption": "This is an ambient jam performed on an electric guitar. The electric guitar is being played with an effect applied to it. There is a male voice describing the sound. The parts where he is not speaking could be sampled for use in beat-making.", "data_idx": 2366, "number": 0, "label": "country"} +{"file_name": "test_04125.png", "caption": "This is an ambient jam performed on an electric guitar. The electric guitar is being played with an effect applied to it. There is a male voice describing the sound. The parts where he is not speaking could be sampled for use in beat-making.", "data_idx": 2366, "number": 1, "label": "country"} +{"file_name": "test_04126.png", "caption": "This is an ambient jam performed on an electric guitar. The electric guitar is being played with an effect applied to it. There is a male voice describing the sound. The parts where he is not speaking could be sampled for use in beat-making.", "data_idx": 2366, "number": 2, "label": "country"} +{"file_name": "test_04127.png", "caption": "This is an ambient jam performed on an electric guitar. The electric guitar is being played with an effect applied to it. There is a male voice describing the sound. The parts where he is not speaking could be sampled for use in beat-making.", "data_idx": 2366, "number": 3, "label": "country"} +{"file_name": "test_04128.png", "caption": "There is a very large bell ringing, and we hear the resonance thereafter. The bell rings repeatedly throughout the whole clip. The audio quality of the clip is poor, and we hear distortion in the clip as a result.", "data_idx": 2367, "number": 0, "label": "classical"} +{"file_name": "test_04129.png", "caption": "There is a very large bell ringing, and we hear the resonance thereafter. The bell rings repeatedly throughout the whole clip. The audio quality of the clip is poor, and we hear distortion in the clip as a result.", "data_idx": 2367, "number": 1, "label": "classical"} +{"file_name": "test_04130.png", "caption": "There is a very large bell ringing, and we hear the resonance thereafter. The bell rings repeatedly throughout the whole clip. The audio quality of the clip is poor, and we hear distortion in the clip as a result.", "data_idx": 2367, "number": 2, "label": "classical"} +{"file_name": "test_04131.png", "caption": "There is a very large bell ringing, and we hear the resonance thereafter. The bell rings repeatedly throughout the whole clip. The audio quality of the clip is poor, and we hear distortion in the clip as a result.", "data_idx": 2367, "number": 3, "label": "classical"} +{"file_name": "test_04132.png", "caption": "This is a Swiss rap music piece. There is a male vocal rapping in the German language. The melody consists of a repeating theme played by a synth sound. A low-to-medium range string sample can be heard every now and then. The rhythmic background consists of an electronic drum beat which contains very faint clicking sounds added for texture. It is an urban sounding piece. This piece would fit perfectly in the soundtrack of a crime movie that takes place in the ghettos of a German-speaking city.", "data_idx": 2371, "number": 0, "label": "hiphop"} +{"file_name": "test_04133.png", "caption": "This is a Swiss rap music piece. There is a male vocal rapping in the German language. The melody consists of a repeating theme played by a synth sound. A low-to-medium range string sample can be heard every now and then. The rhythmic background consists of an electronic drum beat which contains very faint clicking sounds added for texture. It is an urban sounding piece. This piece would fit perfectly in the soundtrack of a crime movie that takes place in the ghettos of a German-speaking city.", "data_idx": 2371, "number": 1, "label": "hiphop"} +{"file_name": "test_04134.png", "caption": "This is a Swiss rap music piece. There is a male vocal rapping in the German language. The melody consists of a repeating theme played by a synth sound. A low-to-medium range string sample can be heard every now and then. The rhythmic background consists of an electronic drum beat which contains very faint clicking sounds added for texture. It is an urban sounding piece. This piece would fit perfectly in the soundtrack of a crime movie that takes place in the ghettos of a German-speaking city.", "data_idx": 2371, "number": 2, "label": "hiphop"} +{"file_name": "test_04135.png", "caption": "This is a Swiss rap music piece. There is a male vocal rapping in the German language. The melody consists of a repeating theme played by a synth sound. A low-to-medium range string sample can be heard every now and then. The rhythmic background consists of an electronic drum beat which contains very faint clicking sounds added for texture. It is an urban sounding piece. This piece would fit perfectly in the soundtrack of a crime movie that takes place in the ghettos of a German-speaking city.", "data_idx": 2371, "number": 3, "label": "hiphop"} +{"file_name": "test_04136.png", "caption": "An acoustic drum is playing a constant groove along with an e-bass playing the footnote of an e-piano playing a major chord progression. A e-guitar is ending the phrases of the melody in a lower key. In the background you can hear bells playing. A female sounding voice is singing responding to a small choir taking turns singing a melody. This song may be playing during a cheerful event such as Christmas.", "data_idx": 2382, "number": 0, "label": "rock"} +{"file_name": "test_04137.png", "caption": "An acoustic drum is playing a constant groove along with an e-bass playing the footnote of an e-piano playing a major chord progression. A e-guitar is ending the phrases of the melody in a lower key. In the background you can hear bells playing. A female sounding voice is singing responding to a small choir taking turns singing a melody. This song may be playing during a cheerful event such as Christmas.", "data_idx": 2382, "number": 1, "label": "rock"} +{"file_name": "test_04138.png", "caption": "An acoustic drum is playing a constant groove along with an e-bass playing the footnote of an e-piano playing a major chord progression. A e-guitar is ending the phrases of the melody in a lower key. In the background you can hear bells playing. A female sounding voice is singing responding to a small choir taking turns singing a melody. This song may be playing during a cheerful event such as Christmas.", "data_idx": 2382, "number": 2, "label": "rock"} +{"file_name": "test_04139.png", "caption": "An acoustic drum is playing a constant groove along with an e-bass playing the footnote of an e-piano playing a major chord progression. A e-guitar is ending the phrases of the melody in a lower key. In the background you can hear bells playing. A female sounding voice is singing responding to a small choir taking turns singing a melody. This song may be playing during a cheerful event such as Christmas.", "data_idx": 2382, "number": 3, "label": "rock"} +{"file_name": "test_04140.png", "caption": "This music is instrumental. The tempo is fast with a continuous droning harmony of the Didgeridoo and rhythmic beats of a small hand percussion.The music is unique, deep, droning, buzzing, hypnotic, psychedelic and incessant. This music is a Didgeridoo instrumental.", "data_idx": 2388, "number": 0, "label": "hiphop"} +{"file_name": "test_04141.png", "caption": "This music is instrumental. The tempo is fast with a continuous droning harmony of the Didgeridoo and rhythmic beats of a small hand percussion.The music is unique, deep, droning, buzzing, hypnotic, psychedelic and incessant. This music is a Didgeridoo instrumental.", "data_idx": 2388, "number": 1, "label": "hiphop"} +{"file_name": "test_04142.png", "caption": "This music is instrumental. The tempo is fast with a continuous droning harmony of the Didgeridoo and rhythmic beats of a small hand percussion.The music is unique, deep, droning, buzzing, hypnotic, psychedelic and incessant. This music is a Didgeridoo instrumental.", "data_idx": 2388, "number": 2, "label": "hiphop"} +{"file_name": "test_04143.png", "caption": "This music is instrumental. The tempo is fast with a continuous droning harmony of the Didgeridoo and rhythmic beats of a small hand percussion.The music is unique, deep, droning, buzzing, hypnotic, psychedelic and incessant. This music is a Didgeridoo instrumental.", "data_idx": 2388, "number": 3, "label": "hiphop"} +{"file_name": "test_04144.png", "caption": "The song is an instrumental. The song is slow tempo with a piano playing beautifully with no other accompanying instruments. The song is emotional and relaxing. The song serves as soundtrack for an aquatic life documentary.", "data_idx": 2389, "number": 0, "label": "jazz"} +{"file_name": "test_04145.png", "caption": "The song is an instrumental. The song is slow tempo with a piano playing beautifully with no other accompanying instruments. The song is emotional and relaxing. The song serves as soundtrack for an aquatic life documentary.", "data_idx": 2389, "number": 1, "label": "jazz"} +{"file_name": "test_04146.png", "caption": "The song is an instrumental. The song is slow tempo with a piano playing beautifully with no other accompanying instruments. The song is emotional and relaxing. The song serves as soundtrack for an aquatic life documentary.", "data_idx": 2389, "number": 2, "label": "jazz"} +{"file_name": "test_04147.png", "caption": "The song is an instrumental. The song is slow tempo with a piano playing beautifully with no other accompanying instruments. The song is emotional and relaxing. The song serves as soundtrack for an aquatic life documentary.", "data_idx": 2389, "number": 3, "label": "jazz"} +{"file_name": "test_04148.png", "caption": "This music is instrumental. The tempo is fast with an enthusiastic flute harmony and bassoon accompaniment. The music is upbeat, catchy, engaging, vivacious, melodic, cheerful, happy and pleasant. This music is an upbeat classical instrumental.", "data_idx": 2391, "number": 0, "label": "jazz"} +{"file_name": "test_04149.png", "caption": "This music is instrumental. The tempo is fast with an enthusiastic flute harmony and bassoon accompaniment. The music is upbeat, catchy, engaging, vivacious, melodic, cheerful, happy and pleasant. This music is an upbeat classical instrumental.", "data_idx": 2391, "number": 1, "label": "jazz"} +{"file_name": "test_04150.png", "caption": "This music is instrumental. The tempo is fast with an enthusiastic flute harmony and bassoon accompaniment. The music is upbeat, catchy, engaging, vivacious, melodic, cheerful, happy and pleasant. This music is an upbeat classical instrumental.", "data_idx": 2391, "number": 2, "label": "jazz"} +{"file_name": "test_04151.png", "caption": "This music is instrumental. The tempo is fast with an enthusiastic flute harmony and bassoon accompaniment. The music is upbeat, catchy, engaging, vivacious, melodic, cheerful, happy and pleasant. This music is an upbeat classical instrumental.", "data_idx": 2391, "number": 3, "label": "jazz"} +{"file_name": "test_04152.png", "caption": "Serious music in the gangster rap genre that features a strong male rapper with doubled vocals over a 90's hip hop beat. Deep bass drives the beat along with hand percussion, clap, electric piano, synth flute, and tambourine.", "data_idx": 2394, "number": 0, "label": "hiphop"} +{"file_name": "test_04153.png", "caption": "Serious music in the gangster rap genre that features a strong male rapper with doubled vocals over a 90's hip hop beat. Deep bass drives the beat along with hand percussion, clap, electric piano, synth flute, and tambourine.", "data_idx": 2394, "number": 1, "label": "hiphop"} +{"file_name": "test_04154.png", "caption": "Serious music in the gangster rap genre that features a strong male rapper with doubled vocals over a 90's hip hop beat. Deep bass drives the beat along with hand percussion, clap, electric piano, synth flute, and tambourine.", "data_idx": 2394, "number": 2, "label": "hiphop"} +{"file_name": "test_04155.png", "caption": "Serious music in the gangster rap genre that features a strong male rapper with doubled vocals over a 90's hip hop beat. Deep bass drives the beat along with hand percussion, clap, electric piano, synth flute, and tambourine.", "data_idx": 2394, "number": 3, "label": "hiphop"} +{"file_name": "test_04156.png", "caption": "This ska song features a flute playing the main melody. Other flutes play staccato notes in the background. This is backed by trumpets playing chords in the background. The percussion plays a simple beat in common time. The double bass plays a 12-bar blues style bassline. There are no voices in this song. This is an instrumental. This song can be played at a Broadway event.", "data_idx": 2395, "number": 0, "label": "jazz"} +{"file_name": "test_04157.png", "caption": "This ska song features a flute playing the main melody. Other flutes play staccato notes in the background. This is backed by trumpets playing chords in the background. The percussion plays a simple beat in common time. The double bass plays a 12-bar blues style bassline. There are no voices in this song. This is an instrumental. This song can be played at a Broadway event.", "data_idx": 2395, "number": 1, "label": "jazz"} +{"file_name": "test_04158.png", "caption": "This ska song features a flute playing the main melody. Other flutes play staccato notes in the background. This is backed by trumpets playing chords in the background. The percussion plays a simple beat in common time. The double bass plays a 12-bar blues style bassline. There are no voices in this song. This is an instrumental. This song can be played at a Broadway event.", "data_idx": 2395, "number": 2, "label": "jazz"} +{"file_name": "test_04159.png", "caption": "This ska song features a flute playing the main melody. Other flutes play staccato notes in the background. This is backed by trumpets playing chords in the background. The percussion plays a simple beat in common time. The double bass plays a 12-bar blues style bassline. There are no voices in this song. This is an instrumental. This song can be played at a Broadway event.", "data_idx": 2395, "number": 3, "label": "jazz"} diff --git a/data/test/metadata_0008.jsonl b/data/test/metadata_0008.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..805abd1559dfcdadbb4cc22ea1064632b061dfa4 --- /dev/null +++ b/data/test/metadata_0008.jsonl @@ -0,0 +1,376 @@ +{"file_name": "test_04160.png", "caption": "This is an amateur recording of a sound check jam. The audio quality is quite poor with an emphasis on the drum sound. There is a male vocal that can be barely heard over the sound of the bass guitar and the acoustic drums. The piece is easygoing. This recording can be sampled for use in beat-making.", "data_idx": 2400, "number": 0, "label": "hiphop"} +{"file_name": "test_04161.png", "caption": "This is an amateur recording of a sound check jam. The audio quality is quite poor with an emphasis on the drum sound. There is a male vocal that can be barely heard over the sound of the bass guitar and the acoustic drums. The piece is easygoing. This recording can be sampled for use in beat-making.", "data_idx": 2400, "number": 1, "label": "hiphop"} +{"file_name": "test_04162.png", "caption": "This is an amateur recording of a sound check jam. The audio quality is quite poor with an emphasis on the drum sound. There is a male vocal that can be barely heard over the sound of the bass guitar and the acoustic drums. The piece is easygoing. This recording can be sampled for use in beat-making.", "data_idx": 2400, "number": 2, "label": "hiphop"} +{"file_name": "test_04163.png", "caption": "This is an amateur recording of a sound check jam. The audio quality is quite poor with an emphasis on the drum sound. There is a male vocal that can be barely heard over the sound of the bass guitar and the acoustic drums. The piece is easygoing. This recording can be sampled for use in beat-making.", "data_idx": 2400, "number": 3, "label": "hiphop"} +{"file_name": "test_04164.png", "caption": "The song is instrumental. The tempo is medium with a prolific fiddler playing melody and a banjo and guitar accompaniment. The song is adventurous and exciting. The song is a classic country instrumental. The song has poor audio quality.", "data_idx": 2401, "number": 0, "label": "classical"} +{"file_name": "test_04165.png", "caption": "The song is instrumental. The tempo is medium with a prolific fiddler playing melody and a banjo and guitar accompaniment. The song is adventurous and exciting. The song is a classic country instrumental. The song has poor audio quality.", "data_idx": 2401, "number": 1, "label": "classical"} +{"file_name": "test_04166.png", "caption": "The song is instrumental. The tempo is medium with a prolific fiddler playing melody and a banjo and guitar accompaniment. The song is adventurous and exciting. The song is a classic country instrumental. The song has poor audio quality.", "data_idx": 2401, "number": 2, "label": "classical"} +{"file_name": "test_04167.png", "caption": "The song is instrumental. The tempo is medium with a prolific fiddler playing melody and a banjo and guitar accompaniment. The song is adventurous and exciting. The song is a classic country instrumental. The song has poor audio quality.", "data_idx": 2401, "number": 3, "label": "classical"} +{"file_name": "test_04168.png", "caption": "This is an experimental rock/indie rock music piece. The rhythmic background consists of a peculiar 6/8 acoustic drum beat that has shifted kick drum hits. There are sleigh bells accompanying the drums. The synth bass is playing a simple and repeated theme. The atmosphere is eerie. This piece could be used in the soundtrack of a noir movie where a character is devising a plan to deal with conflict.", "data_idx": 2402, "number": 0, "label": "hiphop"} +{"file_name": "test_04169.png", "caption": "This is an experimental rock/indie rock music piece. The rhythmic background consists of a peculiar 6/8 acoustic drum beat that has shifted kick drum hits. There are sleigh bells accompanying the drums. The synth bass is playing a simple and repeated theme. The atmosphere is eerie. This piece could be used in the soundtrack of a noir movie where a character is devising a plan to deal with conflict.", "data_idx": 2402, "number": 1, "label": "hiphop"} +{"file_name": "test_04170.png", "caption": "The low quality recording features a live performance of a female choir that consists of harmonizing female vocals. It sounds addictive, mellow and soft.", "data_idx": 2406, "number": 0, "label": "rock"} +{"file_name": "test_04171.png", "caption": "The low quality recording features a live performance of a female choir that consists of harmonizing female vocals. It sounds addictive, mellow and soft.", "data_idx": 2406, "number": 1, "label": "rock"} +{"file_name": "test_04172.png", "caption": "The low quality recording features a live performance of a female choir that consists of harmonizing female vocals. It sounds addictive, mellow and soft.", "data_idx": 2406, "number": 2, "label": "rock"} +{"file_name": "test_04173.png", "caption": "The low quality recording features a live performance of a female choir that consists of harmonizing female vocals. It sounds addictive, mellow and soft.", "data_idx": 2406, "number": 3, "label": "rock"} +{"file_name": "test_04174.png", "caption": "Sinister sounding orchestral music with a foreboding low string melody using a tritone interval while the high strings and female choir hold a dissonant chord.", "data_idx": 2409, "number": 0, "label": "classical"} +{"file_name": "test_04175.png", "caption": "Sinister sounding orchestral music with a foreboding low string melody using a tritone interval while the high strings and female choir hold a dissonant chord.", "data_idx": 2409, "number": 1, "label": "classical"} +{"file_name": "test_04176.png", "caption": "Sinister sounding orchestral music with a foreboding low string melody using a tritone interval while the high strings and female choir hold a dissonant chord.", "data_idx": 2409, "number": 2, "label": "classical"} +{"file_name": "test_04177.png", "caption": "Sinister sounding orchestral music with a foreboding low string melody using a tritone interval while the high strings and female choir hold a dissonant chord.", "data_idx": 2409, "number": 3, "label": "classical"} +{"file_name": "test_04178.png", "caption": "This pop song features a male and female voice singing the main melody. There are backing voices singing fills in between lines. Children sing in the background. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. A synth plays a pedal chord in staccato. This song can be played at the end credits of a holiday movie.", "data_idx": 2410, "number": 0, "label": "rock"} +{"file_name": "test_04179.png", "caption": "This pop song features a male and female voice singing the main melody. There are backing voices singing fills in between lines. Children sing in the background. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. A synth plays a pedal chord in staccato. This song can be played at the end credits of a holiday movie.", "data_idx": 2410, "number": 1, "label": "rock"} +{"file_name": "test_04180.png", "caption": "This pop song features a male and female voice singing the main melody. There are backing voices singing fills in between lines. Children sing in the background. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. A synth plays a pedal chord in staccato. This song can be played at the end credits of a holiday movie.", "data_idx": 2410, "number": 2, "label": "rock"} +{"file_name": "test_04181.png", "caption": "This pop song features a male and female voice singing the main melody. There are backing voices singing fills in between lines. Children sing in the background. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords. A synth plays a pedal chord in staccato. This song can be played at the end credits of a holiday movie.", "data_idx": 2410, "number": 3, "label": "rock"} +{"file_name": "test_04182.png", "caption": "Someone is strumming chords on an e-guitar while playing a melody with the harmonica in a higher register. This song may be playing gathered around a bonfire.", "data_idx": 2411, "number": 0, "label": "blues"} +{"file_name": "test_04183.png", "caption": "Someone is strumming chords on an e-guitar while playing a melody with the harmonica in a higher register. This song may be playing gathered around a bonfire.", "data_idx": 2411, "number": 1, "label": "blues"} +{"file_name": "test_04184.png", "caption": "Someone is strumming chords on an e-guitar while playing a melody with the harmonica in a higher register. This song may be playing gathered around a bonfire.", "data_idx": 2411, "number": 2, "label": "blues"} +{"file_name": "test_04185.png", "caption": "Someone is strumming chords on an e-guitar while playing a melody with the harmonica in a higher register. This song may be playing gathered around a bonfire.", "data_idx": 2411, "number": 3, "label": "blues"} +{"file_name": "test_04186.png", "caption": "This audio contains people playing a melody with bagpipes in a higher pitch. This song may be playing live during a traditional and formal event.", "data_idx": 2412, "number": 0, "label": "classical"} +{"file_name": "test_04187.png", "caption": "This audio contains people playing a melody with bagpipes in a higher pitch. This song may be playing live during a traditional and formal event.", "data_idx": 2412, "number": 1, "label": "classical"} +{"file_name": "test_04188.png", "caption": "This audio contains people playing a melody with bagpipes in a higher pitch. This song may be playing live during a traditional and formal event.", "data_idx": 2412, "number": 2, "label": "classical"} +{"file_name": "test_04189.png", "caption": "This audio contains people playing a melody with bagpipes in a higher pitch. This song may be playing live during a traditional and formal event.", "data_idx": 2412, "number": 3, "label": "classical"} +{"file_name": "test_04190.png", "caption": "The low quality recording features a shimmering cymbals in the left channel, alongside suspenseful didgeridoo melody, followed by tinny wooden percussion and violin melody in the right channel of the stereo image. The recording is noisy and due to the unconventional panning, the stereo image is unbalanced.Overall it sounds suspenseful and intense.", "data_idx": 2421, "number": 0, "label": "classical"} +{"file_name": "test_04191.png", "caption": "The low quality recording features a shimmering cymbals in the left channel, alongside suspenseful didgeridoo melody, followed by tinny wooden percussion and violin melody in the right channel of the stereo image. The recording is noisy and due to the unconventional panning, the stereo image is unbalanced.Overall it sounds suspenseful and intense.", "data_idx": 2421, "number": 1, "label": "classical"} +{"file_name": "test_04192.png", "caption": "The low quality recording features a shimmering cymbals in the left channel, alongside suspenseful didgeridoo melody, followed by tinny wooden percussion and violin melody in the right channel of the stereo image. The recording is noisy and due to the unconventional panning, the stereo image is unbalanced.Overall it sounds suspenseful and intense.", "data_idx": 2421, "number": 2, "label": "classical"} +{"file_name": "test_04193.png", "caption": "The low quality recording features a shimmering cymbals in the left channel, alongside suspenseful didgeridoo melody, followed by tinny wooden percussion and violin melody in the right channel of the stereo image. The recording is noisy and due to the unconventional panning, the stereo image is unbalanced.Overall it sounds suspenseful and intense.", "data_idx": 2421, "number": 3, "label": "classical"} +{"file_name": "test_04194.png", "caption": "This is an acapella version of a Christmas gospel music piece. There are children singing using the harmony singing technique. The piece has a heart-touching feel to it. This piece could be used in the soundtrack of a Christmas movie.", "data_idx": 2425, "number": 0, "label": "hiphop"} +{"file_name": "test_04195.png", "caption": "This is an acapella version of a Christmas gospel music piece. There are children singing using the harmony singing technique. The piece has a heart-touching feel to it. This piece could be used in the soundtrack of a Christmas movie.", "data_idx": 2425, "number": 1, "label": "hiphop"} +{"file_name": "test_04196.png", "caption": "This is an acapella version of a Christmas gospel music piece. There are children singing using the harmony singing technique. The piece has a heart-touching feel to it. This piece could be used in the soundtrack of a Christmas movie.", "data_idx": 2425, "number": 2, "label": "hiphop"} +{"file_name": "test_04197.png", "caption": "This is an acapella version of a Christmas gospel music piece. There are children singing using the harmony singing technique. The piece has a heart-touching feel to it. This piece could be used in the soundtrack of a Christmas movie.", "data_idx": 2425, "number": 3, "label": "hiphop"} +{"file_name": "test_04198.png", "caption": "A male singer sings this death metal melody with screaming vocals. The tempo is fast, with fast metal drumming, percussive bass line, rhythmic distorted guitar play and various percussion hits. The song is exciting and high on adrenaline. The audio quality is poor.", "data_idx": 2429, "number": 0, "label": "metal"} +{"file_name": "test_04199.png", "caption": "A male singer sings this death metal melody with screaming vocals. The tempo is fast, with fast metal drumming, percussive bass line, rhythmic distorted guitar play and various percussion hits. The song is exciting and high on adrenaline. The audio quality is poor.", "data_idx": 2429, "number": 1, "label": "metal"} +{"file_name": "test_04200.png", "caption": "You can hear a bell ringing with a lot of release time. In the background a bird is chirping. This song may be used for starting a documentary.", "data_idx": 2430, "number": 0, "label": "hiphop"} +{"file_name": "test_04201.png", "caption": "You can hear a bell ringing with a lot of release time. In the background a bird is chirping. This song may be used for starting a documentary.", "data_idx": 2430, "number": 1, "label": "hiphop"} +{"file_name": "test_04202.png", "caption": "You can hear a bell ringing with a lot of release time. In the background a bird is chirping. This song may be used for starting a documentary.", "data_idx": 2430, "number": 2, "label": "hiphop"} +{"file_name": "test_04203.png", "caption": "You can hear a bell ringing with a lot of release time. In the background a bird is chirping. This song may be used for starting a documentary.", "data_idx": 2430, "number": 3, "label": "hiphop"} +{"file_name": "test_04204.png", "caption": "The low quality recording features a widely spread harmonizing french horn melody. It sounds emotional and passionate.", "data_idx": 2433, "number": 0, "label": "hiphop"} +{"file_name": "test_04205.png", "caption": "The low quality recording features a widely spread harmonizing french horn melody. It sounds emotional and passionate.", "data_idx": 2433, "number": 1, "label": "hiphop"} +{"file_name": "test_04206.png", "caption": "The low quality recording features a widely spread harmonizing french horn melody. It sounds emotional and passionate.", "data_idx": 2433, "number": 2, "label": "hiphop"} +{"file_name": "test_04207.png", "caption": "The low quality recording features a widely spread harmonizing french horn melody. It sounds emotional and passionate.", "data_idx": 2433, "number": 3, "label": "hiphop"} +{"file_name": "test_04208.png", "caption": "This is an amateur recording of a dance performance. There is a zumba dance music version of a movie theme playing in the background. The melody is being played by the strings and the keyboard while there is a loud electronic drum beat for the rhythm. There is a mysterious yet energetic feel to this piece. The recording quality is not that great. However, this piece could still be used to gather samples for beat-making.", "data_idx": 2435, "number": 0, "label": "classical"} +{"file_name": "test_04209.png", "caption": "This is an amateur recording of a dance performance. There is a zumba dance music version of a movie theme playing in the background. The melody is being played by the strings and the keyboard while there is a loud electronic drum beat for the rhythm. There is a mysterious yet energetic feel to this piece. The recording quality is not that great. However, this piece could still be used to gather samples for beat-making.", "data_idx": 2435, "number": 1, "label": "classical"} +{"file_name": "test_04210.png", "caption": "This is an amateur recording of a dance performance. There is a zumba dance music version of a movie theme playing in the background. The melody is being played by the strings and the keyboard while there is a loud electronic drum beat for the rhythm. There is a mysterious yet energetic feel to this piece. The recording quality is not that great. However, this piece could still be used to gather samples for beat-making.", "data_idx": 2435, "number": 2, "label": "classical"} +{"file_name": "test_04211.png", "caption": "This is an amateur recording of a dance performance. There is a zumba dance music version of a movie theme playing in the background. The melody is being played by the strings and the keyboard while there is a loud electronic drum beat for the rhythm. There is a mysterious yet energetic feel to this piece. The recording quality is not that great. However, this piece could still be used to gather samples for beat-making.", "data_idx": 2435, "number": 3, "label": "classical"} +{"file_name": "test_04212.png", "caption": "The rock song features a fruity male vocal with occasional echoing effects, singing over punchy kick and snare hits, energetic cymbals, wide electric guitar melody and distorted bass guitar. Towards the end of the loop, there is a stuttering effect, which makes a perfect variation for such an energetic and aggressive song. It also sounds addictive, due to that cadence.", "data_idx": 2442, "number": 0, "label": "metal"} +{"file_name": "test_04213.png", "caption": "The rock song features a fruity male vocal with occasional echoing effects, singing over punchy kick and snare hits, energetic cymbals, wide electric guitar melody and distorted bass guitar. Towards the end of the loop, there is a stuttering effect, which makes a perfect variation for such an energetic and aggressive song. It also sounds addictive, due to that cadence.", "data_idx": 2442, "number": 1, "label": "metal"} +{"file_name": "test_04214.png", "caption": "The rock song features a fruity male vocal with occasional echoing effects, singing over punchy kick and snare hits, energetic cymbals, wide electric guitar melody and distorted bass guitar. Towards the end of the loop, there is a stuttering effect, which makes a perfect variation for such an energetic and aggressive song. It also sounds addictive, due to that cadence.", "data_idx": 2442, "number": 2, "label": "metal"} +{"file_name": "test_04215.png", "caption": "The rock song features a fruity male vocal with occasional echoing effects, singing over punchy kick and snare hits, energetic cymbals, wide electric guitar melody and distorted bass guitar. Towards the end of the loop, there is a stuttering effect, which makes a perfect variation for such an energetic and aggressive song. It also sounds addictive, due to that cadence.", "data_idx": 2442, "number": 3, "label": "metal"} +{"file_name": "test_04216.png", "caption": "This sound is produced on a didgeridoo. The song has a droning sound interspersed with sounds of bass notes. There is a rhythm to this droning and bass sound but there is no melody. This song has a tribal feel. This song can be played in a movie scene where a person is lost in a forest.", "data_idx": 2443, "number": 0, "label": "hiphop"} +{"file_name": "test_04217.png", "caption": "This sound is produced on a didgeridoo. The song has a droning sound interspersed with sounds of bass notes. There is a rhythm to this droning and bass sound but there is no melody. This song has a tribal feel. This song can be played in a movie scene where a person is lost in a forest.", "data_idx": 2443, "number": 1, "label": "hiphop"} +{"file_name": "test_04218.png", "caption": "This sound is produced on a didgeridoo. The song has a droning sound interspersed with sounds of bass notes. There is a rhythm to this droning and bass sound but there is no melody. This song has a tribal feel. This song can be played in a movie scene where a person is lost in a forest.", "data_idx": 2443, "number": 2, "label": "hiphop"} +{"file_name": "test_04219.png", "caption": "This sound is produced on a didgeridoo. The song has a droning sound interspersed with sounds of bass notes. There is a rhythm to this droning and bass sound but there is no melody. This song has a tribal feel. This song can be played in a movie scene where a person is lost in a forest.", "data_idx": 2443, "number": 3, "label": "hiphop"} +{"file_name": "test_04220.png", "caption": "The song is an instrumental. The song is medium tempo, with a keyboard accompaniment and string pad section. The song is emotional and passionate. The song is a movie soundtrack with poor audio quality.", "data_idx": 2444, "number": 0, "label": "classical"} +{"file_name": "test_04221.png", "caption": "The song is an instrumental. The song is medium tempo, with a keyboard accompaniment and string pad section. The song is emotional and passionate. The song is a movie soundtrack with poor audio quality.", "data_idx": 2444, "number": 1, "label": "classical"} +{"file_name": "test_04222.png", "caption": "The song is an instrumental. The song is medium tempo, with a keyboard accompaniment and string pad section. The song is emotional and passionate. The song is a movie soundtrack with poor audio quality.", "data_idx": 2444, "number": 2, "label": "classical"} +{"file_name": "test_04223.png", "caption": "The song is an instrumental. The song is medium tempo, with a keyboard accompaniment and string pad section. The song is emotional and passionate. The song is a movie soundtrack with poor audio quality.", "data_idx": 2444, "number": 3, "label": "classical"} +{"file_name": "test_04224.png", "caption": "This is an acoustic drum jam. The drummer is playing rapidly using the double bass technique which is an iconic technique used in metal drumming. The atmosphere is loud and aggressive. This piece can be sampled for use in beat-making.", "data_idx": 2445, "number": 0, "label": "hiphop"} +{"file_name": "test_04225.png", "caption": "This is an acoustic drum jam. The drummer is playing rapidly using the double bass technique which is an iconic technique used in metal drumming. The atmosphere is loud and aggressive. This piece can be sampled for use in beat-making.", "data_idx": 2445, "number": 1, "label": "hiphop"} +{"file_name": "test_04226.png", "caption": "This song contains digital drums playing a four on the floor rhythm with a strong kick on every beat. A male voice is singing at a higher pitch. This song may be playing in a techno club.", "data_idx": 2449, "number": 0, "label": "pop"} +{"file_name": "test_04227.png", "caption": "This song contains digital drums playing a four on the floor rhythm with a strong kick on every beat. A male voice is singing at a higher pitch. This song may be playing in a techno club.", "data_idx": 2449, "number": 1, "label": "pop"} +{"file_name": "test_04228.png", "caption": "This jazz song features a saxophone solo. This is accompanied by percussion playing at a fast tempo. The overall tempo of this song is moderate. The double bass plays on the off beats. A piano plays jazz chords in the background. There are no voices in this song. This song can be played in a luxury bar.", "data_idx": 2452, "number": 0, "label": "jazz"} +{"file_name": "test_04229.png", "caption": "This jazz song features a saxophone solo. This is accompanied by percussion playing at a fast tempo. The overall tempo of this song is moderate. The double bass plays on the off beats. A piano plays jazz chords in the background. There are no voices in this song. This song can be played in a luxury bar.", "data_idx": 2452, "number": 1, "label": "jazz"} +{"file_name": "test_04230.png", "caption": "This jazz song features a saxophone solo. This is accompanied by percussion playing at a fast tempo. The overall tempo of this song is moderate. The double bass plays on the off beats. A piano plays jazz chords in the background. There are no voices in this song. This song can be played in a luxury bar.", "data_idx": 2452, "number": 2, "label": "jazz"} +{"file_name": "test_04231.png", "caption": "This jazz song features a saxophone solo. This is accompanied by percussion playing at a fast tempo. The overall tempo of this song is moderate. The double bass plays on the off beats. A piano plays jazz chords in the background. There are no voices in this song. This song can be played in a luxury bar.", "data_idx": 2452, "number": 3, "label": "jazz"} +{"file_name": "test_04232.png", "caption": "This is a dub/jazz music piece. There is an electric guitar playing the main melody while a fat bass guitar is supporting it in the background. The rhythm is being played by a laid-back acoustic drum beat. The atmosphere is chill and trippy. This piece could be playing in the background at a dance club for a slow dance night. It could also be used in the soundtrack of a romance movie that takes place in the city, especially during intimate scenes.", "data_idx": 2453, "number": 0, "label": "reggae"} +{"file_name": "test_04233.png", "caption": "This is a dub/jazz music piece. There is an electric guitar playing the main melody while a fat bass guitar is supporting it in the background. The rhythm is being played by a laid-back acoustic drum beat. The atmosphere is chill and trippy. This piece could be playing in the background at a dance club for a slow dance night. It could also be used in the soundtrack of a romance movie that takes place in the city, especially during intimate scenes.", "data_idx": 2453, "number": 1, "label": "reggae"} +{"file_name": "test_04234.png", "caption": "This is a dub/jazz music piece. There is an electric guitar playing the main melody while a fat bass guitar is supporting it in the background. The rhythm is being played by a laid-back acoustic drum beat. The atmosphere is chill and trippy. This piece could be playing in the background at a dance club for a slow dance night. It could also be used in the soundtrack of a romance movie that takes place in the city, especially during intimate scenes.", "data_idx": 2453, "number": 2, "label": "reggae"} +{"file_name": "test_04235.png", "caption": "This is a dub/jazz music piece. There is an electric guitar playing the main melody while a fat bass guitar is supporting it in the background. The rhythm is being played by a laid-back acoustic drum beat. The atmosphere is chill and trippy. This piece could be playing in the background at a dance club for a slow dance night. It could also be used in the soundtrack of a romance movie that takes place in the city, especially during intimate scenes.", "data_idx": 2453, "number": 3, "label": "reggae"} +{"file_name": "test_04236.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a saxophone solo melody played over mellow keys chords, groovy bass, punchy snare and kick hits and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 2454, "number": 0, "label": "blues"} +{"file_name": "test_04237.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a saxophone solo melody played over mellow keys chords, groovy bass, punchy snare and kick hits and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 2454, "number": 1, "label": "blues"} +{"file_name": "test_04238.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a saxophone solo melody played over mellow keys chords, groovy bass, punchy snare and kick hits and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 2454, "number": 2, "label": "blues"} +{"file_name": "test_04239.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a saxophone solo melody played over mellow keys chords, groovy bass, punchy snare and kick hits and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 2454, "number": 3, "label": "blues"} +{"file_name": "test_04240.png", "caption": "We have an Urdu speaking male narrator, speaking over some ambient background music. The music is tranquil, relaxing and features the use of traditional South Asian melodies and instruments. We hear a Bansuri being played, and a stringed instrument on which arpeggios are being played.", "data_idx": 2455, "number": 0, "label": "hiphop"} +{"file_name": "test_04241.png", "caption": "We have an Urdu speaking male narrator, speaking over some ambient background music. The music is tranquil, relaxing and features the use of traditional South Asian melodies and instruments. We hear a Bansuri being played, and a stringed instrument on which arpeggios are being played.", "data_idx": 2455, "number": 1, "label": "hiphop"} +{"file_name": "test_04242.png", "caption": "We have an Urdu speaking male narrator, speaking over some ambient background music. The music is tranquil, relaxing and features the use of traditional South Asian melodies and instruments. We hear a Bansuri being played, and a stringed instrument on which arpeggios are being played.", "data_idx": 2455, "number": 2, "label": "hiphop"} +{"file_name": "test_04243.png", "caption": "We have an Urdu speaking male narrator, speaking over some ambient background music. The music is tranquil, relaxing and features the use of traditional South Asian melodies and instruments. We hear a Bansuri being played, and a stringed instrument on which arpeggios are being played.", "data_idx": 2455, "number": 3, "label": "hiphop"} +{"file_name": "test_04244.png", "caption": "This audio contains an acoustic piano playing a minor key melody that sounds like being in a dream along with strings rising up from the background playing a melody in the low to the higher register. This song may be playing for a lovely movie scene where birds are flying in slow motion and kids are playing outside.", "data_idx": 2456, "number": 0, "label": "hiphop"} +{"file_name": "test_04245.png", "caption": "This audio contains an acoustic piano playing a minor key melody that sounds like being in a dream along with strings rising up from the background playing a melody in the low to the higher register. This song may be playing for a lovely movie scene where birds are flying in slow motion and kids are playing outside.", "data_idx": 2456, "number": 1, "label": "hiphop"} +{"file_name": "test_04246.png", "caption": "A male singer sings this youthful k-pop song. The tempo is fast with a heartbeat rhythm, electro static sounds, electric buzz, followed by a fast paced drum rhythm, guitar accompaniment and a groovy bass line. The song is groovy and very youthful.", "data_idx": 2457, "number": 0, "label": "disco"} +{"file_name": "test_04247.png", "caption": "A male singer sings this youthful k-pop song. The tempo is fast with a heartbeat rhythm, electro static sounds, electric buzz, followed by a fast paced drum rhythm, guitar accompaniment and a groovy bass line. The song is groovy and very youthful.", "data_idx": 2457, "number": 1, "label": "disco"} +{"file_name": "test_04248.png", "caption": "A male singer sings this youthful k-pop song. The tempo is fast with a heartbeat rhythm, electro static sounds, electric buzz, followed by a fast paced drum rhythm, guitar accompaniment and a groovy bass line. The song is groovy and very youthful.", "data_idx": 2457, "number": 2, "label": "disco"} +{"file_name": "test_04249.png", "caption": "A male singer sings this youthful k-pop song. The tempo is fast with a heartbeat rhythm, electro static sounds, electric buzz, followed by a fast paced drum rhythm, guitar accompaniment and a groovy bass line. The song is groovy and very youthful.", "data_idx": 2457, "number": 3, "label": "disco"} +{"file_name": "test_04250.png", "caption": "This music is instrumental. The tempo is medium with a piano harmony with the voice of a child speaking and a bee buzzing superimposed on the music. This clip is a tutorial on how to speak English. The music is subdued with the emphatic and loud voice of the child.", "data_idx": 2459, "number": 0, "label": "pop"} +{"file_name": "test_04251.png", "caption": "This music is instrumental. The tempo is medium with a piano harmony with the voice of a child speaking and a bee buzzing superimposed on the music. This clip is a tutorial on how to speak English. The music is subdued with the emphatic and loud voice of the child.", "data_idx": 2459, "number": 1, "label": "pop"} +{"file_name": "test_04252.png", "caption": "This music is instrumental. The tempo is medium with a piano harmony with the voice of a child speaking and a bee buzzing superimposed on the music. This clip is a tutorial on how to speak English. The music is subdued with the emphatic and loud voice of the child.", "data_idx": 2459, "number": 2, "label": "pop"} +{"file_name": "test_04253.png", "caption": "This music is instrumental. The tempo is medium with a piano harmony with the voice of a child speaking and a bee buzzing superimposed on the music. This clip is a tutorial on how to speak English. The music is subdued with the emphatic and loud voice of the child.", "data_idx": 2459, "number": 3, "label": "pop"} +{"file_name": "test_04254.png", "caption": "This music is instrumental. The tempo is slow with a euphonious harp melody with no accompaniment. The music is soft, mellow, ethereal, melancholic, nostalgic, pensive, soft and ambient. This music is a Western Classical.", "data_idx": 2460, "number": 0, "label": "classical"} +{"file_name": "test_04255.png", "caption": "This music is instrumental. The tempo is slow with a euphonious harp melody with no accompaniment. The music is soft, mellow, ethereal, melancholic, nostalgic, pensive, soft and ambient. This music is a Western Classical.", "data_idx": 2460, "number": 1, "label": "classical"} +{"file_name": "test_04256.png", "caption": "This music is instrumental. The tempo is slow with a euphonious harp melody with no accompaniment. The music is soft, mellow, ethereal, melancholic, nostalgic, pensive, soft and ambient. This music is a Western Classical.", "data_idx": 2460, "number": 2, "label": "classical"} +{"file_name": "test_04257.png", "caption": "This music is instrumental. The tempo is slow with a euphonious harp melody with no accompaniment. The music is soft, mellow, ethereal, melancholic, nostalgic, pensive, soft and ambient. This music is a Western Classical.", "data_idx": 2460, "number": 3, "label": "classical"} +{"file_name": "test_04258.png", "caption": "This song contains people strumming chords on acoustic guitars while a banjo and a mandolin are taking turns playing a lead melody. In the background you can hear an upright bass playing a fitting bassline. This song may be playing live while having a BBQ with friends.", "data_idx": 2464, "number": 0, "label": "blues"} +{"file_name": "test_04259.png", "caption": "This song contains people strumming chords on acoustic guitars while a banjo and a mandolin are taking turns playing a lead melody. In the background you can hear an upright bass playing a fitting bassline. This song may be playing live while having a BBQ with friends.", "data_idx": 2464, "number": 1, "label": "blues"} +{"file_name": "test_04260.png", "caption": "This song contains people strumming chords on acoustic guitars while a banjo and a mandolin are taking turns playing a lead melody. In the background you can hear an upright bass playing a fitting bassline. This song may be playing live while having a BBQ with friends.", "data_idx": 2464, "number": 2, "label": "blues"} +{"file_name": "test_04261.png", "caption": "This song contains people strumming chords on acoustic guitars while a banjo and a mandolin are taking turns playing a lead melody. In the background you can hear an upright bass playing a fitting bassline. This song may be playing live while having a BBQ with friends.", "data_idx": 2464, "number": 3, "label": "blues"} +{"file_name": "test_04262.png", "caption": "This music is instrumental. The tempo is slow with a melancholic piano melody with violin harmony and keyboard accompaniment. The music is sad, mellow, grim, sombre, wistful, poignant, pensive, melancholic and reflective. This music is a soundtrack for a movie.", "data_idx": 2465, "number": 0, "label": "classical"} +{"file_name": "test_04263.png", "caption": "This music is instrumental. The tempo is slow with a melancholic piano melody with violin harmony and keyboard accompaniment. The music is sad, mellow, grim, sombre, wistful, poignant, pensive, melancholic and reflective. This music is a soundtrack for a movie.", "data_idx": 2465, "number": 1, "label": "classical"} +{"file_name": "test_04264.png", "caption": "This music is instrumental. The tempo is slow with a melancholic piano melody with violin harmony and keyboard accompaniment. The music is sad, mellow, grim, sombre, wistful, poignant, pensive, melancholic and reflective. This music is a soundtrack for a movie.", "data_idx": 2465, "number": 2, "label": "classical"} +{"file_name": "test_04265.png", "caption": "This music is instrumental. The tempo is slow with a melancholic piano melody with violin harmony and keyboard accompaniment. The music is sad, mellow, grim, sombre, wistful, poignant, pensive, melancholic and reflective. This music is a soundtrack for a movie.", "data_idx": 2465, "number": 3, "label": "classical"} +{"file_name": "test_04266.png", "caption": "This song features a female voice singing the main melody. This song has a Middle-Eastern feel. The voice is accompanied by percussion playing a dance beat. A synth plays a high pitched melody in between lines. A synth pad plays chords in the background. The bass plays the root notes of the chords. Toward the end, all instruments except the synth pads pause. The voice continues to sing at this time. An autotune effect is used on the voice. This song can be played in a club.", "data_idx": 2468, "number": 0, "label": "rock"} +{"file_name": "test_04267.png", "caption": "This song features a female voice singing the main melody. This song has a Middle-Eastern feel. The voice is accompanied by percussion playing a dance beat. A synth plays a high pitched melody in between lines. A synth pad plays chords in the background. The bass plays the root notes of the chords. Toward the end, all instruments except the synth pads pause. The voice continues to sing at this time. An autotune effect is used on the voice. This song can be played in a club.", "data_idx": 2468, "number": 1, "label": "rock"} +{"file_name": "test_04268.png", "caption": "This song features a female voice singing the main melody. This song has a Middle-Eastern feel. The voice is accompanied by percussion playing a dance beat. A synth plays a high pitched melody in between lines. A synth pad plays chords in the background. The bass plays the root notes of the chords. Toward the end, all instruments except the synth pads pause. The voice continues to sing at this time. An autotune effect is used on the voice. This song can be played in a club.", "data_idx": 2468, "number": 2, "label": "rock"} +{"file_name": "test_04269.png", "caption": "This song features a female voice singing the main melody. This song has a Middle-Eastern feel. The voice is accompanied by percussion playing a dance beat. A synth plays a high pitched melody in between lines. A synth pad plays chords in the background. The bass plays the root notes of the chords. Toward the end, all instruments except the synth pads pause. The voice continues to sing at this time. An autotune effect is used on the voice. This song can be played in a club.", "data_idx": 2468, "number": 3, "label": "rock"} +{"file_name": "test_04270.png", "caption": "This is a recording of one note being played on the guitar, followed by some string bending. There is then a dialogue between male Japanese speakers.", "data_idx": 2469, "number": 0, "label": "blues"} +{"file_name": "test_04271.png", "caption": "This is a recording of one note being played on the guitar, followed by some string bending. There is then a dialogue between male Japanese speakers.", "data_idx": 2469, "number": 1, "label": "blues"} +{"file_name": "test_04272.png", "caption": "This is a recording of one note being played on the guitar, followed by some string bending. There is then a dialogue between male Japanese speakers.", "data_idx": 2469, "number": 2, "label": "blues"} +{"file_name": "test_04273.png", "caption": "This is a recording of one note being played on the guitar, followed by some string bending. There is then a dialogue between male Japanese speakers.", "data_idx": 2469, "number": 3, "label": "blues"} +{"file_name": "test_04274.png", "caption": "The low quality recording features a synth pad played at the very beginning of the loop, after which basic sine wave tone is played. It sounds weird and like a tutorial for making music.", "data_idx": 2470, "number": 0, "label": "hiphop"} +{"file_name": "test_04275.png", "caption": "The low quality recording features a synth pad played at the very beginning of the loop, after which basic sine wave tone is played. It sounds weird and like a tutorial for making music.", "data_idx": 2470, "number": 1, "label": "hiphop"} +{"file_name": "test_04276.png", "caption": "The low quality recording features a synth pad played at the very beginning of the loop, after which basic sine wave tone is played. It sounds weird and like a tutorial for making music.", "data_idx": 2470, "number": 2, "label": "hiphop"} +{"file_name": "test_04277.png", "caption": "The low quality recording features a synth pad played at the very beginning of the loop, after which basic sine wave tone is played. It sounds weird and like a tutorial for making music.", "data_idx": 2470, "number": 3, "label": "hiphop"} +{"file_name": "test_04278.png", "caption": "This amateur recording features a folk song played in India. The main melody is sung by a male voice. This is accompanied by a tabla and dhol playing the percussion parts in an Indian beat. A sarangi plays the same melody as the main voice. The sitar plays the rhythm parts. Cymbals are played at every count of each bar. This song can be played for a cultural dance programme.", "data_idx": 2471, "number": 0, "label": "classical"} +{"file_name": "test_04279.png", "caption": "This amateur recording features a folk song played in India. The main melody is sung by a male voice. This is accompanied by a tabla and dhol playing the percussion parts in an Indian beat. A sarangi plays the same melody as the main voice. The sitar plays the rhythm parts. Cymbals are played at every count of each bar. This song can be played for a cultural dance programme.", "data_idx": 2471, "number": 1, "label": "classical"} +{"file_name": "test_04280.png", "caption": "This amateur recording features a folk song played in India. The main melody is sung by a male voice. This is accompanied by a tabla and dhol playing the percussion parts in an Indian beat. A sarangi plays the same melody as the main voice. The sitar plays the rhythm parts. Cymbals are played at every count of each bar. This song can be played for a cultural dance programme.", "data_idx": 2471, "number": 2, "label": "classical"} +{"file_name": "test_04281.png", "caption": "This amateur recording features a folk song played in India. The main melody is sung by a male voice. This is accompanied by a tabla and dhol playing the percussion parts in an Indian beat. A sarangi plays the same melody as the main voice. The sitar plays the rhythm parts. Cymbals are played at every count of each bar. This song can be played for a cultural dance programme.", "data_idx": 2471, "number": 3, "label": "classical"} +{"file_name": "test_04282.png", "caption": "Someone is playing a fast paced melody on a sitar accompanied by someone playing a rhythm on tablas. This song may be playing live during a concert.", "data_idx": 2476, "number": 0, "label": "classical"} +{"file_name": "test_04283.png", "caption": "Someone is playing a fast paced melody on a sitar accompanied by someone playing a rhythm on tablas. This song may be playing live during a concert.", "data_idx": 2476, "number": 1, "label": "classical"} +{"file_name": "test_04284.png", "caption": "Someone is playing a fast paced melody on a sitar accompanied by someone playing a rhythm on tablas. This song may be playing live during a concert.", "data_idx": 2476, "number": 2, "label": "classical"} +{"file_name": "test_04285.png", "caption": "Someone is playing a fast paced melody on a sitar accompanied by someone playing a rhythm on tablas. This song may be playing live during a concert.", "data_idx": 2476, "number": 3, "label": "classical"} +{"file_name": "test_04286.png", "caption": "This is a reggae/dub music piece. There is a fat sounding bass guitar playing a groovy bass line. An electric guitar with heavy delay and reverb effects is playing a vague tune. There is a reggae acoustic drum beat in the rhythmic background. The atmosphere is trippy. This piece could be used in the soundtrack of a movie during scenes where a character would be under the influence of substances.", "data_idx": 2477, "number": 0, "label": "reggae"} +{"file_name": "test_04287.png", "caption": "This is a reggae/dub music piece. There is a fat sounding bass guitar playing a groovy bass line. An electric guitar with heavy delay and reverb effects is playing a vague tune. There is a reggae acoustic drum beat in the rhythmic background. The atmosphere is trippy. This piece could be used in the soundtrack of a movie during scenes where a character would be under the influence of substances.", "data_idx": 2477, "number": 1, "label": "reggae"} +{"file_name": "test_04288.png", "caption": "This is a reggae/dub music piece. There is a fat sounding bass guitar playing a groovy bass line. An electric guitar with heavy delay and reverb effects is playing a vague tune. There is a reggae acoustic drum beat in the rhythmic background. The atmosphere is trippy. This piece could be used in the soundtrack of a movie during scenes where a character would be under the influence of substances.", "data_idx": 2477, "number": 2, "label": "reggae"} +{"file_name": "test_04289.png", "caption": "This is a reggae/dub music piece. There is a fat sounding bass guitar playing a groovy bass line. An electric guitar with heavy delay and reverb effects is playing a vague tune. There is a reggae acoustic drum beat in the rhythmic background. The atmosphere is trippy. This piece could be used in the soundtrack of a movie during scenes where a character would be under the influence of substances.", "data_idx": 2477, "number": 3, "label": "reggae"} +{"file_name": "test_04290.png", "caption": "This blues song features a male voice singing the main melody. This is accompanied by the percussion playing a simple beat. The percussion plays the tambourine as well. The bass plays the same licks played on the guitar. The guitar plays notes that are octaves apart. Toward the end of the song, an overdrive guitar plays a hammer on note. The mood of this song is comforting. This song can be played in a bar.", "data_idx": 2478, "number": 0, "label": "reggae"} +{"file_name": "test_04291.png", "caption": "This blues song features a male voice singing the main melody. This is accompanied by the percussion playing a simple beat. The percussion plays the tambourine as well. The bass plays the same licks played on the guitar. The guitar plays notes that are octaves apart. Toward the end of the song, an overdrive guitar plays a hammer on note. The mood of this song is comforting. This song can be played in a bar.", "data_idx": 2478, "number": 1, "label": "reggae"} +{"file_name": "test_04292.png", "caption": "This blues song features a male voice singing the main melody. This is accompanied by the percussion playing a simple beat. The percussion plays the tambourine as well. The bass plays the same licks played on the guitar. The guitar plays notes that are octaves apart. Toward the end of the song, an overdrive guitar plays a hammer on note. The mood of this song is comforting. This song can be played in a bar.", "data_idx": 2478, "number": 2, "label": "reggae"} +{"file_name": "test_04293.png", "caption": "This blues song features a male voice singing the main melody. This is accompanied by the percussion playing a simple beat. The percussion plays the tambourine as well. The bass plays the same licks played on the guitar. The guitar plays notes that are octaves apart. Toward the end of the song, an overdrive guitar plays a hammer on note. The mood of this song is comforting. This song can be played in a bar.", "data_idx": 2478, "number": 3, "label": "reggae"} +{"file_name": "test_04294.png", "caption": "This is the compilation of live performances from a pop music boy band. There are teen male vocalists singing melodically. The melody is being played by an acoustic guitar and a bass guitar while an acoustic drum beat is playing in the rhythmic background. There are sounds of a crowd singing and cheering. The recording quality is poor.", "data_idx": 2480, "number": 0, "label": "hiphop"} +{"file_name": "test_04295.png", "caption": "This is the compilation of live performances from a pop music boy band. There are teen male vocalists singing melodically. The melody is being played by an acoustic guitar and a bass guitar while an acoustic drum beat is playing in the rhythmic background. There are sounds of a crowd singing and cheering. The recording quality is poor.", "data_idx": 2480, "number": 1, "label": "hiphop"} +{"file_name": "test_04296.png", "caption": "This is the compilation of live performances from a pop music boy band. There are teen male vocalists singing melodically. The melody is being played by an acoustic guitar and a bass guitar while an acoustic drum beat is playing in the rhythmic background. There are sounds of a crowd singing and cheering. The recording quality is poor.", "data_idx": 2480, "number": 2, "label": "hiphop"} +{"file_name": "test_04297.png", "caption": "This is the compilation of live performances from a pop music boy band. There are teen male vocalists singing melodically. The melody is being played by an acoustic guitar and a bass guitar while an acoustic drum beat is playing in the rhythmic background. There are sounds of a crowd singing and cheering. The recording quality is poor.", "data_idx": 2480, "number": 3, "label": "hiphop"} +{"file_name": "test_04298.png", "caption": "Male vocalist sings this upbeat Hip-Hop song. The tempo is fast with minimal instrumentation of a lively infectious, punchy drumming and enthusiastic vocal backup and incessant, vigorous vocalisation. The song is buoyant, catchy, punchy, funky, youthful,groovy, engaging, vibrant and vivacious. This song is contemporary Hip-Hop/Rap.", "data_idx": 2481, "number": 0, "label": "hiphop"} +{"file_name": "test_04299.png", "caption": "Male vocalist sings this upbeat Hip-Hop song. The tempo is fast with minimal instrumentation of a lively infectious, punchy drumming and enthusiastic vocal backup and incessant, vigorous vocalisation. The song is buoyant, catchy, punchy, funky, youthful,groovy, engaging, vibrant and vivacious. This song is contemporary Hip-Hop/Rap.", "data_idx": 2481, "number": 1, "label": "hiphop"} +{"file_name": "test_04300.png", "caption": "Male vocalist sings this upbeat Hip-Hop song. The tempo is fast with minimal instrumentation of a lively infectious, punchy drumming and enthusiastic vocal backup and incessant, vigorous vocalisation. The song is buoyant, catchy, punchy, funky, youthful,groovy, engaging, vibrant and vivacious. This song is contemporary Hip-Hop/Rap.", "data_idx": 2481, "number": 2, "label": "hiphop"} +{"file_name": "test_04301.png", "caption": "Male vocalist sings this upbeat Hip-Hop song. The tempo is fast with minimal instrumentation of a lively infectious, punchy drumming and enthusiastic vocal backup and incessant, vigorous vocalisation. The song is buoyant, catchy, punchy, funky, youthful,groovy, engaging, vibrant and vivacious. This song is contemporary Hip-Hop/Rap.", "data_idx": 2481, "number": 3, "label": "hiphop"} +{"file_name": "test_04302.png", "caption": "The song is an instrumental. The tempo is medium with theremin playing passionately, steady drumming rhythm ,groovy bass line and keyboard accompaniment . The tunes are Christmas carols with poor audio quality.", "data_idx": 2482, "number": 0, "label": "country"} +{"file_name": "test_04303.png", "caption": "The song is an instrumental. The tempo is medium with theremin playing passionately, steady drumming rhythm ,groovy bass line and keyboard accompaniment . The tunes are Christmas carols with poor audio quality.", "data_idx": 2482, "number": 1, "label": "country"} +{"file_name": "test_04304.png", "caption": "The song is an instrumental. The tempo is medium with theremin playing passionately, steady drumming rhythm ,groovy bass line and keyboard accompaniment . The tunes are Christmas carols with poor audio quality.", "data_idx": 2482, "number": 2, "label": "country"} +{"file_name": "test_04305.png", "caption": "The song is an instrumental. The tempo is medium with theremin playing passionately, steady drumming rhythm ,groovy bass line and keyboard accompaniment . The tunes are Christmas carols with poor audio quality.", "data_idx": 2482, "number": 3, "label": "country"} +{"file_name": "test_04306.png", "caption": "This classical sonata features a harpsichord playing a melody. This is accompanied by a cello playing the bass notes. There are no other instruments in this song. There is no voice in this song. This song can be played as a lullaby.", "data_idx": 2484, "number": 0, "label": "classical"} +{"file_name": "test_04307.png", "caption": "This classical sonata features a harpsichord playing a melody. This is accompanied by a cello playing the bass notes. There are no other instruments in this song. There is no voice in this song. This song can be played as a lullaby.", "data_idx": 2484, "number": 1, "label": "classical"} +{"file_name": "test_04308.png", "caption": "This classical sonata features a harpsichord playing a melody. This is accompanied by a cello playing the bass notes. There are no other instruments in this song. There is no voice in this song. This song can be played as a lullaby.", "data_idx": 2484, "number": 2, "label": "classical"} +{"file_name": "test_04309.png", "caption": "This classical sonata features a harpsichord playing a melody. This is accompanied by a cello playing the bass notes. There are no other instruments in this song. There is no voice in this song. This song can be played as a lullaby.", "data_idx": 2484, "number": 3, "label": "classical"} +{"file_name": "test_04310.png", "caption": "This song starts with a descending phrase played on a synth. This is followed by an ascending phrase on another synth. This is accompanied by simple programmed percussion playing the hi-hat on the first two counts and the fourth count of each bar. The snare is played on the third count of each bar. After four bars, the percussion plays a roll and the bass plays one note two times. The synth sounds in the background get louder when the roll is played. There are no voices in this song. This song can be played in a night club.", "data_idx": 2485, "number": 0, "label": "pop"} +{"file_name": "test_04311.png", "caption": "This song starts with a descending phrase played on a synth. This is followed by an ascending phrase on another synth. This is accompanied by simple programmed percussion playing the hi-hat on the first two counts and the fourth count of each bar. The snare is played on the third count of each bar. After four bars, the percussion plays a roll and the bass plays one note two times. The synth sounds in the background get louder when the roll is played. There are no voices in this song. This song can be played in a night club.", "data_idx": 2485, "number": 1, "label": "pop"} +{"file_name": "test_04312.png", "caption": "This song starts with a descending phrase played on a synth. This is followed by an ascending phrase on another synth. This is accompanied by simple programmed percussion playing the hi-hat on the first two counts and the fourth count of each bar. The snare is played on the third count of each bar. After four bars, the percussion plays a roll and the bass plays one note two times. The synth sounds in the background get louder when the roll is played. There are no voices in this song. This song can be played in a night club.", "data_idx": 2485, "number": 2, "label": "pop"} +{"file_name": "test_04313.png", "caption": "This song starts with a descending phrase played on a synth. This is followed by an ascending phrase on another synth. This is accompanied by simple programmed percussion playing the hi-hat on the first two counts and the fourth count of each bar. The snare is played on the third count of each bar. After four bars, the percussion plays a roll and the bass plays one note two times. The synth sounds in the background get louder when the roll is played. There are no voices in this song. This song can be played in a night club.", "data_idx": 2485, "number": 3, "label": "pop"} +{"file_name": "test_04314.png", "caption": "This audio contains someone playing an upright bass with a bow. The melody sounds a little bit dangerous and tension building. This song may be playing in a movie scene where someone is being followed.", "data_idx": 2486, "number": 0, "label": "jazz"} +{"file_name": "test_04315.png", "caption": "This audio contains someone playing an upright bass with a bow. The melody sounds a little bit dangerous and tension building. This song may be playing in a movie scene where someone is being followed.", "data_idx": 2486, "number": 1, "label": "jazz"} +{"file_name": "test_04316.png", "caption": "This audio contains someone playing an upright bass with a bow. The melody sounds a little bit dangerous and tension building. This song may be playing in a movie scene where someone is being followed.", "data_idx": 2486, "number": 2, "label": "jazz"} +{"file_name": "test_04317.png", "caption": "This audio contains someone playing an upright bass with a bow. The melody sounds a little bit dangerous and tension building. This song may be playing in a movie scene where someone is being followed.", "data_idx": 2486, "number": 3, "label": "jazz"} +{"file_name": "test_04318.png", "caption": "This orchestral song starts with a melody played on a reed instrument backed by strings and the triangle. This is followed by the horn section playing a descending run. The violin plays a solo after the horn section. The violins are backed by the bass played on viola or cello. The mood of this song is comedic. This song can be played in a movie scene where a criminal is planning a cunning tactic.", "data_idx": 2489, "number": 0, "label": "classical"} +{"file_name": "test_04319.png", "caption": "This orchestral song starts with a melody played on a reed instrument backed by strings and the triangle. This is followed by the horn section playing a descending run. The violin plays a solo after the horn section. The violins are backed by the bass played on viola or cello. The mood of this song is comedic. This song can be played in a movie scene where a criminal is planning a cunning tactic.", "data_idx": 2489, "number": 1, "label": "classical"} +{"file_name": "test_04320.png", "caption": "This orchestral song starts with a melody played on a reed instrument backed by strings and the triangle. This is followed by the horn section playing a descending run. The violin plays a solo after the horn section. The violins are backed by the bass played on viola or cello. The mood of this song is comedic. This song can be played in a movie scene where a criminal is planning a cunning tactic.", "data_idx": 2489, "number": 2, "label": "classical"} +{"file_name": "test_04321.png", "caption": "This orchestral song starts with a melody played on a reed instrument backed by strings and the triangle. This is followed by the horn section playing a descending run. The violin plays a solo after the horn section. The violins are backed by the bass played on viola or cello. The mood of this song is comedic. This song can be played in a movie scene where a criminal is planning a cunning tactic.", "data_idx": 2489, "number": 3, "label": "classical"} +{"file_name": "test_04322.png", "caption": "This song features a melody played on an acoustic guitar. Delay and reverb effects are added to the sound. This song starts off with notes being fingerpicked. The second bar involves a chord being held and allowed to ring for four counts. This is followed by a double stop and then descending notes played with a higher open string. The melody is romantic. There are no voices in this song. This song can be played in a romantic movie.", "data_idx": 2490, "number": 0, "label": "jazz"} +{"file_name": "test_04323.png", "caption": "This song features a melody played on an acoustic guitar. Delay and reverb effects are added to the sound. This song starts off with notes being fingerpicked. The second bar involves a chord being held and allowed to ring for four counts. This is followed by a double stop and then descending notes played with a higher open string. The melody is romantic. There are no voices in this song. This song can be played in a romantic movie.", "data_idx": 2490, "number": 1, "label": "jazz"} +{"file_name": "test_04324.png", "caption": "The low quality recording features an electro song that consists of a filter modulated bass, repetitive, echoing electric guitar melody, punchy kick and snare hits, shimmering hi hats and a saxophone solo melody played at the end. It sounds passionate and energetic.", "data_idx": 2491, "number": 0, "label": "hiphop"} +{"file_name": "test_04325.png", "caption": "The low quality recording features an electro song that consists of a filter modulated bass, repetitive, echoing electric guitar melody, punchy kick and snare hits, shimmering hi hats and a saxophone solo melody played at the end. It sounds passionate and energetic.", "data_idx": 2491, "number": 1, "label": "hiphop"} +{"file_name": "test_04326.png", "caption": "The low quality recording features an electro song that consists of a filter modulated bass, repetitive, echoing electric guitar melody, punchy kick and snare hits, shimmering hi hats and a saxophone solo melody played at the end. It sounds passionate and energetic.", "data_idx": 2491, "number": 2, "label": "hiphop"} +{"file_name": "test_04327.png", "caption": "The low quality recording features an electro song that consists of a filter modulated bass, repetitive, echoing electric guitar melody, punchy kick and snare hits, shimmering hi hats and a saxophone solo melody played at the end. It sounds passionate and energetic.", "data_idx": 2491, "number": 3, "label": "hiphop"} +{"file_name": "test_04328.png", "caption": "This song features the sound of a saxophone playing in the background. This is accompanied by the sound of a dog howling. There is no melody to the howling. This song has no other instruments.", "data_idx": 2495, "number": 0, "label": "classical"} +{"file_name": "test_04329.png", "caption": "This song features the sound of a saxophone playing in the background. This is accompanied by the sound of a dog howling. There is no melody to the howling. This song has no other instruments.", "data_idx": 2495, "number": 1, "label": "classical"} +{"file_name": "test_04330.png", "caption": "This song features the sound of a saxophone playing in the background. This is accompanied by the sound of a dog howling. There is no melody to the howling. This song has no other instruments.", "data_idx": 2495, "number": 2, "label": "classical"} +{"file_name": "test_04331.png", "caption": "This song features the sound of a saxophone playing in the background. This is accompanied by the sound of a dog howling. There is no melody to the howling. This song has no other instruments.", "data_idx": 2495, "number": 3, "label": "classical"} +{"file_name": "test_04332.png", "caption": "The low quality recording features an uptempo didgeridoo melody. It sounds reverberant, as it was probably played in a medium size room, and the recording is a bit noisy.", "data_idx": 2496, "number": 0, "label": "rock"} +{"file_name": "test_04333.png", "caption": "The low quality recording features an uptempo didgeridoo melody. It sounds reverberant, as it was probably played in a medium size room, and the recording is a bit noisy.", "data_idx": 2496, "number": 1, "label": "rock"} +{"file_name": "test_04334.png", "caption": "The low quality recording features an uptempo didgeridoo melody. It sounds reverberant, as it was probably played in a medium size room, and the recording is a bit noisy.", "data_idx": 2496, "number": 2, "label": "rock"} +{"file_name": "test_04335.png", "caption": "The low quality recording features an uptempo didgeridoo melody. It sounds reverberant, as it was probably played in a medium size room, and the recording is a bit noisy.", "data_idx": 2496, "number": 3, "label": "rock"} +{"file_name": "test_04336.png", "caption": "The low quality recording features a drummer playing his solo over a weird repetitive electric guitar solo melody. The drums consist of punchy kick and snare hits and shimmering cymbals. Overall it sounds energetic and exciting.", "data_idx": 2497, "number": 0, "label": "hiphop"} +{"file_name": "test_04337.png", "caption": "The low quality recording features a drummer playing his solo over a weird repetitive electric guitar solo melody. The drums consist of punchy kick and snare hits and shimmering cymbals. Overall it sounds energetic and exciting.", "data_idx": 2497, "number": 1, "label": "hiphop"} +{"file_name": "test_04338.png", "caption": "The low quality recording features a drummer playing his solo over a weird repetitive electric guitar solo melody. The drums consist of punchy kick and snare hits and shimmering cymbals. Overall it sounds energetic and exciting.", "data_idx": 2497, "number": 2, "label": "hiphop"} +{"file_name": "test_04339.png", "caption": "The low quality recording features a drummer playing his solo over a weird repetitive electric guitar solo melody. The drums consist of punchy kick and snare hits and shimmering cymbals. Overall it sounds energetic and exciting.", "data_idx": 2497, "number": 3, "label": "hiphop"} +{"file_name": "test_04340.png", "caption": "This is an instrumental music piece that was made for a soap opera soundtrack. The piano and the strings are playing gently in a melancholic manner. The atmosphere of the piece is emotional. This piece could be used in the soundtrack of a drama movie during scenes of hopelessness or heartbreak.", "data_idx": 2500, "number": 0, "label": "classical"} +{"file_name": "test_04341.png", "caption": "This is an instrumental music piece that was made for a soap opera soundtrack. The piano and the strings are playing gently in a melancholic manner. The atmosphere of the piece is emotional. This piece could be used in the soundtrack of a drama movie during scenes of hopelessness or heartbreak.", "data_idx": 2500, "number": 1, "label": "classical"} +{"file_name": "test_04342.png", "caption": "This is an instrumental music piece that was made for a soap opera soundtrack. The piano and the strings are playing gently in a melancholic manner. The atmosphere of the piece is emotional. This piece could be used in the soundtrack of a drama movie during scenes of hopelessness or heartbreak.", "data_idx": 2500, "number": 2, "label": "classical"} +{"file_name": "test_04343.png", "caption": "This is an instrumental music piece that was made for a soap opera soundtrack. The piano and the strings are playing gently in a melancholic manner. The atmosphere of the piece is emotional. This piece could be used in the soundtrack of a drama movie during scenes of hopelessness or heartbreak.", "data_idx": 2500, "number": 3, "label": "classical"} +{"file_name": "test_04344.png", "caption": "A deep male voice is talking then starts strumming chords on an acoustic guitar while blowing a melody on top with a harmonica. This song may be playing live explaining music.", "data_idx": 2501, "number": 0, "label": "blues"} +{"file_name": "test_04345.png", "caption": "A deep male voice is talking then starts strumming chords on an acoustic guitar while blowing a melody on top with a harmonica. This song may be playing live explaining music.", "data_idx": 2501, "number": 1, "label": "blues"} +{"file_name": "test_04346.png", "caption": "A deep male voice is talking then starts strumming chords on an acoustic guitar while blowing a melody on top with a harmonica. This song may be playing live explaining music.", "data_idx": 2501, "number": 2, "label": "blues"} +{"file_name": "test_04347.png", "caption": "A deep male voice is talking then starts strumming chords on an acoustic guitar while blowing a melody on top with a harmonica. This song may be playing live explaining music.", "data_idx": 2501, "number": 3, "label": "blues"} +{"file_name": "test_04348.png", "caption": "The low quality recording features a theremin solo melody played over playback that has a sustained strings melody playing. It sounds emotional, sad, heartfelt and the recording is noisy and in mono.", "data_idx": 2503, "number": 0, "label": "hiphop"} +{"file_name": "test_04349.png", "caption": "The low quality recording features a theremin solo melody played over playback that has a sustained strings melody playing. It sounds emotional, sad, heartfelt and the recording is noisy and in mono.", "data_idx": 2503, "number": 1, "label": "hiphop"} +{"file_name": "test_04350.png", "caption": "The low quality recording features a theremin solo melody played over playback that has a sustained strings melody playing. It sounds emotional, sad, heartfelt and the recording is noisy and in mono.", "data_idx": 2503, "number": 2, "label": "hiphop"} +{"file_name": "test_04351.png", "caption": "The low quality recording features a theremin solo melody played over playback that has a sustained strings melody playing. It sounds emotional, sad, heartfelt and the recording is noisy and in mono.", "data_idx": 2503, "number": 3, "label": "hiphop"} +{"file_name": "test_04352.png", "caption": "This music is instrumental. The tempo is fast with an electric guitar riff playing a cover of a popular melody. The music is intense, loud, passionate, violent, aggressive and thunderous. This music is heavy metal/ death metal.", "data_idx": 2506, "number": 0, "label": "classical"} +{"file_name": "test_04353.png", "caption": "This music is instrumental. The tempo is fast with an electric guitar riff playing a cover of a popular melody. The music is intense, loud, passionate, violent, aggressive and thunderous. This music is heavy metal/ death metal.", "data_idx": 2506, "number": 1, "label": "classical"} +{"file_name": "test_04354.png", "caption": "This music is instrumental. The tempo is fast with an electric guitar riff playing a cover of a popular melody. The music is intense, loud, passionate, violent, aggressive and thunderous. This music is heavy metal/ death metal.", "data_idx": 2506, "number": 2, "label": "classical"} +{"file_name": "test_04355.png", "caption": "This music is instrumental. The tempo is fast with an electric guitar riff playing a cover of a popular melody. The music is intense, loud, passionate, violent, aggressive and thunderous. This music is heavy metal/ death metal.", "data_idx": 2506, "number": 3, "label": "classical"} +{"file_name": "test_04356.png", "caption": "This song is an animated duo in a male and female volume. The tempo is slow with a Pisano harmony, synthesiser arrangement and a small hand percussion. The song is a lively, simple, expressive,animated, rhythmic and informational children\u2019s song/ nursery rhyme .", "data_idx": 2507, "number": 0, "label": "country"} +{"file_name": "test_04357.png", "caption": "This song is an animated duo in a male and female volume. The tempo is slow with a Pisano harmony, synthesiser arrangement and a small hand percussion. The song is a lively, simple, expressive,animated, rhythmic and informational children\u2019s song/ nursery rhyme .", "data_idx": 2507, "number": 1, "label": "country"} +{"file_name": "test_04358.png", "caption": "This song is an animated duo in a male and female volume. The tempo is slow with a Pisano harmony, synthesiser arrangement and a small hand percussion. The song is a lively, simple, expressive,animated, rhythmic and informational children\u2019s song/ nursery rhyme .", "data_idx": 2507, "number": 2, "label": "country"} +{"file_name": "test_04359.png", "caption": "This song is an animated duo in a male and female volume. The tempo is slow with a Pisano harmony, synthesiser arrangement and a small hand percussion. The song is a lively, simple, expressive,animated, rhythmic and informational children\u2019s song/ nursery rhyme .", "data_idx": 2507, "number": 3, "label": "country"} +{"file_name": "test_04360.png", "caption": "A female singer sings this passionate melody backed up by singers in vocal harmony. The tempo is slow with a strong bass line, steady percussive rhythm and keyboard accompaniment. The song is emotional and spirited. The song is a modern hip hop hit.", "data_idx": 2515, "number": 0, "label": "reggae"} +{"file_name": "test_04361.png", "caption": "A female singer sings this passionate melody backed up by singers in vocal harmony. The tempo is slow with a strong bass line, steady percussive rhythm and keyboard accompaniment. The song is emotional and spirited. The song is a modern hip hop hit.", "data_idx": 2515, "number": 1, "label": "reggae"} +{"file_name": "test_04362.png", "caption": "A female singer sings this passionate melody backed up by singers in vocal harmony. The tempo is slow with a strong bass line, steady percussive rhythm and keyboard accompaniment. The song is emotional and spirited. The song is a modern hip hop hit.", "data_idx": 2515, "number": 2, "label": "reggae"} +{"file_name": "test_04363.png", "caption": "A female singer sings this passionate melody backed up by singers in vocal harmony. The tempo is slow with a strong bass line, steady percussive rhythm and keyboard accompaniment. The song is emotional and spirited. The song is a modern hip hop hit.", "data_idx": 2515, "number": 3, "label": "reggae"} +{"file_name": "test_04364.png", "caption": "The low quality recording features a live performance of a classical song that consists of a fruity male opera singer over a piano melody. In the background there are coughing and telephone ring sounds. The recording is noisy, muffled and it sounds emotional and passionate.", "data_idx": 2521, "number": 0, "label": "rock"} +{"file_name": "test_04365.png", "caption": "The low quality recording features a live performance of a classical song that consists of a fruity male opera singer over a piano melody. In the background there are coughing and telephone ring sounds. The recording is noisy, muffled and it sounds emotional and passionate.", "data_idx": 2521, "number": 1, "label": "rock"} +{"file_name": "test_04366.png", "caption": "The low quality recording features a live performance of a classical song that consists of a fruity male opera singer over a piano melody. In the background there are coughing and telephone ring sounds. The recording is noisy, muffled and it sounds emotional and passionate.", "data_idx": 2521, "number": 2, "label": "rock"} +{"file_name": "test_04367.png", "caption": "The low quality recording features a live performance of a classical song that consists of a fruity male opera singer over a piano melody. In the background there are coughing and telephone ring sounds. The recording is noisy, muffled and it sounds emotional and passionate.", "data_idx": 2521, "number": 3, "label": "rock"} +{"file_name": "test_04368.png", "caption": "This audio contains drum-rolls in the background playing along with a brass section and flutes. In the foreground someone is playing the same melody on a theremin. This song may be practicing playing along with an instrument.", "data_idx": 2522, "number": 0, "label": "jazz"} +{"file_name": "test_04369.png", "caption": "This audio contains drum-rolls in the background playing along with a brass section and flutes. In the foreground someone is playing the same melody on a theremin. This song may be practicing playing along with an instrument.", "data_idx": 2522, "number": 1, "label": "jazz"} +{"file_name": "test_04370.png", "caption": "This audio contains drum-rolls in the background playing along with a brass section and flutes. In the foreground someone is playing the same melody on a theremin. This song may be practicing playing along with an instrument.", "data_idx": 2522, "number": 2, "label": "jazz"} +{"file_name": "test_04371.png", "caption": "This audio contains drum-rolls in the background playing along with a brass section and flutes. In the foreground someone is playing the same melody on a theremin. This song may be practicing playing along with an instrument.", "data_idx": 2522, "number": 3, "label": "jazz"} +{"file_name": "test_04372.png", "caption": "This is the ending of a female choir performing on stage. It appears to be in a graduation ceremony setting. The crowd starts cheering and applauding the choir after the show is over.", "data_idx": 2525, "number": 0, "label": "metal"} +{"file_name": "test_04373.png", "caption": "This is the ending of a female choir performing on stage. It appears to be in a graduation ceremony setting. The crowd starts cheering and applauding the choir after the show is over.", "data_idx": 2525, "number": 1, "label": "metal"} +{"file_name": "test_04374.png", "caption": "This is the ending of a female choir performing on stage. It appears to be in a graduation ceremony setting. The crowd starts cheering and applauding the choir after the show is over.", "data_idx": 2525, "number": 2, "label": "metal"} +{"file_name": "test_04375.png", "caption": "This is the ending of a female choir performing on stage. It appears to be in a graduation ceremony setting. The crowd starts cheering and applauding the choir after the show is over.", "data_idx": 2525, "number": 3, "label": "metal"} +{"file_name": "test_04376.png", "caption": "This audio contains gambelan bamboo mallets playing a melody in the higher mid-range along with a flute playing a melody in the higher register. In the background spread across the sides of the speakers you can hear different birds chirping. This song may be playing during a traditional dance.", "data_idx": 2526, "number": 0, "label": "blues"} +{"file_name": "test_04377.png", "caption": "This audio contains gambelan bamboo mallets playing a melody in the higher mid-range along with a flute playing a melody in the higher register. In the background spread across the sides of the speakers you can hear different birds chirping. This song may be playing during a traditional dance.", "data_idx": 2526, "number": 1, "label": "blues"} +{"file_name": "test_04378.png", "caption": "This audio contains gambelan bamboo mallets playing a melody in the higher mid-range along with a flute playing a melody in the higher register. In the background spread across the sides of the speakers you can hear different birds chirping. This song may be playing during a traditional dance.", "data_idx": 2526, "number": 2, "label": "blues"} +{"file_name": "test_04379.png", "caption": "This audio contains gambelan bamboo mallets playing a melody in the higher mid-range along with a flute playing a melody in the higher register. In the background spread across the sides of the speakers you can hear different birds chirping. This song may be playing during a traditional dance.", "data_idx": 2526, "number": 3, "label": "blues"} +{"file_name": "test_04380.png", "caption": "This music is a beautiful ,soothing instrumental. The tempo is slow with a wind instrument like a recorder/flute solo and an acoustic guitar accompaniment. The music is dulcet, serene,calming, soothing, mellifluous,soulful, therapeutic and idyllic. This is a folk song instrumental.", "data_idx": 2527, "number": 0, "label": "classical"} +{"file_name": "test_04381.png", "caption": "This music is a beautiful ,soothing instrumental. The tempo is slow with a wind instrument like a recorder/flute solo and an acoustic guitar accompaniment. The music is dulcet, serene,calming, soothing, mellifluous,soulful, therapeutic and idyllic. This is a folk song instrumental.", "data_idx": 2527, "number": 1, "label": "classical"} +{"file_name": "test_04382.png", "caption": "This music is a beautiful ,soothing instrumental. The tempo is slow with a wind instrument like a recorder/flute solo and an acoustic guitar accompaniment. The music is dulcet, serene,calming, soothing, mellifluous,soulful, therapeutic and idyllic. This is a folk song instrumental.", "data_idx": 2527, "number": 2, "label": "classical"} +{"file_name": "test_04383.png", "caption": "This music is a beautiful ,soothing instrumental. The tempo is slow with a wind instrument like a recorder/flute solo and an acoustic guitar accompaniment. The music is dulcet, serene,calming, soothing, mellifluous,soulful, therapeutic and idyllic. This is a folk song instrumental.", "data_idx": 2527, "number": 3, "label": "classical"} +{"file_name": "test_04384.png", "caption": "This music is a beautiful Harp instrumental. The tempo is slow with a mellow, gentle and rich Harp melody. The music is dreamy, cascading, ethereal, soothing, calming and harmonic. This music is a Western Classical Harp Solo.", "data_idx": 2530, "number": 0, "label": "jazz"} +{"file_name": "test_04385.png", "caption": "This music is a beautiful Harp instrumental. The tempo is slow with a mellow, gentle and rich Harp melody. The music is dreamy, cascading, ethereal, soothing, calming and harmonic. This music is a Western Classical Harp Solo.", "data_idx": 2530, "number": 1, "label": "jazz"} +{"file_name": "test_04386.png", "caption": "This music is a beautiful Harp instrumental. The tempo is slow with a mellow, gentle and rich Harp melody. The music is dreamy, cascading, ethereal, soothing, calming and harmonic. This music is a Western Classical Harp Solo.", "data_idx": 2530, "number": 2, "label": "jazz"} +{"file_name": "test_04387.png", "caption": "This music is a beautiful Harp instrumental. The tempo is slow with a mellow, gentle and rich Harp melody. The music is dreamy, cascading, ethereal, soothing, calming and harmonic. This music is a Western Classical Harp Solo.", "data_idx": 2530, "number": 3, "label": "jazz"} +{"file_name": "test_04388.png", "caption": "This punk rock song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat. A distortion guitar plays power chords using downstrokes. The bass plays the root notes of the chords. This song is played at a moderate tempo. This song can be played at the end credits of an action movie.", "data_idx": 2531, "number": 0, "label": "metal"} +{"file_name": "test_04389.png", "caption": "This punk rock song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat. A distortion guitar plays power chords using downstrokes. The bass plays the root notes of the chords. This song is played at a moderate tempo. This song can be played at the end credits of an action movie.", "data_idx": 2531, "number": 1, "label": "metal"} +{"file_name": "test_04390.png", "caption": "This punk rock song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat. A distortion guitar plays power chords using downstrokes. The bass plays the root notes of the chords. This song is played at a moderate tempo. This song can be played at the end credits of an action movie.", "data_idx": 2531, "number": 2, "label": "metal"} +{"file_name": "test_04391.png", "caption": "This punk rock song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat. A distortion guitar plays power chords using downstrokes. The bass plays the root notes of the chords. This song is played at a moderate tempo. This song can be played at the end credits of an action movie.", "data_idx": 2531, "number": 3, "label": "metal"} +{"file_name": "test_04392.png", "caption": "The low quality recording features an arpeggiated synth melody, followed by synth pad chords. It sounds mellow, soft and relaxing, while the recording is noisy.", "data_idx": 2533, "number": 0, "label": "jazz"} +{"file_name": "test_04393.png", "caption": "The low quality recording features an arpeggiated synth melody, followed by synth pad chords. It sounds mellow, soft and relaxing, while the recording is noisy.", "data_idx": 2533, "number": 1, "label": "jazz"} +{"file_name": "test_04394.png", "caption": "The low quality recording features an arpeggiated synth melody, followed by synth pad chords. It sounds mellow, soft and relaxing, while the recording is noisy.", "data_idx": 2533, "number": 2, "label": "jazz"} +{"file_name": "test_04395.png", "caption": "The low quality recording features an arpeggiated synth melody, followed by synth pad chords. It sounds mellow, soft and relaxing, while the recording is noisy.", "data_idx": 2533, "number": 3, "label": "jazz"} +{"file_name": "test_04396.png", "caption": "Here we have a gentle and soothing instrumental piece on the piano and clarinet. The pianist plays an accompaniment to the lead melody of the clarinet - which feels like a relaxing afternoon at the beach. This is a live recording.", "data_idx": 2535, "number": 0, "label": "classical"} +{"file_name": "test_04397.png", "caption": "Here we have a gentle and soothing instrumental piece on the piano and clarinet. The pianist plays an accompaniment to the lead melody of the clarinet - which feels like a relaxing afternoon at the beach. This is a live recording.", "data_idx": 2535, "number": 1, "label": "classical"} +{"file_name": "test_04398.png", "caption": "Here we have a gentle and soothing instrumental piece on the piano and clarinet. The pianist plays an accompaniment to the lead melody of the clarinet - which feels like a relaxing afternoon at the beach. This is a live recording.", "data_idx": 2535, "number": 2, "label": "classical"} +{"file_name": "test_04399.png", "caption": "Here we have a gentle and soothing instrumental piece on the piano and clarinet. The pianist plays an accompaniment to the lead melody of the clarinet - which feels like a relaxing afternoon at the beach. This is a live recording.", "data_idx": 2535, "number": 3, "label": "classical"} +{"file_name": "test_04400.png", "caption": "This recording contains a male voice speaking than you can hear a wooden clicking sound that comes from an instrument called three tone wood blocks. This may be playing in a tutorial video showing off your instrument.", "data_idx": 2536, "number": 0, "label": "hiphop"} +{"file_name": "test_04401.png", "caption": "This recording contains a male voice speaking than you can hear a wooden clicking sound that comes from an instrument called three tone wood blocks. This may be playing in a tutorial video showing off your instrument.", "data_idx": 2536, "number": 1, "label": "hiphop"} +{"file_name": "test_04402.png", "caption": "This audio contains wind sounds, disturbing noises, a heart that is beating and dissonant synth strings in the background creating a scary atmosphere and tension. On top of that a synthesizer is playing a scary melody. This song may be playing in a horror film-scene.", "data_idx": 2538, "number": 0, "label": "classical"} +{"file_name": "test_04403.png", "caption": "This audio contains wind sounds, disturbing noises, a heart that is beating and dissonant synth strings in the background creating a scary atmosphere and tension. On top of that a synthesizer is playing a scary melody. This song may be playing in a horror film-scene.", "data_idx": 2538, "number": 1, "label": "classical"} +{"file_name": "test_04404.png", "caption": "This audio contains wind sounds, disturbing noises, a heart that is beating and dissonant synth strings in the background creating a scary atmosphere and tension. On top of that a synthesizer is playing a scary melody. This song may be playing in a horror film-scene.", "data_idx": 2538, "number": 2, "label": "classical"} +{"file_name": "test_04405.png", "caption": "This audio contains wind sounds, disturbing noises, a heart that is beating and dissonant synth strings in the background creating a scary atmosphere and tension. On top of that a synthesizer is playing a scary melody. This song may be playing in a horror film-scene.", "data_idx": 2538, "number": 3, "label": "classical"} +{"file_name": "test_04406.png", "caption": "This is a gear showcase jam. There is an electric guitar playing simple tunes first without and then with a vibrato tailpiece to show the difference between two setups. The atmosphere is easygoing. Although the recording is a bit dated, the electric guitar could be sampled for use in beat-making.", "data_idx": 2541, "number": 0, "label": "classical"} +{"file_name": "test_04407.png", "caption": "This is a gear showcase jam. There is an electric guitar playing simple tunes first without and then with a vibrato tailpiece to show the difference between two setups. The atmosphere is easygoing. Although the recording is a bit dated, the electric guitar could be sampled for use in beat-making.", "data_idx": 2541, "number": 1, "label": "classical"} +{"file_name": "test_04408.png", "caption": "This is a gear showcase jam. There is an electric guitar playing simple tunes first without and then with a vibrato tailpiece to show the difference between two setups. The atmosphere is easygoing. Although the recording is a bit dated, the electric guitar could be sampled for use in beat-making.", "data_idx": 2541, "number": 2, "label": "classical"} +{"file_name": "test_04409.png", "caption": "This is a gear showcase jam. There is an electric guitar playing simple tunes first without and then with a vibrato tailpiece to show the difference between two setups. The atmosphere is easygoing. Although the recording is a bit dated, the electric guitar could be sampled for use in beat-making.", "data_idx": 2541, "number": 3, "label": "classical"} +{"file_name": "test_04410.png", "caption": "A trombone is ending a melody together with a tuba and other brass instruments before going into the next part that sounds fast paced and uplifting. This song may be playing at a live performance.", "data_idx": 2542, "number": 0, "label": "classical"} +{"file_name": "test_04411.png", "caption": "A trombone is ending a melody together with a tuba and other brass instruments before going into the next part that sounds fast paced and uplifting. This song may be playing at a live performance.", "data_idx": 2542, "number": 1, "label": "classical"} +{"file_name": "test_04412.png", "caption": "A trombone is ending a melody together with a tuba and other brass instruments before going into the next part that sounds fast paced and uplifting. This song may be playing at a live performance.", "data_idx": 2542, "number": 2, "label": "classical"} +{"file_name": "test_04413.png", "caption": "A trombone is ending a melody together with a tuba and other brass instruments before going into the next part that sounds fast paced and uplifting. This song may be playing at a live performance.", "data_idx": 2542, "number": 3, "label": "classical"} +{"file_name": "test_04414.png", "caption": "This song is played on a French horn. There are no other instruments. The first part of this song consists of short bursts of two note pairs played twice followed by one stretched note in an ascending sequence. This is followed by three descending notes. Then two ascending notes are played. This is again followed by three descending notes. It ends with two more ascending notes. There are no voices in this song. This song is an instrumental.", "data_idx": 2546, "number": 0, "label": "hiphop"} +{"file_name": "test_04415.png", "caption": "This song is played on a French horn. There are no other instruments. The first part of this song consists of short bursts of two note pairs played twice followed by one stretched note in an ascending sequence. This is followed by three descending notes. Then two ascending notes are played. This is again followed by three descending notes. It ends with two more ascending notes. There are no voices in this song. This song is an instrumental.", "data_idx": 2546, "number": 1, "label": "hiphop"} +{"file_name": "test_04416.png", "caption": "This song is played on a French horn. There are no other instruments. The first part of this song consists of short bursts of two note pairs played twice followed by one stretched note in an ascending sequence. This is followed by three descending notes. Then two ascending notes are played. This is again followed by three descending notes. It ends with two more ascending notes. There are no voices in this song. This song is an instrumental.", "data_idx": 2546, "number": 2, "label": "hiphop"} +{"file_name": "test_04417.png", "caption": "This song is played on a French horn. There are no other instruments. The first part of this song consists of short bursts of two note pairs played twice followed by one stretched note in an ascending sequence. This is followed by three descending notes. Then two ascending notes are played. This is again followed by three descending notes. It ends with two more ascending notes. There are no voices in this song. This song is an instrumental.", "data_idx": 2546, "number": 3, "label": "hiphop"} +{"file_name": "test_04418.png", "caption": "The Children song features a mellow kid vocal singing over groovy bass, punchy kick and snare hits, shimmering hi hats, shimmering bells melody, plucked strings melody and wide keys melody. It sounds happy, joyful and fun - like something kids would listen to.", "data_idx": 2548, "number": 0, "label": "rock"} +{"file_name": "test_04419.png", "caption": "The Children song features a mellow kid vocal singing over groovy bass, punchy kick and snare hits, shimmering hi hats, shimmering bells melody, plucked strings melody and wide keys melody. It sounds happy, joyful and fun - like something kids would listen to.", "data_idx": 2548, "number": 1, "label": "rock"} +{"file_name": "test_04420.png", "caption": "The Children song features a mellow kid vocal singing over groovy bass, punchy kick and snare hits, shimmering hi hats, shimmering bells melody, plucked strings melody and wide keys melody. It sounds happy, joyful and fun - like something kids would listen to.", "data_idx": 2548, "number": 2, "label": "rock"} +{"file_name": "test_04421.png", "caption": "The Children song features a mellow kid vocal singing over groovy bass, punchy kick and snare hits, shimmering hi hats, shimmering bells melody, plucked strings melody and wide keys melody. It sounds happy, joyful and fun - like something kids would listen to.", "data_idx": 2548, "number": 3, "label": "rock"} +{"file_name": "test_04422.png", "caption": "This is a live performance of an alternative rock music piece. There is a male vocalist singing in a drowsy manner in the lead. The main tune is being played by a keyboard with an organ sound meanwhile the electric guitar and the bass guitar are supporting it in the background. The rhythm is being provided by a slow tempo acoustic drum beat. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama TV series, especially during the scenes where a character feels like they are depressed.", "data_idx": 2549, "number": 0, "label": "rock"} +{"file_name": "test_04423.png", "caption": "This is a live performance of an alternative rock music piece. There is a male vocalist singing in a drowsy manner in the lead. The main tune is being played by a keyboard with an organ sound meanwhile the electric guitar and the bass guitar are supporting it in the background. The rhythm is being provided by a slow tempo acoustic drum beat. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama TV series, especially during the scenes where a character feels like they are depressed.", "data_idx": 2549, "number": 1, "label": "rock"} +{"file_name": "test_04424.png", "caption": "This is a live performance of an alternative rock music piece. There is a male vocalist singing in a drowsy manner in the lead. The main tune is being played by a keyboard with an organ sound meanwhile the electric guitar and the bass guitar are supporting it in the background. The rhythm is being provided by a slow tempo acoustic drum beat. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama TV series, especially during the scenes where a character feels like they are depressed.", "data_idx": 2549, "number": 2, "label": "rock"} +{"file_name": "test_04425.png", "caption": "This is a live performance of an alternative rock music piece. There is a male vocalist singing in a drowsy manner in the lead. The main tune is being played by a keyboard with an organ sound meanwhile the electric guitar and the bass guitar are supporting it in the background. The rhythm is being provided by a slow tempo acoustic drum beat. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama TV series, especially during the scenes where a character feels like they are depressed.", "data_idx": 2549, "number": 3, "label": "rock"} +{"file_name": "test_04426.png", "caption": "The low quality recording features a children's song played on some small device that reproduces mono sound. The song consists of a funny male vocal, alongside harmonizing vocals, singing over a shimmering bell melody and some claps. It sounds happy, fun, joyful, muffled and the recording is noisy.", "data_idx": 2550, "number": 0, "label": "hiphop"} +{"file_name": "test_04427.png", "caption": "The low quality recording features a children's song played on some small device that reproduces mono sound. The song consists of a funny male vocal, alongside harmonizing vocals, singing over a shimmering bell melody and some claps. It sounds happy, fun, joyful, muffled and the recording is noisy.", "data_idx": 2550, "number": 1, "label": "hiphop"} +{"file_name": "test_04428.png", "caption": "The low quality recording features a live performance of softly arpeggiated harp melody and mellow sustained strings. It sounds passionate and emotional.", "data_idx": 2553, "number": 0, "label": "classical"} +{"file_name": "test_04429.png", "caption": "The low quality recording features a live performance of softly arpeggiated harp melody and mellow sustained strings. It sounds passionate and emotional.", "data_idx": 2553, "number": 1, "label": "classical"} +{"file_name": "test_04430.png", "caption": "The Rock song features a passionate male vocal singing over punchy kick and snare hits, shimmering hi hats, groovy bass guitar and electric guitar melodies. It sounds energetic and exciting.", "data_idx": 2555, "number": 0, "label": "rock"} +{"file_name": "test_04431.png", "caption": "The Rock song features a passionate male vocal singing over punchy kick and snare hits, shimmering hi hats, groovy bass guitar and electric guitar melodies. It sounds energetic and exciting.", "data_idx": 2555, "number": 1, "label": "rock"} +{"file_name": "test_04432.png", "caption": "The Rock song features a passionate male vocal singing over punchy kick and snare hits, shimmering hi hats, groovy bass guitar and electric guitar melodies. It sounds energetic and exciting.", "data_idx": 2555, "number": 2, "label": "rock"} +{"file_name": "test_04433.png", "caption": "The Rock song features a passionate male vocal singing over punchy kick and snare hits, shimmering hi hats, groovy bass guitar and electric guitar melodies. It sounds energetic and exciting.", "data_idx": 2555, "number": 3, "label": "rock"} +{"file_name": "test_04434.png", "caption": "This song features a harmonica playing two notes. There is no melody in this song. There are no other instruments in this song. An audience member can be heard laughing in the background.", "data_idx": 2556, "number": 0, "label": "reggae"} +{"file_name": "test_04435.png", "caption": "This song features a harmonica playing two notes. There is no melody in this song. There are no other instruments in this song. An audience member can be heard laughing in the background.", "data_idx": 2556, "number": 1, "label": "reggae"} +{"file_name": "test_04436.png", "caption": "This song features a harmonica playing two notes. There is no melody in this song. There are no other instruments in this song. An audience member can be heard laughing in the background.", "data_idx": 2556, "number": 2, "label": "reggae"} +{"file_name": "test_04437.png", "caption": "This song features a harmonica playing two notes. There is no melody in this song. There are no other instruments in this song. An audience member can be heard laughing in the background.", "data_idx": 2556, "number": 3, "label": "reggae"} +{"file_name": "test_04438.png", "caption": "The song is an instrumental. The tempo is medium with a groovy bass line, keyboard accompaniment, percussive bass line , steady drumming drumming and other percussion hits. The song is a pop song cover with a bad audio quality.", "data_idx": 2557, "number": 0, "label": "rock"} +{"file_name": "test_04439.png", "caption": "The song is an instrumental. The tempo is medium with a groovy bass line, keyboard accompaniment, percussive bass line , steady drumming drumming and other percussion hits. The song is a pop song cover with a bad audio quality.", "data_idx": 2557, "number": 1, "label": "rock"} +{"file_name": "test_04440.png", "caption": "The song is an instrumental. The tempo is medium with a groovy bass line, keyboard accompaniment, percussive bass line , steady drumming drumming and other percussion hits. The song is a pop song cover with a bad audio quality.", "data_idx": 2557, "number": 2, "label": "rock"} +{"file_name": "test_04441.png", "caption": "The song is an instrumental. The tempo is medium with a groovy bass line, keyboard accompaniment, percussive bass line , steady drumming drumming and other percussion hits. The song is a pop song cover with a bad audio quality.", "data_idx": 2557, "number": 3, "label": "rock"} +{"file_name": "test_04442.png", "caption": "This is a live performance of a Scottish folk music piece. It is an instrumental piece. There is a single player on stage playing the Scottish bagpipes. There is a lively, ceremonial atmosphere to this piece. This piece could fit well in the soundtrack of a historical drama taking place in Scotland.", "data_idx": 2558, "number": 0, "label": "classical"} +{"file_name": "test_04443.png", "caption": "This is a live performance of a Scottish folk music piece. It is an instrumental piece. There is a single player on stage playing the Scottish bagpipes. There is a lively, ceremonial atmosphere to this piece. This piece could fit well in the soundtrack of a historical drama taking place in Scotland.", "data_idx": 2558, "number": 1, "label": "classical"} +{"file_name": "test_04444.png", "caption": "This is a live performance of a Scottish folk music piece. It is an instrumental piece. There is a single player on stage playing the Scottish bagpipes. There is a lively, ceremonial atmosphere to this piece. This piece could fit well in the soundtrack of a historical drama taking place in Scotland.", "data_idx": 2558, "number": 2, "label": "classical"} +{"file_name": "test_04445.png", "caption": "This is a live performance of a Scottish folk music piece. It is an instrumental piece. There is a single player on stage playing the Scottish bagpipes. There is a lively, ceremonial atmosphere to this piece. This piece could fit well in the soundtrack of a historical drama taking place in Scotland.", "data_idx": 2558, "number": 3, "label": "classical"} +{"file_name": "test_04446.png", "caption": "This audio contains someone slowly finger picking a chord up and down ending on the root note. This is an amateur recording and may be used for educational purposes.", "data_idx": 2560, "number": 0, "label": "hiphop"} +{"file_name": "test_04447.png", "caption": "This audio contains someone slowly finger picking a chord up and down ending on the root note. This is an amateur recording and may be used for educational purposes.", "data_idx": 2560, "number": 1, "label": "hiphop"} +{"file_name": "test_04448.png", "caption": "This audio contains someone slowly finger picking a chord up and down ending on the root note. This is an amateur recording and may be used for educational purposes.", "data_idx": 2560, "number": 2, "label": "hiphop"} +{"file_name": "test_04449.png", "caption": "This audio contains someone slowly finger picking a chord up and down ending on the root note. This is an amateur recording and may be used for educational purposes.", "data_idx": 2560, "number": 3, "label": "hiphop"} +{"file_name": "test_04450.png", "caption": "The low quality recording features an echoing electric guitar melody played over shimmering cymbals, groovy bass guitar and synth bells melody. It sounds weird, suspenseful and intense. The recording is noisy and in mono.", "data_idx": 2564, "number": 0, "label": "rock"} +{"file_name": "test_04451.png", "caption": "The low quality recording features an echoing electric guitar melody played over shimmering cymbals, groovy bass guitar and synth bells melody. It sounds weird, suspenseful and intense. The recording is noisy and in mono.", "data_idx": 2564, "number": 1, "label": "rock"} +{"file_name": "test_04452.png", "caption": "A male guitar player plays a guitar riff followed by an introduction of a guitar effects flanger pedal. The video has an instrumental solo of a guitar playing rhythm and no other instrumentation. The soundtrack has a poor audio quality.", "data_idx": 2565, "number": 0, "label": "disco"} +{"file_name": "test_04453.png", "caption": "A male guitar player plays a guitar riff followed by an introduction of a guitar effects flanger pedal. The video has an instrumental solo of a guitar playing rhythm and no other instrumentation. The soundtrack has a poor audio quality.", "data_idx": 2565, "number": 1, "label": "disco"} +{"file_name": "test_04454.png", "caption": "A male guitar player plays a guitar riff followed by an introduction of a guitar effects flanger pedal. The video has an instrumental solo of a guitar playing rhythm and no other instrumentation. The soundtrack has a poor audio quality.", "data_idx": 2565, "number": 2, "label": "disco"} +{"file_name": "test_04455.png", "caption": "A male guitar player plays a guitar riff followed by an introduction of a guitar effects flanger pedal. The video has an instrumental solo of a guitar playing rhythm and no other instrumentation. The soundtrack has a poor audio quality.", "data_idx": 2565, "number": 3, "label": "disco"} +{"file_name": "test_04456.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over shimmering hi hats, strings melody and wooden percussion, while a male vocal is mocking them. It sounds groovy, funny and it gives off happy vibes.", "data_idx": 2566, "number": 0, "label": "hiphop"} +{"file_name": "test_04457.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over shimmering hi hats, strings melody and wooden percussion, while a male vocal is mocking them. It sounds groovy, funny and it gives off happy vibes.", "data_idx": 2566, "number": 1, "label": "hiphop"} +{"file_name": "test_04458.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over shimmering hi hats, strings melody and wooden percussion, while a male vocal is mocking them. It sounds groovy, funny and it gives off happy vibes.", "data_idx": 2566, "number": 2, "label": "hiphop"} +{"file_name": "test_04459.png", "caption": "The low quality recording features a traditional song that consists of a flat male vocal singing over shimmering hi hats, strings melody and wooden percussion, while a male vocal is mocking them. It sounds groovy, funny and it gives off happy vibes.", "data_idx": 2566, "number": 3, "label": "hiphop"} +{"file_name": "test_04460.png", "caption": "Low fidelity recording of a solo banjo playing a banjo roll and plucking double stops in a bluegrass style.", "data_idx": 2567, "number": 0, "label": "classical"} +{"file_name": "test_04461.png", "caption": "Low fidelity recording of a solo banjo playing a banjo roll and plucking double stops in a bluegrass style.", "data_idx": 2567, "number": 1, "label": "classical"} +{"file_name": "test_04462.png", "caption": "Low fidelity recording of a solo banjo playing a banjo roll and plucking double stops in a bluegrass style.", "data_idx": 2567, "number": 2, "label": "classical"} +{"file_name": "test_04463.png", "caption": "Low fidelity recording of a solo banjo playing a banjo roll and plucking double stops in a bluegrass style.", "data_idx": 2567, "number": 3, "label": "classical"} +{"file_name": "test_04464.png", "caption": "This is an acoustic drums lesson recording concerning how to play double stroke rolls on the toms. Initially, there is a rapid drum fill that can be heard. Then, a male voice starts speaking in an instructive manner.", "data_idx": 2568, "number": 0, "label": "hiphop"} +{"file_name": "test_04465.png", "caption": "This is an acoustic drums lesson recording concerning how to play double stroke rolls on the toms. Initially, there is a rapid drum fill that can be heard. Then, a male voice starts speaking in an instructive manner.", "data_idx": 2568, "number": 1, "label": "hiphop"} +{"file_name": "test_04466.png", "caption": "This is an acoustic drums lesson recording concerning how to play double stroke rolls on the toms. Initially, there is a rapid drum fill that can be heard. Then, a male voice starts speaking in an instructive manner.", "data_idx": 2568, "number": 2, "label": "hiphop"} +{"file_name": "test_04467.png", "caption": "This is an acoustic drums lesson recording concerning how to play double stroke rolls on the toms. Initially, there is a rapid drum fill that can be heard. Then, a male voice starts speaking in an instructive manner.", "data_idx": 2568, "number": 3, "label": "hiphop"} +{"file_name": "test_04468.png", "caption": "This song contains an acoustic drum playing a reggae rhythm along with an e-guitar with effects strumming a chord on the backbeat. A bass is playing a simple repeating line while an organ is playing a rhythmic melody panned to the right side of the speakers. A female voice is singing at a higher pitch. This song may be playing chilling at home.", "data_idx": 2570, "number": 0, "label": "disco"} +{"file_name": "test_04469.png", "caption": "This song contains an acoustic drum playing a reggae rhythm along with an e-guitar with effects strumming a chord on the backbeat. A bass is playing a simple repeating line while an organ is playing a rhythmic melody panned to the right side of the speakers. A female voice is singing at a higher pitch. This song may be playing chilling at home.", "data_idx": 2570, "number": 1, "label": "disco"} +{"file_name": "test_04470.png", "caption": "This song contains an acoustic drum playing a reggae rhythm along with an e-guitar with effects strumming a chord on the backbeat. A bass is playing a simple repeating line while an organ is playing a rhythmic melody panned to the right side of the speakers. A female voice is singing at a higher pitch. This song may be playing chilling at home.", "data_idx": 2570, "number": 2, "label": "disco"} +{"file_name": "test_04471.png", "caption": "This song contains an acoustic drum playing a reggae rhythm along with an e-guitar with effects strumming a chord on the backbeat. A bass is playing a simple repeating line while an organ is playing a rhythmic melody panned to the right side of the speakers. A female voice is singing at a higher pitch. This song may be playing chilling at home.", "data_idx": 2570, "number": 3, "label": "disco"} +{"file_name": "test_04472.png", "caption": "This clip features a South Asian, Indian song . There's a singer with a passionate vocal singing atop a tabla being played. There are manjeeras. The recording is of a live performance and it's low quality audio.", "data_idx": 2572, "number": 0, "label": "hiphop"} +{"file_name": "test_04473.png", "caption": "This clip features a South Asian, Indian song . There's a singer with a passionate vocal singing atop a tabla being played. There are manjeeras. The recording is of a live performance and it's low quality audio.", "data_idx": 2572, "number": 1, "label": "hiphop"} +{"file_name": "test_04474.png", "caption": "This clip features a South Asian, Indian song . There's a singer with a passionate vocal singing atop a tabla being played. There are manjeeras. The recording is of a live performance and it's low quality audio.", "data_idx": 2572, "number": 2, "label": "hiphop"} +{"file_name": "test_04475.png", "caption": "This clip features a South Asian, Indian song . There's a singer with a passionate vocal singing atop a tabla being played. There are manjeeras. The recording is of a live performance and it's low quality audio.", "data_idx": 2572, "number": 3, "label": "hiphop"} +{"file_name": "test_04476.png", "caption": "The noisy low quality recording features a loud bagpipes melody played while people are marching. It sounds reverberant as it was recorded outdoors. The recording is noisy.", "data_idx": 2573, "number": 0, "label": "metal"} +{"file_name": "test_04477.png", "caption": "The noisy low quality recording features a loud bagpipes melody played while people are marching. It sounds reverberant as it was recorded outdoors. The recording is noisy.", "data_idx": 2573, "number": 1, "label": "metal"} +{"file_name": "test_04478.png", "caption": "The noisy low quality recording features a loud bagpipes melody played while people are marching. It sounds reverberant as it was recorded outdoors. The recording is noisy.", "data_idx": 2573, "number": 2, "label": "metal"} +{"file_name": "test_04479.png", "caption": "The noisy low quality recording features a loud bagpipes melody played while people are marching. It sounds reverberant as it was recorded outdoors. The recording is noisy.", "data_idx": 2573, "number": 3, "label": "metal"} +{"file_name": "test_04480.png", "caption": "The low quality recording features a crowd talking and clapping to a soul song that is played on a playback. The song consists of a passionate female vocal, alongside mixed harmonizing vocals, singing over sustained strings melody, simple bass and harp melody. It sounds emotional and passionate.", "data_idx": 2574, "number": 0, "label": "classical"} +{"file_name": "test_04481.png", "caption": "The low quality recording features a crowd talking and clapping to a soul song that is played on a playback. The song consists of a passionate female vocal, alongside mixed harmonizing vocals, singing over sustained strings melody, simple bass and harp melody. It sounds emotional and passionate.", "data_idx": 2574, "number": 1, "label": "classical"} +{"file_name": "test_04482.png", "caption": "The low quality recording features a crowd talking and clapping to a soul song that is played on a playback. The song consists of a passionate female vocal, alongside mixed harmonizing vocals, singing over sustained strings melody, simple bass and harp melody. It sounds emotional and passionate.", "data_idx": 2574, "number": 2, "label": "classical"} +{"file_name": "test_04483.png", "caption": "The low quality recording features a crowd talking and clapping to a soul song that is played on a playback. The song consists of a passionate female vocal, alongside mixed harmonizing vocals, singing over sustained strings melody, simple bass and harp melody. It sounds emotional and passionate.", "data_idx": 2574, "number": 3, "label": "classical"} +{"file_name": "test_04484.png", "caption": "The low quality recording features a dissonant harmonica melody, followed by lag tapping, birds chirping and dog barking sounds, as it was recorded outdoors. The recording is noisy and it sounds like a tutorial.", "data_idx": 2575, "number": 0, "label": "reggae"} +{"file_name": "test_04485.png", "caption": "The low quality recording features a dissonant harmonica melody, followed by lag tapping, birds chirping and dog barking sounds, as it was recorded outdoors. The recording is noisy and it sounds like a tutorial.", "data_idx": 2575, "number": 1, "label": "reggae"} +{"file_name": "test_04486.png", "caption": "The low quality recording features a dissonant harmonica melody, followed by lag tapping, birds chirping and dog barking sounds, as it was recorded outdoors. The recording is noisy and it sounds like a tutorial.", "data_idx": 2575, "number": 2, "label": "reggae"} +{"file_name": "test_04487.png", "caption": "The low quality recording features a dissonant harmonica melody, followed by lag tapping, birds chirping and dog barking sounds, as it was recorded outdoors. The recording is noisy and it sounds like a tutorial.", "data_idx": 2575, "number": 3, "label": "reggae"} +{"file_name": "test_04488.png", "caption": "The low quality recording features a cowbell percussion, after which there is a tinny metallic impact. It sounds loud, resonating and the recording is noisy and in mono.", "data_idx": 2577, "number": 0, "label": "hiphop"} +{"file_name": "test_04489.png", "caption": "The low quality recording features a cowbell percussion, after which there is a tinny metallic impact. It sounds loud, resonating and the recording is noisy and in mono.", "data_idx": 2577, "number": 1, "label": "hiphop"} +{"file_name": "test_04490.png", "caption": "The low quality recording features a cowbell percussion, after which there is a tinny metallic impact. It sounds loud, resonating and the recording is noisy and in mono.", "data_idx": 2577, "number": 2, "label": "hiphop"} +{"file_name": "test_04491.png", "caption": "The low quality recording features a cowbell percussion, after which there is a tinny metallic impact. It sounds loud, resonating and the recording is noisy and in mono.", "data_idx": 2577, "number": 3, "label": "hiphop"} +{"file_name": "test_04492.png", "caption": "This is an alternative country music piece. There is a male vocal singing melodically with a thick reverb effect applied to it. The main tune is being played by the electric guitar with the bass guitar backing it. The rhythm is being provided by an acoustic drum beat. The atmosphere is easygoing. This piece can be used in the soundtrack of a drama movie, especially during the scenes where a character is trying to break free from an addiction.", "data_idx": 2579, "number": 0, "label": "rock"} +{"file_name": "test_04493.png", "caption": "This is an alternative country music piece. There is a male vocal singing melodically with a thick reverb effect applied to it. The main tune is being played by the electric guitar with the bass guitar backing it. The rhythm is being provided by an acoustic drum beat. The atmosphere is easygoing. This piece can be used in the soundtrack of a drama movie, especially during the scenes where a character is trying to break free from an addiction.", "data_idx": 2579, "number": 1, "label": "rock"} +{"file_name": "test_04494.png", "caption": "This is an alternative country music piece. There is a male vocal singing melodically with a thick reverb effect applied to it. The main tune is being played by the electric guitar with the bass guitar backing it. The rhythm is being provided by an acoustic drum beat. The atmosphere is easygoing. This piece can be used in the soundtrack of a drama movie, especially during the scenes where a character is trying to break free from an addiction.", "data_idx": 2579, "number": 2, "label": "rock"} +{"file_name": "test_04495.png", "caption": "This is an alternative country music piece. There is a male vocal singing melodically with a thick reverb effect applied to it. The main tune is being played by the electric guitar with the bass guitar backing it. The rhythm is being provided by an acoustic drum beat. The atmosphere is easygoing. This piece can be used in the soundtrack of a drama movie, especially during the scenes where a character is trying to break free from an addiction.", "data_idx": 2579, "number": 3, "label": "rock"} +{"file_name": "test_04496.png", "caption": "This audio contains someone playing a very fast groove on tablas then another instrument takes over playing the same rhythm on a metallic rattle instrument. You can hear people talking and the crowd is cheering. The atmosphere sounds relaxed and joyful. This song may be playing live at an instrument battle.", "data_idx": 2580, "number": 0, "label": "hiphop"} +{"file_name": "test_04497.png", "caption": "This audio contains someone playing a very fast groove on tablas then another instrument takes over playing the same rhythm on a metallic rattle instrument. You can hear people talking and the crowd is cheering. The atmosphere sounds relaxed and joyful. This song may be playing live at an instrument battle.", "data_idx": 2580, "number": 1, "label": "hiphop"} +{"file_name": "test_04498.png", "caption": "This audio contains someone playing a very fast groove on tablas then another instrument takes over playing the same rhythm on a metallic rattle instrument. You can hear people talking and the crowd is cheering. The atmosphere sounds relaxed and joyful. This song may be playing live at an instrument battle.", "data_idx": 2580, "number": 2, "label": "hiphop"} +{"file_name": "test_04499.png", "caption": "This audio contains someone playing a very fast groove on tablas then another instrument takes over playing the same rhythm on a metallic rattle instrument. You can hear people talking and the crowd is cheering. The atmosphere sounds relaxed and joyful. This song may be playing live at an instrument battle.", "data_idx": 2580, "number": 3, "label": "hiphop"} +{"file_name": "test_04500.png", "caption": "This song is an electronic instrumental. The tempo is fast with heavily synthesised sounds, digital drum arrangements and electronic beats. The music is youthful, groovy, pulsating, electrifying, buoyant, thumping, psychedelic, trance like and trippy. This music is Techno Pop/EDM.", "data_idx": 2581, "number": 0, "label": "disco"} +{"file_name": "test_04501.png", "caption": "This song is an electronic instrumental. The tempo is fast with heavily synthesised sounds, digital drum arrangements and electronic beats. The music is youthful, groovy, pulsating, electrifying, buoyant, thumping, psychedelic, trance like and trippy. This music is Techno Pop/EDM.", "data_idx": 2581, "number": 1, "label": "disco"} +{"file_name": "test_04502.png", "caption": "This song is an electronic instrumental. The tempo is fast with heavily synthesised sounds, digital drum arrangements and electronic beats. The music is youthful, groovy, pulsating, electrifying, buoyant, thumping, psychedelic, trance like and trippy. This music is Techno Pop/EDM.", "data_idx": 2581, "number": 2, "label": "disco"} +{"file_name": "test_04503.png", "caption": "This song is an electronic instrumental. The tempo is fast with heavily synthesised sounds, digital drum arrangements and electronic beats. The music is youthful, groovy, pulsating, electrifying, buoyant, thumping, psychedelic, trance like and trippy. This music is Techno Pop/EDM.", "data_idx": 2581, "number": 3, "label": "disco"} +{"file_name": "test_04504.png", "caption": "The low quality recording features a cover of a rock song that consists of passionate electric guitar melody playing over playback. The playback features a groovy bass guitar, punchy snare and kick hits, shimmering cymbals and mellow synth key chords. It sounds groovy - thanks to the bass-drums relationship and passion - thanks to the electric guitar melody.", "data_idx": 2583, "number": 0, "label": "hiphop"} +{"file_name": "test_04505.png", "caption": "The low quality recording features a cover of a rock song that consists of passionate electric guitar melody playing over playback. The playback features a groovy bass guitar, punchy snare and kick hits, shimmering cymbals and mellow synth key chords. It sounds groovy - thanks to the bass-drums relationship and passion - thanks to the electric guitar melody.", "data_idx": 2583, "number": 1, "label": "hiphop"} +{"file_name": "test_04506.png", "caption": "The low quality recording features a cover of a rock song that consists of passionate electric guitar melody playing over playback. The playback features a groovy bass guitar, punchy snare and kick hits, shimmering cymbals and mellow synth key chords. It sounds groovy - thanks to the bass-drums relationship and passion - thanks to the electric guitar melody.", "data_idx": 2583, "number": 2, "label": "hiphop"} +{"file_name": "test_04507.png", "caption": "The low quality recording features a cover of a rock song that consists of passionate electric guitar melody playing over playback. The playback features a groovy bass guitar, punchy snare and kick hits, shimmering cymbals and mellow synth key chords. It sounds groovy - thanks to the bass-drums relationship and passion - thanks to the electric guitar melody.", "data_idx": 2583, "number": 3, "label": "hiphop"} +{"file_name": "test_04508.png", "caption": "This is a toy package opening video with a jazz music piece in the background. In the piece, there is a clarinet playing the leading melody while other brass elements, the piano and the upright bass are accompanying it with backing tunes. The rhythm is being played by the upbeat jazz acoustic drums. The atmosphere of the piece is lively. If the package opening sounds could be removed, the piece would suit well in the soundtrack of a feelgood animation movie.", "data_idx": 2584, "number": 0, "label": "reggae"} +{"file_name": "test_04509.png", "caption": "This is a toy package opening video with a jazz music piece in the background. In the piece, there is a clarinet playing the leading melody while other brass elements, the piano and the upright bass are accompanying it with backing tunes. The rhythm is being played by the upbeat jazz acoustic drums. The atmosphere of the piece is lively. If the package opening sounds could be removed, the piece would suit well in the soundtrack of a feelgood animation movie.", "data_idx": 2584, "number": 1, "label": "reggae"} +{"file_name": "test_04510.png", "caption": "This is a toy package opening video with a jazz music piece in the background. In the piece, there is a clarinet playing the leading melody while other brass elements, the piano and the upright bass are accompanying it with backing tunes. The rhythm is being played by the upbeat jazz acoustic drums. The atmosphere of the piece is lively. If the package opening sounds could be removed, the piece would suit well in the soundtrack of a feelgood animation movie.", "data_idx": 2584, "number": 2, "label": "reggae"} +{"file_name": "test_04511.png", "caption": "This is a toy package opening video with a jazz music piece in the background. In the piece, there is a clarinet playing the leading melody while other brass elements, the piano and the upright bass are accompanying it with backing tunes. The rhythm is being played by the upbeat jazz acoustic drums. The atmosphere of the piece is lively. If the package opening sounds could be removed, the piece would suit well in the soundtrack of a feelgood animation movie.", "data_idx": 2584, "number": 3, "label": "reggae"} +{"file_name": "test_04512.png", "caption": "This is a chamber music piece. It is performed by a quintet of the harp, the flute, the violin, the viola and the cello. There is a constant rising and falling pattern, resembling the feeling of a wave. The piece has a mysterious atmosphere to it. This music would fit perfectly in the soundtrack of an adventure movie during scenes of a journey where the characters are crossing the sea.", "data_idx": 2585, "number": 0, "label": "classical"} +{"file_name": "test_04513.png", "caption": "This is a chamber music piece. It is performed by a quintet of the harp, the flute, the violin, the viola and the cello. There is a constant rising and falling pattern, resembling the feeling of a wave. The piece has a mysterious atmosphere to it. This music would fit perfectly in the soundtrack of an adventure movie during scenes of a journey where the characters are crossing the sea.", "data_idx": 2585, "number": 1, "label": "classical"} +{"file_name": "test_04514.png", "caption": "This is a chamber music piece. It is performed by a quintet of the harp, the flute, the violin, the viola and the cello. There is a constant rising and falling pattern, resembling the feeling of a wave. The piece has a mysterious atmosphere to it. This music would fit perfectly in the soundtrack of an adventure movie during scenes of a journey where the characters are crossing the sea.", "data_idx": 2585, "number": 2, "label": "classical"} +{"file_name": "test_04515.png", "caption": "This is a chamber music piece. It is performed by a quintet of the harp, the flute, the violin, the viola and the cello. There is a constant rising and falling pattern, resembling the feeling of a wave. The piece has a mysterious atmosphere to it. This music would fit perfectly in the soundtrack of an adventure movie during scenes of a journey where the characters are crossing the sea.", "data_idx": 2585, "number": 3, "label": "classical"} +{"file_name": "test_04516.png", "caption": "This audio contains someone picking and strumming a fast paced melody on the mandolin. This song may be playing live in a bar.", "data_idx": 2587, "number": 0, "label": "classical"} +{"file_name": "test_04517.png", "caption": "This audio contains someone picking and strumming a fast paced melody on the mandolin. This song may be playing live in a bar.", "data_idx": 2587, "number": 1, "label": "classical"} +{"file_name": "test_04518.png", "caption": "This audio contains someone picking and strumming a fast paced melody on the mandolin. This song may be playing live in a bar.", "data_idx": 2587, "number": 2, "label": "classical"} +{"file_name": "test_04519.png", "caption": "This audio contains someone picking and strumming a fast paced melody on the mandolin. This song may be playing live in a bar.", "data_idx": 2587, "number": 3, "label": "classical"} +{"file_name": "test_04520.png", "caption": "A male singer sings this cool hip hop melody with backup singers in vocal harmony and screaming vocals. The song is medium tempo with a piano accompaniment, percussive bass line, steady drumming rhythm, clapping percussions, and keyboard accompaniment. The song is passionate like a courtship song. The song has bad audio quality.", "data_idx": 2589, "number": 0, "label": "disco"} +{"file_name": "test_04521.png", "caption": "A male singer sings this cool hip hop melody with backup singers in vocal harmony and screaming vocals. The song is medium tempo with a piano accompaniment, percussive bass line, steady drumming rhythm, clapping percussions, and keyboard accompaniment. The song is passionate like a courtship song. The song has bad audio quality.", "data_idx": 2589, "number": 1, "label": "disco"} +{"file_name": "test_04522.png", "caption": "A male singer sings this cool hip hop melody with backup singers in vocal harmony and screaming vocals. The song is medium tempo with a piano accompaniment, percussive bass line, steady drumming rhythm, clapping percussions, and keyboard accompaniment. The song is passionate like a courtship song. The song has bad audio quality.", "data_idx": 2589, "number": 2, "label": "disco"} +{"file_name": "test_04523.png", "caption": "A male singer sings this cool hip hop melody with backup singers in vocal harmony and screaming vocals. The song is medium tempo with a piano accompaniment, percussive bass line, steady drumming rhythm, clapping percussions, and keyboard accompaniment. The song is passionate like a courtship song. The song has bad audio quality.", "data_idx": 2589, "number": 3, "label": "disco"} +{"file_name": "test_04524.png", "caption": "This song contains someone playing a rhythm on a djembe along with a frame drum. Someone is strumming chords on guitar while the bagpipes are taking the main melody. Then a male voice starts speaking and the crowd is cheering and clapping their hands. This song may be playing live at a traditional concert.", "data_idx": 2590, "number": 0, "label": "rock"} +{"file_name": "test_04525.png", "caption": "This song contains someone playing a rhythm on a djembe along with a frame drum. Someone is strumming chords on guitar while the bagpipes are taking the main melody. Then a male voice starts speaking and the crowd is cheering and clapping their hands. This song may be playing live at a traditional concert.", "data_idx": 2590, "number": 1, "label": "rock"} +{"file_name": "test_04526.png", "caption": "This song contains someone playing a rhythm on a djembe along with a frame drum. Someone is strumming chords on guitar while the bagpipes are taking the main melody. Then a male voice starts speaking and the crowd is cheering and clapping their hands. This song may be playing live at a traditional concert.", "data_idx": 2590, "number": 2, "label": "rock"} +{"file_name": "test_04527.png", "caption": "This song contains someone playing a rhythm on a djembe along with a frame drum. Someone is strumming chords on guitar while the bagpipes are taking the main melody. Then a male voice starts speaking and the crowd is cheering and clapping their hands. This song may be playing live at a traditional concert.", "data_idx": 2590, "number": 3, "label": "rock"} +{"file_name": "test_04528.png", "caption": "The low quality recording features a flat male vocal talking, after which there is an acoustic guitar percussive tapping. The recording is in mono and so noisy that it is almost crushed.", "data_idx": 2591, "number": 0, "label": "rock"} +{"file_name": "test_04529.png", "caption": "The low quality recording features a flat male vocal talking, after which there is an acoustic guitar percussive tapping. The recording is in mono and so noisy that it is almost crushed.", "data_idx": 2591, "number": 1, "label": "rock"} +{"file_name": "test_04530.png", "caption": "This piece contains someone playing a trumpet, a clarinet and a horn all playing the same note in different octaves. The horn is playing a bassnote. This song may be playing live as a school concert.", "data_idx": 2597, "number": 0, "label": "classical"} +{"file_name": "test_04531.png", "caption": "This piece contains someone playing a trumpet, a clarinet and a horn all playing the same note in different octaves. The horn is playing a bassnote. This song may be playing live as a school concert.", "data_idx": 2597, "number": 1, "label": "classical"} +{"file_name": "test_04532.png", "caption": "This is a pop rock music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar and the electric guitar are playing a chill melody while the bass guitar is playing a simple bass line. The acoustic drums are playing in the rhythmic background. The atmosphere is easygoing and generic. This piece could be used as an advertisement jingle.", "data_idx": 2598, "number": 0, "label": "disco"} +{"file_name": "test_04533.png", "caption": "This is a pop rock music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar and the electric guitar are playing a chill melody while the bass guitar is playing a simple bass line. The acoustic drums are playing in the rhythmic background. The atmosphere is easygoing and generic. This piece could be used as an advertisement jingle.", "data_idx": 2598, "number": 1, "label": "disco"} +{"file_name": "test_04534.png", "caption": "This is a pop rock music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar and the electric guitar are playing a chill melody while the bass guitar is playing a simple bass line. The acoustic drums are playing in the rhythmic background. The atmosphere is easygoing and generic. This piece could be used as an advertisement jingle.", "data_idx": 2598, "number": 2, "label": "disco"} +{"file_name": "test_04535.png", "caption": "This is a pop rock music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar and the electric guitar are playing a chill melody while the bass guitar is playing a simple bass line. The acoustic drums are playing in the rhythmic background. The atmosphere is easygoing and generic. This piece could be used as an advertisement jingle.", "data_idx": 2598, "number": 3, "label": "disco"} diff --git a/data/test/metadata_0009.jsonl b/data/test/metadata_0009.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c1ffa1df53a2d231e9d739afbe4a4841ca69d5e2 --- /dev/null +++ b/data/test/metadata_0009.jsonl @@ -0,0 +1,280 @@ +{"file_name": "test_04536.png", "caption": "This is Samoan folk music. There is a choir singing melodically with male and female voices mixed. The electric guitar is playing a simple tune in the melodic background.", "data_idx": 2603, "number": 0, "label": "country"} +{"file_name": "test_04537.png", "caption": "This is Samoan folk music. There is a choir singing melodically with male and female voices mixed. The electric guitar is playing a simple tune in the melodic background.", "data_idx": 2603, "number": 1, "label": "country"} +{"file_name": "test_04538.png", "caption": "This is Samoan folk music. There is a choir singing melodically with male and female voices mixed. The electric guitar is playing a simple tune in the melodic background.", "data_idx": 2603, "number": 2, "label": "country"} +{"file_name": "test_04539.png", "caption": "This is Samoan folk music. There is a choir singing melodically with male and female voices mixed. The electric guitar is playing a simple tune in the melodic background.", "data_idx": 2603, "number": 3, "label": "country"} +{"file_name": "test_04540.png", "caption": "This audio contains someone playing an acoustic piano along with an acoustic guitar strumming chords. Someone is playing a cajon with a fast paced groove and a tambourine. A horn takes the main melody in the midrange along with a male voice singing in a higher key. This song may be playing on the streets performed by buskers.", "data_idx": 2604, "number": 0, "label": "rock"} +{"file_name": "test_04541.png", "caption": "This audio contains someone playing an acoustic piano along with an acoustic guitar strumming chords. Someone is playing a cajon with a fast paced groove and a tambourine. A horn takes the main melody in the midrange along with a male voice singing in a higher key. This song may be playing on the streets performed by buskers.", "data_idx": 2604, "number": 1, "label": "rock"} +{"file_name": "test_04542.png", "caption": "This audio contains someone playing an acoustic piano along with an acoustic guitar strumming chords. Someone is playing a cajon with a fast paced groove and a tambourine. A horn takes the main melody in the midrange along with a male voice singing in a higher key. This song may be playing on the streets performed by buskers.", "data_idx": 2604, "number": 2, "label": "rock"} +{"file_name": "test_04543.png", "caption": "This audio contains someone playing an acoustic piano along with an acoustic guitar strumming chords. Someone is playing a cajon with a fast paced groove and a tambourine. A horn takes the main melody in the midrange along with a male voice singing in a higher key. This song may be playing on the streets performed by buskers.", "data_idx": 2604, "number": 3, "label": "rock"} +{"file_name": "test_04544.png", "caption": "A group of male vocalists sing this charming melody in a foreign language. The tempo is fast with accordion lead music and acoustic guitar accompaniment. The song is lively, happy, light , warm, cheerful and charming . The audio quality is inferior as it seems to be an amateur home recording with ambient sounds. This Song is a Folk song.", "data_idx": 2606, "number": 0, "label": "classical"} +{"file_name": "test_04545.png", "caption": "A group of male vocalists sing this charming melody in a foreign language. The tempo is fast with accordion lead music and acoustic guitar accompaniment. The song is lively, happy, light , warm, cheerful and charming . The audio quality is inferior as it seems to be an amateur home recording with ambient sounds. This Song is a Folk song.", "data_idx": 2606, "number": 1, "label": "classical"} +{"file_name": "test_04546.png", "caption": "A group of male vocalists sing this charming melody in a foreign language. The tempo is fast with accordion lead music and acoustic guitar accompaniment. The song is lively, happy, light , warm, cheerful and charming . The audio quality is inferior as it seems to be an amateur home recording with ambient sounds. This Song is a Folk song.", "data_idx": 2606, "number": 2, "label": "classical"} +{"file_name": "test_04547.png", "caption": "A group of male vocalists sing this charming melody in a foreign language. The tempo is fast with accordion lead music and acoustic guitar accompaniment. The song is lively, happy, light , warm, cheerful and charming . The audio quality is inferior as it seems to be an amateur home recording with ambient sounds. This Song is a Folk song.", "data_idx": 2606, "number": 3, "label": "classical"} +{"file_name": "test_04548.png", "caption": "This reggae song features a male voice singing the main melody. This is accompanied by percussion playing a simple reggae beat. The bass plays notes in reggae style. A guitar plays fills in the beginning and in between lines. Hand claps are played in groups of two and one in an alternating pattern. This song can be played in a romantic movie.", "data_idx": 2607, "number": 0, "label": "disco"} +{"file_name": "test_04549.png", "caption": "This reggae song features a male voice singing the main melody. This is accompanied by percussion playing a simple reggae beat. The bass plays notes in reggae style. A guitar plays fills in the beginning and in between lines. Hand claps are played in groups of two and one in an alternating pattern. This song can be played in a romantic movie.", "data_idx": 2607, "number": 1, "label": "disco"} +{"file_name": "test_04550.png", "caption": "This reggae song features a male voice singing the main melody. This is accompanied by percussion playing a simple reggae beat. The bass plays notes in reggae style. A guitar plays fills in the beginning and in between lines. Hand claps are played in groups of two and one in an alternating pattern. This song can be played in a romantic movie.", "data_idx": 2607, "number": 2, "label": "disco"} +{"file_name": "test_04551.png", "caption": "This reggae song features a male voice singing the main melody. This is accompanied by percussion playing a simple reggae beat. The bass plays notes in reggae style. A guitar plays fills in the beginning and in between lines. Hand claps are played in groups of two and one in an alternating pattern. This song can be played in a romantic movie.", "data_idx": 2607, "number": 3, "label": "disco"} +{"file_name": "test_04552.png", "caption": "This is an instrumental blues music piece. A clean electric guitar is playing a groovy solo while the bass guitar plays in the background. The acoustic drums are playing a slow tempo blues beat. The piece has a relaxing atmosphere. It could be playing in the background at a rock bar. This piece could also be playing in the soundtrack of a romantic movie especially during flirting scenes.", "data_idx": 2609, "number": 0, "label": "blues"} +{"file_name": "test_04553.png", "caption": "This is an instrumental blues music piece. A clean electric guitar is playing a groovy solo while the bass guitar plays in the background. The acoustic drums are playing a slow tempo blues beat. The piece has a relaxing atmosphere. It could be playing in the background at a rock bar. This piece could also be playing in the soundtrack of a romantic movie especially during flirting scenes.", "data_idx": 2609, "number": 1, "label": "blues"} +{"file_name": "test_04554.png", "caption": "The low quality recording features a mellow french horn melody, followed by mellow piano chords. It sounds passionate, emotional and beautiful, despite the fact that the recording is noisy, buzzy and in mono.", "data_idx": 2610, "number": 0, "label": "classical"} +{"file_name": "test_04555.png", "caption": "The low quality recording features a mellow french horn melody, followed by mellow piano chords. It sounds passionate, emotional and beautiful, despite the fact that the recording is noisy, buzzy and in mono.", "data_idx": 2610, "number": 1, "label": "classical"} +{"file_name": "test_04556.png", "caption": "The low quality recording features a mellow french horn melody, followed by mellow piano chords. It sounds passionate, emotional and beautiful, despite the fact that the recording is noisy, buzzy and in mono.", "data_idx": 2610, "number": 2, "label": "classical"} +{"file_name": "test_04557.png", "caption": "The low quality recording features a mellow french horn melody, followed by mellow piano chords. It sounds passionate, emotional and beautiful, despite the fact that the recording is noisy, buzzy and in mono.", "data_idx": 2610, "number": 3, "label": "classical"} +{"file_name": "test_04558.png", "caption": "This low quality audio features an accordion playing the main melody. This is accompanied by percussion playing a simple beat. A tambourine is played with the percussion. This is a Latin style song. The guitar plays groups of three ascending and one descending note per bar. The bass plays a Latin rhythm. There are no voices in this song. This song is an instrumental. This song can be played at a house party.", "data_idx": 2615, "number": 0, "label": "blues"} +{"file_name": "test_04559.png", "caption": "This low quality audio features an accordion playing the main melody. This is accompanied by percussion playing a simple beat. A tambourine is played with the percussion. This is a Latin style song. The guitar plays groups of three ascending and one descending note per bar. The bass plays a Latin rhythm. There are no voices in this song. This song is an instrumental. This song can be played at a house party.", "data_idx": 2615, "number": 1, "label": "blues"} +{"file_name": "test_04560.png", "caption": "This low quality audio features an accordion playing the main melody. This is accompanied by percussion playing a simple beat. A tambourine is played with the percussion. This is a Latin style song. The guitar plays groups of three ascending and one descending note per bar. The bass plays a Latin rhythm. There are no voices in this song. This song is an instrumental. This song can be played at a house party.", "data_idx": 2615, "number": 2, "label": "blues"} +{"file_name": "test_04561.png", "caption": "This low quality audio features an accordion playing the main melody. This is accompanied by percussion playing a simple beat. A tambourine is played with the percussion. This is a Latin style song. The guitar plays groups of three ascending and one descending note per bar. The bass plays a Latin rhythm. There are no voices in this song. This song is an instrumental. This song can be played at a house party.", "data_idx": 2615, "number": 3, "label": "blues"} +{"file_name": "test_04562.png", "caption": "This is an afrobeat remix of a hip-hop music piece. There is a male vocalist singing in a rap-like manner. A repeated hollering sample can be heard. The rhythmic background is provided by a variety of afro percussion elements. There is a danceable feel to it. This piece could be played at nightclubs or dance clubs. It could also be used as an accompaniment piece at a modern dance course.", "data_idx": 2616, "number": 0, "label": "hiphop"} +{"file_name": "test_04563.png", "caption": "This is an afrobeat remix of a hip-hop music piece. There is a male vocalist singing in a rap-like manner. A repeated hollering sample can be heard. The rhythmic background is provided by a variety of afro percussion elements. There is a danceable feel to it. This piece could be played at nightclubs or dance clubs. It could also be used as an accompaniment piece at a modern dance course.", "data_idx": 2616, "number": 1, "label": "hiphop"} +{"file_name": "test_04564.png", "caption": "This is an afrobeat remix of a hip-hop music piece. There is a male vocalist singing in a rap-like manner. A repeated hollering sample can be heard. The rhythmic background is provided by a variety of afro percussion elements. There is a danceable feel to it. This piece could be played at nightclubs or dance clubs. It could also be used as an accompaniment piece at a modern dance course.", "data_idx": 2616, "number": 2, "label": "hiphop"} +{"file_name": "test_04565.png", "caption": "This is an afrobeat remix of a hip-hop music piece. There is a male vocalist singing in a rap-like manner. A repeated hollering sample can be heard. The rhythmic background is provided by a variety of afro percussion elements. There is a danceable feel to it. This piece could be played at nightclubs or dance clubs. It could also be used as an accompaniment piece at a modern dance course.", "data_idx": 2616, "number": 3, "label": "hiphop"} +{"file_name": "test_04566.png", "caption": "This is an instrumental rock music piece. The piece is being performed on a clean sounding electric guitar. There is an easygoing guitar solo being played. The atmosphere is groovy. This piece could be used as an advertisement jingle.", "data_idx": 2618, "number": 0, "label": "jazz"} +{"file_name": "test_04567.png", "caption": "This is an instrumental rock music piece. The piece is being performed on a clean sounding electric guitar. There is an easygoing guitar solo being played. The atmosphere is groovy. This piece could be used as an advertisement jingle.", "data_idx": 2618, "number": 1, "label": "jazz"} +{"file_name": "test_04568.png", "caption": "This is an instrumental rock music piece. The piece is being performed on a clean sounding electric guitar. There is an easygoing guitar solo being played. The atmosphere is groovy. This piece could be used as an advertisement jingle.", "data_idx": 2618, "number": 2, "label": "jazz"} +{"file_name": "test_04569.png", "caption": "This is an instrumental rock music piece. The piece is being performed on a clean sounding electric guitar. There is an easygoing guitar solo being played. The atmosphere is groovy. This piece could be used as an advertisement jingle.", "data_idx": 2618, "number": 3, "label": "jazz"} +{"file_name": "test_04570.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll, after which there is an alarm sound. It sounds suspenseful, dramatic and intense.", "data_idx": 2620, "number": 0, "label": "hiphop"} +{"file_name": "test_04571.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll, after which there is an alarm sound. It sounds suspenseful, dramatic and intense.", "data_idx": 2620, "number": 1, "label": "hiphop"} +{"file_name": "test_04572.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll, after which there is an alarm sound. It sounds suspenseful, dramatic and intense.", "data_idx": 2620, "number": 2, "label": "hiphop"} +{"file_name": "test_04573.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll, after which there is an alarm sound. It sounds suspenseful, dramatic and intense.", "data_idx": 2620, "number": 3, "label": "hiphop"} +{"file_name": "test_04574.png", "caption": "This is a clip featuring an electric guitar being played through an amp. First a chord is played. This is followed by a descending pentatonic lick being played. This lick has a blues feel. This is an instrumental song. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2626, "number": 0, "label": "blues"} +{"file_name": "test_04575.png", "caption": "This is a clip featuring an electric guitar being played through an amp. First a chord is played. This is followed by a descending pentatonic lick being played. This lick has a blues feel. This is an instrumental song. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2626, "number": 1, "label": "blues"} +{"file_name": "test_04576.png", "caption": "This is a clip featuring an electric guitar being played through an amp. First a chord is played. This is followed by a descending pentatonic lick being played. This lick has a blues feel. This is an instrumental song. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2626, "number": 2, "label": "blues"} +{"file_name": "test_04577.png", "caption": "This is a clip featuring an electric guitar being played through an amp. First a chord is played. This is followed by a descending pentatonic lick being played. This lick has a blues feel. This is an instrumental song. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2626, "number": 3, "label": "blues"} +{"file_name": "test_04578.png", "caption": "This clip features a saxophone being played. Only one note is played on the instrument and the note fades away. As it fades away, the sound of air being blown through it can be heard. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 2632, "number": 0, "label": "hiphop"} +{"file_name": "test_04579.png", "caption": "This clip features a saxophone being played. Only one note is played on the instrument and the note fades away. As it fades away, the sound of air being blown through it can be heard. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 2632, "number": 1, "label": "hiphop"} +{"file_name": "test_04580.png", "caption": "This clip features a saxophone being played. Only one note is played on the instrument and the note fades away. As it fades away, the sound of air being blown through it can be heard. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 2632, "number": 2, "label": "hiphop"} +{"file_name": "test_04581.png", "caption": "This clip features a saxophone being played. Only one note is played on the instrument and the note fades away. As it fades away, the sound of air being blown through it can be heard. There are no other instruments in this song. There are no voices in this song. This song can be played in an instructional video.", "data_idx": 2632, "number": 3, "label": "hiphop"} +{"file_name": "test_04582.png", "caption": "This song contains digital drums almost playing a drum&bass groove along with a triangle sound. A synth bass is playing a melody with digital strings in a higher key. A synth pluck is playing a short melody on top. A female voice is singing the main melody. This song may be playing in a 90/2000s club.", "data_idx": 2633, "number": 0, "label": "disco"} +{"file_name": "test_04583.png", "caption": "This song contains digital drums almost playing a drum&bass groove along with a triangle sound. A synth bass is playing a melody with digital strings in a higher key. A synth pluck is playing a short melody on top. A female voice is singing the main melody. This song may be playing in a 90/2000s club.", "data_idx": 2633, "number": 1, "label": "disco"} +{"file_name": "test_04584.png", "caption": "This song contains digital drums almost playing a drum&bass groove along with a triangle sound. A synth bass is playing a melody with digital strings in a higher key. A synth pluck is playing a short melody on top. A female voice is singing the main melody. This song may be playing in a 90/2000s club.", "data_idx": 2633, "number": 2, "label": "disco"} +{"file_name": "test_04585.png", "caption": "This song contains digital drums almost playing a drum&bass groove along with a triangle sound. A synth bass is playing a melody with digital strings in a higher key. A synth pluck is playing a short melody on top. A female voice is singing the main melody. This song may be playing in a 90/2000s club.", "data_idx": 2633, "number": 3, "label": "disco"} +{"file_name": "test_04586.png", "caption": "Pop music that is dense and distorted with a male singer. Good for club music.", "data_idx": 2636, "number": 0, "label": "metal"} +{"file_name": "test_04587.png", "caption": "Pop music that is dense and distorted with a male singer. Good for club music.", "data_idx": 2636, "number": 1, "label": "metal"} +{"file_name": "test_04588.png", "caption": "Pop music that is dense and distorted with a male singer. Good for club music.", "data_idx": 2636, "number": 2, "label": "metal"} +{"file_name": "test_04589.png", "caption": "Pop music that is dense and distorted with a male singer. Good for club music.", "data_idx": 2636, "number": 3, "label": "metal"} +{"file_name": "test_04590.png", "caption": "This is a regional Mexican song, in a contemporary style. The song feels romantic and relaxed. The singer has a charming voice and his voice sits atop guitar arpeggios and a simple bassline.", "data_idx": 2637, "number": 0, "label": "country"} +{"file_name": "test_04591.png", "caption": "This is a regional Mexican song, in a contemporary style. The song feels romantic and relaxed. The singer has a charming voice and his voice sits atop guitar arpeggios and a simple bassline.", "data_idx": 2637, "number": 1, "label": "country"} +{"file_name": "test_04592.png", "caption": "This is a regional Mexican song, in a contemporary style. The song feels romantic and relaxed. The singer has a charming voice and his voice sits atop guitar arpeggios and a simple bassline.", "data_idx": 2637, "number": 2, "label": "country"} +{"file_name": "test_04593.png", "caption": "This is a regional Mexican song, in a contemporary style. The song feels romantic and relaxed. The singer has a charming voice and his voice sits atop guitar arpeggios and a simple bassline.", "data_idx": 2637, "number": 3, "label": "country"} +{"file_name": "test_04594.png", "caption": "This slow pop song features the end of a song. A male voice sings one syllable. The piano plays three notes followed by two high pitch notes. A guitar chord is heard ringing in the background. There is no percussion in this song. There are no other instruments in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2639, "number": 0, "label": "rock"} +{"file_name": "test_04595.png", "caption": "This slow pop song features the end of a song. A male voice sings one syllable. The piano plays three notes followed by two high pitch notes. A guitar chord is heard ringing in the background. There is no percussion in this song. There are no other instruments in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2639, "number": 1, "label": "rock"} +{"file_name": "test_04596.png", "caption": "This slow pop song features the end of a song. A male voice sings one syllable. The piano plays three notes followed by two high pitch notes. A guitar chord is heard ringing in the background. There is no percussion in this song. There are no other instruments in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2639, "number": 2, "label": "rock"} +{"file_name": "test_04597.png", "caption": "This slow pop song features the end of a song. A male voice sings one syllable. The piano plays three notes followed by two high pitch notes. A guitar chord is heard ringing in the background. There is no percussion in this song. There are no other instruments in this song. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2639, "number": 3, "label": "rock"} +{"file_name": "test_04598.png", "caption": "The low quality recording features a reverse processed low pitched female vocal, followed by punchy kick and snare hits, shimmering hi hats, synth keys chords and groovy bass. There are some crackling in the recording and it sounds energetic and exciting.", "data_idx": 2640, "number": 0, "label": "hiphop"} +{"file_name": "test_04599.png", "caption": "The low quality recording features a reverse processed low pitched female vocal, followed by punchy kick and snare hits, shimmering hi hats, synth keys chords and groovy bass. There are some crackling in the recording and it sounds energetic and exciting.", "data_idx": 2640, "number": 1, "label": "hiphop"} +{"file_name": "test_04600.png", "caption": "The low quality recording features a drum solo that consists of a snare roll played together with a syncopated sloppy cowbell. The overall sound is leaning a bit towards the left channel, which makes the stereo image unbalanced.", "data_idx": 2643, "number": 0, "label": "hiphop"} +{"file_name": "test_04601.png", "caption": "The low quality recording features a drum solo that consists of a snare roll played together with a syncopated sloppy cowbell. The overall sound is leaning a bit towards the left channel, which makes the stereo image unbalanced.", "data_idx": 2643, "number": 1, "label": "hiphop"} +{"file_name": "test_04602.png", "caption": "This music is a Western Classical. The tempo is fast with a lively violin harmony, electric cello, piano and string accompaniments. The music is classical, colourful, burgeoning, well layered, dense, rich, full , pleasant, cheerful, merry and elegant.", "data_idx": 2644, "number": 0, "label": "hiphop"} +{"file_name": "test_04603.png", "caption": "This music is a Western Classical. The tempo is fast with a lively violin harmony, electric cello, piano and string accompaniments. The music is classical, colourful, burgeoning, well layered, dense, rich, full , pleasant, cheerful, merry and elegant.", "data_idx": 2644, "number": 1, "label": "hiphop"} +{"file_name": "test_04604.png", "caption": "This music is a Western Classical. The tempo is fast with a lively violin harmony, electric cello, piano and string accompaniments. The music is classical, colourful, burgeoning, well layered, dense, rich, full , pleasant, cheerful, merry and elegant.", "data_idx": 2644, "number": 2, "label": "hiphop"} +{"file_name": "test_04605.png", "caption": "This music is a Western Classical. The tempo is fast with a lively violin harmony, electric cello, piano and string accompaniments. The music is classical, colourful, burgeoning, well layered, dense, rich, full , pleasant, cheerful, merry and elegant.", "data_idx": 2644, "number": 3, "label": "hiphop"} +{"file_name": "test_04606.png", "caption": "This song contains a piano playing short rhythmic chords along with an acoustic guitar and an upright bass playing the same melody. A brass melody is opening the scene. sound A male voice is singing in a higher register. This song may be playing while celebrating with the whole family on a national holiday.", "data_idx": 2647, "number": 0, "label": "country"} +{"file_name": "test_04607.png", "caption": "This song contains a piano playing short rhythmic chords along with an acoustic guitar and an upright bass playing the same melody. A brass melody is opening the scene. sound A male voice is singing in a higher register. This song may be playing while celebrating with the whole family on a national holiday.", "data_idx": 2647, "number": 1, "label": "country"} +{"file_name": "test_04608.png", "caption": "This song contains a piano playing short rhythmic chords along with an acoustic guitar and an upright bass playing the same melody. A brass melody is opening the scene. sound A male voice is singing in a higher register. This song may be playing while celebrating with the whole family on a national holiday.", "data_idx": 2647, "number": 2, "label": "country"} +{"file_name": "test_04609.png", "caption": "This song contains a piano playing short rhythmic chords along with an acoustic guitar and an upright bass playing the same melody. A brass melody is opening the scene. sound A male voice is singing in a higher register. This song may be playing while celebrating with the whole family on a national holiday.", "data_idx": 2647, "number": 3, "label": "country"} +{"file_name": "test_04610.png", "caption": "This recording contains a marching band playing kick sounds, fast snare rolls and cymbal hits. In the background you can hear people talking and cheering. A male voice is speaking as if making an announcement. This may be playing during a cultural event.", "data_idx": 2651, "number": 0, "label": "reggae"} +{"file_name": "test_04611.png", "caption": "This recording contains a marching band playing kick sounds, fast snare rolls and cymbal hits. In the background you can hear people talking and cheering. A male voice is speaking as if making an announcement. This may be playing during a cultural event.", "data_idx": 2651, "number": 1, "label": "reggae"} +{"file_name": "test_04612.png", "caption": "This recording contains a marching band playing kick sounds, fast snare rolls and cymbal hits. In the background you can hear people talking and cheering. A male voice is speaking as if making an announcement. This may be playing during a cultural event.", "data_idx": 2651, "number": 2, "label": "reggae"} +{"file_name": "test_04613.png", "caption": "This recording contains a marching band playing kick sounds, fast snare rolls and cymbal hits. In the background you can hear people talking and cheering. A male voice is speaking as if making an announcement. This may be playing during a cultural event.", "data_idx": 2651, "number": 3, "label": "reggae"} +{"file_name": "test_04614.png", "caption": "This song features an electric organ playing different tones. There is no melody in this song. This is a demo of the different tones that can be played on the electric organ. There are no voices in this song. This can be played in a demo video of this electric organ.", "data_idx": 2652, "number": 0, "label": "classical"} +{"file_name": "test_04615.png", "caption": "This song features an electric organ playing different tones. There is no melody in this song. This is a demo of the different tones that can be played on the electric organ. There are no voices in this song. This can be played in a demo video of this electric organ.", "data_idx": 2652, "number": 1, "label": "classical"} +{"file_name": "test_04616.png", "caption": "This song features an electric organ playing different tones. There is no melody in this song. This is a demo of the different tones that can be played on the electric organ. There are no voices in this song. This can be played in a demo video of this electric organ.", "data_idx": 2652, "number": 2, "label": "classical"} +{"file_name": "test_04617.png", "caption": "This song features an electric organ playing different tones. There is no melody in this song. This is a demo of the different tones that can be played on the electric organ. There are no voices in this song. This can be played in a demo video of this electric organ.", "data_idx": 2652, "number": 3, "label": "classical"} +{"file_name": "test_04618.png", "caption": "This song features a shofar being played. This shofar plays one long note. This is followed by 8 short bursts of three-note groupings. This is followed by one short note and one higher pitched note played for a longer duration. This pattern is played three times. There are no other instruments in this song. There are no voices in this song. This instrument has religious significance. This song can be played prior to a battle call.", "data_idx": 2656, "number": 0, "label": "jazz"} +{"file_name": "test_04619.png", "caption": "This song features a shofar being played. This shofar plays one long note. This is followed by 8 short bursts of three-note groupings. This is followed by one short note and one higher pitched note played for a longer duration. This pattern is played three times. There are no other instruments in this song. There are no voices in this song. This instrument has religious significance. This song can be played prior to a battle call.", "data_idx": 2656, "number": 1, "label": "jazz"} +{"file_name": "test_04620.png", "caption": "This song features a shofar being played. This shofar plays one long note. This is followed by 8 short bursts of three-note groupings. This is followed by one short note and one higher pitched note played for a longer duration. This pattern is played three times. There are no other instruments in this song. There are no voices in this song. This instrument has religious significance. This song can be played prior to a battle call.", "data_idx": 2656, "number": 2, "label": "jazz"} +{"file_name": "test_04621.png", "caption": "This song features a shofar being played. This shofar plays one long note. This is followed by 8 short bursts of three-note groupings. This is followed by one short note and one higher pitched note played for a longer duration. This pattern is played three times. There are no other instruments in this song. There are no voices in this song. This instrument has religious significance. This song can be played prior to a battle call.", "data_idx": 2656, "number": 3, "label": "jazz"} +{"file_name": "test_04622.png", "caption": "The low quality recording features church bells played over snare rolls, after which, at the end of the loop, there is a brass melody. It sounds suspenseful and intense in the beginning, but as soon as the brass melody appears, it sounds joyful. The recording is noisy.", "data_idx": 2659, "number": 0, "label": "blues"} +{"file_name": "test_04623.png", "caption": "The low quality recording features church bells played over snare rolls, after which, at the end of the loop, there is a brass melody. It sounds suspenseful and intense in the beginning, but as soon as the brass melody appears, it sounds joyful. The recording is noisy.", "data_idx": 2659, "number": 1, "label": "blues"} +{"file_name": "test_04624.png", "caption": "The low quality recording features a classical song that consists of a wide string melody, shimmering triangle, shimmering cymbals and wide brass melody. It sounds epic, joyful and passionate.", "data_idx": 2664, "number": 0, "label": "classical"} +{"file_name": "test_04625.png", "caption": "The low quality recording features a classical song that consists of a wide string melody, shimmering triangle, shimmering cymbals and wide brass melody. It sounds epic, joyful and passionate.", "data_idx": 2664, "number": 1, "label": "classical"} +{"file_name": "test_04626.png", "caption": "The low quality recording features a classical song that consists of a wide string melody, shimmering triangle, shimmering cymbals and wide brass melody. It sounds epic, joyful and passionate.", "data_idx": 2664, "number": 2, "label": "classical"} +{"file_name": "test_04627.png", "caption": "The low quality recording features a classical song that consists of a wide string melody, shimmering triangle, shimmering cymbals and wide brass melody. It sounds epic, joyful and passionate.", "data_idx": 2664, "number": 3, "label": "classical"} +{"file_name": "test_04628.png", "caption": "This is a piano cover of a glam metal music piece. The piece is being played gently on a keyboard with a grand piano sound. There is a calming, relaxing atmosphere in this piece. It could be playing in the background at a coffee shop.", "data_idx": 2666, "number": 0, "label": "classical"} +{"file_name": "test_04629.png", "caption": "This is a piano cover of a glam metal music piece. The piece is being played gently on a keyboard with a grand piano sound. There is a calming, relaxing atmosphere in this piece. It could be playing in the background at a coffee shop.", "data_idx": 2666, "number": 1, "label": "classical"} +{"file_name": "test_04630.png", "caption": "This is a piano cover of a glam metal music piece. The piece is being played gently on a keyboard with a grand piano sound. There is a calming, relaxing atmosphere in this piece. It could be playing in the background at a coffee shop.", "data_idx": 2666, "number": 2, "label": "classical"} +{"file_name": "test_04631.png", "caption": "This is a piano cover of a glam metal music piece. The piece is being played gently on a keyboard with a grand piano sound. There is a calming, relaxing atmosphere in this piece. It could be playing in the background at a coffee shop.", "data_idx": 2666, "number": 3, "label": "classical"} +{"file_name": "test_04632.png", "caption": "This is the live performance of a jazz music piece. There is a trumpet solo at the forefront. The background consists of the piano, the upright bass and a jazz acoustic drum beat. The atmosphere is restless. This piece could be playing in the background at a jazz bar.", "data_idx": 2669, "number": 0, "label": "jazz"} +{"file_name": "test_04633.png", "caption": "This is the live performance of a jazz music piece. There is a trumpet solo at the forefront. The background consists of the piano, the upright bass and a jazz acoustic drum beat. The atmosphere is restless. This piece could be playing in the background at a jazz bar.", "data_idx": 2669, "number": 1, "label": "jazz"} +{"file_name": "test_04634.png", "caption": "This is a home recording of a conch shell being blown. There is a horn-like sound coming from the conch shell. The recording can be sampled for use in beat-making.", "data_idx": 2677, "number": 0, "label": "jazz"} +{"file_name": "test_04635.png", "caption": "This is a home recording of a conch shell being blown. There is a horn-like sound coming from the conch shell. The recording can be sampled for use in beat-making.", "data_idx": 2677, "number": 1, "label": "jazz"} +{"file_name": "test_04636.png", "caption": "This is a home recording of a conch shell being blown. There is a horn-like sound coming from the conch shell. The recording can be sampled for use in beat-making.", "data_idx": 2677, "number": 2, "label": "jazz"} +{"file_name": "test_04637.png", "caption": "This is a home recording of a conch shell being blown. There is a horn-like sound coming from the conch shell. The recording can be sampled for use in beat-making.", "data_idx": 2677, "number": 3, "label": "jazz"} +{"file_name": "test_04638.png", "caption": "Here we have a live recording of a meg whistle. The style of playing feels cheery and uplifting. This melody is reminiscent of medieval Irish folk songs or English folk songs.", "data_idx": 2678, "number": 0, "label": "hiphop"} +{"file_name": "test_04639.png", "caption": "Here we have a live recording of a meg whistle. The style of playing feels cheery and uplifting. This melody is reminiscent of medieval Irish folk songs or English folk songs.", "data_idx": 2678, "number": 1, "label": "hiphop"} +{"file_name": "test_04640.png", "caption": "Here we have a live recording of a meg whistle. The style of playing feels cheery and uplifting. This melody is reminiscent of medieval Irish folk songs or English folk songs.", "data_idx": 2678, "number": 2, "label": "hiphop"} +{"file_name": "test_04641.png", "caption": "Here we have a live recording of a meg whistle. The style of playing feels cheery and uplifting. This melody is reminiscent of medieval Irish folk songs or English folk songs.", "data_idx": 2678, "number": 3, "label": "hiphop"} +{"file_name": "test_04642.png", "caption": "This song features a bass guitar being played. At first, a single note is ringing. After a brief pause, an ascending lick is played in common time. The first note is played eight times. The second note is played four times, the third and fourth, two times each. The fifth note is played eight times. The sixth and seventh notes are played four times each. The last note is played once as a double stop with the open string above it and a fretted note on the higher register. This song is an instrumental and can be played in an instructional audio.", "data_idx": 2679, "number": 0, "label": "hiphop"} +{"file_name": "test_04643.png", "caption": "This song features a bass guitar being played. At first, a single note is ringing. After a brief pause, an ascending lick is played in common time. The first note is played eight times. The second note is played four times, the third and fourth, two times each. The fifth note is played eight times. The sixth and seventh notes are played four times each. The last note is played once as a double stop with the open string above it and a fretted note on the higher register. This song is an instrumental and can be played in an instructional audio.", "data_idx": 2679, "number": 1, "label": "hiphop"} +{"file_name": "test_04644.png", "caption": "This song features a bass guitar being played. At first, a single note is ringing. After a brief pause, an ascending lick is played in common time. The first note is played eight times. The second note is played four times, the third and fourth, two times each. The fifth note is played eight times. The sixth and seventh notes are played four times each. The last note is played once as a double stop with the open string above it and a fretted note on the higher register. This song is an instrumental and can be played in an instructional audio.", "data_idx": 2679, "number": 2, "label": "hiphop"} +{"file_name": "test_04645.png", "caption": "This song features a bass guitar being played. At first, a single note is ringing. After a brief pause, an ascending lick is played in common time. The first note is played eight times. The second note is played four times, the third and fourth, two times each. The fifth note is played eight times. The sixth and seventh notes are played four times each. The last note is played once as a double stop with the open string above it and a fretted note on the higher register. This song is an instrumental and can be played in an instructional audio.", "data_idx": 2679, "number": 3, "label": "hiphop"} +{"file_name": "test_04646.png", "caption": "This bluegrass song features a solo played on a mandolin. This is accompanied by an acoustic guitar strumming chords. A double bass plays the root note and fifth of the chords. A banjo player fills in between phrases. This song is at a moderate tempo and has a country feel. The mood of this song is happy. This song can be played in an inspirational movie.", "data_idx": 2680, "number": 0, "label": "jazz"} +{"file_name": "test_04647.png", "caption": "This bluegrass song features a solo played on a mandolin. This is accompanied by an acoustic guitar strumming chords. A double bass plays the root note and fifth of the chords. A banjo player fills in between phrases. This song is at a moderate tempo and has a country feel. The mood of this song is happy. This song can be played in an inspirational movie.", "data_idx": 2680, "number": 1, "label": "jazz"} +{"file_name": "test_04648.png", "caption": "This bluegrass song features a solo played on a mandolin. This is accompanied by an acoustic guitar strumming chords. A double bass plays the root note and fifth of the chords. A banjo player fills in between phrases. This song is at a moderate tempo and has a country feel. The mood of this song is happy. This song can be played in an inspirational movie.", "data_idx": 2680, "number": 2, "label": "jazz"} +{"file_name": "test_04649.png", "caption": "This bluegrass song features a solo played on a mandolin. This is accompanied by an acoustic guitar strumming chords. A double bass plays the root note and fifth of the chords. A banjo player fills in between phrases. This song is at a moderate tempo and has a country feel. The mood of this song is happy. This song can be played in an inspirational movie.", "data_idx": 2680, "number": 3, "label": "jazz"} +{"file_name": "test_04650.png", "caption": "A low fidelity recording of a drone instrument playing a chord while a female singer and double reed instrument double a technically challenging melody.", "data_idx": 2682, "number": 0, "label": "classical"} +{"file_name": "test_04651.png", "caption": "A low fidelity recording of a drone instrument playing a chord while a female singer and double reed instrument double a technically challenging melody.", "data_idx": 2682, "number": 1, "label": "classical"} +{"file_name": "test_04652.png", "caption": "A low fidelity recording of a drone instrument playing a chord while a female singer and double reed instrument double a technically challenging melody.", "data_idx": 2682, "number": 2, "label": "classical"} +{"file_name": "test_04653.png", "caption": "A low fidelity recording of a drone instrument playing a chord while a female singer and double reed instrument double a technically challenging melody.", "data_idx": 2682, "number": 3, "label": "classical"} +{"file_name": "test_04654.png", "caption": "This is a fun, cheerful and positive song played on the marimba. Percussively, we heard a shaker and some hand tapping on a hard surface. The song creates a light mood and has an African vibe.", "data_idx": 2683, "number": 0, "label": "reggae"} +{"file_name": "test_04655.png", "caption": "This is a fun, cheerful and positive song played on the marimba. Percussively, we heard a shaker and some hand tapping on a hard surface. The song creates a light mood and has an African vibe.", "data_idx": 2683, "number": 1, "label": "reggae"} +{"file_name": "test_04656.png", "caption": "This is a fun, cheerful and positive song played on the marimba. Percussively, we heard a shaker and some hand tapping on a hard surface. The song creates a light mood and has an African vibe.", "data_idx": 2683, "number": 2, "label": "reggae"} +{"file_name": "test_04657.png", "caption": "This is a fun, cheerful and positive song played on the marimba. Percussively, we heard a shaker and some hand tapping on a hard surface. The song creates a light mood and has an African vibe.", "data_idx": 2683, "number": 3, "label": "reggae"} +{"file_name": "test_04658.png", "caption": "This is a Hindu bhajan music piece. There is a male vocalist singing in a devotional manner. The clarinet is playing the main tune while the piano plays a backing tune. The atmosphere is religious. This piece could be playing in the background at a Hindu religious event.", "data_idx": 2686, "number": 0, "label": "jazz"} +{"file_name": "test_04659.png", "caption": "This is a Hindu bhajan music piece. There is a male vocalist singing in a devotional manner. The clarinet is playing the main tune while the piano plays a backing tune. The atmosphere is religious. This piece could be playing in the background at a Hindu religious event.", "data_idx": 2686, "number": 1, "label": "jazz"} +{"file_name": "test_04660.png", "caption": "This is a Hindu bhajan music piece. There is a male vocalist singing in a devotional manner. The clarinet is playing the main tune while the piano plays a backing tune. The atmosphere is religious. This piece could be playing in the background at a Hindu religious event.", "data_idx": 2686, "number": 2, "label": "jazz"} +{"file_name": "test_04661.png", "caption": "This is a Hindu bhajan music piece. There is a male vocalist singing in a devotional manner. The clarinet is playing the main tune while the piano plays a backing tune. The atmosphere is religious. This piece could be playing in the background at a Hindu religious event.", "data_idx": 2686, "number": 3, "label": "jazz"} +{"file_name": "test_04662.png", "caption": "This audio clip features a drum kit being played. A stick count is played in the beginning followed by the beat in eighth note pattern. The closed hi-hat, snare and kick are played in eight notes. There are no other instruments in this song. There are no voices in this song. This song can be played in a drum instruction video.", "data_idx": 2687, "number": 0, "label": "hiphop"} +{"file_name": "test_04663.png", "caption": "This audio clip features a drum kit being played. A stick count is played in the beginning followed by the beat in eighth note pattern. The closed hi-hat, snare and kick are played in eight notes. There are no other instruments in this song. There are no voices in this song. This song can be played in a drum instruction video.", "data_idx": 2687, "number": 1, "label": "hiphop"} +{"file_name": "test_04664.png", "caption": "This music is instrumental. There is no instrumentation. The clip starts with white noise and static and ends with the sound of a bell ringing. There are some ambient sounds in the background like bird chirping and flicking.", "data_idx": 2688, "number": 0, "label": "hiphop"} +{"file_name": "test_04665.png", "caption": "This music is instrumental. There is no instrumentation. The clip starts with white noise and static and ends with the sound of a bell ringing. There are some ambient sounds in the background like bird chirping and flicking.", "data_idx": 2688, "number": 1, "label": "hiphop"} +{"file_name": "test_04666.png", "caption": "This music is instrumental. The tempo is medium with an intense electric upright double bass harmony. The music is dense, deep, powerful, full bodied and vibrant.", "data_idx": 2691, "number": 0, "label": "classical"} +{"file_name": "test_04667.png", "caption": "This music is instrumental. The tempo is medium with an intense electric upright double bass harmony. The music is dense, deep, powerful, full bodied and vibrant.", "data_idx": 2691, "number": 1, "label": "classical"} +{"file_name": "test_04668.png", "caption": "This music is instrumental. The tempo is medium with an intense electric upright double bass harmony. The music is dense, deep, powerful, full bodied and vibrant.", "data_idx": 2691, "number": 2, "label": "classical"} +{"file_name": "test_04669.png", "caption": "This music is instrumental. The tempo is medium with an intense electric upright double bass harmony. The music is dense, deep, powerful, full bodied and vibrant.", "data_idx": 2691, "number": 3, "label": "classical"} +{"file_name": "test_04670.png", "caption": "This music is instrumental. The tempo is fast with a synthesiser arrangement. The music is youthful, buoyant, punchy, groovy and futuristic. This music is Synthpop/ Technopop.", "data_idx": 2692, "number": 0, "label": "hiphop"} +{"file_name": "test_04671.png", "caption": "This music is instrumental. The tempo is fast with a synthesiser arrangement. The music is youthful, buoyant, punchy, groovy and futuristic. This music is Synthpop/ Technopop.", "data_idx": 2692, "number": 1, "label": "hiphop"} +{"file_name": "test_04672.png", "caption": "This music is instrumental. The tempo is fast with a synthesiser arrangement. The music is youthful, buoyant, punchy, groovy and futuristic. This music is Synthpop/ Technopop.", "data_idx": 2692, "number": 2, "label": "hiphop"} +{"file_name": "test_04673.png", "caption": "This music is instrumental. The tempo is fast with a synthesiser arrangement. The music is youthful, buoyant, punchy, groovy and futuristic. This music is Synthpop/ Technopop.", "data_idx": 2692, "number": 3, "label": "hiphop"} +{"file_name": "test_04674.png", "caption": "Female singers sing this vocal in Tamil harmony. The song is medium tempo with a strong techno drumming rhythm, guitar accompaniment, stringed instrument accompaniment, flute countermelody, and a strong bass line. The song is devotional and highly passionate. The song is a Carnatic Hindu devotional song sung in Tamil.", "data_idx": 2694, "number": 0, "label": "pop"} +{"file_name": "test_04675.png", "caption": "Female singers sing this vocal in Tamil harmony. The song is medium tempo with a strong techno drumming rhythm, guitar accompaniment, stringed instrument accompaniment, flute countermelody, and a strong bass line. The song is devotional and highly passionate. The song is a Carnatic Hindu devotional song sung in Tamil.", "data_idx": 2694, "number": 1, "label": "pop"} +{"file_name": "test_04676.png", "caption": "Female singers sing this vocal in Tamil harmony. The song is medium tempo with a strong techno drumming rhythm, guitar accompaniment, stringed instrument accompaniment, flute countermelody, and a strong bass line. The song is devotional and highly passionate. The song is a Carnatic Hindu devotional song sung in Tamil.", "data_idx": 2694, "number": 2, "label": "pop"} +{"file_name": "test_04677.png", "caption": "Female singers sing this vocal in Tamil harmony. The song is medium tempo with a strong techno drumming rhythm, guitar accompaniment, stringed instrument accompaniment, flute countermelody, and a strong bass line. The song is devotional and highly passionate. The song is a Carnatic Hindu devotional song sung in Tamil.", "data_idx": 2694, "number": 3, "label": "pop"} +{"file_name": "test_04678.png", "caption": "This song features a guitar being played. One guitar chord is struck per bar. This song lasts for 4 bars and four chords are played. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2715, "number": 0, "label": "hiphop"} +{"file_name": "test_04679.png", "caption": "This song features a guitar being played. One guitar chord is struck per bar. This song lasts for 4 bars and four chords are played. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2715, "number": 1, "label": "hiphop"} +{"file_name": "test_04680.png", "caption": "This song features a guitar being played. One guitar chord is struck per bar. This song lasts for 4 bars and four chords are played. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2715, "number": 2, "label": "hiphop"} +{"file_name": "test_04681.png", "caption": "This song features a guitar being played. One guitar chord is struck per bar. This song lasts for 4 bars and four chords are played. There are no voices in this song. There are no other instruments in this song.", "data_idx": 2715, "number": 3, "label": "hiphop"} +{"file_name": "test_04682.png", "caption": "The low quality recording features a melodic church bells impact. The recording is mono and noisy.", "data_idx": 2717, "number": 0, "label": "hiphop"} +{"file_name": "test_04683.png", "caption": "The low quality recording features a melodic church bells impact. The recording is mono and noisy.", "data_idx": 2717, "number": 1, "label": "hiphop"} +{"file_name": "test_04684.png", "caption": "The low quality recording features a melodic church bells impact. The recording is mono and noisy.", "data_idx": 2717, "number": 2, "label": "hiphop"} +{"file_name": "test_04685.png", "caption": "The low quality recording features a melodic church bells impact. The recording is mono and noisy.", "data_idx": 2717, "number": 3, "label": "hiphop"} +{"file_name": "test_04686.png", "caption": "A male vocalist sings this passionate metal song. The tempo is medium fast with keyboard accompaniment, steady drumming and bass lines, electric guitar , sound of siren and vocal backup. The lead vocals are loud, passionate , volatile, hysterical ,disturbed,emphatic,sad, emotional, painful, disappointed and hurt. This song is Heavy/Goth Metal.", "data_idx": 2718, "number": 0, "label": "metal"} +{"file_name": "test_04687.png", "caption": "A male vocalist sings this passionate metal song. The tempo is medium fast with keyboard accompaniment, steady drumming and bass lines, electric guitar , sound of siren and vocal backup. The lead vocals are loud, passionate , volatile, hysterical ,disturbed,emphatic,sad, emotional, painful, disappointed and hurt. This song is Heavy/Goth Metal.", "data_idx": 2718, "number": 1, "label": "metal"} +{"file_name": "test_04688.png", "caption": "A male vocalist sings this passionate metal song. The tempo is medium fast with keyboard accompaniment, steady drumming and bass lines, electric guitar , sound of siren and vocal backup. The lead vocals are loud, passionate , volatile, hysterical ,disturbed,emphatic,sad, emotional, painful, disappointed and hurt. This song is Heavy/Goth Metal.", "data_idx": 2718, "number": 2, "label": "metal"} +{"file_name": "test_04689.png", "caption": "A male vocalist sings this passionate metal song. The tempo is medium fast with keyboard accompaniment, steady drumming and bass lines, electric guitar , sound of siren and vocal backup. The lead vocals are loud, passionate , volatile, hysterical ,disturbed,emphatic,sad, emotional, painful, disappointed and hurt. This song is Heavy/Goth Metal.", "data_idx": 2718, "number": 3, "label": "metal"} +{"file_name": "test_04690.png", "caption": "The Country Pop song features an echoing male vocal singing over offbeat acoustic rhythm guitar, punchy \"4 on the floor\" kick pattern and smooth bass. It sounds emotional, easygoing and passionate.", "data_idx": 2720, "number": 0, "label": "reggae"} +{"file_name": "test_04691.png", "caption": "The Country Pop song features an echoing male vocal singing over offbeat acoustic rhythm guitar, punchy \"4 on the floor\" kick pattern and smooth bass. It sounds emotional, easygoing and passionate.", "data_idx": 2720, "number": 1, "label": "reggae"} +{"file_name": "test_04692.png", "caption": "The Country Pop song features an echoing male vocal singing over offbeat acoustic rhythm guitar, punchy \"4 on the floor\" kick pattern and smooth bass. It sounds emotional, easygoing and passionate.", "data_idx": 2720, "number": 2, "label": "reggae"} +{"file_name": "test_04693.png", "caption": "The Country Pop song features an echoing male vocal singing over offbeat acoustic rhythm guitar, punchy \"4 on the floor\" kick pattern and smooth bass. It sounds emotional, easygoing and passionate.", "data_idx": 2720, "number": 3, "label": "reggae"} +{"file_name": "test_04694.png", "caption": "The low quality recording features a hip hop song that consists of a wide reverberant flat male vocal rapping over synth lead melody, sire sound effects, punchy kick, boomy 808 bass, claps and shimmering hi hats. It sounds exciting, energetic and addictive - like something you would hear in clubs.", "data_idx": 2722, "number": 0, "label": "hiphop"} +{"file_name": "test_04695.png", "caption": "The low quality recording features a hip hop song that consists of a wide reverberant flat male vocal rapping over synth lead melody, sire sound effects, punchy kick, boomy 808 bass, claps and shimmering hi hats. It sounds exciting, energetic and addictive - like something you would hear in clubs.", "data_idx": 2722, "number": 1, "label": "hiphop"} +{"file_name": "test_04696.png", "caption": "The low quality recording features a hip hop song that consists of a wide reverberant flat male vocal rapping over synth lead melody, sire sound effects, punchy kick, boomy 808 bass, claps and shimmering hi hats. It sounds exciting, energetic and addictive - like something you would hear in clubs.", "data_idx": 2722, "number": 2, "label": "hiphop"} +{"file_name": "test_04697.png", "caption": "The low quality recording features a hip hop song that consists of a wide reverberant flat male vocal rapping over synth lead melody, sire sound effects, punchy kick, boomy 808 bass, claps and shimmering hi hats. It sounds exciting, energetic and addictive - like something you would hear in clubs.", "data_idx": 2722, "number": 3, "label": "hiphop"} +{"file_name": "test_04698.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of pitch bend wooden percussion. It sounds boomy and the recording is in mono and noisy.", "data_idx": 2731, "number": 0, "label": "hiphop"} +{"file_name": "test_04699.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of pitch bend wooden percussion. It sounds boomy and the recording is in mono and noisy.", "data_idx": 2731, "number": 1, "label": "hiphop"} +{"file_name": "test_04700.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of pitch bend wooden percussion. It sounds boomy and the recording is in mono and noisy.", "data_idx": 2731, "number": 2, "label": "hiphop"} +{"file_name": "test_04701.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of pitch bend wooden percussion. It sounds boomy and the recording is in mono and noisy.", "data_idx": 2731, "number": 3, "label": "hiphop"} +{"file_name": "test_04702.png", "caption": "The low quality recording features a live performance of a jazz big bend that consists of passionate trumpet melody, over groovy double bass, shimmering cymbals and mellow piano chords. It sounds reverberant, happy, passionate and fun. The recording is a bit noisy and the sound is leaning towards the right channel, which makes the stereo image unbalanced.", "data_idx": 2732, "number": 0, "label": "classical"} +{"file_name": "test_04703.png", "caption": "The low quality recording features a live performance of a jazz big bend that consists of passionate trumpet melody, over groovy double bass, shimmering cymbals and mellow piano chords. It sounds reverberant, happy, passionate and fun. The recording is a bit noisy and the sound is leaning towards the right channel, which makes the stereo image unbalanced.", "data_idx": 2732, "number": 1, "label": "classical"} +{"file_name": "test_04704.png", "caption": "The low quality recording features a live performance of a jazz big bend that consists of passionate trumpet melody, over groovy double bass, shimmering cymbals and mellow piano chords. It sounds reverberant, happy, passionate and fun. The recording is a bit noisy and the sound is leaning towards the right channel, which makes the stereo image unbalanced.", "data_idx": 2732, "number": 2, "label": "classical"} +{"file_name": "test_04705.png", "caption": "The low quality recording features a live performance of a jazz big bend that consists of passionate trumpet melody, over groovy double bass, shimmering cymbals and mellow piano chords. It sounds reverberant, happy, passionate and fun. The recording is a bit noisy and the sound is leaning towards the right channel, which makes the stereo image unbalanced.", "data_idx": 2732, "number": 3, "label": "classical"} +{"file_name": "test_04706.png", "caption": "This song contains acoustic drums with some elements panned to the right side of the speakers. Accompanied by a bassline and a e-guitar strumming short chords on the backbeat. A male voice is singing in a higher register along with a trumpet and trombone playing a melody along. This song may be playing while listening to music in the kitchen while cooking.", "data_idx": 2733, "number": 0, "label": "reggae"} +{"file_name": "test_04707.png", "caption": "This song contains acoustic drums with some elements panned to the right side of the speakers. Accompanied by a bassline and a e-guitar strumming short chords on the backbeat. A male voice is singing in a higher register along with a trumpet and trombone playing a melody along. This song may be playing while listening to music in the kitchen while cooking.", "data_idx": 2733, "number": 1, "label": "reggae"} +{"file_name": "test_04708.png", "caption": "This song contains acoustic drums with some elements panned to the right side of the speakers. Accompanied by a bassline and a e-guitar strumming short chords on the backbeat. A male voice is singing in a higher register along with a trumpet and trombone playing a melody along. This song may be playing while listening to music in the kitchen while cooking.", "data_idx": 2733, "number": 2, "label": "reggae"} +{"file_name": "test_04709.png", "caption": "This song contains acoustic drums with some elements panned to the right side of the speakers. Accompanied by a bassline and a e-guitar strumming short chords on the backbeat. A male voice is singing in a higher register along with a trumpet and trombone playing a melody along. This song may be playing while listening to music in the kitchen while cooking.", "data_idx": 2733, "number": 3, "label": "reggae"} +{"file_name": "test_04710.png", "caption": "This is a flamenco music piece. The only instrument being played is an acoustic guitar. The acoustic guitar is playing exotic tunes. There is a sensual atmosphere. This piece could be used in the soundtrack of a romance movie, especially during the more intimate scenes.", "data_idx": 2735, "number": 0, "label": "jazz"} +{"file_name": "test_04711.png", "caption": "This is a flamenco music piece. The only instrument being played is an acoustic guitar. The acoustic guitar is playing exotic tunes. There is a sensual atmosphere. This piece could be used in the soundtrack of a romance movie, especially during the more intimate scenes.", "data_idx": 2735, "number": 1, "label": "jazz"} +{"file_name": "test_04712.png", "caption": "This is a flamenco music piece. The only instrument being played is an acoustic guitar. The acoustic guitar is playing exotic tunes. There is a sensual atmosphere. This piece could be used in the soundtrack of a romance movie, especially during the more intimate scenes.", "data_idx": 2735, "number": 2, "label": "jazz"} +{"file_name": "test_04713.png", "caption": "This is a flamenco music piece. The only instrument being played is an acoustic guitar. The acoustic guitar is playing exotic tunes. There is a sensual atmosphere. This piece could be used in the soundtrack of a romance movie, especially during the more intimate scenes.", "data_idx": 2735, "number": 3, "label": "jazz"} +{"file_name": "test_04714.png", "caption": "The song is an instrumental. The song is medium tempo with a harpsichord belting played with no other instrumentation. The music is emotional, passionate and melancholic. The song audio quality is poor.", "data_idx": 2736, "number": 0, "label": "classical"} +{"file_name": "test_04715.png", "caption": "The song is an instrumental. The song is medium tempo with a harpsichord belting played with no other instrumentation. The music is emotional, passionate and melancholic. The song audio quality is poor.", "data_idx": 2736, "number": 1, "label": "classical"} +{"file_name": "test_04716.png", "caption": "This song features a slider didgeridoo being played. It starts off with the didgeridoo playing a note and then siding to a higher pitch. The sound of a water splash is played just before the slide. Then a hissing sound is heard followed by the didgeridoo being played once again without the vibration of the lips. This produces a hollow sound. This sound is produced in a foley studio.", "data_idx": 2737, "number": 0, "label": "jazz"} +{"file_name": "test_04717.png", "caption": "This song features a slider didgeridoo being played. It starts off with the didgeridoo playing a note and then siding to a higher pitch. The sound of a water splash is played just before the slide. Then a hissing sound is heard followed by the didgeridoo being played once again without the vibration of the lips. This produces a hollow sound. This sound is produced in a foley studio.", "data_idx": 2737, "number": 1, "label": "jazz"} +{"file_name": "test_04718.png", "caption": "This song features a slider didgeridoo being played. It starts off with the didgeridoo playing a note and then siding to a higher pitch. The sound of a water splash is played just before the slide. Then a hissing sound is heard followed by the didgeridoo being played once again without the vibration of the lips. This produces a hollow sound. This sound is produced in a foley studio.", "data_idx": 2737, "number": 2, "label": "jazz"} +{"file_name": "test_04719.png", "caption": "This song features a slider didgeridoo being played. It starts off with the didgeridoo playing a note and then siding to a higher pitch. The sound of a water splash is played just before the slide. Then a hissing sound is heard followed by the didgeridoo being played once again without the vibration of the lips. This produces a hollow sound. This sound is produced in a foley studio.", "data_idx": 2737, "number": 3, "label": "jazz"} +{"file_name": "test_04720.png", "caption": "A male vocalist sings this groovy R&B. The tempo is medium with a funky bass guitar, steady guitar, bright electric guitar and keyboard harmony. The song is mellow, emotional, soft, smooth and engaging. This song is an R&B.", "data_idx": 2738, "number": 0, "label": "reggae"} +{"file_name": "test_04721.png", "caption": "A male vocalist sings this groovy R&B. The tempo is medium with a funky bass guitar, steady guitar, bright electric guitar and keyboard harmony. The song is mellow, emotional, soft, smooth and engaging. This song is an R&B.", "data_idx": 2738, "number": 1, "label": "reggae"} +{"file_name": "test_04722.png", "caption": "A male vocalist sings this groovy R&B. The tempo is medium with a funky bass guitar, steady guitar, bright electric guitar and keyboard harmony. The song is mellow, emotional, soft, smooth and engaging. This song is an R&B.", "data_idx": 2738, "number": 2, "label": "reggae"} +{"file_name": "test_04723.png", "caption": "A male vocalist sings this groovy R&B. The tempo is medium with a funky bass guitar, steady guitar, bright electric guitar and keyboard harmony. The song is mellow, emotional, soft, smooth and engaging. This song is an R&B.", "data_idx": 2738, "number": 3, "label": "reggae"} +{"file_name": "test_04724.png", "caption": "The low quality recording features a bright brass melody played in a reverberant space. The recording is in mono and it is a bit noisy.", "data_idx": 2740, "number": 0, "label": "hiphop"} +{"file_name": "test_04725.png", "caption": "The low quality recording features a bright brass melody played in a reverberant space. The recording is in mono and it is a bit noisy.", "data_idx": 2740, "number": 1, "label": "hiphop"} +{"file_name": "test_04726.png", "caption": "The low quality recording features a bright brass melody played in a reverberant space. The recording is in mono and it is a bit noisy.", "data_idx": 2740, "number": 2, "label": "hiphop"} +{"file_name": "test_04727.png", "caption": "The low quality recording features a bright brass melody played in a reverberant space. The recording is in mono and it is a bit noisy.", "data_idx": 2740, "number": 3, "label": "hiphop"} +{"file_name": "test_04728.png", "caption": "This is a symphonic black metal music piece. There is a male vocal singing using the guttural technique in the lead. The main tune is being played by a distorted electric guitar while orchestral elements such as the flute and brass elements. The bass guitar can be heard in the background. The rhythmic background is provided by a loud and rapid acoustic drum beat. The atmosphere is violent and ominous. This piece can be used in the soundtrack of a horror video game.", "data_idx": 2742, "number": 0, "label": "metal"} +{"file_name": "test_04729.png", "caption": "This is a symphonic black metal music piece. There is a male vocal singing using the guttural technique in the lead. The main tune is being played by a distorted electric guitar while orchestral elements such as the flute and brass elements. The bass guitar can be heard in the background. The rhythmic background is provided by a loud and rapid acoustic drum beat. The atmosphere is violent and ominous. This piece can be used in the soundtrack of a horror video game.", "data_idx": 2742, "number": 1, "label": "metal"} +{"file_name": "test_04730.png", "caption": "This is a symphonic black metal music piece. There is a male vocal singing using the guttural technique in the lead. The main tune is being played by a distorted electric guitar while orchestral elements such as the flute and brass elements. The bass guitar can be heard in the background. The rhythmic background is provided by a loud and rapid acoustic drum beat. The atmosphere is violent and ominous. This piece can be used in the soundtrack of a horror video game.", "data_idx": 2742, "number": 2, "label": "metal"} +{"file_name": "test_04731.png", "caption": "This is a symphonic black metal music piece. There is a male vocal singing using the guttural technique in the lead. The main tune is being played by a distorted electric guitar while orchestral elements such as the flute and brass elements. The bass guitar can be heard in the background. The rhythmic background is provided by a loud and rapid acoustic drum beat. The atmosphere is violent and ominous. This piece can be used in the soundtrack of a horror video game.", "data_idx": 2742, "number": 3, "label": "metal"} +{"file_name": "test_04732.png", "caption": "The low quality recording features an aggressive male vocal talking over synth pad chords, sustained, mellow female vocals and reverberant percussion. It sounds suspenseful and intense. The recording is noisy and in mono.", "data_idx": 2744, "number": 0, "label": "country"} +{"file_name": "test_04733.png", "caption": "The low quality recording features an aggressive male vocal talking over synth pad chords, sustained, mellow female vocals and reverberant percussion. It sounds suspenseful and intense. The recording is noisy and in mono.", "data_idx": 2744, "number": 1, "label": "country"} +{"file_name": "test_04734.png", "caption": "The low quality recording features an aggressive male vocal talking over synth pad chords, sustained, mellow female vocals and reverberant percussion. It sounds suspenseful and intense. The recording is noisy and in mono.", "data_idx": 2744, "number": 2, "label": "country"} +{"file_name": "test_04735.png", "caption": "The low quality recording features an aggressive male vocal talking over synth pad chords, sustained, mellow female vocals and reverberant percussion. It sounds suspenseful and intense. The recording is noisy and in mono.", "data_idx": 2744, "number": 3, "label": "country"} +{"file_name": "test_04736.png", "caption": "This audio contains a string instrument playing a melody with a bow in the higher mid range. Someone is picking a harp while strings are playing long notes in the background. A deep and low bass is also almost serving as a soft kick hit. A flute is playing a short melody with a lot of reverb at the end. This song may be playing while doing qigong.", "data_idx": 2750, "number": 0, "label": "classical"} +{"file_name": "test_04737.png", "caption": "This audio contains a string instrument playing a melody with a bow in the higher mid range. Someone is picking a harp while strings are playing long notes in the background. A deep and low bass is also almost serving as a soft kick hit. A flute is playing a short melody with a lot of reverb at the end. This song may be playing while doing qigong.", "data_idx": 2750, "number": 1, "label": "classical"} +{"file_name": "test_04738.png", "caption": "This audio contains a string instrument playing a melody with a bow in the higher mid range. Someone is picking a harp while strings are playing long notes in the background. A deep and low bass is also almost serving as a soft kick hit. A flute is playing a short melody with a lot of reverb at the end. This song may be playing while doing qigong.", "data_idx": 2750, "number": 2, "label": "classical"} +{"file_name": "test_04739.png", "caption": "This audio contains a string instrument playing a melody with a bow in the higher mid range. Someone is picking a harp while strings are playing long notes in the background. A deep and low bass is also almost serving as a soft kick hit. A flute is playing a short melody with a lot of reverb at the end. This song may be playing while doing qigong.", "data_idx": 2750, "number": 3, "label": "classical"} +{"file_name": "test_04740.png", "caption": "This song contains a wide analog synthpad playing along with a piano and rhythmic strings in the background. Then an acoustic drum comes along playing with an e-bass and an e-guitar is picking single notes as a melody. The whole recording is full of reverb. This song may be playing at a festival.", "data_idx": 2752, "number": 0, "label": "disco"} +{"file_name": "test_04741.png", "caption": "This song contains a wide analog synthpad playing along with a piano and rhythmic strings in the background. Then an acoustic drum comes along playing with an e-bass and an e-guitar is picking single notes as a melody. The whole recording is full of reverb. This song may be playing at a festival.", "data_idx": 2752, "number": 1, "label": "disco"} +{"file_name": "test_04742.png", "caption": "This song contains a wide analog synthpad playing along with a piano and rhythmic strings in the background. Then an acoustic drum comes along playing with an e-bass and an e-guitar is picking single notes as a melody. The whole recording is full of reverb. This song may be playing at a festival.", "data_idx": 2752, "number": 2, "label": "disco"} +{"file_name": "test_04743.png", "caption": "This song contains a wide analog synthpad playing along with a piano and rhythmic strings in the background. Then an acoustic drum comes along playing with an e-bass and an e-guitar is picking single notes as a melody. The whole recording is full of reverb. This song may be playing at a festival.", "data_idx": 2752, "number": 3, "label": "disco"} +{"file_name": "test_04744.png", "caption": "This is an acapella version of a rock music piece. There are male vocals performing the piece using the harmony singing technique. They are singing in the major key. The atmosphere is dreamy and vibrant. This piece could be used in the soundtrack of a drama movie that takes place in the United Kingdom.", "data_idx": 2755, "number": 0, "label": "blues"} +{"file_name": "test_04745.png", "caption": "This is an acapella version of a rock music piece. There are male vocals performing the piece using the harmony singing technique. They are singing in the major key. The atmosphere is dreamy and vibrant. This piece could be used in the soundtrack of a drama movie that takes place in the United Kingdom.", "data_idx": 2755, "number": 1, "label": "blues"} +{"file_name": "test_04746.png", "caption": "This is an acapella version of a rock music piece. There are male vocals performing the piece using the harmony singing technique. They are singing in the major key. The atmosphere is dreamy and vibrant. This piece could be used in the soundtrack of a drama movie that takes place in the United Kingdom.", "data_idx": 2755, "number": 2, "label": "blues"} +{"file_name": "test_04747.png", "caption": "This is an acapella version of a rock music piece. There are male vocals performing the piece using the harmony singing technique. They are singing in the major key. The atmosphere is dreamy and vibrant. This piece could be used in the soundtrack of a drama movie that takes place in the United Kingdom.", "data_idx": 2755, "number": 3, "label": "blues"} +{"file_name": "test_04748.png", "caption": "This song contains acoustic drums playing a simple rock groove after coming in with some fill-ins on the toms. An e-bass is playing along. An e-guitar is playing a simple repeating melody then another e-guitar comes in strumming chords in the background. You can hear clapping and the crowd screaming and cheering. This song may be playing at a live concert.", "data_idx": 2757, "number": 0, "label": "rock"} +{"file_name": "test_04749.png", "caption": "This song contains acoustic drums playing a simple rock groove after coming in with some fill-ins on the toms. An e-bass is playing along. An e-guitar is playing a simple repeating melody then another e-guitar comes in strumming chords in the background. You can hear clapping and the crowd screaming and cheering. This song may be playing at a live concert.", "data_idx": 2757, "number": 1, "label": "rock"} +{"file_name": "test_04750.png", "caption": "This song contains acoustic drums playing a simple rock groove after coming in with some fill-ins on the toms. An e-bass is playing along. An e-guitar is playing a simple repeating melody then another e-guitar comes in strumming chords in the background. You can hear clapping and the crowd screaming and cheering. This song may be playing at a live concert.", "data_idx": 2757, "number": 2, "label": "rock"} +{"file_name": "test_04751.png", "caption": "This song contains acoustic drums playing a simple rock groove after coming in with some fill-ins on the toms. An e-bass is playing along. An e-guitar is playing a simple repeating melody then another e-guitar comes in strumming chords in the background. You can hear clapping and the crowd screaming and cheering. This song may be playing at a live concert.", "data_idx": 2757, "number": 3, "label": "rock"} +{"file_name": "test_04752.png", "caption": "This is a kids music piece in the style of hip-hop. There is a female vocalist singing in a rap-like manner in the lead. The keyboard is playing the melody while there is a simple bass line in the background. A hip-hop electronic drum beat provides the rhythm. The atmosphere is playful. This piece can be used in the soundtrack of a kids TV show.", "data_idx": 2762, "number": 0, "label": "pop"} +{"file_name": "test_04753.png", "caption": "This is a kids music piece in the style of hip-hop. There is a female vocalist singing in a rap-like manner in the lead. The keyboard is playing the melody while there is a simple bass line in the background. A hip-hop electronic drum beat provides the rhythm. The atmosphere is playful. This piece can be used in the soundtrack of a kids TV show.", "data_idx": 2762, "number": 1, "label": "pop"} +{"file_name": "test_04754.png", "caption": "This is a kids music piece in the style of hip-hop. There is a female vocalist singing in a rap-like manner in the lead. The keyboard is playing the melody while there is a simple bass line in the background. A hip-hop electronic drum beat provides the rhythm. The atmosphere is playful. This piece can be used in the soundtrack of a kids TV show.", "data_idx": 2762, "number": 2, "label": "pop"} +{"file_name": "test_04755.png", "caption": "This is a kids music piece in the style of hip-hop. There is a female vocalist singing in a rap-like manner in the lead. The keyboard is playing the melody while there is a simple bass line in the background. A hip-hop electronic drum beat provides the rhythm. The atmosphere is playful. This piece can be used in the soundtrack of a kids TV show.", "data_idx": 2762, "number": 3, "label": "pop"} +{"file_name": "test_04756.png", "caption": "A male singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, ethnic drumming rhythm, trumpets playing percussively and a keyboard harmony. The song is groovy and cheerful. The song is retro final pop song;", "data_idx": 2766, "number": 0, "label": "disco"} +{"file_name": "test_04757.png", "caption": "A male singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, ethnic drumming rhythm, trumpets playing percussively and a keyboard harmony. The song is groovy and cheerful. The song is retro final pop song;", "data_idx": 2766, "number": 1, "label": "disco"} +{"file_name": "test_04758.png", "caption": "A male singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, ethnic drumming rhythm, trumpets playing percussively and a keyboard harmony. The song is groovy and cheerful. The song is retro final pop song;", "data_idx": 2766, "number": 2, "label": "disco"} +{"file_name": "test_04759.png", "caption": "A male singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, ethnic drumming rhythm, trumpets playing percussively and a keyboard harmony. The song is groovy and cheerful. The song is retro final pop song;", "data_idx": 2766, "number": 3, "label": "disco"} +{"file_name": "test_04760.png", "caption": "This is a deep tech house song with a simple beat, and simple bassline that consists of one note. There aren't any melodic components to the song besides the one bass note that is played with the same repeated rhythm.", "data_idx": 2767, "number": 0, "label": "reggae"} +{"file_name": "test_04761.png", "caption": "This is a deep tech house song with a simple beat, and simple bassline that consists of one note. There aren't any melodic components to the song besides the one bass note that is played with the same repeated rhythm.", "data_idx": 2767, "number": 1, "label": "reggae"} +{"file_name": "test_04762.png", "caption": "This is a deep tech house song with a simple beat, and simple bassline that consists of one note. There aren't any melodic components to the song besides the one bass note that is played with the same repeated rhythm.", "data_idx": 2767, "number": 2, "label": "reggae"} +{"file_name": "test_04763.png", "caption": "This is a deep tech house song with a simple beat, and simple bassline that consists of one note. There aren't any melodic components to the song besides the one bass note that is played with the same repeated rhythm.", "data_idx": 2767, "number": 3, "label": "reggae"} +{"file_name": "test_04764.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment with bell tones, bass clarinet harmony and other percussion hits. The song has ambient room noise and sounds of sand falling on the floor. The song is a Christmas movie soundtrack.", "data_idx": 2770, "number": 0, "label": "classical"} +{"file_name": "test_04765.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment with bell tones, bass clarinet harmony and other percussion hits. The song has ambient room noise and sounds of sand falling on the floor. The song is a Christmas movie soundtrack.", "data_idx": 2770, "number": 1, "label": "classical"} +{"file_name": "test_04766.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment with bell tones, bass clarinet harmony and other percussion hits. The song has ambient room noise and sounds of sand falling on the floor. The song is a Christmas movie soundtrack.", "data_idx": 2770, "number": 2, "label": "classical"} +{"file_name": "test_04767.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment with bell tones, bass clarinet harmony and other percussion hits. The song has ambient room noise and sounds of sand falling on the floor. The song is a Christmas movie soundtrack.", "data_idx": 2770, "number": 3, "label": "classical"} +{"file_name": "test_04768.png", "caption": "Bluegrass music featuring banjo, mandolin, acoustic guitar, upright bass, a simple chord progression and a fast tempo.", "data_idx": 2773, "number": 0, "label": "country"} +{"file_name": "test_04769.png", "caption": "Bluegrass music featuring banjo, mandolin, acoustic guitar, upright bass, a simple chord progression and a fast tempo.", "data_idx": 2773, "number": 1, "label": "country"} +{"file_name": "test_04770.png", "caption": "Bluegrass music featuring banjo, mandolin, acoustic guitar, upright bass, a simple chord progression and a fast tempo.", "data_idx": 2773, "number": 2, "label": "country"} +{"file_name": "test_04771.png", "caption": "Bluegrass music featuring banjo, mandolin, acoustic guitar, upright bass, a simple chord progression and a fast tempo.", "data_idx": 2773, "number": 3, "label": "country"} +{"file_name": "test_04772.png", "caption": "This is a hardcore hip-hop music piece. There is a male vocal with a raspy voice rapping at the forefront. The melody is made up of a repeated keyboard sample. There is a bass guitar playing a groovy bass line. The rhythmic background is composed of a hip-hop electronic drum beat. The atmosphere is hard-hitting. This piece could be the opening theme of a crime movie that takes place in the big city.", "data_idx": 2774, "number": 0, "label": "hiphop"} +{"file_name": "test_04773.png", "caption": "This is a hardcore hip-hop music piece. There is a male vocal with a raspy voice rapping at the forefront. The melody is made up of a repeated keyboard sample. There is a bass guitar playing a groovy bass line. The rhythmic background is composed of a hip-hop electronic drum beat. The atmosphere is hard-hitting. This piece could be the opening theme of a crime movie that takes place in the big city.", "data_idx": 2774, "number": 1, "label": "hiphop"} +{"file_name": "test_04774.png", "caption": "This is a hardcore hip-hop music piece. There is a male vocal with a raspy voice rapping at the forefront. The melody is made up of a repeated keyboard sample. There is a bass guitar playing a groovy bass line. The rhythmic background is composed of a hip-hop electronic drum beat. The atmosphere is hard-hitting. This piece could be the opening theme of a crime movie that takes place in the big city.", "data_idx": 2774, "number": 2, "label": "hiphop"} +{"file_name": "test_04775.png", "caption": "This is a hardcore hip-hop music piece. There is a male vocal with a raspy voice rapping at the forefront. The melody is made up of a repeated keyboard sample. There is a bass guitar playing a groovy bass line. The rhythmic background is composed of a hip-hop electronic drum beat. The atmosphere is hard-hitting. This piece could be the opening theme of a crime movie that takes place in the big city.", "data_idx": 2774, "number": 3, "label": "hiphop"} +{"file_name": "test_04776.png", "caption": "This is an instrumental cover of a J-pop music piece. There is no singer in this piece. The melodic background consists of the keyboard and the bass playing a repeated theme. There is a synth solo with an electric guitar sound being played as the lead. In the rhythmic background, there is a fast tempo electronic drum beat. The atmosphere is danceable and energetic. This piece can be used in the soundtrack of a car racing video game. It could also be used in the soundtrack of an anime during competitive scenes.", "data_idx": 2776, "number": 0, "label": "hiphop"} +{"file_name": "test_04777.png", "caption": "This is an instrumental cover of a J-pop music piece. There is no singer in this piece. The melodic background consists of the keyboard and the bass playing a repeated theme. There is a synth solo with an electric guitar sound being played as the lead. In the rhythmic background, there is a fast tempo electronic drum beat. The atmosphere is danceable and energetic. This piece can be used in the soundtrack of a car racing video game. It could also be used in the soundtrack of an anime during competitive scenes.", "data_idx": 2776, "number": 1, "label": "hiphop"} +{"file_name": "test_04778.png", "caption": "This is an instrumental cover of a J-pop music piece. There is no singer in this piece. The melodic background consists of the keyboard and the bass playing a repeated theme. There is a synth solo with an electric guitar sound being played as the lead. In the rhythmic background, there is a fast tempo electronic drum beat. The atmosphere is danceable and energetic. This piece can be used in the soundtrack of a car racing video game. It could also be used in the soundtrack of an anime during competitive scenes.", "data_idx": 2776, "number": 2, "label": "hiphop"} +{"file_name": "test_04779.png", "caption": "This is an instrumental cover of a J-pop music piece. There is no singer in this piece. The melodic background consists of the keyboard and the bass playing a repeated theme. There is a synth solo with an electric guitar sound being played as the lead. In the rhythmic background, there is a fast tempo electronic drum beat. The atmosphere is danceable and energetic. This piece can be used in the soundtrack of a car racing video game. It could also be used in the soundtrack of an anime during competitive scenes.", "data_idx": 2776, "number": 3, "label": "hiphop"} +{"file_name": "test_04780.png", "caption": "This song is played on a glockenspiel. This is low quality audio. The glockenspiel sounds like large bells. There is a lot of reverb in this audio. There are no other instruments in this song. There are no voices in this song. This song sounds like the song that would be played in a music box.", "data_idx": 2777, "number": 0, "label": "classical"} +{"file_name": "test_04781.png", "caption": "This song is played on a glockenspiel. This is low quality audio. The glockenspiel sounds like large bells. There is a lot of reverb in this audio. There are no other instruments in this song. There are no voices in this song. This song sounds like the song that would be played in a music box.", "data_idx": 2777, "number": 1, "label": "classical"} +{"file_name": "test_04782.png", "caption": "This song is played on a glockenspiel. This is low quality audio. The glockenspiel sounds like large bells. There is a lot of reverb in this audio. There are no other instruments in this song. There are no voices in this song. This song sounds like the song that would be played in a music box.", "data_idx": 2777, "number": 2, "label": "classical"} +{"file_name": "test_04783.png", "caption": "This song is played on a glockenspiel. This is low quality audio. The glockenspiel sounds like large bells. There is a lot of reverb in this audio. There are no other instruments in this song. There are no voices in this song. This song sounds like the song that would be played in a music box.", "data_idx": 2777, "number": 3, "label": "classical"} +{"file_name": "test_04784.png", "caption": "This is the recording of an accordion lesson. There is a male voice describing the way a certain song is meant to be played on the accordion in the Spanish language. The quality of the recording is quite poor and there is a very frequent peak sound that crackles while the instructor is speaking.", "data_idx": 2778, "number": 0, "label": "classical"} +{"file_name": "test_04785.png", "caption": "This is the recording of an accordion lesson. There is a male voice describing the way a certain song is meant to be played on the accordion in the Spanish language. The quality of the recording is quite poor and there is a very frequent peak sound that crackles while the instructor is speaking.", "data_idx": 2778, "number": 1, "label": "classical"} +{"file_name": "test_04786.png", "caption": "This is the recording of an accordion lesson. There is a male voice describing the way a certain song is meant to be played on the accordion in the Spanish language. The quality of the recording is quite poor and there is a very frequent peak sound that crackles while the instructor is speaking.", "data_idx": 2778, "number": 2, "label": "classical"} +{"file_name": "test_04787.png", "caption": "This is the recording of an accordion lesson. There is a male voice describing the way a certain song is meant to be played on the accordion in the Spanish language. The quality of the recording is quite poor and there is a very frequent peak sound that crackles while the instructor is speaking.", "data_idx": 2778, "number": 3, "label": "classical"} +{"file_name": "test_04788.png", "caption": "This audio contains someone playing a very high pitched tone using tingsha bells. This is an amateur recording.", "data_idx": 2779, "number": 0, "label": "blues"} +{"file_name": "test_04789.png", "caption": "This audio contains someone playing a very high pitched tone using tingsha bells. This is an amateur recording.", "data_idx": 2779, "number": 1, "label": "blues"} +{"file_name": "test_04790.png", "caption": "This audio contains someone playing a very high pitched tone using tingsha bells. This is an amateur recording.", "data_idx": 2779, "number": 2, "label": "blues"} +{"file_name": "test_04791.png", "caption": "This audio contains someone playing a very high pitched tone using tingsha bells. This is an amateur recording.", "data_idx": 2779, "number": 3, "label": "blues"} +{"file_name": "test_04792.png", "caption": "This song is an amateur recording of a person beatboxing. The sound is produced using the mouth. This features sounds of the kick, snare and hi-hat. There are no other instruments in this song. There is no vocal melody apart from the beatbox itself.", "data_idx": 2780, "number": 0, "label": "hiphop"} +{"file_name": "test_04793.png", "caption": "This song is an amateur recording of a person beatboxing. The sound is produced using the mouth. This features sounds of the kick, snare and hi-hat. There are no other instruments in this song. There is no vocal melody apart from the beatbox itself.", "data_idx": 2780, "number": 1, "label": "hiphop"} +{"file_name": "test_04794.png", "caption": "This song is an amateur recording of a person beatboxing. The sound is produced using the mouth. This features sounds of the kick, snare and hi-hat. There are no other instruments in this song. There is no vocal melody apart from the beatbox itself.", "data_idx": 2780, "number": 2, "label": "hiphop"} +{"file_name": "test_04795.png", "caption": "This song is an amateur recording of a person beatboxing. The sound is produced using the mouth. This features sounds of the kick, snare and hi-hat. There are no other instruments in this song. There is no vocal melody apart from the beatbox itself.", "data_idx": 2780, "number": 3, "label": "hiphop"} +{"file_name": "test_04796.png", "caption": "The low quality recording features a synth lead melody and groovy synth piano playing over rock songs played on playback. The song consists of a punchy kick and snare hits, shimmering hi hats, funky electric guitar melody, groovy bass and passionate male vocals singing over it in the beginning. It sounds funky and groovy, while the recording is a bit noisy.", "data_idx": 2781, "number": 0, "label": "classical"} +{"file_name": "test_04797.png", "caption": "The low quality recording features a synth lead melody and groovy synth piano playing over rock songs played on playback. The song consists of a punchy kick and snare hits, shimmering hi hats, funky electric guitar melody, groovy bass and passionate male vocals singing over it in the beginning. It sounds funky and groovy, while the recording is a bit noisy.", "data_idx": 2781, "number": 1, "label": "classical"} +{"file_name": "test_04798.png", "caption": "The low quality recording features a synth lead melody and groovy synth piano playing over rock songs played on playback. The song consists of a punchy kick and snare hits, shimmering hi hats, funky electric guitar melody, groovy bass and passionate male vocals singing over it in the beginning. It sounds funky and groovy, while the recording is a bit noisy.", "data_idx": 2781, "number": 2, "label": "classical"} +{"file_name": "test_04799.png", "caption": "The low quality recording features a synth lead melody and groovy synth piano playing over rock songs played on playback. The song consists of a punchy kick and snare hits, shimmering hi hats, funky electric guitar melody, groovy bass and passionate male vocals singing over it in the beginning. It sounds funky and groovy, while the recording is a bit noisy.", "data_idx": 2781, "number": 3, "label": "classical"} +{"file_name": "test_04800.png", "caption": "A cellist plays this lilting melody with a piano accompaniment and no other instruments. The music is emotional and tragic. The tempo is slow and has a lot of beauty to it. The song is a cover of a famous love song.", "data_idx": 2787, "number": 0, "label": "classical"} +{"file_name": "test_04801.png", "caption": "A cellist plays this lilting melody with a piano accompaniment and no other instruments. The music is emotional and tragic. The tempo is slow and has a lot of beauty to it. The song is a cover of a famous love song.", "data_idx": 2787, "number": 1, "label": "classical"} +{"file_name": "test_04802.png", "caption": "A cellist plays this lilting melody with a piano accompaniment and no other instruments. The music is emotional and tragic. The tempo is slow and has a lot of beauty to it. The song is a cover of a famous love song.", "data_idx": 2787, "number": 2, "label": "classical"} +{"file_name": "test_04803.png", "caption": "A cellist plays this lilting melody with a piano accompaniment and no other instruments. The music is emotional and tragic. The tempo is slow and has a lot of beauty to it. The song is a cover of a famous love song.", "data_idx": 2787, "number": 3, "label": "classical"} +{"file_name": "test_04804.png", "caption": "This song would be classified as bubblegum pop. The music is more suitable for children, as it has a young and light-hearted style of production. There's a bright and tinny synth which is used to play a repeated motif, and at one point we hear a pair of birds mimicking the melody in their squeaky bird-like tones.", "data_idx": 2790, "number": 0, "label": "disco"} +{"file_name": "test_04805.png", "caption": "This song would be classified as bubblegum pop. The music is more suitable for children, as it has a young and light-hearted style of production. There's a bright and tinny synth which is used to play a repeated motif, and at one point we hear a pair of birds mimicking the melody in their squeaky bird-like tones.", "data_idx": 2790, "number": 1, "label": "disco"} +{"file_name": "test_04806.png", "caption": "This song would be classified as bubblegum pop. The music is more suitable for children, as it has a young and light-hearted style of production. There's a bright and tinny synth which is used to play a repeated motif, and at one point we hear a pair of birds mimicking the melody in their squeaky bird-like tones.", "data_idx": 2790, "number": 2, "label": "disco"} +{"file_name": "test_04807.png", "caption": "This song would be classified as bubblegum pop. The music is more suitable for children, as it has a young and light-hearted style of production. There's a bright and tinny synth which is used to play a repeated motif, and at one point we hear a pair of birds mimicking the melody in their squeaky bird-like tones.", "data_idx": 2790, "number": 3, "label": "disco"} +{"file_name": "test_04808.png", "caption": "This is a world music piece in the style of Celtic folk music. There is a female vocalist singing gently and melodically. There is an airy strings section creating a relaxing atmosphere while the piano plays a mellow arpeggio. The atmosphere is soothing. This piece could be used during the vivid scenery shots of a movie that takes place in the middle of nature.", "data_idx": 2792, "number": 0, "label": "hiphop"} +{"file_name": "test_04809.png", "caption": "This is a world music piece in the style of Celtic folk music. There is a female vocalist singing gently and melodically. There is an airy strings section creating a relaxing atmosphere while the piano plays a mellow arpeggio. The atmosphere is soothing. This piece could be used during the vivid scenery shots of a movie that takes place in the middle of nature.", "data_idx": 2792, "number": 1, "label": "hiphop"} +{"file_name": "test_04810.png", "caption": "This is a world music piece in the style of Celtic folk music. There is a female vocalist singing gently and melodically. There is an airy strings section creating a relaxing atmosphere while the piano plays a mellow arpeggio. The atmosphere is soothing. This piece could be used during the vivid scenery shots of a movie that takes place in the middle of nature.", "data_idx": 2792, "number": 2, "label": "hiphop"} +{"file_name": "test_04811.png", "caption": "This is a world music piece in the style of Celtic folk music. There is a female vocalist singing gently and melodically. There is an airy strings section creating a relaxing atmosphere while the piano plays a mellow arpeggio. The atmosphere is soothing. This piece could be used during the vivid scenery shots of a movie that takes place in the middle of nature.", "data_idx": 2792, "number": 3, "label": "hiphop"} +{"file_name": "test_04812.png", "caption": "This music is instrumental. His tempo is fast with a lively ukelele rhythm, melodious harp harmony and shaker beats with male vocalisation. This clip is the beginning of a song with latin music influences. The music is a lively, spirited, happy, cheerful, warm, energetic latin folk song.", "data_idx": 2793, "number": 0, "label": "reggae"} +{"file_name": "test_04813.png", "caption": "This music is instrumental. His tempo is fast with a lively ukelele rhythm, melodious harp harmony and shaker beats with male vocalisation. This clip is the beginning of a song with latin music influences. The music is a lively, spirited, happy, cheerful, warm, energetic latin folk song.", "data_idx": 2793, "number": 1, "label": "reggae"} +{"file_name": "test_04814.png", "caption": "This music is instrumental. His tempo is fast with a lively ukelele rhythm, melodious harp harmony and shaker beats with male vocalisation. This clip is the beginning of a song with latin music influences. The music is a lively, spirited, happy, cheerful, warm, energetic latin folk song.", "data_idx": 2793, "number": 2, "label": "reggae"} +{"file_name": "test_04815.png", "caption": "This music is instrumental. His tempo is fast with a lively ukelele rhythm, melodious harp harmony and shaker beats with male vocalisation. This clip is the beginning of a song with latin music influences. The music is a lively, spirited, happy, cheerful, warm, energetic latin folk song.", "data_idx": 2793, "number": 3, "label": "reggae"} diff --git a/data/test/metadata_0010.jsonl b/data/test/metadata_0010.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..37f34ea88ed7469c9fa4977ed5e9e9eea8eea2e5 --- /dev/null +++ b/data/test/metadata_0010.jsonl @@ -0,0 +1,342 @@ +{"file_name": "test_04816.png", "caption": "This is a comedy music piece. There are male vocalists singing in a rap-like manner in the Hindi language. The tune of the piece is being played by the synth bass while the rhythm is played by an electronic drum beat. There is an amusing aura to it. Due to the lyrics, this piece could be used in the soundtrack of a comedy movie involving married men.", "data_idx": 3001, "number": 0, "label": "reggae"} +{"file_name": "test_04817.png", "caption": "This is a comedy music piece. There are male vocalists singing in a rap-like manner in the Hindi language. The tune of the piece is being played by the synth bass while the rhythm is played by an electronic drum beat. There is an amusing aura to it. Due to the lyrics, this piece could be used in the soundtrack of a comedy movie involving married men.", "data_idx": 3001, "number": 1, "label": "reggae"} +{"file_name": "test_04818.png", "caption": "This is an indie folk music piece. There is a melancholic melody being played by the banjo and the trombone, then they both stop and the organ can be heard holding a note. The atmosphere is sentimental. This piece could be used in the soundtrack of a drama, especially during the scenes where people are mourning the loss of a character.", "data_idx": 3002, "number": 0, "label": "classical"} +{"file_name": "test_04819.png", "caption": "This is an indie folk music piece. There is a melancholic melody being played by the banjo and the trombone, then they both stop and the organ can be heard holding a note. The atmosphere is sentimental. This piece could be used in the soundtrack of a drama, especially during the scenes where people are mourning the loss of a character.", "data_idx": 3002, "number": 1, "label": "classical"} +{"file_name": "test_04820.png", "caption": "The low quality recording features wide synth chords, sustained synth bass and mellow bells melody, followed by low tom hits located in the left channel of the stereo image. It sounds emotional, passionate, powerful and soulful.", "data_idx": 3004, "number": 0, "label": "classical"} +{"file_name": "test_04821.png", "caption": "The low quality recording features wide synth chords, sustained synth bass and mellow bells melody, followed by low tom hits located in the left channel of the stereo image. It sounds emotional, passionate, powerful and soulful.", "data_idx": 3004, "number": 1, "label": "classical"} +{"file_name": "test_04822.png", "caption": "The low quality recording features wide synth chords, sustained synth bass and mellow bells melody, followed by low tom hits located in the left channel of the stereo image. It sounds emotional, passionate, powerful and soulful.", "data_idx": 3004, "number": 2, "label": "classical"} +{"file_name": "test_04823.png", "caption": "The low quality recording features wide synth chords, sustained synth bass and mellow bells melody, followed by low tom hits located in the left channel of the stereo image. It sounds emotional, passionate, powerful and soulful.", "data_idx": 3004, "number": 3, "label": "classical"} +{"file_name": "test_04824.png", "caption": "The low quality recording features a didgeridoo groovy melody that slowly increases in volume. The recording is mono and noisy.", "data_idx": 3009, "number": 0, "label": "hiphop"} +{"file_name": "test_04825.png", "caption": "The low quality recording features a didgeridoo groovy melody that slowly increases in volume. The recording is mono and noisy.", "data_idx": 3009, "number": 1, "label": "hiphop"} +{"file_name": "test_04826.png", "caption": "The low quality recording features a didgeridoo groovy melody that slowly increases in volume. The recording is mono and noisy.", "data_idx": 3009, "number": 2, "label": "hiphop"} +{"file_name": "test_04827.png", "caption": "The low quality recording features a didgeridoo groovy melody that slowly increases in volume. The recording is mono and noisy.", "data_idx": 3009, "number": 3, "label": "hiphop"} +{"file_name": "test_04828.png", "caption": "The low quality recording features a sound of a digital bell, followed by crowd noises in the background. The recording is noisy and in mono.", "data_idx": 3011, "number": 0, "label": "hiphop"} +{"file_name": "test_04829.png", "caption": "The low quality recording features a sound of a digital bell, followed by crowd noises in the background. The recording is noisy and in mono.", "data_idx": 3011, "number": 1, "label": "hiphop"} +{"file_name": "test_04830.png", "caption": "The low quality recording features a sound of a digital bell, followed by crowd noises in the background. The recording is noisy and in mono.", "data_idx": 3011, "number": 2, "label": "hiphop"} +{"file_name": "test_04831.png", "caption": "The low quality recording features a sound of a digital bell, followed by crowd noises in the background. The recording is noisy and in mono.", "data_idx": 3011, "number": 3, "label": "hiphop"} +{"file_name": "test_04832.png", "caption": "This low quality audio features a child singing the main melody. This is accompanied by other children's voices singing vocables in the background in harmony. An acoustic guitar strums chords. There are no other instruments in this song. This song has a holiday mood. This song can be played in a Christmas movie.", "data_idx": 3014, "number": 0, "label": "classical"} +{"file_name": "test_04833.png", "caption": "This low quality audio features a child singing the main melody. This is accompanied by other children's voices singing vocables in the background in harmony. An acoustic guitar strums chords. There are no other instruments in this song. This song has a holiday mood. This song can be played in a Christmas movie.", "data_idx": 3014, "number": 1, "label": "classical"} +{"file_name": "test_04834.png", "caption": "This low quality audio features a child singing the main melody. This is accompanied by other children's voices singing vocables in the background in harmony. An acoustic guitar strums chords. There are no other instruments in this song. This song has a holiday mood. This song can be played in a Christmas movie.", "data_idx": 3014, "number": 2, "label": "classical"} +{"file_name": "test_04835.png", "caption": "This low quality audio features a child singing the main melody. This is accompanied by other children's voices singing vocables in the background in harmony. An acoustic guitar strums chords. There are no other instruments in this song. This song has a holiday mood. This song can be played in a Christmas movie.", "data_idx": 3014, "number": 3, "label": "classical"} +{"file_name": "test_04836.png", "caption": "The low quality recording features an electro song that consists of passionate female vocals singing over punchy kick, synth melody, male chants, snappy claps, shimmering hi hats, followed by echoing flat male vocals. It sounds energetic and exciting.", "data_idx": 3018, "number": 0, "label": "hiphop"} +{"file_name": "test_04837.png", "caption": "The low quality recording features an electro song that consists of passionate female vocals singing over punchy kick, synth melody, male chants, snappy claps, shimmering hi hats, followed by echoing flat male vocals. It sounds energetic and exciting.", "data_idx": 3018, "number": 1, "label": "hiphop"} +{"file_name": "test_04838.png", "caption": "The low quality recording features an electro song that consists of passionate female vocals singing over punchy kick, synth melody, male chants, snappy claps, shimmering hi hats, followed by echoing flat male vocals. It sounds energetic and exciting.", "data_idx": 3018, "number": 2, "label": "hiphop"} +{"file_name": "test_04839.png", "caption": "The low quality recording features an electro song that consists of passionate female vocals singing over punchy kick, synth melody, male chants, snappy claps, shimmering hi hats, followed by echoing flat male vocals. It sounds energetic and exciting.", "data_idx": 3018, "number": 3, "label": "hiphop"} +{"file_name": "test_04840.png", "caption": "This audio contains crickets chirping. Then someone starts playing a digital accordion. This is an amateur recording.", "data_idx": 3026, "number": 0, "label": "blues"} +{"file_name": "test_04841.png", "caption": "This audio contains crickets chirping. Then someone starts playing a digital accordion. This is an amateur recording.", "data_idx": 3026, "number": 1, "label": "blues"} +{"file_name": "test_04842.png", "caption": "This audio contains crickets chirping. Then someone starts playing a digital accordion. This is an amateur recording.", "data_idx": 3026, "number": 2, "label": "blues"} +{"file_name": "test_04843.png", "caption": "This audio contains crickets chirping. Then someone starts playing a digital accordion. This is an amateur recording.", "data_idx": 3026, "number": 3, "label": "blues"} +{"file_name": "test_04844.png", "caption": "This is a live recording of a musician playing a Chinese flute, otherwise known as a dizi. It is a calming and melodic piece - and you could imagine yourself walking peacefully through marshlands or grasslands. Though the melody is enchanting, the audio quality is average - with a slight fuzzy buzz present in the background.", "data_idx": 3027, "number": 0, "label": "classical"} +{"file_name": "test_04845.png", "caption": "This is a live recording of a musician playing a Chinese flute, otherwise known as a dizi. It is a calming and melodic piece - and you could imagine yourself walking peacefully through marshlands or grasslands. Though the melody is enchanting, the audio quality is average - with a slight fuzzy buzz present in the background.", "data_idx": 3027, "number": 1, "label": "classical"} +{"file_name": "test_04846.png", "caption": "This is a live recording of a musician playing a Chinese flute, otherwise known as a dizi. It is a calming and melodic piece - and you could imagine yourself walking peacefully through marshlands or grasslands. Though the melody is enchanting, the audio quality is average - with a slight fuzzy buzz present in the background.", "data_idx": 3027, "number": 2, "label": "classical"} +{"file_name": "test_04847.png", "caption": "This is a live recording of a musician playing a Chinese flute, otherwise known as a dizi. It is a calming and melodic piece - and you could imagine yourself walking peacefully through marshlands or grasslands. Though the melody is enchanting, the audio quality is average - with a slight fuzzy buzz present in the background.", "data_idx": 3027, "number": 3, "label": "classical"} +{"file_name": "test_04848.png", "caption": "This is an instrumental trumpet music piece. The trumpet is playing a calming main melody while the keyboard and the bass guitar are playing in the background. There is a slow tempo acoustic sounding drum beat playing the rhythm. The atmosphere is soothing.This piece could be used in the soundtrack of an art movie. It could also be playing in the background at a sauna.", "data_idx": 3029, "number": 0, "label": "jazz"} +{"file_name": "test_04849.png", "caption": "This is an instrumental trumpet music piece. The trumpet is playing a calming main melody while the keyboard and the bass guitar are playing in the background. There is a slow tempo acoustic sounding drum beat playing the rhythm. The atmosphere is soothing.This piece could be used in the soundtrack of an art movie. It could also be playing in the background at a sauna.", "data_idx": 3029, "number": 1, "label": "jazz"} +{"file_name": "test_04850.png", "caption": "This is an instrumental trumpet music piece. The trumpet is playing a calming main melody while the keyboard and the bass guitar are playing in the background. There is a slow tempo acoustic sounding drum beat playing the rhythm. The atmosphere is soothing.This piece could be used in the soundtrack of an art movie. It could also be playing in the background at a sauna.", "data_idx": 3029, "number": 2, "label": "jazz"} +{"file_name": "test_04851.png", "caption": "This is an instrumental trumpet music piece. The trumpet is playing a calming main melody while the keyboard and the bass guitar are playing in the background. There is a slow tempo acoustic sounding drum beat playing the rhythm. The atmosphere is soothing.This piece could be used in the soundtrack of an art movie. It could also be playing in the background at a sauna.", "data_idx": 3029, "number": 3, "label": "jazz"} +{"file_name": "test_04852.png", "caption": "The low quality recording features a live performance of a hard rock song that consists of punchy kick and snare hits, energetic cymbals, distorted bass guitar and aggressive electric guitar riffs. There are some crowd cheering sounds in the background. It sounds energetic, aggressive and the recording is noisy and in mono.", "data_idx": 3031, "number": 0, "label": "metal"} +{"file_name": "test_04853.png", "caption": "The low quality recording features a live performance of a hard rock song that consists of punchy kick and snare hits, energetic cymbals, distorted bass guitar and aggressive electric guitar riffs. There are some crowd cheering sounds in the background. It sounds energetic, aggressive and the recording is noisy and in mono.", "data_idx": 3031, "number": 1, "label": "metal"} +{"file_name": "test_04854.png", "caption": "The low quality recording features a live performance of a hard rock song that consists of punchy kick and snare hits, energetic cymbals, distorted bass guitar and aggressive electric guitar riffs. There are some crowd cheering sounds in the background. It sounds energetic, aggressive and the recording is noisy and in mono.", "data_idx": 3031, "number": 2, "label": "metal"} +{"file_name": "test_04855.png", "caption": "The low quality recording features a live performance of a hard rock song that consists of punchy kick and snare hits, energetic cymbals, distorted bass guitar and aggressive electric guitar riffs. There are some crowd cheering sounds in the background. It sounds energetic, aggressive and the recording is noisy and in mono.", "data_idx": 3031, "number": 3, "label": "metal"} +{"file_name": "test_04856.png", "caption": "This is a cinematic orchestral piece which feels victorious and announces an important moment. There is narration over the music. The instruments are violins and brass instruments. There is a rapid and light flute melody at the end.", "data_idx": 3035, "number": 0, "label": "blues"} +{"file_name": "test_04857.png", "caption": "This is a cinematic orchestral piece which feels victorious and announces an important moment. There is narration over the music. The instruments are violins and brass instruments. There is a rapid and light flute melody at the end.", "data_idx": 3035, "number": 1, "label": "blues"} +{"file_name": "test_04858.png", "caption": "This is a cinematic orchestral piece which feels victorious and announces an important moment. There is narration over the music. The instruments are violins and brass instruments. There is a rapid and light flute melody at the end.", "data_idx": 3035, "number": 2, "label": "blues"} +{"file_name": "test_04859.png", "caption": "This is a cinematic orchestral piece which feels victorious and announces an important moment. There is narration over the music. The instruments are violins and brass instruments. There is a rapid and light flute melody at the end.", "data_idx": 3035, "number": 3, "label": "blues"} +{"file_name": "test_04860.png", "caption": "This is a heavy metal piece from a video game soundtrack. There is a female vocalist singing melodically in the French language. The melodic background consists of the electric guitar, the keyboard and the bass guitar. In the rhythmic background there is an upbeat electronic drum sound. There is a gothic feel to the piece. This piece could work well in the soundtrack of a historical horror movie that takes place in France.", "data_idx": 3036, "number": 0, "label": "metal"} +{"file_name": "test_04861.png", "caption": "This is a heavy metal piece from a video game soundtrack. There is a female vocalist singing melodically in the French language. The melodic background consists of the electric guitar, the keyboard and the bass guitar. In the rhythmic background there is an upbeat electronic drum sound. There is a gothic feel to the piece. This piece could work well in the soundtrack of a historical horror movie that takes place in France.", "data_idx": 3036, "number": 1, "label": "metal"} +{"file_name": "test_04862.png", "caption": "This is a heavy metal piece from a video game soundtrack. There is a female vocalist singing melodically in the French language. The melodic background consists of the electric guitar, the keyboard and the bass guitar. In the rhythmic background there is an upbeat electronic drum sound. There is a gothic feel to the piece. This piece could work well in the soundtrack of a historical horror movie that takes place in France.", "data_idx": 3036, "number": 2, "label": "metal"} +{"file_name": "test_04863.png", "caption": "This is a heavy metal piece from a video game soundtrack. There is a female vocalist singing melodically in the French language. The melodic background consists of the electric guitar, the keyboard and the bass guitar. In the rhythmic background there is an upbeat electronic drum sound. There is a gothic feel to the piece. This piece could work well in the soundtrack of a historical horror movie that takes place in France.", "data_idx": 3036, "number": 3, "label": "metal"} +{"file_name": "test_04864.png", "caption": "The low quality recording features a smooth bass, electric guitar melody, synth pad chords and mellow piano chords playing. It sounds soft, mellow and easygoing.", "data_idx": 3042, "number": 0, "label": "jazz"} +{"file_name": "test_04865.png", "caption": "The low quality recording features a smooth bass, electric guitar melody, synth pad chords and mellow piano chords playing. It sounds soft, mellow and easygoing.", "data_idx": 3042, "number": 1, "label": "jazz"} +{"file_name": "test_04866.png", "caption": "The low quality recording features a smooth bass, electric guitar melody, synth pad chords and mellow piano chords playing. It sounds soft, mellow and easygoing.", "data_idx": 3042, "number": 2, "label": "jazz"} +{"file_name": "test_04867.png", "caption": "The low quality recording features a smooth bass, electric guitar melody, synth pad chords and mellow piano chords playing. It sounds soft, mellow and easygoing.", "data_idx": 3042, "number": 3, "label": "jazz"} +{"file_name": "test_04868.png", "caption": "This music is a mellow instrumental. The tempo is medium with a passionate violin harmony and a simple, sharp piano melody with intense bass lines. The overall mood of the music is deep, sad, lonely, melancholic, nostalgic and poignant and yet beautiful and pleasant.", "data_idx": 3045, "number": 0, "label": "blues"} +{"file_name": "test_04869.png", "caption": "This music is a mellow instrumental. The tempo is medium with a passionate violin harmony and a simple, sharp piano melody with intense bass lines. The overall mood of the music is deep, sad, lonely, melancholic, nostalgic and poignant and yet beautiful and pleasant.", "data_idx": 3045, "number": 1, "label": "blues"} +{"file_name": "test_04870.png", "caption": "This music is a mellow instrumental. The tempo is medium with a passionate violin harmony and a simple, sharp piano melody with intense bass lines. The overall mood of the music is deep, sad, lonely, melancholic, nostalgic and poignant and yet beautiful and pleasant.", "data_idx": 3045, "number": 2, "label": "blues"} +{"file_name": "test_04871.png", "caption": "This music is a mellow instrumental. The tempo is medium with a passionate violin harmony and a simple, sharp piano melody with intense bass lines. The overall mood of the music is deep, sad, lonely, melancholic, nostalgic and poignant and yet beautiful and pleasant.", "data_idx": 3045, "number": 3, "label": "blues"} +{"file_name": "test_04872.png", "caption": "First, we have a bass intro that is played on the upright bass - it lasts for around five seconds. And then we heard some women speaking in Spanish while there was the sound of a liquid splashing in the background. There is then an American man who speaks. Part of this clip was recorded live and then the narration dubbed over it.", "data_idx": 3046, "number": 0, "label": "hiphop"} +{"file_name": "test_04873.png", "caption": "First, we have a bass intro that is played on the upright bass - it lasts for around five seconds. And then we heard some women speaking in Spanish while there was the sound of a liquid splashing in the background. There is then an American man who speaks. Part of this clip was recorded live and then the narration dubbed over it.", "data_idx": 3046, "number": 1, "label": "hiphop"} +{"file_name": "test_04874.png", "caption": "Instrumental music featuring dense synthesizers and bell sounds. Ethereal music with 80's style synthesis.", "data_idx": 3048, "number": 0, "label": "classical"} +{"file_name": "test_04875.png", "caption": "Instrumental music featuring dense synthesizers and bell sounds. Ethereal music with 80's style synthesis.", "data_idx": 3048, "number": 1, "label": "classical"} +{"file_name": "test_04876.png", "caption": "Instrumental music featuring dense synthesizers and bell sounds. Ethereal music with 80's style synthesis.", "data_idx": 3048, "number": 2, "label": "classical"} +{"file_name": "test_04877.png", "caption": "Instrumental music featuring dense synthesizers and bell sounds. Ethereal music with 80's style synthesis.", "data_idx": 3048, "number": 3, "label": "classical"} +{"file_name": "test_04878.png", "caption": "This song contains two different e-pianos playing melodies panned to the left and right side of the speakers. Two synthesizers are playing a tone that sounds like pulsating electricity and the other one a pad sound in a higher key. A e-bassline is playing together with the acoustic drum that is holding a steady groove without many changes. On top of that a male voice is singing in a higher key. This song may be playing while dancing.", "data_idx": 3049, "number": 0, "label": "rock"} +{"file_name": "test_04879.png", "caption": "This song contains two different e-pianos playing melodies panned to the left and right side of the speakers. Two synthesizers are playing a tone that sounds like pulsating electricity and the other one a pad sound in a higher key. A e-bassline is playing together with the acoustic drum that is holding a steady groove without many changes. On top of that a male voice is singing in a higher key. This song may be playing while dancing.", "data_idx": 3049, "number": 1, "label": "rock"} +{"file_name": "test_04880.png", "caption": "This country song features a female voice singing the main melody. Another female voice sings backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat in common time. A guitar strums chords. The bass plays the root notes of the chords. After the voices pause, a guitar solo is played in a repetitive pattern. The mood of this song is romantic. Other instruments cannot be heard due to low quality of audio. This song can be played in a romantic movie.", "data_idx": 3052, "number": 0, "label": "rock"} +{"file_name": "test_04881.png", "caption": "This country song features a female voice singing the main melody. Another female voice sings backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat in common time. A guitar strums chords. The bass plays the root notes of the chords. After the voices pause, a guitar solo is played in a repetitive pattern. The mood of this song is romantic. Other instruments cannot be heard due to low quality of audio. This song can be played in a romantic movie.", "data_idx": 3052, "number": 1, "label": "rock"} +{"file_name": "test_04882.png", "caption": "This country song features a female voice singing the main melody. Another female voice sings backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat in common time. A guitar strums chords. The bass plays the root notes of the chords. After the voices pause, a guitar solo is played in a repetitive pattern. The mood of this song is romantic. Other instruments cannot be heard due to low quality of audio. This song can be played in a romantic movie.", "data_idx": 3052, "number": 2, "label": "rock"} +{"file_name": "test_04883.png", "caption": "This country song features a female voice singing the main melody. Another female voice sings backing vocals in harmony with the main voice. This is accompanied by percussion playing a simple beat in common time. A guitar strums chords. The bass plays the root notes of the chords. After the voices pause, a guitar solo is played in a repetitive pattern. The mood of this song is romantic. Other instruments cannot be heard due to low quality of audio. This song can be played in a romantic movie.", "data_idx": 3052, "number": 3, "label": "rock"} +{"file_name": "test_04884.png", "caption": "The Ambient song features wide synth pad chords, mellow piano melody and some sea waves sounds. It sounds relaxing and calming, like something you would hear in yoga sessions.", "data_idx": 3055, "number": 0, "label": "classical"} +{"file_name": "test_04885.png", "caption": "The Ambient song features wide synth pad chords, mellow piano melody and some sea waves sounds. It sounds relaxing and calming, like something you would hear in yoga sessions.", "data_idx": 3055, "number": 1, "label": "classical"} +{"file_name": "test_04886.png", "caption": "The Ambient song features wide synth pad chords, mellow piano melody and some sea waves sounds. It sounds relaxing and calming, like something you would hear in yoga sessions.", "data_idx": 3055, "number": 2, "label": "classical"} +{"file_name": "test_04887.png", "caption": "The Ambient song features wide synth pad chords, mellow piano melody and some sea waves sounds. It sounds relaxing and calming, like something you would hear in yoga sessions.", "data_idx": 3055, "number": 3, "label": "classical"} +{"file_name": "test_04888.png", "caption": "This music is instrumental. The tempo is fast with incoherent music playing loudly with the sound of a vinyl record being scratched on a turntable. There are ambient sounds of people talking, hooting and cheering. This music is a DJ live in action.", "data_idx": 3057, "number": 0, "label": "hiphop"} +{"file_name": "test_04889.png", "caption": "This music is instrumental. The tempo is fast with incoherent music playing loudly with the sound of a vinyl record being scratched on a turntable. There are ambient sounds of people talking, hooting and cheering. This music is a DJ live in action.", "data_idx": 3057, "number": 1, "label": "hiphop"} +{"file_name": "test_04890.png", "caption": "This music is instrumental. The tempo is fast with incoherent music playing loudly with the sound of a vinyl record being scratched on a turntable. There are ambient sounds of people talking, hooting and cheering. This music is a DJ live in action.", "data_idx": 3057, "number": 2, "label": "hiphop"} +{"file_name": "test_04891.png", "caption": "This music is instrumental. The tempo is fast with incoherent music playing loudly with the sound of a vinyl record being scratched on a turntable. There are ambient sounds of people talking, hooting and cheering. This music is a DJ live in action.", "data_idx": 3057, "number": 3, "label": "hiphop"} +{"file_name": "test_04892.png", "caption": "The low quality recording features a short snippet of flat male vocal talking, while in the background an orchestral music is playing. The music contains sustained brass melody, wide huge percussion and sustained strings melody. It sounds powerful and epic.", "data_idx": 3059, "number": 0, "label": "country"} +{"file_name": "test_04893.png", "caption": "The low quality recording features a short snippet of flat male vocal talking, while in the background an orchestral music is playing. The music contains sustained brass melody, wide huge percussion and sustained strings melody. It sounds powerful and epic.", "data_idx": 3059, "number": 1, "label": "country"} +{"file_name": "test_04894.png", "caption": "The low quality recording features a short snippet of flat male vocal talking, while in the background an orchestral music is playing. The music contains sustained brass melody, wide huge percussion and sustained strings melody. It sounds powerful and epic.", "data_idx": 3059, "number": 2, "label": "country"} +{"file_name": "test_04895.png", "caption": "The low quality recording features a short snippet of flat male vocal talking, while in the background an orchestral music is playing. The music contains sustained brass melody, wide huge percussion and sustained strings melody. It sounds powerful and epic.", "data_idx": 3059, "number": 3, "label": "country"} +{"file_name": "test_04896.png", "caption": "This song features a solo played on a pedal steel guitar. This is a country blues melody. This involves slides on the guitar. This is accompanied by percussion playing a simple beat in common time. The bass plays 12 bar blues style bassline. An organ outlines chords in the background. This is an instrumental song. There are no voices. This song can be played in a bar.", "data_idx": 3060, "number": 0, "label": "rock"} +{"file_name": "test_04897.png", "caption": "This song features a solo played on a pedal steel guitar. This is a country blues melody. This involves slides on the guitar. This is accompanied by percussion playing a simple beat in common time. The bass plays 12 bar blues style bassline. An organ outlines chords in the background. This is an instrumental song. There are no voices. This song can be played in a bar.", "data_idx": 3060, "number": 1, "label": "rock"} +{"file_name": "test_04898.png", "caption": "The song is an instrumental. The tempo is variable with two different soundtracks with snare play, sitar accompaniment, techno drumming and keyboard accompaniment. The song is a techno dance rhythm. The audio has average audio quality.", "data_idx": 3062, "number": 0, "label": "hiphop"} +{"file_name": "test_04899.png", "caption": "The song is an instrumental. The tempo is variable with two different soundtracks with snare play, sitar accompaniment, techno drumming and keyboard accompaniment. The song is a techno dance rhythm. The audio has average audio quality.", "data_idx": 3062, "number": 1, "label": "hiphop"} +{"file_name": "test_04900.png", "caption": "The song is an instrumental. The tempo is variable with two different soundtracks with snare play, sitar accompaniment, techno drumming and keyboard accompaniment. The song is a techno dance rhythm. The audio has average audio quality.", "data_idx": 3062, "number": 2, "label": "hiphop"} +{"file_name": "test_04901.png", "caption": "The song is an instrumental. The tempo is variable with two different soundtracks with snare play, sitar accompaniment, techno drumming and keyboard accompaniment. The song is a techno dance rhythm. The audio has average audio quality.", "data_idx": 3062, "number": 3, "label": "hiphop"} +{"file_name": "test_04902.png", "caption": "The low quality recording features a live performance of a metal song that consists of manic drums played over aggressive electric guitar melodies and distorted bass guitar. The drums consist of a punchy double pedal kick, punchy snare hits and energetic cymbals. There are some crowd cheering sounds in the background. It sounds aggressive, and energetic overall.", "data_idx": 3067, "number": 0, "label": "metal"} +{"file_name": "test_04903.png", "caption": "The low quality recording features a live performance of a metal song that consists of manic drums played over aggressive electric guitar melodies and distorted bass guitar. The drums consist of a punchy double pedal kick, punchy snare hits and energetic cymbals. There are some crowd cheering sounds in the background. It sounds aggressive, and energetic overall.", "data_idx": 3067, "number": 1, "label": "metal"} +{"file_name": "test_04904.png", "caption": "The low quality recording features a live performance of a metal song that consists of manic drums played over aggressive electric guitar melodies and distorted bass guitar. The drums consist of a punchy double pedal kick, punchy snare hits and energetic cymbals. There are some crowd cheering sounds in the background. It sounds aggressive, and energetic overall.", "data_idx": 3067, "number": 2, "label": "metal"} +{"file_name": "test_04905.png", "caption": "The low quality recording features a live performance of a metal song that consists of manic drums played over aggressive electric guitar melodies and distorted bass guitar. The drums consist of a punchy double pedal kick, punchy snare hits and energetic cymbals. There are some crowd cheering sounds in the background. It sounds aggressive, and energetic overall.", "data_idx": 3067, "number": 3, "label": "metal"} +{"file_name": "test_04906.png", "caption": "The low quality recording features a live performance of a traditional song and it contains wooden percussion, violin melody and flute melody. It sounds soulful, passionate and the recording is noisy and in mono.", "data_idx": 3069, "number": 0, "label": "classical"} +{"file_name": "test_04907.png", "caption": "The low quality recording features a live performance of a traditional song and it contains wooden percussion, violin melody and flute melody. It sounds soulful, passionate and the recording is noisy and in mono.", "data_idx": 3069, "number": 1, "label": "classical"} +{"file_name": "test_04908.png", "caption": "The low quality recording features a live performance of a traditional song and it contains wooden percussion, violin melody and flute melody. It sounds soulful, passionate and the recording is noisy and in mono.", "data_idx": 3069, "number": 2, "label": "classical"} +{"file_name": "test_04909.png", "caption": "The low quality recording features a live performance of a traditional song and it contains wooden percussion, violin melody and flute melody. It sounds soulful, passionate and the recording is noisy and in mono.", "data_idx": 3069, "number": 3, "label": "classical"} +{"file_name": "test_04910.png", "caption": "This is a movie music piece. The theme is being played by an orchestra. There is a wide array of cinematic strings playing a gentle yet profound tune. The atmosphere is heart-touching. It could be used in the soundtrack of a drama movie at a scene where the characters are reminiscing the good memories they experienced with a character that has passed away.", "data_idx": 3070, "number": 0, "label": "classical"} +{"file_name": "test_04911.png", "caption": "This is a movie music piece. The theme is being played by an orchestra. There is a wide array of cinematic strings playing a gentle yet profound tune. The atmosphere is heart-touching. It could be used in the soundtrack of a drama movie at a scene where the characters are reminiscing the good memories they experienced with a character that has passed away.", "data_idx": 3070, "number": 1, "label": "classical"} +{"file_name": "test_04912.png", "caption": "This is a movie music piece. The theme is being played by an orchestra. There is a wide array of cinematic strings playing a gentle yet profound tune. The atmosphere is heart-touching. It could be used in the soundtrack of a drama movie at a scene where the characters are reminiscing the good memories they experienced with a character that has passed away.", "data_idx": 3070, "number": 2, "label": "classical"} +{"file_name": "test_04913.png", "caption": "This is a movie music piece. The theme is being played by an orchestra. There is a wide array of cinematic strings playing a gentle yet profound tune. The atmosphere is heart-touching. It could be used in the soundtrack of a drama movie at a scene where the characters are reminiscing the good memories they experienced with a character that has passed away.", "data_idx": 3070, "number": 3, "label": "classical"} +{"file_name": "test_04914.png", "caption": "This song features a variety of choral voices singing different notes in harmony. This could also possibly be synth sounds programmed to have choral voices. This song can be played in a spa or meditation centre. This song is played at a slow tempo using only oohs and aahs.", "data_idx": 3071, "number": 0, "label": "classical"} +{"file_name": "test_04915.png", "caption": "This song features a variety of choral voices singing different notes in harmony. This could also possibly be synth sounds programmed to have choral voices. This song can be played in a spa or meditation centre. This song is played at a slow tempo using only oohs and aahs.", "data_idx": 3071, "number": 1, "label": "classical"} +{"file_name": "test_04916.png", "caption": "This is a classical music piece. It is an instrumental piece. There is a violin playing a melancholic tune. The atmosphere is suspenseful. The quality of the recording is slightly poor. This piece could suit well during a mysterious sequence in a thriller movie.", "data_idx": 3072, "number": 0, "label": "classical"} +{"file_name": "test_04917.png", "caption": "This is a classical music piece. It is an instrumental piece. There is a violin playing a melancholic tune. The atmosphere is suspenseful. The quality of the recording is slightly poor. This piece could suit well during a mysterious sequence in a thriller movie.", "data_idx": 3072, "number": 1, "label": "classical"} +{"file_name": "test_04918.png", "caption": "This is a classical music piece. It is an instrumental piece. There is a violin playing a melancholic tune. The atmosphere is suspenseful. The quality of the recording is slightly poor. This piece could suit well during a mysterious sequence in a thriller movie.", "data_idx": 3072, "number": 2, "label": "classical"} +{"file_name": "test_04919.png", "caption": "This is a classical music piece. It is an instrumental piece. There is a violin playing a melancholic tune. The atmosphere is suspenseful. The quality of the recording is slightly poor. This piece could suit well during a mysterious sequence in a thriller movie.", "data_idx": 3072, "number": 3, "label": "classical"} +{"file_name": "test_04920.png", "caption": "This music is instrumental. The tempo is fast with lively percussion rhythms of the drums, cymbal riffs, congas, bongos, steel pan and piano accompaniment. The music is lively, spirited, engaging, funky, groovy and buoyant. This music is a percussive instrumental.", "data_idx": 3074, "number": 0, "label": "blues"} +{"file_name": "test_04921.png", "caption": "This music is instrumental. The tempo is fast with lively percussion rhythms of the drums, cymbal riffs, congas, bongos, steel pan and piano accompaniment. The music is lively, spirited, engaging, funky, groovy and buoyant. This music is a percussive instrumental.", "data_idx": 3074, "number": 1, "label": "blues"} +{"file_name": "test_04922.png", "caption": "This music is instrumental. The tempo is fast with lively percussion rhythms of the drums, cymbal riffs, congas, bongos, steel pan and piano accompaniment. The music is lively, spirited, engaging, funky, groovy and buoyant. This music is a percussive instrumental.", "data_idx": 3074, "number": 2, "label": "blues"} +{"file_name": "test_04923.png", "caption": "This music is instrumental. The tempo is fast with lively percussion rhythms of the drums, cymbal riffs, congas, bongos, steel pan and piano accompaniment. The music is lively, spirited, engaging, funky, groovy and buoyant. This music is a percussive instrumental.", "data_idx": 3074, "number": 3, "label": "blues"} +{"file_name": "test_04924.png", "caption": "The low quality recording features a passionate female vocalist singing over dissonant brass stabs, groovy bass, wooden snare hits, synth pad chords, punchy kicks and shimmering hi-hats. It sounds groovy and passionate.", "data_idx": 3075, "number": 0, "label": "disco"} +{"file_name": "test_04925.png", "caption": "The low quality recording features a passionate female vocalist singing over dissonant brass stabs, groovy bass, wooden snare hits, synth pad chords, punchy kicks and shimmering hi-hats. It sounds groovy and passionate.", "data_idx": 3075, "number": 1, "label": "disco"} +{"file_name": "test_04926.png", "caption": "The low quality recording features a passionate female vocalist singing over dissonant brass stabs, groovy bass, wooden snare hits, synth pad chords, punchy kicks and shimmering hi-hats. It sounds groovy and passionate.", "data_idx": 3075, "number": 2, "label": "disco"} +{"file_name": "test_04927.png", "caption": "The low quality recording features a passionate female vocalist singing over dissonant brass stabs, groovy bass, wooden snare hits, synth pad chords, punchy kicks and shimmering hi-hats. It sounds groovy and passionate.", "data_idx": 3075, "number": 3, "label": "disco"} +{"file_name": "test_04928.png", "caption": "This audio contains a female choir singing a melody in harmony and acapella. Rising and falling in dynamics. This song may be playing live as a performance.", "data_idx": 3077, "number": 0, "label": "classical"} +{"file_name": "test_04929.png", "caption": "This audio contains a female choir singing a melody in harmony and acapella. Rising and falling in dynamics. This song may be playing live as a performance.", "data_idx": 3077, "number": 1, "label": "classical"} +{"file_name": "test_04930.png", "caption": "This audio contains a female choir singing a melody in harmony and acapella. Rising and falling in dynamics. This song may be playing live as a performance.", "data_idx": 3077, "number": 2, "label": "classical"} +{"file_name": "test_04931.png", "caption": "This audio contains a female choir singing a melody in harmony and acapella. Rising and falling in dynamics. This song may be playing live as a performance.", "data_idx": 3077, "number": 3, "label": "classical"} +{"file_name": "test_04932.png", "caption": "Solo electric bass playing a scale passage in free time with a male singer singing along in unison two octaves up.", "data_idx": 3079, "number": 0, "label": "blues"} +{"file_name": "test_04933.png", "caption": "Solo electric bass playing a scale passage in free time with a male singer singing along in unison two octaves up.", "data_idx": 3079, "number": 1, "label": "blues"} +{"file_name": "test_04934.png", "caption": "Solo electric bass playing a scale passage in free time with a male singer singing along in unison two octaves up.", "data_idx": 3079, "number": 2, "label": "blues"} +{"file_name": "test_04935.png", "caption": "Solo electric bass playing a scale passage in free time with a male singer singing along in unison two octaves up.", "data_idx": 3079, "number": 3, "label": "blues"} +{"file_name": "test_04936.png", "caption": "This is the recording of a drum solo performance. The drummer is performing various complex beats and chops with a rapid procession on an acoustic drum kit. There is a tambourine placed on the snare drum that rattles with every stroke. The atmosphere of the solo is energetic. Parts of this solo could be sampled to be used as intro jingles for music channels. These samples could also be used in beat-making.", "data_idx": 3081, "number": 0, "label": "hiphop"} +{"file_name": "test_04937.png", "caption": "This is the recording of a drum solo performance. The drummer is performing various complex beats and chops with a rapid procession on an acoustic drum kit. There is a tambourine placed on the snare drum that rattles with every stroke. The atmosphere of the solo is energetic. Parts of this solo could be sampled to be used as intro jingles for music channels. These samples could also be used in beat-making.", "data_idx": 3081, "number": 1, "label": "hiphop"} +{"file_name": "test_04938.png", "caption": "This is the recording of a drum solo performance. The drummer is performing various complex beats and chops with a rapid procession on an acoustic drum kit. There is a tambourine placed on the snare drum that rattles with every stroke. The atmosphere of the solo is energetic. Parts of this solo could be sampled to be used as intro jingles for music channels. These samples could also be used in beat-making.", "data_idx": 3081, "number": 2, "label": "hiphop"} +{"file_name": "test_04939.png", "caption": "This is the recording of a drum solo performance. The drummer is performing various complex beats and chops with a rapid procession on an acoustic drum kit. There is a tambourine placed on the snare drum that rattles with every stroke. The atmosphere of the solo is energetic. Parts of this solo could be sampled to be used as intro jingles for music channels. These samples could also be used in beat-making.", "data_idx": 3081, "number": 3, "label": "hiphop"} +{"file_name": "test_04940.png", "caption": "This music is a Jazz instrumental. The tempo is medium with a groovy bass one, smooth harmony on acoustic guitar and rim shots.The music is smooth, lively, informal, chill, ambient and atmospheric with the sound of musicians talking to each other.", "data_idx": 3084, "number": 0, "label": "hiphop"} +{"file_name": "test_04941.png", "caption": "This music is a Jazz instrumental. The tempo is medium with a groovy bass one, smooth harmony on acoustic guitar and rim shots.The music is smooth, lively, informal, chill, ambient and atmospheric with the sound of musicians talking to each other.", "data_idx": 3084, "number": 1, "label": "hiphop"} +{"file_name": "test_04942.png", "caption": "This music is a Jazz instrumental. The tempo is medium with a groovy bass one, smooth harmony on acoustic guitar and rim shots.The music is smooth, lively, informal, chill, ambient and atmospheric with the sound of musicians talking to each other.", "data_idx": 3084, "number": 2, "label": "hiphop"} +{"file_name": "test_04943.png", "caption": "This music is a Jazz instrumental. The tempo is medium with a groovy bass one, smooth harmony on acoustic guitar and rim shots.The music is smooth, lively, informal, chill, ambient and atmospheric with the sound of musicians talking to each other.", "data_idx": 3084, "number": 3, "label": "hiphop"} +{"file_name": "test_04944.png", "caption": "This composition contains a horn playing a melody with reverb on it. Then a string section comes in playing a soothing melody rising and falling in pitch. You can hear some digital clicking sounds that seem not to belong to the musical composition. This song may be playing in a fantasy adventure video-game.", "data_idx": 3085, "number": 0, "label": "classical"} +{"file_name": "test_04945.png", "caption": "This composition contains a horn playing a melody with reverb on it. Then a string section comes in playing a soothing melody rising and falling in pitch. You can hear some digital clicking sounds that seem not to belong to the musical composition. This song may be playing in a fantasy adventure video-game.", "data_idx": 3085, "number": 1, "label": "classical"} +{"file_name": "test_04946.png", "caption": "This dance song features a female voice singing the main melody. A delay effect is added to the voice which allows the last word to echo a few times. This is accompanied by programmed percussion playing a kick driven beat. A warbling sound is played in the background. A synth plays a leading riff in the foreground. This song is upbeat and can be played in a club.", "data_idx": 3086, "number": 0, "label": "pop"} +{"file_name": "test_04947.png", "caption": "This dance song features a female voice singing the main melody. A delay effect is added to the voice which allows the last word to echo a few times. This is accompanied by programmed percussion playing a kick driven beat. A warbling sound is played in the background. A synth plays a leading riff in the foreground. This song is upbeat and can be played in a club.", "data_idx": 3086, "number": 1, "label": "pop"} +{"file_name": "test_04948.png", "caption": "This dance song features a female voice singing the main melody. A delay effect is added to the voice which allows the last word to echo a few times. This is accompanied by programmed percussion playing a kick driven beat. A warbling sound is played in the background. A synth plays a leading riff in the foreground. This song is upbeat and can be played in a club.", "data_idx": 3086, "number": 2, "label": "pop"} +{"file_name": "test_04949.png", "caption": "This dance song features a female voice singing the main melody. A delay effect is added to the voice which allows the last word to echo a few times. This is accompanied by programmed percussion playing a kick driven beat. A warbling sound is played in the background. A synth plays a leading riff in the foreground. This song is upbeat and can be played in a club.", "data_idx": 3086, "number": 3, "label": "pop"} +{"file_name": "test_04950.png", "caption": "This music is instrumental. The tempo is slow with an emphatic violin harmony, keyboard accompaniment and rhythmic acoustic guitar with female vocalisation. The song is romantic, sentimental, emotional, nostalgic, poignant, charming, dreamy and soft.", "data_idx": 3088, "number": 0, "label": "country"} +{"file_name": "test_04951.png", "caption": "This music is instrumental. The tempo is slow with an emphatic violin harmony, keyboard accompaniment and rhythmic acoustic guitar with female vocalisation. The song is romantic, sentimental, emotional, nostalgic, poignant, charming, dreamy and soft.", "data_idx": 3088, "number": 1, "label": "country"} +{"file_name": "test_04952.png", "caption": "This music is instrumental. The tempo is slow with an emphatic violin harmony, keyboard accompaniment and rhythmic acoustic guitar with female vocalisation. The song is romantic, sentimental, emotional, nostalgic, poignant, charming, dreamy and soft.", "data_idx": 3088, "number": 2, "label": "country"} +{"file_name": "test_04953.png", "caption": "This music is instrumental. The tempo is slow with an emphatic violin harmony, keyboard accompaniment and rhythmic acoustic guitar with female vocalisation. The song is romantic, sentimental, emotional, nostalgic, poignant, charming, dreamy and soft.", "data_idx": 3088, "number": 3, "label": "country"} +{"file_name": "test_04954.png", "caption": "The low quality recording features an ambient song that consists of a mellow piano melody, short plucked melody and wide synth pad. It sounds calming and relaxing.", "data_idx": 3092, "number": 0, "label": "classical"} +{"file_name": "test_04955.png", "caption": "The low quality recording features an ambient song that consists of a mellow piano melody, short plucked melody and wide synth pad. It sounds calming and relaxing.", "data_idx": 3092, "number": 1, "label": "classical"} +{"file_name": "test_04956.png", "caption": "The low quality recording features an ambient song that consists of a mellow piano melody, short plucked melody and wide synth pad. It sounds calming and relaxing.", "data_idx": 3092, "number": 2, "label": "classical"} +{"file_name": "test_04957.png", "caption": "The low quality recording features an ambient song that consists of a mellow piano melody, short plucked melody and wide synth pad. It sounds calming and relaxing.", "data_idx": 3092, "number": 3, "label": "classical"} +{"file_name": "test_04958.png", "caption": "This gothic rock song features a male voice singing the main melody. The melody is repetitive for each line. This is accompanied by percussion playing a simple rock beat in common time. A distortion guitar plays power chords. A synth plays a high pitched repetitive melody. This song has a suspenseful feel. This song can be played in a horror movie.", "data_idx": 3093, "number": 0, "label": "metal"} +{"file_name": "test_04959.png", "caption": "This gothic rock song features a male voice singing the main melody. The melody is repetitive for each line. This is accompanied by percussion playing a simple rock beat in common time. A distortion guitar plays power chords. A synth plays a high pitched repetitive melody. This song has a suspenseful feel. This song can be played in a horror movie.", "data_idx": 3093, "number": 1, "label": "metal"} +{"file_name": "test_04960.png", "caption": "This gothic rock song features a male voice singing the main melody. The melody is repetitive for each line. This is accompanied by percussion playing a simple rock beat in common time. A distortion guitar plays power chords. A synth plays a high pitched repetitive melody. This song has a suspenseful feel. This song can be played in a horror movie.", "data_idx": 3093, "number": 2, "label": "metal"} +{"file_name": "test_04961.png", "caption": "This gothic rock song features a male voice singing the main melody. The melody is repetitive for each line. This is accompanied by percussion playing a simple rock beat in common time. A distortion guitar plays power chords. A synth plays a high pitched repetitive melody. This song has a suspenseful feel. This song can be played in a horror movie.", "data_idx": 3093, "number": 3, "label": "metal"} +{"file_name": "test_04962.png", "caption": "This is a live performance of a classical music piece from the impressionist school. It is being performed by a string quartet of two violins, one viola and one cello. The quartet is playing a dramatic tune. The atmosphere is gloomy. This piece could be used in the soundtrack of a drama movie during tragic scenes.", "data_idx": 3094, "number": 0, "label": "classical"} +{"file_name": "test_04963.png", "caption": "This is a live performance of a classical music piece from the impressionist school. It is being performed by a string quartet of two violins, one viola and one cello. The quartet is playing a dramatic tune. The atmosphere is gloomy. This piece could be used in the soundtrack of a drama movie during tragic scenes.", "data_idx": 3094, "number": 1, "label": "classical"} +{"file_name": "test_04964.png", "caption": "The song is an instrumental followed by the DJ talking about his lessons. The tempo is medium with disc scratching, steady drumming rhythm, various clapping percussion, modulated vocal samples, and a percussive bass line. The song is an electronic dance tune.", "data_idx": 3096, "number": 0, "label": "hiphop"} +{"file_name": "test_04965.png", "caption": "The song is an instrumental followed by the DJ talking about his lessons. The tempo is medium with disc scratching, steady drumming rhythm, various clapping percussion, modulated vocal samples, and a percussive bass line. The song is an electronic dance tune.", "data_idx": 3096, "number": 1, "label": "hiphop"} +{"file_name": "test_04966.png", "caption": "The song is an instrumental followed by the DJ talking about his lessons. The tempo is medium with disc scratching, steady drumming rhythm, various clapping percussion, modulated vocal samples, and a percussive bass line. The song is an electronic dance tune.", "data_idx": 3096, "number": 2, "label": "hiphop"} +{"file_name": "test_04967.png", "caption": "The song is an instrumental followed by the DJ talking about his lessons. The tempo is medium with disc scratching, steady drumming rhythm, various clapping percussion, modulated vocal samples, and a percussive bass line. The song is an electronic dance tune.", "data_idx": 3096, "number": 3, "label": "hiphop"} +{"file_name": "test_04968.png", "caption": "This is a live performance of classical music with clear tango influences. The piece is being performed by four different ranges of saxophone: alto, baritone, tenor and soprano. The variety of range using similar characteristics of sound gives the piece a vibrant atmosphere. This piece could be used in the soundtrack of a movie that is about a culture clash situation between North American and Latin American characters.", "data_idx": 3100, "number": 0, "label": "classical"} +{"file_name": "test_04969.png", "caption": "This is a live performance of classical music with clear tango influences. The piece is being performed by four different ranges of saxophone: alto, baritone, tenor and soprano. The variety of range using similar characteristics of sound gives the piece a vibrant atmosphere. This piece could be used in the soundtrack of a movie that is about a culture clash situation between North American and Latin American characters.", "data_idx": 3100, "number": 1, "label": "classical"} +{"file_name": "test_04970.png", "caption": "This is a live performance of classical music with clear tango influences. The piece is being performed by four different ranges of saxophone: alto, baritone, tenor and soprano. The variety of range using similar characteristics of sound gives the piece a vibrant atmosphere. This piece could be used in the soundtrack of a movie that is about a culture clash situation between North American and Latin American characters.", "data_idx": 3100, "number": 2, "label": "classical"} +{"file_name": "test_04971.png", "caption": "This is a live performance of classical music with clear tango influences. The piece is being performed by four different ranges of saxophone: alto, baritone, tenor and soprano. The variety of range using similar characteristics of sound gives the piece a vibrant atmosphere. This piece could be used in the soundtrack of a movie that is about a culture clash situation between North American and Latin American characters.", "data_idx": 3100, "number": 3, "label": "classical"} +{"file_name": "test_04972.png", "caption": "The low quality recording features a bagpipes melody played while soldiers are marching. The recording is noisy, in mono and it sounds prideful, soulful and powerful.", "data_idx": 3102, "number": 0, "label": "classical"} +{"file_name": "test_04973.png", "caption": "The low quality recording features a bagpipes melody played while soldiers are marching. The recording is noisy, in mono and it sounds prideful, soulful and powerful.", "data_idx": 3102, "number": 1, "label": "classical"} +{"file_name": "test_04974.png", "caption": "The low quality recording features a bagpipes melody played while soldiers are marching. The recording is noisy, in mono and it sounds prideful, soulful and powerful.", "data_idx": 3102, "number": 2, "label": "classical"} +{"file_name": "test_04975.png", "caption": "The low quality recording features a bagpipes melody played while soldiers are marching. The recording is noisy, in mono and it sounds prideful, soulful and powerful.", "data_idx": 3102, "number": 3, "label": "classical"} +{"file_name": "test_04976.png", "caption": "The low quality recording features an aggressive harmonica solo playing over a shimmering shaker. There is a low microphone pop sound right before the shimmering shaker comes in. It sounds passionate and energetic. The recording is noisy and in mono.", "data_idx": 3103, "number": 0, "label": "hiphop"} +{"file_name": "test_04977.png", "caption": "The low quality recording features an aggressive harmonica solo playing over a shimmering shaker. There is a low microphone pop sound right before the shimmering shaker comes in. It sounds passionate and energetic. The recording is noisy and in mono.", "data_idx": 3103, "number": 1, "label": "hiphop"} +{"file_name": "test_04978.png", "caption": "The low quality recording features an aggressive harmonica solo playing over a shimmering shaker. There is a low microphone pop sound right before the shimmering shaker comes in. It sounds passionate and energetic. The recording is noisy and in mono.", "data_idx": 3103, "number": 2, "label": "hiphop"} +{"file_name": "test_04979.png", "caption": "The low quality recording features an aggressive harmonica solo playing over a shimmering shaker. There is a low microphone pop sound right before the shimmering shaker comes in. It sounds passionate and energetic. The recording is noisy and in mono.", "data_idx": 3103, "number": 3, "label": "hiphop"} +{"file_name": "test_04980.png", "caption": "The low quality recording features a flat female vocal talking over loud bells, reverberant male vocal talking, water leaking sounds and choir singing. It sounds like a compilation of sounds. The recording is noisy and in mono.", "data_idx": 3104, "number": 0, "label": "country"} +{"file_name": "test_04981.png", "caption": "The low quality recording features a flat female vocal talking over loud bells, reverberant male vocal talking, water leaking sounds and choir singing. It sounds like a compilation of sounds. The recording is noisy and in mono.", "data_idx": 3104, "number": 1, "label": "country"} +{"file_name": "test_04982.png", "caption": "The low quality recording features a flat female vocal talking over loud bells, reverberant male vocal talking, water leaking sounds and choir singing. It sounds like a compilation of sounds. The recording is noisy and in mono.", "data_idx": 3104, "number": 2, "label": "country"} +{"file_name": "test_04983.png", "caption": "The low quality recording features a flat female vocal talking over loud bells, reverberant male vocal talking, water leaking sounds and choir singing. It sounds like a compilation of sounds. The recording is noisy and in mono.", "data_idx": 3104, "number": 3, "label": "country"} +{"file_name": "test_04984.png", "caption": "This is a drum lesson recording. A double stroke roll pattern is being performed on the snare drum of an acoustic drum kit. A metronome click can be heard in the background.", "data_idx": 3105, "number": 0, "label": "hiphop"} +{"file_name": "test_04985.png", "caption": "This is a drum lesson recording. A double stroke roll pattern is being performed on the snare drum of an acoustic drum kit. A metronome click can be heard in the background.", "data_idx": 3105, "number": 1, "label": "hiphop"} +{"file_name": "test_04986.png", "caption": "This is a drum lesson recording. A double stroke roll pattern is being performed on the snare drum of an acoustic drum kit. A metronome click can be heard in the background.", "data_idx": 3105, "number": 2, "label": "hiphop"} +{"file_name": "test_04987.png", "caption": "This is a drum lesson recording. A double stroke roll pattern is being performed on the snare drum of an acoustic drum kit. A metronome click can be heard in the background.", "data_idx": 3105, "number": 3, "label": "hiphop"} +{"file_name": "test_04988.png", "caption": "The low quality recording features a live performance of a pop song that consists of passionate female vocals, alongside background harmonizing vocals, singing over energetic drums, groovy, thin bass, mellow synth pad and addictive synth lead melody. Even though the recording is noisy and in mono, it sounds energetic, happy and fun.", "data_idx": 3106, "number": 0, "label": "rock"} +{"file_name": "test_04989.png", "caption": "The low quality recording features a live performance of a pop song that consists of passionate female vocals, alongside background harmonizing vocals, singing over energetic drums, groovy, thin bass, mellow synth pad and addictive synth lead melody. Even though the recording is noisy and in mono, it sounds energetic, happy and fun.", "data_idx": 3106, "number": 1, "label": "rock"} +{"file_name": "test_04990.png", "caption": "The low quality recording features a live performance of a pop song that consists of passionate female vocals, alongside background harmonizing vocals, singing over energetic drums, groovy, thin bass, mellow synth pad and addictive synth lead melody. Even though the recording is noisy and in mono, it sounds energetic, happy and fun.", "data_idx": 3106, "number": 2, "label": "rock"} +{"file_name": "test_04991.png", "caption": "The low quality recording features a live performance of a pop song that consists of passionate female vocals, alongside background harmonizing vocals, singing over energetic drums, groovy, thin bass, mellow synth pad and addictive synth lead melody. Even though the recording is noisy and in mono, it sounds energetic, happy and fun.", "data_idx": 3106, "number": 3, "label": "rock"} +{"file_name": "test_04992.png", "caption": "This is an Afropop music piece. There is a female vocalist singing melodically. The main tune is being played by the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a slightly slow tempo acoustic drum beat and afro percussive elements. The atmosphere is vibrant and sentimental. This piece can be used as the soundtrack of a drama movie that takes place in Africa.", "data_idx": 3107, "number": 0, "label": "disco"} +{"file_name": "test_04993.png", "caption": "This is an Afropop music piece. There is a female vocalist singing melodically. The main tune is being played by the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a slightly slow tempo acoustic drum beat and afro percussive elements. The atmosphere is vibrant and sentimental. This piece can be used as the soundtrack of a drama movie that takes place in Africa.", "data_idx": 3107, "number": 1, "label": "disco"} +{"file_name": "test_04994.png", "caption": "This is an Afropop music piece. There is a female vocalist singing melodically. The main tune is being played by the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a slightly slow tempo acoustic drum beat and afro percussive elements. The atmosphere is vibrant and sentimental. This piece can be used as the soundtrack of a drama movie that takes place in Africa.", "data_idx": 3107, "number": 2, "label": "disco"} +{"file_name": "test_04995.png", "caption": "This is an Afropop music piece. There is a female vocalist singing melodically. The main tune is being played by the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a slightly slow tempo acoustic drum beat and afro percussive elements. The atmosphere is vibrant and sentimental. This piece can be used as the soundtrack of a drama movie that takes place in Africa.", "data_idx": 3107, "number": 3, "label": "disco"} +{"file_name": "test_04996.png", "caption": "This is a clip featuring a motif from an instrument that sounds a little like a theremin whistle. There is a fuzzy quality to the instrument as well. This song feels like an eighties pop style song.", "data_idx": 3109, "number": 0, "label": "classical"} +{"file_name": "test_04997.png", "caption": "This is a clip featuring a motif from an instrument that sounds a little like a theremin whistle. There is a fuzzy quality to the instrument as well. This song feels like an eighties pop style song.", "data_idx": 3109, "number": 1, "label": "classical"} +{"file_name": "test_04998.png", "caption": "This is a clip featuring a motif from an instrument that sounds a little like a theremin whistle. There is a fuzzy quality to the instrument as well. This song feels like an eighties pop style song.", "data_idx": 3109, "number": 2, "label": "classical"} +{"file_name": "test_04999.png", "caption": "This is a clip featuring a motif from an instrument that sounds a little like a theremin whistle. There is a fuzzy quality to the instrument as well. This song feels like an eighties pop style song.", "data_idx": 3109, "number": 3, "label": "classical"} +{"file_name": "test_05000.png", "caption": "The low quality recording features a harmonizing french horn melody. It sounds passionate and easygoing, while the recording is noisy and in mono.", "data_idx": 3110, "number": 0, "label": "blues"} +{"file_name": "test_05001.png", "caption": "The low quality recording features a harmonizing french horn melody. It sounds passionate and easygoing, while the recording is noisy and in mono.", "data_idx": 3110, "number": 1, "label": "blues"} +{"file_name": "test_05002.png", "caption": "The low quality recording features a harmonizing french horn melody. It sounds passionate and easygoing, while the recording is noisy and in mono.", "data_idx": 3110, "number": 2, "label": "blues"} +{"file_name": "test_05003.png", "caption": "The low quality recording features a harmonizing french horn melody. It sounds passionate and easygoing, while the recording is noisy and in mono.", "data_idx": 3110, "number": 3, "label": "blues"} +{"file_name": "test_05004.png", "caption": "This is a soothing folk pop piece. We hear a violin and a harp as the leading melodic instruments, and the cello and piano as backing. The song is airy and the vocalist has a light and ethereal voice.", "data_idx": 3112, "number": 0, "label": "blues"} +{"file_name": "test_05005.png", "caption": "This is a soothing folk pop piece. We hear a violin and a harp as the leading melodic instruments, and the cello and piano as backing. The song is airy and the vocalist has a light and ethereal voice.", "data_idx": 3112, "number": 1, "label": "blues"} +{"file_name": "test_05006.png", "caption": "This is a soothing folk pop piece. We hear a violin and a harp as the leading melodic instruments, and the cello and piano as backing. The song is airy and the vocalist has a light and ethereal voice.", "data_idx": 3112, "number": 2, "label": "blues"} +{"file_name": "test_05007.png", "caption": "This is a soothing folk pop piece. We hear a violin and a harp as the leading melodic instruments, and the cello and piano as backing. The song is airy and the vocalist has a light and ethereal voice.", "data_idx": 3112, "number": 3, "label": "blues"} +{"file_name": "test_05008.png", "caption": "This song contains someone playing a ukulele fingerstly. This song may be playing live sitting around a bonfire with friends.", "data_idx": 3113, "number": 0, "label": "jazz"} +{"file_name": "test_05009.png", "caption": "This song contains someone playing a ukulele fingerstly. This song may be playing live sitting around a bonfire with friends.", "data_idx": 3113, "number": 1, "label": "jazz"} +{"file_name": "test_05010.png", "caption": "This is an Indian traditional music piece performed live by an orchestra. The orchestra is composed of the bansuri, the sitars and the tabla percussion. There is a vibrant atmosphere in the recording. This piece could be used in the soundtrack of a Bollywood movie.", "data_idx": 3115, "number": 0, "label": "reggae"} +{"file_name": "test_05011.png", "caption": "This is an Indian traditional music piece performed live by an orchestra. The orchestra is composed of the bansuri, the sitars and the tabla percussion. There is a vibrant atmosphere in the recording. This piece could be used in the soundtrack of a Bollywood movie.", "data_idx": 3115, "number": 1, "label": "reggae"} +{"file_name": "test_05012.png", "caption": "This is an Indian traditional music piece performed live by an orchestra. The orchestra is composed of the bansuri, the sitars and the tabla percussion. There is a vibrant atmosphere in the recording. This piece could be used in the soundtrack of a Bollywood movie.", "data_idx": 3115, "number": 2, "label": "reggae"} +{"file_name": "test_05013.png", "caption": "This is an Indian traditional music piece performed live by an orchestra. The orchestra is composed of the bansuri, the sitars and the tabla percussion. There is a vibrant atmosphere in the recording. This piece could be used in the soundtrack of a Bollywood movie.", "data_idx": 3115, "number": 3, "label": "reggae"} +{"file_name": "test_05014.png", "caption": "The low quality recording features a cover of an alternative/indie song that consists of acoustic guitar melody. It sounds groovy and the recording is in mono and noisy.", "data_idx": 3118, "number": 0, "label": "blues"} +{"file_name": "test_05015.png", "caption": "The low quality recording features a cover of an alternative/indie song that consists of acoustic guitar melody. It sounds groovy and the recording is in mono and noisy.", "data_idx": 3118, "number": 1, "label": "blues"} +{"file_name": "test_05016.png", "caption": "The low quality recording features a cover of an alternative/indie song that consists of acoustic guitar melody. It sounds groovy and the recording is in mono and noisy.", "data_idx": 3118, "number": 2, "label": "blues"} +{"file_name": "test_05017.png", "caption": "The low quality recording features a cover of an alternative/indie song that consists of acoustic guitar melody. It sounds groovy and the recording is in mono and noisy.", "data_idx": 3118, "number": 3, "label": "blues"} +{"file_name": "test_05018.png", "caption": "Amateur recording of solo acoustic guitar strumming. Tape hiss, room reverb and unintentional mic clipping is audible throughout.", "data_idx": 3123, "number": 0, "label": "classical"} +{"file_name": "test_05019.png", "caption": "Amateur recording of solo acoustic guitar strumming. Tape hiss, room reverb and unintentional mic clipping is audible throughout.", "data_idx": 3123, "number": 1, "label": "classical"} +{"file_name": "test_05020.png", "caption": "Amateur recording of solo acoustic guitar strumming. Tape hiss, room reverb and unintentional mic clipping is audible throughout.", "data_idx": 3123, "number": 2, "label": "classical"} +{"file_name": "test_05021.png", "caption": "Amateur recording of solo acoustic guitar strumming. Tape hiss, room reverb and unintentional mic clipping is audible throughout.", "data_idx": 3123, "number": 3, "label": "classical"} +{"file_name": "test_05022.png", "caption": "This is a DJ performance recording of two kids scratching a turntable. The turntable is being scratched over a hip-hop breakbeat that consists of a loud electronic drum beat. The atmosphere is danceable and there is an urban sound. This piece could be played at sports venues. It could also be sampled for use in beat-making.", "data_idx": 3128, "number": 0, "label": "disco"} +{"file_name": "test_05023.png", "caption": "This is a DJ performance recording of two kids scratching a turntable. The turntable is being scratched over a hip-hop breakbeat that consists of a loud electronic drum beat. The atmosphere is danceable and there is an urban sound. This piece could be played at sports venues. It could also be sampled for use in beat-making.", "data_idx": 3128, "number": 1, "label": "disco"} +{"file_name": "test_05024.png", "caption": "This is a DJ performance recording of two kids scratching a turntable. The turntable is being scratched over a hip-hop breakbeat that consists of a loud electronic drum beat. The atmosphere is danceable and there is an urban sound. This piece could be played at sports venues. It could also be sampled for use in beat-making.", "data_idx": 3128, "number": 2, "label": "disco"} +{"file_name": "test_05025.png", "caption": "This is a DJ performance recording of two kids scratching a turntable. The turntable is being scratched over a hip-hop breakbeat that consists of a loud electronic drum beat. The atmosphere is danceable and there is an urban sound. This piece could be played at sports venues. It could also be sampled for use in beat-making.", "data_idx": 3128, "number": 3, "label": "disco"} +{"file_name": "test_05026.png", "caption": "The low quality recording features an emotional electric guitar melody. The recording is noisy and in mono as it was probably recorded with a poor quality microphone.", "data_idx": 3130, "number": 0, "label": "classical"} +{"file_name": "test_05027.png", "caption": "The low quality recording features an emotional electric guitar melody. The recording is noisy and in mono as it was probably recorded with a poor quality microphone.", "data_idx": 3130, "number": 1, "label": "classical"} +{"file_name": "test_05028.png", "caption": "The low quality recording features an emotional electric guitar melody. The recording is noisy and in mono as it was probably recorded with a poor quality microphone.", "data_idx": 3130, "number": 2, "label": "classical"} +{"file_name": "test_05029.png", "caption": "The low quality recording features an emotional electric guitar melody. The recording is noisy and in mono as it was probably recorded with a poor quality microphone.", "data_idx": 3130, "number": 3, "label": "classical"} +{"file_name": "test_05030.png", "caption": "The low quality recording features a flat male vocal rapping over sustained strings melody, punchy kick, mellow snare, groovy bass and some commentary that can be heard in the background. It sounds emotional, energetic and the recording is noisy.", "data_idx": 3132, "number": 0, "label": "reggae"} +{"file_name": "test_05031.png", "caption": "The low quality recording features a flat male vocal rapping over sustained strings melody, punchy kick, mellow snare, groovy bass and some commentary that can be heard in the background. It sounds emotional, energetic and the recording is noisy.", "data_idx": 3132, "number": 1, "label": "reggae"} +{"file_name": "test_05032.png", "caption": "The low quality recording features a flat male vocal rapping over sustained strings melody, punchy kick, mellow snare, groovy bass and some commentary that can be heard in the background. It sounds emotional, energetic and the recording is noisy.", "data_idx": 3132, "number": 2, "label": "reggae"} +{"file_name": "test_05033.png", "caption": "The low quality recording features a flat male vocal rapping over sustained strings melody, punchy kick, mellow snare, groovy bass and some commentary that can be heard in the background. It sounds emotional, energetic and the recording is noisy.", "data_idx": 3132, "number": 3, "label": "reggae"} +{"file_name": "test_05034.png", "caption": "This is a big band jazz music piece. It is an accompaniment piece to the Charleston dance. The band consists of a wide range of brass sections, an upright bass, a jazz acoustic drum beat and a vibraphone. Sounds from the cheering crowd can be heard. The atmosphere is lively. The piece is upbeat.", "data_idx": 3134, "number": 0, "label": "reggae"} +{"file_name": "test_05035.png", "caption": "This is a big band jazz music piece. It is an accompaniment piece to the Charleston dance. The band consists of a wide range of brass sections, an upright bass, a jazz acoustic drum beat and a vibraphone. Sounds from the cheering crowd can be heard. The atmosphere is lively. The piece is upbeat.", "data_idx": 3134, "number": 1, "label": "reggae"} +{"file_name": "test_05036.png", "caption": "This is a big band jazz music piece. It is an accompaniment piece to the Charleston dance. The band consists of a wide range of brass sections, an upright bass, a jazz acoustic drum beat and a vibraphone. Sounds from the cheering crowd can be heard. The atmosphere is lively. The piece is upbeat.", "data_idx": 3134, "number": 2, "label": "reggae"} +{"file_name": "test_05037.png", "caption": "This is a big band jazz music piece. It is an accompaniment piece to the Charleston dance. The band consists of a wide range of brass sections, an upright bass, a jazz acoustic drum beat and a vibraphone. Sounds from the cheering crowd can be heard. The atmosphere is lively. The piece is upbeat.", "data_idx": 3134, "number": 3, "label": "reggae"} +{"file_name": "test_05038.png", "caption": "The low quality recording features an acapella cover of a R&B song that consists of flat female vocal singing over hand tapping sounds and snaps. The recording is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3138, "number": 0, "label": "disco"} +{"file_name": "test_05039.png", "caption": "The low quality recording features an acapella cover of a R&B song that consists of flat female vocal singing over hand tapping sounds and snaps. The recording is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3138, "number": 1, "label": "disco"} +{"file_name": "test_05040.png", "caption": "The low quality recording features an acapella cover of a R&B song that consists of flat female vocal singing over hand tapping sounds and snaps. The recording is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3138, "number": 2, "label": "disco"} +{"file_name": "test_05041.png", "caption": "The low quality recording features an acapella cover of a R&B song that consists of flat female vocal singing over hand tapping sounds and snaps. The recording is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3138, "number": 3, "label": "disco"} +{"file_name": "test_05042.png", "caption": "This is a classical music piece from a movie soundtrack. There is a brass section holding a single chord while a saxophone and then a trumpet plays a solo in the lead. The rhythmic background is provided with a crescendo movement played by a timpani. The atmosphere is dramatic. This piece can be used in the soundtrack of a drama movie during scenes of elevated tension.", "data_idx": 3141, "number": 0, "label": "classical"} +{"file_name": "test_05043.png", "caption": "This is a classical music piece from a movie soundtrack. There is a brass section holding a single chord while a saxophone and then a trumpet plays a solo in the lead. The rhythmic background is provided with a crescendo movement played by a timpani. The atmosphere is dramatic. This piece can be used in the soundtrack of a drama movie during scenes of elevated tension.", "data_idx": 3141, "number": 1, "label": "classical"} +{"file_name": "test_05044.png", "caption": "This is a classical music piece from a movie soundtrack. There is a brass section holding a single chord while a saxophone and then a trumpet plays a solo in the lead. The rhythmic background is provided with a crescendo movement played by a timpani. The atmosphere is dramatic. This piece can be used in the soundtrack of a drama movie during scenes of elevated tension.", "data_idx": 3141, "number": 2, "label": "classical"} +{"file_name": "test_05045.png", "caption": "This is a classical music piece from a movie soundtrack. There is a brass section holding a single chord while a saxophone and then a trumpet plays a solo in the lead. The rhythmic background is provided with a crescendo movement played by a timpani. The atmosphere is dramatic. This piece can be used in the soundtrack of a drama movie during scenes of elevated tension.", "data_idx": 3141, "number": 3, "label": "classical"} +{"file_name": "test_05046.png", "caption": "The low quality recording features a rock song that consists of wide electric guitar melodies, groovy bass guitar, shimmering shakers, punchy snare and kick hits, followed by aggressive tom rolls. It sounds energetic and the drums are reverberant, as they were probably recorded in a medium size drum room.", "data_idx": 3146, "number": 0, "label": "rock"} +{"file_name": "test_05047.png", "caption": "The low quality recording features a rock song that consists of wide electric guitar melodies, groovy bass guitar, shimmering shakers, punchy snare and kick hits, followed by aggressive tom rolls. It sounds energetic and the drums are reverberant, as they were probably recorded in a medium size drum room.", "data_idx": 3146, "number": 1, "label": "rock"} +{"file_name": "test_05048.png", "caption": "The low quality recording features a rock song that consists of wide electric guitar melodies, groovy bass guitar, shimmering shakers, punchy snare and kick hits, followed by aggressive tom rolls. It sounds energetic and the drums are reverberant, as they were probably recorded in a medium size drum room.", "data_idx": 3146, "number": 2, "label": "rock"} +{"file_name": "test_05049.png", "caption": "The low quality recording features a rock song that consists of wide electric guitar melodies, groovy bass guitar, shimmering shakers, punchy snare and kick hits, followed by aggressive tom rolls. It sounds energetic and the drums are reverberant, as they were probably recorded in a medium size drum room.", "data_idx": 3146, "number": 3, "label": "rock"} +{"file_name": "test_05050.png", "caption": "This is the recording of a guitar lesson video. There is a male speaking in an instructive manner, giving the name of the chord he is about to play next. The chords are being played gently on a clean sounding electric guitar. There is a mellow feel to the sound. Parts of this recording can be sampled for use in beat-making.", "data_idx": 3148, "number": 0, "label": "blues"} +{"file_name": "test_05051.png", "caption": "This is the recording of a guitar lesson video. There is a male speaking in an instructive manner, giving the name of the chord he is about to play next. The chords are being played gently on a clean sounding electric guitar. There is a mellow feel to the sound. Parts of this recording can be sampled for use in beat-making.", "data_idx": 3148, "number": 1, "label": "blues"} +{"file_name": "test_05052.png", "caption": "This is the recording of a guitar lesson video. There is a male speaking in an instructive manner, giving the name of the chord he is about to play next. The chords are being played gently on a clean sounding electric guitar. There is a mellow feel to the sound. Parts of this recording can be sampled for use in beat-making.", "data_idx": 3148, "number": 2, "label": "blues"} +{"file_name": "test_05053.png", "caption": "This is the recording of a guitar lesson video. There is a male speaking in an instructive manner, giving the name of the chord he is about to play next. The chords are being played gently on a clean sounding electric guitar. There is a mellow feel to the sound. Parts of this recording can be sampled for use in beat-making.", "data_idx": 3148, "number": 3, "label": "blues"} +{"file_name": "test_05054.png", "caption": "This is a pop punk music piece. There is a fast-paced distorted electric guitar playing the main tune. A bass guitar is supporting it in the background. The rhythm is being played by a loud acoustic drum beat. The atmosphere is rebellious and aggressive. This piece could be used in the soundtrack of a high school drama TV series, especially during scenes where acts of delinquency are committed.", "data_idx": 3149, "number": 0, "label": "hiphop"} +{"file_name": "test_05055.png", "caption": "This is a pop punk music piece. There is a fast-paced distorted electric guitar playing the main tune. A bass guitar is supporting it in the background. The rhythm is being played by a loud acoustic drum beat. The atmosphere is rebellious and aggressive. This piece could be used in the soundtrack of a high school drama TV series, especially during scenes where acts of delinquency are committed.", "data_idx": 3149, "number": 1, "label": "hiphop"} +{"file_name": "test_05056.png", "caption": "This is a pop punk music piece. There is a fast-paced distorted electric guitar playing the main tune. A bass guitar is supporting it in the background. The rhythm is being played by a loud acoustic drum beat. The atmosphere is rebellious and aggressive. This piece could be used in the soundtrack of a high school drama TV series, especially during scenes where acts of delinquency are committed.", "data_idx": 3149, "number": 2, "label": "hiphop"} +{"file_name": "test_05057.png", "caption": "This is a pop punk music piece. There is a fast-paced distorted electric guitar playing the main tune. A bass guitar is supporting it in the background. The rhythm is being played by a loud acoustic drum beat. The atmosphere is rebellious and aggressive. This piece could be used in the soundtrack of a high school drama TV series, especially during scenes where acts of delinquency are committed.", "data_idx": 3149, "number": 3, "label": "hiphop"} +{"file_name": "test_05058.png", "caption": "A cello is picking a melody in the lower key serving as bass. Other instruments such as brass and oboes are playing melodies along with a xylophone playing the main melody. Strings in the background elevate some parts of the song. This composition sounds playful and may be playing in a magical fantasy movie.", "data_idx": 3154, "number": 0, "label": "classical"} +{"file_name": "test_05059.png", "caption": "A cello is picking a melody in the lower key serving as bass. Other instruments such as brass and oboes are playing melodies along with a xylophone playing the main melody. Strings in the background elevate some parts of the song. This composition sounds playful and may be playing in a magical fantasy movie.", "data_idx": 3154, "number": 1, "label": "classical"} +{"file_name": "test_05060.png", "caption": "A cello is picking a melody in the lower key serving as bass. Other instruments such as brass and oboes are playing melodies along with a xylophone playing the main melody. Strings in the background elevate some parts of the song. This composition sounds playful and may be playing in a magical fantasy movie.", "data_idx": 3154, "number": 2, "label": "classical"} +{"file_name": "test_05061.png", "caption": "A cello is picking a melody in the lower key serving as bass. Other instruments such as brass and oboes are playing melodies along with a xylophone playing the main melody. Strings in the background elevate some parts of the song. This composition sounds playful and may be playing in a magical fantasy movie.", "data_idx": 3154, "number": 3, "label": "classical"} +{"file_name": "test_05062.png", "caption": "The low quality recording features a flat male vocal singing over tinny wooden percussions, punchy \"4 on the floor\" kick pattern, groovy bass, long crash cymbal, shimmering shakers, syncopated snare hits and electric guitar melody. In the first half of the loop, there is a short snippet of crowd cheering and clapping over brass melody. It sounds fun, happy and energetic.", "data_idx": 3155, "number": 0, "label": "disco"} +{"file_name": "test_05063.png", "caption": "The low quality recording features a flat male vocal singing over tinny wooden percussions, punchy \"4 on the floor\" kick pattern, groovy bass, long crash cymbal, shimmering shakers, syncopated snare hits and electric guitar melody. In the first half of the loop, there is a short snippet of crowd cheering and clapping over brass melody. It sounds fun, happy and energetic.", "data_idx": 3155, "number": 1, "label": "disco"} +{"file_name": "test_05064.png", "caption": "The low quality recording features a flat male vocal singing over tinny wooden percussions, punchy \"4 on the floor\" kick pattern, groovy bass, long crash cymbal, shimmering shakers, syncopated snare hits and electric guitar melody. In the first half of the loop, there is a short snippet of crowd cheering and clapping over brass melody. It sounds fun, happy and energetic.", "data_idx": 3155, "number": 2, "label": "disco"} +{"file_name": "test_05065.png", "caption": "The low quality recording features a flat male vocal singing over tinny wooden percussions, punchy \"4 on the floor\" kick pattern, groovy bass, long crash cymbal, shimmering shakers, syncopated snare hits and electric guitar melody. In the first half of the loop, there is a short snippet of crowd cheering and clapping over brass melody. It sounds fun, happy and energetic.", "data_idx": 3155, "number": 3, "label": "disco"} +{"file_name": "test_05066.png", "caption": "This amateur recording features trumpets playing the main melody. This is accompanied by the bass drum playing one beat on alternate counts and two beats on the remaining alternate counts. Hand claps are played on alternate counts. Other instruments are not audible due to the low audio quality.", "data_idx": 3156, "number": 0, "label": "rock"} +{"file_name": "test_05067.png", "caption": "This amateur recording features trumpets playing the main melody. This is accompanied by the bass drum playing one beat on alternate counts and two beats on the remaining alternate counts. Hand claps are played on alternate counts. Other instruments are not audible due to the low audio quality.", "data_idx": 3156, "number": 1, "label": "rock"} +{"file_name": "test_05068.png", "caption": "This amateur recording features trumpets playing the main melody. This is accompanied by the bass drum playing one beat on alternate counts and two beats on the remaining alternate counts. Hand claps are played on alternate counts. Other instruments are not audible due to the low audio quality.", "data_idx": 3156, "number": 2, "label": "rock"} +{"file_name": "test_05069.png", "caption": "This amateur recording features trumpets playing the main melody. This is accompanied by the bass drum playing one beat on alternate counts and two beats on the remaining alternate counts. Hand claps are played on alternate counts. Other instruments are not audible due to the low audio quality.", "data_idx": 3156, "number": 3, "label": "rock"} +{"file_name": "test_05070.png", "caption": "The low quality recording features a live performance that consists of a flat female vocal singing over electric rhythm guitar melody. It sounds passionate, reverberant and emotional. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3158, "number": 0, "label": "rock"} +{"file_name": "test_05071.png", "caption": "The low quality recording features a live performance that consists of a flat female vocal singing over electric rhythm guitar melody. It sounds passionate, reverberant and emotional. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3158, "number": 1, "label": "rock"} +{"file_name": "test_05072.png", "caption": "The low quality recording features a live performance that consists of a flat female vocal singing over electric rhythm guitar melody. It sounds passionate, reverberant and emotional. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3158, "number": 2, "label": "rock"} +{"file_name": "test_05073.png", "caption": "The low quality recording features a live performance that consists of a flat female vocal singing over electric rhythm guitar melody. It sounds passionate, reverberant and emotional. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3158, "number": 3, "label": "rock"} +{"file_name": "test_05074.png", "caption": "A female opera singer sings this climatic high pitched finish. The song is medium tempo with a string section accompaniment and a rhythm Section. The song is dramatic and high on adrenaline. The audio quality is very poor.", "data_idx": 3159, "number": 0, "label": "hiphop"} +{"file_name": "test_05075.png", "caption": "A female opera singer sings this climatic high pitched finish. The song is medium tempo with a string section accompaniment and a rhythm Section. The song is dramatic and high on adrenaline. The audio quality is very poor.", "data_idx": 3159, "number": 1, "label": "hiphop"} +{"file_name": "test_05076.png", "caption": "A female opera singer sings this climatic high pitched finish. The song is medium tempo with a string section accompaniment and a rhythm Section. The song is dramatic and high on adrenaline. The audio quality is very poor.", "data_idx": 3159, "number": 2, "label": "hiphop"} +{"file_name": "test_05077.png", "caption": "A female opera singer sings this climatic high pitched finish. The song is medium tempo with a string section accompaniment and a rhythm Section. The song is dramatic and high on adrenaline. The audio quality is very poor.", "data_idx": 3159, "number": 3, "label": "hiphop"} +{"file_name": "test_05078.png", "caption": "This is an instrumental track featuring the double bass and acoustic guitar. Initially, chords are strummed on the acoustic guitar, and then arpeggio notes are played. The double bass is played with a bow and plays the leading melodic motif in the song. The song feels like it would be suitable in an adventure movie.", "data_idx": 3160, "number": 0, "label": "classical"} +{"file_name": "test_05079.png", "caption": "This is an instrumental track featuring the double bass and acoustic guitar. Initially, chords are strummed on the acoustic guitar, and then arpeggio notes are played. The double bass is played with a bow and plays the leading melodic motif in the song. The song feels like it would be suitable in an adventure movie.", "data_idx": 3160, "number": 1, "label": "classical"} +{"file_name": "test_05080.png", "caption": "This is an instrumental track featuring the double bass and acoustic guitar. Initially, chords are strummed on the acoustic guitar, and then arpeggio notes are played. The double bass is played with a bow and plays the leading melodic motif in the song. The song feels like it would be suitable in an adventure movie.", "data_idx": 3160, "number": 2, "label": "classical"} +{"file_name": "test_05081.png", "caption": "This is an instrumental track featuring the double bass and acoustic guitar. Initially, chords are strummed on the acoustic guitar, and then arpeggio notes are played. The double bass is played with a bow and plays the leading melodic motif in the song. The song feels like it would be suitable in an adventure movie.", "data_idx": 3160, "number": 3, "label": "classical"} +{"file_name": "test_05082.png", "caption": "This audio contains someone playing an e-guitar using a vibrato and chorus effect. This is an amateur recording. This song may be playing guitar at home.", "data_idx": 3164, "number": 0, "label": "blues"} +{"file_name": "test_05083.png", "caption": "This audio contains someone playing an e-guitar using a vibrato and chorus effect. This is an amateur recording. This song may be playing guitar at home.", "data_idx": 3164, "number": 1, "label": "blues"} +{"file_name": "test_05084.png", "caption": "This audio contains someone playing an e-guitar using a vibrato and chorus effect. This is an amateur recording. This song may be playing guitar at home.", "data_idx": 3164, "number": 2, "label": "blues"} +{"file_name": "test_05085.png", "caption": "This audio contains someone playing an e-guitar using a vibrato and chorus effect. This is an amateur recording. This song may be playing guitar at home.", "data_idx": 3164, "number": 3, "label": "blues"} +{"file_name": "test_05086.png", "caption": "This music is a sinister Electronic instrumental. The tempo is medium with a claviharp melody and keyboard accompaniment with digital sounds and a menacing roar and grunt. The music is intense, sinister, scary, anticipating danger, menacing, mysterious and suspenseful.", "data_idx": 3168, "number": 0, "label": "classical"} +{"file_name": "test_05087.png", "caption": "This music is a sinister Electronic instrumental. The tempo is medium with a claviharp melody and keyboard accompaniment with digital sounds and a menacing roar and grunt. The music is intense, sinister, scary, anticipating danger, menacing, mysterious and suspenseful.", "data_idx": 3168, "number": 1, "label": "classical"} +{"file_name": "test_05088.png", "caption": "This music is a sinister Electronic instrumental. The tempo is medium with a claviharp melody and keyboard accompaniment with digital sounds and a menacing roar and grunt. The music is intense, sinister, scary, anticipating danger, menacing, mysterious and suspenseful.", "data_idx": 3168, "number": 2, "label": "classical"} +{"file_name": "test_05089.png", "caption": "This music is a sinister Electronic instrumental. The tempo is medium with a claviharp melody and keyboard accompaniment with digital sounds and a menacing roar and grunt. The music is intense, sinister, scary, anticipating danger, menacing, mysterious and suspenseful.", "data_idx": 3168, "number": 3, "label": "classical"} +{"file_name": "test_05090.png", "caption": "This is a recording of a live show performance by a rock band. We hear some cheering fans and then the song starts with an electric guitar lick and a bass guitar, and a kick on the drums. The audio quality is muffled and poor.", "data_idx": 3170, "number": 0, "label": "classical"} +{"file_name": "test_05091.png", "caption": "This is a recording of a live show performance by a rock band. We hear some cheering fans and then the song starts with an electric guitar lick and a bass guitar, and a kick on the drums. The audio quality is muffled and poor.", "data_idx": 3170, "number": 1, "label": "classical"} +{"file_name": "test_05092.png", "caption": "The low quality recording features an alternative/indie song that consists of a passionate male vocal singing over groovy bass guitar, wide electric guitar melodies, shimmering cymbals and \"4 on the floor\" kick pattern. It sounds mellow, easygoing, emotional and passionate.", "data_idx": 3171, "number": 0, "label": "blues"} +{"file_name": "test_05093.png", "caption": "The low quality recording features an alternative/indie song that consists of a passionate male vocal singing over groovy bass guitar, wide electric guitar melodies, shimmering cymbals and \"4 on the floor\" kick pattern. It sounds mellow, easygoing, emotional and passionate.", "data_idx": 3171, "number": 1, "label": "blues"} +{"file_name": "test_05094.png", "caption": "The low quality recording features an alternative/indie song that consists of a passionate male vocal singing over groovy bass guitar, wide electric guitar melodies, shimmering cymbals and \"4 on the floor\" kick pattern. It sounds mellow, easygoing, emotional and passionate.", "data_idx": 3171, "number": 2, "label": "blues"} +{"file_name": "test_05095.png", "caption": "The low quality recording features an alternative/indie song that consists of a passionate male vocal singing over groovy bass guitar, wide electric guitar melodies, shimmering cymbals and \"4 on the floor\" kick pattern. It sounds mellow, easygoing, emotional and passionate.", "data_idx": 3171, "number": 3, "label": "blues"} +{"file_name": "test_05096.png", "caption": "The low quality recording features an electro song being played in a club and it consists of high pitched, repetitive, female vocals singing over groovy bass, punchy snare hits and shimmering hi hats. It sounds upbeat and energetic, even though the sound is muffled, noisy and in mono.", "data_idx": 3172, "number": 0, "label": "hiphop"} +{"file_name": "test_05097.png", "caption": "The low quality recording features an electro song being played in a club and it consists of high pitched, repetitive, female vocals singing over groovy bass, punchy snare hits and shimmering hi hats. It sounds upbeat and energetic, even though the sound is muffled, noisy and in mono.", "data_idx": 3172, "number": 1, "label": "hiphop"} +{"file_name": "test_05098.png", "caption": "The low quality recording features a live performance of a pop song that consists of flat male vocal talking, passionate female vocal, alongside harmonizing wide female vocals, singing over punchy kick and snare hits, shimmering hi hats and groovy bass. There are crowd singing and cheering sounds in the background. It sounds groovy, emotional, energetic and passionate.", "data_idx": 3173, "number": 0, "label": "disco"} +{"file_name": "test_05099.png", "caption": "The low quality recording features a live performance of a pop song that consists of flat male vocal talking, passionate female vocal, alongside harmonizing wide female vocals, singing over punchy kick and snare hits, shimmering hi hats and groovy bass. There are crowd singing and cheering sounds in the background. It sounds groovy, emotional, energetic and passionate.", "data_idx": 3173, "number": 1, "label": "disco"} +{"file_name": "test_05100.png", "caption": "The low quality recording features a live performance of a pop song that consists of flat male vocal talking, passionate female vocal, alongside harmonizing wide female vocals, singing over punchy kick and snare hits, shimmering hi hats and groovy bass. There are crowd singing and cheering sounds in the background. It sounds groovy, emotional, energetic and passionate.", "data_idx": 3173, "number": 2, "label": "disco"} +{"file_name": "test_05101.png", "caption": "The low quality recording features a live performance of a pop song that consists of flat male vocal talking, passionate female vocal, alongside harmonizing wide female vocals, singing over punchy kick and snare hits, shimmering hi hats and groovy bass. There are crowd singing and cheering sounds in the background. It sounds groovy, emotional, energetic and passionate.", "data_idx": 3173, "number": 3, "label": "disco"} +{"file_name": "test_05102.png", "caption": "The low quality recording features a cover of a rock song that consists of flat male vocal singing over distorted electric guitar melody, energetic drums and groovy bass guitar. The song sounds passionate and energetic.", "data_idx": 3175, "number": 0, "label": "metal"} +{"file_name": "test_05103.png", "caption": "The low quality recording features a cover of a rock song that consists of flat male vocal singing over distorted electric guitar melody, energetic drums and groovy bass guitar. The song sounds passionate and energetic.", "data_idx": 3175, "number": 1, "label": "metal"} +{"file_name": "test_05104.png", "caption": "The low quality recording features a cover of a rock song that consists of flat male vocal singing over distorted electric guitar melody, energetic drums and groovy bass guitar. The song sounds passionate and energetic.", "data_idx": 3175, "number": 2, "label": "metal"} +{"file_name": "test_05105.png", "caption": "The low quality recording features a cover of a rock song that consists of flat male vocal singing over distorted electric guitar melody, energetic drums and groovy bass guitar. The song sounds passionate and energetic.", "data_idx": 3175, "number": 3, "label": "metal"} +{"file_name": "test_05106.png", "caption": "This is a symphonic orchestra playing a piece that's riveting, thrilling and exciting. The peace would be suitable in a movie when something grand and impressive happens. There are clarinets, tubas, trumpets and french horns being played. The brass instruments help create that sense of a momentous occasion. The percussion is done on timpanis and a cymbal.", "data_idx": 3177, "number": 0, "label": "rock"} +{"file_name": "test_05107.png", "caption": "This is a symphonic orchestra playing a piece that's riveting, thrilling and exciting. The peace would be suitable in a movie when something grand and impressive happens. There are clarinets, tubas, trumpets and french horns being played. The brass instruments help create that sense of a momentous occasion. The percussion is done on timpanis and a cymbal.", "data_idx": 3177, "number": 1, "label": "rock"} +{"file_name": "test_05108.png", "caption": "This is a symphonic orchestra playing a piece that's riveting, thrilling and exciting. The peace would be suitable in a movie when something grand and impressive happens. There are clarinets, tubas, trumpets and french horns being played. The brass instruments help create that sense of a momentous occasion. The percussion is done on timpanis and a cymbal.", "data_idx": 3177, "number": 2, "label": "rock"} +{"file_name": "test_05109.png", "caption": "This is a symphonic orchestra playing a piece that's riveting, thrilling and exciting. The peace would be suitable in a movie when something grand and impressive happens. There are clarinets, tubas, trumpets and french horns being played. The brass instruments help create that sense of a momentous occasion. The percussion is done on timpanis and a cymbal.", "data_idx": 3177, "number": 3, "label": "rock"} +{"file_name": "test_05110.png", "caption": "This slow pop song features a male voice singing the main melody. This song starts with a melody played on synth strings. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords with a run to reach the next note. There are different synth layers playing different melodies within the scale to produce a complex melody. The voice starts to sing a romantic melody. This is accompanied by the percussion playing a minimalistic beat. The synth pads play a sustained chord in the background. The bass note is sustained through the line being sung. This song can be played in a romantic movie.", "data_idx": 3178, "number": 0, "label": "country"} +{"file_name": "test_05111.png", "caption": "This slow pop song features a male voice singing the main melody. This song starts with a melody played on synth strings. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords with a run to reach the next note. There are different synth layers playing different melodies within the scale to produce a complex melody. The voice starts to sing a romantic melody. This is accompanied by the percussion playing a minimalistic beat. The synth pads play a sustained chord in the background. The bass note is sustained through the line being sung. This song can be played in a romantic movie.", "data_idx": 3178, "number": 1, "label": "country"} +{"file_name": "test_05112.png", "caption": "This slow pop song features a male voice singing the main melody. This song starts with a melody played on synth strings. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords with a run to reach the next note. There are different synth layers playing different melodies within the scale to produce a complex melody. The voice starts to sing a romantic melody. This is accompanied by the percussion playing a minimalistic beat. The synth pads play a sustained chord in the background. The bass note is sustained through the line being sung. This song can be played in a romantic movie.", "data_idx": 3178, "number": 2, "label": "country"} +{"file_name": "test_05113.png", "caption": "This slow pop song features a male voice singing the main melody. This song starts with a melody played on synth strings. This is accompanied by percussion playing a simple beat. The bass plays the root notes of the chords with a run to reach the next note. There are different synth layers playing different melodies within the scale to produce a complex melody. The voice starts to sing a romantic melody. This is accompanied by the percussion playing a minimalistic beat. The synth pads play a sustained chord in the background. The bass note is sustained through the line being sung. This song can be played in a romantic movie.", "data_idx": 3178, "number": 3, "label": "country"} +{"file_name": "test_05114.png", "caption": "Someone is strumming a melody on a clean e-guitar. This may be playing for an advertisement.", "data_idx": 3179, "number": 0, "label": "blues"} +{"file_name": "test_05115.png", "caption": "Someone is strumming a melody on a clean e-guitar. This may be playing for an advertisement.", "data_idx": 3179, "number": 1, "label": "blues"} +{"file_name": "test_05116.png", "caption": "Someone is strumming a melody on a clean e-guitar. This may be playing for an advertisement.", "data_idx": 3179, "number": 2, "label": "blues"} +{"file_name": "test_05117.png", "caption": "Someone is strumming a melody on a clean e-guitar. This may be playing for an advertisement.", "data_idx": 3179, "number": 3, "label": "blues"} +{"file_name": "test_05118.png", "caption": "This is a Mexican folk music piece being performed live. There is male voice shouting at the end of the piece. The accordion is playing the main melody. The acoustic guitar and the bass guitar are playing in the background. The rhythmic background consists of a latin acoustic drum beat. The atmosphere is lively. This piece could be playing in the background at a Mexican restaurant.", "data_idx": 3180, "number": 0, "label": "hiphop"} +{"file_name": "test_05119.png", "caption": "This is a Mexican folk music piece being performed live. There is male voice shouting at the end of the piece. The accordion is playing the main melody. The acoustic guitar and the bass guitar are playing in the background. The rhythmic background consists of a latin acoustic drum beat. The atmosphere is lively. This piece could be playing in the background at a Mexican restaurant.", "data_idx": 3180, "number": 1, "label": "hiphop"} +{"file_name": "test_05120.png", "caption": "This is a Mexican folk music piece being performed live. There is male voice shouting at the end of the piece. The accordion is playing the main melody. The acoustic guitar and the bass guitar are playing in the background. The rhythmic background consists of a latin acoustic drum beat. The atmosphere is lively. This piece could be playing in the background at a Mexican restaurant.", "data_idx": 3180, "number": 2, "label": "hiphop"} +{"file_name": "test_05121.png", "caption": "This is a Mexican folk music piece being performed live. There is male voice shouting at the end of the piece. The accordion is playing the main melody. The acoustic guitar and the bass guitar are playing in the background. The rhythmic background consists of a latin acoustic drum beat. The atmosphere is lively. This piece could be playing in the background at a Mexican restaurant.", "data_idx": 3180, "number": 3, "label": "hiphop"} +{"file_name": "test_05122.png", "caption": "This techno song starts off with a synth playing a melody followed by another synth playing a burst of two chords. The two chord bursts are accompanied by percussion playing an outro roll. The instruments pause and a male voice starts to narrate a few lines. After two lines, the pitch of the voice is lowered in pitch to reach a bass pitch. This voice fades away to silence. This song can be played in a movie featuring a robot.", "data_idx": 3181, "number": 0, "label": "hiphop"} +{"file_name": "test_05123.png", "caption": "This techno song starts off with a synth playing a melody followed by another synth playing a burst of two chords. The two chord bursts are accompanied by percussion playing an outro roll. The instruments pause and a male voice starts to narrate a few lines. After two lines, the pitch of the voice is lowered in pitch to reach a bass pitch. This voice fades away to silence. This song can be played in a movie featuring a robot.", "data_idx": 3181, "number": 1, "label": "hiphop"} +{"file_name": "test_05124.png", "caption": "This techno song starts off with a synth playing a melody followed by another synth playing a burst of two chords. The two chord bursts are accompanied by percussion playing an outro roll. The instruments pause and a male voice starts to narrate a few lines. After two lines, the pitch of the voice is lowered in pitch to reach a bass pitch. This voice fades away to silence. This song can be played in a movie featuring a robot.", "data_idx": 3181, "number": 2, "label": "hiphop"} +{"file_name": "test_05125.png", "caption": "This techno song starts off with a synth playing a melody followed by another synth playing a burst of two chords. The two chord bursts are accompanied by percussion playing an outro roll. The instruments pause and a male voice starts to narrate a few lines. After two lines, the pitch of the voice is lowered in pitch to reach a bass pitch. This voice fades away to silence. This song can be played in a movie featuring a robot.", "data_idx": 3181, "number": 3, "label": "hiphop"} +{"file_name": "test_05126.png", "caption": "This epic song features a pulsating synth playing in eighth notes in the background. The clip starts with a crash cymbal being struck. A flute plays a melody and an angelic voice sings the same melody using vocables. A bass drum alternates between one stroke and two strokes played at alternate counts of each bar. This song has an epic feel. The mood is motivational. This song can be played in a slow motion clip of an athlete winning a race.", "data_idx": 3183, "number": 0, "label": "classical"} +{"file_name": "test_05127.png", "caption": "This epic song features a pulsating synth playing in eighth notes in the background. The clip starts with a crash cymbal being struck. A flute plays a melody and an angelic voice sings the same melody using vocables. A bass drum alternates between one stroke and two strokes played at alternate counts of each bar. This song has an epic feel. The mood is motivational. This song can be played in a slow motion clip of an athlete winning a race.", "data_idx": 3183, "number": 1, "label": "classical"} +{"file_name": "test_05128.png", "caption": "This epic song features a pulsating synth playing in eighth notes in the background. The clip starts with a crash cymbal being struck. A flute plays a melody and an angelic voice sings the same melody using vocables. A bass drum alternates between one stroke and two strokes played at alternate counts of each bar. This song has an epic feel. The mood is motivational. This song can be played in a slow motion clip of an athlete winning a race.", "data_idx": 3183, "number": 2, "label": "classical"} +{"file_name": "test_05129.png", "caption": "This epic song features a pulsating synth playing in eighth notes in the background. The clip starts with a crash cymbal being struck. A flute plays a melody and an angelic voice sings the same melody using vocables. A bass drum alternates between one stroke and two strokes played at alternate counts of each bar. This song has an epic feel. The mood is motivational. This song can be played in a slow motion clip of an athlete winning a race.", "data_idx": 3183, "number": 3, "label": "classical"} +{"file_name": "test_05130.png", "caption": "Dramatic female opera singer accompanied by orchestra and brass and cymbal crash.", "data_idx": 3186, "number": 0, "label": "classical"} +{"file_name": "test_05131.png", "caption": "Dramatic female opera singer accompanied by orchestra and brass and cymbal crash.", "data_idx": 3186, "number": 1, "label": "classical"} +{"file_name": "test_05132.png", "caption": "Dramatic female opera singer accompanied by orchestra and brass and cymbal crash.", "data_idx": 3186, "number": 2, "label": "classical"} +{"file_name": "test_05133.png", "caption": "Dramatic female opera singer accompanied by orchestra and brass and cymbal crash.", "data_idx": 3186, "number": 3, "label": "classical"} +{"file_name": "test_05134.png", "caption": "This audio contains trumpets playing the main melody in the higher mid range while oboes and flutes are playing a melody that sounds like a bunny hopping over obstacles. Then the music stops with a crashing sound and an alarm clock starts ringing. This song may be playing live as part of an orchestra composition.", "data_idx": 3187, "number": 0, "label": "hiphop"} +{"file_name": "test_05135.png", "caption": "This audio contains trumpets playing the main melody in the higher mid range while oboes and flutes are playing a melody that sounds like a bunny hopping over obstacles. Then the music stops with a crashing sound and an alarm clock starts ringing. This song may be playing live as part of an orchestra composition.", "data_idx": 3187, "number": 1, "label": "hiphop"} +{"file_name": "test_05136.png", "caption": "This audio contains trumpets playing the main melody in the higher mid range while oboes and flutes are playing a melody that sounds like a bunny hopping over obstacles. Then the music stops with a crashing sound and an alarm clock starts ringing. This song may be playing live as part of an orchestra composition.", "data_idx": 3187, "number": 2, "label": "hiphop"} +{"file_name": "test_05137.png", "caption": "This audio contains trumpets playing the main melody in the higher mid range while oboes and flutes are playing a melody that sounds like a bunny hopping over obstacles. Then the music stops with a crashing sound and an alarm clock starts ringing. This song may be playing live as part of an orchestra composition.", "data_idx": 3187, "number": 3, "label": "hiphop"} +{"file_name": "test_05138.png", "caption": "This is a guitar cover video. There are no vocals in this piece. The acoustic guitar is playing a mellow tune with the heavy use of arpeggios. The atmosphere is gentle and relaxing. This piece could be used as the opening theme of a teenage drama TV series. It could also be playing in the background at a coffee shop.", "data_idx": 3188, "number": 0, "label": "blues"} +{"file_name": "test_05139.png", "caption": "This is a guitar cover video. There are no vocals in this piece. The acoustic guitar is playing a mellow tune with the heavy use of arpeggios. The atmosphere is gentle and relaxing. This piece could be used as the opening theme of a teenage drama TV series. It could also be playing in the background at a coffee shop.", "data_idx": 3188, "number": 1, "label": "blues"} +{"file_name": "test_05140.png", "caption": "This is a guitar cover video. There are no vocals in this piece. The acoustic guitar is playing a mellow tune with the heavy use of arpeggios. The atmosphere is gentle and relaxing. This piece could be used as the opening theme of a teenage drama TV series. It could also be playing in the background at a coffee shop.", "data_idx": 3188, "number": 2, "label": "blues"} +{"file_name": "test_05141.png", "caption": "This is a guitar cover video. There are no vocals in this piece. The acoustic guitar is playing a mellow tune with the heavy use of arpeggios. The atmosphere is gentle and relaxing. This piece could be used as the opening theme of a teenage drama TV series. It could also be playing in the background at a coffee shop.", "data_idx": 3188, "number": 3, "label": "blues"} +{"file_name": "test_05142.png", "caption": "The low quality recording features a cover of a pop song and it consists of harmonizing male vocals and loud shoe tapping that serves as a rhythm. The recording is in mono and very noisy, as it was probably recorded with a phone. It sounds passionate and energetic - even without the instruments.", "data_idx": 3189, "number": 0, "label": "rock"} +{"file_name": "test_05143.png", "caption": "The low quality recording features a cover of a pop song and it consists of harmonizing male vocals and loud shoe tapping that serves as a rhythm. The recording is in mono and very noisy, as it was probably recorded with a phone. It sounds passionate and energetic - even without the instruments.", "data_idx": 3189, "number": 1, "label": "rock"} +{"file_name": "test_05144.png", "caption": "The low quality recording features a cover of a pop song and it consists of harmonizing male vocals and loud shoe tapping that serves as a rhythm. The recording is in mono and very noisy, as it was probably recorded with a phone. It sounds passionate and energetic - even without the instruments.", "data_idx": 3189, "number": 2, "label": "rock"} +{"file_name": "test_05145.png", "caption": "The low quality recording features a cover of a pop song and it consists of harmonizing male vocals and loud shoe tapping that serves as a rhythm. The recording is in mono and very noisy, as it was probably recorded with a phone. It sounds passionate and energetic - even without the instruments.", "data_idx": 3189, "number": 3, "label": "rock"} +{"file_name": "test_05146.png", "caption": "This opera song features a female voice singing at a high pitch. This is accompanied by a shimmering background sound for one bar. This is followed by the sound of wind. This song has a victorious mood. This song can be played at the end of a war scene for the victor of the war.", "data_idx": 3190, "number": 0, "label": "classical"} +{"file_name": "test_05147.png", "caption": "This opera song features a female voice singing at a high pitch. This is accompanied by a shimmering background sound for one bar. This is followed by the sound of wind. This song has a victorious mood. This song can be played at the end of a war scene for the victor of the war.", "data_idx": 3190, "number": 1, "label": "classical"} +{"file_name": "test_05148.png", "caption": "This opera song features a female voice singing at a high pitch. This is accompanied by a shimmering background sound for one bar. This is followed by the sound of wind. This song has a victorious mood. This song can be played at the end of a war scene for the victor of the war.", "data_idx": 3190, "number": 2, "label": "classical"} +{"file_name": "test_05149.png", "caption": "This opera song features a female voice singing at a high pitch. This is accompanied by a shimmering background sound for one bar. This is followed by the sound of wind. This song has a victorious mood. This song can be played at the end of a war scene for the victor of the war.", "data_idx": 3190, "number": 3, "label": "classical"} +{"file_name": "test_05150.png", "caption": "The Techno song features a repetitive synth bass, repetitive, distorted synth cowbell percussion and punchy \"4 on the floor\" kick patter. It sounds energetic and addictive, almost hypnotic - like something you would hear in clubs.", "data_idx": 3192, "number": 0, "label": "reggae"} +{"file_name": "test_05151.png", "caption": "The Techno song features a repetitive synth bass, repetitive, distorted synth cowbell percussion and punchy \"4 on the floor\" kick patter. It sounds energetic and addictive, almost hypnotic - like something you would hear in clubs.", "data_idx": 3192, "number": 1, "label": "reggae"} +{"file_name": "test_05152.png", "caption": "The Techno song features a repetitive synth bass, repetitive, distorted synth cowbell percussion and punchy \"4 on the floor\" kick patter. It sounds energetic and addictive, almost hypnotic - like something you would hear in clubs.", "data_idx": 3192, "number": 2, "label": "reggae"} +{"file_name": "test_05153.png", "caption": "The Techno song features a repetitive synth bass, repetitive, distorted synth cowbell percussion and punchy \"4 on the floor\" kick patter. It sounds energetic and addictive, almost hypnotic - like something you would hear in clubs.", "data_idx": 3192, "number": 3, "label": "reggae"} +{"file_name": "test_05154.png", "caption": "The pianist plays a classical piano piece which brings out a feeling of suspense and tension. The piece is complex and rapid. It has the sense of building up due to the low rumbling of the bass notes. The recording is a low-quality recording, and it is live.", "data_idx": 3194, "number": 0, "label": "classical"} +{"file_name": "test_05155.png", "caption": "The pianist plays a classical piano piece which brings out a feeling of suspense and tension. The piece is complex and rapid. It has the sense of building up due to the low rumbling of the bass notes. The recording is a low-quality recording, and it is live.", "data_idx": 3194, "number": 1, "label": "classical"} +{"file_name": "test_05156.png", "caption": "The pianist plays a classical piano piece which brings out a feeling of suspense and tension. The piece is complex and rapid. It has the sense of building up due to the low rumbling of the bass notes. The recording is a low-quality recording, and it is live.", "data_idx": 3194, "number": 2, "label": "classical"} +{"file_name": "test_05157.png", "caption": "The pianist plays a classical piano piece which brings out a feeling of suspense and tension. The piece is complex and rapid. It has the sense of building up due to the low rumbling of the bass notes. The recording is a low-quality recording, and it is live.", "data_idx": 3194, "number": 3, "label": "classical"} diff --git a/data/test/metadata_0011.jsonl b/data/test/metadata_0011.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..fb38ce88560e66c39b9d8077730b8eac5c134452 --- /dev/null +++ b/data/test/metadata_0011.jsonl @@ -0,0 +1,404 @@ +{"file_name": "test_05158.png", "caption": "This song is a vocal duet of male singers in a foreign language . The tempo is medium fast with an animated electric guitar melody, boomy bass drops, digital drums and synthesiser arrangements. The music is buoyant, youthful,punchy, groovy and emphatic with mellow vocals. This song is contemporary Pop.", "data_idx": 3200, "number": 0, "label": "hiphop"} +{"file_name": "test_05159.png", "caption": "This song is a vocal duet of male singers in a foreign language . The tempo is medium fast with an animated electric guitar melody, boomy bass drops, digital drums and synthesiser arrangements. The music is buoyant, youthful,punchy, groovy and emphatic with mellow vocals. This song is contemporary Pop.", "data_idx": 3200, "number": 1, "label": "hiphop"} +{"file_name": "test_05160.png", "caption": "This song is a vocal duet of male singers in a foreign language . The tempo is medium fast with an animated electric guitar melody, boomy bass drops, digital drums and synthesiser arrangements. The music is buoyant, youthful,punchy, groovy and emphatic with mellow vocals. This song is contemporary Pop.", "data_idx": 3200, "number": 2, "label": "hiphop"} +{"file_name": "test_05161.png", "caption": "This song is a vocal duet of male singers in a foreign language . The tempo is medium fast with an animated electric guitar melody, boomy bass drops, digital drums and synthesiser arrangements. The music is buoyant, youthful,punchy, groovy and emphatic with mellow vocals. This song is contemporary Pop.", "data_idx": 3200, "number": 3, "label": "hiphop"} +{"file_name": "test_05162.png", "caption": "This folk song features a harmonica playing the main melody. The harmonica plays three descending notes. This is followed by a double stop being played a total of nine times in groupings of two, three, three and one time. Then it plays a higher note going down a descending scale of two more notes. This is accompanied by an acoustic guitar strumming chords. The mood of this song is sad. This song can be played at a house party.", "data_idx": 3202, "number": 0, "label": "rock"} +{"file_name": "test_05163.png", "caption": "This folk song features a harmonica playing the main melody. The harmonica plays three descending notes. This is followed by a double stop being played a total of nine times in groupings of two, three, three and one time. Then it plays a higher note going down a descending scale of two more notes. This is accompanied by an acoustic guitar strumming chords. The mood of this song is sad. This song can be played at a house party.", "data_idx": 3202, "number": 1, "label": "rock"} +{"file_name": "test_05164.png", "caption": "This heavy metal song features a distortion guitar playing palm muted power chords using mostly down strokes. The bass plays the root note of the chord using the same rhythm pattern. The percussion plays the hi-hat in a continuous pattern and the kick on the first count of the bar. On the third bar, the distortion guitar plays one chord without palm muting. This song can be played at the introduction of a video game. This song has no voices. This is an instrumental song. The mood of this song is aggressive.", "data_idx": 3203, "number": 0, "label": "metal"} +{"file_name": "test_05165.png", "caption": "This heavy metal song features a distortion guitar playing palm muted power chords using mostly down strokes. The bass plays the root note of the chord using the same rhythm pattern. The percussion plays the hi-hat in a continuous pattern and the kick on the first count of the bar. On the third bar, the distortion guitar plays one chord without palm muting. This song can be played at the introduction of a video game. This song has no voices. This is an instrumental song. The mood of this song is aggressive.", "data_idx": 3203, "number": 1, "label": "metal"} +{"file_name": "test_05166.png", "caption": "This heavy metal song features a distortion guitar playing palm muted power chords using mostly down strokes. The bass plays the root note of the chord using the same rhythm pattern. The percussion plays the hi-hat in a continuous pattern and the kick on the first count of the bar. On the third bar, the distortion guitar plays one chord without palm muting. This song can be played at the introduction of a video game. This song has no voices. This is an instrumental song. The mood of this song is aggressive.", "data_idx": 3203, "number": 2, "label": "metal"} +{"file_name": "test_05167.png", "caption": "This heavy metal song features a distortion guitar playing palm muted power chords using mostly down strokes. The bass plays the root note of the chord using the same rhythm pattern. The percussion plays the hi-hat in a continuous pattern and the kick on the first count of the bar. On the third bar, the distortion guitar plays one chord without palm muting. This song can be played at the introduction of a video game. This song has no voices. This is an instrumental song. The mood of this song is aggressive.", "data_idx": 3203, "number": 3, "label": "metal"} +{"file_name": "test_05168.png", "caption": "This is a hardcore techno music piece. There is an extremely strong, ear-piercing bass sound. The rhythmic background is a fast-paced and loud electronic drum beat. The atmosphere is violent. This piece could be played at rave sets.", "data_idx": 3204, "number": 0, "label": "metal"} +{"file_name": "test_05169.png", "caption": "This is a hardcore techno music piece. There is an extremely strong, ear-piercing bass sound. The rhythmic background is a fast-paced and loud electronic drum beat. The atmosphere is violent. This piece could be played at rave sets.", "data_idx": 3204, "number": 1, "label": "metal"} +{"file_name": "test_05170.png", "caption": "This is a hardcore techno music piece. There is an extremely strong, ear-piercing bass sound. The rhythmic background is a fast-paced and loud electronic drum beat. The atmosphere is violent. This piece could be played at rave sets.", "data_idx": 3204, "number": 2, "label": "metal"} +{"file_name": "test_05171.png", "caption": "This is a hardcore techno music piece. There is an extremely strong, ear-piercing bass sound. The rhythmic background is a fast-paced and loud electronic drum beat. The atmosphere is violent. This piece could be played at rave sets.", "data_idx": 3204, "number": 3, "label": "metal"} +{"file_name": "test_05172.png", "caption": "This is a techno house music piece. There is a piercing sounding synth lead playing an alarm-like tune. The atmosphere is loud and aggressive. This piece could be playing during nighttime scenes in the soundtrack of a noir movie or a noir video game.", "data_idx": 3206, "number": 0, "label": "hiphop"} +{"file_name": "test_05173.png", "caption": "This is a techno house music piece. There is a piercing sounding synth lead playing an alarm-like tune. The atmosphere is loud and aggressive. This piece could be playing during nighttime scenes in the soundtrack of a noir movie or a noir video game.", "data_idx": 3206, "number": 1, "label": "hiphop"} +{"file_name": "test_05174.png", "caption": "This is a techno house music piece. There is a piercing sounding synth lead playing an alarm-like tune. The atmosphere is loud and aggressive. This piece could be playing during nighttime scenes in the soundtrack of a noir movie or a noir video game.", "data_idx": 3206, "number": 2, "label": "hiphop"} +{"file_name": "test_05175.png", "caption": "This is a techno house music piece. There is a piercing sounding synth lead playing an alarm-like tune. The atmosphere is loud and aggressive. This piece could be playing during nighttime scenes in the soundtrack of a noir movie or a noir video game.", "data_idx": 3206, "number": 3, "label": "hiphop"} +{"file_name": "test_05176.png", "caption": "This is an electronic music piece. There is a repeated piano theme in the melody. There are various eerie sound effects. Then, a violin starts playing. The atmosphere is unsettling. This piece would fit well in the soundtrack of a mystery video game.", "data_idx": 3209, "number": 0, "label": "classical"} +{"file_name": "test_05177.png", "caption": "This is an electronic music piece. There is a repeated piano theme in the melody. There are various eerie sound effects. Then, a violin starts playing. The atmosphere is unsettling. This piece would fit well in the soundtrack of a mystery video game.", "data_idx": 3209, "number": 1, "label": "classical"} +{"file_name": "test_05178.png", "caption": "This hard rock song features a distortion guitar playing aggressive riffs. This is accompanied by a rock percussion playing a simple rock beat with a roll at the end. The bass guitar plays the root notes of the chord with a flourish to move to the subsequent note. There are no voices in this song. This is an instrumental song.", "data_idx": 3211, "number": 0, "label": "metal"} +{"file_name": "test_05179.png", "caption": "This hard rock song features a distortion guitar playing aggressive riffs. This is accompanied by a rock percussion playing a simple rock beat with a roll at the end. The bass guitar plays the root notes of the chord with a flourish to move to the subsequent note. There are no voices in this song. This is an instrumental song.", "data_idx": 3211, "number": 1, "label": "metal"} +{"file_name": "test_05180.png", "caption": "This hard rock song features a distortion guitar playing aggressive riffs. This is accompanied by a rock percussion playing a simple rock beat with a roll at the end. The bass guitar plays the root notes of the chord with a flourish to move to the subsequent note. There are no voices in this song. This is an instrumental song.", "data_idx": 3211, "number": 2, "label": "metal"} +{"file_name": "test_05181.png", "caption": "This hard rock song features a distortion guitar playing aggressive riffs. This is accompanied by a rock percussion playing a simple rock beat with a roll at the end. The bass guitar plays the root notes of the chord with a flourish to move to the subsequent note. There are no voices in this song. This is an instrumental song.", "data_idx": 3211, "number": 3, "label": "metal"} +{"file_name": "test_05182.png", "caption": "A male voice is singing in the midrange then another male voice joins singing in a lower harmony. In the background you can hear a jazz drum playing along with an upright bass and a flute. An acoustic piano is playing jazzy licks. Then the drum breaks the beat with strong fill-ins before a brass section elevates the piece. This song may be playing live during a jazz performance.", "data_idx": 3212, "number": 0, "label": "hiphop"} +{"file_name": "test_05183.png", "caption": "A male voice is singing in the midrange then another male voice joins singing in a lower harmony. In the background you can hear a jazz drum playing along with an upright bass and a flute. An acoustic piano is playing jazzy licks. Then the drum breaks the beat with strong fill-ins before a brass section elevates the piece. This song may be playing live during a jazz performance.", "data_idx": 3212, "number": 1, "label": "hiphop"} +{"file_name": "test_05184.png", "caption": "A male voice is singing in the midrange then another male voice joins singing in a lower harmony. In the background you can hear a jazz drum playing along with an upright bass and a flute. An acoustic piano is playing jazzy licks. Then the drum breaks the beat with strong fill-ins before a brass section elevates the piece. This song may be playing live during a jazz performance.", "data_idx": 3212, "number": 2, "label": "hiphop"} +{"file_name": "test_05185.png", "caption": "A male voice is singing in the midrange then another male voice joins singing in a lower harmony. In the background you can hear a jazz drum playing along with an upright bass and a flute. An acoustic piano is playing jazzy licks. Then the drum breaks the beat with strong fill-ins before a brass section elevates the piece. This song may be playing live during a jazz performance.", "data_idx": 3212, "number": 3, "label": "hiphop"} +{"file_name": "test_05186.png", "caption": "This recording features a baptist church choir singing a worship song vibrantly. The song is energetic and uplifting. It's a live recording with unclear audio which makes it difficult to hear the song lyrics. There's an organ, drums, tambourine and bass.", "data_idx": 3213, "number": 0, "label": "disco"} +{"file_name": "test_05187.png", "caption": "This recording features a baptist church choir singing a worship song vibrantly. The song is energetic and uplifting. It's a live recording with unclear audio which makes it difficult to hear the song lyrics. There's an organ, drums, tambourine and bass.", "data_idx": 3213, "number": 1, "label": "disco"} +{"file_name": "test_05188.png", "caption": "This recording features a baptist church choir singing a worship song vibrantly. The song is energetic and uplifting. It's a live recording with unclear audio which makes it difficult to hear the song lyrics. There's an organ, drums, tambourine and bass.", "data_idx": 3213, "number": 2, "label": "disco"} +{"file_name": "test_05189.png", "caption": "This recording features a baptist church choir singing a worship song vibrantly. The song is energetic and uplifting. It's a live recording with unclear audio which makes it difficult to hear the song lyrics. There's an organ, drums, tambourine and bass.", "data_idx": 3213, "number": 3, "label": "disco"} +{"file_name": "test_05190.png", "caption": "The low quality recording features a live performance of a metal song. The recording is noisy, in mono and so crushed, distorted, harsh and loud that you can barely hear anything but the loud noise.", "data_idx": 3214, "number": 0, "label": "metal"} +{"file_name": "test_05191.png", "caption": "The low quality recording features a live performance of a metal song. The recording is noisy, in mono and so crushed, distorted, harsh and loud that you can barely hear anything but the loud noise.", "data_idx": 3214, "number": 1, "label": "metal"} +{"file_name": "test_05192.png", "caption": "The low quality recording features a live performance of a metal song. The recording is noisy, in mono and so crushed, distorted, harsh and loud that you can barely hear anything but the loud noise.", "data_idx": 3214, "number": 2, "label": "metal"} +{"file_name": "test_05193.png", "caption": "The low quality recording features a live performance of a metal song. The recording is noisy, in mono and so crushed, distorted, harsh and loud that you can barely hear anything but the loud noise.", "data_idx": 3214, "number": 3, "label": "metal"} +{"file_name": "test_05194.png", "caption": "The low quality recording features a live performance of a pop song that contains a reverberant soft male vocal singing over mellow piano chords. There are crowd singing noises in the background. It sounds soulful, passionate and emotional.", "data_idx": 3219, "number": 0, "label": "rock"} +{"file_name": "test_05195.png", "caption": "The low quality recording features a live performance of a pop song that contains a reverberant soft male vocal singing over mellow piano chords. There are crowd singing noises in the background. It sounds soulful, passionate and emotional.", "data_idx": 3219, "number": 1, "label": "rock"} +{"file_name": "test_05196.png", "caption": "The low quality recording features a live performance of a pop song that contains a reverberant soft male vocal singing over mellow piano chords. There are crowd singing noises in the background. It sounds soulful, passionate and emotional.", "data_idx": 3219, "number": 2, "label": "rock"} +{"file_name": "test_05197.png", "caption": "The low quality recording features a live performance of a pop song that contains a reverberant soft male vocal singing over mellow piano chords. There are crowd singing noises in the background. It sounds soulful, passionate and emotional.", "data_idx": 3219, "number": 3, "label": "rock"} +{"file_name": "test_05198.png", "caption": "The low quality recording features an alternative/indie song that consists of arpeggiated synth keys, growl synth bass, mellow synth bells melody and synth pad chords. It sounds chill and easygoing.", "data_idx": 3220, "number": 0, "label": "jazz"} +{"file_name": "test_05199.png", "caption": "The low quality recording features an alternative/indie song that consists of arpeggiated synth keys, growl synth bass, mellow synth bells melody and synth pad chords. It sounds chill and easygoing.", "data_idx": 3220, "number": 1, "label": "jazz"} +{"file_name": "test_05200.png", "caption": "The low quality recording features an alternative/indie song that consists of arpeggiated synth keys, growl synth bass, mellow synth bells melody and synth pad chords. It sounds chill and easygoing.", "data_idx": 3220, "number": 2, "label": "jazz"} +{"file_name": "test_05201.png", "caption": "The low quality recording features an alternative/indie song that consists of arpeggiated synth keys, growl synth bass, mellow synth bells melody and synth pad chords. It sounds chill and easygoing.", "data_idx": 3220, "number": 3, "label": "jazz"} +{"file_name": "test_05202.png", "caption": "This is a live performance of a classical music piece. There is an orchestra performing the piece with a violin lead playing the main melody. The atmosphere is sentimental and heart-touching. This piece could be playing in the background at a classy restaurant.", "data_idx": 3221, "number": 0, "label": "classical"} +{"file_name": "test_05203.png", "caption": "This is a live performance of a classical music piece. There is an orchestra performing the piece with a violin lead playing the main melody. The atmosphere is sentimental and heart-touching. This piece could be playing in the background at a classy restaurant.", "data_idx": 3221, "number": 1, "label": "classical"} +{"file_name": "test_05204.png", "caption": "This is a live performance of a classical music piece. There is an orchestra performing the piece with a violin lead playing the main melody. The atmosphere is sentimental and heart-touching. This piece could be playing in the background at a classy restaurant.", "data_idx": 3221, "number": 2, "label": "classical"} +{"file_name": "test_05205.png", "caption": "This is a live performance of a classical music piece. There is an orchestra performing the piece with a violin lead playing the main melody. The atmosphere is sentimental and heart-touching. This piece could be playing in the background at a classy restaurant.", "data_idx": 3221, "number": 3, "label": "classical"} +{"file_name": "test_05206.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised arrangements and intense drumming with a male voice speaking over the music. The music is intense, vigorous,animated, futuristic and vital. It sounds like video game music and the male voice seems to be reviewing Video Games.", "data_idx": 3222, "number": 0, "label": "hiphop"} +{"file_name": "test_05207.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised arrangements and intense drumming with a male voice speaking over the music. The music is intense, vigorous,animated, futuristic and vital. It sounds like video game music and the male voice seems to be reviewing Video Games.", "data_idx": 3222, "number": 1, "label": "hiphop"} +{"file_name": "test_05208.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised arrangements and intense drumming with a male voice speaking over the music. The music is intense, vigorous,animated, futuristic and vital. It sounds like video game music and the male voice seems to be reviewing Video Games.", "data_idx": 3222, "number": 2, "label": "hiphop"} +{"file_name": "test_05209.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised arrangements and intense drumming with a male voice speaking over the music. The music is intense, vigorous,animated, futuristic and vital. It sounds like video game music and the male voice seems to be reviewing Video Games.", "data_idx": 3222, "number": 3, "label": "hiphop"} +{"file_name": "test_05210.png", "caption": "Someone is playing a clean e-guitar with a lot of reverb and delay. Fingerpicking and creating dreamy rhythm and melodic patterns. In the background you can hear a drumloop and an e-bass. This song may be playing during a little live concert.", "data_idx": 3223, "number": 0, "label": "blues"} +{"file_name": "test_05211.png", "caption": "Someone is playing a clean e-guitar with a lot of reverb and delay. Fingerpicking and creating dreamy rhythm and melodic patterns. In the background you can hear a drumloop and an e-bass. This song may be playing during a little live concert.", "data_idx": 3223, "number": 1, "label": "blues"} +{"file_name": "test_05212.png", "caption": "Someone is playing a clean e-guitar with a lot of reverb and delay. Fingerpicking and creating dreamy rhythm and melodic patterns. In the background you can hear a drumloop and an e-bass. This song may be playing during a little live concert.", "data_idx": 3223, "number": 2, "label": "blues"} +{"file_name": "test_05213.png", "caption": "Someone is playing a clean e-guitar with a lot of reverb and delay. Fingerpicking and creating dreamy rhythm and melodic patterns. In the background you can hear a drumloop and an e-bass. This song may be playing during a little live concert.", "data_idx": 3223, "number": 3, "label": "blues"} +{"file_name": "test_05214.png", "caption": "Low quality recording features an arpeggiated electric guitar melody. It sounds emotional and passionate.", "data_idx": 3225, "number": 0, "label": "blues"} +{"file_name": "test_05215.png", "caption": "Low quality recording features an arpeggiated electric guitar melody. It sounds emotional and passionate.", "data_idx": 3225, "number": 1, "label": "blues"} +{"file_name": "test_05216.png", "caption": "Low quality recording features an arpeggiated electric guitar melody. It sounds emotional and passionate.", "data_idx": 3225, "number": 2, "label": "blues"} +{"file_name": "test_05217.png", "caption": "Low quality recording features an arpeggiated electric guitar melody. It sounds emotional and passionate.", "data_idx": 3225, "number": 3, "label": "blues"} +{"file_name": "test_05218.png", "caption": "This is a jazz music piece. There is a trumpet and a saxophone playing the lead melody. The piano is playing the chords of the piece while the upright bass is playing a groovy bass line. The acoustic drums are playing a swing type beat for the rhythmic background. The atmosphere is groovy. This piece could be playing in the background at a coffee shop.", "data_idx": 3227, "number": 0, "label": "jazz"} +{"file_name": "test_05219.png", "caption": "This is a jazz music piece. There is a trumpet and a saxophone playing the lead melody. The piano is playing the chords of the piece while the upright bass is playing a groovy bass line. The acoustic drums are playing a swing type beat for the rhythmic background. The atmosphere is groovy. This piece could be playing in the background at a coffee shop.", "data_idx": 3227, "number": 1, "label": "jazz"} +{"file_name": "test_05220.png", "caption": "This is a jazz music piece. There is a trumpet and a saxophone playing the lead melody. The piano is playing the chords of the piece while the upright bass is playing a groovy bass line. The acoustic drums are playing a swing type beat for the rhythmic background. The atmosphere is groovy. This piece could be playing in the background at a coffee shop.", "data_idx": 3227, "number": 2, "label": "jazz"} +{"file_name": "test_05221.png", "caption": "This is a jazz music piece. There is a trumpet and a saxophone playing the lead melody. The piano is playing the chords of the piece while the upright bass is playing a groovy bass line. The acoustic drums are playing a swing type beat for the rhythmic background. The atmosphere is groovy. This piece could be playing in the background at a coffee shop.", "data_idx": 3227, "number": 3, "label": "jazz"} +{"file_name": "test_05222.png", "caption": "The low quality recording features plastic percussion hits. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3230, "number": 0, "label": "hiphop"} +{"file_name": "test_05223.png", "caption": "The low quality recording features plastic percussion hits. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3230, "number": 1, "label": "hiphop"} +{"file_name": "test_05224.png", "caption": "The low quality recording features a mellow harp melody that sounds mystical, soft, hypnotic and passionate.", "data_idx": 3231, "number": 0, "label": "classical"} +{"file_name": "test_05225.png", "caption": "The low quality recording features a mellow harp melody that sounds mystical, soft, hypnotic and passionate.", "data_idx": 3231, "number": 1, "label": "classical"} +{"file_name": "test_05226.png", "caption": "The low quality recording features a mellow harp melody that sounds mystical, soft, hypnotic and passionate.", "data_idx": 3231, "number": 2, "label": "classical"} +{"file_name": "test_05227.png", "caption": "The low quality recording features a mellow harp melody that sounds mystical, soft, hypnotic and passionate.", "data_idx": 3231, "number": 3, "label": "classical"} +{"file_name": "test_05228.png", "caption": "The low quality, noisy recording features a live performance of a traditional song and it consists of loud synchronized percussion and bagpipe melody playing over it. It sounds soulful and passionate - like something you would hear in Scotland, as the bagpipe is their traditional instrument.", "data_idx": 3234, "number": 0, "label": "metal"} +{"file_name": "test_05229.png", "caption": "The low quality, noisy recording features a live performance of a traditional song and it consists of loud synchronized percussion and bagpipe melody playing over it. It sounds soulful and passionate - like something you would hear in Scotland, as the bagpipe is their traditional instrument.", "data_idx": 3234, "number": 1, "label": "metal"} +{"file_name": "test_05230.png", "caption": "This is a clip of a singing bowl. The tone is high pitched and sustained and ringing. The song would be suitable for a meditation room or for any kind of environment wherein tranquility is the end goal.", "data_idx": 3238, "number": 0, "label": "classical"} +{"file_name": "test_05231.png", "caption": "This is a clip of a singing bowl. The tone is high pitched and sustained and ringing. The song would be suitable for a meditation room or for any kind of environment wherein tranquility is the end goal.", "data_idx": 3238, "number": 1, "label": "classical"} +{"file_name": "test_05232.png", "caption": "This is a clip of a singing bowl. The tone is high pitched and sustained and ringing. The song would be suitable for a meditation room or for any kind of environment wherein tranquility is the end goal.", "data_idx": 3238, "number": 2, "label": "classical"} +{"file_name": "test_05233.png", "caption": "This is a clip of a singing bowl. The tone is high pitched and sustained and ringing. The song would be suitable for a meditation room or for any kind of environment wherein tranquility is the end goal.", "data_idx": 3238, "number": 3, "label": "classical"} +{"file_name": "test_05234.png", "caption": "This is a low quality recording of a veena being played. This is a classical Hindustani song. The veena plays a note bending the string to a higher note and then descending back to the original note. The audio gets cut off intermittently. Briefly, during the places where the audio is heard, a tabla is heard. There are no voices in this song. This song can be played in a conservative Indian movie featuring a wedding scene.", "data_idx": 3242, "number": 0, "label": "hiphop"} +{"file_name": "test_05235.png", "caption": "This is a low quality recording of a veena being played. This is a classical Hindustani song. The veena plays a note bending the string to a higher note and then descending back to the original note. The audio gets cut off intermittently. Briefly, during the places where the audio is heard, a tabla is heard. There are no voices in this song. This song can be played in a conservative Indian movie featuring a wedding scene.", "data_idx": 3242, "number": 1, "label": "hiphop"} +{"file_name": "test_05236.png", "caption": "This is a low quality recording of a veena being played. This is a classical Hindustani song. The veena plays a note bending the string to a higher note and then descending back to the original note. The audio gets cut off intermittently. Briefly, during the places where the audio is heard, a tabla is heard. There are no voices in this song. This song can be played in a conservative Indian movie featuring a wedding scene.", "data_idx": 3242, "number": 2, "label": "hiphop"} +{"file_name": "test_05237.png", "caption": "This is a low quality recording of a veena being played. This is a classical Hindustani song. The veena plays a note bending the string to a higher note and then descending back to the original note. The audio gets cut off intermittently. Briefly, during the places where the audio is heard, a tabla is heard. There are no voices in this song. This song can be played in a conservative Indian movie featuring a wedding scene.", "data_idx": 3242, "number": 3, "label": "hiphop"} +{"file_name": "test_05238.png", "caption": "This amateur recording features an electric guitar playing hammer ons on the pentatonic scale. There is a backing track that fades away and stops playing. The electric guitar plays a chord and pauses. The guitar then strums one more chord four times. There are no voices in this song. This is an instrumental.", "data_idx": 3244, "number": 0, "label": "classical"} +{"file_name": "test_05239.png", "caption": "This amateur recording features an electric guitar playing hammer ons on the pentatonic scale. There is a backing track that fades away and stops playing. The electric guitar plays a chord and pauses. The guitar then strums one more chord four times. There are no voices in this song. This is an instrumental.", "data_idx": 3244, "number": 1, "label": "classical"} +{"file_name": "test_05240.png", "caption": "The low quality recording features a compilation of basketball game highlights and it consists of crowd cheering and floor squeaking sound effects, followed by commentary of energetic male vocals, while a R&B song is playing in the background. The song consists of a boomy kick, claps, shimmering hi hats, high pitched piano chord progression and passionate male vocals, alongside wide male doubling vocals, singing over it. It sounds energetic and exciting.", "data_idx": 3248, "number": 0, "label": "hiphop"} +{"file_name": "test_05241.png", "caption": "The low quality recording features a compilation of basketball game highlights and it consists of crowd cheering and floor squeaking sound effects, followed by commentary of energetic male vocals, while a R&B song is playing in the background. The song consists of a boomy kick, claps, shimmering hi hats, high pitched piano chord progression and passionate male vocals, alongside wide male doubling vocals, singing over it. It sounds energetic and exciting.", "data_idx": 3248, "number": 1, "label": "hiphop"} +{"file_name": "test_05242.png", "caption": "The low quality recording features a compilation of basketball game highlights and it consists of crowd cheering and floor squeaking sound effects, followed by commentary of energetic male vocals, while a R&B song is playing in the background. The song consists of a boomy kick, claps, shimmering hi hats, high pitched piano chord progression and passionate male vocals, alongside wide male doubling vocals, singing over it. It sounds energetic and exciting.", "data_idx": 3248, "number": 2, "label": "hiphop"} +{"file_name": "test_05243.png", "caption": "The low quality recording features a compilation of basketball game highlights and it consists of crowd cheering and floor squeaking sound effects, followed by commentary of energetic male vocals, while a R&B song is playing in the background. The song consists of a boomy kick, claps, shimmering hi hats, high pitched piano chord progression and passionate male vocals, alongside wide male doubling vocals, singing over it. It sounds energetic and exciting.", "data_idx": 3248, "number": 3, "label": "hiphop"} +{"file_name": "test_05244.png", "caption": "This audio contains someone talking while playing a rhythm with drumsticks on a drum pad. This is an amateur recording. This may be playing live while watching a lesson during drum class.", "data_idx": 3249, "number": 0, "label": "blues"} +{"file_name": "test_05245.png", "caption": "This audio contains someone talking while playing a rhythm with drumsticks on a drum pad. This is an amateur recording. This may be playing live while watching a lesson during drum class.", "data_idx": 3249, "number": 1, "label": "blues"} +{"file_name": "test_05246.png", "caption": "This audio contains someone talking while playing a rhythm with drumsticks on a drum pad. This is an amateur recording. This may be playing live while watching a lesson during drum class.", "data_idx": 3249, "number": 2, "label": "blues"} +{"file_name": "test_05247.png", "caption": "This audio contains someone talking while playing a rhythm with drumsticks on a drum pad. This is an amateur recording. This may be playing live while watching a lesson during drum class.", "data_idx": 3249, "number": 3, "label": "blues"} +{"file_name": "test_05248.png", "caption": "This is an instrumental theremin piece. The theremin is making vague sound effects. There is an eerie atmosphere to this performance. This recording could be sampled for use as sound effects in movies.", "data_idx": 3250, "number": 0, "label": "hiphop"} +{"file_name": "test_05249.png", "caption": "This is an instrumental theremin piece. The theremin is making vague sound effects. There is an eerie atmosphere to this performance. This recording could be sampled for use as sound effects in movies.", "data_idx": 3250, "number": 1, "label": "hiphop"} +{"file_name": "test_05250.png", "caption": "This is an instrumental theremin piece. The theremin is making vague sound effects. There is an eerie atmosphere to this performance. This recording could be sampled for use as sound effects in movies.", "data_idx": 3250, "number": 2, "label": "hiphop"} +{"file_name": "test_05251.png", "caption": "This is an instrumental theremin piece. The theremin is making vague sound effects. There is an eerie atmosphere to this performance. This recording could be sampled for use as sound effects in movies.", "data_idx": 3250, "number": 3, "label": "hiphop"} +{"file_name": "test_05252.png", "caption": "This is an amateur cover of a guitar solo in a heavy metal piece. The solo is being played on an electric guitar. There is a rapid procession of high-pitch notes in the solo. The feel is complex and aggressive. The quality of the recording is a bit poor. If the quality issue can be resolved, this piece could be sampled for use in beat-making.", "data_idx": 3253, "number": 0, "label": "metal"} +{"file_name": "test_05253.png", "caption": "This is an amateur cover of a guitar solo in a heavy metal piece. The solo is being played on an electric guitar. There is a rapid procession of high-pitch notes in the solo. The feel is complex and aggressive. The quality of the recording is a bit poor. If the quality issue can be resolved, this piece could be sampled for use in beat-making.", "data_idx": 3253, "number": 1, "label": "metal"} +{"file_name": "test_05254.png", "caption": "The low quality recording features a live performance of an orchestra playing sustained brass melody, shimmering cymbals and sustained strings melody. It sounds muddy and muffled, as it was probably recorded with a poor quality microphone, but also passionate. The recording is noisy and in mono.", "data_idx": 3257, "number": 0, "label": "classical"} +{"file_name": "test_05255.png", "caption": "The low quality recording features a live performance of an orchestra playing sustained brass melody, shimmering cymbals and sustained strings melody. It sounds muddy and muffled, as it was probably recorded with a poor quality microphone, but also passionate. The recording is noisy and in mono.", "data_idx": 3257, "number": 1, "label": "classical"} +{"file_name": "test_05256.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking, after which there are a few different pitch cowbell one shots. The recording is in mono and it is noisy.", "data_idx": 3259, "number": 0, "label": "blues"} +{"file_name": "test_05257.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking, after which there are a few different pitch cowbell one shots. The recording is in mono and it is noisy.", "data_idx": 3259, "number": 1, "label": "blues"} +{"file_name": "test_05258.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking, after which there are a few different pitch cowbell one shots. The recording is in mono and it is noisy.", "data_idx": 3259, "number": 2, "label": "blues"} +{"file_name": "test_05259.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking, after which there are a few different pitch cowbell one shots. The recording is in mono and it is noisy.", "data_idx": 3259, "number": 3, "label": "blues"} +{"file_name": "test_05260.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings, woodwinds melody, aggressive strings lick, wooden percussion and repetitive violin melody. It sounds suspenseful and intense.", "data_idx": 3260, "number": 0, "label": "rock"} +{"file_name": "test_05261.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings, woodwinds melody, aggressive strings lick, wooden percussion and repetitive violin melody. It sounds suspenseful and intense.", "data_idx": 3260, "number": 1, "label": "rock"} +{"file_name": "test_05262.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings, woodwinds melody, aggressive strings lick, wooden percussion and repetitive violin melody. It sounds suspenseful and intense.", "data_idx": 3260, "number": 2, "label": "rock"} +{"file_name": "test_05263.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings, woodwinds melody, aggressive strings lick, wooden percussion and repetitive violin melody. It sounds suspenseful and intense.", "data_idx": 3260, "number": 3, "label": "rock"} +{"file_name": "test_05264.png", "caption": "This amateur recording features a synth string swell at the beginning of the audio. Alien sounds are played in the background. This is followed by a crash cymbal struck once. Other instruments are not audible due to the low quality of audio. There are no voices in this song. This is an instrumental song.", "data_idx": 3261, "number": 0, "label": "hiphop"} +{"file_name": "test_05265.png", "caption": "This amateur recording features a synth string swell at the beginning of the audio. Alien sounds are played in the background. This is followed by a crash cymbal struck once. Other instruments are not audible due to the low quality of audio. There are no voices in this song. This is an instrumental song.", "data_idx": 3261, "number": 1, "label": "hiphop"} +{"file_name": "test_05266.png", "caption": "This is a pop music piece with an early 2000s feel. There is one male and one female vocalist singing melodically. The melody is being played by the electric guitar and the keyboard guitar with the bass guitar in the background. The rhythm is provided by the acoustic drums with occasional clap sounds. The atmosphere is easygoing and danceable. This piece could be used in the soundtrack of a sit-com movie or a TV show.", "data_idx": 3262, "number": 0, "label": "disco"} +{"file_name": "test_05267.png", "caption": "This is a pop music piece with an early 2000s feel. There is one male and one female vocalist singing melodically. The melody is being played by the electric guitar and the keyboard guitar with the bass guitar in the background. The rhythm is provided by the acoustic drums with occasional clap sounds. The atmosphere is easygoing and danceable. This piece could be used in the soundtrack of a sit-com movie or a TV show.", "data_idx": 3262, "number": 1, "label": "disco"} +{"file_name": "test_05268.png", "caption": "This is a pop music piece with an early 2000s feel. There is one male and one female vocalist singing melodically. The melody is being played by the electric guitar and the keyboard guitar with the bass guitar in the background. The rhythm is provided by the acoustic drums with occasional clap sounds. The atmosphere is easygoing and danceable. This piece could be used in the soundtrack of a sit-com movie or a TV show.", "data_idx": 3262, "number": 2, "label": "disco"} +{"file_name": "test_05269.png", "caption": "This is a pop music piece with an early 2000s feel. There is one male and one female vocalist singing melodically. The melody is being played by the electric guitar and the keyboard guitar with the bass guitar in the background. The rhythm is provided by the acoustic drums with occasional clap sounds. The atmosphere is easygoing and danceable. This piece could be used in the soundtrack of a sit-com movie or a TV show.", "data_idx": 3262, "number": 3, "label": "disco"} +{"file_name": "test_05270.png", "caption": "This music is instrumental. The tempo is medium with an electric guitar harmony. The music is a catchy riff with a male voice speaking in a foreign language. This clip is an electric guitar lesson/ tutorial.", "data_idx": 3263, "number": 0, "label": "hiphop"} +{"file_name": "test_05271.png", "caption": "This music is instrumental. The tempo is medium with an electric guitar harmony. The music is a catchy riff with a male voice speaking in a foreign language. This clip is an electric guitar lesson/ tutorial.", "data_idx": 3263, "number": 1, "label": "hiphop"} +{"file_name": "test_05272.png", "caption": "This music is instrumental. The tempo is medium with an electric guitar harmony. The music is a catchy riff with a male voice speaking in a foreign language. This clip is an electric guitar lesson/ tutorial.", "data_idx": 3263, "number": 2, "label": "hiphop"} +{"file_name": "test_05273.png", "caption": "This music is instrumental. The tempo is medium with an electric guitar harmony. The music is a catchy riff with a male voice speaking in a foreign language. This clip is an electric guitar lesson/ tutorial.", "data_idx": 3263, "number": 3, "label": "hiphop"} +{"file_name": "test_05274.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing a romantic lead, steady drumming, rock drumming, percussive bass line, cymbals crashing and guitar strumming rhythm. The song is exciting and youthful. The song has a bad audio quality.", "data_idx": 3264, "number": 0, "label": "rock"} +{"file_name": "test_05275.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing a romantic lead, steady drumming, rock drumming, percussive bass line, cymbals crashing and guitar strumming rhythm. The song is exciting and youthful. The song has a bad audio quality.", "data_idx": 3264, "number": 1, "label": "rock"} +{"file_name": "test_05276.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing a romantic lead, steady drumming, rock drumming, percussive bass line, cymbals crashing and guitar strumming rhythm. The song is exciting and youthful. The song has a bad audio quality.", "data_idx": 3264, "number": 2, "label": "rock"} +{"file_name": "test_05277.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing a romantic lead, steady drumming, rock drumming, percussive bass line, cymbals crashing and guitar strumming rhythm. The song is exciting and youthful. The song has a bad audio quality.", "data_idx": 3264, "number": 3, "label": "rock"} +{"file_name": "test_05278.png", "caption": "This is the recording of a guitar lesson video. There is a male instructor first performing the tune and then describing what he is playing. The tune is being played on a clean sounding electric guitar and there is a blues feel to it. The atmosphere is easygoing. The parts the male voice is not heard can be sampled for use in beat-making.", "data_idx": 3265, "number": 0, "label": "blues"} +{"file_name": "test_05279.png", "caption": "This is the recording of a guitar lesson video. There is a male instructor first performing the tune and then describing what he is playing. The tune is being played on a clean sounding electric guitar and there is a blues feel to it. The atmosphere is easygoing. The parts the male voice is not heard can be sampled for use in beat-making.", "data_idx": 3265, "number": 1, "label": "blues"} +{"file_name": "test_05280.png", "caption": "This is the recording of a guitar lesson video. There is a male instructor first performing the tune and then describing what he is playing. The tune is being played on a clean sounding electric guitar and there is a blues feel to it. The atmosphere is easygoing. The parts the male voice is not heard can be sampled for use in beat-making.", "data_idx": 3265, "number": 2, "label": "blues"} +{"file_name": "test_05281.png", "caption": "This is the recording of a guitar lesson video. There is a male instructor first performing the tune and then describing what he is playing. The tune is being played on a clean sounding electric guitar and there is a blues feel to it. The atmosphere is easygoing. The parts the male voice is not heard can be sampled for use in beat-making.", "data_idx": 3265, "number": 3, "label": "blues"} +{"file_name": "test_05282.png", "caption": "This is a live performance by a female vocal quartet. They harmonise their voices and sing in a vibrant and cheerful way. They sing in French. Later, we hear two violins playing in sync as well as an accordion. The recording quality of the audio is poor.", "data_idx": 3267, "number": 0, "label": "classical"} +{"file_name": "test_05283.png", "caption": "This is a live performance by a female vocal quartet. They harmonise their voices and sing in a vibrant and cheerful way. They sing in French. Later, we hear two violins playing in sync as well as an accordion. The recording quality of the audio is poor.", "data_idx": 3267, "number": 1, "label": "classical"} +{"file_name": "test_05284.png", "caption": "This is a live performance by a female vocal quartet. They harmonise their voices and sing in a vibrant and cheerful way. They sing in French. Later, we hear two violins playing in sync as well as an accordion. The recording quality of the audio is poor.", "data_idx": 3267, "number": 2, "label": "classical"} +{"file_name": "test_05285.png", "caption": "This is a live performance by a female vocal quartet. They harmonise their voices and sing in a vibrant and cheerful way. They sing in French. Later, we hear two violins playing in sync as well as an accordion. The recording quality of the audio is poor.", "data_idx": 3267, "number": 3, "label": "classical"} +{"file_name": "test_05286.png", "caption": "This audio contains a scary song that may belong in a horror movie. There is a tuned wind sound, synth pads and drones creating an uncomfortable atmosphere. On top of that a synth pluck sound is playing a dissonant melody and a piano is playing one single note in the mid range.", "data_idx": 3268, "number": 0, "label": "classical"} +{"file_name": "test_05287.png", "caption": "This audio contains a scary song that may belong in a horror movie. There is a tuned wind sound, synth pads and drones creating an uncomfortable atmosphere. On top of that a synth pluck sound is playing a dissonant melody and a piano is playing one single note in the mid range.", "data_idx": 3268, "number": 1, "label": "classical"} +{"file_name": "test_05288.png", "caption": "This audio contains a scary song that may belong in a horror movie. There is a tuned wind sound, synth pads and drones creating an uncomfortable atmosphere. On top of that a synth pluck sound is playing a dissonant melody and a piano is playing one single note in the mid range.", "data_idx": 3268, "number": 2, "label": "classical"} +{"file_name": "test_05289.png", "caption": "This audio contains a scary song that may belong in a horror movie. There is a tuned wind sound, synth pads and drones creating an uncomfortable atmosphere. On top of that a synth pluck sound is playing a dissonant melody and a piano is playing one single note in the mid range.", "data_idx": 3268, "number": 3, "label": "classical"} +{"file_name": "test_05290.png", "caption": "The low quality recording features a clarinet melody. It sounds harsh, loud and the recording is noisy and in mono.", "data_idx": 3270, "number": 0, "label": "hiphop"} +{"file_name": "test_05291.png", "caption": "The low quality recording features a clarinet melody. It sounds harsh, loud and the recording is noisy and in mono.", "data_idx": 3270, "number": 1, "label": "hiphop"} +{"file_name": "test_05292.png", "caption": "The low quality recording features a clarinet melody. It sounds harsh, loud and the recording is noisy and in mono.", "data_idx": 3270, "number": 2, "label": "hiphop"} +{"file_name": "test_05293.png", "caption": "The low quality recording features a clarinet melody. It sounds harsh, loud and the recording is noisy and in mono.", "data_idx": 3270, "number": 3, "label": "hiphop"} +{"file_name": "test_05294.png", "caption": "This clip features a heavenly sounding harp. The piece is arpeggio driven and elicits a feeling of tranquility and peace. The harp is full bodied and the instrumentalist balances the high tones with a deep bass sound.", "data_idx": 3271, "number": 0, "label": "jazz"} +{"file_name": "test_05295.png", "caption": "This clip features a heavenly sounding harp. The piece is arpeggio driven and elicits a feeling of tranquility and peace. The harp is full bodied and the instrumentalist balances the high tones with a deep bass sound.", "data_idx": 3271, "number": 1, "label": "jazz"} +{"file_name": "test_05296.png", "caption": "This clip features a heavenly sounding harp. The piece is arpeggio driven and elicits a feeling of tranquility and peace. The harp is full bodied and the instrumentalist balances the high tones with a deep bass sound.", "data_idx": 3271, "number": 2, "label": "jazz"} +{"file_name": "test_05297.png", "caption": "This clip features a heavenly sounding harp. The piece is arpeggio driven and elicits a feeling of tranquility and peace. The harp is full bodied and the instrumentalist balances the high tones with a deep bass sound.", "data_idx": 3271, "number": 3, "label": "jazz"} +{"file_name": "test_05298.png", "caption": "This music is instrumental. The tempo is medium fast with boomy bass, turntable scratching and digitally arranged music. The music is muffled as the audio quality is inferior but the beats are punchy, buoyant, bouncy, youthful, groovy and energetic. This music is a turntable scratching technique.", "data_idx": 3273, "number": 0, "label": "hiphop"} +{"file_name": "test_05299.png", "caption": "This music is instrumental. The tempo is medium fast with boomy bass, turntable scratching and digitally arranged music. The music is muffled as the audio quality is inferior but the beats are punchy, buoyant, bouncy, youthful, groovy and energetic. This music is a turntable scratching technique.", "data_idx": 3273, "number": 1, "label": "hiphop"} +{"file_name": "test_05300.png", "caption": "This music is instrumental. The tempo is medium fast with boomy bass, turntable scratching and digitally arranged music. The music is muffled as the audio quality is inferior but the beats are punchy, buoyant, bouncy, youthful, groovy and energetic. This music is a turntable scratching technique.", "data_idx": 3273, "number": 2, "label": "hiphop"} +{"file_name": "test_05301.png", "caption": "This music is instrumental. The tempo is medium fast with boomy bass, turntable scratching and digitally arranged music. The music is muffled as the audio quality is inferior but the beats are punchy, buoyant, bouncy, youthful, groovy and energetic. This music is a turntable scratching technique.", "data_idx": 3273, "number": 3, "label": "hiphop"} +{"file_name": "test_05302.png", "caption": "The low quality recording features a classical song that consists of passionate male opera vocal singing over wide strings melody, wide brass melody and woodwinds melody, over which there is a fruity male vocal talking. It sounds passionate, epic and powerful - like something for commercial.", "data_idx": 3274, "number": 0, "label": "reggae"} +{"file_name": "test_05303.png", "caption": "The low quality recording features a classical song that consists of passionate male opera vocal singing over wide strings melody, wide brass melody and woodwinds melody, over which there is a fruity male vocal talking. It sounds passionate, epic and powerful - like something for commercial.", "data_idx": 3274, "number": 1, "label": "reggae"} +{"file_name": "test_05304.png", "caption": "The low quality recording features a classical song that consists of passionate male opera vocal singing over wide strings melody, wide brass melody and woodwinds melody, over which there is a fruity male vocal talking. It sounds passionate, epic and powerful - like something for commercial.", "data_idx": 3274, "number": 2, "label": "reggae"} +{"file_name": "test_05305.png", "caption": "The low quality recording features a classical song that consists of passionate male opera vocal singing over wide strings melody, wide brass melody and woodwinds melody, over which there is a fruity male vocal talking. It sounds passionate, epic and powerful - like something for commercial.", "data_idx": 3274, "number": 3, "label": "reggae"} +{"file_name": "test_05306.png", "caption": "The low quality recording features a children's song that consists of a clock ticking, church bells melody, plucked strings melody and flat female vocal singing over it. It sounds happy, joyful and fun. The recording is mono and noisy.", "data_idx": 3276, "number": 0, "label": "reggae"} +{"file_name": "test_05307.png", "caption": "The low quality recording features a children's song that consists of a clock ticking, church bells melody, plucked strings melody and flat female vocal singing over it. It sounds happy, joyful and fun. The recording is mono and noisy.", "data_idx": 3276, "number": 1, "label": "reggae"} +{"file_name": "test_05308.png", "caption": "The low quality recording features a children's song that consists of a clock ticking, church bells melody, plucked strings melody and flat female vocal singing over it. It sounds happy, joyful and fun. The recording is mono and noisy.", "data_idx": 3276, "number": 2, "label": "reggae"} +{"file_name": "test_05309.png", "caption": "The low quality recording features a children's song that consists of a clock ticking, church bells melody, plucked strings melody and flat female vocal singing over it. It sounds happy, joyful and fun. The recording is mono and noisy.", "data_idx": 3276, "number": 3, "label": "reggae"} +{"file_name": "test_05310.png", "caption": "This audio contains a male voice talking while a theremin is playing a melody in the mid- to higher register with a lot of vibrato. Celli and upright basses are plucking a strange melody in the lower register creating tension. This song may be playing in an art/alien movie.", "data_idx": 3279, "number": 0, "label": "country"} +{"file_name": "test_05311.png", "caption": "This audio contains a male voice talking while a theremin is playing a melody in the mid- to higher register with a lot of vibrato. Celli and upright basses are plucking a strange melody in the lower register creating tension. This song may be playing in an art/alien movie.", "data_idx": 3279, "number": 1, "label": "country"} +{"file_name": "test_05312.png", "caption": "This audio contains a male voice talking while a theremin is playing a melody in the mid- to higher register with a lot of vibrato. Celli and upright basses are plucking a strange melody in the lower register creating tension. This song may be playing in an art/alien movie.", "data_idx": 3279, "number": 2, "label": "country"} +{"file_name": "test_05313.png", "caption": "This audio contains a male voice talking while a theremin is playing a melody in the mid- to higher register with a lot of vibrato. Celli and upright basses are plucking a strange melody in the lower register creating tension. This song may be playing in an art/alien movie.", "data_idx": 3279, "number": 3, "label": "country"} +{"file_name": "test_05314.png", "caption": "This is a street performance of an instrumental music piece. The performer is playing a melody on the didgeridoo while he is using various percussive elements to create the rhythmic background. The atmosphere is eccentric and there is a tribal sound to the piece. This piece could be used in the soundtrack of an adventure movie with a jungle or a desert setting.", "data_idx": 3282, "number": 0, "label": "metal"} +{"file_name": "test_05315.png", "caption": "This is a street performance of an instrumental music piece. The performer is playing a melody on the didgeridoo while he is using various percussive elements to create the rhythmic background. The atmosphere is eccentric and there is a tribal sound to the piece. This piece could be used in the soundtrack of an adventure movie with a jungle or a desert setting.", "data_idx": 3282, "number": 1, "label": "metal"} +{"file_name": "test_05316.png", "caption": "This is a street performance of an instrumental music piece. The performer is playing a melody on the didgeridoo while he is using various percussive elements to create the rhythmic background. The atmosphere is eccentric and there is a tribal sound to the piece. This piece could be used in the soundtrack of an adventure movie with a jungle or a desert setting.", "data_idx": 3282, "number": 2, "label": "metal"} +{"file_name": "test_05317.png", "caption": "This is a street performance of an instrumental music piece. The performer is playing a melody on the didgeridoo while he is using various percussive elements to create the rhythmic background. The atmosphere is eccentric and there is a tribal sound to the piece. This piece could be used in the soundtrack of an adventure movie with a jungle or a desert setting.", "data_idx": 3282, "number": 3, "label": "metal"} +{"file_name": "test_05318.png", "caption": "The song is an instrumental. The tempo is medium with a harpsichord being played expertly with no other instrumentation. The song is melancholic and exciting. The song is western classical baroque piece that evokes a sense of grandeur.", "data_idx": 3283, "number": 0, "label": "classical"} +{"file_name": "test_05319.png", "caption": "The song is an instrumental. The tempo is medium with a harpsichord being played expertly with no other instrumentation. The song is melancholic and exciting. The song is western classical baroque piece that evokes a sense of grandeur.", "data_idx": 3283, "number": 1, "label": "classical"} +{"file_name": "test_05320.png", "caption": "The song is an instrumental. The tempo is medium with a harpsichord being played expertly with no other instrumentation. The song is melancholic and exciting. The song is western classical baroque piece that evokes a sense of grandeur.", "data_idx": 3283, "number": 2, "label": "classical"} +{"file_name": "test_05321.png", "caption": "The song is an instrumental. The tempo is medium with a harpsichord being played expertly with no other instrumentation. The song is melancholic and exciting. The song is western classical baroque piece that evokes a sense of grandeur.", "data_idx": 3283, "number": 3, "label": "classical"} +{"file_name": "test_05322.png", "caption": "Here we have an energetic, up-tempo japanese rock song. The drumming is potent, punchy and predominant. The drummer plays the ride cymbal frequently, creating a shimmery effect in the song. The female singer has a calming voice.", "data_idx": 3284, "number": 0, "label": "metal"} +{"file_name": "test_05323.png", "caption": "Here we have an energetic, up-tempo japanese rock song. The drumming is potent, punchy and predominant. The drummer plays the ride cymbal frequently, creating a shimmery effect in the song. The female singer has a calming voice.", "data_idx": 3284, "number": 1, "label": "metal"} +{"file_name": "test_05324.png", "caption": "Here we have an energetic, up-tempo japanese rock song. The drumming is potent, punchy and predominant. The drummer plays the ride cymbal frequently, creating a shimmery effect in the song. The female singer has a calming voice.", "data_idx": 3284, "number": 2, "label": "metal"} +{"file_name": "test_05325.png", "caption": "Here we have an energetic, up-tempo japanese rock song. The drumming is potent, punchy and predominant. The drummer plays the ride cymbal frequently, creating a shimmery effect in the song. The female singer has a calming voice.", "data_idx": 3284, "number": 3, "label": "metal"} +{"file_name": "test_05326.png", "caption": "This music is instrumental. The tempo is slow with a French Horn playing the Titanic soundtrack. The music is romantic, emotional, nostalgic, loud, lucid ,sad and poignant, mellow and sentimental. This music is a French Horn instrumental.", "data_idx": 3286, "number": 0, "label": "jazz"} +{"file_name": "test_05327.png", "caption": "This music is instrumental. The tempo is slow with a French Horn playing the Titanic soundtrack. The music is romantic, emotional, nostalgic, loud, lucid ,sad and poignant, mellow and sentimental. This music is a French Horn instrumental.", "data_idx": 3286, "number": 1, "label": "jazz"} +{"file_name": "test_05328.png", "caption": "This music is instrumental. The tempo is slow with a French Horn playing the Titanic soundtrack. The music is romantic, emotional, nostalgic, loud, lucid ,sad and poignant, mellow and sentimental. This music is a French Horn instrumental.", "data_idx": 3286, "number": 2, "label": "jazz"} +{"file_name": "test_05329.png", "caption": "This music is instrumental. The tempo is slow with a French Horn playing the Titanic soundtrack. The music is romantic, emotional, nostalgic, loud, lucid ,sad and poignant, mellow and sentimental. This music is a French Horn instrumental.", "data_idx": 3286, "number": 3, "label": "jazz"} +{"file_name": "test_05330.png", "caption": "A female vocalist sings this spirited pop. The tempo is fast with infectious piano melody, slick drumming, funky bass, baritone saxophone, Hammond organ accompaniment with enthusiastic vocals. The song is fresh, youthful, buoyant; energetic, high-spirited, cheeky, suggestive, playful and groovy. This is a hit Pop Song.", "data_idx": 3288, "number": 0, "label": "disco"} +{"file_name": "test_05331.png", "caption": "A female vocalist sings this spirited pop. The tempo is fast with infectious piano melody, slick drumming, funky bass, baritone saxophone, Hammond organ accompaniment with enthusiastic vocals. The song is fresh, youthful, buoyant; energetic, high-spirited, cheeky, suggestive, playful and groovy. This is a hit Pop Song.", "data_idx": 3288, "number": 1, "label": "disco"} +{"file_name": "test_05332.png", "caption": "A female vocalist sings this spirited pop. The tempo is fast with infectious piano melody, slick drumming, funky bass, baritone saxophone, Hammond organ accompaniment with enthusiastic vocals. The song is fresh, youthful, buoyant; energetic, high-spirited, cheeky, suggestive, playful and groovy. This is a hit Pop Song.", "data_idx": 3288, "number": 2, "label": "disco"} +{"file_name": "test_05333.png", "caption": "A female vocalist sings this spirited pop. The tempo is fast with infectious piano melody, slick drumming, funky bass, baritone saxophone, Hammond organ accompaniment with enthusiastic vocals. The song is fresh, youthful, buoyant; energetic, high-spirited, cheeky, suggestive, playful and groovy. This is a hit Pop Song.", "data_idx": 3288, "number": 3, "label": "disco"} +{"file_name": "test_05334.png", "caption": "This music is instrumental. The tempo is fast with an energetic electric guitar lead harmony. The music is emphatic, seasoned, enthusiastic,engaging and high-spirited. This music is a Hard Rock instrumental.", "data_idx": 3289, "number": 0, "label": "reggae"} +{"file_name": "test_05335.png", "caption": "This music is instrumental. The tempo is fast with an energetic electric guitar lead harmony. The music is emphatic, seasoned, enthusiastic,engaging and high-spirited. This music is a Hard Rock instrumental.", "data_idx": 3289, "number": 1, "label": "reggae"} +{"file_name": "test_05336.png", "caption": "This music is instrumental. The tempo is fast with an energetic electric guitar lead harmony. The music is emphatic, seasoned, enthusiastic,engaging and high-spirited. This music is a Hard Rock instrumental.", "data_idx": 3289, "number": 2, "label": "reggae"} +{"file_name": "test_05337.png", "caption": "This music is instrumental. The tempo is fast with an energetic electric guitar lead harmony. The music is emphatic, seasoned, enthusiastic,engaging and high-spirited. This music is a Hard Rock instrumental.", "data_idx": 3289, "number": 3, "label": "reggae"} +{"file_name": "test_05338.png", "caption": "The low quality recording features a passionate male vocal singing over groovy bass piano melody, muted brass melody, sustained strings melody and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 3291, "number": 0, "label": "country"} +{"file_name": "test_05339.png", "caption": "The low quality recording features a passionate male vocal singing over groovy bass piano melody, muted brass melody, sustained strings melody and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 3291, "number": 1, "label": "country"} +{"file_name": "test_05340.png", "caption": "The low quality recording features a passionate male vocal singing over groovy bass piano melody, muted brass melody, sustained strings melody and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 3291, "number": 2, "label": "country"} +{"file_name": "test_05341.png", "caption": "The low quality recording features a passionate male vocal singing over groovy bass piano melody, muted brass melody, sustained strings melody and shimmering hi hats. It sounds passionate and soulful.", "data_idx": 3291, "number": 3, "label": "country"} +{"file_name": "test_05342.png", "caption": "This is a house remix of a pop music piece. The female vocal from the original track is being repeated as a sample. There is a strong bass and a loud electronic drum beat in the background. The piece is upbeat and energetic. It could be played at nightclubs, dance clubs and DJ performances.", "data_idx": 3292, "number": 0, "label": "hiphop"} +{"file_name": "test_05343.png", "caption": "This is a house remix of a pop music piece. The female vocal from the original track is being repeated as a sample. There is a strong bass and a loud electronic drum beat in the background. The piece is upbeat and energetic. It could be played at nightclubs, dance clubs and DJ performances.", "data_idx": 3292, "number": 1, "label": "hiphop"} +{"file_name": "test_05344.png", "caption": "The low quality recording features a hip hop song where a fruity male vocal is rapping over punchy kick and snare hits, shimmering hi hats, groovy bass and brass melody. It sounds bouncy, groovy and upbeat.", "data_idx": 3293, "number": 0, "label": "hiphop"} +{"file_name": "test_05345.png", "caption": "The low quality recording features a hip hop song where a fruity male vocal is rapping over punchy kick and snare hits, shimmering hi hats, groovy bass and brass melody. It sounds bouncy, groovy and upbeat.", "data_idx": 3293, "number": 1, "label": "hiphop"} +{"file_name": "test_05346.png", "caption": "This gospel song features a male voice singing the main melody in an emotional voice. This is accompanied by the percussion playing continuously in sixteenth notes on the ride cymbal. The bass plays a groovy lick and fill based on the root note of the chord. The piano plays a chord followed by a fill and an ascending run. This song can be played in a Christian movie.", "data_idx": 3298, "number": 0, "label": "classical"} +{"file_name": "test_05347.png", "caption": "This gospel song features a male voice singing the main melody in an emotional voice. This is accompanied by the percussion playing continuously in sixteenth notes on the ride cymbal. The bass plays a groovy lick and fill based on the root note of the chord. The piano plays a chord followed by a fill and an ascending run. This song can be played in a Christian movie.", "data_idx": 3298, "number": 1, "label": "classical"} +{"file_name": "test_05348.png", "caption": "This gospel song features a male voice singing the main melody in an emotional voice. This is accompanied by the percussion playing continuously in sixteenth notes on the ride cymbal. The bass plays a groovy lick and fill based on the root note of the chord. The piano plays a chord followed by a fill and an ascending run. This song can be played in a Christian movie.", "data_idx": 3298, "number": 2, "label": "classical"} +{"file_name": "test_05349.png", "caption": "This gospel song features a male voice singing the main melody in an emotional voice. This is accompanied by the percussion playing continuously in sixteenth notes on the ride cymbal. The bass plays a groovy lick and fill based on the root note of the chord. The piano plays a chord followed by a fill and an ascending run. This song can be played in a Christian movie.", "data_idx": 3298, "number": 3, "label": "classical"} +{"file_name": "test_05350.png", "caption": "This is a mellow and soulful 2000s R&B song. The female vocalist gives a sensual and passionate vocal performance. The song is seductive, intimate and relaxed. There are string-like sounds and a warm and bright pad-synth along with the mellow groovy drum beat.", "data_idx": 3299, "number": 0, "label": "disco"} +{"file_name": "test_05351.png", "caption": "This is a mellow and soulful 2000s R&B song. The female vocalist gives a sensual and passionate vocal performance. The song is seductive, intimate and relaxed. There are string-like sounds and a warm and bright pad-synth along with the mellow groovy drum beat.", "data_idx": 3299, "number": 1, "label": "disco"} +{"file_name": "test_05352.png", "caption": "This is a mellow and soulful 2000s R&B song. The female vocalist gives a sensual and passionate vocal performance. The song is seductive, intimate and relaxed. There are string-like sounds and a warm and bright pad-synth along with the mellow groovy drum beat.", "data_idx": 3299, "number": 2, "label": "disco"} +{"file_name": "test_05353.png", "caption": "This is a mellow and soulful 2000s R&B song. The female vocalist gives a sensual and passionate vocal performance. The song is seductive, intimate and relaxed. There are string-like sounds and a warm and bright pad-synth along with the mellow groovy drum beat.", "data_idx": 3299, "number": 3, "label": "disco"} +{"file_name": "test_05354.png", "caption": "This song features the shofar being played. The shofar is blown and the pitch quickly changes from low to high while being blown. This is a religious instrument. There are no other instruments in this song. There are no voices in this song. This song can be played in a movie scene as a battle call.", "data_idx": 3300, "number": 0, "label": "jazz"} +{"file_name": "test_05355.png", "caption": "This song features the shofar being played. The shofar is blown and the pitch quickly changes from low to high while being blown. This is a religious instrument. There are no other instruments in this song. There are no voices in this song. This song can be played in a movie scene as a battle call.", "data_idx": 3300, "number": 1, "label": "jazz"} +{"file_name": "test_05356.png", "caption": "This song features the shofar being played. The shofar is blown and the pitch quickly changes from low to high while being blown. This is a religious instrument. There are no other instruments in this song. There are no voices in this song. This song can be played in a movie scene as a battle call.", "data_idx": 3300, "number": 2, "label": "jazz"} +{"file_name": "test_05357.png", "caption": "This song features the shofar being played. The shofar is blown and the pitch quickly changes from low to high while being blown. This is a religious instrument. There are no other instruments in this song. There are no voices in this song. This song can be played in a movie scene as a battle call.", "data_idx": 3300, "number": 3, "label": "jazz"} +{"file_name": "test_05358.png", "caption": "The low quality recording features a rock song where dissonant female vocals are singing over electric guitar melody, groovy bass guitar, hollow snare, shimmering hi hats and soft kick hits. It sounds sloppy and the recording is noisy.", "data_idx": 3301, "number": 0, "label": "blues"} +{"file_name": "test_05359.png", "caption": "The low quality recording features a rock song where dissonant female vocals are singing over electric guitar melody, groovy bass guitar, hollow snare, shimmering hi hats and soft kick hits. It sounds sloppy and the recording is noisy.", "data_idx": 3301, "number": 1, "label": "blues"} +{"file_name": "test_05360.png", "caption": "The low quality recording features a rock song where dissonant female vocals are singing over electric guitar melody, groovy bass guitar, hollow snare, shimmering hi hats and soft kick hits. It sounds sloppy and the recording is noisy.", "data_idx": 3301, "number": 2, "label": "blues"} +{"file_name": "test_05361.png", "caption": "The low quality recording features a rock song where dissonant female vocals are singing over electric guitar melody, groovy bass guitar, hollow snare, shimmering hi hats and soft kick hits. It sounds sloppy and the recording is noisy.", "data_idx": 3301, "number": 3, "label": "blues"} +{"file_name": "test_05362.png", "caption": "This music is an electronic instrumental. The tempo is medium with intense synthesiser arrangements and electronic sounds, along with the sound of rhythmic whistling. The music sounds scary, sinister, anticipatory, futuristic, spotty and unnerving. This music is Electronic/Synth Pop.", "data_idx": 3304, "number": 0, "label": "classical"} +{"file_name": "test_05363.png", "caption": "This music is an electronic instrumental. The tempo is medium with intense synthesiser arrangements and electronic sounds, along with the sound of rhythmic whistling. The music sounds scary, sinister, anticipatory, futuristic, spotty and unnerving. This music is Electronic/Synth Pop.", "data_idx": 3304, "number": 1, "label": "classical"} +{"file_name": "test_05364.png", "caption": "This music is an electronic instrumental. The tempo is medium with intense synthesiser arrangements and electronic sounds, along with the sound of rhythmic whistling. The music sounds scary, sinister, anticipatory, futuristic, spotty and unnerving. This music is Electronic/Synth Pop.", "data_idx": 3304, "number": 2, "label": "classical"} +{"file_name": "test_05365.png", "caption": "This music is an electronic instrumental. The tempo is medium with intense synthesiser arrangements and electronic sounds, along with the sound of rhythmic whistling. The music sounds scary, sinister, anticipatory, futuristic, spotty and unnerving. This music is Electronic/Synth Pop.", "data_idx": 3304, "number": 3, "label": "classical"} +{"file_name": "test_05366.png", "caption": "This music is instrumental. The tempo is fast with a lively trumpet harmony with steady drumming, keyboard harmony and tambourine beats. The music has middle eastern music influences . It is busy, loud, boisterous, and chaotic.", "data_idx": 3305, "number": 0, "label": "jazz"} +{"file_name": "test_05367.png", "caption": "This music is instrumental. The tempo is fast with a lively trumpet harmony with steady drumming, keyboard harmony and tambourine beats. The music has middle eastern music influences . It is busy, loud, boisterous, and chaotic.", "data_idx": 3305, "number": 1, "label": "jazz"} +{"file_name": "test_05368.png", "caption": "This music is instrumental. The tempo is fast with a lively trumpet harmony with steady drumming, keyboard harmony and tambourine beats. The music has middle eastern music influences . It is busy, loud, boisterous, and chaotic.", "data_idx": 3305, "number": 2, "label": "jazz"} +{"file_name": "test_05369.png", "caption": "This music is instrumental. The tempo is fast with a lively trumpet harmony with steady drumming, keyboard harmony and tambourine beats. The music has middle eastern music influences . It is busy, loud, boisterous, and chaotic.", "data_idx": 3305, "number": 3, "label": "jazz"} +{"file_name": "test_05370.png", "caption": "This is an amateur recording of an Irish folk music piece. It is an instrumental piece. There is an Irish flute playing a playful melody in a home setting. The atmosphere is cozy. This piece could be used in the soundtrack of an arcade adventure video game during the parts where the protagonist is traversing through forested areas.", "data_idx": 3306, "number": 0, "label": "jazz"} +{"file_name": "test_05371.png", "caption": "This is an amateur recording of an Irish folk music piece. It is an instrumental piece. There is an Irish flute playing a playful melody in a home setting. The atmosphere is cozy. This piece could be used in the soundtrack of an arcade adventure video game during the parts where the protagonist is traversing through forested areas.", "data_idx": 3306, "number": 1, "label": "jazz"} +{"file_name": "test_05372.png", "caption": "This is an amateur recording of an Irish folk music piece. It is an instrumental piece. There is an Irish flute playing a playful melody in a home setting. The atmosphere is cozy. This piece could be used in the soundtrack of an arcade adventure video game during the parts where the protagonist is traversing through forested areas.", "data_idx": 3306, "number": 2, "label": "jazz"} +{"file_name": "test_05373.png", "caption": "This is an amateur recording of an Irish folk music piece. It is an instrumental piece. There is an Irish flute playing a playful melody in a home setting. The atmosphere is cozy. This piece could be used in the soundtrack of an arcade adventure video game during the parts where the protagonist is traversing through forested areas.", "data_idx": 3306, "number": 3, "label": "jazz"} +{"file_name": "test_05374.png", "caption": "This song features an acoustic guitar playing chords using only down strokes. There are only two chords being played. The rhythm is played on a 6/8 time signature. A male voice sings vocables in falsetto. Toward the end, the voice produces a belching sound. There are no lyrics in this song. There are no other instruments in this song. This song can be played at a quirky party.", "data_idx": 3309, "number": 0, "label": "hiphop"} +{"file_name": "test_05375.png", "caption": "This song features an acoustic guitar playing chords using only down strokes. There are only two chords being played. The rhythm is played on a 6/8 time signature. A male voice sings vocables in falsetto. Toward the end, the voice produces a belching sound. There are no lyrics in this song. There are no other instruments in this song. This song can be played at a quirky party.", "data_idx": 3309, "number": 1, "label": "hiphop"} +{"file_name": "test_05376.png", "caption": "This song features an acoustic guitar playing chords using only down strokes. There are only two chords being played. The rhythm is played on a 6/8 time signature. A male voice sings vocables in falsetto. Toward the end, the voice produces a belching sound. There are no lyrics in this song. There are no other instruments in this song. This song can be played at a quirky party.", "data_idx": 3309, "number": 2, "label": "hiphop"} +{"file_name": "test_05377.png", "caption": "This song features an acoustic guitar playing chords using only down strokes. There are only two chords being played. The rhythm is played on a 6/8 time signature. A male voice sings vocables in falsetto. Toward the end, the voice produces a belching sound. There are no lyrics in this song. There are no other instruments in this song. This song can be played at a quirky party.", "data_idx": 3309, "number": 3, "label": "hiphop"} +{"file_name": "test_05378.png", "caption": "This is an instrumental Rajasthani folk music piece. There is a high-pitched flute playing a melody while a group of tambourines are keeping the rhythm. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3310, "number": 0, "label": "reggae"} +{"file_name": "test_05379.png", "caption": "This is an instrumental Rajasthani folk music piece. There is a high-pitched flute playing a melody while a group of tambourines are keeping the rhythm. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3310, "number": 1, "label": "reggae"} +{"file_name": "test_05380.png", "caption": "This is an instrumental Rajasthani folk music piece. There is a high-pitched flute playing a melody while a group of tambourines are keeping the rhythm. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3310, "number": 2, "label": "reggae"} +{"file_name": "test_05381.png", "caption": "This is an instrumental Rajasthani folk music piece. There is a high-pitched flute playing a melody while a group of tambourines are keeping the rhythm. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3310, "number": 3, "label": "reggae"} +{"file_name": "test_05382.png", "caption": "This is an amateur recording of a harmonica solo being performed over a blues/rock-n-roll music piece. The piece is instrumental. The harmonica plays a melodic solo in the style of blues. The backing track consists of the electric guitar and the bass guitar playing a simple tune while the medium tempo acoustic drums are playing a basic blues rock beat. The atmosphere is easygoing. This piece could be playing from the radio during a road trip in a movie.", "data_idx": 3312, "number": 0, "label": "blues"} +{"file_name": "test_05383.png", "caption": "This is an amateur recording of a harmonica solo being performed over a blues/rock-n-roll music piece. The piece is instrumental. The harmonica plays a melodic solo in the style of blues. The backing track consists of the electric guitar and the bass guitar playing a simple tune while the medium tempo acoustic drums are playing a basic blues rock beat. The atmosphere is easygoing. This piece could be playing from the radio during a road trip in a movie.", "data_idx": 3312, "number": 1, "label": "blues"} +{"file_name": "test_05384.png", "caption": "This is an amateur recording of a harmonica solo being performed over a blues/rock-n-roll music piece. The piece is instrumental. The harmonica plays a melodic solo in the style of blues. The backing track consists of the electric guitar and the bass guitar playing a simple tune while the medium tempo acoustic drums are playing a basic blues rock beat. The atmosphere is easygoing. This piece could be playing from the radio during a road trip in a movie.", "data_idx": 3312, "number": 2, "label": "blues"} +{"file_name": "test_05385.png", "caption": "This is an amateur recording of a harmonica solo being performed over a blues/rock-n-roll music piece. The piece is instrumental. The harmonica plays a melodic solo in the style of blues. The backing track consists of the electric guitar and the bass guitar playing a simple tune while the medium tempo acoustic drums are playing a basic blues rock beat. The atmosphere is easygoing. This piece could be playing from the radio during a road trip in a movie.", "data_idx": 3312, "number": 3, "label": "blues"} +{"file_name": "test_05386.png", "caption": "This low quality audio features an electric guitar playing a solo. The sounds of the instruments are not clear due to the low audio quality. The percussion plays a fast beat in the background. There are no voices in this song. This song can be played in a car chase sequence in a movie.", "data_idx": 3313, "number": 0, "label": "metal"} +{"file_name": "test_05387.png", "caption": "This low quality audio features an electric guitar playing a solo. The sounds of the instruments are not clear due to the low audio quality. The percussion plays a fast beat in the background. There are no voices in this song. This song can be played in a car chase sequence in a movie.", "data_idx": 3313, "number": 1, "label": "metal"} +{"file_name": "test_05388.png", "caption": "This low quality audio features an electric guitar playing a solo. The sounds of the instruments are not clear due to the low audio quality. The percussion plays a fast beat in the background. There are no voices in this song. This song can be played in a car chase sequence in a movie.", "data_idx": 3313, "number": 2, "label": "metal"} +{"file_name": "test_05389.png", "caption": "This low quality audio features an electric guitar playing a solo. The sounds of the instruments are not clear due to the low audio quality. The percussion plays a fast beat in the background. There are no voices in this song. This song can be played in a car chase sequence in a movie.", "data_idx": 3313, "number": 3, "label": "metal"} +{"file_name": "test_05390.png", "caption": "This audio contains someone playing a melody on a banjo. A male voice is speaking with a deeper voice. This is an amateur recording.", "data_idx": 3314, "number": 0, "label": "hiphop"} +{"file_name": "test_05391.png", "caption": "This audio contains someone playing a melody on a banjo. A male voice is speaking with a deeper voice. This is an amateur recording.", "data_idx": 3314, "number": 1, "label": "hiphop"} +{"file_name": "test_05392.png", "caption": "This audio contains someone playing a melody on a banjo. A male voice is speaking with a deeper voice. This is an amateur recording.", "data_idx": 3314, "number": 2, "label": "hiphop"} +{"file_name": "test_05393.png", "caption": "This audio contains someone playing a melody on a banjo. A male voice is speaking with a deeper voice. This is an amateur recording.", "data_idx": 3314, "number": 3, "label": "hiphop"} +{"file_name": "test_05394.png", "caption": "This children's song features a male voice singing the main melody. This is accompanied by male and female voices singing backing vocals in harmony. This has a call and response technique where the main voice sings a line followed by the response by the choir. This is accompanied by percussion playing a simple beat. After two bars, the instruments pause. The bass plays the root notes of the chords and sliding to a pause at the end of the bar. During the pause, the voices continue to sing. The main voice sings two lines and the choir sings the third line with the main voice in harmony. The mood of this song is happy. After the pause, the singers return to singing the same melody. This song can be played in an educational movie for children.", "data_idx": 3317, "number": 0, "label": "blues"} +{"file_name": "test_05395.png", "caption": "This children's song features a male voice singing the main melody. This is accompanied by male and female voices singing backing vocals in harmony. This has a call and response technique where the main voice sings a line followed by the response by the choir. This is accompanied by percussion playing a simple beat. After two bars, the instruments pause. The bass plays the root notes of the chords and sliding to a pause at the end of the bar. During the pause, the voices continue to sing. The main voice sings two lines and the choir sings the third line with the main voice in harmony. The mood of this song is happy. After the pause, the singers return to singing the same melody. This song can be played in an educational movie for children.", "data_idx": 3317, "number": 1, "label": "blues"} +{"file_name": "test_05396.png", "caption": "This children's song features a male voice singing the main melody. This is accompanied by male and female voices singing backing vocals in harmony. This has a call and response technique where the main voice sings a line followed by the response by the choir. This is accompanied by percussion playing a simple beat. After two bars, the instruments pause. The bass plays the root notes of the chords and sliding to a pause at the end of the bar. During the pause, the voices continue to sing. The main voice sings two lines and the choir sings the third line with the main voice in harmony. The mood of this song is happy. After the pause, the singers return to singing the same melody. This song can be played in an educational movie for children.", "data_idx": 3317, "number": 2, "label": "blues"} +{"file_name": "test_05397.png", "caption": "This children's song features a male voice singing the main melody. This is accompanied by male and female voices singing backing vocals in harmony. This has a call and response technique where the main voice sings a line followed by the response by the choir. This is accompanied by percussion playing a simple beat. After two bars, the instruments pause. The bass plays the root notes of the chords and sliding to a pause at the end of the bar. During the pause, the voices continue to sing. The main voice sings two lines and the choir sings the third line with the main voice in harmony. The mood of this song is happy. After the pause, the singers return to singing the same melody. This song can be played in an educational movie for children.", "data_idx": 3317, "number": 3, "label": "blues"} +{"file_name": "test_05398.png", "caption": "The low quality recording features a synth melody and a lot of synth sound effects, over which there is a funny boy vocal talking. The synth melody continues to play in the second part of the loop where shimmering bells, snaps layered with snappy rimshots and harmonizing kids' vocals singing over them, appear. It sounds happy, joyful and fun - like something kids would listen to.", "data_idx": 3318, "number": 0, "label": "hiphop"} +{"file_name": "test_05399.png", "caption": "The low quality recording features a synth melody and a lot of synth sound effects, over which there is a funny boy vocal talking. The synth melody continues to play in the second part of the loop where shimmering bells, snaps layered with snappy rimshots and harmonizing kids' vocals singing over them, appear. It sounds happy, joyful and fun - like something kids would listen to.", "data_idx": 3318, "number": 1, "label": "hiphop"} +{"file_name": "test_05400.png", "caption": "In this recording we hear two main instruments - the sitar and the tabla. The sitar player plays some simple and slow licks, in an emotive way. The tabla player plays a simple rhythm to support the sitar. The recording is an old recording - and this is a vintage south asian music piece.", "data_idx": 3321, "number": 0, "label": "reggae"} +{"file_name": "test_05401.png", "caption": "In this recording we hear two main instruments - the sitar and the tabla. The sitar player plays some simple and slow licks, in an emotive way. The tabla player plays a simple rhythm to support the sitar. The recording is an old recording - and this is a vintage south asian music piece.", "data_idx": 3321, "number": 1, "label": "reggae"} +{"file_name": "test_05402.png", "caption": "In this recording we hear two main instruments - the sitar and the tabla. The sitar player plays some simple and slow licks, in an emotive way. The tabla player plays a simple rhythm to support the sitar. The recording is an old recording - and this is a vintage south asian music piece.", "data_idx": 3321, "number": 2, "label": "reggae"} +{"file_name": "test_05403.png", "caption": "In this recording we hear two main instruments - the sitar and the tabla. The sitar player plays some simple and slow licks, in an emotive way. The tabla player plays a simple rhythm to support the sitar. The recording is an old recording - and this is a vintage south asian music piece.", "data_idx": 3321, "number": 3, "label": "reggae"} +{"file_name": "test_05404.png", "caption": "This folk song features the lead melody played on a rebab instrument which sounds like violins. This song has a Middle-Eastern melody. This is accompanied by traditional Middle-Eastern percussion. A tambourine is played in the background. The other instruments are not clear due to the low quality of the audio. There are no voices in this song. This is an instrumental song. This song can be played at a village scene in a movie.", "data_idx": 3322, "number": 0, "label": "blues"} +{"file_name": "test_05405.png", "caption": "This folk song features the lead melody played on a rebab instrument which sounds like violins. This song has a Middle-Eastern melody. This is accompanied by traditional Middle-Eastern percussion. A tambourine is played in the background. The other instruments are not clear due to the low quality of the audio. There are no voices in this song. This is an instrumental song. This song can be played at a village scene in a movie.", "data_idx": 3322, "number": 1, "label": "blues"} +{"file_name": "test_05406.png", "caption": "This folk song features the lead melody played on a rebab instrument which sounds like violins. This song has a Middle-Eastern melody. This is accompanied by traditional Middle-Eastern percussion. A tambourine is played in the background. The other instruments are not clear due to the low quality of the audio. There are no voices in this song. This is an instrumental song. This song can be played at a village scene in a movie.", "data_idx": 3322, "number": 2, "label": "blues"} +{"file_name": "test_05407.png", "caption": "This folk song features the lead melody played on a rebab instrument which sounds like violins. This song has a Middle-Eastern melody. This is accompanied by traditional Middle-Eastern percussion. A tambourine is played in the background. The other instruments are not clear due to the low quality of the audio. There are no voices in this song. This is an instrumental song. This song can be played at a village scene in a movie.", "data_idx": 3322, "number": 3, "label": "blues"} +{"file_name": "test_05408.png", "caption": "This is a lullaby music piece. There is a female vocalist singing gently. The acoustic guitar is playing a mellow tune while the bass guitar accompanies with a simple bass line. There is a synth with a string sound in the background. The atmosphere is calming and sleep-inducing. This piece could be played at nurseries and it could be included in the soundtracks meant to put babies to sleep.", "data_idx": 3324, "number": 0, "label": "rock"} +{"file_name": "test_05409.png", "caption": "This is a lullaby music piece. There is a female vocalist singing gently. The acoustic guitar is playing a mellow tune while the bass guitar accompanies with a simple bass line. There is a synth with a string sound in the background. The atmosphere is calming and sleep-inducing. This piece could be played at nurseries and it could be included in the soundtracks meant to put babies to sleep.", "data_idx": 3324, "number": 1, "label": "rock"} +{"file_name": "test_05410.png", "caption": "This is a lullaby music piece. There is a female vocalist singing gently. The acoustic guitar is playing a mellow tune while the bass guitar accompanies with a simple bass line. There is a synth with a string sound in the background. The atmosphere is calming and sleep-inducing. This piece could be played at nurseries and it could be included in the soundtracks meant to put babies to sleep.", "data_idx": 3324, "number": 2, "label": "rock"} +{"file_name": "test_05411.png", "caption": "This is a lullaby music piece. There is a female vocalist singing gently. The acoustic guitar is playing a mellow tune while the bass guitar accompanies with a simple bass line. There is a synth with a string sound in the background. The atmosphere is calming and sleep-inducing. This piece could be played at nurseries and it could be included in the soundtracks meant to put babies to sleep.", "data_idx": 3324, "number": 3, "label": "rock"} +{"file_name": "test_05412.png", "caption": "This audio contains various e-guitars playing different parts and melodies of a song. One is playing as bass, another one is fingerpicking chords while another one is playing a distorted arpeggio melody on top. This song may be played live by a busker with a loop padel.", "data_idx": 3325, "number": 0, "label": "blues"} +{"file_name": "test_05413.png", "caption": "This audio contains various e-guitars playing different parts and melodies of a song. One is playing as bass, another one is fingerpicking chords while another one is playing a distorted arpeggio melody on top. This song may be played live by a busker with a loop padel.", "data_idx": 3325, "number": 1, "label": "blues"} +{"file_name": "test_05414.png", "caption": "This audio contains various e-guitars playing different parts and melodies of a song. One is playing as bass, another one is fingerpicking chords while another one is playing a distorted arpeggio melody on top. This song may be played live by a busker with a loop padel.", "data_idx": 3325, "number": 2, "label": "blues"} +{"file_name": "test_05415.png", "caption": "This audio contains various e-guitars playing different parts and melodies of a song. One is playing as bass, another one is fingerpicking chords while another one is playing a distorted arpeggio melody on top. This song may be played live by a busker with a loop padel.", "data_idx": 3325, "number": 3, "label": "blues"} +{"file_name": "test_05416.png", "caption": "The song is an instrumental. The tempo is slow with a didgeridoo playing percussive grunting low tones in a sonorous manner. The song is trance-like with a dance performing live on stage. The song is meditative and deeply spiritual.", "data_idx": 3327, "number": 0, "label": "metal"} +{"file_name": "test_05417.png", "caption": "The song is an instrumental. The tempo is slow with a didgeridoo playing percussive grunting low tones in a sonorous manner. The song is trance-like with a dance performing live on stage. The song is meditative and deeply spiritual.", "data_idx": 3327, "number": 1, "label": "metal"} +{"file_name": "test_05418.png", "caption": "The song is an instrumental. The tempo is slow with a didgeridoo playing percussive grunting low tones in a sonorous manner. The song is trance-like with a dance performing live on stage. The song is meditative and deeply spiritual.", "data_idx": 3327, "number": 2, "label": "metal"} +{"file_name": "test_05419.png", "caption": "The song is an instrumental. The tempo is slow with a didgeridoo playing percussive grunting low tones in a sonorous manner. The song is trance-like with a dance performing live on stage. The song is meditative and deeply spiritual.", "data_idx": 3327, "number": 3, "label": "metal"} +{"file_name": "test_05420.png", "caption": "This pop ballad features a song played on an electric piano. The main melody is played on an electric piano. This is accompanied by synth layers playing fills in the background. Synth pads play a warm sound which is sustaining chords in the background to fill the musicscape. There are no voices in this song. This is an instrumental song. The mood of this song is romantic.", "data_idx": 3328, "number": 0, "label": "hiphop"} +{"file_name": "test_05421.png", "caption": "This pop ballad features a song played on an electric piano. The main melody is played on an electric piano. This is accompanied by synth layers playing fills in the background. Synth pads play a warm sound which is sustaining chords in the background to fill the musicscape. There are no voices in this song. This is an instrumental song. The mood of this song is romantic.", "data_idx": 3328, "number": 1, "label": "hiphop"} +{"file_name": "test_05422.png", "caption": "This song contains a acoustic drums running through a filter playing along with a tambourine. A e-guitar is playing a short repeating melody. A e-bass is first playing with a effect and then clean when a brass section comes in. This song may be playing with headphones while running on a sunny day.", "data_idx": 3329, "number": 0, "label": "disco"} +{"file_name": "test_05423.png", "caption": "This song contains a acoustic drums running through a filter playing along with a tambourine. A e-guitar is playing a short repeating melody. A e-bass is first playing with a effect and then clean when a brass section comes in. This song may be playing with headphones while running on a sunny day.", "data_idx": 3329, "number": 1, "label": "disco"} +{"file_name": "test_05424.png", "caption": "This song contains a acoustic drums running through a filter playing along with a tambourine. A e-guitar is playing a short repeating melody. A e-bass is first playing with a effect and then clean when a brass section comes in. This song may be playing with headphones while running on a sunny day.", "data_idx": 3329, "number": 2, "label": "disco"} +{"file_name": "test_05425.png", "caption": "This song contains a acoustic drums running through a filter playing along with a tambourine. A e-guitar is playing a short repeating melody. A e-bass is first playing with a effect and then clean when a brass section comes in. This song may be playing with headphones while running on a sunny day.", "data_idx": 3329, "number": 3, "label": "disco"} +{"file_name": "test_05426.png", "caption": "The song is an instrumental. The tempo is medium with a clarinet playing lead supported by a wind section, horn section, brass section and other percussion. The song is exciting and energetic. The song is a western classic tune with bad audio quality issues.", "data_idx": 3332, "number": 0, "label": "classical"} +{"file_name": "test_05427.png", "caption": "The song is an instrumental. The tempo is medium with a clarinet playing lead supported by a wind section, horn section, brass section and other percussion. The song is exciting and energetic. The song is a western classic tune with bad audio quality issues.", "data_idx": 3332, "number": 1, "label": "classical"} +{"file_name": "test_05428.png", "caption": "The song is an instrumental. The tempo is medium with a clarinet playing lead supported by a wind section, horn section, brass section and other percussion. The song is exciting and energetic. The song is a western classic tune with bad audio quality issues.", "data_idx": 3332, "number": 2, "label": "classical"} +{"file_name": "test_05429.png", "caption": "The song is an instrumental. The tempo is medium with a clarinet playing lead supported by a wind section, horn section, brass section and other percussion. The song is exciting and energetic. The song is a western classic tune with bad audio quality issues.", "data_idx": 3332, "number": 3, "label": "classical"} +{"file_name": "test_05430.png", "caption": "This is an instrumental wind band music piece. There are three trumpets playing the main melody while a wind instrument sound is playing a supporting tune. There is a bass guitar playing in the background. The rhythm consists of a simple electronic drum beat. The atmosphere is playful and cheerful. This piece could be used in the soundtrack of a kids TV show.", "data_idx": 3333, "number": 0, "label": "jazz"} +{"file_name": "test_05431.png", "caption": "This is an instrumental wind band music piece. There are three trumpets playing the main melody while a wind instrument sound is playing a supporting tune. There is a bass guitar playing in the background. The rhythm consists of a simple electronic drum beat. The atmosphere is playful and cheerful. This piece could be used in the soundtrack of a kids TV show.", "data_idx": 3333, "number": 1, "label": "jazz"} +{"file_name": "test_05432.png", "caption": "This is an instrumental wind band music piece. There are three trumpets playing the main melody while a wind instrument sound is playing a supporting tune. There is a bass guitar playing in the background. The rhythm consists of a simple electronic drum beat. The atmosphere is playful and cheerful. This piece could be used in the soundtrack of a kids TV show.", "data_idx": 3333, "number": 2, "label": "jazz"} +{"file_name": "test_05433.png", "caption": "This is an instrumental wind band music piece. There are three trumpets playing the main melody while a wind instrument sound is playing a supporting tune. There is a bass guitar playing in the background. The rhythm consists of a simple electronic drum beat. The atmosphere is playful and cheerful. This piece could be used in the soundtrack of a kids TV show.", "data_idx": 3333, "number": 3, "label": "jazz"} +{"file_name": "test_05434.png", "caption": "The low quality recording features an electric guitar melody being played. There is a tiny audio pop in the left channel of the stereo image. The recording is noisy and muffled, but regardless it sounds hopeful.", "data_idx": 3334, "number": 0, "label": "classical"} +{"file_name": "test_05435.png", "caption": "The low quality recording features an electric guitar melody being played. There is a tiny audio pop in the left channel of the stereo image. The recording is noisy and muffled, but regardless it sounds hopeful.", "data_idx": 3334, "number": 1, "label": "classical"} +{"file_name": "test_05436.png", "caption": "The low quality recording features an electric guitar melody being played. There is a tiny audio pop in the left channel of the stereo image. The recording is noisy and muffled, but regardless it sounds hopeful.", "data_idx": 3334, "number": 2, "label": "classical"} +{"file_name": "test_05437.png", "caption": "The low quality recording features an electric guitar melody being played. There is a tiny audio pop in the left channel of the stereo image. The recording is noisy and muffled, but regardless it sounds hopeful.", "data_idx": 3334, "number": 3, "label": "classical"} +{"file_name": "test_05438.png", "caption": "The low quality recording features a deep tone singing bowl resonance and a bowl hit impact. It sounds relaxing, calming and hypnotic.", "data_idx": 3337, "number": 0, "label": "blues"} +{"file_name": "test_05439.png", "caption": "The low quality recording features a deep tone singing bowl resonance and a bowl hit impact. It sounds relaxing, calming and hypnotic.", "data_idx": 3337, "number": 1, "label": "blues"} +{"file_name": "test_05440.png", "caption": "The low quality recording features a deep tone singing bowl resonance and a bowl hit impact. It sounds relaxing, calming and hypnotic.", "data_idx": 3337, "number": 2, "label": "blues"} +{"file_name": "test_05441.png", "caption": "The low quality recording features a deep tone singing bowl resonance and a bowl hit impact. It sounds relaxing, calming and hypnotic.", "data_idx": 3337, "number": 3, "label": "blues"} +{"file_name": "test_05442.png", "caption": "This sounds like the ending of a big orchestral piece, with the brass section sustaining a harmony at the end. The piece feels warm, relaxing and emotional.", "data_idx": 3340, "number": 0, "label": "country"} +{"file_name": "test_05443.png", "caption": "This sounds like the ending of a big orchestral piece, with the brass section sustaining a harmony at the end. The piece feels warm, relaxing and emotional.", "data_idx": 3340, "number": 1, "label": "country"} +{"file_name": "test_05444.png", "caption": "This sounds like the ending of a big orchestral piece, with the brass section sustaining a harmony at the end. The piece feels warm, relaxing and emotional.", "data_idx": 3340, "number": 2, "label": "country"} +{"file_name": "test_05445.png", "caption": "This sounds like the ending of a big orchestral piece, with the brass section sustaining a harmony at the end. The piece feels warm, relaxing and emotional.", "data_idx": 3340, "number": 3, "label": "country"} +{"file_name": "test_05446.png", "caption": "This audio contains someone playing a rhythm using acoustic drum samples along with synth pad sounds with a lot of reverb creating harmonies and a melody. This song may be playing and producing music at home.", "data_idx": 3344, "number": 0, "label": "reggae"} +{"file_name": "test_05447.png", "caption": "This audio contains someone playing a rhythm using acoustic drum samples along with synth pad sounds with a lot of reverb creating harmonies and a melody. This song may be playing and producing music at home.", "data_idx": 3344, "number": 1, "label": "reggae"} +{"file_name": "test_05448.png", "caption": "People chant and sing in unison. The song is medium fast tempo with Indian percussion playing fast, violins and other stringed instruments playing harmony along with people clapping. The song is meditational and spirited. The audio quality is poor.", "data_idx": 3345, "number": 0, "label": "metal"} +{"file_name": "test_05449.png", "caption": "People chant and sing in unison. The song is medium fast tempo with Indian percussion playing fast, violins and other stringed instruments playing harmony along with people clapping. The song is meditational and spirited. The audio quality is poor.", "data_idx": 3345, "number": 1, "label": "metal"} +{"file_name": "test_05450.png", "caption": "People chant and sing in unison. The song is medium fast tempo with Indian percussion playing fast, violins and other stringed instruments playing harmony along with people clapping. The song is meditational and spirited. The audio quality is poor.", "data_idx": 3345, "number": 2, "label": "metal"} +{"file_name": "test_05451.png", "caption": "People chant and sing in unison. The song is medium fast tempo with Indian percussion playing fast, violins and other stringed instruments playing harmony along with people clapping. The song is meditational and spirited. The audio quality is poor.", "data_idx": 3345, "number": 3, "label": "metal"} +{"file_name": "test_05452.png", "caption": "The song is an instrumental. The tempo is medium with ambient sounds like a sawing tool sounds, guitar rhythm, bass guitar solo and a steady drumming with various percussion hits. The song is an advertisement jingle for a tool works company. The sound quality is average with ambient room sounds.", "data_idx": 3346, "number": 0, "label": "reggae"} +{"file_name": "test_05453.png", "caption": "The song is an instrumental. The tempo is medium with ambient sounds like a sawing tool sounds, guitar rhythm, bass guitar solo and a steady drumming with various percussion hits. The song is an advertisement jingle for a tool works company. The sound quality is average with ambient room sounds.", "data_idx": 3346, "number": 1, "label": "reggae"} +{"file_name": "test_05454.png", "caption": "The song is an instrumental. The tempo is medium with ambient sounds like a sawing tool sounds, guitar rhythm, bass guitar solo and a steady drumming with various percussion hits. The song is an advertisement jingle for a tool works company. The sound quality is average with ambient room sounds.", "data_idx": 3346, "number": 2, "label": "reggae"} +{"file_name": "test_05455.png", "caption": "The song is an instrumental. The tempo is medium with ambient sounds like a sawing tool sounds, guitar rhythm, bass guitar solo and a steady drumming with various percussion hits. The song is an advertisement jingle for a tool works company. The sound quality is average with ambient room sounds.", "data_idx": 3346, "number": 3, "label": "reggae"} +{"file_name": "test_05456.png", "caption": "This is a middle eastern dance pop song. We hear a fun, and vibrant beat that's for dancing, and a vocalist who sounds charming and has a silky voice. There are string instruments for the melodic component of the instrumental. We hear high pitched falsetto backing vocals behind the lead vocalists' performance.", "data_idx": 3347, "number": 0, "label": "disco"} +{"file_name": "test_05457.png", "caption": "This is a middle eastern dance pop song. We hear a fun, and vibrant beat that's for dancing, and a vocalist who sounds charming and has a silky voice. There are string instruments for the melodic component of the instrumental. We hear high pitched falsetto backing vocals behind the lead vocalists' performance.", "data_idx": 3347, "number": 1, "label": "disco"} +{"file_name": "test_05458.png", "caption": "This is a middle eastern dance pop song. We hear a fun, and vibrant beat that's for dancing, and a vocalist who sounds charming and has a silky voice. There are string instruments for the melodic component of the instrumental. We hear high pitched falsetto backing vocals behind the lead vocalists' performance.", "data_idx": 3347, "number": 2, "label": "disco"} +{"file_name": "test_05459.png", "caption": "This is a middle eastern dance pop song. We hear a fun, and vibrant beat that's for dancing, and a vocalist who sounds charming and has a silky voice. There are string instruments for the melodic component of the instrumental. We hear high pitched falsetto backing vocals behind the lead vocalists' performance.", "data_idx": 3347, "number": 3, "label": "disco"} +{"file_name": "test_05460.png", "caption": "The low quality recording features an ambient song that consists of a low bells melody. It sounds calming and relaxing - like something you would listen to while meditating. The recording is noisy.", "data_idx": 3348, "number": 0, "label": "blues"} +{"file_name": "test_05461.png", "caption": "The low quality recording features an ambient song that consists of a low bells melody. It sounds calming and relaxing - like something you would listen to while meditating. The recording is noisy.", "data_idx": 3348, "number": 1, "label": "blues"} +{"file_name": "test_05462.png", "caption": "The low quality recording features an ambient song that consists of a low bells melody. It sounds calming and relaxing - like something you would listen to while meditating. The recording is noisy.", "data_idx": 3348, "number": 2, "label": "blues"} +{"file_name": "test_05463.png", "caption": "The low quality recording features an ambient song that consists of a low bells melody. It sounds calming and relaxing - like something you would listen to while meditating. The recording is noisy.", "data_idx": 3348, "number": 3, "label": "blues"} +{"file_name": "test_05464.png", "caption": "This is an instrumental military march music piece. The uilleann pipes are playing the piece at a medium-to-high range. The atmosphere is epic. This piece could be used in the soundtrack of a historical drama during the scenes of a victory parade.", "data_idx": 3350, "number": 0, "label": "classical"} +{"file_name": "test_05465.png", "caption": "This is an instrumental military march music piece. The uilleann pipes are playing the piece at a medium-to-high range. The atmosphere is epic. This piece could be used in the soundtrack of a historical drama during the scenes of a victory parade.", "data_idx": 3350, "number": 1, "label": "classical"} +{"file_name": "test_05466.png", "caption": "This is an instrumental military march music piece. The uilleann pipes are playing the piece at a medium-to-high range. The atmosphere is epic. This piece could be used in the soundtrack of a historical drama during the scenes of a victory parade.", "data_idx": 3350, "number": 2, "label": "classical"} +{"file_name": "test_05467.png", "caption": "This is an instrumental military march music piece. The uilleann pipes are playing the piece at a medium-to-high range. The atmosphere is epic. This piece could be used in the soundtrack of a historical drama during the scenes of a victory parade.", "data_idx": 3350, "number": 3, "label": "classical"} +{"file_name": "test_05468.png", "caption": "This is a lesson recording on how to deploy certain turntable scratching techniques. There is a female voice speaking in an instructive manner. She is showing how to achieve the stab sound.", "data_idx": 3351, "number": 0, "label": "reggae"} +{"file_name": "test_05469.png", "caption": "This is a lesson recording on how to deploy certain turntable scratching techniques. There is a female voice speaking in an instructive manner. She is showing how to achieve the stab sound.", "data_idx": 3351, "number": 1, "label": "reggae"} +{"file_name": "test_05470.png", "caption": "This is a lesson recording on how to deploy certain turntable scratching techniques. There is a female voice speaking in an instructive manner. She is showing how to achieve the stab sound.", "data_idx": 3351, "number": 2, "label": "reggae"} +{"file_name": "test_05471.png", "caption": "This is a lesson recording on how to deploy certain turntable scratching techniques. There is a female voice speaking in an instructive manner. She is showing how to achieve the stab sound.", "data_idx": 3351, "number": 3, "label": "reggae"} +{"file_name": "test_05472.png", "caption": "This song features beat boxing. There are no instruments in this song. This beat boxing melody is played using the mouth. There is no vocal melody in this song. This is an amateur recording. This song can be played in a live dance party.", "data_idx": 3352, "number": 0, "label": "disco"} +{"file_name": "test_05473.png", "caption": "This song features beat boxing. There are no instruments in this song. This beat boxing melody is played using the mouth. There is no vocal melody in this song. This is an amateur recording. This song can be played in a live dance party.", "data_idx": 3352, "number": 1, "label": "disco"} +{"file_name": "test_05474.png", "caption": "This song features beat boxing. There are no instruments in this song. This beat boxing melody is played using the mouth. There is no vocal melody in this song. This is an amateur recording. This song can be played in a live dance party.", "data_idx": 3352, "number": 2, "label": "disco"} +{"file_name": "test_05475.png", "caption": "This song features beat boxing. There are no instruments in this song. This beat boxing melody is played using the mouth. There is no vocal melody in this song. This is an amateur recording. This song can be played in a live dance party.", "data_idx": 3352, "number": 3, "label": "disco"} +{"file_name": "test_05476.png", "caption": "The low quality recording features a sustained strings melody, mellow brass melody and wooden percussion one shot at the end of the loop. It sounds passionate, emotional and the sound is slowly fading in - which could mean that it is an intro section of the song.", "data_idx": 3354, "number": 0, "label": "hiphop"} +{"file_name": "test_05477.png", "caption": "The low quality recording features a sustained strings melody, mellow brass melody and wooden percussion one shot at the end of the loop. It sounds passionate, emotional and the sound is slowly fading in - which could mean that it is an intro section of the song.", "data_idx": 3354, "number": 1, "label": "hiphop"} +{"file_name": "test_05478.png", "caption": "This song features synth pads being played in the background. An organ sound is layered with this sound. A synth sound plays chords in this song. There is a squeaky sound like the sound of a squeaky cycle wheel playing in the background. There are no voices in this song. There are no other instruments in this song. This song is dreamy and relaxing. This song can be played in a meditation center.", "data_idx": 3355, "number": 0, "label": "classical"} +{"file_name": "test_05479.png", "caption": "This song features synth pads being played in the background. An organ sound is layered with this sound. A synth sound plays chords in this song. There is a squeaky sound like the sound of a squeaky cycle wheel playing in the background. There are no voices in this song. There are no other instruments in this song. This song is dreamy and relaxing. This song can be played in a meditation center.", "data_idx": 3355, "number": 1, "label": "classical"} +{"file_name": "test_05480.png", "caption": "This song features synth pads being played in the background. An organ sound is layered with this sound. A synth sound plays chords in this song. There is a squeaky sound like the sound of a squeaky cycle wheel playing in the background. There are no voices in this song. There are no other instruments in this song. This song is dreamy and relaxing. This song can be played in a meditation center.", "data_idx": 3355, "number": 2, "label": "classical"} +{"file_name": "test_05481.png", "caption": "This song features synth pads being played in the background. An organ sound is layered with this sound. A synth sound plays chords in this song. There is a squeaky sound like the sound of a squeaky cycle wheel playing in the background. There are no voices in this song. There are no other instruments in this song. This song is dreamy and relaxing. This song can be played in a meditation center.", "data_idx": 3355, "number": 3, "label": "classical"} +{"file_name": "test_05482.png", "caption": "This audio contains a jazz composition with a saxophone taking the lead-melody supported by a string section, a e-bass and a piano playing some notes along in a higher pitch. This song may be playing in a romantic restaurant.", "data_idx": 3356, "number": 0, "label": "jazz"} +{"file_name": "test_05483.png", "caption": "This audio contains a jazz composition with a saxophone taking the lead-melody supported by a string section, a e-bass and a piano playing some notes along in a higher pitch. This song may be playing in a romantic restaurant.", "data_idx": 3356, "number": 1, "label": "jazz"} +{"file_name": "test_05484.png", "caption": "This is the recording of a harmonica lesson. There is a male instructor who is playing the harmonica and then describing his technique.", "data_idx": 3360, "number": 0, "label": "classical"} +{"file_name": "test_05485.png", "caption": "This is the recording of a harmonica lesson. There is a male instructor who is playing the harmonica and then describing his technique.", "data_idx": 3360, "number": 1, "label": "classical"} +{"file_name": "test_05486.png", "caption": "This is the recording of a harmonica lesson. There is a male instructor who is playing the harmonica and then describing his technique.", "data_idx": 3360, "number": 2, "label": "classical"} +{"file_name": "test_05487.png", "caption": "This is the recording of a harmonica lesson. There is a male instructor who is playing the harmonica and then describing his technique.", "data_idx": 3360, "number": 3, "label": "classical"} +{"file_name": "test_05488.png", "caption": "The commercial music features a groovy piano melody played over snare rolls in the first half of the loop. Right after, there is a drop that consists of a punchy \"4 on the floor\" kick pattern, shimmering hi hats, claps, groovy piano and wide synth lead melody. It sounds happy, fun, euphoric and exciting.", "data_idx": 3361, "number": 0, "label": "classical"} +{"file_name": "test_05489.png", "caption": "The commercial music features a groovy piano melody played over snare rolls in the first half of the loop. Right after, there is a drop that consists of a punchy \"4 on the floor\" kick pattern, shimmering hi hats, claps, groovy piano and wide synth lead melody. It sounds happy, fun, euphoric and exciting.", "data_idx": 3361, "number": 1, "label": "classical"} +{"file_name": "test_05490.png", "caption": "The commercial music features a groovy piano melody played over snare rolls in the first half of the loop. Right after, there is a drop that consists of a punchy \"4 on the floor\" kick pattern, shimmering hi hats, claps, groovy piano and wide synth lead melody. It sounds happy, fun, euphoric and exciting.", "data_idx": 3361, "number": 2, "label": "classical"} +{"file_name": "test_05491.png", "caption": "The commercial music features a groovy piano melody played over snare rolls in the first half of the loop. Right after, there is a drop that consists of a punchy \"4 on the floor\" kick pattern, shimmering hi hats, claps, groovy piano and wide synth lead melody. It sounds happy, fun, euphoric and exciting.", "data_idx": 3361, "number": 3, "label": "classical"} +{"file_name": "test_05492.png", "caption": "An acoustic drum is playing a groove that is not strongly connected to reggae rhythm. A e-bass and piano-keys are bringing the typical reggae backbeat while another synth sound is playing short plucks as a melody. The male voice is singing in a reggae-fashion and in a higher key. In the background you can hear a big organ sound coming in and playing along with the melody. The elements are spread along the speakers. This song may be playing with speakers riding on your bike.", "data_idx": 3366, "number": 0, "label": "reggae"} +{"file_name": "test_05493.png", "caption": "An acoustic drum is playing a groove that is not strongly connected to reggae rhythm. A e-bass and piano-keys are bringing the typical reggae backbeat while another synth sound is playing short plucks as a melody. The male voice is singing in a reggae-fashion and in a higher key. In the background you can hear a big organ sound coming in and playing along with the melody. The elements are spread along the speakers. This song may be playing with speakers riding on your bike.", "data_idx": 3366, "number": 1, "label": "reggae"} +{"file_name": "test_05494.png", "caption": "An acoustic drum is playing a groove that is not strongly connected to reggae rhythm. A e-bass and piano-keys are bringing the typical reggae backbeat while another synth sound is playing short plucks as a melody. The male voice is singing in a reggae-fashion and in a higher key. In the background you can hear a big organ sound coming in and playing along with the melody. The elements are spread along the speakers. This song may be playing with speakers riding on your bike.", "data_idx": 3366, "number": 2, "label": "reggae"} +{"file_name": "test_05495.png", "caption": "An acoustic drum is playing a groove that is not strongly connected to reggae rhythm. A e-bass and piano-keys are bringing the typical reggae backbeat while another synth sound is playing short plucks as a melody. The male voice is singing in a reggae-fashion and in a higher key. In the background you can hear a big organ sound coming in and playing along with the melody. The elements are spread along the speakers. This song may be playing with speakers riding on your bike.", "data_idx": 3366, "number": 3, "label": "reggae"} +{"file_name": "test_05496.png", "caption": "A male vocalist sings this Christmas song. The tempo is medium with minimal instruments like keyboard harmony and steady drumming. The audio quality is inferior so the music is incoherent. This is a live performance with ambient sounds of people clapping and cheering. This is a contemporary Christmas Song.", "data_idx": 3368, "number": 0, "label": "rock"} +{"file_name": "test_05497.png", "caption": "A male vocalist sings this Christmas song. The tempo is medium with minimal instruments like keyboard harmony and steady drumming. The audio quality is inferior so the music is incoherent. This is a live performance with ambient sounds of people clapping and cheering. This is a contemporary Christmas Song.", "data_idx": 3368, "number": 1, "label": "rock"} +{"file_name": "test_05498.png", "caption": "A male vocalist sings this Christmas song. The tempo is medium with minimal instruments like keyboard harmony and steady drumming. The audio quality is inferior so the music is incoherent. This is a live performance with ambient sounds of people clapping and cheering. This is a contemporary Christmas Song.", "data_idx": 3368, "number": 2, "label": "rock"} +{"file_name": "test_05499.png", "caption": "A male vocalist sings this Christmas song. The tempo is medium with minimal instruments like keyboard harmony and steady drumming. The audio quality is inferior so the music is incoherent. This is a live performance with ambient sounds of people clapping and cheering. This is a contemporary Christmas Song.", "data_idx": 3368, "number": 3, "label": "rock"} +{"file_name": "test_05500.png", "caption": "This is the live performance of an electric guitarist. The chords are arpeggiated and the guitar has effects applied to it to produce a warm and rich tone. The song is calm and peaceful, and would be suitable for a tranquil afternoon walk at the park.", "data_idx": 3370, "number": 0, "label": "classical"} +{"file_name": "test_05501.png", "caption": "This is the live performance of an electric guitarist. The chords are arpeggiated and the guitar has effects applied to it to produce a warm and rich tone. The song is calm and peaceful, and would be suitable for a tranquil afternoon walk at the park.", "data_idx": 3370, "number": 1, "label": "classical"} +{"file_name": "test_05502.png", "caption": "This is the live performance of an electric guitarist. The chords are arpeggiated and the guitar has effects applied to it to produce a warm and rich tone. The song is calm and peaceful, and would be suitable for a tranquil afternoon walk at the park.", "data_idx": 3370, "number": 2, "label": "classical"} +{"file_name": "test_05503.png", "caption": "This is the live performance of an electric guitarist. The chords are arpeggiated and the guitar has effects applied to it to produce a warm and rich tone. The song is calm and peaceful, and would be suitable for a tranquil afternoon walk at the park.", "data_idx": 3370, "number": 3, "label": "classical"} +{"file_name": "test_05504.png", "caption": "This is an intricate melody played on the harpsichord. It's recorded live and has a suspenseful feeling to it. The melody is played at a medium tempo.", "data_idx": 3371, "number": 0, "label": "classical"} +{"file_name": "test_05505.png", "caption": "This is an intricate melody played on the harpsichord. It's recorded live and has a suspenseful feeling to it. The melody is played at a medium tempo.", "data_idx": 3371, "number": 1, "label": "classical"} +{"file_name": "test_05506.png", "caption": "This is an intricate melody played on the harpsichord. It's recorded live and has a suspenseful feeling to it. The melody is played at a medium tempo.", "data_idx": 3371, "number": 2, "label": "classical"} +{"file_name": "test_05507.png", "caption": "This is an intricate melody played on the harpsichord. It's recorded live and has a suspenseful feeling to it. The melody is played at a medium tempo.", "data_idx": 3371, "number": 3, "label": "classical"} +{"file_name": "test_05508.png", "caption": "The low quality recording features a metal song that contains a flat male vocal, alongside harmonizing high pitched female vocal, singing over punchy kick and snare hits, shimmering hi hats, distorted bass guitar, mellow synth bells melody and groovy wide electric guitar riff. It sounds energetic, groovy, aggressive.", "data_idx": 3372, "number": 0, "label": "metal"} +{"file_name": "test_05509.png", "caption": "The low quality recording features a metal song that contains a flat male vocal, alongside harmonizing high pitched female vocal, singing over punchy kick and snare hits, shimmering hi hats, distorted bass guitar, mellow synth bells melody and groovy wide electric guitar riff. It sounds energetic, groovy, aggressive.", "data_idx": 3372, "number": 1, "label": "metal"} +{"file_name": "test_05510.png", "caption": "The low quality recording features a metal song that contains a flat male vocal, alongside harmonizing high pitched female vocal, singing over punchy kick and snare hits, shimmering hi hats, distorted bass guitar, mellow synth bells melody and groovy wide electric guitar riff. It sounds energetic, groovy, aggressive.", "data_idx": 3372, "number": 2, "label": "metal"} +{"file_name": "test_05511.png", "caption": "The low quality recording features a metal song that contains a flat male vocal, alongside harmonizing high pitched female vocal, singing over punchy kick and snare hits, shimmering hi hats, distorted bass guitar, mellow synth bells melody and groovy wide electric guitar riff. It sounds energetic, groovy, aggressive.", "data_idx": 3372, "number": 3, "label": "metal"} +{"file_name": "test_05512.png", "caption": "A female vocalist sings this pleasant pop song. The tempo is medium with a keyboard harmony, melodious acoustic guitar harmony, bright drumming , steel pan and the sound of birds chirping. The song is mellow, soft, pleasant, soothing, hopeful, sentimental, sweet and cheerful.this song is a Reggae Pop.", "data_idx": 3373, "number": 0, "label": "pop"} +{"file_name": "test_05513.png", "caption": "A female vocalist sings this pleasant pop song. The tempo is medium with a keyboard harmony, melodious acoustic guitar harmony, bright drumming , steel pan and the sound of birds chirping. The song is mellow, soft, pleasant, soothing, hopeful, sentimental, sweet and cheerful.this song is a Reggae Pop.", "data_idx": 3373, "number": 1, "label": "pop"} +{"file_name": "test_05514.png", "caption": "A female vocalist sings this pleasant pop song. The tempo is medium with a keyboard harmony, melodious acoustic guitar harmony, bright drumming , steel pan and the sound of birds chirping. The song is mellow, soft, pleasant, soothing, hopeful, sentimental, sweet and cheerful.this song is a Reggae Pop.", "data_idx": 3373, "number": 2, "label": "pop"} +{"file_name": "test_05515.png", "caption": "A female vocalist sings this pleasant pop song. The tempo is medium with a keyboard harmony, melodious acoustic guitar harmony, bright drumming , steel pan and the sound of birds chirping. The song is mellow, soft, pleasant, soothing, hopeful, sentimental, sweet and cheerful.this song is a Reggae Pop.", "data_idx": 3373, "number": 3, "label": "pop"} +{"file_name": "test_05516.png", "caption": "This is an intimate and warm R&B instrumental. We hear fuzzy synth melodies driving the crux of the sound, and in this particular instrumental we are able to appreciate the crossovers between hip hop and R&B - as the drum beat is complex and hip hop inspired, with punchy snare action.", "data_idx": 3374, "number": 0, "label": "disco"} +{"file_name": "test_05517.png", "caption": "This is an intimate and warm R&B instrumental. We hear fuzzy synth melodies driving the crux of the sound, and in this particular instrumental we are able to appreciate the crossovers between hip hop and R&B - as the drum beat is complex and hip hop inspired, with punchy snare action.", "data_idx": 3374, "number": 1, "label": "disco"} +{"file_name": "test_05518.png", "caption": "This is an intimate and warm R&B instrumental. We hear fuzzy synth melodies driving the crux of the sound, and in this particular instrumental we are able to appreciate the crossovers between hip hop and R&B - as the drum beat is complex and hip hop inspired, with punchy snare action.", "data_idx": 3374, "number": 2, "label": "disco"} +{"file_name": "test_05519.png", "caption": "This is an intimate and warm R&B instrumental. We hear fuzzy synth melodies driving the crux of the sound, and in this particular instrumental we are able to appreciate the crossovers between hip hop and R&B - as the drum beat is complex and hip hop inspired, with punchy snare action.", "data_idx": 3374, "number": 3, "label": "disco"} +{"file_name": "test_05520.png", "caption": "This song features trombones playing the main melody. The trombones slide down from higher pitch notes and play tunes like elephants trumpeting. This is accompanied by a tuba playing the bass notes. A percussion player plays a simple beat in common time. This song is upbeat. This is an instrumental with no voices. This song can be played in Broadway shows.", "data_idx": 3375, "number": 0, "label": "jazz"} +{"file_name": "test_05521.png", "caption": "This song features trombones playing the main melody. The trombones slide down from higher pitch notes and play tunes like elephants trumpeting. This is accompanied by a tuba playing the bass notes. A percussion player plays a simple beat in common time. This song is upbeat. This is an instrumental with no voices. This song can be played in Broadway shows.", "data_idx": 3375, "number": 1, "label": "jazz"} +{"file_name": "test_05522.png", "caption": "This song features trombones playing the main melody. The trombones slide down from higher pitch notes and play tunes like elephants trumpeting. This is accompanied by a tuba playing the bass notes. A percussion player plays a simple beat in common time. This song is upbeat. This is an instrumental with no voices. This song can be played in Broadway shows.", "data_idx": 3375, "number": 2, "label": "jazz"} +{"file_name": "test_05523.png", "caption": "This song features trombones playing the main melody. The trombones slide down from higher pitch notes and play tunes like elephants trumpeting. This is accompanied by a tuba playing the bass notes. A percussion player plays a simple beat in common time. This song is upbeat. This is an instrumental with no voices. This song can be played in Broadway shows.", "data_idx": 3375, "number": 3, "label": "jazz"} +{"file_name": "test_05524.png", "caption": "The low quality recording features loud church bells. It sounds like an intro of the recording, since the sound is slowly fading in. The recording is noisy.", "data_idx": 3377, "number": 0, "label": "hiphop"} +{"file_name": "test_05525.png", "caption": "The low quality recording features loud church bells. It sounds like an intro of the recording, since the sound is slowly fading in. The recording is noisy.", "data_idx": 3377, "number": 1, "label": "hiphop"} +{"file_name": "test_05526.png", "caption": "This song contains someone strumming a melody on a mandolin while more people are whistling along. Then a mandolin, an e-bass and an acoustic guitar are playing a short melody in a lower key before breaking into the next part along with flutes and percussions. This song may be played outside by musicians performing.", "data_idx": 3378, "number": 0, "label": "classical"} +{"file_name": "test_05527.png", "caption": "This song contains someone strumming a melody on a mandolin while more people are whistling along. Then a mandolin, an e-bass and an acoustic guitar are playing a short melody in a lower key before breaking into the next part along with flutes and percussions. This song may be played outside by musicians performing.", "data_idx": 3378, "number": 1, "label": "classical"} +{"file_name": "test_05528.png", "caption": "This song contains someone strumming a melody on a mandolin while more people are whistling along. Then a mandolin, an e-bass and an acoustic guitar are playing a short melody in a lower key before breaking into the next part along with flutes and percussions. This song may be played outside by musicians performing.", "data_idx": 3378, "number": 2, "label": "classical"} +{"file_name": "test_05529.png", "caption": "This song contains someone strumming a melody on a mandolin while more people are whistling along. Then a mandolin, an e-bass and an acoustic guitar are playing a short melody in a lower key before breaking into the next part along with flutes and percussions. This song may be played outside by musicians performing.", "data_idx": 3378, "number": 3, "label": "classical"} +{"file_name": "test_05530.png", "caption": "This is an industrial dance music piece. There is no singer in this piece. It has a strong and repetitive bass sound. The rhythmic background consists of a fast-paced electronic drum beat. The piece has an energetic atmosphere. It could be played at nightclubs or dance clubs.", "data_idx": 3379, "number": 0, "label": "hiphop"} +{"file_name": "test_05531.png", "caption": "This is an industrial dance music piece. There is no singer in this piece. It has a strong and repetitive bass sound. The rhythmic background consists of a fast-paced electronic drum beat. The piece has an energetic atmosphere. It could be played at nightclubs or dance clubs.", "data_idx": 3379, "number": 1, "label": "hiphop"} +{"file_name": "test_05532.png", "caption": "This is an industrial dance music piece. There is no singer in this piece. It has a strong and repetitive bass sound. The rhythmic background consists of a fast-paced electronic drum beat. The piece has an energetic atmosphere. It could be played at nightclubs or dance clubs.", "data_idx": 3379, "number": 2, "label": "hiphop"} +{"file_name": "test_05533.png", "caption": "This is an industrial dance music piece. There is no singer in this piece. It has a strong and repetitive bass sound. The rhythmic background consists of a fast-paced electronic drum beat. The piece has an energetic atmosphere. It could be played at nightclubs or dance clubs.", "data_idx": 3379, "number": 3, "label": "hiphop"} +{"file_name": "test_05534.png", "caption": "The low quality recording features a shofar horn siren. It is so loud that the audio is distorting. The recording itself is a bit noisy.", "data_idx": 3382, "number": 0, "label": "classical"} +{"file_name": "test_05535.png", "caption": "The low quality recording features a shofar horn siren. It is so loud that the audio is distorting. The recording itself is a bit noisy.", "data_idx": 3382, "number": 1, "label": "classical"} +{"file_name": "test_05536.png", "caption": "The low quality recording features a shofar horn siren. It is so loud that the audio is distorting. The recording itself is a bit noisy.", "data_idx": 3382, "number": 2, "label": "classical"} +{"file_name": "test_05537.png", "caption": "The low quality recording features a shofar horn siren. It is so loud that the audio is distorting. The recording itself is a bit noisy.", "data_idx": 3382, "number": 3, "label": "classical"} +{"file_name": "test_05538.png", "caption": "This song features the sound of synth pads. The synth is playing one chord and the volume slowly swells. There are no other instruments in this song. There is no voice in this song. This song can be played in a movie sequence when a person is actively searching for something in the dark.", "data_idx": 3384, "number": 0, "label": "classical"} +{"file_name": "test_05539.png", "caption": "This song features the sound of synth pads. The synth is playing one chord and the volume slowly swells. There are no other instruments in this song. There is no voice in this song. This song can be played in a movie sequence when a person is actively searching for something in the dark.", "data_idx": 3384, "number": 1, "label": "classical"} +{"file_name": "test_05540.png", "caption": "This song features the sound of synth pads. The synth is playing one chord and the volume slowly swells. There are no other instruments in this song. There is no voice in this song. This song can be played in a movie sequence when a person is actively searching for something in the dark.", "data_idx": 3384, "number": 2, "label": "classical"} +{"file_name": "test_05541.png", "caption": "This song features the sound of synth pads. The synth is playing one chord and the volume slowly swells. There are no other instruments in this song. There is no voice in this song. This song can be played in a movie sequence when a person is actively searching for something in the dark.", "data_idx": 3384, "number": 3, "label": "classical"} +{"file_name": "test_05542.png", "caption": "solo acoustic nylon string guitar playing in a fingerstyle Brazilian bossa nova style.", "data_idx": 3386, "number": 0, "label": "jazz"} +{"file_name": "test_05543.png", "caption": "solo acoustic nylon string guitar playing in a fingerstyle Brazilian bossa nova style.", "data_idx": 3386, "number": 1, "label": "jazz"} +{"file_name": "test_05544.png", "caption": "solo acoustic nylon string guitar playing in a fingerstyle Brazilian bossa nova style.", "data_idx": 3386, "number": 2, "label": "jazz"} +{"file_name": "test_05545.png", "caption": "solo acoustic nylon string guitar playing in a fingerstyle Brazilian bossa nova style.", "data_idx": 3386, "number": 3, "label": "jazz"} +{"file_name": "test_05546.png", "caption": "This is a melodic composition on the organ. The song itself feels soothing and calming. We hear light arpeggios played which would be suitable for a lullaby or a fairytale story.", "data_idx": 3388, "number": 0, "label": "classical"} +{"file_name": "test_05547.png", "caption": "This is a melodic composition on the organ. The song itself feels soothing and calming. We hear light arpeggios played which would be suitable for a lullaby or a fairytale story.", "data_idx": 3388, "number": 1, "label": "classical"} +{"file_name": "test_05548.png", "caption": "This is a melodic composition on the organ. The song itself feels soothing and calming. We hear light arpeggios played which would be suitable for a lullaby or a fairytale story.", "data_idx": 3388, "number": 2, "label": "classical"} +{"file_name": "test_05549.png", "caption": "This is a melodic composition on the organ. The song itself feels soothing and calming. We hear light arpeggios played which would be suitable for a lullaby or a fairytale story.", "data_idx": 3388, "number": 3, "label": "classical"} +{"file_name": "test_05550.png", "caption": "Cheery and joyous music which would fit well in a musical. Complex vocal arrangements with female background vocals, male and female lead vocalists singing in unison one octave apart. Piano, electric bass, and orchestral accompaniment drive the compound meter.", "data_idx": 3389, "number": 0, "label": "rock"} +{"file_name": "test_05551.png", "caption": "Cheery and joyous music which would fit well in a musical. Complex vocal arrangements with female background vocals, male and female lead vocalists singing in unison one octave apart. Piano, electric bass, and orchestral accompaniment drive the compound meter.", "data_idx": 3389, "number": 1, "label": "rock"} +{"file_name": "test_05552.png", "caption": "Cheery and joyous music which would fit well in a musical. Complex vocal arrangements with female background vocals, male and female lead vocalists singing in unison one octave apart. Piano, electric bass, and orchestral accompaniment drive the compound meter.", "data_idx": 3389, "number": 2, "label": "rock"} +{"file_name": "test_05553.png", "caption": "Cheery and joyous music which would fit well in a musical. Complex vocal arrangements with female background vocals, male and female lead vocalists singing in unison one octave apart. Piano, electric bass, and orchestral accompaniment drive the compound meter.", "data_idx": 3389, "number": 3, "label": "rock"} +{"file_name": "test_05554.png", "caption": "This music is an intense instrumental.The tempo is fast with vigorous violin harmony that slows down to the accompaniment of a grim Piano harmony. The music is a Ritardando and has a grim, dark, intense,serious,bleak, dreary, and dangerous vibe to it.", "data_idx": 3391, "number": 0, "label": "classical"} +{"file_name": "test_05555.png", "caption": "This music is an intense instrumental.The tempo is fast with vigorous violin harmony that slows down to the accompaniment of a grim Piano harmony. The music is a Ritardando and has a grim, dark, intense,serious,bleak, dreary, and dangerous vibe to it.", "data_idx": 3391, "number": 1, "label": "classical"} +{"file_name": "test_05556.png", "caption": "This music is an intense instrumental.The tempo is fast with vigorous violin harmony that slows down to the accompaniment of a grim Piano harmony. The music is a Ritardando and has a grim, dark, intense,serious,bleak, dreary, and dangerous vibe to it.", "data_idx": 3391, "number": 2, "label": "classical"} +{"file_name": "test_05557.png", "caption": "This music is an intense instrumental.The tempo is fast with vigorous violin harmony that slows down to the accompaniment of a grim Piano harmony. The music is a Ritardando and has a grim, dark, intense,serious,bleak, dreary, and dangerous vibe to it.", "data_idx": 3391, "number": 3, "label": "classical"} +{"file_name": "test_05558.png", "caption": "The low quality recording features a pop song that consists of suspenseful synth, repetitive piano melody, filtered synth bass and sustained strings melody located in the left channel of the stereo image. It sounds uplifting, soulful and exciting.", "data_idx": 3396, "number": 0, "label": "rock"} +{"file_name": "test_05559.png", "caption": "The low quality recording features a pop song that consists of suspenseful synth, repetitive piano melody, filtered synth bass and sustained strings melody located in the left channel of the stereo image. It sounds uplifting, soulful and exciting.", "data_idx": 3396, "number": 1, "label": "rock"} +{"file_name": "test_05560.png", "caption": "The low quality recording features a pop song that consists of suspenseful synth, repetitive piano melody, filtered synth bass and sustained strings melody located in the left channel of the stereo image. It sounds uplifting, soulful and exciting.", "data_idx": 3396, "number": 2, "label": "rock"} +{"file_name": "test_05561.png", "caption": "The low quality recording features a pop song that consists of suspenseful synth, repetitive piano melody, filtered synth bass and sustained strings melody located in the left channel of the stereo image. It sounds uplifting, soulful and exciting.", "data_idx": 3396, "number": 3, "label": "rock"} diff --git a/data/test/metadata_0012.jsonl b/data/test/metadata_0012.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f391d329e11c39f14d63fb07b39ec13055e7ec9d --- /dev/null +++ b/data/test/metadata_0012.jsonl @@ -0,0 +1,336 @@ +{"file_name": "test_05562.png", "caption": "The low quality recording features piano chords, followed by echoing plucked strings melody and smooth bass guitar. It sounds creepy, haunting and suspenseful.", "data_idx": 3406, "number": 0, "label": "classical"} +{"file_name": "test_05563.png", "caption": "The low quality recording features piano chords, followed by echoing plucked strings melody and smooth bass guitar. It sounds creepy, haunting and suspenseful.", "data_idx": 3406, "number": 1, "label": "classical"} +{"file_name": "test_05564.png", "caption": "The low quality recording features piano chords, followed by echoing plucked strings melody and smooth bass guitar. It sounds creepy, haunting and suspenseful.", "data_idx": 3406, "number": 2, "label": "classical"} +{"file_name": "test_05565.png", "caption": "The low quality recording features piano chords, followed by echoing plucked strings melody and smooth bass guitar. It sounds creepy, haunting and suspenseful.", "data_idx": 3406, "number": 3, "label": "classical"} +{"file_name": "test_05566.png", "caption": "This song contains a male voice rapping over an instrumental containing a drumbeat with a sub bass. A brass sample is playing a melody also used as a rhythmic element. An organ is panned to the right side of the speakers. Other sound samples such as a male voice singing a melody are being used. This song may be playing loud when having or needing a good elevating mood.", "data_idx": 3408, "number": 0, "label": "hiphop"} +{"file_name": "test_05567.png", "caption": "This song contains a male voice rapping over an instrumental containing a drumbeat with a sub bass. A brass sample is playing a melody also used as a rhythmic element. An organ is panned to the right side of the speakers. Other sound samples such as a male voice singing a melody are being used. This song may be playing loud when having or needing a good elevating mood.", "data_idx": 3408, "number": 1, "label": "hiphop"} +{"file_name": "test_05568.png", "caption": "This song contains a male voice rapping over an instrumental containing a drumbeat with a sub bass. A brass sample is playing a melody also used as a rhythmic element. An organ is panned to the right side of the speakers. Other sound samples such as a male voice singing a melody are being used. This song may be playing loud when having or needing a good elevating mood.", "data_idx": 3408, "number": 2, "label": "hiphop"} +{"file_name": "test_05569.png", "caption": "This song contains a male voice rapping over an instrumental containing a drumbeat with a sub bass. A brass sample is playing a melody also used as a rhythmic element. An organ is panned to the right side of the speakers. Other sound samples such as a male voice singing a melody are being used. This song may be playing loud when having or needing a good elevating mood.", "data_idx": 3408, "number": 3, "label": "hiphop"} +{"file_name": "test_05570.png", "caption": "This symphonic song features an orchestra playing a variety of instruments. The main melody is played on trumpets and violins. This is accompanied by the brass section and horn section of the orchestra. Clarinets play in harmony with the violins and trumpets. A xylophone kind of instrument plays bell sounds with the same melody as the main instruments. Cellos play the bass part of the song. This is accompanied by a bass drum playing a steady count. A drum kit plays the percussion part with a marching beat. There are no voices in this song. This is an instrumental song. The feel of this song is uplifting.", "data_idx": 3410, "number": 0, "label": "rock"} +{"file_name": "test_05571.png", "caption": "This symphonic song features an orchestra playing a variety of instruments. The main melody is played on trumpets and violins. This is accompanied by the brass section and horn section of the orchestra. Clarinets play in harmony with the violins and trumpets. A xylophone kind of instrument plays bell sounds with the same melody as the main instruments. Cellos play the bass part of the song. This is accompanied by a bass drum playing a steady count. A drum kit plays the percussion part with a marching beat. There are no voices in this song. This is an instrumental song. The feel of this song is uplifting.", "data_idx": 3410, "number": 1, "label": "rock"} +{"file_name": "test_05572.png", "caption": "This symphonic song features an orchestra playing a variety of instruments. The main melody is played on trumpets and violins. This is accompanied by the brass section and horn section of the orchestra. Clarinets play in harmony with the violins and trumpets. A xylophone kind of instrument plays bell sounds with the same melody as the main instruments. Cellos play the bass part of the song. This is accompanied by a bass drum playing a steady count. A drum kit plays the percussion part with a marching beat. There are no voices in this song. This is an instrumental song. The feel of this song is uplifting.", "data_idx": 3410, "number": 2, "label": "rock"} +{"file_name": "test_05573.png", "caption": "This symphonic song features an orchestra playing a variety of instruments. The main melody is played on trumpets and violins. This is accompanied by the brass section and horn section of the orchestra. Clarinets play in harmony with the violins and trumpets. A xylophone kind of instrument plays bell sounds with the same melody as the main instruments. Cellos play the bass part of the song. This is accompanied by a bass drum playing a steady count. A drum kit plays the percussion part with a marching beat. There are no voices in this song. This is an instrumental song. The feel of this song is uplifting.", "data_idx": 3410, "number": 3, "label": "rock"} +{"file_name": "test_05574.png", "caption": "The Low Quality recording features a synth key melody. It sounds suspenseful and intense. The recording is noisy.", "data_idx": 3412, "number": 0, "label": "classical"} +{"file_name": "test_05575.png", "caption": "The Low Quality recording features a synth key melody. It sounds suspenseful and intense. The recording is noisy.", "data_idx": 3412, "number": 1, "label": "classical"} +{"file_name": "test_05576.png", "caption": "The Low Quality recording features a synth key melody. It sounds suspenseful and intense. The recording is noisy.", "data_idx": 3412, "number": 2, "label": "classical"} +{"file_name": "test_05577.png", "caption": "The Low Quality recording features a synth key melody. It sounds suspenseful and intense. The recording is noisy.", "data_idx": 3412, "number": 3, "label": "classical"} +{"file_name": "test_05578.png", "caption": "Instrumental modern hip hop beat featuring a clap, low kick, and record scratching with virtuosity.", "data_idx": 3413, "number": 0, "label": "hiphop"} +{"file_name": "test_05579.png", "caption": "Instrumental modern hip hop beat featuring a clap, low kick, and record scratching with virtuosity.", "data_idx": 3413, "number": 1, "label": "hiphop"} +{"file_name": "test_05580.png", "caption": "Instrumental modern hip hop beat featuring a clap, low kick, and record scratching with virtuosity.", "data_idx": 3413, "number": 2, "label": "hiphop"} +{"file_name": "test_05581.png", "caption": "Instrumental modern hip hop beat featuring a clap, low kick, and record scratching with virtuosity.", "data_idx": 3413, "number": 3, "label": "hiphop"} +{"file_name": "test_05582.png", "caption": "Someone is playing an evolving rhythm on various percussion instruments. This seems to be a professional piece with a lot of dynamics. This song may be playing as a part of an orchestra performance.", "data_idx": 3414, "number": 0, "label": "classical"} +{"file_name": "test_05583.png", "caption": "Someone is playing an evolving rhythm on various percussion instruments. This seems to be a professional piece with a lot of dynamics. This song may be playing as a part of an orchestra performance.", "data_idx": 3414, "number": 1, "label": "classical"} +{"file_name": "test_05584.png", "caption": "Someone is playing an evolving rhythm on various percussion instruments. This seems to be a professional piece with a lot of dynamics. This song may be playing as a part of an orchestra performance.", "data_idx": 3414, "number": 2, "label": "classical"} +{"file_name": "test_05585.png", "caption": "Someone is playing an evolving rhythm on various percussion instruments. This seems to be a professional piece with a lot of dynamics. This song may be playing as a part of an orchestra performance.", "data_idx": 3414, "number": 3, "label": "classical"} +{"file_name": "test_05586.png", "caption": "The low quality recording features a wide high pitched synth pad and wide low, sustained strings chords playing in the background, after which there is a thunderstruck sound effect, followed by male grunting and crowd yelling sound effects. It sounds suspenseful and intense - like a movie scene would.", "data_idx": 3416, "number": 0, "label": "metal"} +{"file_name": "test_05587.png", "caption": "The low quality recording features a wide high pitched synth pad and wide low, sustained strings chords playing in the background, after which there is a thunderstruck sound effect, followed by male grunting and crowd yelling sound effects. It sounds suspenseful and intense - like a movie scene would.", "data_idx": 3416, "number": 1, "label": "metal"} +{"file_name": "test_05588.png", "caption": "The low quality recording features a wide high pitched synth pad and wide low, sustained strings chords playing in the background, after which there is a thunderstruck sound effect, followed by male grunting and crowd yelling sound effects. It sounds suspenseful and intense - like a movie scene would.", "data_idx": 3416, "number": 2, "label": "metal"} +{"file_name": "test_05589.png", "caption": "The low quality recording features a wide high pitched synth pad and wide low, sustained strings chords playing in the background, after which there is a thunderstruck sound effect, followed by male grunting and crowd yelling sound effects. It sounds suspenseful and intense - like a movie scene would.", "data_idx": 3416, "number": 3, "label": "metal"} +{"file_name": "test_05590.png", "caption": "This song contains acoustic drums playing a simple hip hop groove along with a e-bass and e-guitars playing a simple repeating line. A male voice with a deeper voice is rapping on top of it. The song may be playing while having a BBQ in the garden with your friends.", "data_idx": 3418, "number": 0, "label": "hiphop"} +{"file_name": "test_05591.png", "caption": "This song contains acoustic drums playing a simple hip hop groove along with a e-bass and e-guitars playing a simple repeating line. A male voice with a deeper voice is rapping on top of it. The song may be playing while having a BBQ in the garden with your friends.", "data_idx": 3418, "number": 1, "label": "hiphop"} +{"file_name": "test_05592.png", "caption": "This song contains acoustic drums playing a simple hip hop groove along with a e-bass and e-guitars playing a simple repeating line. A male voice with a deeper voice is rapping on top of it. The song may be playing while having a BBQ in the garden with your friends.", "data_idx": 3418, "number": 2, "label": "hiphop"} +{"file_name": "test_05593.png", "caption": "This song contains acoustic drums playing a simple hip hop groove along with a e-bass and e-guitars playing a simple repeating line. A male voice with a deeper voice is rapping on top of it. The song may be playing while having a BBQ in the garden with your friends.", "data_idx": 3418, "number": 3, "label": "hiphop"} +{"file_name": "test_05594.png", "caption": "The low quality recording features a folk rock song that consists of a sustained bagpipe melody and sustained synth bass, followed by funky synth keys and punchy toms. It sounds suspenseful and intense.", "data_idx": 3424, "number": 0, "label": "hiphop"} +{"file_name": "test_05595.png", "caption": "The low quality recording features a folk rock song that consists of a sustained bagpipe melody and sustained synth bass, followed by funky synth keys and punchy toms. It sounds suspenseful and intense.", "data_idx": 3424, "number": 1, "label": "hiphop"} +{"file_name": "test_05596.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, groovy drumming rhythm, keyboard accompaniment and other percussive hits. The song is a retro pop love song.", "data_idx": 3426, "number": 0, "label": "disco"} +{"file_name": "test_05597.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, groovy drumming rhythm, keyboard accompaniment and other percussive hits. The song is a retro pop love song.", "data_idx": 3426, "number": 1, "label": "disco"} +{"file_name": "test_05598.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, groovy drumming rhythm, keyboard accompaniment and other percussive hits. The song is a retro pop love song.", "data_idx": 3426, "number": 2, "label": "disco"} +{"file_name": "test_05599.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a percussive bass line, groovy drumming rhythm, keyboard accompaniment and other percussive hits. The song is a retro pop love song.", "data_idx": 3426, "number": 3, "label": "disco"} +{"file_name": "test_05600.png", "caption": "This is a Croatian pop music piece. There is a male vocalist singing melodically in the lead. The acoustic guitar is playing a simple tune with the bass guitar playing in the background. The rhythm is played by a basic electronic drum beat with an acoustic sound. There is a lively atmosphere to this piece. This piece could fit well in the soundtrack of a romantic comedy movie that takes place in Croatia.", "data_idx": 3430, "number": 0, "label": "disco"} +{"file_name": "test_05601.png", "caption": "This is a Croatian pop music piece. There is a male vocalist singing melodically in the lead. The acoustic guitar is playing a simple tune with the bass guitar playing in the background. The rhythm is played by a basic electronic drum beat with an acoustic sound. There is a lively atmosphere to this piece. This piece could fit well in the soundtrack of a romantic comedy movie that takes place in Croatia.", "data_idx": 3430, "number": 1, "label": "disco"} +{"file_name": "test_05602.png", "caption": "This is a Croatian pop music piece. There is a male vocalist singing melodically in the lead. The acoustic guitar is playing a simple tune with the bass guitar playing in the background. The rhythm is played by a basic electronic drum beat with an acoustic sound. There is a lively atmosphere to this piece. This piece could fit well in the soundtrack of a romantic comedy movie that takes place in Croatia.", "data_idx": 3430, "number": 2, "label": "disco"} +{"file_name": "test_05603.png", "caption": "This is a Croatian pop music piece. There is a male vocalist singing melodically in the lead. The acoustic guitar is playing a simple tune with the bass guitar playing in the background. The rhythm is played by a basic electronic drum beat with an acoustic sound. There is a lively atmosphere to this piece. This piece could fit well in the soundtrack of a romantic comedy movie that takes place in Croatia.", "data_idx": 3430, "number": 3, "label": "disco"} +{"file_name": "test_05604.png", "caption": "The low quality recording features a country blues song that consists of fruity male vocal singing over groovy electric guitar melodies, groovy bass, shimmering cymbals, mellow snare, soft kick hits and clapping. The recording is a bit noisy, as it is vintage, and it sounds passionate, groovy, uptempo and cool.", "data_idx": 3432, "number": 0, "label": "jazz"} +{"file_name": "test_05605.png", "caption": "The low quality recording features a country blues song that consists of fruity male vocal singing over groovy electric guitar melodies, groovy bass, shimmering cymbals, mellow snare, soft kick hits and clapping. The recording is a bit noisy, as it is vintage, and it sounds passionate, groovy, uptempo and cool.", "data_idx": 3432, "number": 1, "label": "jazz"} +{"file_name": "test_05606.png", "caption": "The low quality recording features a country blues song that consists of fruity male vocal singing over groovy electric guitar melodies, groovy bass, shimmering cymbals, mellow snare, soft kick hits and clapping. The recording is a bit noisy, as it is vintage, and it sounds passionate, groovy, uptempo and cool.", "data_idx": 3432, "number": 2, "label": "jazz"} +{"file_name": "test_05607.png", "caption": "The low quality recording features a country blues song that consists of fruity male vocal singing over groovy electric guitar melodies, groovy bass, shimmering cymbals, mellow snare, soft kick hits and clapping. The recording is a bit noisy, as it is vintage, and it sounds passionate, groovy, uptempo and cool.", "data_idx": 3432, "number": 3, "label": "jazz"} +{"file_name": "test_05608.png", "caption": "This music is an electronic guitar instrumental. The tempo is slow with a melancholic , resounding harmony on the guitar. It is mellow, soft, poignant, sentimental and emotional.", "data_idx": 3434, "number": 0, "label": "hiphop"} +{"file_name": "test_05609.png", "caption": "This music is an electronic guitar instrumental. The tempo is slow with a melancholic , resounding harmony on the guitar. It is mellow, soft, poignant, sentimental and emotional.", "data_idx": 3434, "number": 1, "label": "hiphop"} +{"file_name": "test_05610.png", "caption": "This music is an electronic guitar instrumental. The tempo is slow with a melancholic , resounding harmony on the guitar. It is mellow, soft, poignant, sentimental and emotional.", "data_idx": 3434, "number": 2, "label": "hiphop"} +{"file_name": "test_05611.png", "caption": "This music is an electronic guitar instrumental. The tempo is slow with a melancholic , resounding harmony on the guitar. It is mellow, soft, poignant, sentimental and emotional.", "data_idx": 3434, "number": 3, "label": "hiphop"} +{"file_name": "test_05612.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing mixed vocals, singing over acoustic rhythm guitar, accordion melody and groovy bass. It sounds passionate and joyful. The recording is noisy and in mono - the sound is coming from the right channel only.", "data_idx": 3436, "number": 0, "label": "country"} +{"file_name": "test_05613.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing mixed vocals, singing over acoustic rhythm guitar, accordion melody and groovy bass. It sounds passionate and joyful. The recording is noisy and in mono - the sound is coming from the right channel only.", "data_idx": 3436, "number": 1, "label": "country"} +{"file_name": "test_05614.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing mixed vocals, singing over acoustic rhythm guitar, accordion melody and groovy bass. It sounds passionate and joyful. The recording is noisy and in mono - the sound is coming from the right channel only.", "data_idx": 3436, "number": 2, "label": "country"} +{"file_name": "test_05615.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing mixed vocals, singing over acoustic rhythm guitar, accordion melody and groovy bass. It sounds passionate and joyful. The recording is noisy and in mono - the sound is coming from the right channel only.", "data_idx": 3436, "number": 3, "label": "country"} +{"file_name": "test_05616.png", "caption": "A male vocalist sings this energetic Punjabi folk song. The tempo is medium fast with an infectious tabla and Dhol percussive beat, ektara rhythm and a funky keyboard accompaniment. The song is lively, spirited, cheerful, simple, happy, playful, enthusiastic, vivacious with a festive, celebratory vibe and dance groove. This song is a Festive Punjabi Folk song.", "data_idx": 3437, "number": 0, "label": "reggae"} +{"file_name": "test_05617.png", "caption": "A male vocalist sings this energetic Punjabi folk song. The tempo is medium fast with an infectious tabla and Dhol percussive beat, ektara rhythm and a funky keyboard accompaniment. The song is lively, spirited, cheerful, simple, happy, playful, enthusiastic, vivacious with a festive, celebratory vibe and dance groove. This song is a Festive Punjabi Folk song.", "data_idx": 3437, "number": 1, "label": "reggae"} +{"file_name": "test_05618.png", "caption": "A male vocalist sings this energetic Punjabi folk song. The tempo is medium fast with an infectious tabla and Dhol percussive beat, ektara rhythm and a funky keyboard accompaniment. The song is lively, spirited, cheerful, simple, happy, playful, enthusiastic, vivacious with a festive, celebratory vibe and dance groove. This song is a Festive Punjabi Folk song.", "data_idx": 3437, "number": 2, "label": "reggae"} +{"file_name": "test_05619.png", "caption": "A male vocalist sings this energetic Punjabi folk song. The tempo is medium fast with an infectious tabla and Dhol percussive beat, ektara rhythm and a funky keyboard accompaniment. The song is lively, spirited, cheerful, simple, happy, playful, enthusiastic, vivacious with a festive, celebratory vibe and dance groove. This song is a Festive Punjabi Folk song.", "data_idx": 3437, "number": 3, "label": "reggae"} +{"file_name": "test_05620.png", "caption": "This audio contains someone playing a piece on cello ranging from the low register up into the higher register. This song may be playing during a live performance.", "data_idx": 3438, "number": 0, "label": "jazz"} +{"file_name": "test_05621.png", "caption": "This audio contains someone playing a piece on cello ranging from the low register up into the higher register. This song may be playing during a live performance.", "data_idx": 3438, "number": 1, "label": "jazz"} +{"file_name": "test_05622.png", "caption": "This audio contains someone playing a piece on cello ranging from the low register up into the higher register. This song may be playing during a live performance.", "data_idx": 3438, "number": 2, "label": "jazz"} +{"file_name": "test_05623.png", "caption": "This audio contains someone playing a piece on cello ranging from the low register up into the higher register. This song may be playing during a live performance.", "data_idx": 3438, "number": 3, "label": "jazz"} +{"file_name": "test_05624.png", "caption": "A male singer sings this Telugu folk song. The tempo pop is medium with a tambourine, tabla and other south Indian percussion playing steadily, along with string instrument harmony. The song is a folk tune and probably a courtship song. The song has loud sound effects which are funny. The audio quality is poor.", "data_idx": 3441, "number": 0, "label": "disco"} +{"file_name": "test_05625.png", "caption": "A male singer sings this Telugu folk song. The tempo pop is medium with a tambourine, tabla and other south Indian percussion playing steadily, along with string instrument harmony. The song is a folk tune and probably a courtship song. The song has loud sound effects which are funny. The audio quality is poor.", "data_idx": 3441, "number": 1, "label": "disco"} +{"file_name": "test_05626.png", "caption": "A male singer sings this Telugu folk song. The tempo pop is medium with a tambourine, tabla and other south Indian percussion playing steadily, along with string instrument harmony. The song is a folk tune and probably a courtship song. The song has loud sound effects which are funny. The audio quality is poor.", "data_idx": 3441, "number": 2, "label": "disco"} +{"file_name": "test_05627.png", "caption": "A male singer sings this Telugu folk song. The tempo pop is medium with a tambourine, tabla and other south Indian percussion playing steadily, along with string instrument harmony. The song is a folk tune and probably a courtship song. The song has loud sound effects which are funny. The audio quality is poor.", "data_idx": 3441, "number": 3, "label": "disco"} +{"file_name": "test_05628.png", "caption": "This song contains someone playing a transverse flute in a very high pitch. Breathing sounds can be heard. This song may be playing in a live orchestra solo.", "data_idx": 3442, "number": 0, "label": "jazz"} +{"file_name": "test_05629.png", "caption": "This song contains someone playing a transverse flute in a very high pitch. Breathing sounds can be heard. This song may be playing in a live orchestra solo.", "data_idx": 3442, "number": 1, "label": "jazz"} +{"file_name": "test_05630.png", "caption": "This song contains someone playing a transverse flute in a very high pitch. Breathing sounds can be heard. This song may be playing in a live orchestra solo.", "data_idx": 3442, "number": 2, "label": "jazz"} +{"file_name": "test_05631.png", "caption": "This song contains someone playing a transverse flute in a very high pitch. Breathing sounds can be heard. This song may be playing in a live orchestra solo.", "data_idx": 3442, "number": 3, "label": "jazz"} +{"file_name": "test_05632.png", "caption": "The low quality recording features a quiet bowl resonating sounds and even though the recording is so noisy and in mono, it is still calming.", "data_idx": 3443, "number": 0, "label": "jazz"} +{"file_name": "test_05633.png", "caption": "The low quality recording features a quiet bowl resonating sounds and even though the recording is so noisy and in mono, it is still calming.", "data_idx": 3443, "number": 1, "label": "jazz"} +{"file_name": "test_05634.png", "caption": "The low quality recording features a quiet bowl resonating sounds and even though the recording is so noisy and in mono, it is still calming.", "data_idx": 3443, "number": 2, "label": "jazz"} +{"file_name": "test_05635.png", "caption": "The low quality recording features a quiet bowl resonating sounds and even though the recording is so noisy and in mono, it is still calming.", "data_idx": 3443, "number": 3, "label": "jazz"} +{"file_name": "test_05636.png", "caption": "A male singer sings Arabic vocals with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, percussive bass line, keyboard accompaniment and percussive hits. The song is an Arabic dance song.", "data_idx": 3445, "number": 0, "label": "reggae"} +{"file_name": "test_05637.png", "caption": "A male singer sings Arabic vocals with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, percussive bass line, keyboard accompaniment and percussive hits. The song is an Arabic dance song.", "data_idx": 3445, "number": 1, "label": "reggae"} +{"file_name": "test_05638.png", "caption": "A male singer sings Arabic vocals with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, percussive bass line, keyboard accompaniment and percussive hits. The song is an Arabic dance song.", "data_idx": 3445, "number": 2, "label": "reggae"} +{"file_name": "test_05639.png", "caption": "A male singer sings Arabic vocals with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, percussive bass line, keyboard accompaniment and percussive hits. The song is an Arabic dance song.", "data_idx": 3445, "number": 3, "label": "reggae"} +{"file_name": "test_05640.png", "caption": "This music is a lively harmonica instrumental. The tempo is medium with a spirited melody. The music is lively, clear, energetic, vibrant and breezy with a male voice at the end of the audio clip. This is probably a Harmonica tutorial.", "data_idx": 3446, "number": 0, "label": "jazz"} +{"file_name": "test_05641.png", "caption": "This music is a lively harmonica instrumental. The tempo is medium with a spirited melody. The music is lively, clear, energetic, vibrant and breezy with a male voice at the end of the audio clip. This is probably a Harmonica tutorial.", "data_idx": 3446, "number": 1, "label": "jazz"} +{"file_name": "test_05642.png", "caption": "This music is a lively harmonica instrumental. The tempo is medium with a spirited melody. The music is lively, clear, energetic, vibrant and breezy with a male voice at the end of the audio clip. This is probably a Harmonica tutorial.", "data_idx": 3446, "number": 2, "label": "jazz"} +{"file_name": "test_05643.png", "caption": "This music is a lively harmonica instrumental. The tempo is medium with a spirited melody. The music is lively, clear, energetic, vibrant and breezy with a male voice at the end of the audio clip. This is probably a Harmonica tutorial.", "data_idx": 3446, "number": 3, "label": "jazz"} +{"file_name": "test_05644.png", "caption": "This is a bluegrass cover of an originally heavy metal music piece. There is a male vocalist singing melodically in the lead. The tune is being played by the banjo, the mandolin and the acoustic guitar while the bass guitar is playing in the background. The atmosphere is playful and there is a rural feel to the piece. This piece could be used in the soundtrack of a comedy movie that takes place in the rural parts of the USA.", "data_idx": 3450, "number": 0, "label": "blues"} +{"file_name": "test_05645.png", "caption": "This is a bluegrass cover of an originally heavy metal music piece. There is a male vocalist singing melodically in the lead. The tune is being played by the banjo, the mandolin and the acoustic guitar while the bass guitar is playing in the background. The atmosphere is playful and there is a rural feel to the piece. This piece could be used in the soundtrack of a comedy movie that takes place in the rural parts of the USA.", "data_idx": 3450, "number": 1, "label": "blues"} +{"file_name": "test_05646.png", "caption": "This is a bluegrass cover of an originally heavy metal music piece. There is a male vocalist singing melodically in the lead. The tune is being played by the banjo, the mandolin and the acoustic guitar while the bass guitar is playing in the background. The atmosphere is playful and there is a rural feel to the piece. This piece could be used in the soundtrack of a comedy movie that takes place in the rural parts of the USA.", "data_idx": 3450, "number": 2, "label": "blues"} +{"file_name": "test_05647.png", "caption": "This is a bluegrass cover of an originally heavy metal music piece. There is a male vocalist singing melodically in the lead. The tune is being played by the banjo, the mandolin and the acoustic guitar while the bass guitar is playing in the background. The atmosphere is playful and there is a rural feel to the piece. This piece could be used in the soundtrack of a comedy movie that takes place in the rural parts of the USA.", "data_idx": 3450, "number": 3, "label": "blues"} +{"file_name": "test_05648.png", "caption": "Here we have a live recording of a simple motif being played on a contra alto clarinet, which has a deeper tone than other clarinets. The player coughs at the beginning of the recording, mumbles a few words softly, and then plays a simple slow motif.", "data_idx": 3451, "number": 0, "label": "jazz"} +{"file_name": "test_05649.png", "caption": "Here we have a live recording of a simple motif being played on a contra alto clarinet, which has a deeper tone than other clarinets. The player coughs at the beginning of the recording, mumbles a few words softly, and then plays a simple slow motif.", "data_idx": 3451, "number": 1, "label": "jazz"} +{"file_name": "test_05650.png", "caption": "This audio contains people playing rhythms and melodies on bells with sticks. This is an amateur recording.", "data_idx": 3453, "number": 0, "label": "classical"} +{"file_name": "test_05651.png", "caption": "This audio contains people playing rhythms and melodies on bells with sticks. This is an amateur recording.", "data_idx": 3453, "number": 1, "label": "classical"} +{"file_name": "test_05652.png", "caption": "This audio contains people playing rhythms and melodies on bells with sticks. This is an amateur recording.", "data_idx": 3453, "number": 2, "label": "classical"} +{"file_name": "test_05653.png", "caption": "This audio contains people playing rhythms and melodies on bells with sticks. This is an amateur recording.", "data_idx": 3453, "number": 3, "label": "classical"} +{"file_name": "test_05654.png", "caption": "This is a live performance of an alternative R&B music piece. There is a female vocalist singing in a seductive manner in the lead. Later on, a male vocalist starts rapping. There is a groovy bass line in the background. The DJ is scratching the turntable. The rhythmic background is provided by an R&B acoustic drum beat. The atmosphere is sensual and the sound is urban. Sounds of the crowd cheering can be heard in the recording.", "data_idx": 3454, "number": 0, "label": "disco"} +{"file_name": "test_05655.png", "caption": "This is a live performance of an alternative R&B music piece. There is a female vocalist singing in a seductive manner in the lead. Later on, a male vocalist starts rapping. There is a groovy bass line in the background. The DJ is scratching the turntable. The rhythmic background is provided by an R&B acoustic drum beat. The atmosphere is sensual and the sound is urban. Sounds of the crowd cheering can be heard in the recording.", "data_idx": 3454, "number": 1, "label": "disco"} +{"file_name": "test_05656.png", "caption": "This is a live performance of an alternative R&B music piece. There is a female vocalist singing in a seductive manner in the lead. Later on, a male vocalist starts rapping. There is a groovy bass line in the background. The DJ is scratching the turntable. The rhythmic background is provided by an R&B acoustic drum beat. The atmosphere is sensual and the sound is urban. Sounds of the crowd cheering can be heard in the recording.", "data_idx": 3454, "number": 2, "label": "disco"} +{"file_name": "test_05657.png", "caption": "This is a live performance of an alternative R&B music piece. There is a female vocalist singing in a seductive manner in the lead. Later on, a male vocalist starts rapping. There is a groovy bass line in the background. The DJ is scratching the turntable. The rhythmic background is provided by an R&B acoustic drum beat. The atmosphere is sensual and the sound is urban. Sounds of the crowd cheering can be heard in the recording.", "data_idx": 3454, "number": 3, "label": "disco"} +{"file_name": "test_05658.png", "caption": "The low quality recording features a Soca song that features repetitive flat male vocal singing over wide male background grunts, repetitive buzzy synth, punchy kick, syncopated snare and wooden percussion. It sounds energetic and uptempo.", "data_idx": 3455, "number": 0, "label": "reggae"} +{"file_name": "test_05659.png", "caption": "The low quality recording features a Soca song that features repetitive flat male vocal singing over wide male background grunts, repetitive buzzy synth, punchy kick, syncopated snare and wooden percussion. It sounds energetic and uptempo.", "data_idx": 3455, "number": 1, "label": "reggae"} +{"file_name": "test_05660.png", "caption": "The low quality recording features a Soca song that features repetitive flat male vocal singing over wide male background grunts, repetitive buzzy synth, punchy kick, syncopated snare and wooden percussion. It sounds energetic and uptempo.", "data_idx": 3455, "number": 2, "label": "reggae"} +{"file_name": "test_05661.png", "caption": "The low quality recording features a Soca song that features repetitive flat male vocal singing over wide male background grunts, repetitive buzzy synth, punchy kick, syncopated snare and wooden percussion. It sounds energetic and uptempo.", "data_idx": 3455, "number": 3, "label": "reggae"} +{"file_name": "test_05662.png", "caption": "This is an instrumental cover of a ballad piece. The harp is gently playing the melody with improvisational touches differing from the original version. There is a calming and soothing atmosphere to this piece. This music could be playing in the background at a hotel or a spa resort.", "data_idx": 3458, "number": 0, "label": "jazz"} +{"file_name": "test_05663.png", "caption": "This is an instrumental cover of a ballad piece. The harp is gently playing the melody with improvisational touches differing from the original version. There is a calming and soothing atmosphere to this piece. This music could be playing in the background at a hotel or a spa resort.", "data_idx": 3458, "number": 1, "label": "jazz"} +{"file_name": "test_05664.png", "caption": "This is an instrumental cover of a ballad piece. The harp is gently playing the melody with improvisational touches differing from the original version. There is a calming and soothing atmosphere to this piece. This music could be playing in the background at a hotel or a spa resort.", "data_idx": 3458, "number": 2, "label": "jazz"} +{"file_name": "test_05665.png", "caption": "This is an instrumental cover of a ballad piece. The harp is gently playing the melody with improvisational touches differing from the original version. There is a calming and soothing atmosphere to this piece. This music could be playing in the background at a hotel or a spa resort.", "data_idx": 3458, "number": 3, "label": "jazz"} +{"file_name": "test_05666.png", "caption": "This is an amateur flute cover of a pop music piece. The flute is playing a gentle melody in the major key. There is a backing track that has a mellow acoustic guitar playing. The atmosphere is calming and easygoing. Although the audio quality is not that great, this piece could be sampled for use in beat-making.", "data_idx": 3459, "number": 0, "label": "hiphop"} +{"file_name": "test_05667.png", "caption": "This is an amateur flute cover of a pop music piece. The flute is playing a gentle melody in the major key. There is a backing track that has a mellow acoustic guitar playing. The atmosphere is calming and easygoing. Although the audio quality is not that great, this piece could be sampled for use in beat-making.", "data_idx": 3459, "number": 1, "label": "hiphop"} +{"file_name": "test_05668.png", "caption": "This is an amateur flute cover of a pop music piece. The flute is playing a gentle melody in the major key. There is a backing track that has a mellow acoustic guitar playing. The atmosphere is calming and easygoing. Although the audio quality is not that great, this piece could be sampled for use in beat-making.", "data_idx": 3459, "number": 2, "label": "hiphop"} +{"file_name": "test_05669.png", "caption": "This is an amateur flute cover of a pop music piece. The flute is playing a gentle melody in the major key. There is a backing track that has a mellow acoustic guitar playing. The atmosphere is calming and easygoing. Although the audio quality is not that great, this piece could be sampled for use in beat-making.", "data_idx": 3459, "number": 3, "label": "hiphop"} +{"file_name": "test_05670.png", "caption": "This audio contains the sound of bells ringing in different rhythm, tempo and pitch. This is an amateur recording. This may be playing in the center of a village.", "data_idx": 3461, "number": 0, "label": "classical"} +{"file_name": "test_05671.png", "caption": "This audio contains the sound of bells ringing in different rhythm, tempo and pitch. This is an amateur recording. This may be playing in the center of a village.", "data_idx": 3461, "number": 1, "label": "classical"} +{"file_name": "test_05672.png", "caption": "This audio contains the sound of bells ringing in different rhythm, tempo and pitch. This is an amateur recording. This may be playing in the center of a village.", "data_idx": 3461, "number": 2, "label": "classical"} +{"file_name": "test_05673.png", "caption": "This audio contains the sound of bells ringing in different rhythm, tempo and pitch. This is an amateur recording. This may be playing in the center of a village.", "data_idx": 3461, "number": 3, "label": "classical"} +{"file_name": "test_05674.png", "caption": "The low quality recording features a tutorial where a fruity male vocalist is talking in-between electric guitar chords. There is a very buzzy guitar amp in the background and the recording is very noisy.", "data_idx": 3464, "number": 0, "label": "reggae"} +{"file_name": "test_05675.png", "caption": "The low quality recording features a tutorial where a fruity male vocalist is talking in-between electric guitar chords. There is a very buzzy guitar amp in the background and the recording is very noisy.", "data_idx": 3464, "number": 1, "label": "reggae"} +{"file_name": "test_05676.png", "caption": "The low quality recording features a tutorial where a fruity male vocalist is talking in-between electric guitar chords. There is a very buzzy guitar amp in the background and the recording is very noisy.", "data_idx": 3464, "number": 2, "label": "reggae"} +{"file_name": "test_05677.png", "caption": "The low quality recording features a tutorial where a fruity male vocalist is talking in-between electric guitar chords. There is a very buzzy guitar amp in the background and the recording is very noisy.", "data_idx": 3464, "number": 3, "label": "reggae"} +{"file_name": "test_05678.png", "caption": "The song is an instrumental. The tempo is medium with a brass section including trumpets, trombones and tubas playing in an instrumental harmony. The song is emotional and spirited. The song is western classical music piece.", "data_idx": 3465, "number": 0, "label": "hiphop"} +{"file_name": "test_05679.png", "caption": "The song is an instrumental. The tempo is medium with a brass section including trumpets, trombones and tubas playing in an instrumental harmony. The song is emotional and spirited. The song is western classical music piece.", "data_idx": 3465, "number": 1, "label": "hiphop"} +{"file_name": "test_05680.png", "caption": "The song is an instrumental. The tempo is medium with a brass section including trumpets, trombones and tubas playing in an instrumental harmony. The song is emotional and spirited. The song is western classical music piece.", "data_idx": 3465, "number": 2, "label": "hiphop"} +{"file_name": "test_05681.png", "caption": "The song is an instrumental. The tempo is medium with a brass section including trumpets, trombones and tubas playing in an instrumental harmony. The song is emotional and spirited. The song is western classical music piece.", "data_idx": 3465, "number": 3, "label": "hiphop"} +{"file_name": "test_05682.png", "caption": "This reggae song features male voices singing the main melody in harmony. The clip starts off with the sound of a chalk writing on a board. This is followed by a percussion roll. The voices start singing the main melody. This is accompanied by percussion playing a reggae beat. The bass plays a reggae style bassline. The keyboard plays staccato chords in a reggae rhythm. The mood of this song is happy. This song can be played in a birthday scene in a movie when a family is on a holiday on an island.", "data_idx": 3468, "number": 0, "label": "hiphop"} +{"file_name": "test_05683.png", "caption": "This reggae song features male voices singing the main melody in harmony. The clip starts off with the sound of a chalk writing on a board. This is followed by a percussion roll. The voices start singing the main melody. This is accompanied by percussion playing a reggae beat. The bass plays a reggae style bassline. The keyboard plays staccato chords in a reggae rhythm. The mood of this song is happy. This song can be played in a birthday scene in a movie when a family is on a holiday on an island.", "data_idx": 3468, "number": 1, "label": "hiphop"} +{"file_name": "test_05684.png", "caption": "The low quality recording features a sustained string melody, followed by woodwind and mellow marimba melodies. It sounds emotional, passionate and sad - like something you would hear in the movies, as the background music.", "data_idx": 3469, "number": 0, "label": "classical"} +{"file_name": "test_05685.png", "caption": "The low quality recording features a sustained string melody, followed by woodwind and mellow marimba melodies. It sounds emotional, passionate and sad - like something you would hear in the movies, as the background music.", "data_idx": 3469, "number": 1, "label": "classical"} +{"file_name": "test_05686.png", "caption": "The low quality recording features a sustained string melody, followed by woodwind and mellow marimba melodies. It sounds emotional, passionate and sad - like something you would hear in the movies, as the background music.", "data_idx": 3469, "number": 2, "label": "classical"} +{"file_name": "test_05687.png", "caption": "The low quality recording features a sustained string melody, followed by woodwind and mellow marimba melodies. It sounds emotional, passionate and sad - like something you would hear in the movies, as the background music.", "data_idx": 3469, "number": 3, "label": "classical"} +{"file_name": "test_05688.png", "caption": "The song track is instrumental. The tempo is medium with temple bells being played to create two distinct tones with long vibrations creating clear overtones. The soundtrack is calming and deeply religious. The audio track quality is poor with ambient environment noises.", "data_idx": 3471, "number": 0, "label": "classical"} +{"file_name": "test_05689.png", "caption": "The song track is instrumental. The tempo is medium with temple bells being played to create two distinct tones with long vibrations creating clear overtones. The soundtrack is calming and deeply religious. The audio track quality is poor with ambient environment noises.", "data_idx": 3471, "number": 1, "label": "classical"} +{"file_name": "test_05690.png", "caption": "Ambient music full of textures. Present are a slow descending glissando from a high-pitched metallic screech, a bowed string bass, atmospheric reverb. The mood is foreboding and ominous. Good for an unsettling horror soundtrack.", "data_idx": 3472, "number": 0, "label": "classical"} +{"file_name": "test_05691.png", "caption": "Ambient music full of textures. Present are a slow descending glissando from a high-pitched metallic screech, a bowed string bass, atmospheric reverb. The mood is foreboding and ominous. Good for an unsettling horror soundtrack.", "data_idx": 3472, "number": 1, "label": "classical"} +{"file_name": "test_05692.png", "caption": "Ambient music full of textures. Present are a slow descending glissando from a high-pitched metallic screech, a bowed string bass, atmospheric reverb. The mood is foreboding and ominous. Good for an unsettling horror soundtrack.", "data_idx": 3472, "number": 2, "label": "classical"} +{"file_name": "test_05693.png", "caption": "Ambient music full of textures. Present are a slow descending glissando from a high-pitched metallic screech, a bowed string bass, atmospheric reverb. The mood is foreboding and ominous. Good for an unsettling horror soundtrack.", "data_idx": 3472, "number": 3, "label": "classical"} +{"file_name": "test_05694.png", "caption": "Orchestra music with pizzicato strings, bowed bass and cello, and a clave with reverb. The music feels stationary, like a vamp, with a sense of waiting.", "data_idx": 3473, "number": 0, "label": "hiphop"} +{"file_name": "test_05695.png", "caption": "Orchestra music with pizzicato strings, bowed bass and cello, and a clave with reverb. The music feels stationary, like a vamp, with a sense of waiting.", "data_idx": 3473, "number": 1, "label": "hiphop"} +{"file_name": "test_05696.png", "caption": "Orchestra music with pizzicato strings, bowed bass and cello, and a clave with reverb. The music feels stationary, like a vamp, with a sense of waiting.", "data_idx": 3473, "number": 2, "label": "hiphop"} +{"file_name": "test_05697.png", "caption": "Orchestra music with pizzicato strings, bowed bass and cello, and a clave with reverb. The music feels stationary, like a vamp, with a sense of waiting.", "data_idx": 3473, "number": 3, "label": "hiphop"} +{"file_name": "test_05698.png", "caption": "The low quality recording features a classical song that consists of a wide strings melody, low brass and woodwinds melody. It sounds suspenseful and intense.", "data_idx": 3474, "number": 0, "label": "classical"} +{"file_name": "test_05699.png", "caption": "The low quality recording features a classical song that consists of a wide strings melody, low brass and woodwinds melody. It sounds suspenseful and intense.", "data_idx": 3474, "number": 1, "label": "classical"} +{"file_name": "test_05700.png", "caption": "The low quality recording features a classical song that consists of a wide strings melody, low brass and woodwinds melody. It sounds suspenseful and intense.", "data_idx": 3474, "number": 2, "label": "classical"} +{"file_name": "test_05701.png", "caption": "The low quality recording features a classical song that consists of a wide strings melody, low brass and woodwinds melody. It sounds suspenseful and intense.", "data_idx": 3474, "number": 3, "label": "classical"} +{"file_name": "test_05702.png", "caption": "This is a religious music piece. There is a female vocalist singing melodically in the Portuguese language with a Brazilian accent. The piano and the violin are playing a mellow tune. The atmosphere is spiritual. Although the words give the impression it is a Christian gospel, the footage in the video belongs to the site of a syncretic movement, so one should not mistakenly take it as a gospel piece.", "data_idx": 3477, "number": 0, "label": "country"} +{"file_name": "test_05703.png", "caption": "This is a religious music piece. There is a female vocalist singing melodically in the Portuguese language with a Brazilian accent. The piano and the violin are playing a mellow tune. The atmosphere is spiritual. Although the words give the impression it is a Christian gospel, the footage in the video belongs to the site of a syncretic movement, so one should not mistakenly take it as a gospel piece.", "data_idx": 3477, "number": 1, "label": "country"} +{"file_name": "test_05704.png", "caption": "This is a religious music piece. There is a female vocalist singing melodically in the Portuguese language with a Brazilian accent. The piano and the violin are playing a mellow tune. The atmosphere is spiritual. Although the words give the impression it is a Christian gospel, the footage in the video belongs to the site of a syncretic movement, so one should not mistakenly take it as a gospel piece.", "data_idx": 3477, "number": 2, "label": "country"} +{"file_name": "test_05705.png", "caption": "This is a religious music piece. There is a female vocalist singing melodically in the Portuguese language with a Brazilian accent. The piano and the violin are playing a mellow tune. The atmosphere is spiritual. Although the words give the impression it is a Christian gospel, the footage in the video belongs to the site of a syncretic movement, so one should not mistakenly take it as a gospel piece.", "data_idx": 3477, "number": 3, "label": "country"} +{"file_name": "test_05706.png", "caption": "This song features a theremin being played. There is no melody to this song. There is no other instrument in this song. This sounds like the sounds of a computer on a spaceship. There is no voice in this song. This song can be played in a movie featuring an alien spaceship.", "data_idx": 3479, "number": 0, "label": "hiphop"} +{"file_name": "test_05707.png", "caption": "This song features a theremin being played. There is no melody to this song. There is no other instrument in this song. This sounds like the sounds of a computer on a spaceship. There is no voice in this song. This song can be played in a movie featuring an alien spaceship.", "data_idx": 3479, "number": 1, "label": "hiphop"} +{"file_name": "test_05708.png", "caption": "This relaxing song features the sound of pads in the background. A guitar strums a chord first then plays arpeggiated chords. At the end of the song, a piano chord is played. A wave-like synth plays one continuous note in the background. The bass plays the root notes of the chords and the note lingers. The mood of this song is relaxing. This song can be played in a spa.", "data_idx": 3484, "number": 0, "label": "jazz"} +{"file_name": "test_05709.png", "caption": "This relaxing song features the sound of pads in the background. A guitar strums a chord first then plays arpeggiated chords. At the end of the song, a piano chord is played. A wave-like synth plays one continuous note in the background. The bass plays the root notes of the chords and the note lingers. The mood of this song is relaxing. This song can be played in a spa.", "data_idx": 3484, "number": 1, "label": "jazz"} +{"file_name": "test_05710.png", "caption": "This relaxing song features the sound of pads in the background. A guitar strums a chord first then plays arpeggiated chords. At the end of the song, a piano chord is played. A wave-like synth plays one continuous note in the background. The bass plays the root notes of the chords and the note lingers. The mood of this song is relaxing. This song can be played in a spa.", "data_idx": 3484, "number": 2, "label": "jazz"} +{"file_name": "test_05711.png", "caption": "This relaxing song features the sound of pads in the background. A guitar strums a chord first then plays arpeggiated chords. At the end of the song, a piano chord is played. A wave-like synth plays one continuous note in the background. The bass plays the root notes of the chords and the note lingers. The mood of this song is relaxing. This song can be played in a spa.", "data_idx": 3484, "number": 3, "label": "jazz"} +{"file_name": "test_05712.png", "caption": "This jazz song features the main melody played on a reed instrument and a guitar in unison. The melody is an ascending pattern of three notes per beat. This is accompanied by percussion playing a simple beat ending on an extended drum roll. The bass plays a descending run followed by an ascending run. The piano plays jazz chords in the background. There are no voices in this instrumental song. This song can be played in a luxury bar.", "data_idx": 3488, "number": 0, "label": "reggae"} +{"file_name": "test_05713.png", "caption": "This jazz song features the main melody played on a reed instrument and a guitar in unison. The melody is an ascending pattern of three notes per beat. This is accompanied by percussion playing a simple beat ending on an extended drum roll. The bass plays a descending run followed by an ascending run. The piano plays jazz chords in the background. There are no voices in this instrumental song. This song can be played in a luxury bar.", "data_idx": 3488, "number": 1, "label": "reggae"} +{"file_name": "test_05714.png", "caption": "This jazz song features the main melody played on a reed instrument and a guitar in unison. The melody is an ascending pattern of three notes per beat. This is accompanied by percussion playing a simple beat ending on an extended drum roll. The bass plays a descending run followed by an ascending run. The piano plays jazz chords in the background. There are no voices in this instrumental song. This song can be played in a luxury bar.", "data_idx": 3488, "number": 2, "label": "reggae"} +{"file_name": "test_05715.png", "caption": "This jazz song features the main melody played on a reed instrument and a guitar in unison. The melody is an ascending pattern of three notes per beat. This is accompanied by percussion playing a simple beat ending on an extended drum roll. The bass plays a descending run followed by an ascending run. The piano plays jazz chords in the background. There are no voices in this instrumental song. This song can be played in a luxury bar.", "data_idx": 3488, "number": 3, "label": "reggae"} +{"file_name": "test_05716.png", "caption": "Here we have a solo bass flute player. The music sounds mystical, like in a fantasy movie about dragons and fairies. There is reverb applied to the sound.", "data_idx": 3492, "number": 0, "label": "jazz"} +{"file_name": "test_05717.png", "caption": "Here we have a solo bass flute player. The music sounds mystical, like in a fantasy movie about dragons and fairies. There is reverb applied to the sound.", "data_idx": 3492, "number": 1, "label": "jazz"} +{"file_name": "test_05718.png", "caption": "Here we have a solo bass flute player. The music sounds mystical, like in a fantasy movie about dragons and fairies. There is reverb applied to the sound.", "data_idx": 3492, "number": 2, "label": "jazz"} +{"file_name": "test_05719.png", "caption": "Here we have a solo bass flute player. The music sounds mystical, like in a fantasy movie about dragons and fairies. There is reverb applied to the sound.", "data_idx": 3492, "number": 3, "label": "jazz"} +{"file_name": "test_05720.png", "caption": "This song contains an acoustic drum playing and comes to an end. Then a violin is playing the main melody together with a bass horn and other brass instruments in a higher register. A xylophone is also playing the melody in a higher octave. This song may be playing during a funny magic show.", "data_idx": 3493, "number": 0, "label": "blues"} +{"file_name": "test_05721.png", "caption": "This song contains an acoustic drum playing and comes to an end. Then a violin is playing the main melody together with a bass horn and other brass instruments in a higher register. A xylophone is also playing the melody in a higher octave. This song may be playing during a funny magic show.", "data_idx": 3493, "number": 1, "label": "blues"} +{"file_name": "test_05722.png", "caption": "This song contains an acoustic drum playing and comes to an end. Then a violin is playing the main melody together with a bass horn and other brass instruments in a higher register. A xylophone is also playing the melody in a higher octave. This song may be playing during a funny magic show.", "data_idx": 3493, "number": 2, "label": "blues"} +{"file_name": "test_05723.png", "caption": "This song contains an acoustic drum playing and comes to an end. Then a violin is playing the main melody together with a bass horn and other brass instruments in a higher register. A xylophone is also playing the melody in a higher octave. This song may be playing during a funny magic show.", "data_idx": 3493, "number": 3, "label": "blues"} +{"file_name": "test_05724.png", "caption": "This is a classical music piece. The piece is being performed on a harpsichord. There is a sophisticated aura to it. The piece has a medieval sound. It would fit perfectly in the soundtrack of a historical drama movie that takes place in the medieval era. It could also work well as the opening theme for a literature YouTube channel.", "data_idx": 3495, "number": 0, "label": "classical"} +{"file_name": "test_05725.png", "caption": "This is a classical music piece. The piece is being performed on a harpsichord. There is a sophisticated aura to it. The piece has a medieval sound. It would fit perfectly in the soundtrack of a historical drama movie that takes place in the medieval era. It could also work well as the opening theme for a literature YouTube channel.", "data_idx": 3495, "number": 1, "label": "classical"} +{"file_name": "test_05726.png", "caption": "This is a classical music piece. The piece is being performed on a harpsichord. There is a sophisticated aura to it. The piece has a medieval sound. It would fit perfectly in the soundtrack of a historical drama movie that takes place in the medieval era. It could also work well as the opening theme for a literature YouTube channel.", "data_idx": 3495, "number": 2, "label": "classical"} +{"file_name": "test_05727.png", "caption": "This is a classical music piece. The piece is being performed on a harpsichord. There is a sophisticated aura to it. The piece has a medieval sound. It would fit perfectly in the soundtrack of a historical drama movie that takes place in the medieval era. It could also work well as the opening theme for a literature YouTube channel.", "data_idx": 3495, "number": 3, "label": "classical"} +{"file_name": "test_05728.png", "caption": "The low quality recording features a cover of a rock song and it consists of a funky acoustic bass guitar solo melody played aggressively. It sounds groovy and the recording is noisy and in mono.", "data_idx": 3496, "number": 0, "label": "blues"} +{"file_name": "test_05729.png", "caption": "The low quality recording features a cover of a rock song and it consists of a funky acoustic bass guitar solo melody played aggressively. It sounds groovy and the recording is noisy and in mono.", "data_idx": 3496, "number": 1, "label": "blues"} +{"file_name": "test_05730.png", "caption": "The low quality recording features a cover of a rock song and it consists of a funky acoustic bass guitar solo melody played aggressively. It sounds groovy and the recording is noisy and in mono.", "data_idx": 3496, "number": 2, "label": "blues"} +{"file_name": "test_05731.png", "caption": "The low quality recording features a cover of a rock song and it consists of a funky acoustic bass guitar solo melody played aggressively. It sounds groovy and the recording is noisy and in mono.", "data_idx": 3496, "number": 3, "label": "blues"} +{"file_name": "test_05732.png", "caption": "This clip is a live recording of a complex and rapid piece being played on the trumpet. The trumpet is very high pitched and the piece ascends and descends rapidly in succession.", "data_idx": 3497, "number": 0, "label": "hiphop"} +{"file_name": "test_05733.png", "caption": "This clip is a live recording of a complex and rapid piece being played on the trumpet. The trumpet is very high pitched and the piece ascends and descends rapidly in succession.", "data_idx": 3497, "number": 1, "label": "hiphop"} +{"file_name": "test_05734.png", "caption": "This clip is a live recording of a complex and rapid piece being played on the trumpet. The trumpet is very high pitched and the piece ascends and descends rapidly in succession.", "data_idx": 3497, "number": 2, "label": "hiphop"} +{"file_name": "test_05735.png", "caption": "This clip is a live recording of a complex and rapid piece being played on the trumpet. The trumpet is very high pitched and the piece ascends and descends rapidly in succession.", "data_idx": 3497, "number": 3, "label": "hiphop"} +{"file_name": "test_05736.png", "caption": "This is an instrumental piece with a harmonica as the main lead melodic instrument. High pitched, wobbly sounds are played on the harmonica and contrasted by a deep and full acoustic guitar on which arpeggios are played. There's a sustained pad synth in the background which adds to the overall calming and soothing tone of the song.", "data_idx": 3498, "number": 0, "label": "jazz"} +{"file_name": "test_05737.png", "caption": "This is an instrumental piece with a harmonica as the main lead melodic instrument. High pitched, wobbly sounds are played on the harmonica and contrasted by a deep and full acoustic guitar on which arpeggios are played. There's a sustained pad synth in the background which adds to the overall calming and soothing tone of the song.", "data_idx": 3498, "number": 1, "label": "jazz"} +{"file_name": "test_05738.png", "caption": "This is an instrumental piece with a harmonica as the main lead melodic instrument. High pitched, wobbly sounds are played on the harmonica and contrasted by a deep and full acoustic guitar on which arpeggios are played. There's a sustained pad synth in the background which adds to the overall calming and soothing tone of the song.", "data_idx": 3498, "number": 2, "label": "jazz"} +{"file_name": "test_05739.png", "caption": "This is an instrumental piece with a harmonica as the main lead melodic instrument. High pitched, wobbly sounds are played on the harmonica and contrasted by a deep and full acoustic guitar on which arpeggios are played. There's a sustained pad synth in the background which adds to the overall calming and soothing tone of the song.", "data_idx": 3498, "number": 3, "label": "jazz"} +{"file_name": "test_05740.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal singing over punchy kick and snare hits, shimmering shakers, synth pad, groovy bass and brass melody. It sounds passionate, emotional, energetic and upbeat.", "data_idx": 3499, "number": 0, "label": "reggae"} +{"file_name": "test_05741.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal singing over punchy kick and snare hits, shimmering shakers, synth pad, groovy bass and brass melody. It sounds passionate, emotional, energetic and upbeat.", "data_idx": 3499, "number": 1, "label": "reggae"} +{"file_name": "test_05742.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal singing over punchy kick and snare hits, shimmering shakers, synth pad, groovy bass and brass melody. It sounds passionate, emotional, energetic and upbeat.", "data_idx": 3499, "number": 2, "label": "reggae"} +{"file_name": "test_05743.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal singing over punchy kick and snare hits, shimmering shakers, synth pad, groovy bass and brass melody. It sounds passionate, emotional, energetic and upbeat.", "data_idx": 3499, "number": 3, "label": "reggae"} +{"file_name": "test_05744.png", "caption": "This traditional music is played on didgeridoos. There are three didgeridoos being played. They are played by vibrating the lips and blowing into the instrument. This produces the droning sound. On one of the didgeridoos, a stick is being hit to form a percussive rhythm. The other didgeridoos play a melody by opening the mouth wider and narrowing the mouth in an alternate pattern. Halfway through the song, a tambourine is played. This song can be played in a movie where tribal people have a ceremony.", "data_idx": 3500, "number": 0, "label": "jazz"} +{"file_name": "test_05745.png", "caption": "This traditional music is played on didgeridoos. There are three didgeridoos being played. They are played by vibrating the lips and blowing into the instrument. This produces the droning sound. On one of the didgeridoos, a stick is being hit to form a percussive rhythm. The other didgeridoos play a melody by opening the mouth wider and narrowing the mouth in an alternate pattern. Halfway through the song, a tambourine is played. This song can be played in a movie where tribal people have a ceremony.", "data_idx": 3500, "number": 1, "label": "jazz"} +{"file_name": "test_05746.png", "caption": "This traditional music is played on didgeridoos. There are three didgeridoos being played. They are played by vibrating the lips and blowing into the instrument. This produces the droning sound. On one of the didgeridoos, a stick is being hit to form a percussive rhythm. The other didgeridoos play a melody by opening the mouth wider and narrowing the mouth in an alternate pattern. Halfway through the song, a tambourine is played. This song can be played in a movie where tribal people have a ceremony.", "data_idx": 3500, "number": 2, "label": "jazz"} +{"file_name": "test_05747.png", "caption": "This traditional music is played on didgeridoos. There are three didgeridoos being played. They are played by vibrating the lips and blowing into the instrument. This produces the droning sound. On one of the didgeridoos, a stick is being hit to form a percussive rhythm. The other didgeridoos play a melody by opening the mouth wider and narrowing the mouth in an alternate pattern. Halfway through the song, a tambourine is played. This song can be played in a movie where tribal people have a ceremony.", "data_idx": 3500, "number": 3, "label": "jazz"} +{"file_name": "test_05748.png", "caption": "This song contains someone strumming chords on an acoustic guitar while playing a harmonica. This song may be playing at a local bar.", "data_idx": 3501, "number": 0, "label": "classical"} +{"file_name": "test_05749.png", "caption": "This song contains someone strumming chords on an acoustic guitar while playing a harmonica. This song may be playing at a local bar.", "data_idx": 3501, "number": 1, "label": "classical"} +{"file_name": "test_05750.png", "caption": "This song contains someone strumming chords on an acoustic guitar while playing a harmonica. This song may be playing at a local bar.", "data_idx": 3501, "number": 2, "label": "classical"} +{"file_name": "test_05751.png", "caption": "This song contains someone strumming chords on an acoustic guitar while playing a harmonica. This song may be playing at a local bar.", "data_idx": 3501, "number": 3, "label": "classical"} +{"file_name": "test_05752.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a wide passionate, harmonizing male vocals singing over punchy snare and kick hits, shimmering hi hats, groovy bass guitar, synth pad and funky electric guitar melody. It sounds funky, groovy and passionate.", "data_idx": 3502, "number": 0, "label": "country"} +{"file_name": "test_05753.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a wide passionate, harmonizing male vocals singing over punchy snare and kick hits, shimmering hi hats, groovy bass guitar, synth pad and funky electric guitar melody. It sounds funky, groovy and passionate.", "data_idx": 3502, "number": 1, "label": "country"} +{"file_name": "test_05754.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a wide passionate, harmonizing male vocals singing over punchy snare and kick hits, shimmering hi hats, groovy bass guitar, synth pad and funky electric guitar melody. It sounds funky, groovy and passionate.", "data_idx": 3502, "number": 2, "label": "country"} +{"file_name": "test_05755.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a wide passionate, harmonizing male vocals singing over punchy snare and kick hits, shimmering hi hats, groovy bass guitar, synth pad and funky electric guitar melody. It sounds funky, groovy and passionate.", "data_idx": 3502, "number": 3, "label": "country"} +{"file_name": "test_05756.png", "caption": "This song is a duet of the Christmas Carol \u2018Jingle Bells\u2019 in Spanish. The tempo is medium with keyboard harmony, tambourine beats , hand percussion and accordion accompaniment . The song is cute, simple, cheerful, happy and animated.", "data_idx": 3506, "number": 0, "label": "blues"} +{"file_name": "test_05757.png", "caption": "This song is a duet of the Christmas Carol \u2018Jingle Bells\u2019 in Spanish. The tempo is medium with keyboard harmony, tambourine beats , hand percussion and accordion accompaniment . The song is cute, simple, cheerful, happy and animated.", "data_idx": 3506, "number": 1, "label": "blues"} +{"file_name": "test_05758.png", "caption": "This song is a duet of the Christmas Carol \u2018Jingle Bells\u2019 in Spanish. The tempo is medium with keyboard harmony, tambourine beats , hand percussion and accordion accompaniment . The song is cute, simple, cheerful, happy and animated.", "data_idx": 3506, "number": 2, "label": "blues"} +{"file_name": "test_05759.png", "caption": "This song is a duet of the Christmas Carol \u2018Jingle Bells\u2019 in Spanish. The tempo is medium with keyboard harmony, tambourine beats , hand percussion and accordion accompaniment . The song is cute, simple, cheerful, happy and animated.", "data_idx": 3506, "number": 3, "label": "blues"} +{"file_name": "test_05760.png", "caption": "A male vocalist sings this powerful solo in a foreign language. The tempo is medium with a spanish guitar accompaniment. The song has minimalist music with captivating, lilting and almost haunting vocals. This is a live performance with ambient sounds of people talking. The audio quality is inferior as it is an amateur recording. This song is a Latin/Spanish Folk song.", "data_idx": 3507, "number": 0, "label": "rock"} +{"file_name": "test_05761.png", "caption": "A male vocalist sings this powerful solo in a foreign language. The tempo is medium with a spanish guitar accompaniment. The song has minimalist music with captivating, lilting and almost haunting vocals. This is a live performance with ambient sounds of people talking. The audio quality is inferior as it is an amateur recording. This song is a Latin/Spanish Folk song.", "data_idx": 3507, "number": 1, "label": "rock"} +{"file_name": "test_05762.png", "caption": "A male vocalist sings this powerful solo in a foreign language. The tempo is medium with a spanish guitar accompaniment. The song has minimalist music with captivating, lilting and almost haunting vocals. This is a live performance with ambient sounds of people talking. The audio quality is inferior as it is an amateur recording. This song is a Latin/Spanish Folk song.", "data_idx": 3507, "number": 2, "label": "rock"} +{"file_name": "test_05763.png", "caption": "A male vocalist sings this powerful solo in a foreign language. The tempo is medium with a spanish guitar accompaniment. The song has minimalist music with captivating, lilting and almost haunting vocals. This is a live performance with ambient sounds of people talking. The audio quality is inferior as it is an amateur recording. This song is a Latin/Spanish Folk song.", "data_idx": 3507, "number": 3, "label": "rock"} +{"file_name": "test_05764.png", "caption": "This song has a relaxing feel. It starts off with a synth playing a chord sequence. This is followed by synth strings playing a high pitched melody. The notes fade into each other. Another synth plays the bass notes in the background. There is no percussion in this song. The mood of this song is dreamy. This song can be played in a dream sequence in a movie.", "data_idx": 3508, "number": 0, "label": "classical"} +{"file_name": "test_05765.png", "caption": "This song has a relaxing feel. It starts off with a synth playing a chord sequence. This is followed by synth strings playing a high pitched melody. The notes fade into each other. Another synth plays the bass notes in the background. There is no percussion in this song. The mood of this song is dreamy. This song can be played in a dream sequence in a movie.", "data_idx": 3508, "number": 1, "label": "classical"} +{"file_name": "test_05766.png", "caption": "This song has a relaxing feel. It starts off with a synth playing a chord sequence. This is followed by synth strings playing a high pitched melody. The notes fade into each other. Another synth plays the bass notes in the background. There is no percussion in this song. The mood of this song is dreamy. This song can be played in a dream sequence in a movie.", "data_idx": 3508, "number": 2, "label": "classical"} +{"file_name": "test_05767.png", "caption": "This song has a relaxing feel. It starts off with a synth playing a chord sequence. This is followed by synth strings playing a high pitched melody. The notes fade into each other. Another synth plays the bass notes in the background. There is no percussion in this song. The mood of this song is dreamy. This song can be played in a dream sequence in a movie.", "data_idx": 3508, "number": 3, "label": "classical"} +{"file_name": "test_05768.png", "caption": "This audio contains acoustic drums playing with an e-bass. An accordion is playing a short chord melody on the backbeat while someone is playing a flute melody completely out of tune and all over the place. This is an amateur recording. This song may be playing at home while practicing playing the flute.", "data_idx": 3510, "number": 0, "label": "disco"} +{"file_name": "test_05769.png", "caption": "This audio contains acoustic drums playing with an e-bass. An accordion is playing a short chord melody on the backbeat while someone is playing a flute melody completely out of tune and all over the place. This is an amateur recording. This song may be playing at home while practicing playing the flute.", "data_idx": 3510, "number": 1, "label": "disco"} +{"file_name": "test_05770.png", "caption": "This audio contains acoustic drums playing with an e-bass. An accordion is playing a short chord melody on the backbeat while someone is playing a flute melody completely out of tune and all over the place. This is an amateur recording. This song may be playing at home while practicing playing the flute.", "data_idx": 3510, "number": 2, "label": "disco"} +{"file_name": "test_05771.png", "caption": "This audio contains acoustic drums playing with an e-bass. An accordion is playing a short chord melody on the backbeat while someone is playing a flute melody completely out of tune and all over the place. This is an amateur recording. This song may be playing at home while practicing playing the flute.", "data_idx": 3510, "number": 3, "label": "disco"} +{"file_name": "test_05772.png", "caption": "The low quality recording features a traditional song played in the beginning, after which there is a loud horn sound and wooden impact. It sounds weird, harsh and repetitive.", "data_idx": 3515, "number": 0, "label": "hiphop"} +{"file_name": "test_05773.png", "caption": "The low quality recording features a traditional song played in the beginning, after which there is a loud horn sound and wooden impact. It sounds weird, harsh and repetitive.", "data_idx": 3515, "number": 1, "label": "hiphop"} +{"file_name": "test_05774.png", "caption": "The low quality recording features a traditional song played in the beginning, after which there is a loud horn sound and wooden impact. It sounds weird, harsh and repetitive.", "data_idx": 3515, "number": 2, "label": "hiphop"} +{"file_name": "test_05775.png", "caption": "The low quality recording features a traditional song played in the beginning, after which there is a loud horn sound and wooden impact. It sounds weird, harsh and repetitive.", "data_idx": 3515, "number": 3, "label": "hiphop"} +{"file_name": "test_05776.png", "caption": "This is an instrumental song featuring a french horn being played. The french horn plays the main melody. This is accompanied by a piano playing arpeggiated chords. A bass plays the root notes of the chords. There are no other instruments in this song. This is a slow tempo song. This song has a romantic and relaxing mood. This song can be played in a romantic movie.", "data_idx": 3517, "number": 0, "label": "classical"} +{"file_name": "test_05777.png", "caption": "This is an instrumental song featuring a french horn being played. The french horn plays the main melody. This is accompanied by a piano playing arpeggiated chords. A bass plays the root notes of the chords. There are no other instruments in this song. This is a slow tempo song. This song has a romantic and relaxing mood. This song can be played in a romantic movie.", "data_idx": 3517, "number": 1, "label": "classical"} +{"file_name": "test_05778.png", "caption": "This is an instrumental song featuring a french horn being played. The french horn plays the main melody. This is accompanied by a piano playing arpeggiated chords. A bass plays the root notes of the chords. There are no other instruments in this song. This is a slow tempo song. This song has a romantic and relaxing mood. This song can be played in a romantic movie.", "data_idx": 3517, "number": 2, "label": "classical"} +{"file_name": "test_05779.png", "caption": "This is an instrumental song featuring a french horn being played. The french horn plays the main melody. This is accompanied by a piano playing arpeggiated chords. A bass plays the root notes of the chords. There are no other instruments in this song. This is a slow tempo song. This song has a romantic and relaxing mood. This song can be played in a romantic movie.", "data_idx": 3517, "number": 3, "label": "classical"} +{"file_name": "test_05780.png", "caption": "The low quality recording features an electric guitar solo melody played over groovy bass guitar, shimmering tambourine, punchy kick and tinny wooden percussion. It sounds groovy, funky and passionate.", "data_idx": 3519, "number": 0, "label": "reggae"} +{"file_name": "test_05781.png", "caption": "The low quality recording features an electric guitar solo melody played over groovy bass guitar, shimmering tambourine, punchy kick and tinny wooden percussion. It sounds groovy, funky and passionate.", "data_idx": 3519, "number": 1, "label": "reggae"} +{"file_name": "test_05782.png", "caption": "The low quality recording features an electric guitar solo melody played over groovy bass guitar, shimmering tambourine, punchy kick and tinny wooden percussion. It sounds groovy, funky and passionate.", "data_idx": 3519, "number": 2, "label": "reggae"} +{"file_name": "test_05783.png", "caption": "The low quality recording features an electric guitar solo melody played over groovy bass guitar, shimmering tambourine, punchy kick and tinny wooden percussion. It sounds groovy, funky and passionate.", "data_idx": 3519, "number": 3, "label": "reggae"} +{"file_name": "test_05784.png", "caption": "This song features an instrumental played on bagpipes. One pedal note is played continuously on the lower register while the higher notes are played to a melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played at a Scottish fair.", "data_idx": 3521, "number": 0, "label": "classical"} +{"file_name": "test_05785.png", "caption": "This song features an instrumental played on bagpipes. One pedal note is played continuously on the lower register while the higher notes are played to a melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played at a Scottish fair.", "data_idx": 3521, "number": 1, "label": "classical"} +{"file_name": "test_05786.png", "caption": "This song features an instrumental played on bagpipes. One pedal note is played continuously on the lower register while the higher notes are played to a melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played at a Scottish fair.", "data_idx": 3521, "number": 2, "label": "classical"} +{"file_name": "test_05787.png", "caption": "This song features an instrumental played on bagpipes. One pedal note is played continuously on the lower register while the higher notes are played to a melody. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played at a Scottish fair.", "data_idx": 3521, "number": 3, "label": "classical"} +{"file_name": "test_05788.png", "caption": "A girl band sings this lively song. The tempo is medium with vibrant music. The audio quality is inferior so the music and vocals are incoherent. This is a live performance with ambient sounds of fans cheering, clapping and singing along. This song is a hit Country Rock.", "data_idx": 3523, "number": 0, "label": "classical"} +{"file_name": "test_05789.png", "caption": "A girl band sings this lively song. The tempo is medium with vibrant music. The audio quality is inferior so the music and vocals are incoherent. This is a live performance with ambient sounds of fans cheering, clapping and singing along. This song is a hit Country Rock.", "data_idx": 3523, "number": 1, "label": "classical"} +{"file_name": "test_05790.png", "caption": "The low quality recording features a classical song that contains a wide string melody. It sounds suspenseful and intense.", "data_idx": 3524, "number": 0, "label": "classical"} +{"file_name": "test_05791.png", "caption": "The low quality recording features a classical song that contains a wide string melody. It sounds suspenseful and intense.", "data_idx": 3524, "number": 1, "label": "classical"} +{"file_name": "test_05792.png", "caption": "The low quality recording features a classical song that contains a wide string melody. It sounds suspenseful and intense.", "data_idx": 3524, "number": 2, "label": "classical"} +{"file_name": "test_05793.png", "caption": "The low quality recording features a classical song that contains a wide string melody. It sounds suspenseful and intense.", "data_idx": 3524, "number": 3, "label": "classical"} +{"file_name": "test_05794.png", "caption": "This song contains soft synth pads playing in the lower to higher register with little dreamy notes sprinkled on top. This song may be playing for a meditation session.", "data_idx": 3525, "number": 0, "label": "classical"} +{"file_name": "test_05795.png", "caption": "This song contains soft synth pads playing in the lower to higher register with little dreamy notes sprinkled on top. This song may be playing for a meditation session.", "data_idx": 3525, "number": 1, "label": "classical"} +{"file_name": "test_05796.png", "caption": "This song contains soft synth pads playing in the lower to higher register with little dreamy notes sprinkled on top. This song may be playing for a meditation session.", "data_idx": 3525, "number": 2, "label": "classical"} +{"file_name": "test_05797.png", "caption": "This song contains soft synth pads playing in the lower to higher register with little dreamy notes sprinkled on top. This song may be playing for a meditation session.", "data_idx": 3525, "number": 3, "label": "classical"} +{"file_name": "test_05798.png", "caption": "The first sound effect in this clip is the sound of old TV static. Then we hear a retro video game sound used to illustrate when the character jumps up. Then we have a sustained calming sound which is like the sound after a large bell has been rung.", "data_idx": 3528, "number": 0, "label": "hiphop"} +{"file_name": "test_05799.png", "caption": "The first sound effect in this clip is the sound of old TV static. Then we hear a retro video game sound used to illustrate when the character jumps up. Then we have a sustained calming sound which is like the sound after a large bell has been rung.", "data_idx": 3528, "number": 1, "label": "hiphop"} +{"file_name": "test_05800.png", "caption": "The first sound effect in this clip is the sound of old TV static. Then we hear a retro video game sound used to illustrate when the character jumps up. Then we have a sustained calming sound which is like the sound after a large bell has been rung.", "data_idx": 3528, "number": 2, "label": "hiphop"} +{"file_name": "test_05801.png", "caption": "The first sound effect in this clip is the sound of old TV static. Then we hear a retro video game sound used to illustrate when the character jumps up. Then we have a sustained calming sound which is like the sound after a large bell has been rung.", "data_idx": 3528, "number": 3, "label": "hiphop"} +{"file_name": "test_05802.png", "caption": "This blues song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat in common time. An overdriven guitar plays a blues riff. After one bar, the guitar and bass pause while the percussion and voice continues. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a bar scene in a movie.", "data_idx": 3529, "number": 0, "label": "hiphop"} +{"file_name": "test_05803.png", "caption": "This blues song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat in common time. An overdriven guitar plays a blues riff. After one bar, the guitar and bass pause while the percussion and voice continues. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a bar scene in a movie.", "data_idx": 3529, "number": 1, "label": "hiphop"} +{"file_name": "test_05804.png", "caption": "This blues song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat in common time. An overdriven guitar plays a blues riff. After one bar, the guitar and bass pause while the percussion and voice continues. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a bar scene in a movie.", "data_idx": 3529, "number": 2, "label": "hiphop"} +{"file_name": "test_05805.png", "caption": "This blues song features a male voice singing the main melody at a comfortable pitch. This is accompanied by percussion playing a simple rock beat in common time. An overdriven guitar plays a blues riff. After one bar, the guitar and bass pause while the percussion and voice continues. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a bar scene in a movie.", "data_idx": 3529, "number": 3, "label": "hiphop"} +{"file_name": "test_05806.png", "caption": "This is a song that would be suitable as meditation music or background music for sleeping. It is calming and features sustained high pitched notes on a pad synth. The song feels ethereal and relaxing.", "data_idx": 3530, "number": 0, "label": "blues"} +{"file_name": "test_05807.png", "caption": "This is a song that would be suitable as meditation music or background music for sleeping. It is calming and features sustained high pitched notes on a pad synth. The song feels ethereal and relaxing.", "data_idx": 3530, "number": 1, "label": "blues"} +{"file_name": "test_05808.png", "caption": "This is a song that would be suitable as meditation music or background music for sleeping. It is calming and features sustained high pitched notes on a pad synth. The song feels ethereal and relaxing.", "data_idx": 3530, "number": 2, "label": "blues"} +{"file_name": "test_05809.png", "caption": "This is a song that would be suitable as meditation music or background music for sleeping. It is calming and features sustained high pitched notes on a pad synth. The song feels ethereal and relaxing.", "data_idx": 3530, "number": 3, "label": "blues"} +{"file_name": "test_05810.png", "caption": "This song contains a plucked string instrument playing a melody in the higher register along with an acoustic guitar strumming chords on the backbeat and an upright bass playing a simple melody along to the lead melody. This song may be playing in a video-presentation.", "data_idx": 3531, "number": 0, "label": "jazz"} +{"file_name": "test_05811.png", "caption": "This song contains a plucked string instrument playing a melody in the higher register along with an acoustic guitar strumming chords on the backbeat and an upright bass playing a simple melody along to the lead melody. This song may be playing in a video-presentation.", "data_idx": 3531, "number": 1, "label": "jazz"} +{"file_name": "test_05812.png", "caption": "This music is a Western Classical Instrumental. The music is fast tempo with a plethora of instrumentation. From a vigorous clarinet solo, flute, intense trumpets , violin symphony, cello, viola and French horns, this music is a treat to the ears. It is smooth, rich, full bodied, exquisite and elegant with an urgent and sombre vibe.", "data_idx": 3534, "number": 0, "label": "classical"} +{"file_name": "test_05813.png", "caption": "This music is a Western Classical Instrumental. The music is fast tempo with a plethora of instrumentation. From a vigorous clarinet solo, flute, intense trumpets , violin symphony, cello, viola and French horns, this music is a treat to the ears. It is smooth, rich, full bodied, exquisite and elegant with an urgent and sombre vibe.", "data_idx": 3534, "number": 1, "label": "classical"} +{"file_name": "test_05814.png", "caption": "This music is a Western Classical Instrumental. The music is fast tempo with a plethora of instrumentation. From a vigorous clarinet solo, flute, intense trumpets , violin symphony, cello, viola and French horns, this music is a treat to the ears. It is smooth, rich, full bodied, exquisite and elegant with an urgent and sombre vibe.", "data_idx": 3534, "number": 2, "label": "classical"} +{"file_name": "test_05815.png", "caption": "This music is a Western Classical Instrumental. The music is fast tempo with a plethora of instrumentation. From a vigorous clarinet solo, flute, intense trumpets , violin symphony, cello, viola and French horns, this music is a treat to the ears. It is smooth, rich, full bodied, exquisite and elegant with an urgent and sombre vibe.", "data_idx": 3534, "number": 3, "label": "classical"} +{"file_name": "test_05816.png", "caption": "This song features chords being played on a ukulele. A male voice narrates the chords being played. There is no vocal melody in this song. There are no other instruments in this song. This clip can be used in an instructional lesson for ukulele.", "data_idx": 3537, "number": 0, "label": "blues"} +{"file_name": "test_05817.png", "caption": "This song features chords being played on a ukulele. A male voice narrates the chords being played. There is no vocal melody in this song. There are no other instruments in this song. This clip can be used in an instructional lesson for ukulele.", "data_idx": 3537, "number": 1, "label": "blues"} +{"file_name": "test_05818.png", "caption": "This song features chords being played on a ukulele. A male voice narrates the chords being played. There is no vocal melody in this song. There are no other instruments in this song. This clip can be used in an instructional lesson for ukulele.", "data_idx": 3537, "number": 2, "label": "blues"} +{"file_name": "test_05819.png", "caption": "This song features chords being played on a ukulele. A male voice narrates the chords being played. There is no vocal melody in this song. There are no other instruments in this song. This clip can be used in an instructional lesson for ukulele.", "data_idx": 3537, "number": 3, "label": "blues"} +{"file_name": "test_05820.png", "caption": "This song contains someone playing congas accompanied by other percussive instruments such as a woodstick sound. Male voices are singing as a choir in the background. This song may be playing live at an urban meetup.", "data_idx": 3538, "number": 0, "label": "metal"} +{"file_name": "test_05821.png", "caption": "This song contains someone playing congas accompanied by other percussive instruments such as a woodstick sound. Male voices are singing as a choir in the background. This song may be playing live at an urban meetup.", "data_idx": 3538, "number": 1, "label": "metal"} +{"file_name": "test_05822.png", "caption": "This song contains someone playing congas accompanied by other percussive instruments such as a woodstick sound. Male voices are singing as a choir in the background. This song may be playing live at an urban meetup.", "data_idx": 3538, "number": 2, "label": "metal"} +{"file_name": "test_05823.png", "caption": "This song contains someone playing congas accompanied by other percussive instruments such as a woodstick sound. Male voices are singing as a choir in the background. This song may be playing live at an urban meetup.", "data_idx": 3538, "number": 3, "label": "metal"} +{"file_name": "test_05824.png", "caption": "The low quality recording features a wide choir female vocals singing, while there is a flat male vocal talking over it. It sounds like a tutorial of sorts.", "data_idx": 3539, "number": 0, "label": "hiphop"} +{"file_name": "test_05825.png", "caption": "The low quality recording features a wide choir female vocals singing, while there is a flat male vocal talking over it. It sounds like a tutorial of sorts.", "data_idx": 3539, "number": 1, "label": "hiphop"} +{"file_name": "test_05826.png", "caption": "The low quality recording features a wide choir female vocals singing, while there is a flat male vocal talking over it. It sounds like a tutorial of sorts.", "data_idx": 3539, "number": 2, "label": "hiphop"} +{"file_name": "test_05827.png", "caption": "The low quality recording features a wide choir female vocals singing, while there is a flat male vocal talking over it. It sounds like a tutorial of sorts.", "data_idx": 3539, "number": 3, "label": "hiphop"} +{"file_name": "test_05828.png", "caption": "This is a percussion orchestra performance. There are many percussive elements in this orchestra such as the congas, the maracas, the marimba and the xylophone. There is also an acoustic drum playing in the orchestra. The atmosphere is lively.", "data_idx": 3543, "number": 0, "label": "reggae"} +{"file_name": "test_05829.png", "caption": "This is a percussion orchestra performance. There are many percussive elements in this orchestra such as the congas, the maracas, the marimba and the xylophone. There is also an acoustic drum playing in the orchestra. The atmosphere is lively.", "data_idx": 3543, "number": 1, "label": "reggae"} +{"file_name": "test_05830.png", "caption": "This is an R&B music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the synth sound. The rhythm is being played by an electronic drum beat which has a sound that is very similar to a 909 kit. The atmosphere is danceable and urban. This piece could be used in the soundtrack of a teenage drama movie or a TV show.", "data_idx": 3547, "number": 0, "label": "disco"} +{"file_name": "test_05831.png", "caption": "This is an R&B music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the synth sound. The rhythm is being played by an electronic drum beat which has a sound that is very similar to a 909 kit. The atmosphere is danceable and urban. This piece could be used in the soundtrack of a teenage drama movie or a TV show.", "data_idx": 3547, "number": 1, "label": "disco"} +{"file_name": "test_05832.png", "caption": "This is an R&B music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the synth sound. The rhythm is being played by an electronic drum beat which has a sound that is very similar to a 909 kit. The atmosphere is danceable and urban. This piece could be used in the soundtrack of a teenage drama movie or a TV show.", "data_idx": 3547, "number": 2, "label": "disco"} +{"file_name": "test_05833.png", "caption": "This is an R&B music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the synth sound. The rhythm is being played by an electronic drum beat which has a sound that is very similar to a 909 kit. The atmosphere is danceable and urban. This piece could be used in the soundtrack of a teenage drama movie or a TV show.", "data_idx": 3547, "number": 3, "label": "disco"} +{"file_name": "test_05834.png", "caption": "This clip features two jazzy songs. The first one has a fast paced melody that's led by an electric guitar which plays intricate solos. The next song is led by a clarinet, it's more slow-paced and bouncy.", "data_idx": 3550, "number": 0, "label": "classical"} +{"file_name": "test_05835.png", "caption": "This clip features two jazzy songs. The first one has a fast paced melody that's led by an electric guitar which plays intricate solos. The next song is led by a clarinet, it's more slow-paced and bouncy.", "data_idx": 3550, "number": 1, "label": "classical"} +{"file_name": "test_05836.png", "caption": "This clip features two jazzy songs. The first one has a fast paced melody that's led by an electric guitar which plays intricate solos. The next song is led by a clarinet, it's more slow-paced and bouncy.", "data_idx": 3550, "number": 2, "label": "classical"} +{"file_name": "test_05837.png", "caption": "This clip features two jazzy songs. The first one has a fast paced melody that's led by an electric guitar which plays intricate solos. The next song is led by a clarinet, it's more slow-paced and bouncy.", "data_idx": 3550, "number": 3, "label": "classical"} +{"file_name": "test_05838.png", "caption": "This music is a high spirited acoustic guitar instrumental. The tempo is fast and the music is lively, spirited, Vibrant and vivacious with static and the sound of tapping. This music is a country style acoustic melody.", "data_idx": 3554, "number": 0, "label": "blues"} +{"file_name": "test_05839.png", "caption": "This music is a high spirited acoustic guitar instrumental. The tempo is fast and the music is lively, spirited, Vibrant and vivacious with static and the sound of tapping. This music is a country style acoustic melody.", "data_idx": 3554, "number": 1, "label": "blues"} +{"file_name": "test_05840.png", "caption": "This music is a high spirited acoustic guitar instrumental. The tempo is fast and the music is lively, spirited, Vibrant and vivacious with static and the sound of tapping. This music is a country style acoustic melody.", "data_idx": 3554, "number": 2, "label": "blues"} +{"file_name": "test_05841.png", "caption": "This music is a high spirited acoustic guitar instrumental. The tempo is fast and the music is lively, spirited, Vibrant and vivacious with static and the sound of tapping. This music is a country style acoustic melody.", "data_idx": 3554, "number": 3, "label": "blues"} +{"file_name": "test_05842.png", "caption": "A male vocalist sings this Popular 90\u2019s song. The tempo is medium fast with thumping drum beats, keyboard harmony, boomy bass and vocal backup.The song is a live performance at a concert with ambient sounds of fans screaming, clapping and singing along and responding. The audio is incoherent as it is an amateur recording. This song is a Hit 90\u2019s Pop.", "data_idx": 3555, "number": 0, "label": "rock"} +{"file_name": "test_05843.png", "caption": "A male vocalist sings this Popular 90\u2019s song. The tempo is medium fast with thumping drum beats, keyboard harmony, boomy bass and vocal backup.The song is a live performance at a concert with ambient sounds of fans screaming, clapping and singing along and responding. The audio is incoherent as it is an amateur recording. This song is a Hit 90\u2019s Pop.", "data_idx": 3555, "number": 1, "label": "rock"} +{"file_name": "test_05844.png", "caption": "This meditation song features male voices chanting in deep, low voices. This is accompanied by synth sounds playing at different pitches. One of the synths plays a droning low pitch sound. The mid and higher register sounds play instruments sounding like wind instruments. The sounds produced are ambient sounds and have a dreamy feel. The song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 3557, "number": 0, "label": "classical"} +{"file_name": "test_05845.png", "caption": "This meditation song features male voices chanting in deep, low voices. This is accompanied by synth sounds playing at different pitches. One of the synths plays a droning low pitch sound. The mid and higher register sounds play instruments sounding like wind instruments. The sounds produced are ambient sounds and have a dreamy feel. The song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 3557, "number": 1, "label": "classical"} +{"file_name": "test_05846.png", "caption": "This meditation song features male voices chanting in deep, low voices. This is accompanied by synth sounds playing at different pitches. One of the synths plays a droning low pitch sound. The mid and higher register sounds play instruments sounding like wind instruments. The sounds produced are ambient sounds and have a dreamy feel. The song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 3557, "number": 2, "label": "classical"} +{"file_name": "test_05847.png", "caption": "This meditation song features male voices chanting in deep, low voices. This is accompanied by synth sounds playing at different pitches. One of the synths plays a droning low pitch sound. The mid and higher register sounds play instruments sounding like wind instruments. The sounds produced are ambient sounds and have a dreamy feel. The song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 3557, "number": 3, "label": "classical"} +{"file_name": "test_05848.png", "caption": "This music is a rich Italian Classical Orchestra. The tempo is fast with a symphonic orchestra with a rich ,animated violin solo, complete with violin, cello viola , flute and piano accompaniment . This music is a sonic treat. It is rich, expressive, exquisite, spectacular, enthralling and captivating. This music is a Baroque classical.", "data_idx": 3560, "number": 0, "label": "classical"} +{"file_name": "test_05849.png", "caption": "This music is a rich Italian Classical Orchestra. The tempo is fast with a symphonic orchestra with a rich ,animated violin solo, complete with violin, cello viola , flute and piano accompaniment . This music is a sonic treat. It is rich, expressive, exquisite, spectacular, enthralling and captivating. This music is a Baroque classical.", "data_idx": 3560, "number": 1, "label": "classical"} +{"file_name": "test_05850.png", "caption": "This music is a rich Italian Classical Orchestra. The tempo is fast with a symphonic orchestra with a rich ,animated violin solo, complete with violin, cello viola , flute and piano accompaniment . This music is a sonic treat. It is rich, expressive, exquisite, spectacular, enthralling and captivating. This music is a Baroque classical.", "data_idx": 3560, "number": 2, "label": "classical"} +{"file_name": "test_05851.png", "caption": "This music is a rich Italian Classical Orchestra. The tempo is fast with a symphonic orchestra with a rich ,animated violin solo, complete with violin, cello viola , flute and piano accompaniment . This music is a sonic treat. It is rich, expressive, exquisite, spectacular, enthralling and captivating. This music is a Baroque classical.", "data_idx": 3560, "number": 3, "label": "classical"} +{"file_name": "test_05852.png", "caption": "This audio contains someone playing a mouthwarp. Then another recording starts where someone is strumming chords on an e-guitar fingerpicking a melody. This song may be playing for a photo slide show made for the family.", "data_idx": 3562, "number": 0, "label": "hiphop"} +{"file_name": "test_05853.png", "caption": "This audio contains someone playing a mouthwarp. Then another recording starts where someone is strumming chords on an e-guitar fingerpicking a melody. This song may be playing for a photo slide show made for the family.", "data_idx": 3562, "number": 1, "label": "hiphop"} +{"file_name": "test_05854.png", "caption": "This audio contains a dubstep beat with a lot of bass and aggressive synth sounds. In the background you can hear the crowd cheering. This is an amateur recording and of poor audio-quality. This song may be playing at a live dance show.", "data_idx": 3563, "number": 0, "label": "hiphop"} +{"file_name": "test_05855.png", "caption": "This audio contains a dubstep beat with a lot of bass and aggressive synth sounds. In the background you can hear the crowd cheering. This is an amateur recording and of poor audio-quality. This song may be playing at a live dance show.", "data_idx": 3563, "number": 1, "label": "hiphop"} +{"file_name": "test_05856.png", "caption": "This audio contains a dubstep beat with a lot of bass and aggressive synth sounds. In the background you can hear the crowd cheering. This is an amateur recording and of poor audio-quality. This song may be playing at a live dance show.", "data_idx": 3563, "number": 2, "label": "hiphop"} +{"file_name": "test_05857.png", "caption": "This audio contains a dubstep beat with a lot of bass and aggressive synth sounds. In the background you can hear the crowd cheering. This is an amateur recording and of poor audio-quality. This song may be playing at a live dance show.", "data_idx": 3563, "number": 3, "label": "hiphop"} +{"file_name": "test_05858.png", "caption": "This is an instrumental jazz fusion piece. Various instruments are played throughout this piece. A wide variety of key instruments such as the piano, the organ, the celeste, the rhodes, the synth and the harpsichord can be heard. The atmosphere is funky and eccentric. A vibrant array of samples can be gathered from this piece, ideally for use in the soundtrack of a goofy cartoon.", "data_idx": 3564, "number": 0, "label": "reggae"} +{"file_name": "test_05859.png", "caption": "This is an instrumental jazz fusion piece. Various instruments are played throughout this piece. A wide variety of key instruments such as the piano, the organ, the celeste, the rhodes, the synth and the harpsichord can be heard. The atmosphere is funky and eccentric. A vibrant array of samples can be gathered from this piece, ideally for use in the soundtrack of a goofy cartoon.", "data_idx": 3564, "number": 1, "label": "reggae"} +{"file_name": "test_05860.png", "caption": "This is an instrumental jazz fusion piece. Various instruments are played throughout this piece. A wide variety of key instruments such as the piano, the organ, the celeste, the rhodes, the synth and the harpsichord can be heard. The atmosphere is funky and eccentric. A vibrant array of samples can be gathered from this piece, ideally for use in the soundtrack of a goofy cartoon.", "data_idx": 3564, "number": 2, "label": "reggae"} +{"file_name": "test_05861.png", "caption": "This is an instrumental jazz fusion piece. Various instruments are played throughout this piece. A wide variety of key instruments such as the piano, the organ, the celeste, the rhodes, the synth and the harpsichord can be heard. The atmosphere is funky and eccentric. A vibrant array of samples can be gathered from this piece, ideally for use in the soundtrack of a goofy cartoon.", "data_idx": 3564, "number": 3, "label": "reggae"} +{"file_name": "test_05862.png", "caption": "This meditation song features a guzheng playing the main melody. A kind of zither plays arpeggiated chords in the background. Chimes are played in between lines. This song has a Chinese melody. This song is relaxing. There are no voices in this song. This song can be played in a meditation center.", "data_idx": 3567, "number": 0, "label": "classical"} +{"file_name": "test_05863.png", "caption": "This meditation song features a guzheng playing the main melody. A kind of zither plays arpeggiated chords in the background. Chimes are played in between lines. This song has a Chinese melody. This song is relaxing. There are no voices in this song. This song can be played in a meditation center.", "data_idx": 3567, "number": 1, "label": "classical"} +{"file_name": "test_05864.png", "caption": "This meditation song features a guzheng playing the main melody. A kind of zither plays arpeggiated chords in the background. Chimes are played in between lines. This song has a Chinese melody. This song is relaxing. There are no voices in this song. This song can be played in a meditation center.", "data_idx": 3567, "number": 2, "label": "classical"} +{"file_name": "test_05865.png", "caption": "This meditation song features a guzheng playing the main melody. A kind of zither plays arpeggiated chords in the background. Chimes are played in between lines. This song has a Chinese melody. This song is relaxing. There are no voices in this song. This song can be played in a meditation center.", "data_idx": 3567, "number": 3, "label": "classical"} +{"file_name": "test_05866.png", "caption": "This is the recording of a Pakistani marching band. The bagpipes are playing the melody. The rhythmic background is provided by a drumline that is played by the snare drums, the bass drums and the cymbals. The atmosphere is vibrant and lively. This piece could be playing in the background at a parade.", "data_idx": 3568, "number": 0, "label": "metal"} +{"file_name": "test_05867.png", "caption": "This is the recording of a Pakistani marching band. The bagpipes are playing the melody. The rhythmic background is provided by a drumline that is played by the snare drums, the bass drums and the cymbals. The atmosphere is vibrant and lively. This piece could be playing in the background at a parade.", "data_idx": 3568, "number": 1, "label": "metal"} +{"file_name": "test_05868.png", "caption": "This is the recording of a Pakistani marching band. The bagpipes are playing the melody. The rhythmic background is provided by a drumline that is played by the snare drums, the bass drums and the cymbals. The atmosphere is vibrant and lively. This piece could be playing in the background at a parade.", "data_idx": 3568, "number": 2, "label": "metal"} +{"file_name": "test_05869.png", "caption": "This is the recording of a Pakistani marching band. The bagpipes are playing the melody. The rhythmic background is provided by a drumline that is played by the snare drums, the bass drums and the cymbals. The atmosphere is vibrant and lively. This piece could be playing in the background at a parade.", "data_idx": 3568, "number": 3, "label": "metal"} +{"file_name": "test_05870.png", "caption": "This is a neo-soul music piece playing under the background of a dance contest. There is a male vocalist singing melodically in the lead. There is a repeating acoustic guitar sample in the beat. A strong bass sound can be heard. The rhythm consists of an electronic drum beat. There are voices shouting over the music in the video. The atmosphere is groovy and urban.", "data_idx": 3574, "number": 0, "label": "blues"} +{"file_name": "test_05871.png", "caption": "This is a neo-soul music piece playing under the background of a dance contest. There is a male vocalist singing melodically in the lead. There is a repeating acoustic guitar sample in the beat. A strong bass sound can be heard. The rhythm consists of an electronic drum beat. There are voices shouting over the music in the video. The atmosphere is groovy and urban.", "data_idx": 3574, "number": 1, "label": "blues"} +{"file_name": "test_05872.png", "caption": "A female vocalist sings this cheerful song. The tempo is fast with a peppy keyboard harmony, simple, march like drumming, steady bass line, acoustic guitar and bells chiming. The song is a foreign language but from the sound and vibe of it, it seems like a fun, happy, joyful, cheerful, warm hearted and popular folk song.", "data_idx": 3577, "number": 0, "label": "pop"} +{"file_name": "test_05873.png", "caption": "A female vocalist sings this cheerful song. The tempo is fast with a peppy keyboard harmony, simple, march like drumming, steady bass line, acoustic guitar and bells chiming. The song is a foreign language but from the sound and vibe of it, it seems like a fun, happy, joyful, cheerful, warm hearted and popular folk song.", "data_idx": 3577, "number": 1, "label": "pop"} +{"file_name": "test_05874.png", "caption": "This clip features an instruction by a male voice on how to use an effect on a synth. After the narration, three notes are played on a synth. The first one is loud, the second note is lower and softer. The third note is lower but louder in volume. There are no other instruments in this song.", "data_idx": 3578, "number": 0, "label": "blues"} +{"file_name": "test_05875.png", "caption": "This clip features an instruction by a male voice on how to use an effect on a synth. After the narration, three notes are played on a synth. The first one is loud, the second note is lower and softer. The third note is lower but louder in volume. There are no other instruments in this song.", "data_idx": 3578, "number": 1, "label": "blues"} +{"file_name": "test_05876.png", "caption": "This clip features an instruction by a male voice on how to use an effect on a synth. After the narration, three notes are played on a synth. The first one is loud, the second note is lower and softer. The third note is lower but louder in volume. There are no other instruments in this song.", "data_idx": 3578, "number": 2, "label": "blues"} +{"file_name": "test_05877.png", "caption": "This clip features an instruction by a male voice on how to use an effect on a synth. After the narration, three notes are played on a synth. The first one is loud, the second note is lower and softer. The third note is lower but louder in volume. There are no other instruments in this song.", "data_idx": 3578, "number": 3, "label": "blues"} +{"file_name": "test_05878.png", "caption": "This song contains someone playing acoustic drums along with an e-bass. They both sound in the foreground. A male voice is singing in the high mids and with reverb and a little delay on his voice. Then the song breaks into the next part and an e-guitar comes in with a strummed melody. This song may be playing with headphones lost in thoughts.", "data_idx": 3583, "number": 0, "label": "hiphop"} +{"file_name": "test_05879.png", "caption": "This song contains someone playing acoustic drums along with an e-bass. They both sound in the foreground. A male voice is singing in the high mids and with reverb and a little delay on his voice. Then the song breaks into the next part and an e-guitar comes in with a strummed melody. This song may be playing with headphones lost in thoughts.", "data_idx": 3583, "number": 1, "label": "hiphop"} +{"file_name": "test_05880.png", "caption": "This song contains someone playing acoustic drums along with an e-bass. They both sound in the foreground. A male voice is singing in the high mids and with reverb and a little delay on his voice. Then the song breaks into the next part and an e-guitar comes in with a strummed melody. This song may be playing with headphones lost in thoughts.", "data_idx": 3583, "number": 2, "label": "hiphop"} +{"file_name": "test_05881.png", "caption": "This song contains someone playing acoustic drums along with an e-bass. They both sound in the foreground. A male voice is singing in the high mids and with reverb and a little delay on his voice. Then the song breaks into the next part and an e-guitar comes in with a strummed melody. This song may be playing with headphones lost in thoughts.", "data_idx": 3583, "number": 3, "label": "hiphop"} +{"file_name": "test_05882.png", "caption": "This is an instrument review jam that is played in the style of flamenco music. There is an acoustic guitar being played while a male voice gives his opinion concerning the instrument. The character of the sound is sensual. The guitar sounds can be sampled for use in beat-making.", "data_idx": 3589, "number": 0, "label": "classical"} +{"file_name": "test_05883.png", "caption": "This is an instrument review jam that is played in the style of flamenco music. There is an acoustic guitar being played while a male voice gives his opinion concerning the instrument. The character of the sound is sensual. The guitar sounds can be sampled for use in beat-making.", "data_idx": 3589, "number": 1, "label": "classical"} +{"file_name": "test_05884.png", "caption": "This is an instrument review jam that is played in the style of flamenco music. There is an acoustic guitar being played while a male voice gives his opinion concerning the instrument. The character of the sound is sensual. The guitar sounds can be sampled for use in beat-making.", "data_idx": 3589, "number": 2, "label": "classical"} +{"file_name": "test_05885.png", "caption": "This is an instrument review jam that is played in the style of flamenco music. There is an acoustic guitar being played while a male voice gives his opinion concerning the instrument. The character of the sound is sensual. The guitar sounds can be sampled for use in beat-making.", "data_idx": 3589, "number": 3, "label": "classical"} +{"file_name": "test_05886.png", "caption": "This funk pop song features a male voice singing at a high pitch. The style of singing is rapping in this section. This is accompanied by a kick drum. The kick drum plays on every count of the bar for two bars followed by doubling the beat for the next two bars. In the gaps of the lines, a voice sings vocables. After two bars, the bass plays an ascending run. A siren sound is played in the background ascending along with the bass. This song can be played in a club.", "data_idx": 3591, "number": 0, "label": "pop"} +{"file_name": "test_05887.png", "caption": "This funk pop song features a male voice singing at a high pitch. The style of singing is rapping in this section. This is accompanied by a kick drum. The kick drum plays on every count of the bar for two bars followed by doubling the beat for the next two bars. In the gaps of the lines, a voice sings vocables. After two bars, the bass plays an ascending run. A siren sound is played in the background ascending along with the bass. This song can be played in a club.", "data_idx": 3591, "number": 1, "label": "pop"} +{"file_name": "test_05888.png", "caption": "This funk pop song features a male voice singing at a high pitch. The style of singing is rapping in this section. This is accompanied by a kick drum. The kick drum plays on every count of the bar for two bars followed by doubling the beat for the next two bars. In the gaps of the lines, a voice sings vocables. After two bars, the bass plays an ascending run. A siren sound is played in the background ascending along with the bass. This song can be played in a club.", "data_idx": 3591, "number": 2, "label": "pop"} +{"file_name": "test_05889.png", "caption": "This funk pop song features a male voice singing at a high pitch. The style of singing is rapping in this section. This is accompanied by a kick drum. The kick drum plays on every count of the bar for two bars followed by doubling the beat for the next two bars. In the gaps of the lines, a voice sings vocables. After two bars, the bass plays an ascending run. A siren sound is played in the background ascending along with the bass. This song can be played in a club.", "data_idx": 3591, "number": 3, "label": "pop"} +{"file_name": "test_05890.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside echoing whispering vocals, rapping over shimmering hi hats, punchy kick, boomy 808 bass, claps, quiet snare hits and arpeggiated synth melody. The song sounds energetic, especially because of the uptempo hi hat triplets.", "data_idx": 3592, "number": 0, "label": "hiphop"} +{"file_name": "test_05891.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside echoing whispering vocals, rapping over shimmering hi hats, punchy kick, boomy 808 bass, claps, quiet snare hits and arpeggiated synth melody. The song sounds energetic, especially because of the uptempo hi hat triplets.", "data_idx": 3592, "number": 1, "label": "hiphop"} +{"file_name": "test_05892.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside echoing whispering vocals, rapping over shimmering hi hats, punchy kick, boomy 808 bass, claps, quiet snare hits and arpeggiated synth melody. The song sounds energetic, especially because of the uptempo hi hat triplets.", "data_idx": 3592, "number": 2, "label": "hiphop"} +{"file_name": "test_05893.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside echoing whispering vocals, rapping over shimmering hi hats, punchy kick, boomy 808 bass, claps, quiet snare hits and arpeggiated synth melody. The song sounds energetic, especially because of the uptempo hi hat triplets.", "data_idx": 3592, "number": 3, "label": "hiphop"} +{"file_name": "test_05894.png", "caption": "The low quality recording features a rock song that consists of a flat male vocal and flat female vocal talking, followed by punchy kick and snare hits, shimmering hi hats, energetic crash hits, wide electric guitar chords, groovy bass guitar and synth lead melody. It sounds energetic.", "data_idx": 3593, "number": 0, "label": "hiphop"} +{"file_name": "test_05895.png", "caption": "The low quality recording features a rock song that consists of a flat male vocal and flat female vocal talking, followed by punchy kick and snare hits, shimmering hi hats, energetic crash hits, wide electric guitar chords, groovy bass guitar and synth lead melody. It sounds energetic.", "data_idx": 3593, "number": 1, "label": "hiphop"} +{"file_name": "test_05896.png", "caption": "This is a pop/soft rock music piece. There is a male vocalist singing melodically. The main melody is being performed by the piano with the strings' sound holding notes in the background. A solid bass line can be heard. A slow tempo acoustic drum beat is keeping the rhythm. The atmosphere is easygoing. This piece could be used in the soundtrack of a romantic comedy, especially during the scenes where the male protagonist is feeling regret for his actions.", "data_idx": 3594, "number": 0, "label": "classical"} +{"file_name": "test_05897.png", "caption": "This is a pop/soft rock music piece. There is a male vocalist singing melodically. The main melody is being performed by the piano with the strings' sound holding notes in the background. A solid bass line can be heard. A slow tempo acoustic drum beat is keeping the rhythm. The atmosphere is easygoing. This piece could be used in the soundtrack of a romantic comedy, especially during the scenes where the male protagonist is feeling regret for his actions.", "data_idx": 3594, "number": 1, "label": "classical"} diff --git a/data/test/metadata_0013.jsonl b/data/test/metadata_0013.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6aeea83c2ff4a56d986c4e47d70fb22e14cf630b --- /dev/null +++ b/data/test/metadata_0013.jsonl @@ -0,0 +1,316 @@ +{"file_name": "test_05898.png", "caption": "This is a vocal performance from a soap opera soundtrack. There is a female vocalist that is singing with a heavily manipulated voice, most probably through the use of a vocoder. The volume of the track is unnecessarily loud and it peaks frequently. There is an unsettling atmosphere. It could be used in the soundtrack of a horror movie where the protagonist is slowly losing touch with reality.", "data_idx": 3601, "number": 0, "label": "rock"} +{"file_name": "test_05899.png", "caption": "This is a vocal performance from a soap opera soundtrack. There is a female vocalist that is singing with a heavily manipulated voice, most probably through the use of a vocoder. The volume of the track is unnecessarily loud and it peaks frequently. There is an unsettling atmosphere. It could be used in the soundtrack of a horror movie where the protagonist is slowly losing touch with reality.", "data_idx": 3601, "number": 1, "label": "rock"} +{"file_name": "test_05900.png", "caption": "This is a vocal performance from a soap opera soundtrack. There is a female vocalist that is singing with a heavily manipulated voice, most probably through the use of a vocoder. The volume of the track is unnecessarily loud and it peaks frequently. There is an unsettling atmosphere. It could be used in the soundtrack of a horror movie where the protagonist is slowly losing touch with reality.", "data_idx": 3601, "number": 2, "label": "rock"} +{"file_name": "test_05901.png", "caption": "This is a vocal performance from a soap opera soundtrack. There is a female vocalist that is singing with a heavily manipulated voice, most probably through the use of a vocoder. The volume of the track is unnecessarily loud and it peaks frequently. There is an unsettling atmosphere. It could be used in the soundtrack of a horror movie where the protagonist is slowly losing touch with reality.", "data_idx": 3601, "number": 3, "label": "rock"} +{"file_name": "test_05902.png", "caption": "This audio contains someone playing an acoustic drum with a fast paced and complex rhythm. This is an amateur recording.", "data_idx": 3604, "number": 0, "label": "disco"} +{"file_name": "test_05903.png", "caption": "This audio contains someone playing an acoustic drum with a fast paced and complex rhythm. This is an amateur recording.", "data_idx": 3604, "number": 1, "label": "disco"} +{"file_name": "test_05904.png", "caption": "This audio contains someone playing an acoustic drum with a fast paced and complex rhythm. This is an amateur recording.", "data_idx": 3604, "number": 2, "label": "disco"} +{"file_name": "test_05905.png", "caption": "This audio contains someone playing an acoustic drum with a fast paced and complex rhythm. This is an amateur recording.", "data_idx": 3604, "number": 3, "label": "disco"} +{"file_name": "test_05906.png", "caption": "The Soft Rock song features a flat male vocal singing over arpeggiated electric guitar melody, punchy kick, groovy bass, shimmering hi hats and snappy rimshots. It sounds emotional and easygoing.", "data_idx": 3608, "number": 0, "label": "rock"} +{"file_name": "test_05907.png", "caption": "The Soft Rock song features a flat male vocal singing over arpeggiated electric guitar melody, punchy kick, groovy bass, shimmering hi hats and snappy rimshots. It sounds emotional and easygoing.", "data_idx": 3608, "number": 1, "label": "rock"} +{"file_name": "test_05908.png", "caption": "The Soft Rock song features a flat male vocal singing over arpeggiated electric guitar melody, punchy kick, groovy bass, shimmering hi hats and snappy rimshots. It sounds emotional and easygoing.", "data_idx": 3608, "number": 2, "label": "rock"} +{"file_name": "test_05909.png", "caption": "The Soft Rock song features a flat male vocal singing over arpeggiated electric guitar melody, punchy kick, groovy bass, shimmering hi hats and snappy rimshots. It sounds emotional and easygoing.", "data_idx": 3608, "number": 3, "label": "rock"} +{"file_name": "test_05910.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a bell melody, followed by wooden percussion. There are some flat male vocals talking, after which there are harmonizing male vocals singing over it. It sounds passionate, even though the recording is noisy.", "data_idx": 3610, "number": 0, "label": "disco"} +{"file_name": "test_05911.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a bell melody, followed by wooden percussion. There are some flat male vocals talking, after which there are harmonizing male vocals singing over it. It sounds passionate, even though the recording is noisy.", "data_idx": 3610, "number": 1, "label": "disco"} +{"file_name": "test_05912.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a bell melody, followed by wooden percussion. There are some flat male vocals talking, after which there are harmonizing male vocals singing over it. It sounds passionate, even though the recording is noisy.", "data_idx": 3610, "number": 2, "label": "disco"} +{"file_name": "test_05913.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of a bell melody, followed by wooden percussion. There are some flat male vocals talking, after which there are harmonizing male vocals singing over it. It sounds passionate, even though the recording is noisy.", "data_idx": 3610, "number": 3, "label": "disco"} +{"file_name": "test_05914.png", "caption": "The low quality recording features a drums solo that contains manic tom rolls and a ride cymbal one shot at the end. There was an exhale sound once the player finished his performance. The recording is very noisy, in mono and it sounds aggressive and energetic.", "data_idx": 3614, "number": 0, "label": "jazz"} +{"file_name": "test_05915.png", "caption": "The low quality recording features a drums solo that contains manic tom rolls and a ride cymbal one shot at the end. There was an exhale sound once the player finished his performance. The recording is very noisy, in mono and it sounds aggressive and energetic.", "data_idx": 3614, "number": 1, "label": "jazz"} +{"file_name": "test_05916.png", "caption": "The low quality recording features a drums solo that contains manic tom rolls and a ride cymbal one shot at the end. There was an exhale sound once the player finished his performance. The recording is very noisy, in mono and it sounds aggressive and energetic.", "data_idx": 3614, "number": 2, "label": "jazz"} +{"file_name": "test_05917.png", "caption": "The low quality recording features a drums solo that contains manic tom rolls and a ride cymbal one shot at the end. There was an exhale sound once the player finished his performance. The recording is very noisy, in mono and it sounds aggressive and energetic.", "data_idx": 3614, "number": 3, "label": "jazz"} +{"file_name": "test_05918.png", "caption": "The Rock song features a sustained strings melody, groovy bass, electric guitar melodies, punchy snare, shimmering hi hats, mellow kick hits and acoustic rhythm guitar. It sounds soulful and like something you would hear during the 70s. The recording is a bit noisy.", "data_idx": 3616, "number": 0, "label": "disco"} +{"file_name": "test_05919.png", "caption": "The Rock song features a sustained strings melody, groovy bass, electric guitar melodies, punchy snare, shimmering hi hats, mellow kick hits and acoustic rhythm guitar. It sounds soulful and like something you would hear during the 70s. The recording is a bit noisy.", "data_idx": 3616, "number": 1, "label": "disco"} +{"file_name": "test_05920.png", "caption": "The Rock song features a sustained strings melody, groovy bass, electric guitar melodies, punchy snare, shimmering hi hats, mellow kick hits and acoustic rhythm guitar. It sounds soulful and like something you would hear during the 70s. The recording is a bit noisy.", "data_idx": 3616, "number": 2, "label": "disco"} +{"file_name": "test_05921.png", "caption": "The Rock song features a sustained strings melody, groovy bass, electric guitar melodies, punchy snare, shimmering hi hats, mellow kick hits and acoustic rhythm guitar. It sounds soulful and like something you would hear during the 70s. The recording is a bit noisy.", "data_idx": 3616, "number": 3, "label": "disco"} +{"file_name": "test_05922.png", "caption": "A female singer sings this beautiful love song with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, percussive bass line, autoharp accompaniment, guitar rhythm and keyboard accompaniment. The song has poor audio quality and makes an excellent wedding dance song.", "data_idx": 3621, "number": 0, "label": "rock"} +{"file_name": "test_05923.png", "caption": "A female singer sings this beautiful love song with backup singers in vocal harmony. The song is medium tempo with a steady drumming rhythm, percussive bass line, autoharp accompaniment, guitar rhythm and keyboard accompaniment. The song has poor audio quality and makes an excellent wedding dance song.", "data_idx": 3621, "number": 1, "label": "rock"} +{"file_name": "test_05924.png", "caption": "The low quality recording features a filter modulated synth bass, after which there is a short snippet of flat male vocals talking over sea waves sounds in the background. The recording is mono and noisy.", "data_idx": 3622, "number": 0, "label": "hiphop"} +{"file_name": "test_05925.png", "caption": "The low quality recording features a filter modulated synth bass, after which there is a short snippet of flat male vocals talking over sea waves sounds in the background. The recording is mono and noisy.", "data_idx": 3622, "number": 1, "label": "hiphop"} +{"file_name": "test_05926.png", "caption": "This song features the main melody sung by a choir. This is accompanied by the string section and brass section featuring violins and trumpets. Hand claps are heard on every count. Orchestral percussion plays in the background. As the quality of audio is low, many instruments cannot be heard. This song can be played in a celebration.", "data_idx": 3623, "number": 0, "label": "rock"} +{"file_name": "test_05927.png", "caption": "This song features the main melody sung by a choir. This is accompanied by the string section and brass section featuring violins and trumpets. Hand claps are heard on every count. Orchestral percussion plays in the background. As the quality of audio is low, many instruments cannot be heard. This song can be played in a celebration.", "data_idx": 3623, "number": 1, "label": "rock"} +{"file_name": "test_05928.png", "caption": "This song features the main melody sung by a choir. This is accompanied by the string section and brass section featuring violins and trumpets. Hand claps are heard on every count. Orchestral percussion plays in the background. As the quality of audio is low, many instruments cannot be heard. This song can be played in a celebration.", "data_idx": 3623, "number": 2, "label": "rock"} +{"file_name": "test_05929.png", "caption": "This song features the main melody sung by a choir. This is accompanied by the string section and brass section featuring violins and trumpets. Hand claps are heard on every count. Orchestral percussion plays in the background. As the quality of audio is low, many instruments cannot be heard. This song can be played in a celebration.", "data_idx": 3623, "number": 3, "label": "rock"} +{"file_name": "test_05930.png", "caption": "Make the singer sing this Latin rap song in vocal harmony. The song is medium tempo with a steady drum drumming rhythm, keyboard accompaniment, string section harmony, percussive bass line and machine gunshot sounds. The song is story telling and violent in nature. The song has bad audio quality.", "data_idx": 3624, "number": 0, "label": "reggae"} +{"file_name": "test_05931.png", "caption": "Make the singer sing this Latin rap song in vocal harmony. The song is medium tempo with a steady drum drumming rhythm, keyboard accompaniment, string section harmony, percussive bass line and machine gunshot sounds. The song is story telling and violent in nature. The song has bad audio quality.", "data_idx": 3624, "number": 1, "label": "reggae"} +{"file_name": "test_05932.png", "caption": "Make the singer sing this Latin rap song in vocal harmony. The song is medium tempo with a steady drum drumming rhythm, keyboard accompaniment, string section harmony, percussive bass line and machine gunshot sounds. The song is story telling and violent in nature. The song has bad audio quality.", "data_idx": 3624, "number": 2, "label": "reggae"} +{"file_name": "test_05933.png", "caption": "Make the singer sing this Latin rap song in vocal harmony. The song is medium tempo with a steady drum drumming rhythm, keyboard accompaniment, string section harmony, percussive bass line and machine gunshot sounds. The song is story telling and violent in nature. The song has bad audio quality.", "data_idx": 3624, "number": 3, "label": "reggae"} +{"file_name": "test_05934.png", "caption": "The low quality recording features a salsa song that consists of a passionate male vocal singing over shimmering chime bells, wooden percussion, shimmering shakers and groovy piano melody. It sounds passionate, emotional and addictive.", "data_idx": 3627, "number": 0, "label": "reggae"} +{"file_name": "test_05935.png", "caption": "The low quality recording features a salsa song that consists of a passionate male vocal singing over shimmering chime bells, wooden percussion, shimmering shakers and groovy piano melody. It sounds passionate, emotional and addictive.", "data_idx": 3627, "number": 1, "label": "reggae"} +{"file_name": "test_05936.png", "caption": "The low quality recording features a salsa song that consists of a passionate male vocal singing over shimmering chime bells, wooden percussion, shimmering shakers and groovy piano melody. It sounds passionate, emotional and addictive.", "data_idx": 3627, "number": 2, "label": "reggae"} +{"file_name": "test_05937.png", "caption": "The low quality recording features a salsa song that consists of a passionate male vocal singing over shimmering chime bells, wooden percussion, shimmering shakers and groovy piano melody. It sounds passionate, emotional and addictive.", "data_idx": 3627, "number": 3, "label": "reggae"} +{"file_name": "test_05938.png", "caption": "This is a kids song in the style of pop punk. There is a male vocalist singing in a playful manner. It is joined occasionally by a robotic voice and the roars of a lion. The electric guitar and the bass guitar are playing a simple theme. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is cheerful. It could go well in the soundtrack of a kids show.", "data_idx": 3630, "number": 0, "label": "disco"} +{"file_name": "test_05939.png", "caption": "This is a kids song in the style of pop punk. There is a male vocalist singing in a playful manner. It is joined occasionally by a robotic voice and the roars of a lion. The electric guitar and the bass guitar are playing a simple theme. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is cheerful. It could go well in the soundtrack of a kids show.", "data_idx": 3630, "number": 1, "label": "disco"} +{"file_name": "test_05940.png", "caption": "This is a kids song in the style of pop punk. There is a male vocalist singing in a playful manner. It is joined occasionally by a robotic voice and the roars of a lion. The electric guitar and the bass guitar are playing a simple theme. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is cheerful. It could go well in the soundtrack of a kids show.", "data_idx": 3630, "number": 2, "label": "disco"} +{"file_name": "test_05941.png", "caption": "This is a kids song in the style of pop punk. There is a male vocalist singing in a playful manner. It is joined occasionally by a robotic voice and the roars of a lion. The electric guitar and the bass guitar are playing a simple theme. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is cheerful. It could go well in the soundtrack of a kids show.", "data_idx": 3630, "number": 3, "label": "disco"} +{"file_name": "test_05942.png", "caption": "A male singer sings this passionate vocal. The song is medium tempo with a groovy bass line, steady drumming rhythm and a violin playing a solo. The song is a live performance by a folk singer. The song has a bad audio quality issue.", "data_idx": 3633, "number": 0, "label": "hiphop"} +{"file_name": "test_05943.png", "caption": "A male singer sings this passionate vocal. The song is medium tempo with a groovy bass line, steady drumming rhythm and a violin playing a solo. The song is a live performance by a folk singer. The song has a bad audio quality issue.", "data_idx": 3633, "number": 1, "label": "hiphop"} +{"file_name": "test_05944.png", "caption": "This is a classical style of music played by a brass quintet. The instruments featured include the trombone, tuba, french horn and trumpets. The motif they play is repeated, and it has a celebratory feel - as if for a big occasion.", "data_idx": 3634, "number": 0, "label": "hiphop"} +{"file_name": "test_05945.png", "caption": "This is a classical style of music played by a brass quintet. The instruments featured include the trombone, tuba, french horn and trumpets. The motif they play is repeated, and it has a celebratory feel - as if for a big occasion.", "data_idx": 3634, "number": 1, "label": "hiphop"} +{"file_name": "test_05946.png", "caption": "This is a classical style of music played by a brass quintet. The instruments featured include the trombone, tuba, french horn and trumpets. The motif they play is repeated, and it has a celebratory feel - as if for a big occasion.", "data_idx": 3634, "number": 2, "label": "hiphop"} +{"file_name": "test_05947.png", "caption": "This is a classical style of music played by a brass quintet. The instruments featured include the trombone, tuba, french horn and trumpets. The motif they play is repeated, and it has a celebratory feel - as if for a big occasion.", "data_idx": 3634, "number": 3, "label": "hiphop"} +{"file_name": "test_05948.png", "caption": "The low quality recording features a flat male talking over background music that consists of a saxophone melody played over shimmering hi hats, snappy rimshots, groovy piano melody, mellow bells melody and simple bass. It sounds happy, fun and easygoing - like something kids would listen to.", "data_idx": 3638, "number": 0, "label": "reggae"} +{"file_name": "test_05949.png", "caption": "The low quality recording features a flat male talking over background music that consists of a saxophone melody played over shimmering hi hats, snappy rimshots, groovy piano melody, mellow bells melody and simple bass. It sounds happy, fun and easygoing - like something kids would listen to.", "data_idx": 3638, "number": 1, "label": "reggae"} +{"file_name": "test_05950.png", "caption": "The low quality recording features a flat male talking over background music that consists of a saxophone melody played over shimmering hi hats, snappy rimshots, groovy piano melody, mellow bells melody and simple bass. It sounds happy, fun and easygoing - like something kids would listen to.", "data_idx": 3638, "number": 2, "label": "reggae"} +{"file_name": "test_05951.png", "caption": "The low quality recording features a flat male talking over background music that consists of a saxophone melody played over shimmering hi hats, snappy rimshots, groovy piano melody, mellow bells melody and simple bass. It sounds happy, fun and easygoing - like something kids would listen to.", "data_idx": 3638, "number": 3, "label": "reggae"} +{"file_name": "test_05952.png", "caption": "This is an educational kids music piece. There is a female vocalist singing in a childlike manner in the Korean language. The keyboard is playing the melody while there is a bass guitar playing in the background. The rhythm is provided by a simple acoustic drum beat. The atmosphere is lively. This piece could be played for science-related classes at schools in Korea.", "data_idx": 3640, "number": 0, "label": "reggae"} +{"file_name": "test_05953.png", "caption": "This is an educational kids music piece. There is a female vocalist singing in a childlike manner in the Korean language. The keyboard is playing the melody while there is a bass guitar playing in the background. The rhythm is provided by a simple acoustic drum beat. The atmosphere is lively. This piece could be played for science-related classes at schools in Korea.", "data_idx": 3640, "number": 1, "label": "reggae"} +{"file_name": "test_05954.png", "caption": "This is an educational kids music piece. There is a female vocalist singing in a childlike manner in the Korean language. The keyboard is playing the melody while there is a bass guitar playing in the background. The rhythm is provided by a simple acoustic drum beat. The atmosphere is lively. This piece could be played for science-related classes at schools in Korea.", "data_idx": 3640, "number": 2, "label": "reggae"} +{"file_name": "test_05955.png", "caption": "This is an educational kids music piece. There is a female vocalist singing in a childlike manner in the Korean language. The keyboard is playing the melody while there is a bass guitar playing in the background. The rhythm is provided by a simple acoustic drum beat. The atmosphere is lively. This piece could be played for science-related classes at schools in Korea.", "data_idx": 3640, "number": 3, "label": "reggae"} +{"file_name": "test_05956.png", "caption": "This is a Pakistani Sufi music piece. There is a female voice singing in a devoted manner. A bass tune can be heard supporting the vocals. The rhythm is performed by a membranous percussion, most probably a def. The atmosphere is religious. This piece could be played at Sufi religious events.", "data_idx": 3641, "number": 0, "label": "country"} +{"file_name": "test_05957.png", "caption": "This is a Pakistani Sufi music piece. There is a female voice singing in a devoted manner. A bass tune can be heard supporting the vocals. The rhythm is performed by a membranous percussion, most probably a def. The atmosphere is religious. This piece could be played at Sufi religious events.", "data_idx": 3641, "number": 1, "label": "country"} +{"file_name": "test_05958.png", "caption": "This is a Pakistani Sufi music piece. There is a female voice singing in a devoted manner. A bass tune can be heard supporting the vocals. The rhythm is performed by a membranous percussion, most probably a def. The atmosphere is religious. This piece could be played at Sufi religious events.", "data_idx": 3641, "number": 2, "label": "country"} +{"file_name": "test_05959.png", "caption": "This is a Pakistani Sufi music piece. There is a female voice singing in a devoted manner. A bass tune can be heard supporting the vocals. The rhythm is performed by a membranous percussion, most probably a def. The atmosphere is religious. This piece could be played at Sufi religious events.", "data_idx": 3641, "number": 3, "label": "country"} +{"file_name": "test_05960.png", "caption": "Someone is playing acoustic drums with a lot of loud cymbal hits along with a screaming male vocal. A distorted e-guitar is playing long low notes. The atmosphere sounds dangerous and aggressive. This song may be playing in the band room practicing drumming.", "data_idx": 3643, "number": 0, "label": "metal"} +{"file_name": "test_05961.png", "caption": "Someone is playing acoustic drums with a lot of loud cymbal hits along with a screaming male vocal. A distorted e-guitar is playing long low notes. The atmosphere sounds dangerous and aggressive. This song may be playing in the band room practicing drumming.", "data_idx": 3643, "number": 1, "label": "metal"} +{"file_name": "test_05962.png", "caption": "Someone is playing acoustic drums with a lot of loud cymbal hits along with a screaming male vocal. A distorted e-guitar is playing long low notes. The atmosphere sounds dangerous and aggressive. This song may be playing in the band room practicing drumming.", "data_idx": 3643, "number": 2, "label": "metal"} +{"file_name": "test_05963.png", "caption": "Someone is playing acoustic drums with a lot of loud cymbal hits along with a screaming male vocal. A distorted e-guitar is playing long low notes. The atmosphere sounds dangerous and aggressive. This song may be playing in the band room practicing drumming.", "data_idx": 3643, "number": 3, "label": "metal"} +{"file_name": "test_05964.png", "caption": "This song features a choir singing a Christian hymn. The voices sing one note followed by a higher note followed by a descending pattern. The female voices sing the soprano and alto voices. The male voices sing tenor and bass parts. There are no instruments in this song. This song is an acapella song. This song can be played in a church.", "data_idx": 3644, "number": 0, "label": "classical"} +{"file_name": "test_05965.png", "caption": "This song features a choir singing a Christian hymn. The voices sing one note followed by a higher note followed by a descending pattern. The female voices sing the soprano and alto voices. The male voices sing tenor and bass parts. There are no instruments in this song. This song is an acapella song. This song can be played in a church.", "data_idx": 3644, "number": 1, "label": "classical"} +{"file_name": "test_05966.png", "caption": "The low quality recording features a flat male vocal talking, alongside some claps and snare rolls. It sounds like an interview and the recording is mono and noisy.", "data_idx": 3648, "number": 0, "label": "hiphop"} +{"file_name": "test_05967.png", "caption": "The low quality recording features a flat male vocal talking, alongside some claps and snare rolls. It sounds like an interview and the recording is mono and noisy.", "data_idx": 3648, "number": 1, "label": "hiphop"} +{"file_name": "test_05968.png", "caption": "The low quality recording features a flat male vocal talking, alongside some claps and snare rolls. It sounds like an interview and the recording is mono and noisy.", "data_idx": 3648, "number": 2, "label": "hiphop"} +{"file_name": "test_05969.png", "caption": "The low quality recording features a flat male vocal talking, alongside some claps and snare rolls. It sounds like an interview and the recording is mono and noisy.", "data_idx": 3648, "number": 3, "label": "hiphop"} +{"file_name": "test_05970.png", "caption": "This techno song features a synth playing the main melody. It is based on chord structures. The bass plays the root notes of the chords. The percussion is programmed. The kick plays on every count and the hi-hat plays on the 'and' of every count. After four bars, the kick plays an eighth note rhythm. This song can be played in a club.", "data_idx": 3657, "number": 0, "label": "hiphop"} +{"file_name": "test_05971.png", "caption": "This techno song features a synth playing the main melody. It is based on chord structures. The bass plays the root notes of the chords. The percussion is programmed. The kick plays on every count and the hi-hat plays on the 'and' of every count. After four bars, the kick plays an eighth note rhythm. This song can be played in a club.", "data_idx": 3657, "number": 1, "label": "hiphop"} +{"file_name": "test_05972.png", "caption": "This techno song features a synth playing the main melody. It is based on chord structures. The bass plays the root notes of the chords. The percussion is programmed. The kick plays on every count and the hi-hat plays on the 'and' of every count. After four bars, the kick plays an eighth note rhythm. This song can be played in a club.", "data_idx": 3657, "number": 2, "label": "hiphop"} +{"file_name": "test_05973.png", "caption": "This techno song features a synth playing the main melody. It is based on chord structures. The bass plays the root notes of the chords. The percussion is programmed. The kick plays on every count and the hi-hat plays on the 'and' of every count. After four bars, the kick plays an eighth note rhythm. This song can be played in a club.", "data_idx": 3657, "number": 3, "label": "hiphop"} +{"file_name": "test_05974.png", "caption": "This music is a lively instrumental. The tempo is fast with bright trumpet harmony of French horns, trumpets accompaniment and a steady, punchy bass drum rhythm. The music is upbeat, punchy, buoyant, spirited, lively and vivacious. The audio quality is an amateur recording. This music is a live performance with ambient sounds of people clapping and cheering .", "data_idx": 3659, "number": 0, "label": "metal"} +{"file_name": "test_05975.png", "caption": "This music is a lively instrumental. The tempo is fast with bright trumpet harmony of French horns, trumpets accompaniment and a steady, punchy bass drum rhythm. The music is upbeat, punchy, buoyant, spirited, lively and vivacious. The audio quality is an amateur recording. This music is a live performance with ambient sounds of people clapping and cheering .", "data_idx": 3659, "number": 1, "label": "metal"} +{"file_name": "test_05976.png", "caption": "This music is a lively instrumental. The tempo is fast with bright trumpet harmony of French horns, trumpets accompaniment and a steady, punchy bass drum rhythm. The music is upbeat, punchy, buoyant, spirited, lively and vivacious. The audio quality is an amateur recording. This music is a live performance with ambient sounds of people clapping and cheering .", "data_idx": 3659, "number": 2, "label": "metal"} +{"file_name": "test_05977.png", "caption": "This music is a lively instrumental. The tempo is fast with bright trumpet harmony of French horns, trumpets accompaniment and a steady, punchy bass drum rhythm. The music is upbeat, punchy, buoyant, spirited, lively and vivacious. The audio quality is an amateur recording. This music is a live performance with ambient sounds of people clapping and cheering .", "data_idx": 3659, "number": 3, "label": "metal"} +{"file_name": "test_05978.png", "caption": "This is a clip which sees a solo bass guitarist play a series of motifs in a bluesy style. The playing oscillates between a low phrase and high notes to which the player slides down.", "data_idx": 3661, "number": 0, "label": "hiphop"} +{"file_name": "test_05979.png", "caption": "This is a clip which sees a solo bass guitarist play a series of motifs in a bluesy style. The playing oscillates between a low phrase and high notes to which the player slides down.", "data_idx": 3661, "number": 1, "label": "hiphop"} +{"file_name": "test_05980.png", "caption": "This is a clip which sees a solo bass guitarist play a series of motifs in a bluesy style. The playing oscillates between a low phrase and high notes to which the player slides down.", "data_idx": 3661, "number": 2, "label": "hiphop"} +{"file_name": "test_05981.png", "caption": "This is a clip which sees a solo bass guitarist play a series of motifs in a bluesy style. The playing oscillates between a low phrase and high notes to which the player slides down.", "data_idx": 3661, "number": 3, "label": "hiphop"} +{"file_name": "test_05982.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar is playing the main tune while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie where the characters are missing each other at night.", "data_idx": 3665, "number": 0, "label": "pop"} +{"file_name": "test_05983.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar is playing the main tune while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie where the characters are missing each other at night.", "data_idx": 3665, "number": 1, "label": "pop"} +{"file_name": "test_05984.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar is playing the main tune while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie where the characters are missing each other at night.", "data_idx": 3665, "number": 2, "label": "pop"} +{"file_name": "test_05985.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically in the lead. The acoustic guitar is playing the main tune while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. The atmosphere is emotional. This piece could be used in the soundtrack of a romance movie where the characters are missing each other at night.", "data_idx": 3665, "number": 3, "label": "pop"} +{"file_name": "test_05986.png", "caption": "The low quality recording features a jazz song that consists of a saxophone solo melody played over hollow snare, groovy double bass, shimmering hi hats, shimmering shakers and brass melody. It sounds uptempo, groovy and passionate - like something you would hear in a jazz club.", "data_idx": 3666, "number": 0, "label": "rock"} +{"file_name": "test_05987.png", "caption": "The low quality recording features a jazz song that consists of a saxophone solo melody played over hollow snare, groovy double bass, shimmering hi hats, shimmering shakers and brass melody. It sounds uptempo, groovy and passionate - like something you would hear in a jazz club.", "data_idx": 3666, "number": 1, "label": "rock"} +{"file_name": "test_05988.png", "caption": "The low quality recording features a jazz song that consists of a saxophone solo melody played over hollow snare, groovy double bass, shimmering hi hats, shimmering shakers and brass melody. It sounds uptempo, groovy and passionate - like something you would hear in a jazz club.", "data_idx": 3666, "number": 2, "label": "rock"} +{"file_name": "test_05989.png", "caption": "The low quality recording features a jazz song that consists of a saxophone solo melody played over hollow snare, groovy double bass, shimmering hi hats, shimmering shakers and brass melody. It sounds uptempo, groovy and passionate - like something you would hear in a jazz club.", "data_idx": 3666, "number": 3, "label": "rock"} +{"file_name": "test_05990.png", "caption": "This reggae song features a male voice singing vocals at a high pitch, almost screaming. This is accompanied by percussion playing a reggae beat. The bass plays a groovy lick and plays a chromatic run of five notes to reach the note to start the chorus. A guitar strums one chord on alternate counts. This song can be played in a Caribbean themed party.", "data_idx": 3668, "number": 0, "label": "reggae"} +{"file_name": "test_05991.png", "caption": "This reggae song features a male voice singing vocals at a high pitch, almost screaming. This is accompanied by percussion playing a reggae beat. The bass plays a groovy lick and plays a chromatic run of five notes to reach the note to start the chorus. A guitar strums one chord on alternate counts. This song can be played in a Caribbean themed party.", "data_idx": 3668, "number": 1, "label": "reggae"} +{"file_name": "test_05992.png", "caption": "This reggae song features a male voice singing vocals at a high pitch, almost screaming. This is accompanied by percussion playing a reggae beat. The bass plays a groovy lick and plays a chromatic run of five notes to reach the note to start the chorus. A guitar strums one chord on alternate counts. This song can be played in a Caribbean themed party.", "data_idx": 3668, "number": 2, "label": "reggae"} +{"file_name": "test_05993.png", "caption": "This reggae song features a male voice singing vocals at a high pitch, almost screaming. This is accompanied by percussion playing a reggae beat. The bass plays a groovy lick and plays a chromatic run of five notes to reach the note to start the chorus. A guitar strums one chord on alternate counts. This song can be played in a Caribbean themed party.", "data_idx": 3668, "number": 3, "label": "reggae"} +{"file_name": "test_05994.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing background vocals, singing over tinny snares, snappy rimshots, shimmering hi hats, groovy bass and electric guitar chords. It sounds groovy and passionate.", "data_idx": 3671, "number": 0, "label": "reggae"} +{"file_name": "test_05995.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing background vocals, singing over tinny snares, snappy rimshots, shimmering hi hats, groovy bass and electric guitar chords. It sounds groovy and passionate.", "data_idx": 3671, "number": 1, "label": "reggae"} +{"file_name": "test_05996.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing background vocals, singing over tinny snares, snappy rimshots, shimmering hi hats, groovy bass and electric guitar chords. It sounds groovy and passionate.", "data_idx": 3671, "number": 2, "label": "reggae"} +{"file_name": "test_05997.png", "caption": "The low quality recording features a passionate male vocal, alongside harmonizing background vocals, singing over tinny snares, snappy rimshots, shimmering hi hats, groovy bass and electric guitar chords. It sounds groovy and passionate.", "data_idx": 3671, "number": 3, "label": "reggae"} +{"file_name": "test_05998.png", "caption": "The low quality recording features a regional Mexican song that consists of a passionate male vocal singing over brass melody, wooden percussions, tinny metallic percussions, groovy piano melody and groovy bass. It sounds joyful, happy and energetic.", "data_idx": 3675, "number": 0, "label": "rock"} +{"file_name": "test_05999.png", "caption": "The low quality recording features a regional Mexican song that consists of a passionate male vocal singing over brass melody, wooden percussions, tinny metallic percussions, groovy piano melody and groovy bass. It sounds joyful, happy and energetic.", "data_idx": 3675, "number": 1, "label": "rock"} +{"file_name": "test_06000.png", "caption": "The low quality recording features a regional Mexican song that consists of a passionate male vocal singing over brass melody, wooden percussions, tinny metallic percussions, groovy piano melody and groovy bass. It sounds joyful, happy and energetic.", "data_idx": 3675, "number": 2, "label": "rock"} +{"file_name": "test_06001.png", "caption": "The low quality recording features a regional Mexican song that consists of a passionate male vocal singing over brass melody, wooden percussions, tinny metallic percussions, groovy piano melody and groovy bass. It sounds joyful, happy and energetic.", "data_idx": 3675, "number": 3, "label": "rock"} +{"file_name": "test_06002.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated clarinet lead, lively spanish guitar rhythm, ukulele accompaniment and bright tambourine /pandeireta beats. The music is upbeat, buoyant, peppy, cheerful, happy, playful and fun Latin Clarinet Instrumental.", "data_idx": 3677, "number": 0, "label": "blues"} +{"file_name": "test_06003.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated clarinet lead, lively spanish guitar rhythm, ukulele accompaniment and bright tambourine /pandeireta beats. The music is upbeat, buoyant, peppy, cheerful, happy, playful and fun Latin Clarinet Instrumental.", "data_idx": 3677, "number": 1, "label": "blues"} +{"file_name": "test_06004.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated clarinet lead, lively spanish guitar rhythm, ukulele accompaniment and bright tambourine /pandeireta beats. The music is upbeat, buoyant, peppy, cheerful, happy, playful and fun Latin Clarinet Instrumental.", "data_idx": 3677, "number": 2, "label": "blues"} +{"file_name": "test_06005.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated clarinet lead, lively spanish guitar rhythm, ukulele accompaniment and bright tambourine /pandeireta beats. The music is upbeat, buoyant, peppy, cheerful, happy, playful and fun Latin Clarinet Instrumental.", "data_idx": 3677, "number": 3, "label": "blues"} +{"file_name": "test_06006.png", "caption": "The low quality recording features an electric guitar melody played with a chorus effect on. The recording is noisy and in mono.", "data_idx": 3678, "number": 0, "label": "blues"} +{"file_name": "test_06007.png", "caption": "The low quality recording features an electric guitar melody played with a chorus effect on. The recording is noisy and in mono.", "data_idx": 3678, "number": 1, "label": "blues"} +{"file_name": "test_06008.png", "caption": "The low quality recording features an electric guitar melody played with a chorus effect on. The recording is noisy and in mono.", "data_idx": 3678, "number": 2, "label": "blues"} +{"file_name": "test_06009.png", "caption": "The low quality recording features an electric guitar melody played with a chorus effect on. The recording is noisy and in mono.", "data_idx": 3678, "number": 3, "label": "blues"} +{"file_name": "test_06010.png", "caption": "This song features a drum solo being played. The hi-hat, snare, kick and toms are played in this clip. There are no other instruments in this song. There are no voices in this song. This song can be played in an instruction video.", "data_idx": 3680, "number": 0, "label": "reggae"} +{"file_name": "test_06011.png", "caption": "This song features a drum solo being played. The hi-hat, snare, kick and toms are played in this clip. There are no other instruments in this song. There are no voices in this song. This song can be played in an instruction video.", "data_idx": 3680, "number": 1, "label": "reggae"} +{"file_name": "test_06012.png", "caption": "This song features a drum solo being played. The hi-hat, snare, kick and toms are played in this clip. There are no other instruments in this song. There are no voices in this song. This song can be played in an instruction video.", "data_idx": 3680, "number": 2, "label": "reggae"} +{"file_name": "test_06013.png", "caption": "This song features a drum solo being played. The hi-hat, snare, kick and toms are played in this clip. There are no other instruments in this song. There are no voices in this song. This song can be played in an instruction video.", "data_idx": 3680, "number": 3, "label": "reggae"} +{"file_name": "test_06014.png", "caption": "Someone is playing a melody in the higher midrange on a cello. In the background you can hear someone playing along on a cembalo. This song may be playing at a live concert.", "data_idx": 3688, "number": 0, "label": "jazz"} +{"file_name": "test_06015.png", "caption": "Someone is playing a melody in the higher midrange on a cello. In the background you can hear someone playing along on a cembalo. This song may be playing at a live concert.", "data_idx": 3688, "number": 1, "label": "jazz"} +{"file_name": "test_06016.png", "caption": "Someone is playing a melody in the higher midrange on a cello. In the background you can hear someone playing along on a cembalo. This song may be playing at a live concert.", "data_idx": 3688, "number": 2, "label": "jazz"} +{"file_name": "test_06017.png", "caption": "Someone is playing a melody in the higher midrange on a cello. In the background you can hear someone playing along on a cembalo. This song may be playing at a live concert.", "data_idx": 3688, "number": 3, "label": "jazz"} +{"file_name": "test_06018.png", "caption": "This music is instrumental. The tempo is medium fast with synthesiser arrangements , digital drums and electronic music . The music is upbeat, pulsating, youthful, buoyant, exciting, punchy , psychedelic and has propulsive beats with a dance groove. This music is EDM/Techno.", "data_idx": 3689, "number": 0, "label": "hiphop"} +{"file_name": "test_06019.png", "caption": "This music is instrumental. The tempo is medium fast with synthesiser arrangements , digital drums and electronic music . The music is upbeat, pulsating, youthful, buoyant, exciting, punchy , psychedelic and has propulsive beats with a dance groove. This music is EDM/Techno.", "data_idx": 3689, "number": 1, "label": "hiphop"} +{"file_name": "test_06020.png", "caption": "This music is instrumental. The tempo is medium fast with synthesiser arrangements , digital drums and electronic music . The music is upbeat, pulsating, youthful, buoyant, exciting, punchy , psychedelic and has propulsive beats with a dance groove. This music is EDM/Techno.", "data_idx": 3689, "number": 2, "label": "hiphop"} +{"file_name": "test_06021.png", "caption": "This music is instrumental. The tempo is medium fast with synthesiser arrangements , digital drums and electronic music . The music is upbeat, pulsating, youthful, buoyant, exciting, punchy , psychedelic and has propulsive beats with a dance groove. This music is EDM/Techno.", "data_idx": 3689, "number": 3, "label": "hiphop"} +{"file_name": "test_06022.png", "caption": "This clip features two male voices in conversation. The sound of a tabla is played. There is no music in this clip. There are no other instruments in this clip.", "data_idx": 3690, "number": 0, "label": "hiphop"} +{"file_name": "test_06023.png", "caption": "This clip features two male voices in conversation. The sound of a tabla is played. There is no music in this clip. There are no other instruments in this clip.", "data_idx": 3690, "number": 1, "label": "hiphop"} +{"file_name": "test_06024.png", "caption": "This clip features two male voices in conversation. The sound of a tabla is played. There is no music in this clip. There are no other instruments in this clip.", "data_idx": 3690, "number": 2, "label": "hiphop"} +{"file_name": "test_06025.png", "caption": "This clip features two male voices in conversation. The sound of a tabla is played. There is no music in this clip. There are no other instruments in this clip.", "data_idx": 3690, "number": 3, "label": "hiphop"} +{"file_name": "test_06026.png", "caption": "This music is instrumental. The tempo is slow with an acoustic guitar harmony, loud electric guitar feedback and fiddle. The music is intense, rugged, vivid, melancholic, pensive, raw, powerful, emphatic and strong. This music is classic Blues Country Music.", "data_idx": 3692, "number": 0, "label": "jazz"} +{"file_name": "test_06027.png", "caption": "This music is instrumental. The tempo is slow with an acoustic guitar harmony, loud electric guitar feedback and fiddle. The music is intense, rugged, vivid, melancholic, pensive, raw, powerful, emphatic and strong. This music is classic Blues Country Music.", "data_idx": 3692, "number": 1, "label": "jazz"} +{"file_name": "test_06028.png", "caption": "This music is instrumental. The tempo is slow with an acoustic guitar harmony, loud electric guitar feedback and fiddle. The music is intense, rugged, vivid, melancholic, pensive, raw, powerful, emphatic and strong. This music is classic Blues Country Music.", "data_idx": 3692, "number": 2, "label": "jazz"} +{"file_name": "test_06029.png", "caption": "This music is instrumental. The tempo is slow with an acoustic guitar harmony, loud electric guitar feedback and fiddle. The music is intense, rugged, vivid, melancholic, pensive, raw, powerful, emphatic and strong. This music is classic Blues Country Music.", "data_idx": 3692, "number": 3, "label": "jazz"} +{"file_name": "test_06030.png", "caption": "The low quality recording features an acoustic rhythm guitar melody, arpeggiated harp melody, simple bass and sustained strings melody. It sounds soulful and passionate - like a traditional song.", "data_idx": 3693, "number": 0, "label": "blues"} +{"file_name": "test_06031.png", "caption": "The low quality recording features an acoustic rhythm guitar melody, arpeggiated harp melody, simple bass and sustained strings melody. It sounds soulful and passionate - like a traditional song.", "data_idx": 3693, "number": 1, "label": "blues"} +{"file_name": "test_06032.png", "caption": "The low quality recording features an acoustic rhythm guitar melody, arpeggiated harp melody, simple bass and sustained strings melody. It sounds soulful and passionate - like a traditional song.", "data_idx": 3693, "number": 2, "label": "blues"} +{"file_name": "test_06033.png", "caption": "The low quality recording features an acoustic rhythm guitar melody, arpeggiated harp melody, simple bass and sustained strings melody. It sounds soulful and passionate - like a traditional song.", "data_idx": 3693, "number": 3, "label": "blues"} +{"file_name": "test_06034.png", "caption": "This clip features an electric guitar being played. This electric guitar has a distortion effect. A chorus effect is also added. The distortion guitar starts off with a descending lick on the pentatonic scale followed by palm muted power chords. A few double stops are played and at the end, a string bend is played. There are no other instruments in this song. There is no voice in this clip. This song can be used in a demo of a chorus effects pedal.", "data_idx": 3695, "number": 0, "label": "hiphop"} +{"file_name": "test_06035.png", "caption": "This clip features an electric guitar being played. This electric guitar has a distortion effect. A chorus effect is also added. The distortion guitar starts off with a descending lick on the pentatonic scale followed by palm muted power chords. A few double stops are played and at the end, a string bend is played. There are no other instruments in this song. There is no voice in this clip. This song can be used in a demo of a chorus effects pedal.", "data_idx": 3695, "number": 1, "label": "hiphop"} +{"file_name": "test_06036.png", "caption": "This clip features an electric guitar being played. This electric guitar has a distortion effect. A chorus effect is also added. The distortion guitar starts off with a descending lick on the pentatonic scale followed by palm muted power chords. A few double stops are played and at the end, a string bend is played. There are no other instruments in this song. There is no voice in this clip. This song can be used in a demo of a chorus effects pedal.", "data_idx": 3695, "number": 2, "label": "hiphop"} +{"file_name": "test_06037.png", "caption": "This clip features an electric guitar being played. This electric guitar has a distortion effect. A chorus effect is also added. The distortion guitar starts off with a descending lick on the pentatonic scale followed by palm muted power chords. A few double stops are played and at the end, a string bend is played. There are no other instruments in this song. There is no voice in this clip. This song can be used in a demo of a chorus effects pedal.", "data_idx": 3695, "number": 3, "label": "hiphop"} +{"file_name": "test_06038.png", "caption": "The low quality recording features a live performance of an orchestra and it consists of loud brass melody, mellow woodwinds melody, suspenseful violin melody and muffled percussion. It sounds epic, powerful and passionate. The recording is in mono, a bit noisy and it is reverberant as it was performed in a large concert hall.", "data_idx": 3696, "number": 0, "label": "classical"} +{"file_name": "test_06039.png", "caption": "The low quality recording features a live performance of an orchestra and it consists of loud brass melody, mellow woodwinds melody, suspenseful violin melody and muffled percussion. It sounds epic, powerful and passionate. The recording is in mono, a bit noisy and it is reverberant as it was performed in a large concert hall.", "data_idx": 3696, "number": 1, "label": "classical"} +{"file_name": "test_06040.png", "caption": "The low quality recording features a live performance of an orchestra and it consists of loud brass melody, mellow woodwinds melody, suspenseful violin melody and muffled percussion. It sounds epic, powerful and passionate. The recording is in mono, a bit noisy and it is reverberant as it was performed in a large concert hall.", "data_idx": 3696, "number": 2, "label": "classical"} +{"file_name": "test_06041.png", "caption": "The low quality recording features a live performance of an orchestra and it consists of loud brass melody, mellow woodwinds melody, suspenseful violin melody and muffled percussion. It sounds epic, powerful and passionate. The recording is in mono, a bit noisy and it is reverberant as it was performed in a large concert hall.", "data_idx": 3696, "number": 3, "label": "classical"} +{"file_name": "test_06042.png", "caption": "This song contains a female kid's voice singing with a little reverb and delay in her voice. An e-bass is playing a simple line along with a piano playing major chords. Panned to both sides of the speakers you can hear different percussive elements such as ride cymbal hits, shaker and bongos. Another keyboard sound is playing the main melody taking turns with the singer. Some twinkling sound adds single notes on top to round up the lullaby. This song may be playing for a kids tv-show.", "data_idx": 3697, "number": 0, "label": "pop"} +{"file_name": "test_06043.png", "caption": "This song contains a female kid's voice singing with a little reverb and delay in her voice. An e-bass is playing a simple line along with a piano playing major chords. Panned to both sides of the speakers you can hear different percussive elements such as ride cymbal hits, shaker and bongos. Another keyboard sound is playing the main melody taking turns with the singer. Some twinkling sound adds single notes on top to round up the lullaby. This song may be playing for a kids tv-show.", "data_idx": 3697, "number": 1, "label": "pop"} +{"file_name": "test_06044.png", "caption": "This song contains a female kid's voice singing with a little reverb and delay in her voice. An e-bass is playing a simple line along with a piano playing major chords. Panned to both sides of the speakers you can hear different percussive elements such as ride cymbal hits, shaker and bongos. Another keyboard sound is playing the main melody taking turns with the singer. Some twinkling sound adds single notes on top to round up the lullaby. This song may be playing for a kids tv-show.", "data_idx": 3697, "number": 2, "label": "pop"} +{"file_name": "test_06045.png", "caption": "This song contains a female kid's voice singing with a little reverb and delay in her voice. An e-bass is playing a simple line along with a piano playing major chords. Panned to both sides of the speakers you can hear different percussive elements such as ride cymbal hits, shaker and bongos. Another keyboard sound is playing the main melody taking turns with the singer. Some twinkling sound adds single notes on top to round up the lullaby. This song may be playing for a kids tv-show.", "data_idx": 3697, "number": 3, "label": "pop"} +{"file_name": "test_06046.png", "caption": "The clip is of a Christian worship song - a gospel song. It's a powerful ballad with violins which add an uplifting emotional effect. The male singer has a smooth and gentle voice. There's an uplifting and soulful choir performing backing vocals.", "data_idx": 3700, "number": 0, "label": "rock"} +{"file_name": "test_06047.png", "caption": "The clip is of a Christian worship song - a gospel song. It's a powerful ballad with violins which add an uplifting emotional effect. The male singer has a smooth and gentle voice. There's an uplifting and soulful choir performing backing vocals.", "data_idx": 3700, "number": 1, "label": "rock"} +{"file_name": "test_06048.png", "caption": "The clip is of a Christian worship song - a gospel song. It's a powerful ballad with violins which add an uplifting emotional effect. The male singer has a smooth and gentle voice. There's an uplifting and soulful choir performing backing vocals.", "data_idx": 3700, "number": 2, "label": "rock"} +{"file_name": "test_06049.png", "caption": "The clip is of a Christian worship song - a gospel song. It's a powerful ballad with violins which add an uplifting emotional effect. The male singer has a smooth and gentle voice. There's an uplifting and soulful choir performing backing vocals.", "data_idx": 3700, "number": 3, "label": "rock"} +{"file_name": "test_06050.png", "caption": "The low quality recording features a reggae song that consists of a flat male vocal, alongside harmonizing background male vocals, singing over shimmering shakers, offbeat piano chords, brass melody, wide toms, tinny echoing snare and punchy kick layered with it. It sounds upbeat and easygoing.", "data_idx": 3702, "number": 0, "label": "hiphop"} +{"file_name": "test_06051.png", "caption": "The low quality recording features a reggae song that consists of a flat male vocal, alongside harmonizing background male vocals, singing over shimmering shakers, offbeat piano chords, brass melody, wide toms, tinny echoing snare and punchy kick layered with it. It sounds upbeat and easygoing.", "data_idx": 3702, "number": 1, "label": "hiphop"} +{"file_name": "test_06052.png", "caption": "The low quality recording features a reggae song that consists of a flat male vocal, alongside harmonizing background male vocals, singing over shimmering shakers, offbeat piano chords, brass melody, wide toms, tinny echoing snare and punchy kick layered with it. It sounds upbeat and easygoing.", "data_idx": 3702, "number": 2, "label": "hiphop"} +{"file_name": "test_06053.png", "caption": "The low quality recording features a reggae song that consists of a flat male vocal, alongside harmonizing background male vocals, singing over shimmering shakers, offbeat piano chords, brass melody, wide toms, tinny echoing snare and punchy kick layered with it. It sounds upbeat and easygoing.", "data_idx": 3702, "number": 3, "label": "hiphop"} +{"file_name": "test_06054.png", "caption": "This feels like a romantic ballad. The bansuri plays a soothing melody and the male vocalist comes in with a beautiful and gentle voice. This is an Indian song and it is emotional and brings about stillness. The acoustic guitar plays arpeggios.", "data_idx": 3703, "number": 0, "label": "classical"} +{"file_name": "test_06055.png", "caption": "This feels like a romantic ballad. The bansuri plays a soothing melody and the male vocalist comes in with a beautiful and gentle voice. This is an Indian song and it is emotional and brings about stillness. The acoustic guitar plays arpeggios.", "data_idx": 3703, "number": 1, "label": "classical"} +{"file_name": "test_06056.png", "caption": "This feels like a romantic ballad. The bansuri plays a soothing melody and the male vocalist comes in with a beautiful and gentle voice. This is an Indian song and it is emotional and brings about stillness. The acoustic guitar plays arpeggios.", "data_idx": 3703, "number": 2, "label": "classical"} +{"file_name": "test_06057.png", "caption": "This feels like a romantic ballad. The bansuri plays a soothing melody and the male vocalist comes in with a beautiful and gentle voice. This is an Indian song and it is emotional and brings about stillness. The acoustic guitar plays arpeggios.", "data_idx": 3703, "number": 3, "label": "classical"} +{"file_name": "test_06058.png", "caption": "A guitarist is tuning his guitar making string noises, peg sounds and fretboard noises. The audio is very bad with a boomy low end. The conversation is engaging and keeps the crowds occupied as the guitarist gets ready for the next song.", "data_idx": 3704, "number": 0, "label": "reggae"} +{"file_name": "test_06059.png", "caption": "A guitarist is tuning his guitar making string noises, peg sounds and fretboard noises. The audio is very bad with a boomy low end. The conversation is engaging and keeps the crowds occupied as the guitarist gets ready for the next song.", "data_idx": 3704, "number": 1, "label": "reggae"} +{"file_name": "test_06060.png", "caption": "A guitarist is tuning his guitar making string noises, peg sounds and fretboard noises. The audio is very bad with a boomy low end. The conversation is engaging and keeps the crowds occupied as the guitarist gets ready for the next song.", "data_idx": 3704, "number": 2, "label": "reggae"} +{"file_name": "test_06061.png", "caption": "A guitarist is tuning his guitar making string noises, peg sounds and fretboard noises. The audio is very bad with a boomy low end. The conversation is engaging and keeps the crowds occupied as the guitarist gets ready for the next song.", "data_idx": 3704, "number": 3, "label": "reggae"} +{"file_name": "test_06062.png", "caption": "This is the live performance of a percussion piece. There is a playful sounding jazz steel pan solo being performed on stage. The atmosphere is easygoing. This piece could be used during tropical scenery shots in a movie with a summer/vacation theme.", "data_idx": 3705, "number": 0, "label": "classical"} +{"file_name": "test_06063.png", "caption": "This is the live performance of a percussion piece. There is a playful sounding jazz steel pan solo being performed on stage. The atmosphere is easygoing. This piece could be used during tropical scenery shots in a movie with a summer/vacation theme.", "data_idx": 3705, "number": 1, "label": "classical"} +{"file_name": "test_06064.png", "caption": "This is the live performance of a percussion piece. There is a playful sounding jazz steel pan solo being performed on stage. The atmosphere is easygoing. This piece could be used during tropical scenery shots in a movie with a summer/vacation theme.", "data_idx": 3705, "number": 2, "label": "classical"} +{"file_name": "test_06065.png", "caption": "This is the live performance of a percussion piece. There is a playful sounding jazz steel pan solo being performed on stage. The atmosphere is easygoing. This piece could be used during tropical scenery shots in a movie with a summer/vacation theme.", "data_idx": 3705, "number": 3, "label": "classical"} +{"file_name": "test_06066.png", "caption": "The song is an instrumental. The song is in medium tempo with a cello playing percussively, a clarinet in melody and supported in harmony by a bass clarinet and a trombone. The song is a rock song cover played live. The song is engaging and rich in quality.", "data_idx": 3707, "number": 0, "label": "hiphop"} +{"file_name": "test_06067.png", "caption": "The song is an instrumental. The song is in medium tempo with a cello playing percussively, a clarinet in melody and supported in harmony by a bass clarinet and a trombone. The song is a rock song cover played live. The song is engaging and rich in quality.", "data_idx": 3707, "number": 1, "label": "hiphop"} +{"file_name": "test_06068.png", "caption": "The song is an instrumental. The song is in medium tempo with a cello playing percussively, a clarinet in melody and supported in harmony by a bass clarinet and a trombone. The song is a rock song cover played live. The song is engaging and rich in quality.", "data_idx": 3707, "number": 2, "label": "hiphop"} +{"file_name": "test_06069.png", "caption": "The song is an instrumental. The song is in medium tempo with a cello playing percussively, a clarinet in melody and supported in harmony by a bass clarinet and a trombone. The song is a rock song cover played live. The song is engaging and rich in quality.", "data_idx": 3707, "number": 3, "label": "hiphop"} +{"file_name": "test_06070.png", "caption": "The low quality recording features a flat male vocal talking over a classical song that consists of sustained strings melody. It sounds dramatic and suspenseful.", "data_idx": 3708, "number": 0, "label": "blues"} +{"file_name": "test_06071.png", "caption": "The low quality recording features a flat male vocal talking over a classical song that consists of sustained strings melody. It sounds dramatic and suspenseful.", "data_idx": 3708, "number": 1, "label": "blues"} +{"file_name": "test_06072.png", "caption": "The low quality recording features a flat male vocal talking over a classical song that consists of sustained strings melody. It sounds dramatic and suspenseful.", "data_idx": 3708, "number": 2, "label": "blues"} +{"file_name": "test_06073.png", "caption": "The low quality recording features a flat male vocal talking over a classical song that consists of sustained strings melody. It sounds dramatic and suspenseful.", "data_idx": 3708, "number": 3, "label": "blues"} +{"file_name": "test_06074.png", "caption": "The low quality recording features a live performance of a rock song and it consists of flat male vocal singing over arpeggiated electric guitar melody, groovy bass guitar, shimmering hi hats, snappy rimshots and punchy kicks. In the background, there are some crowd singing and crowd cheering noises. It sounds emotional and a bit addictive.", "data_idx": 3709, "number": 0, "label": "rock"} +{"file_name": "test_06075.png", "caption": "The low quality recording features a live performance of a rock song and it consists of flat male vocal singing over arpeggiated electric guitar melody, groovy bass guitar, shimmering hi hats, snappy rimshots and punchy kicks. In the background, there are some crowd singing and crowd cheering noises. It sounds emotional and a bit addictive.", "data_idx": 3709, "number": 1, "label": "rock"} +{"file_name": "test_06076.png", "caption": "This song features a cello being played at the higher pitches. Toward the end, a few wrong notes are played and a scratchy sound is heard. There are no other instruments in this song. There is no voice in this song. This song can be played in a children's animation movie.", "data_idx": 3712, "number": 0, "label": "classical"} +{"file_name": "test_06077.png", "caption": "This song features a cello being played at the higher pitches. Toward the end, a few wrong notes are played and a scratchy sound is heard. There are no other instruments in this song. There is no voice in this song. This song can be played in a children's animation movie.", "data_idx": 3712, "number": 1, "label": "classical"} +{"file_name": "test_06078.png", "caption": "This song features a cello being played at the higher pitches. Toward the end, a few wrong notes are played and a scratchy sound is heard. There are no other instruments in this song. There is no voice in this song. This song can be played in a children's animation movie.", "data_idx": 3712, "number": 2, "label": "classical"} +{"file_name": "test_06079.png", "caption": "This song features a cello being played at the higher pitches. Toward the end, a few wrong notes are played and a scratchy sound is heard. There are no other instruments in this song. There is no voice in this song. This song can be played in a children's animation movie.", "data_idx": 3712, "number": 3, "label": "classical"} +{"file_name": "test_06080.png", "caption": "The low quality recording features a groovy synth keys melody and synth keys bass playing together. It sounds jazzy, funky, boomy and the recording is noisy and in mono. Sounds like something you would hear in jazz bars.", "data_idx": 3713, "number": 0, "label": "reggae"} +{"file_name": "test_06081.png", "caption": "The low quality recording features a groovy synth keys melody and synth keys bass playing together. It sounds jazzy, funky, boomy and the recording is noisy and in mono. Sounds like something you would hear in jazz bars.", "data_idx": 3713, "number": 1, "label": "reggae"} +{"file_name": "test_06082.png", "caption": "The low quality recording features a groovy synth keys melody and synth keys bass playing together. It sounds jazzy, funky, boomy and the recording is noisy and in mono. Sounds like something you would hear in jazz bars.", "data_idx": 3713, "number": 2, "label": "reggae"} +{"file_name": "test_06083.png", "caption": "The low quality recording features a groovy synth keys melody and synth keys bass playing together. It sounds jazzy, funky, boomy and the recording is noisy and in mono. Sounds like something you would hear in jazz bars.", "data_idx": 3713, "number": 3, "label": "reggae"} +{"file_name": "test_06084.png", "caption": "The low quality recording features wide acoustic guitar melodies playing over shimmering hi hats, followed by acoustic bass guitar. It sounds passionate and joyful.", "data_idx": 3717, "number": 0, "label": "blues"} +{"file_name": "test_06085.png", "caption": "The low quality recording features wide acoustic guitar melodies playing over shimmering hi hats, followed by acoustic bass guitar. It sounds passionate and joyful.", "data_idx": 3717, "number": 1, "label": "blues"} +{"file_name": "test_06086.png", "caption": "The low quality recording features wide acoustic guitar melodies playing over shimmering hi hats, followed by acoustic bass guitar. It sounds passionate and joyful.", "data_idx": 3717, "number": 2, "label": "blues"} +{"file_name": "test_06087.png", "caption": "The low quality recording features wide acoustic guitar melodies playing over shimmering hi hats, followed by acoustic bass guitar. It sounds passionate and joyful.", "data_idx": 3717, "number": 3, "label": "blues"} +{"file_name": "test_06088.png", "caption": "Someone is playing a didgeridoo while someone is playing a flute melody in the high-to midrange dropping down in pitch. You can hear something that sounds like percussion but without a steady rhythm. In the background birds are chirping. This song may be playing gathered around a bonfire.", "data_idx": 3720, "number": 0, "label": "hiphop"} +{"file_name": "test_06089.png", "caption": "Someone is playing a didgeridoo while someone is playing a flute melody in the high-to midrange dropping down in pitch. You can hear something that sounds like percussion but without a steady rhythm. In the background birds are chirping. This song may be playing gathered around a bonfire.", "data_idx": 3720, "number": 1, "label": "hiphop"} +{"file_name": "test_06090.png", "caption": "Someone is playing a didgeridoo while someone is playing a flute melody in the high-to midrange dropping down in pitch. You can hear something that sounds like percussion but without a steady rhythm. In the background birds are chirping. This song may be playing gathered around a bonfire.", "data_idx": 3720, "number": 2, "label": "hiphop"} +{"file_name": "test_06091.png", "caption": "Someone is playing a didgeridoo while someone is playing a flute melody in the high-to midrange dropping down in pitch. You can hear something that sounds like percussion but without a steady rhythm. In the background birds are chirping. This song may be playing gathered around a bonfire.", "data_idx": 3720, "number": 3, "label": "hiphop"} +{"file_name": "test_06092.png", "caption": "This song contains digital drums with a kick on every beat and an open hi hat on the backbeat. A synth bass is playing a melody along with an e-bass. A male voice is singing along with a male backing singer. The crowd is cheering and singing along. This is an amateur recording and of poor audio-quality. This song may be playing at a live concert.", "data_idx": 3721, "number": 0, "label": "disco"} +{"file_name": "test_06093.png", "caption": "This song contains digital drums with a kick on every beat and an open hi hat on the backbeat. A synth bass is playing a melody along with an e-bass. A male voice is singing along with a male backing singer. The crowd is cheering and singing along. This is an amateur recording and of poor audio-quality. This song may be playing at a live concert.", "data_idx": 3721, "number": 1, "label": "disco"} +{"file_name": "test_06094.png", "caption": "This song contains digital drums with a kick on every beat and an open hi hat on the backbeat. A synth bass is playing a melody along with an e-bass. A male voice is singing along with a male backing singer. The crowd is cheering and singing along. This is an amateur recording and of poor audio-quality. This song may be playing at a live concert.", "data_idx": 3721, "number": 2, "label": "disco"} +{"file_name": "test_06095.png", "caption": "This song contains digital drums with a kick on every beat and an open hi hat on the backbeat. A synth bass is playing a melody along with an e-bass. A male voice is singing along with a male backing singer. The crowd is cheering and singing along. This is an amateur recording and of poor audio-quality. This song may be playing at a live concert.", "data_idx": 3721, "number": 3, "label": "disco"} +{"file_name": "test_06096.png", "caption": "This music is an energetic instrumental. The tempo is fast with a synthesizer groove followed by instructions in a male voice and with another synthesiser groove. This is a synthesiser, demonstration, review or tutorial on how to add layers to a sound track. The music is energetic, youthful, enthusiastic, high-spirited , funky and pulsating.", "data_idx": 3723, "number": 0, "label": "reggae"} +{"file_name": "test_06097.png", "caption": "This music is an energetic instrumental. The tempo is fast with a synthesizer groove followed by instructions in a male voice and with another synthesiser groove. This is a synthesiser, demonstration, review or tutorial on how to add layers to a sound track. The music is energetic, youthful, enthusiastic, high-spirited , funky and pulsating.", "data_idx": 3723, "number": 1, "label": "reggae"} +{"file_name": "test_06098.png", "caption": "This music is an energetic instrumental. The tempo is fast with a synthesizer groove followed by instructions in a male voice and with another synthesiser groove. This is a synthesiser, demonstration, review or tutorial on how to add layers to a sound track. The music is energetic, youthful, enthusiastic, high-spirited , funky and pulsating.", "data_idx": 3723, "number": 2, "label": "reggae"} +{"file_name": "test_06099.png", "caption": "This music is an energetic instrumental. The tempo is fast with a synthesizer groove followed by instructions in a male voice and with another synthesiser groove. This is a synthesiser, demonstration, review or tutorial on how to add layers to a sound track. The music is energetic, youthful, enthusiastic, high-spirited , funky and pulsating.", "data_idx": 3723, "number": 3, "label": "reggae"} +{"file_name": "test_06100.png", "caption": "This music is an electric guitar instrumental. The tempo is fast with an enthusiastic electric guitar riff with the voice of a man giving instructions. The music is powerful,emphatic, loud, groovy, youthful, skillful and engaging. This clip is an electric guitar lesson/tutorial.", "data_idx": 3726, "number": 0, "label": "hiphop"} +{"file_name": "test_06101.png", "caption": "This music is an electric guitar instrumental. The tempo is fast with an enthusiastic electric guitar riff with the voice of a man giving instructions. The music is powerful,emphatic, loud, groovy, youthful, skillful and engaging. This clip is an electric guitar lesson/tutorial.", "data_idx": 3726, "number": 1, "label": "hiphop"} +{"file_name": "test_06102.png", "caption": "This music is an electric guitar instrumental. The tempo is fast with an enthusiastic electric guitar riff with the voice of a man giving instructions. The music is powerful,emphatic, loud, groovy, youthful, skillful and engaging. This clip is an electric guitar lesson/tutorial.", "data_idx": 3726, "number": 2, "label": "hiphop"} +{"file_name": "test_06103.png", "caption": "This music is an electric guitar instrumental. The tempo is fast with an enthusiastic electric guitar riff with the voice of a man giving instructions. The music is powerful,emphatic, loud, groovy, youthful, skillful and engaging. This clip is an electric guitar lesson/tutorial.", "data_idx": 3726, "number": 3, "label": "hiphop"} +{"file_name": "test_06104.png", "caption": "The low quality recording features a wide electric guitar arpeggiated melody. The recording is noisy and it sounds like some kind of tutorial.", "data_idx": 3727, "number": 0, "label": "jazz"} +{"file_name": "test_06105.png", "caption": "The low quality recording features a wide electric guitar arpeggiated melody. The recording is noisy and it sounds like some kind of tutorial.", "data_idx": 3727, "number": 1, "label": "jazz"} +{"file_name": "test_06106.png", "caption": "The low quality recording features a wide electric guitar arpeggiated melody. The recording is noisy and it sounds like some kind of tutorial.", "data_idx": 3727, "number": 2, "label": "jazz"} +{"file_name": "test_06107.png", "caption": "The low quality recording features a wide electric guitar arpeggiated melody. The recording is noisy and it sounds like some kind of tutorial.", "data_idx": 3727, "number": 3, "label": "jazz"} +{"file_name": "test_06108.png", "caption": "This is a live recording of a quartet. The group consists of upright bass, cello, acoustic guitar and flute. The instrumental has a pop feel to it, with the flute playing the melody.", "data_idx": 3729, "number": 0, "label": "hiphop"} +{"file_name": "test_06109.png", "caption": "This is a live recording of a quartet. The group consists of upright bass, cello, acoustic guitar and flute. The instrumental has a pop feel to it, with the flute playing the melody.", "data_idx": 3729, "number": 1, "label": "hiphop"} +{"file_name": "test_06110.png", "caption": "This song is a crossover of a reggae song with a soul song. This features a male voice singing the main melody. It starts off with the voice which is accompanied by the guitar, bass and percussion playing in the pause between lines. During the pause, a synth sound is played which is modulated by a ring modulator. After the pause, the voice starts the main melody. Trumpets play a melody. The bass and percussion continue to play with a reggae feel. Female backing voices sing vocables. This song is relaxing. This song can be played at the end of a war movie.", "data_idx": 3730, "number": 0, "label": "reggae"} +{"file_name": "test_06111.png", "caption": "This song is a crossover of a reggae song with a soul song. This features a male voice singing the main melody. It starts off with the voice which is accompanied by the guitar, bass and percussion playing in the pause between lines. During the pause, a synth sound is played which is modulated by a ring modulator. After the pause, the voice starts the main melody. Trumpets play a melody. The bass and percussion continue to play with a reggae feel. Female backing voices sing vocables. This song is relaxing. This song can be played at the end of a war movie.", "data_idx": 3730, "number": 1, "label": "reggae"} +{"file_name": "test_06112.png", "caption": "This song is a crossover of a reggae song with a soul song. This features a male voice singing the main melody. It starts off with the voice which is accompanied by the guitar, bass and percussion playing in the pause between lines. During the pause, a synth sound is played which is modulated by a ring modulator. After the pause, the voice starts the main melody. Trumpets play a melody. The bass and percussion continue to play with a reggae feel. Female backing voices sing vocables. This song is relaxing. This song can be played at the end of a war movie.", "data_idx": 3730, "number": 2, "label": "reggae"} +{"file_name": "test_06113.png", "caption": "This song is a crossover of a reggae song with a soul song. This features a male voice singing the main melody. It starts off with the voice which is accompanied by the guitar, bass and percussion playing in the pause between lines. During the pause, a synth sound is played which is modulated by a ring modulator. After the pause, the voice starts the main melody. Trumpets play a melody. The bass and percussion continue to play with a reggae feel. Female backing voices sing vocables. This song is relaxing. This song can be played at the end of a war movie.", "data_idx": 3730, "number": 3, "label": "reggae"} +{"file_name": "test_06114.png", "caption": "This is a classical music piece. The french horn is playing the main melody in a gentle manner. In the meantime, the piano is playing a backing tune. There is a serene atmosphere to this piece. This music could go well in the soundtrack of a still life TV series. It could also be playing in the background at a classy restaurant.", "data_idx": 3732, "number": 0, "label": "hiphop"} +{"file_name": "test_06115.png", "caption": "This is a classical music piece. The french horn is playing the main melody in a gentle manner. In the meantime, the piano is playing a backing tune. There is a serene atmosphere to this piece. This music could go well in the soundtrack of a still life TV series. It could also be playing in the background at a classy restaurant.", "data_idx": 3732, "number": 1, "label": "hiphop"} +{"file_name": "test_06116.png", "caption": "This is a classical music piece. The french horn is playing the main melody in a gentle manner. In the meantime, the piano is playing a backing tune. There is a serene atmosphere to this piece. This music could go well in the soundtrack of a still life TV series. It could also be playing in the background at a classy restaurant.", "data_idx": 3732, "number": 2, "label": "hiphop"} +{"file_name": "test_06117.png", "caption": "This is a classical music piece. The french horn is playing the main melody in a gentle manner. In the meantime, the piano is playing a backing tune. There is a serene atmosphere to this piece. This music could go well in the soundtrack of a still life TV series. It could also be playing in the background at a classy restaurant.", "data_idx": 3732, "number": 3, "label": "hiphop"} +{"file_name": "test_06118.png", "caption": "The low quality recording features a short snippet of breathy flute melody at the beginning of the loop, followed by birds chirping and water flowing sounds, due to the fact that it was recorded outdoors. The recording is noisy and in mono.", "data_idx": 3734, "number": 0, "label": "classical"} +{"file_name": "test_06119.png", "caption": "The low quality recording features a short snippet of breathy flute melody at the beginning of the loop, followed by birds chirping and water flowing sounds, due to the fact that it was recorded outdoors. The recording is noisy and in mono.", "data_idx": 3734, "number": 1, "label": "classical"} +{"file_name": "test_06120.png", "caption": "The low quality recording features a short snippet of breathy flute melody at the beginning of the loop, followed by birds chirping and water flowing sounds, due to the fact that it was recorded outdoors. The recording is noisy and in mono.", "data_idx": 3734, "number": 2, "label": "classical"} +{"file_name": "test_06121.png", "caption": "The low quality recording features a short snippet of breathy flute melody at the beginning of the loop, followed by birds chirping and water flowing sounds, due to the fact that it was recorded outdoors. The recording is noisy and in mono.", "data_idx": 3734, "number": 3, "label": "classical"} +{"file_name": "test_06122.png", "caption": "This reggae song features a male voice singing the main melody. This is accompanied by percussion playing a reggae beat. The bass plays a single note on the fourth count of each bar. There are no other instruments in this song. This song can be played in a club as a dance song.", "data_idx": 3738, "number": 0, "label": "hiphop"} +{"file_name": "test_06123.png", "caption": "This reggae song features a male voice singing the main melody. This is accompanied by percussion playing a reggae beat. The bass plays a single note on the fourth count of each bar. There are no other instruments in this song. This song can be played in a club as a dance song.", "data_idx": 3738, "number": 1, "label": "hiphop"} +{"file_name": "test_06124.png", "caption": "The song is an instrumental. The tempo is medium with footstep like percussion, mysterious bell tones, tremolo effects, string section harmony, crescendoing tones and various percussion hits. The song is suspenseful and ominous. The song is a movie soundtrack with bad audio quality.", "data_idx": 3739, "number": 0, "label": "classical"} +{"file_name": "test_06125.png", "caption": "The song is an instrumental. The tempo is medium with footstep like percussion, mysterious bell tones, tremolo effects, string section harmony, crescendoing tones and various percussion hits. The song is suspenseful and ominous. The song is a movie soundtrack with bad audio quality.", "data_idx": 3739, "number": 1, "label": "classical"} +{"file_name": "test_06126.png", "caption": "The song is an instrumental. The tempo is medium with footstep like percussion, mysterious bell tones, tremolo effects, string section harmony, crescendoing tones and various percussion hits. The song is suspenseful and ominous. The song is a movie soundtrack with bad audio quality.", "data_idx": 3739, "number": 2, "label": "classical"} +{"file_name": "test_06127.png", "caption": "The song is an instrumental. The tempo is medium with footstep like percussion, mysterious bell tones, tremolo effects, string section harmony, crescendoing tones and various percussion hits. The song is suspenseful and ominous. The song is a movie soundtrack with bad audio quality.", "data_idx": 3739, "number": 3, "label": "classical"} +{"file_name": "test_06128.png", "caption": "This country song features a male voice singing in a Southern accent. The main melody is a typical country melody. This is accompanied by a violin playing backing notes. The guitar strums chords. The double bass plays the root note and lower fifth of the chords. This song has a happy mood. At the end, there are multiple male voices singing one word together. This song can be played in a happy Country Western movie.", "data_idx": 3743, "number": 0, "label": "blues"} +{"file_name": "test_06129.png", "caption": "This country song features a male voice singing in a Southern accent. The main melody is a typical country melody. This is accompanied by a violin playing backing notes. The guitar strums chords. The double bass plays the root note and lower fifth of the chords. This song has a happy mood. At the end, there are multiple male voices singing one word together. This song can be played in a happy Country Western movie.", "data_idx": 3743, "number": 1, "label": "blues"} +{"file_name": "test_06130.png", "caption": "This country song features a male voice singing in a Southern accent. The main melody is a typical country melody. This is accompanied by a violin playing backing notes. The guitar strums chords. The double bass plays the root note and lower fifth of the chords. This song has a happy mood. At the end, there are multiple male voices singing one word together. This song can be played in a happy Country Western movie.", "data_idx": 3743, "number": 2, "label": "blues"} +{"file_name": "test_06131.png", "caption": "This country song features a male voice singing in a Southern accent. The main melody is a typical country melody. This is accompanied by a violin playing backing notes. The guitar strums chords. The double bass plays the root note and lower fifth of the chords. This song has a happy mood. At the end, there are multiple male voices singing one word together. This song can be played in a happy Country Western movie.", "data_idx": 3743, "number": 3, "label": "blues"} +{"file_name": "test_06132.png", "caption": "This pop song features a male voice singing the main melody. Other voices sing backing vocals using the same melody. This is accompanied by programmed percussion playing a dance beat. A wave synth plays a repetitive melody. The bass plays the root notes of the chords. Toward the end of the song, a tabla is played. The mood of this song is happy. This song can be played in a club as a dance song.", "data_idx": 3750, "number": 0, "label": "metal"} +{"file_name": "test_06133.png", "caption": "This pop song features a male voice singing the main melody. Other voices sing backing vocals using the same melody. This is accompanied by programmed percussion playing a dance beat. A wave synth plays a repetitive melody. The bass plays the root notes of the chords. Toward the end of the song, a tabla is played. The mood of this song is happy. This song can be played in a club as a dance song.", "data_idx": 3750, "number": 1, "label": "metal"} +{"file_name": "test_06134.png", "caption": "This pop song features a male voice singing the main melody. Other voices sing backing vocals using the same melody. This is accompanied by programmed percussion playing a dance beat. A wave synth plays a repetitive melody. The bass plays the root notes of the chords. Toward the end of the song, a tabla is played. The mood of this song is happy. This song can be played in a club as a dance song.", "data_idx": 3750, "number": 2, "label": "metal"} +{"file_name": "test_06135.png", "caption": "This pop song features a male voice singing the main melody. Other voices sing backing vocals using the same melody. This is accompanied by programmed percussion playing a dance beat. A wave synth plays a repetitive melody. The bass plays the root notes of the chords. Toward the end of the song, a tabla is played. The mood of this song is happy. This song can be played in a club as a dance song.", "data_idx": 3750, "number": 3, "label": "metal"} +{"file_name": "test_06136.png", "caption": "This is a live recording. We hear a set of Indian bagpipes, otherwise known as mashak, playing a complex motif. There are two singers doing open-mouthed humming in contrasting high and low pitches simultaneously. We hear the applause and cheering of a crowd as well. At the beginning, a male speaker and female speaker each make some comments in a South Asian language.", "data_idx": 3751, "number": 0, "label": "country"} +{"file_name": "test_06137.png", "caption": "This is a live recording. We hear a set of Indian bagpipes, otherwise known as mashak, playing a complex motif. There are two singers doing open-mouthed humming in contrasting high and low pitches simultaneously. We hear the applause and cheering of a crowd as well. At the beginning, a male speaker and female speaker each make some comments in a South Asian language.", "data_idx": 3751, "number": 1, "label": "country"} +{"file_name": "test_06138.png", "caption": "This is a live recording. We hear a set of Indian bagpipes, otherwise known as mashak, playing a complex motif. There are two singers doing open-mouthed humming in contrasting high and low pitches simultaneously. We hear the applause and cheering of a crowd as well. At the beginning, a male speaker and female speaker each make some comments in a South Asian language.", "data_idx": 3751, "number": 2, "label": "country"} +{"file_name": "test_06139.png", "caption": "This is a live recording. We hear a set of Indian bagpipes, otherwise known as mashak, playing a complex motif. There are two singers doing open-mouthed humming in contrasting high and low pitches simultaneously. We hear the applause and cheering of a crowd as well. At the beginning, a male speaker and female speaker each make some comments in a South Asian language.", "data_idx": 3751, "number": 3, "label": "country"} +{"file_name": "test_06140.png", "caption": "This is an instrumental percussion piece recording. There is a drummer playing rudiments in rapid procession on a practice pad. A loud metronome beep can be heard close by. This piece could be used in rudimentary education during drum lessons.", "data_idx": 3752, "number": 0, "label": "reggae"} +{"file_name": "test_06141.png", "caption": "This is an instrumental percussion piece recording. There is a drummer playing rudiments in rapid procession on a practice pad. A loud metronome beep can be heard close by. This piece could be used in rudimentary education during drum lessons.", "data_idx": 3752, "number": 1, "label": "reggae"} +{"file_name": "test_06142.png", "caption": "A male vocalist sings this upbeat retro song. The tempo is medium with an infectious electronic guitar, hard hitting drums, rhythmic acoustic guitar and funky bass. The song is rhythmic, groovy, upbeat, catchy, and energetic. This song is Retro Rock and Roll.", "data_idx": 3757, "number": 0, "label": "blues"} +{"file_name": "test_06143.png", "caption": "A male vocalist sings this upbeat retro song. The tempo is medium with an infectious electronic guitar, hard hitting drums, rhythmic acoustic guitar and funky bass. The song is rhythmic, groovy, upbeat, catchy, and energetic. This song is Retro Rock and Roll.", "data_idx": 3757, "number": 1, "label": "blues"} +{"file_name": "test_06144.png", "caption": "A male vocalist sings this upbeat retro song. The tempo is medium with an infectious electronic guitar, hard hitting drums, rhythmic acoustic guitar and funky bass. The song is rhythmic, groovy, upbeat, catchy, and energetic. This song is Retro Rock and Roll.", "data_idx": 3757, "number": 2, "label": "blues"} +{"file_name": "test_06145.png", "caption": "A male vocalist sings this upbeat retro song. The tempo is medium with an infectious electronic guitar, hard hitting drums, rhythmic acoustic guitar and funky bass. The song is rhythmic, groovy, upbeat, catchy, and energetic. This song is Retro Rock and Roll.", "data_idx": 3757, "number": 3, "label": "blues"} +{"file_name": "test_06146.png", "caption": "The low quality recording features a fruity male vocal singing over steel drums melody, electric guitar melody, brass stabs, punchy kick and snare hits, energetic crash cymbal, groovy bass, shimmering shakers and sustained organ keys chord. It sounds joyful, happy and exciting.", "data_idx": 3761, "number": 0, "label": "disco"} +{"file_name": "test_06147.png", "caption": "The low quality recording features a fruity male vocal singing over steel drums melody, electric guitar melody, brass stabs, punchy kick and snare hits, energetic crash cymbal, groovy bass, shimmering shakers and sustained organ keys chord. It sounds joyful, happy and exciting.", "data_idx": 3761, "number": 1, "label": "disco"} +{"file_name": "test_06148.png", "caption": "The low quality recording features a fruity male vocal singing over steel drums melody, electric guitar melody, brass stabs, punchy kick and snare hits, energetic crash cymbal, groovy bass, shimmering shakers and sustained organ keys chord. It sounds joyful, happy and exciting.", "data_idx": 3761, "number": 2, "label": "disco"} +{"file_name": "test_06149.png", "caption": "The low quality recording features a fruity male vocal singing over steel drums melody, electric guitar melody, brass stabs, punchy kick and snare hits, energetic crash cymbal, groovy bass, shimmering shakers and sustained organ keys chord. It sounds joyful, happy and exciting.", "data_idx": 3761, "number": 3, "label": "disco"} +{"file_name": "test_06150.png", "caption": "The song is an instrumental. The tempo is medium with different sized bells played with gongs producing various tones with vibrato and echo effects. The sounds are very meditational and therapeutic in nature. The audio quality is bad.", "data_idx": 3762, "number": 0, "label": "classical"} +{"file_name": "test_06151.png", "caption": "The song is an instrumental. The tempo is medium with different sized bells played with gongs producing various tones with vibrato and echo effects. The sounds are very meditational and therapeutic in nature. The audio quality is bad.", "data_idx": 3762, "number": 1, "label": "classical"} +{"file_name": "test_06152.png", "caption": "The song is an instrumental. The tempo is medium with different sized bells played with gongs producing various tones with vibrato and echo effects. The sounds are very meditational and therapeutic in nature. The audio quality is bad.", "data_idx": 3762, "number": 2, "label": "classical"} +{"file_name": "test_06153.png", "caption": "The song is an instrumental. The tempo is medium with different sized bells played with gongs producing various tones with vibrato and echo effects. The sounds are very meditational and therapeutic in nature. The audio quality is bad.", "data_idx": 3762, "number": 3, "label": "classical"} +{"file_name": "test_06154.png", "caption": "This is a metalcore/post-hardcore music piece. There is a male vocal singing using the vocal fry technique. A distant piano melody can be heard. There is an electronic drum beat with a heavy reverb effect. Later on, a string sound starts playing and adds texture to the melodic background. The atmosphere is dramatic and rebellious. This piece can be used in the soundtrack of a teenage drama movie, especially where one of the characters is experiencing a breaking point.", "data_idx": 3763, "number": 0, "label": "metal"} +{"file_name": "test_06155.png", "caption": "This is a metalcore/post-hardcore music piece. There is a male vocal singing using the vocal fry technique. A distant piano melody can be heard. There is an electronic drum beat with a heavy reverb effect. Later on, a string sound starts playing and adds texture to the melodic background. The atmosphere is dramatic and rebellious. This piece can be used in the soundtrack of a teenage drama movie, especially where one of the characters is experiencing a breaking point.", "data_idx": 3763, "number": 1, "label": "metal"} +{"file_name": "test_06156.png", "caption": "This is a metalcore/post-hardcore music piece. There is a male vocal singing using the vocal fry technique. A distant piano melody can be heard. There is an electronic drum beat with a heavy reverb effect. Later on, a string sound starts playing and adds texture to the melodic background. The atmosphere is dramatic and rebellious. This piece can be used in the soundtrack of a teenage drama movie, especially where one of the characters is experiencing a breaking point.", "data_idx": 3763, "number": 2, "label": "metal"} +{"file_name": "test_06157.png", "caption": "This is a metalcore/post-hardcore music piece. There is a male vocal singing using the vocal fry technique. A distant piano melody can be heard. There is an electronic drum beat with a heavy reverb effect. Later on, a string sound starts playing and adds texture to the melodic background. The atmosphere is dramatic and rebellious. This piece can be used in the soundtrack of a teenage drama movie, especially where one of the characters is experiencing a breaking point.", "data_idx": 3763, "number": 3, "label": "metal"} +{"file_name": "test_06158.png", "caption": "The song is an instrumental. The song is slow tempo with an organist playing a tune on a church organ and sounds of switches being turned on and off. The song is emotional and sounds devotional in nature. The audio quality is poor with ambient room sounds.", "data_idx": 3765, "number": 0, "label": "jazz"} +{"file_name": "test_06159.png", "caption": "The song is an instrumental. The song is slow tempo with an organist playing a tune on a church organ and sounds of switches being turned on and off. The song is emotional and sounds devotional in nature. The audio quality is poor with ambient room sounds.", "data_idx": 3765, "number": 1, "label": "jazz"} +{"file_name": "test_06160.png", "caption": "The song is an instrumental. The song is slow tempo with an organist playing a tune on a church organ and sounds of switches being turned on and off. The song is emotional and sounds devotional in nature. The audio quality is poor with ambient room sounds.", "data_idx": 3765, "number": 2, "label": "jazz"} +{"file_name": "test_06161.png", "caption": "The song is an instrumental. The song is slow tempo with an organist playing a tune on a church organ and sounds of switches being turned on and off. The song is emotional and sounds devotional in nature. The audio quality is poor with ambient room sounds.", "data_idx": 3765, "number": 3, "label": "jazz"} +{"file_name": "test_06162.png", "caption": "This song contains acoustic drums playing together with an e-bass. An accordion is playing the main melody together with a flute playing in a higher register. This song may be playing while waiting in line for a phone call.", "data_idx": 3768, "number": 0, "label": "classical"} +{"file_name": "test_06163.png", "caption": "This song contains acoustic drums playing together with an e-bass. An accordion is playing the main melody together with a flute playing in a higher register. This song may be playing while waiting in line for a phone call.", "data_idx": 3768, "number": 1, "label": "classical"} +{"file_name": "test_06164.png", "caption": "This song contains acoustic drums playing together with an e-bass. An accordion is playing the main melody together with a flute playing in a higher register. This song may be playing while waiting in line for a phone call.", "data_idx": 3768, "number": 2, "label": "classical"} +{"file_name": "test_06165.png", "caption": "This song contains acoustic drums playing together with an e-bass. An accordion is playing the main melody together with a flute playing in a higher register. This song may be playing while waiting in line for a phone call.", "data_idx": 3768, "number": 3, "label": "classical"} +{"file_name": "test_06166.png", "caption": "A male Russian singer sings this rap vocals with a female backup singer in vocal harmony. The song is fast tempo with techno drumming rhythm, percussive bass line, keyboard accompaniment and sonic effects. The song is a techno dance hit. The audio quality is poor.", "data_idx": 3769, "number": 0, "label": "hiphop"} +{"file_name": "test_06167.png", "caption": "A male Russian singer sings this rap vocals with a female backup singer in vocal harmony. The song is fast tempo with techno drumming rhythm, percussive bass line, keyboard accompaniment and sonic effects. The song is a techno dance hit. The audio quality is poor.", "data_idx": 3769, "number": 1, "label": "hiphop"} +{"file_name": "test_06168.png", "caption": "A male Russian singer sings this rap vocals with a female backup singer in vocal harmony. The song is fast tempo with techno drumming rhythm, percussive bass line, keyboard accompaniment and sonic effects. The song is a techno dance hit. The audio quality is poor.", "data_idx": 3769, "number": 2, "label": "hiphop"} +{"file_name": "test_06169.png", "caption": "A male Russian singer sings this rap vocals with a female backup singer in vocal harmony. The song is fast tempo with techno drumming rhythm, percussive bass line, keyboard accompaniment and sonic effects. The song is a techno dance hit. The audio quality is poor.", "data_idx": 3769, "number": 3, "label": "hiphop"} +{"file_name": "test_06170.png", "caption": "A female singer sings in a huge arena live along with crowds singing along with her in vocals. The song is medium tempo with steady drumming rhyme and giant drum rolls, violin playing solo, a brass band section and orchestra playing along. The song is energetic, cheerful and highly popular. The audio quality is very poor with heavy ambient crowd noises.", "data_idx": 3771, "number": 0, "label": "classical"} +{"file_name": "test_06171.png", "caption": "A female singer sings in a huge arena live along with crowds singing along with her in vocals. The song is medium tempo with steady drumming rhyme and giant drum rolls, violin playing solo, a brass band section and orchestra playing along. The song is energetic, cheerful and highly popular. The audio quality is very poor with heavy ambient crowd noises.", "data_idx": 3771, "number": 1, "label": "classical"} +{"file_name": "test_06172.png", "caption": "A female singer sings in a huge arena live along with crowds singing along with her in vocals. The song is medium tempo with steady drumming rhyme and giant drum rolls, violin playing solo, a brass band section and orchestra playing along. The song is energetic, cheerful and highly popular. The audio quality is very poor with heavy ambient crowd noises.", "data_idx": 3771, "number": 2, "label": "classical"} +{"file_name": "test_06173.png", "caption": "A female singer sings in a huge arena live along with crowds singing along with her in vocals. The song is medium tempo with steady drumming rhyme and giant drum rolls, violin playing solo, a brass band section and orchestra playing along. The song is energetic, cheerful and highly popular. The audio quality is very poor with heavy ambient crowd noises.", "data_idx": 3771, "number": 3, "label": "classical"} +{"file_name": "test_06174.png", "caption": "A male vocalist sings this lively African song. The tempo is fast with synthesiser arrangements, bright drumming and African percussive instruments. This song is a happy, cheerful, colourful, infectious ,captivating Nigerian Music.", "data_idx": 3774, "number": 0, "label": "disco"} +{"file_name": "test_06175.png", "caption": "A male vocalist sings this lively African song. The tempo is fast with synthesiser arrangements, bright drumming and African percussive instruments. This song is a happy, cheerful, colourful, infectious ,captivating Nigerian Music.", "data_idx": 3774, "number": 1, "label": "disco"} +{"file_name": "test_06176.png", "caption": "A male vocalist sings this lively African song. The tempo is fast with synthesiser arrangements, bright drumming and African percussive instruments. This song is a happy, cheerful, colourful, infectious ,captivating Nigerian Music.", "data_idx": 3774, "number": 2, "label": "disco"} +{"file_name": "test_06177.png", "caption": "A male vocalist sings this lively African song. The tempo is fast with synthesiser arrangements, bright drumming and African percussive instruments. This song is a happy, cheerful, colourful, infectious ,captivating Nigerian Music.", "data_idx": 3774, "number": 3, "label": "disco"} +{"file_name": "test_06178.png", "caption": "The low quality recording features muffled gunshots over a wide, low synth pad, reversed crash cymbal and haunting male vocals. It sounds suspenseful, intense and dramatic.", "data_idx": 3777, "number": 0, "label": "classical"} +{"file_name": "test_06179.png", "caption": "The low quality recording features muffled gunshots over a wide, low synth pad, reversed crash cymbal and haunting male vocals. It sounds suspenseful, intense and dramatic.", "data_idx": 3777, "number": 1, "label": "classical"} +{"file_name": "test_06180.png", "caption": "The low quality recording features muffled gunshots over a wide, low synth pad, reversed crash cymbal and haunting male vocals. It sounds suspenseful, intense and dramatic.", "data_idx": 3777, "number": 2, "label": "classical"} +{"file_name": "test_06181.png", "caption": "The low quality recording features muffled gunshots over a wide, low synth pad, reversed crash cymbal and haunting male vocals. It sounds suspenseful, intense and dramatic.", "data_idx": 3777, "number": 3, "label": "classical"} +{"file_name": "test_06182.png", "caption": "This audio contains someone playing a theremin. Playing around with the pitch. This may be playing in a comedic act.", "data_idx": 3780, "number": 0, "label": "hiphop"} +{"file_name": "test_06183.png", "caption": "This audio contains someone playing a theremin. Playing around with the pitch. This may be playing in a comedic act.", "data_idx": 3780, "number": 1, "label": "hiphop"} +{"file_name": "test_06184.png", "caption": "This audio contains someone playing a theremin. Playing around with the pitch. This may be playing in a comedic act.", "data_idx": 3780, "number": 2, "label": "hiphop"} +{"file_name": "test_06185.png", "caption": "This audio contains someone playing a theremin. Playing around with the pitch. This may be playing in a comedic act.", "data_idx": 3780, "number": 3, "label": "hiphop"} +{"file_name": "test_06186.png", "caption": "E-guitars are fingerpicking two different melodies in an arpeggio fashion while another distorted e-guitar is playing the main melody along with a -ebass breaking into the next part with the drums playing a loud groove with toms and crash cymbals. Before that part a male voice was talking before breaking into loud screaming in a deeper voice. This song may be playing live at a rock concert.", "data_idx": 3782, "number": 0, "label": "metal"} +{"file_name": "test_06187.png", "caption": "E-guitars are fingerpicking two different melodies in an arpeggio fashion while another distorted e-guitar is playing the main melody along with a -ebass breaking into the next part with the drums playing a loud groove with toms and crash cymbals. Before that part a male voice was talking before breaking into loud screaming in a deeper voice. This song may be playing live at a rock concert.", "data_idx": 3782, "number": 1, "label": "metal"} +{"file_name": "test_06188.png", "caption": "E-guitars are fingerpicking two different melodies in an arpeggio fashion while another distorted e-guitar is playing the main melody along with a -ebass breaking into the next part with the drums playing a loud groove with toms and crash cymbals. Before that part a male voice was talking before breaking into loud screaming in a deeper voice. This song may be playing live at a rock concert.", "data_idx": 3782, "number": 2, "label": "metal"} +{"file_name": "test_06189.png", "caption": "E-guitars are fingerpicking two different melodies in an arpeggio fashion while another distorted e-guitar is playing the main melody along with a -ebass breaking into the next part with the drums playing a loud groove with toms and crash cymbals. Before that part a male voice was talking before breaking into loud screaming in a deeper voice. This song may be playing live at a rock concert.", "data_idx": 3782, "number": 3, "label": "metal"} +{"file_name": "test_06190.png", "caption": "The low quality recording features a live performance of a classical song and it consists of sustained cello melody played over passionate piano melody, after which there is a plucked cello melody. It sounds emotional and passionate.", "data_idx": 3784, "number": 0, "label": "classical"} +{"file_name": "test_06191.png", "caption": "The low quality recording features a live performance of a classical song and it consists of sustained cello melody played over passionate piano melody, after which there is a plucked cello melody. It sounds emotional and passionate.", "data_idx": 3784, "number": 1, "label": "classical"} +{"file_name": "test_06192.png", "caption": "The low quality recording features a live performance of a classical song and it consists of sustained cello melody played over passionate piano melody, after which there is a plucked cello melody. It sounds emotional and passionate.", "data_idx": 3784, "number": 2, "label": "classical"} +{"file_name": "test_06193.png", "caption": "The low quality recording features a live performance of a classical song and it consists of sustained cello melody played over passionate piano melody, after which there is a plucked cello melody. It sounds emotional and passionate.", "data_idx": 3784, "number": 3, "label": "classical"} +{"file_name": "test_06194.png", "caption": "This music is instrumental. The tempo is slow with an Oud solo. The music is minimalist, simple, melancholic, nostalgic, emotional, wistful, pensive; poignant and intense. This is Middle Eastern classical music.", "data_idx": 3787, "number": 0, "label": "classical"} +{"file_name": "test_06195.png", "caption": "This music is instrumental. The tempo is slow with an Oud solo. The music is minimalist, simple, melancholic, nostalgic, emotional, wistful, pensive; poignant and intense. This is Middle Eastern classical music.", "data_idx": 3787, "number": 1, "label": "classical"} +{"file_name": "test_06196.png", "caption": "This music is instrumental. The tempo is slow with an Oud solo. The music is minimalist, simple, melancholic, nostalgic, emotional, wistful, pensive; poignant and intense. This is Middle Eastern classical music.", "data_idx": 3787, "number": 2, "label": "classical"} +{"file_name": "test_06197.png", "caption": "This music is instrumental. The tempo is slow with an Oud solo. The music is minimalist, simple, melancholic, nostalgic, emotional, wistful, pensive; poignant and intense. This is Middle Eastern classical music.", "data_idx": 3787, "number": 3, "label": "classical"} +{"file_name": "test_06198.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over punchy snare and kick hits and shimmering cymbals. It sounds energetic and exciting.", "data_idx": 3788, "number": 0, "label": "metal"} +{"file_name": "test_06199.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over punchy snare and kick hits and shimmering cymbals. It sounds energetic and exciting.", "data_idx": 3788, "number": 1, "label": "metal"} +{"file_name": "test_06200.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over punchy snare and kick hits and shimmering cymbals. It sounds energetic and exciting.", "data_idx": 3788, "number": 2, "label": "metal"} +{"file_name": "test_06201.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over punchy snare and kick hits and shimmering cymbals. It sounds energetic and exciting.", "data_idx": 3788, "number": 3, "label": "metal"} +{"file_name": "test_06202.png", "caption": "This song features a flute playing the main melody. The flute plays staccato notes and allows only the last note to be sustained. This is accompanied by a cello playing the same melody in the lower register. There are no voices in this song. This song is an instrumental. This folk song features no other instruments. This song can be played in an animation movie featuring fairies.", "data_idx": 3792, "number": 0, "label": "classical"} +{"file_name": "test_06203.png", "caption": "This song features a flute playing the main melody. The flute plays staccato notes and allows only the last note to be sustained. This is accompanied by a cello playing the same melody in the lower register. There are no voices in this song. This song is an instrumental. This folk song features no other instruments. This song can be played in an animation movie featuring fairies.", "data_idx": 3792, "number": 1, "label": "classical"} +{"file_name": "test_06204.png", "caption": "This song features a flute playing the main melody. The flute plays staccato notes and allows only the last note to be sustained. This is accompanied by a cello playing the same melody in the lower register. There are no voices in this song. This song is an instrumental. This folk song features no other instruments. This song can be played in an animation movie featuring fairies.", "data_idx": 3792, "number": 2, "label": "classical"} +{"file_name": "test_06205.png", "caption": "This song features a flute playing the main melody. The flute plays staccato notes and allows only the last note to be sustained. This is accompanied by a cello playing the same melody in the lower register. There are no voices in this song. This song is an instrumental. This folk song features no other instruments. This song can be played in an animation movie featuring fairies.", "data_idx": 3792, "number": 3, "label": "classical"} +{"file_name": "test_06206.png", "caption": "This music is instrumental. The tempo is fast with a spirited didgeridoo harmony. The music is droning, rhythmic, deep and rich with the rhythmic tapping /clapping. This is street busking with ambient sounds of people talking, bicycle bells and feet scuffling. The music is droning, hypnotic, meditative, trance and engaging.", "data_idx": 3795, "number": 0, "label": "classical"} +{"file_name": "test_06207.png", "caption": "This music is instrumental. The tempo is fast with a spirited didgeridoo harmony. The music is droning, rhythmic, deep and rich with the rhythmic tapping /clapping. This is street busking with ambient sounds of people talking, bicycle bells and feet scuffling. The music is droning, hypnotic, meditative, trance and engaging.", "data_idx": 3795, "number": 1, "label": "classical"} +{"file_name": "test_06208.png", "caption": "This music is instrumental. The tempo is fast with a spirited didgeridoo harmony. The music is droning, rhythmic, deep and rich with the rhythmic tapping /clapping. This is street busking with ambient sounds of people talking, bicycle bells and feet scuffling. The music is droning, hypnotic, meditative, trance and engaging.", "data_idx": 3795, "number": 2, "label": "classical"} +{"file_name": "test_06209.png", "caption": "This music is instrumental. The tempo is fast with a spirited didgeridoo harmony. The music is droning, rhythmic, deep and rich with the rhythmic tapping /clapping. This is street busking with ambient sounds of people talking, bicycle bells and feet scuffling. The music is droning, hypnotic, meditative, trance and engaging.", "data_idx": 3795, "number": 3, "label": "classical"} +{"file_name": "test_06210.png", "caption": "This is an ominous, haunting, mysterious track which would do well in a horror movie or game. There's a chilling piano motif, some knocking sounds and a low sustained synth that almost sounds like orchestral cello.", "data_idx": 3796, "number": 0, "label": "reggae"} +{"file_name": "test_06211.png", "caption": "This is an ominous, haunting, mysterious track which would do well in a horror movie or game. There's a chilling piano motif, some knocking sounds and a low sustained synth that almost sounds like orchestral cello.", "data_idx": 3796, "number": 1, "label": "reggae"} +{"file_name": "test_06212.png", "caption": "This is an ominous, haunting, mysterious track which would do well in a horror movie or game. There's a chilling piano motif, some knocking sounds and a low sustained synth that almost sounds like orchestral cello.", "data_idx": 3796, "number": 2, "label": "reggae"} +{"file_name": "test_06213.png", "caption": "This is an ominous, haunting, mysterious track which would do well in a horror movie or game. There's a chilling piano motif, some knocking sounds and a low sustained synth that almost sounds like orchestral cello.", "data_idx": 3796, "number": 3, "label": "reggae"} diff --git a/data/test/metadata_0014.jsonl b/data/test/metadata_0014.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..788026d53d29912e49934f1d0f51c7a6cae6d95c --- /dev/null +++ b/data/test/metadata_0014.jsonl @@ -0,0 +1,304 @@ +{"file_name": "test_06214.png", "caption": "This is a Vedic music piece. There are female vocals singing in a devotional manner. There is a veena playing a repeated theme for the melody. The rhythmic background is being provided by the tabla. The atmosphere is religious. This piece could be playing in the background at Hindu religious events.", "data_idx": 3800, "number": 0, "label": "reggae"} +{"file_name": "test_06215.png", "caption": "This is a Vedic music piece. There are female vocals singing in a devotional manner. There is a veena playing a repeated theme for the melody. The rhythmic background is being provided by the tabla. The atmosphere is religious. This piece could be playing in the background at Hindu religious events.", "data_idx": 3800, "number": 1, "label": "reggae"} +{"file_name": "test_06216.png", "caption": "This is a Vedic music piece. There are female vocals singing in a devotional manner. There is a veena playing a repeated theme for the melody. The rhythmic background is being provided by the tabla. The atmosphere is religious. This piece could be playing in the background at Hindu religious events.", "data_idx": 3800, "number": 2, "label": "reggae"} +{"file_name": "test_06217.png", "caption": "This is a Vedic music piece. There are female vocals singing in a devotional manner. There is a veena playing a repeated theme for the melody. The rhythmic background is being provided by the tabla. The atmosphere is religious. This piece could be playing in the background at Hindu religious events.", "data_idx": 3800, "number": 3, "label": "reggae"} +{"file_name": "test_06218.png", "caption": "This music is instrumental. The tempo is slow and steady with a droning monotone , crystal bowl harmony. The sound is sharp, repetitive, incessant, relaxing, trance, therapeutic , hypnotic vibrations used in meditation or sound healing/therapy.", "data_idx": 3801, "number": 0, "label": "hiphop"} +{"file_name": "test_06219.png", "caption": "This music is instrumental. The tempo is slow and steady with a droning monotone , crystal bowl harmony. The sound is sharp, repetitive, incessant, relaxing, trance, therapeutic , hypnotic vibrations used in meditation or sound healing/therapy.", "data_idx": 3801, "number": 1, "label": "hiphop"} +{"file_name": "test_06220.png", "caption": "This music is instrumental. The tempo is slow and steady with a droning monotone , crystal bowl harmony. The sound is sharp, repetitive, incessant, relaxing, trance, therapeutic , hypnotic vibrations used in meditation or sound healing/therapy.", "data_idx": 3801, "number": 2, "label": "hiphop"} +{"file_name": "test_06221.png", "caption": "This music is instrumental. The tempo is slow and steady with a droning monotone , crystal bowl harmony. The sound is sharp, repetitive, incessant, relaxing, trance, therapeutic , hypnotic vibrations used in meditation or sound healing/therapy.", "data_idx": 3801, "number": 3, "label": "hiphop"} +{"file_name": "test_06222.png", "caption": "The song is an instrumental. The tempo is medium with a DJ creating cool rhythmic structures; groovy drum rhythm, percussion hits, grunge tones and staccato notes. The song is exciting and energetic. The song is a techno dance tune.", "data_idx": 3807, "number": 0, "label": "hiphop"} +{"file_name": "test_06223.png", "caption": "The song is an instrumental. The tempo is medium with a DJ creating cool rhythmic structures; groovy drum rhythm, percussion hits, grunge tones and staccato notes. The song is exciting and energetic. The song is a techno dance tune.", "data_idx": 3807, "number": 1, "label": "hiphop"} +{"file_name": "test_06224.png", "caption": "The song is an instrumental. The tempo is medium with a DJ creating cool rhythmic structures; groovy drum rhythm, percussion hits, grunge tones and staccato notes. The song is exciting and energetic. The song is a techno dance tune.", "data_idx": 3807, "number": 2, "label": "hiphop"} +{"file_name": "test_06225.png", "caption": "The song is an instrumental. The tempo is medium with a DJ creating cool rhythmic structures; groovy drum rhythm, percussion hits, grunge tones and staccato notes. The song is exciting and energetic. The song is a techno dance tune.", "data_idx": 3807, "number": 3, "label": "hiphop"} +{"file_name": "test_06226.png", "caption": "This audio contains someone playing a complex groove on tablas along with someone playing a solo on a zitar with the same complex rhythm. This song may be playing in a live concert having a little solo together with instruments.", "data_idx": 3808, "number": 0, "label": "classical"} +{"file_name": "test_06227.png", "caption": "This audio contains someone playing a complex groove on tablas along with someone playing a solo on a zitar with the same complex rhythm. This song may be playing in a live concert having a little solo together with instruments.", "data_idx": 3808, "number": 1, "label": "classical"} +{"file_name": "test_06228.png", "caption": "This audio contains someone playing a complex groove on tablas along with someone playing a solo on a zitar with the same complex rhythm. This song may be playing in a live concert having a little solo together with instruments.", "data_idx": 3808, "number": 2, "label": "classical"} +{"file_name": "test_06229.png", "caption": "This audio contains someone playing a complex groove on tablas along with someone playing a solo on a zitar with the same complex rhythm. This song may be playing in a live concert having a little solo together with instruments.", "data_idx": 3808, "number": 3, "label": "classical"} +{"file_name": "test_06230.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of flat male vocal and reverberant fruity male vocal singing over smooth bass and strings melody. It sounds very muddy, muffled and there is a harsh microphone feedback sound. The recording is noisy itself.", "data_idx": 3810, "number": 0, "label": "blues"} +{"file_name": "test_06231.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of flat male vocal and reverberant fruity male vocal singing over smooth bass and strings melody. It sounds very muddy, muffled and there is a harsh microphone feedback sound. The recording is noisy itself.", "data_idx": 3810, "number": 1, "label": "blues"} +{"file_name": "test_06232.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of flat male vocal and reverberant fruity male vocal singing over smooth bass and strings melody. It sounds very muddy, muffled and there is a harsh microphone feedback sound. The recording is noisy itself.", "data_idx": 3810, "number": 2, "label": "blues"} +{"file_name": "test_06233.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of flat male vocal and reverberant fruity male vocal singing over smooth bass and strings melody. It sounds very muddy, muffled and there is a harsh microphone feedback sound. The recording is noisy itself.", "data_idx": 3810, "number": 3, "label": "blues"} +{"file_name": "test_06234.png", "caption": "This audio contains a male voice talking when someone starts playing a melody in the lower mid-range on a saxophone. This song may be playing live during a saxophone class.", "data_idx": 3811, "number": 0, "label": "jazz"} +{"file_name": "test_06235.png", "caption": "This audio contains a male voice talking when someone starts playing a melody in the lower mid-range on a saxophone. This song may be playing live during a saxophone class.", "data_idx": 3811, "number": 1, "label": "jazz"} +{"file_name": "test_06236.png", "caption": "This audio contains a male voice talking when someone starts playing a melody in the lower mid-range on a saxophone. This song may be playing live during a saxophone class.", "data_idx": 3811, "number": 2, "label": "jazz"} +{"file_name": "test_06237.png", "caption": "This audio contains a male voice talking when someone starts playing a melody in the lower mid-range on a saxophone. This song may be playing live during a saxophone class.", "data_idx": 3811, "number": 3, "label": "jazz"} +{"file_name": "test_06238.png", "caption": "A male Hindi singer sings this tragic romantic song. The song is medium tempo with a strong percussion line with tablas and other Indian percussion, strong bass line and a sitar or guitar playing accompaniment. The song is sad yet romantic. The audio quality is average.", "data_idx": 3812, "number": 0, "label": "rock"} +{"file_name": "test_06239.png", "caption": "A male Hindi singer sings this tragic romantic song. The song is medium tempo with a strong percussion line with tablas and other Indian percussion, strong bass line and a sitar or guitar playing accompaniment. The song is sad yet romantic. The audio quality is average.", "data_idx": 3812, "number": 1, "label": "rock"} +{"file_name": "test_06240.png", "caption": "A male Hindi singer sings this tragic romantic song. The song is medium tempo with a strong percussion line with tablas and other Indian percussion, strong bass line and a sitar or guitar playing accompaniment. The song is sad yet romantic. The audio quality is average.", "data_idx": 3812, "number": 2, "label": "rock"} +{"file_name": "test_06241.png", "caption": "A male Hindi singer sings this tragic romantic song. The song is medium tempo with a strong percussion line with tablas and other Indian percussion, strong bass line and a sitar or guitar playing accompaniment. The song is sad yet romantic. The audio quality is average.", "data_idx": 3812, "number": 3, "label": "rock"} +{"file_name": "test_06242.png", "caption": "The low quality recording features an orchestra playing classical music and it consists of a mellow brass melody and soft strings melody. There are also some floor crackling sounds, while the recording is noisy itself. It sounds passionate and emotional.", "data_idx": 3816, "number": 0, "label": "classical"} +{"file_name": "test_06243.png", "caption": "The low quality recording features an orchestra playing classical music and it consists of a mellow brass melody and soft strings melody. There are also some floor crackling sounds, while the recording is noisy itself. It sounds passionate and emotional.", "data_idx": 3816, "number": 1, "label": "classical"} +{"file_name": "test_06244.png", "caption": "The low quality recording features a funky blues acoustic guitar melody. The recording is in mono, a bit noisy, reverberant - as it was probably recorded with a phone and it sounds passionate. There are also some strings creaking sounds, while the player is playing the instrument.", "data_idx": 3818, "number": 0, "label": "classical"} +{"file_name": "test_06245.png", "caption": "The low quality recording features a funky blues acoustic guitar melody. The recording is in mono, a bit noisy, reverberant - as it was probably recorded with a phone and it sounds passionate. There are also some strings creaking sounds, while the player is playing the instrument.", "data_idx": 3818, "number": 1, "label": "classical"} +{"file_name": "test_06246.png", "caption": "The low quality recording features a funky blues acoustic guitar melody. The recording is in mono, a bit noisy, reverberant - as it was probably recorded with a phone and it sounds passionate. There are also some strings creaking sounds, while the player is playing the instrument.", "data_idx": 3818, "number": 2, "label": "classical"} +{"file_name": "test_06247.png", "caption": "The low quality recording features a funky blues acoustic guitar melody. The recording is in mono, a bit noisy, reverberant - as it was probably recorded with a phone and it sounds passionate. There are also some strings creaking sounds, while the player is playing the instrument.", "data_idx": 3818, "number": 3, "label": "classical"} +{"file_name": "test_06248.png", "caption": "The low quality recording features a live performance of a folk song and it consists of harmonica solo melody over acoustic rhythm guitar chord progression. It sounds happy and fun. The recording is noisy and a bit reverberant as it was probably recorded with a poor quality microphone.", "data_idx": 3819, "number": 0, "label": "blues"} +{"file_name": "test_06249.png", "caption": "The low quality recording features a live performance of a folk song and it consists of harmonica solo melody over acoustic rhythm guitar chord progression. It sounds happy and fun. The recording is noisy and a bit reverberant as it was probably recorded with a poor quality microphone.", "data_idx": 3819, "number": 1, "label": "blues"} +{"file_name": "test_06250.png", "caption": "The low quality recording features a live performance of a folk song and it consists of harmonica solo melody over acoustic rhythm guitar chord progression. It sounds happy and fun. The recording is noisy and a bit reverberant as it was probably recorded with a poor quality microphone.", "data_idx": 3819, "number": 2, "label": "blues"} +{"file_name": "test_06251.png", "caption": "The low quality recording features a live performance of a folk song and it consists of harmonica solo melody over acoustic rhythm guitar chord progression. It sounds happy and fun. The recording is noisy and a bit reverberant as it was probably recorded with a poor quality microphone.", "data_idx": 3819, "number": 3, "label": "blues"} +{"file_name": "test_06252.png", "caption": "This is an R&B/hip-hop music piece. There is a female vocalist singing melodically. The melody is being played by the keyboard which has a crisp sound. There is a strong bass sound in the background. The rhythm is provided by a loud acoustic drum beat. The atmosphere is hip and urban. This piece could be used in the soundtrack of a drama movie that takes place in the big city.", "data_idx": 3821, "number": 0, "label": "hiphop"} +{"file_name": "test_06253.png", "caption": "This is an R&B/hip-hop music piece. There is a female vocalist singing melodically. The melody is being played by the keyboard which has a crisp sound. There is a strong bass sound in the background. The rhythm is provided by a loud acoustic drum beat. The atmosphere is hip and urban. This piece could be used in the soundtrack of a drama movie that takes place in the big city.", "data_idx": 3821, "number": 1, "label": "hiphop"} +{"file_name": "test_06254.png", "caption": "This is an R&B/hip-hop music piece. There is a female vocalist singing melodically. The melody is being played by the keyboard which has a crisp sound. There is a strong bass sound in the background. The rhythm is provided by a loud acoustic drum beat. The atmosphere is hip and urban. This piece could be used in the soundtrack of a drama movie that takes place in the big city.", "data_idx": 3821, "number": 2, "label": "hiphop"} +{"file_name": "test_06255.png", "caption": "This is an R&B/hip-hop music piece. There is a female vocalist singing melodically. The melody is being played by the keyboard which has a crisp sound. There is a strong bass sound in the background. The rhythm is provided by a loud acoustic drum beat. The atmosphere is hip and urban. This piece could be used in the soundtrack of a drama movie that takes place in the big city.", "data_idx": 3821, "number": 3, "label": "hiphop"} +{"file_name": "test_06256.png", "caption": "This audio contains a lot of people playing a complex snare roll groove in synchronicity along with people playing bass drums. The bass drums are overloading the speakers of the recording. This composition may be playing for an army celebration.", "data_idx": 3824, "number": 0, "label": "reggae"} +{"file_name": "test_06257.png", "caption": "This audio contains a lot of people playing a complex snare roll groove in synchronicity along with people playing bass drums. The bass drums are overloading the speakers of the recording. This composition may be playing for an army celebration.", "data_idx": 3824, "number": 1, "label": "reggae"} +{"file_name": "test_06258.png", "caption": "This audio contains a lot of people playing a complex snare roll groove in synchronicity along with people playing bass drums. The bass drums are overloading the speakers of the recording. This composition may be playing for an army celebration.", "data_idx": 3824, "number": 2, "label": "reggae"} +{"file_name": "test_06259.png", "caption": "This audio contains a lot of people playing a complex snare roll groove in synchronicity along with people playing bass drums. The bass drums are overloading the speakers of the recording. This composition may be playing for an army celebration.", "data_idx": 3824, "number": 3, "label": "reggae"} +{"file_name": "test_06260.png", "caption": "This song has a cool vibe to it. The singer has a warm and suave tone to his voice and vocal delivery. This is an alternative rock song, with a slow tempo. It gives off a cool and aloof vibe. There's reverb and echo on the singer's vocal.", "data_idx": 3826, "number": 0, "label": "metal"} +{"file_name": "test_06261.png", "caption": "This song has a cool vibe to it. The singer has a warm and suave tone to his voice and vocal delivery. This is an alternative rock song, with a slow tempo. It gives off a cool and aloof vibe. There's reverb and echo on the singer's vocal.", "data_idx": 3826, "number": 1, "label": "metal"} +{"file_name": "test_06262.png", "caption": "This song has a cool vibe to it. The singer has a warm and suave tone to his voice and vocal delivery. This is an alternative rock song, with a slow tempo. It gives off a cool and aloof vibe. There's reverb and echo on the singer's vocal.", "data_idx": 3826, "number": 2, "label": "metal"} +{"file_name": "test_06263.png", "caption": "This song has a cool vibe to it. The singer has a warm and suave tone to his voice and vocal delivery. This is an alternative rock song, with a slow tempo. It gives off a cool and aloof vibe. There's reverb and echo on the singer's vocal.", "data_idx": 3826, "number": 3, "label": "metal"} +{"file_name": "test_06264.png", "caption": "The low quality recording features a country song that consists of a passionate male vocal singing over arpeggiated acoustic guitar melody, acoustic rhythm guitar chords, mandoline guitar melody and groovy bass. It sounds passionate, joyful and emotional.", "data_idx": 3831, "number": 0, "label": "rock"} +{"file_name": "test_06265.png", "caption": "The low quality recording features a country song that consists of a passionate male vocal singing over arpeggiated acoustic guitar melody, acoustic rhythm guitar chords, mandoline guitar melody and groovy bass. It sounds passionate, joyful and emotional.", "data_idx": 3831, "number": 1, "label": "rock"} +{"file_name": "test_06266.png", "caption": "The low quality recording features a country song that consists of a passionate male vocal singing over arpeggiated acoustic guitar melody, acoustic rhythm guitar chords, mandoline guitar melody and groovy bass. It sounds passionate, joyful and emotional.", "data_idx": 3831, "number": 2, "label": "rock"} +{"file_name": "test_06267.png", "caption": "The low quality recording features a country song that consists of a passionate male vocal singing over arpeggiated acoustic guitar melody, acoustic rhythm guitar chords, mandoline guitar melody and groovy bass. It sounds passionate, joyful and emotional.", "data_idx": 3831, "number": 3, "label": "rock"} +{"file_name": "test_06268.png", "caption": "A live recording of a brass ensemble in a chamber style arrangement. Natural reverb from a recital hall is present. The music features counterpoint amongst the different instruments, and the mood is stately and noble.", "data_idx": 3832, "number": 0, "label": "classical"} +{"file_name": "test_06269.png", "caption": "A live recording of a brass ensemble in a chamber style arrangement. Natural reverb from a recital hall is present. The music features counterpoint amongst the different instruments, and the mood is stately and noble.", "data_idx": 3832, "number": 1, "label": "classical"} +{"file_name": "test_06270.png", "caption": "A live recording of a brass ensemble in a chamber style arrangement. Natural reverb from a recital hall is present. The music features counterpoint amongst the different instruments, and the mood is stately and noble.", "data_idx": 3832, "number": 2, "label": "classical"} +{"file_name": "test_06271.png", "caption": "A live recording of a brass ensemble in a chamber style arrangement. Natural reverb from a recital hall is present. The music features counterpoint amongst the different instruments, and the mood is stately and noble.", "data_idx": 3832, "number": 3, "label": "classical"} +{"file_name": "test_06272.png", "caption": "The low quality recording features a live performance of a folk song that consists of an echoing passionate male vocal singing over sustained strings melody, acoustic guitar melody and some crowd cheering and whistling sounds in the background. It sounds joyful, passionate and emotional overall.", "data_idx": 3835, "number": 0, "label": "rock"} +{"file_name": "test_06273.png", "caption": "The low quality recording features a live performance of a folk song that consists of an echoing passionate male vocal singing over sustained strings melody, acoustic guitar melody and some crowd cheering and whistling sounds in the background. It sounds joyful, passionate and emotional overall.", "data_idx": 3835, "number": 1, "label": "rock"} +{"file_name": "test_06274.png", "caption": "The low quality recording features a live performance of a folk song that consists of an echoing passionate male vocal singing over sustained strings melody, acoustic guitar melody and some crowd cheering and whistling sounds in the background. It sounds joyful, passionate and emotional overall.", "data_idx": 3835, "number": 2, "label": "rock"} +{"file_name": "test_06275.png", "caption": "The low quality recording features a live performance of a folk song that consists of an echoing passionate male vocal singing over sustained strings melody, acoustic guitar melody and some crowd cheering and whistling sounds in the background. It sounds joyful, passionate and emotional overall.", "data_idx": 3835, "number": 3, "label": "rock"} +{"file_name": "test_06276.png", "caption": "This is an exciting, epic cinematic orchestral piece. This kind of music would be used for a scene involving a chase or something thrilling. There are tubas, trombones, trumpets and french horns playing the same exciting motif.", "data_idx": 3836, "number": 0, "label": "classical"} +{"file_name": "test_06277.png", "caption": "This is an exciting, epic cinematic orchestral piece. This kind of music would be used for a scene involving a chase or something thrilling. There are tubas, trombones, trumpets and french horns playing the same exciting motif.", "data_idx": 3836, "number": 1, "label": "classical"} +{"file_name": "test_06278.png", "caption": "A male singer sings this passionate melody accompanied by crowds who are singing along and cheering. The song is in medium tempo with a strong drumming rhythm, cymbals crashing, steady bass line and keyboard accompaniment. The song has extremely bad audio quality.", "data_idx": 3838, "number": 0, "label": "classical"} +{"file_name": "test_06279.png", "caption": "A male singer sings this passionate melody accompanied by crowds who are singing along and cheering. The song is in medium tempo with a strong drumming rhythm, cymbals crashing, steady bass line and keyboard accompaniment. The song has extremely bad audio quality.", "data_idx": 3838, "number": 1, "label": "classical"} +{"file_name": "test_06280.png", "caption": "A male singer sings this passionate melody accompanied by crowds who are singing along and cheering. The song is in medium tempo with a strong drumming rhythm, cymbals crashing, steady bass line and keyboard accompaniment. The song has extremely bad audio quality.", "data_idx": 3838, "number": 2, "label": "classical"} +{"file_name": "test_06281.png", "caption": "A male singer sings this passionate melody accompanied by crowds who are singing along and cheering. The song is in medium tempo with a strong drumming rhythm, cymbals crashing, steady bass line and keyboard accompaniment. The song has extremely bad audio quality.", "data_idx": 3838, "number": 3, "label": "classical"} +{"file_name": "test_06282.png", "caption": "The Soft Metal song features a flat male vocal, alongside harmonizing male background vocals, singing over energetic cymbals, electric guitar melodies, distorted bass, punchy kick and snare hits and wide manic toms. It sounds aggressive and energetic.", "data_idx": 3840, "number": 0, "label": "metal"} +{"file_name": "test_06283.png", "caption": "The Soft Metal song features a flat male vocal, alongside harmonizing male background vocals, singing over energetic cymbals, electric guitar melodies, distorted bass, punchy kick and snare hits and wide manic toms. It sounds aggressive and energetic.", "data_idx": 3840, "number": 1, "label": "metal"} +{"file_name": "test_06284.png", "caption": "The Soft Metal song features a flat male vocal, alongside harmonizing male background vocals, singing over energetic cymbals, electric guitar melodies, distorted bass, punchy kick and snare hits and wide manic toms. It sounds aggressive and energetic.", "data_idx": 3840, "number": 2, "label": "metal"} +{"file_name": "test_06285.png", "caption": "The Soft Metal song features a flat male vocal, alongside harmonizing male background vocals, singing over energetic cymbals, electric guitar melodies, distorted bass, punchy kick and snare hits and wide manic toms. It sounds aggressive and energetic.", "data_idx": 3840, "number": 3, "label": "metal"} +{"file_name": "test_06286.png", "caption": "This is a live recording of a traditional church choir singing Christmas carols. The music, in some ways, feels ethereal and like what is seen in movies about what heaven would be like.", "data_idx": 3842, "number": 0, "label": "classical"} +{"file_name": "test_06287.png", "caption": "This is a live recording of a traditional church choir singing Christmas carols. The music, in some ways, feels ethereal and like what is seen in movies about what heaven would be like.", "data_idx": 3842, "number": 1, "label": "classical"} +{"file_name": "test_06288.png", "caption": "This is a live recording of a traditional church choir singing Christmas carols. The music, in some ways, feels ethereal and like what is seen in movies about what heaven would be like.", "data_idx": 3842, "number": 2, "label": "classical"} +{"file_name": "test_06289.png", "caption": "This is a live recording of a traditional church choir singing Christmas carols. The music, in some ways, feels ethereal and like what is seen in movies about what heaven would be like.", "data_idx": 3842, "number": 3, "label": "classical"} +{"file_name": "test_06290.png", "caption": "The low quality recording features a jazz performance that consists of saxophone solo melody played over shimmering cymbals, followed by trombone melody and walking double bass. It sounds warm, but dark, due to the poor quality microphone it was recorded with.", "data_idx": 3843, "number": 0, "label": "jazz"} +{"file_name": "test_06291.png", "caption": "The low quality recording features a jazz performance that consists of saxophone solo melody played over shimmering cymbals, followed by trombone melody and walking double bass. It sounds warm, but dark, due to the poor quality microphone it was recorded with.", "data_idx": 3843, "number": 1, "label": "jazz"} +{"file_name": "test_06292.png", "caption": "The low quality recording features a clarinet solo melody and bass clarinet melody playing. It sounds passionate and joyful, while the recording is noisy and in mono.", "data_idx": 3847, "number": 0, "label": "hiphop"} +{"file_name": "test_06293.png", "caption": "The low quality recording features a clarinet solo melody and bass clarinet melody playing. It sounds passionate and joyful, while the recording is noisy and in mono.", "data_idx": 3847, "number": 1, "label": "hiphop"} +{"file_name": "test_06294.png", "caption": "The low quality recording features a clarinet solo melody and bass clarinet melody playing. It sounds passionate and joyful, while the recording is noisy and in mono.", "data_idx": 3847, "number": 2, "label": "hiphop"} +{"file_name": "test_06295.png", "caption": "The low quality recording features a clarinet solo melody and bass clarinet melody playing. It sounds passionate and joyful, while the recording is noisy and in mono.", "data_idx": 3847, "number": 3, "label": "hiphop"} +{"file_name": "test_06296.png", "caption": "This is the live performance of a Baroque music performance. There is a male vocalist singing at a very high pitch. The melody is being played by a harpsichord. There is a medieval sound to this piece. It could be used in the soundtrack of historical dramas that take place in Medieval Europe.", "data_idx": 3848, "number": 0, "label": "classical"} +{"file_name": "test_06297.png", "caption": "This is the live performance of a Baroque music performance. There is a male vocalist singing at a very high pitch. The melody is being played by a harpsichord. There is a medieval sound to this piece. It could be used in the soundtrack of historical dramas that take place in Medieval Europe.", "data_idx": 3848, "number": 1, "label": "classical"} +{"file_name": "test_06298.png", "caption": "This is the live performance of a Baroque music performance. There is a male vocalist singing at a very high pitch. The melody is being played by a harpsichord. There is a medieval sound to this piece. It could be used in the soundtrack of historical dramas that take place in Medieval Europe.", "data_idx": 3848, "number": 2, "label": "classical"} +{"file_name": "test_06299.png", "caption": "This is the live performance of a Baroque music performance. There is a male vocalist singing at a very high pitch. The melody is being played by a harpsichord. There is a medieval sound to this piece. It could be used in the soundtrack of historical dramas that take place in Medieval Europe.", "data_idx": 3848, "number": 3, "label": "classical"} +{"file_name": "test_06300.png", "caption": "This music is an intense electronic instrumental . The tempo is slow with electric guitar,acoustic guitar and synthesiser arrangements. The music is grim, intense, boomy, serious, fervent and passionate.", "data_idx": 3851, "number": 0, "label": "classical"} +{"file_name": "test_06301.png", "caption": "This music is an intense electronic instrumental . The tempo is slow with electric guitar,acoustic guitar and synthesiser arrangements. The music is grim, intense, boomy, serious, fervent and passionate.", "data_idx": 3851, "number": 1, "label": "classical"} +{"file_name": "test_06302.png", "caption": "This music is an intense electronic instrumental . The tempo is slow with electric guitar,acoustic guitar and synthesiser arrangements. The music is grim, intense, boomy, serious, fervent and passionate.", "data_idx": 3851, "number": 2, "label": "classical"} +{"file_name": "test_06303.png", "caption": "This music is an intense electronic instrumental . The tempo is slow with electric guitar,acoustic guitar and synthesiser arrangements. The music is grim, intense, boomy, serious, fervent and passionate.", "data_idx": 3851, "number": 3, "label": "classical"} +{"file_name": "test_06304.png", "caption": "The low quality recording features a live performance of a traditional pop song and it consists of an addictive female vocal singing over punchy kick and snare hits, groovy bass, electric guitar melody, strings melody and wooden percussion. There is a short snare roll, right before the bass drops. It sounds messy, a bit harsh, distorted, but also passionate, addictive and energetic.", "data_idx": 3854, "number": 0, "label": "rock"} +{"file_name": "test_06305.png", "caption": "The low quality recording features a live performance of a traditional pop song and it consists of an addictive female vocal singing over punchy kick and snare hits, groovy bass, electric guitar melody, strings melody and wooden percussion. There is a short snare roll, right before the bass drops. It sounds messy, a bit harsh, distorted, but also passionate, addictive and energetic.", "data_idx": 3854, "number": 1, "label": "rock"} +{"file_name": "test_06306.png", "caption": "The low quality recording features a live performance of a traditional pop song and it consists of an addictive female vocal singing over punchy kick and snare hits, groovy bass, electric guitar melody, strings melody and wooden percussion. There is a short snare roll, right before the bass drops. It sounds messy, a bit harsh, distorted, but also passionate, addictive and energetic.", "data_idx": 3854, "number": 2, "label": "rock"} +{"file_name": "test_06307.png", "caption": "The low quality recording features a live performance of a traditional pop song and it consists of an addictive female vocal singing over punchy kick and snare hits, groovy bass, electric guitar melody, strings melody and wooden percussion. There is a short snare roll, right before the bass drops. It sounds messy, a bit harsh, distorted, but also passionate, addictive and energetic.", "data_idx": 3854, "number": 3, "label": "rock"} +{"file_name": "test_06308.png", "caption": "This is a pop rock music piece being performed in the studio. There is a male vocalist singing melodically in the lead. The electric guitar is playing a simple tune with the bass guitar in the background. The acoustic drums are playing an upbeat rhythm with off-beat hi-hat strokes. The atmosphere is energetic. This piece could be used as the opening theme of a Korean teenage drama TV series.", "data_idx": 3855, "number": 0, "label": "metal"} +{"file_name": "test_06309.png", "caption": "This is a pop rock music piece being performed in the studio. There is a male vocalist singing melodically in the lead. The electric guitar is playing a simple tune with the bass guitar in the background. The acoustic drums are playing an upbeat rhythm with off-beat hi-hat strokes. The atmosphere is energetic. This piece could be used as the opening theme of a Korean teenage drama TV series.", "data_idx": 3855, "number": 1, "label": "metal"} +{"file_name": "test_06310.png", "caption": "The low quality recording features a muffled crowd talking in the background while there is a horn melody, alongside horn siren sound playing. It sounds like a traditional thing to do.", "data_idx": 3860, "number": 0, "label": "classical"} +{"file_name": "test_06311.png", "caption": "The low quality recording features a muffled crowd talking in the background while there is a horn melody, alongside horn siren sound playing. It sounds like a traditional thing to do.", "data_idx": 3860, "number": 1, "label": "classical"} +{"file_name": "test_06312.png", "caption": "The low quality recording features a muffled crowd talking in the background while there is a horn melody, alongside horn siren sound playing. It sounds like a traditional thing to do.", "data_idx": 3860, "number": 2, "label": "classical"} +{"file_name": "test_06313.png", "caption": "The low quality recording features a muffled crowd talking in the background while there is a horn melody, alongside horn siren sound playing. It sounds like a traditional thing to do.", "data_idx": 3860, "number": 3, "label": "classical"} +{"file_name": "test_06314.png", "caption": "The low quality recording features a traditional song that consists of mellow synth pad chords, wide plucked echoing strings, wobbly percussion, wooden percussion and shimmering tambourine. It sounds happy and joyful - like something you would hear at some traditional festivals.", "data_idx": 3861, "number": 0, "label": "reggae"} +{"file_name": "test_06315.png", "caption": "The low quality recording features a traditional song that consists of mellow synth pad chords, wide plucked echoing strings, wobbly percussion, wooden percussion and shimmering tambourine. It sounds happy and joyful - like something you would hear at some traditional festivals.", "data_idx": 3861, "number": 1, "label": "reggae"} +{"file_name": "test_06316.png", "caption": "The low quality recording features a traditional song that consists of mellow synth pad chords, wide plucked echoing strings, wobbly percussion, wooden percussion and shimmering tambourine. It sounds happy and joyful - like something you would hear at some traditional festivals.", "data_idx": 3861, "number": 2, "label": "reggae"} +{"file_name": "test_06317.png", "caption": "The low quality recording features a traditional song that consists of mellow synth pad chords, wide plucked echoing strings, wobbly percussion, wooden percussion and shimmering tambourine. It sounds happy and joyful - like something you would hear at some traditional festivals.", "data_idx": 3861, "number": 3, "label": "reggae"} +{"file_name": "test_06318.png", "caption": "The low quality recording features some camera shuttering sound effects and a jazz song playing in the background. The song consists of a cool saxophone solo melody over groovy bass, easygoing electric guitar chords in the left channel of the stereo image and energetic drums. It sounds easygoing and energetic at the same time.", "data_idx": 3863, "number": 0, "label": "jazz"} +{"file_name": "test_06319.png", "caption": "The low quality recording features some camera shuttering sound effects and a jazz song playing in the background. The song consists of a cool saxophone solo melody over groovy bass, easygoing electric guitar chords in the left channel of the stereo image and energetic drums. It sounds easygoing and energetic at the same time.", "data_idx": 3863, "number": 1, "label": "jazz"} +{"file_name": "test_06320.png", "caption": "The low quality recording features some camera shuttering sound effects and a jazz song playing in the background. The song consists of a cool saxophone solo melody over groovy bass, easygoing electric guitar chords in the left channel of the stereo image and energetic drums. It sounds easygoing and energetic at the same time.", "data_idx": 3863, "number": 2, "label": "jazz"} +{"file_name": "test_06321.png", "caption": "The low quality recording features some camera shuttering sound effects and a jazz song playing in the background. The song consists of a cool saxophone solo melody over groovy bass, easygoing electric guitar chords in the left channel of the stereo image and energetic drums. It sounds easygoing and energetic at the same time.", "data_idx": 3863, "number": 3, "label": "jazz"} +{"file_name": "test_06322.png", "caption": "This music is an aggressive instrumental. The tempo is fast with hard hitting, vigorous drumming, keyboard harmony and synthesiser arrangements with siren sounds and a menacing, deep growl. The music is angry, aggressive, passionate, extreme,scary, sinister, suspenseful, gothic , hostile, belligerent, violent and combative. This music is Death metal/Death Core.", "data_idx": 3866, "number": 0, "label": "hiphop"} +{"file_name": "test_06323.png", "caption": "This music is an aggressive instrumental. The tempo is fast with hard hitting, vigorous drumming, keyboard harmony and synthesiser arrangements with siren sounds and a menacing, deep growl. The music is angry, aggressive, passionate, extreme,scary, sinister, suspenseful, gothic , hostile, belligerent, violent and combative. This music is Death metal/Death Core.", "data_idx": 3866, "number": 1, "label": "hiphop"} +{"file_name": "test_06324.png", "caption": "This music is an aggressive instrumental. The tempo is fast with hard hitting, vigorous drumming, keyboard harmony and synthesiser arrangements with siren sounds and a menacing, deep growl. The music is angry, aggressive, passionate, extreme,scary, sinister, suspenseful, gothic , hostile, belligerent, violent and combative. This music is Death metal/Death Core.", "data_idx": 3866, "number": 2, "label": "hiphop"} +{"file_name": "test_06325.png", "caption": "This music is an aggressive instrumental. The tempo is fast with hard hitting, vigorous drumming, keyboard harmony and synthesiser arrangements with siren sounds and a menacing, deep growl. The music is angry, aggressive, passionate, extreme,scary, sinister, suspenseful, gothic , hostile, belligerent, violent and combative. This music is Death metal/Death Core.", "data_idx": 3866, "number": 3, "label": "hiphop"} +{"file_name": "test_06326.png", "caption": "This is an Indian film music piece. It is an instrumental piece. There is a sitar playing the melody. The tabla percussion is keeping the rhythm in the background. The atmosphere is lively. This piece is a good folk dance accompaniment piece.", "data_idx": 3869, "number": 0, "label": "blues"} +{"file_name": "test_06327.png", "caption": "This is an Indian film music piece. It is an instrumental piece. There is a sitar playing the melody. The tabla percussion is keeping the rhythm in the background. The atmosphere is lively. This piece is a good folk dance accompaniment piece.", "data_idx": 3869, "number": 1, "label": "blues"} +{"file_name": "test_06328.png", "caption": "This is an Indian film music piece. It is an instrumental piece. There is a sitar playing the melody. The tabla percussion is keeping the rhythm in the background. The atmosphere is lively. This piece is a good folk dance accompaniment piece.", "data_idx": 3869, "number": 2, "label": "blues"} +{"file_name": "test_06329.png", "caption": "This is an Indian film music piece. It is an instrumental piece. There is a sitar playing the melody. The tabla percussion is keeping the rhythm in the background. The atmosphere is lively. This piece is a good folk dance accompaniment piece.", "data_idx": 3869, "number": 3, "label": "blues"} +{"file_name": "test_06330.png", "caption": "This is a Punjabi film music piece. At first, the melody is being played by the accordion. Then, it is being played by the flute. In the background, a bass guitar is playing. The rhythm is provided by the percussion. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3870, "number": 0, "label": "pop"} +{"file_name": "test_06331.png", "caption": "This is a Punjabi film music piece. At first, the melody is being played by the accordion. Then, it is being played by the flute. In the background, a bass guitar is playing. The rhythm is provided by the percussion. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3870, "number": 1, "label": "pop"} +{"file_name": "test_06332.png", "caption": "This is a Punjabi film music piece. At first, the melody is being played by the accordion. Then, it is being played by the flute. In the background, a bass guitar is playing. The rhythm is provided by the percussion. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3870, "number": 2, "label": "pop"} +{"file_name": "test_06333.png", "caption": "This is a Punjabi film music piece. At first, the melody is being played by the accordion. Then, it is being played by the flute. In the background, a bass guitar is playing. The rhythm is provided by the percussion. The atmosphere is vibrant. This piece could be used as an accompaniment piece for a folk dance course.", "data_idx": 3870, "number": 3, "label": "pop"} +{"file_name": "test_06334.png", "caption": "The low quality recording features a hip hop song that contains a phone dialing sound effects, alongside filtered female vocal talking as the user is busy on the phone. In the second half of the loop, there are punchy kicks and snare hits playing. It sounds groovy and energetic overall.", "data_idx": 3873, "number": 0, "label": "hiphop"} +{"file_name": "test_06335.png", "caption": "The low quality recording features a hip hop song that contains a phone dialing sound effects, alongside filtered female vocal talking as the user is busy on the phone. In the second half of the loop, there are punchy kicks and snare hits playing. It sounds groovy and energetic overall.", "data_idx": 3873, "number": 1, "label": "hiphop"} +{"file_name": "test_06336.png", "caption": "This is a wedding march that belongs to Scottish folk music. It is an instrumental piece. The tune is being played by the French bagpipes at a medium-to-high pitch. The atmosphere is cheerful. This piece could be playing at a Scottish wedding. It could also be included in the soundtrack of a historical drama movie during wedding scenes.", "data_idx": 3878, "number": 0, "label": "classical"} +{"file_name": "test_06337.png", "caption": "This is a wedding march that belongs to Scottish folk music. It is an instrumental piece. The tune is being played by the French bagpipes at a medium-to-high pitch. The atmosphere is cheerful. This piece could be playing at a Scottish wedding. It could also be included in the soundtrack of a historical drama movie during wedding scenes.", "data_idx": 3878, "number": 1, "label": "classical"} +{"file_name": "test_06338.png", "caption": "This is a wedding march that belongs to Scottish folk music. It is an instrumental piece. The tune is being played by the French bagpipes at a medium-to-high pitch. The atmosphere is cheerful. This piece could be playing at a Scottish wedding. It could also be included in the soundtrack of a historical drama movie during wedding scenes.", "data_idx": 3878, "number": 2, "label": "classical"} +{"file_name": "test_06339.png", "caption": "This is a wedding march that belongs to Scottish folk music. It is an instrumental piece. The tune is being played by the French bagpipes at a medium-to-high pitch. The atmosphere is cheerful. This piece could be playing at a Scottish wedding. It could also be included in the soundtrack of a historical drama movie during wedding scenes.", "data_idx": 3878, "number": 3, "label": "classical"} +{"file_name": "test_06340.png", "caption": "This audio seems to contain two songs. In the beginning someone is strumming chords on acoustic drums while a male voice is singing in a high pitch. Then the song switches to a robotic voice sample singing. Then a digital drum comes in with a fat kick and bass sound creating the base together with the vocal sample. In the background you can hear scratching sounds. This song may be playing while working out.", "data_idx": 3881, "number": 0, "label": "disco"} +{"file_name": "test_06341.png", "caption": "This audio seems to contain two songs. In the beginning someone is strumming chords on acoustic drums while a male voice is singing in a high pitch. Then the song switches to a robotic voice sample singing. Then a digital drum comes in with a fat kick and bass sound creating the base together with the vocal sample. In the background you can hear scratching sounds. This song may be playing while working out.", "data_idx": 3881, "number": 1, "label": "disco"} +{"file_name": "test_06342.png", "caption": "This audio seems to contain two songs. In the beginning someone is strumming chords on acoustic drums while a male voice is singing in a high pitch. Then the song switches to a robotic voice sample singing. Then a digital drum comes in with a fat kick and bass sound creating the base together with the vocal sample. In the background you can hear scratching sounds. This song may be playing while working out.", "data_idx": 3881, "number": 2, "label": "disco"} +{"file_name": "test_06343.png", "caption": "This audio seems to contain two songs. In the beginning someone is strumming chords on acoustic drums while a male voice is singing in a high pitch. Then the song switches to a robotic voice sample singing. Then a digital drum comes in with a fat kick and bass sound creating the base together with the vocal sample. In the background you can hear scratching sounds. This song may be playing while working out.", "data_idx": 3881, "number": 3, "label": "disco"} +{"file_name": "test_06344.png", "caption": "The low quality recording features a flat girl vocal talking over a folk song that consists of an arpeggiated guitar melody played over groovy bass, shimmering shakers and \"4 on the floor\" kick pattern. There are some birds chirping sounds in the background. It sounds energetic, fun and happy.", "data_idx": 3884, "number": 0, "label": "pop"} +{"file_name": "test_06345.png", "caption": "The low quality recording features a flat girl vocal talking over a folk song that consists of an arpeggiated guitar melody played over groovy bass, shimmering shakers and \"4 on the floor\" kick pattern. There are some birds chirping sounds in the background. It sounds energetic, fun and happy.", "data_idx": 3884, "number": 1, "label": "pop"} +{"file_name": "test_06346.png", "caption": "This is a folk rock/alternative music piece. There is a male vocalist singing melodically in the lead. The main tune is played by the acoustic guitar with a rather quiet bass line in the background. There is a timid acoustic drum beat in the rhythmic background. The atmosphere is sentimental and melancholic. This piece could be used in the soundtrack of a drama TV series, especially during a scene where the episode would end with the characters daydreaming.", "data_idx": 3885, "number": 0, "label": "rock"} +{"file_name": "test_06347.png", "caption": "This is a folk rock/alternative music piece. There is a male vocalist singing melodically in the lead. The main tune is played by the acoustic guitar with a rather quiet bass line in the background. There is a timid acoustic drum beat in the rhythmic background. The atmosphere is sentimental and melancholic. This piece could be used in the soundtrack of a drama TV series, especially during a scene where the episode would end with the characters daydreaming.", "data_idx": 3885, "number": 1, "label": "rock"} +{"file_name": "test_06348.png", "caption": "This is a folk rock/alternative music piece. There is a male vocalist singing melodically in the lead. The main tune is played by the acoustic guitar with a rather quiet bass line in the background. There is a timid acoustic drum beat in the rhythmic background. The atmosphere is sentimental and melancholic. This piece could be used in the soundtrack of a drama TV series, especially during a scene where the episode would end with the characters daydreaming.", "data_idx": 3885, "number": 2, "label": "rock"} +{"file_name": "test_06349.png", "caption": "This is a folk rock/alternative music piece. There is a male vocalist singing melodically in the lead. The main tune is played by the acoustic guitar with a rather quiet bass line in the background. There is a timid acoustic drum beat in the rhythmic background. The atmosphere is sentimental and melancholic. This piece could be used in the soundtrack of a drama TV series, especially during a scene where the episode would end with the characters daydreaming.", "data_idx": 3885, "number": 3, "label": "rock"} +{"file_name": "test_06350.png", "caption": "The low quality recording features an orchestra live performance and it contains a mellow brass section melody, sustained strings melody, soft piano chords and smooth double bass. It sounds easygoing and happy, like something you would listen to while trying to relax.", "data_idx": 3888, "number": 0, "label": "jazz"} +{"file_name": "test_06351.png", "caption": "The low quality recording features an orchestra live performance and it contains a mellow brass section melody, sustained strings melody, soft piano chords and smooth double bass. It sounds easygoing and happy, like something you would listen to while trying to relax.", "data_idx": 3888, "number": 1, "label": "jazz"} +{"file_name": "test_06352.png", "caption": "The low quality recording features an orchestra live performance and it contains a mellow brass section melody, sustained strings melody, soft piano chords and smooth double bass. It sounds easygoing and happy, like something you would listen to while trying to relax.", "data_idx": 3888, "number": 2, "label": "jazz"} +{"file_name": "test_06353.png", "caption": "The low quality recording features an orchestra live performance and it contains a mellow brass section melody, sustained strings melody, soft piano chords and smooth double bass. It sounds easygoing and happy, like something you would listen to while trying to relax.", "data_idx": 3888, "number": 3, "label": "jazz"} +{"file_name": "test_06354.png", "caption": "This music is a lively instrumental. The tempo is fast with a spirited violin which is most likely a pochette playing a spirited harmony. The music is upbeat, catchy, happy,cheerful, engaging and energetic. This instrumental is a folk song instrumental.", "data_idx": 3890, "number": 0, "label": "hiphop"} +{"file_name": "test_06355.png", "caption": "This music is a lively instrumental. The tempo is fast with a spirited violin which is most likely a pochette playing a spirited harmony. The music is upbeat, catchy, happy,cheerful, engaging and energetic. This instrumental is a folk song instrumental.", "data_idx": 3890, "number": 1, "label": "hiphop"} +{"file_name": "test_06356.png", "caption": "This music is a lively instrumental. The tempo is fast with a spirited violin which is most likely a pochette playing a spirited harmony. The music is upbeat, catchy, happy,cheerful, engaging and energetic. This instrumental is a folk song instrumental.", "data_idx": 3890, "number": 2, "label": "hiphop"} +{"file_name": "test_06357.png", "caption": "This music is a lively instrumental. The tempo is fast with a spirited violin which is most likely a pochette playing a spirited harmony. The music is upbeat, catchy, happy,cheerful, engaging and energetic. This instrumental is a folk song instrumental.", "data_idx": 3890, "number": 3, "label": "hiphop"} +{"file_name": "test_06358.png", "caption": "This music is instrumental. The tempo is slow with a droning vibration of a metal bowl called the Tibetan bowl or singing bowl. The music is a single note drone with vibrations and resonance. It is calming, meditative, stress relieving, meditative and soothing.", "data_idx": 3897, "number": 0, "label": "classical"} +{"file_name": "test_06359.png", "caption": "This music is instrumental. The tempo is slow with a droning vibration of a metal bowl called the Tibetan bowl or singing bowl. The music is a single note drone with vibrations and resonance. It is calming, meditative, stress relieving, meditative and soothing.", "data_idx": 3897, "number": 1, "label": "classical"} +{"file_name": "test_06360.png", "caption": "This music is instrumental. The tempo is slow with a droning vibration of a metal bowl called the Tibetan bowl or singing bowl. The music is a single note drone with vibrations and resonance. It is calming, meditative, stress relieving, meditative and soothing.", "data_idx": 3897, "number": 2, "label": "classical"} +{"file_name": "test_06361.png", "caption": "This music is instrumental. The tempo is slow with a droning vibration of a metal bowl called the Tibetan bowl or singing bowl. The music is a single note drone with vibrations and resonance. It is calming, meditative, stress relieving, meditative and soothing.", "data_idx": 3897, "number": 3, "label": "classical"} +{"file_name": "test_06362.png", "caption": "This is a beatbox performance played on a flute. There is a flushing sound effect in the beginning of the recording and then the performance begins. There is an eccentric feel to the piece. The sound effect in the beginning could be used in a soundboard while the flute can be sampled for use in beat-making.", "data_idx": 3898, "number": 0, "label": "hiphop"} +{"file_name": "test_06363.png", "caption": "This is a beatbox performance played on a flute. There is a flushing sound effect in the beginning of the recording and then the performance begins. There is an eccentric feel to the piece. The sound effect in the beginning could be used in a soundboard while the flute can be sampled for use in beat-making.", "data_idx": 3898, "number": 1, "label": "hiphop"} +{"file_name": "test_06364.png", "caption": "This house music features percussion being played to a Latin beat. There are no other instruments in this song. There are no voices in this song. This song can be played in a club.", "data_idx": 3899, "number": 0, "label": "reggae"} +{"file_name": "test_06365.png", "caption": "This house music features percussion being played to a Latin beat. There are no other instruments in this song. There are no voices in this song. This song can be played in a club.", "data_idx": 3899, "number": 1, "label": "reggae"} +{"file_name": "test_06366.png", "caption": "This song is a simple instrumental. The tempo is medium with a lively tempo and melodic violin accompaniment. The tune is simple,refreshing, emphatic and mellifluous.", "data_idx": 3900, "number": 0, "label": "jazz"} +{"file_name": "test_06367.png", "caption": "This song is a simple instrumental. The tempo is medium with a lively tempo and melodic violin accompaniment. The tune is simple,refreshing, emphatic and mellifluous.", "data_idx": 3900, "number": 1, "label": "jazz"} +{"file_name": "test_06368.png", "caption": "This song is a simple instrumental. The tempo is medium with a lively tempo and melodic violin accompaniment. The tune is simple,refreshing, emphatic and mellifluous.", "data_idx": 3900, "number": 2, "label": "jazz"} +{"file_name": "test_06369.png", "caption": "This song is a simple instrumental. The tempo is medium with a lively tempo and melodic violin accompaniment. The tune is simple,refreshing, emphatic and mellifluous.", "data_idx": 3900, "number": 3, "label": "jazz"} +{"file_name": "test_06370.png", "caption": "Medium tempo rock drum beat with a half time feel, using only two chords played by acoustic guitar arpeggios, piano chords and a male singer. The mood is sentimental.", "data_idx": 3905, "number": 0, "label": "country"} +{"file_name": "test_06371.png", "caption": "Medium tempo rock drum beat with a half time feel, using only two chords played by acoustic guitar arpeggios, piano chords and a male singer. The mood is sentimental.", "data_idx": 3905, "number": 1, "label": "country"} +{"file_name": "test_06372.png", "caption": "Medium tempo rock drum beat with a half time feel, using only two chords played by acoustic guitar arpeggios, piano chords and a male singer. The mood is sentimental.", "data_idx": 3905, "number": 2, "label": "country"} +{"file_name": "test_06373.png", "caption": "Medium tempo rock drum beat with a half time feel, using only two chords played by acoustic guitar arpeggios, piano chords and a male singer. The mood is sentimental.", "data_idx": 3905, "number": 3, "label": "country"} +{"file_name": "test_06374.png", "caption": "This audio contains a harp playing a fast melody along with a cuatro strumming chords. An e-bass is playing an almost walking bassline along with a high pitch stick hit playing a rhythm. A male voice is singing loud and in a higher pitch than other male voices are responding singing in harmonie. This song may be playing at a live concert.", "data_idx": 3907, "number": 0, "label": "rock"} +{"file_name": "test_06375.png", "caption": "This audio contains a harp playing a fast melody along with a cuatro strumming chords. An e-bass is playing an almost walking bassline along with a high pitch stick hit playing a rhythm. A male voice is singing loud and in a higher pitch than other male voices are responding singing in harmonie. This song may be playing at a live concert.", "data_idx": 3907, "number": 1, "label": "rock"} +{"file_name": "test_06376.png", "caption": "This audio contains a harp playing a fast melody along with a cuatro strumming chords. An e-bass is playing an almost walking bassline along with a high pitch stick hit playing a rhythm. A male voice is singing loud and in a higher pitch than other male voices are responding singing in harmonie. This song may be playing at a live concert.", "data_idx": 3907, "number": 2, "label": "rock"} +{"file_name": "test_06377.png", "caption": "This audio contains a harp playing a fast melody along with a cuatro strumming chords. An e-bass is playing an almost walking bassline along with a high pitch stick hit playing a rhythm. A male voice is singing loud and in a higher pitch than other male voices are responding singing in harmonie. This song may be playing at a live concert.", "data_idx": 3907, "number": 3, "label": "rock"} +{"file_name": "test_06378.png", "caption": "The low quality recording features a folk song that consists of passionate male vocal singing over shimmering shakers, smooth bass, sustained strings melody and groovy piano melody. It sounds emotional, soulful and passionate - like something you would hear in movies.", "data_idx": 3910, "number": 0, "label": "country"} +{"file_name": "test_06379.png", "caption": "The low quality recording features a folk song that consists of passionate male vocal singing over shimmering shakers, smooth bass, sustained strings melody and groovy piano melody. It sounds emotional, soulful and passionate - like something you would hear in movies.", "data_idx": 3910, "number": 1, "label": "country"} +{"file_name": "test_06380.png", "caption": "The low quality recording features a folk song that consists of passionate male vocal singing over shimmering shakers, smooth bass, sustained strings melody and groovy piano melody. It sounds emotional, soulful and passionate - like something you would hear in movies.", "data_idx": 3910, "number": 2, "label": "country"} +{"file_name": "test_06381.png", "caption": "The low quality recording features a folk song that consists of passionate male vocal singing over shimmering shakers, smooth bass, sustained strings melody and groovy piano melody. It sounds emotional, soulful and passionate - like something you would hear in movies.", "data_idx": 3910, "number": 3, "label": "country"} +{"file_name": "test_06382.png", "caption": "This song features an electric guitar. A male voice is narrating about the major scale. The guitar plays a descending scale pattern from the high note in the scale to the low note. There are no other instruments in this song. There is no vocal melody in this song. This can be played for an instructional video on playing the guitar.", "data_idx": 3912, "number": 0, "label": "blues"} +{"file_name": "test_06383.png", "caption": "This song features an electric guitar. A male voice is narrating about the major scale. The guitar plays a descending scale pattern from the high note in the scale to the low note. There are no other instruments in this song. There is no vocal melody in this song. This can be played for an instructional video on playing the guitar.", "data_idx": 3912, "number": 1, "label": "blues"} +{"file_name": "test_06384.png", "caption": "This song features an electric guitar. A male voice is narrating about the major scale. The guitar plays a descending scale pattern from the high note in the scale to the low note. There are no other instruments in this song. There is no vocal melody in this song. This can be played for an instructional video on playing the guitar.", "data_idx": 3912, "number": 2, "label": "blues"} +{"file_name": "test_06385.png", "caption": "This song features an electric guitar. A male voice is narrating about the major scale. The guitar plays a descending scale pattern from the high note in the scale to the low note. There are no other instruments in this song. There is no vocal melody in this song. This can be played for an instructional video on playing the guitar.", "data_idx": 3912, "number": 3, "label": "blues"} +{"file_name": "test_06386.png", "caption": "Someone is playing a fast melody on bagpipes in the lower higher register accompanied by a base drone sound. This song may be playing during a traditional ceremony or event.", "data_idx": 3914, "number": 0, "label": "classical"} +{"file_name": "test_06387.png", "caption": "Someone is playing a fast melody on bagpipes in the lower higher register accompanied by a base drone sound. This song may be playing during a traditional ceremony or event.", "data_idx": 3914, "number": 1, "label": "classical"} +{"file_name": "test_06388.png", "caption": "Someone is playing a fast melody on bagpipes in the lower higher register accompanied by a base drone sound. This song may be playing during a traditional ceremony or event.", "data_idx": 3914, "number": 2, "label": "classical"} +{"file_name": "test_06389.png", "caption": "Someone is playing a fast melody on bagpipes in the lower higher register accompanied by a base drone sound. This song may be playing during a traditional ceremony or event.", "data_idx": 3914, "number": 3, "label": "classical"} +{"file_name": "test_06390.png", "caption": "This is the recording of a radio play. There is a male voice narrating a story. As a transition piece, the bassoon plays a tune implying mystery and the brass section starts playing a little after. There is a theatrical aura to this piece. It could be used in the soundtrack of a movie as background music during scene transitions.", "data_idx": 3915, "number": 0, "label": "hiphop"} +{"file_name": "test_06391.png", "caption": "This is the recording of a radio play. There is a male voice narrating a story. As a transition piece, the bassoon plays a tune implying mystery and the brass section starts playing a little after. There is a theatrical aura to this piece. It could be used in the soundtrack of a movie as background music during scene transitions.", "data_idx": 3915, "number": 1, "label": "hiphop"} +{"file_name": "test_06392.png", "caption": "This is the recording of a radio play. There is a male voice narrating a story. As a transition piece, the bassoon plays a tune implying mystery and the brass section starts playing a little after. There is a theatrical aura to this piece. It could be used in the soundtrack of a movie as background music during scene transitions.", "data_idx": 3915, "number": 2, "label": "hiphop"} +{"file_name": "test_06393.png", "caption": "This is the recording of a radio play. There is a male voice narrating a story. As a transition piece, the bassoon plays a tune implying mystery and the brass section starts playing a little after. There is a theatrical aura to this piece. It could be used in the soundtrack of a movie as background music during scene transitions.", "data_idx": 3915, "number": 3, "label": "hiphop"} +{"file_name": "test_06394.png", "caption": "A male singer sings this exciting melody with female backup singers in vocal harmony. The song is medium fast tempo with a strong bass line, steady drumming rhythm, keyboard accompaniment and a car horn playing percussively. The song has pretty bad audio quality. The song is a retro hip hop dance tune.", "data_idx": 3918, "number": 0, "label": "hiphop"} +{"file_name": "test_06395.png", "caption": "A male singer sings this exciting melody with female backup singers in vocal harmony. The song is medium fast tempo with a strong bass line, steady drumming rhythm, keyboard accompaniment and a car horn playing percussively. The song has pretty bad audio quality. The song is a retro hip hop dance tune.", "data_idx": 3918, "number": 1, "label": "hiphop"} +{"file_name": "test_06396.png", "caption": "A male singer sings this exciting melody with female backup singers in vocal harmony. The song is medium fast tempo with a strong bass line, steady drumming rhythm, keyboard accompaniment and a car horn playing percussively. The song has pretty bad audio quality. The song is a retro hip hop dance tune.", "data_idx": 3918, "number": 2, "label": "hiphop"} +{"file_name": "test_06397.png", "caption": "A male singer sings this exciting melody with female backup singers in vocal harmony. The song is medium fast tempo with a strong bass line, steady drumming rhythm, keyboard accompaniment and a car horn playing percussively. The song has pretty bad audio quality. The song is a retro hip hop dance tune.", "data_idx": 3918, "number": 3, "label": "hiphop"} +{"file_name": "test_06398.png", "caption": "This song features the sound of a theremin. It starts off with the sound of a heartbeat played on the theremin itself. Then four ascending notes are played. There is a kind of continuous pad sound playing in the background. There are no other instruments in this song. There are no voices in this song.", "data_idx": 3922, "number": 0, "label": "jazz"} +{"file_name": "test_06399.png", "caption": "This song features the sound of a theremin. It starts off with the sound of a heartbeat played on the theremin itself. Then four ascending notes are played. There is a kind of continuous pad sound playing in the background. There are no other instruments in this song. There are no voices in this song.", "data_idx": 3922, "number": 1, "label": "jazz"} +{"file_name": "test_06400.png", "caption": "The song is an instrumental. The tempo is fast with a groovy jazz drumming rhythm with good brush works, strong bass line, piano accompaniment and various percussion hits. The song is groovy and energetic. The song is jazz fusion.", "data_idx": 3923, "number": 0, "label": "hiphop"} +{"file_name": "test_06401.png", "caption": "The song is an instrumental. The tempo is fast with a groovy jazz drumming rhythm with good brush works, strong bass line, piano accompaniment and various percussion hits. The song is groovy and energetic. The song is jazz fusion.", "data_idx": 3923, "number": 1, "label": "hiphop"} +{"file_name": "test_06402.png", "caption": "This song contains a male acapella group singing and beatboxing creating harmonies, bass and singers in the higher register. This song may be playing live for a talent show.", "data_idx": 3929, "number": 0, "label": "blues"} +{"file_name": "test_06403.png", "caption": "This song contains a male acapella group singing and beatboxing creating harmonies, bass and singers in the higher register. This song may be playing live for a talent show.", "data_idx": 3929, "number": 1, "label": "blues"} +{"file_name": "test_06404.png", "caption": "This song contains a male acapella group singing and beatboxing creating harmonies, bass and singers in the higher register. This song may be playing live for a talent show.", "data_idx": 3929, "number": 2, "label": "blues"} +{"file_name": "test_06405.png", "caption": "This song contains a male acapella group singing and beatboxing creating harmonies, bass and singers in the higher register. This song may be playing live for a talent show.", "data_idx": 3929, "number": 3, "label": "blues"} +{"file_name": "test_06406.png", "caption": "The low quality recording features a country song being played on an acoustic rhythm guitar and raw male vocal singing over it. It sounds passionate and emotional, even though the recording is noisy and in mono.", "data_idx": 3930, "number": 0, "label": "classical"} +{"file_name": "test_06407.png", "caption": "The low quality recording features a country song being played on an acoustic rhythm guitar and raw male vocal singing over it. It sounds passionate and emotional, even though the recording is noisy and in mono.", "data_idx": 3930, "number": 1, "label": "classical"} +{"file_name": "test_06408.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody played over strings and brass melody. It sounds emotional and passionate.", "data_idx": 3931, "number": 0, "label": "classical"} +{"file_name": "test_06409.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody played over strings and brass melody. It sounds emotional and passionate.", "data_idx": 3931, "number": 1, "label": "classical"} +{"file_name": "test_06410.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody played over strings and brass melody. It sounds emotional and passionate.", "data_idx": 3931, "number": 2, "label": "classical"} +{"file_name": "test_06411.png", "caption": "The low quality recording features a classical song that consists of a harpsichord melody played over strings and brass melody. It sounds emotional and passionate.", "data_idx": 3931, "number": 3, "label": "classical"} +{"file_name": "test_06412.png", "caption": "The low quality recording features a Christmas song that consists of harmonizing vocals singing over synth bell melody, flute lick, groovy bass, acoustic rhythm guitar, shimmering bells, shimmering shakers and piano melody. It sounds happy, fun, euphoric, nostalgic and exciting - just like every Christmas song should sound.", "data_idx": 3932, "number": 0, "label": "hiphop"} +{"file_name": "test_06413.png", "caption": "The low quality recording features a Christmas song that consists of harmonizing vocals singing over synth bell melody, flute lick, groovy bass, acoustic rhythm guitar, shimmering bells, shimmering shakers and piano melody. It sounds happy, fun, euphoric, nostalgic and exciting - just like every Christmas song should sound.", "data_idx": 3932, "number": 1, "label": "hiphop"} +{"file_name": "test_06414.png", "caption": "The low quality recording features a Christmas song that consists of harmonizing vocals singing over synth bell melody, flute lick, groovy bass, acoustic rhythm guitar, shimmering bells, shimmering shakers and piano melody. It sounds happy, fun, euphoric, nostalgic and exciting - just like every Christmas song should sound.", "data_idx": 3932, "number": 2, "label": "hiphop"} +{"file_name": "test_06415.png", "caption": "The low quality recording features a Christmas song that consists of harmonizing vocals singing over synth bell melody, flute lick, groovy bass, acoustic rhythm guitar, shimmering bells, shimmering shakers and piano melody. It sounds happy, fun, euphoric, nostalgic and exciting - just like every Christmas song should sound.", "data_idx": 3932, "number": 3, "label": "hiphop"} +{"file_name": "test_06416.png", "caption": "The clip features calm instrumentation, led by a theremin. The percussion is simple and derivative of hip hop. The tune is a sort of calm, soothing kind.", "data_idx": 3936, "number": 0, "label": "country"} +{"file_name": "test_06417.png", "caption": "The clip features calm instrumentation, led by a theremin. The percussion is simple and derivative of hip hop. The tune is a sort of calm, soothing kind.", "data_idx": 3936, "number": 1, "label": "country"} +{"file_name": "test_06418.png", "caption": "The clip features calm instrumentation, led by a theremin. The percussion is simple and derivative of hip hop. The tune is a sort of calm, soothing kind.", "data_idx": 3936, "number": 2, "label": "country"} +{"file_name": "test_06419.png", "caption": "The clip features calm instrumentation, led by a theremin. The percussion is simple and derivative of hip hop. The tune is a sort of calm, soothing kind.", "data_idx": 3936, "number": 3, "label": "country"} +{"file_name": "test_06420.png", "caption": "This comedy song features a male voice singing the main melody followed by another male continuing the melody. This is accompanied by a piano playing staccato chords in a melody similar to the voices. A choir sings vocables in harmony in the background. There are no other instruments in this song. This song can be played in a comedy movie.", "data_idx": 3939, "number": 0, "label": "reggae"} +{"file_name": "test_06421.png", "caption": "This comedy song features a male voice singing the main melody followed by another male continuing the melody. This is accompanied by a piano playing staccato chords in a melody similar to the voices. A choir sings vocables in harmony in the background. There are no other instruments in this song. This song can be played in a comedy movie.", "data_idx": 3939, "number": 1, "label": "reggae"} +{"file_name": "test_06422.png", "caption": "This comedy song features a male voice singing the main melody followed by another male continuing the melody. This is accompanied by a piano playing staccato chords in a melody similar to the voices. A choir sings vocables in harmony in the background. There are no other instruments in this song. This song can be played in a comedy movie.", "data_idx": 3939, "number": 2, "label": "reggae"} +{"file_name": "test_06423.png", "caption": "This comedy song features a male voice singing the main melody followed by another male continuing the melody. This is accompanied by a piano playing staccato chords in a melody similar to the voices. A choir sings vocables in harmony in the background. There are no other instruments in this song. This song can be played in a comedy movie.", "data_idx": 3939, "number": 3, "label": "reggae"} +{"file_name": "test_06424.png", "caption": "This song contains an acoustic piano playing a melody in the mid- to high range along with a simple bassline playing long notes. A saxophone is playing a loud melody in a higher key. In the background you can hear strings and some fast percussive rolls. THe audio contains white noise. This song may be playing on a romantic date.", "data_idx": 3940, "number": 0, "label": "hiphop"} +{"file_name": "test_06425.png", "caption": "This song contains an acoustic piano playing a melody in the mid- to high range along with a simple bassline playing long notes. A saxophone is playing a loud melody in a higher key. In the background you can hear strings and some fast percussive rolls. THe audio contains white noise. This song may be playing on a romantic date.", "data_idx": 3940, "number": 1, "label": "hiphop"} +{"file_name": "test_06426.png", "caption": "The low quality recording features a live performance that consists of bagpipes melodies. It sounds soulful, passionate, cultural and the recording is in mono and noisy.", "data_idx": 3941, "number": 0, "label": "classical"} +{"file_name": "test_06427.png", "caption": "The low quality recording features a live performance that consists of bagpipes melodies. It sounds soulful, passionate, cultural and the recording is in mono and noisy.", "data_idx": 3941, "number": 1, "label": "classical"} +{"file_name": "test_06428.png", "caption": "The low quality recording features a live performance that consists of bagpipes melodies. It sounds soulful, passionate, cultural and the recording is in mono and noisy.", "data_idx": 3941, "number": 2, "label": "classical"} +{"file_name": "test_06429.png", "caption": "The low quality recording features a live performance that consists of bagpipes melodies. It sounds soulful, passionate, cultural and the recording is in mono and noisy.", "data_idx": 3941, "number": 3, "label": "classical"} +{"file_name": "test_06430.png", "caption": "The low quality recording features shimmering bells that slowly fade out, leading into a funky electric guitar melody. It sounds cool and upbeat.", "data_idx": 3942, "number": 0, "label": "hiphop"} +{"file_name": "test_06431.png", "caption": "The low quality recording features shimmering bells that slowly fade out, leading into a funky electric guitar melody. It sounds cool and upbeat.", "data_idx": 3942, "number": 1, "label": "hiphop"} +{"file_name": "test_06432.png", "caption": "The low quality recording features shimmering bells that slowly fade out, leading into a funky electric guitar melody. It sounds cool and upbeat.", "data_idx": 3942, "number": 2, "label": "hiphop"} +{"file_name": "test_06433.png", "caption": "The low quality recording features shimmering bells that slowly fade out, leading into a funky electric guitar melody. It sounds cool and upbeat.", "data_idx": 3942, "number": 3, "label": "hiphop"} +{"file_name": "test_06434.png", "caption": "This is an instrumental flute music piece. The flute is playing a gentle melody while an acoustic guitar is playing an arpeggio in the background. There is a calming, relaxing atmosphere. This piece would fit perfectly in the background of a meditation video. It could also be used in the soundtrack of a documentary during serene scenery shots.", "data_idx": 3944, "number": 0, "label": "jazz"} +{"file_name": "test_06435.png", "caption": "This is an instrumental flute music piece. The flute is playing a gentle melody while an acoustic guitar is playing an arpeggio in the background. There is a calming, relaxing atmosphere. This piece would fit perfectly in the background of a meditation video. It could also be used in the soundtrack of a documentary during serene scenery shots.", "data_idx": 3944, "number": 1, "label": "jazz"} +{"file_name": "test_06436.png", "caption": "This is an instrumental flute music piece. The flute is playing a gentle melody while an acoustic guitar is playing an arpeggio in the background. There is a calming, relaxing atmosphere. This piece would fit perfectly in the background of a meditation video. It could also be used in the soundtrack of a documentary during serene scenery shots.", "data_idx": 3944, "number": 2, "label": "jazz"} +{"file_name": "test_06437.png", "caption": "This is an instrumental flute music piece. The flute is playing a gentle melody while an acoustic guitar is playing an arpeggio in the background. There is a calming, relaxing atmosphere. This piece would fit perfectly in the background of a meditation video. It could also be used in the soundtrack of a documentary during serene scenery shots.", "data_idx": 3944, "number": 3, "label": "jazz"} +{"file_name": "test_06438.png", "caption": "This is a style of Hindustani classical music performance which involves a calm and soothing musical performance. There is a male singer singing open-mouthed syllables.", "data_idx": 3948, "number": 0, "label": "classical"} +{"file_name": "test_06439.png", "caption": "This is a style of Hindustani classical music performance which involves a calm and soothing musical performance. There is a male singer singing open-mouthed syllables.", "data_idx": 3948, "number": 1, "label": "classical"} +{"file_name": "test_06440.png", "caption": "This is a style of Hindustani classical music performance which involves a calm and soothing musical performance. There is a male singer singing open-mouthed syllables.", "data_idx": 3948, "number": 2, "label": "classical"} +{"file_name": "test_06441.png", "caption": "This is a style of Hindustani classical music performance which involves a calm and soothing musical performance. There is a male singer singing open-mouthed syllables.", "data_idx": 3948, "number": 3, "label": "classical"} +{"file_name": "test_06442.png", "caption": "The low quality recording features a shimmering bell melody, followed by some stuttering swing sound effects. It sounds passionate and addictive.", "data_idx": 3949, "number": 0, "label": "jazz"} +{"file_name": "test_06443.png", "caption": "The low quality recording features a shimmering bell melody, followed by some stuttering swing sound effects. It sounds passionate and addictive.", "data_idx": 3949, "number": 1, "label": "jazz"} +{"file_name": "test_06444.png", "caption": "The low quality recording features a shimmering bell melody, followed by some stuttering swing sound effects. It sounds passionate and addictive.", "data_idx": 3949, "number": 2, "label": "jazz"} +{"file_name": "test_06445.png", "caption": "The low quality recording features a shimmering bell melody, followed by some stuttering swing sound effects. It sounds passionate and addictive.", "data_idx": 3949, "number": 3, "label": "jazz"} +{"file_name": "test_06446.png", "caption": "This folk song features a harmonica playing the main melody. This is accompanied by an acoustic guitar strumming chords. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. The mood of this song is upbeat and happy. This song can be played in a movie scene involving a highway drive.", "data_idx": 3951, "number": 0, "label": "rock"} +{"file_name": "test_06447.png", "caption": "This folk song features a harmonica playing the main melody. This is accompanied by an acoustic guitar strumming chords. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. The mood of this song is upbeat and happy. This song can be played in a movie scene involving a highway drive.", "data_idx": 3951, "number": 1, "label": "rock"} +{"file_name": "test_06448.png", "caption": "This folk song features a harmonica playing the main melody. This is accompanied by an acoustic guitar strumming chords. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. The mood of this song is upbeat and happy. This song can be played in a movie scene involving a highway drive.", "data_idx": 3951, "number": 2, "label": "rock"} +{"file_name": "test_06449.png", "caption": "This folk song features a harmonica playing the main melody. This is accompanied by an acoustic guitar strumming chords. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. The mood of this song is upbeat and happy. This song can be played in a movie scene involving a highway drive.", "data_idx": 3951, "number": 3, "label": "rock"} +{"file_name": "test_06450.png", "caption": "The low quality recording features a shofar tone played so loudly that the recording is distorted and harsh, aside from being already noisy itself. It is also in mono, as it was probably recorded with a phone.", "data_idx": 3952, "number": 0, "label": "jazz"} +{"file_name": "test_06451.png", "caption": "The low quality recording features a shofar tone played so loudly that the recording is distorted and harsh, aside from being already noisy itself. It is also in mono, as it was probably recorded with a phone.", "data_idx": 3952, "number": 1, "label": "jazz"} +{"file_name": "test_06452.png", "caption": "The low quality recording features a shofar tone played so loudly that the recording is distorted and harsh, aside from being already noisy itself. It is also in mono, as it was probably recorded with a phone.", "data_idx": 3952, "number": 2, "label": "jazz"} +{"file_name": "test_06453.png", "caption": "The low quality recording features a shofar tone played so loudly that the recording is distorted and harsh, aside from being already noisy itself. It is also in mono, as it was probably recorded with a phone.", "data_idx": 3952, "number": 3, "label": "jazz"} +{"file_name": "test_06454.png", "caption": "This slow rock song features a male voice singing the main melody. This song starts off with a guitar playing hammer ons over three chords. The main part of the song starts off after this sequence. It starts off with a drum roll and a pentatonic run on the guitar. The voice comes in after the roll and the bass starts playing with the voice. The bass plays the root notes of the chords. The voice sings an emotional line. This song can be played in a movie based on the hippie culture.", "data_idx": 3958, "number": 0, "label": "hiphop"} +{"file_name": "test_06455.png", "caption": "This slow rock song features a male voice singing the main melody. This song starts off with a guitar playing hammer ons over three chords. The main part of the song starts off after this sequence. It starts off with a drum roll and a pentatonic run on the guitar. The voice comes in after the roll and the bass starts playing with the voice. The bass plays the root notes of the chords. The voice sings an emotional line. This song can be played in a movie based on the hippie culture.", "data_idx": 3958, "number": 1, "label": "hiphop"} +{"file_name": "test_06456.png", "caption": "This slow rock song features a male voice singing the main melody. This song starts off with a guitar playing hammer ons over three chords. The main part of the song starts off after this sequence. It starts off with a drum roll and a pentatonic run on the guitar. The voice comes in after the roll and the bass starts playing with the voice. The bass plays the root notes of the chords. The voice sings an emotional line. This song can be played in a movie based on the hippie culture.", "data_idx": 3958, "number": 2, "label": "hiphop"} +{"file_name": "test_06457.png", "caption": "This slow rock song features a male voice singing the main melody. This song starts off with a guitar playing hammer ons over three chords. The main part of the song starts off after this sequence. It starts off with a drum roll and a pentatonic run on the guitar. The voice comes in after the roll and the bass starts playing with the voice. The bass plays the root notes of the chords. The voice sings an emotional line. This song can be played in a movie based on the hippie culture.", "data_idx": 3958, "number": 3, "label": "hiphop"} +{"file_name": "test_06458.png", "caption": "This music is a mellow instrumental. The tempo is slow with a mellifluous flute harmony with trumpet, trombone tuba accompaniment , lively drumming and bass cello. The music is playful, sunny, melodic, animated and pleasant.", "data_idx": 3961, "number": 0, "label": "hiphop"} +{"file_name": "test_06459.png", "caption": "This music is a mellow instrumental. The tempo is slow with a mellifluous flute harmony with trumpet, trombone tuba accompaniment , lively drumming and bass cello. The music is playful, sunny, melodic, animated and pleasant.", "data_idx": 3961, "number": 1, "label": "hiphop"} +{"file_name": "test_06460.png", "caption": "This is a stringed quartet playing a piece that feels positive and happy. The instruments are violin and cello and the style of playing is reminiscent of Indian style violin playing.", "data_idx": 3963, "number": 0, "label": "classical"} +{"file_name": "test_06461.png", "caption": "This is a stringed quartet playing a piece that feels positive and happy. The instruments are violin and cello and the style of playing is reminiscent of Indian style violin playing.", "data_idx": 3963, "number": 1, "label": "classical"} +{"file_name": "test_06462.png", "caption": "This is a stringed quartet playing a piece that feels positive and happy. The instruments are violin and cello and the style of playing is reminiscent of Indian style violin playing.", "data_idx": 3963, "number": 2, "label": "classical"} +{"file_name": "test_06463.png", "caption": "This is a stringed quartet playing a piece that feels positive and happy. The instruments are violin and cello and the style of playing is reminiscent of Indian style violin playing.", "data_idx": 3963, "number": 3, "label": "classical"} +{"file_name": "test_06464.png", "caption": "This audio contains someone playing a harp picking a tremolo melody. A female opera voice starts singing along in a higher pitch. This is an amateur recording. You can hear recording noises and the whole audio is panned to the left side of the speakers. This song may be playing in a theaterhouse.", "data_idx": 3964, "number": 0, "label": "hiphop"} +{"file_name": "test_06465.png", "caption": "This audio contains someone playing a harp picking a tremolo melody. A female opera voice starts singing along in a higher pitch. This is an amateur recording. You can hear recording noises and the whole audio is panned to the left side of the speakers. This song may be playing in a theaterhouse.", "data_idx": 3964, "number": 1, "label": "hiphop"} +{"file_name": "test_06466.png", "caption": "The low quality recording features a live performance of a folk song that consists of a passionate male vocal singing over groovy bass, woodwind melody, punchy snare and wooden percussion. It sounds joyful, energetic and the recording is noisy.", "data_idx": 3970, "number": 0, "label": "rock"} +{"file_name": "test_06467.png", "caption": "The low quality recording features a live performance of a folk song that consists of a passionate male vocal singing over groovy bass, woodwind melody, punchy snare and wooden percussion. It sounds joyful, energetic and the recording is noisy.", "data_idx": 3970, "number": 1, "label": "rock"} +{"file_name": "test_06468.png", "caption": "The low quality recording features a live performance of a folk song that consists of a passionate male vocal singing over groovy bass, woodwind melody, punchy snare and wooden percussion. It sounds joyful, energetic and the recording is noisy.", "data_idx": 3970, "number": 2, "label": "rock"} +{"file_name": "test_06469.png", "caption": "The low quality recording features a live performance of a folk song that consists of a passionate male vocal singing over groovy bass, woodwind melody, punchy snare and wooden percussion. It sounds joyful, energetic and the recording is noisy.", "data_idx": 3970, "number": 3, "label": "rock"} +{"file_name": "test_06470.png", "caption": "Solo percussion playing additive rhythms and polyrhythms.", "data_idx": 3972, "number": 0, "label": "reggae"} +{"file_name": "test_06471.png", "caption": "Solo percussion playing additive rhythms and polyrhythms.", "data_idx": 3972, "number": 1, "label": "reggae"} +{"file_name": "test_06472.png", "caption": "Solo percussion playing additive rhythms and polyrhythms.", "data_idx": 3972, "number": 2, "label": "reggae"} +{"file_name": "test_06473.png", "caption": "Solo percussion playing additive rhythms and polyrhythms.", "data_idx": 3972, "number": 3, "label": "reggae"} +{"file_name": "test_06474.png", "caption": "The low quality recording features a soft metal song that consists of muffled male vocals, alongside wide background melodic male vocals, singing over filtered synth pad, uptempo toms rolls, punchy snare and kick hits and shimmering cymbals. It sounds energetic and addictive.", "data_idx": 3975, "number": 0, "label": "metal"} +{"file_name": "test_06475.png", "caption": "The low quality recording features a soft metal song that consists of muffled male vocals, alongside wide background melodic male vocals, singing over filtered synth pad, uptempo toms rolls, punchy snare and kick hits and shimmering cymbals. It sounds energetic and addictive.", "data_idx": 3975, "number": 1, "label": "metal"} +{"file_name": "test_06476.png", "caption": "The low quality recording features a soft metal song that consists of muffled male vocals, alongside wide background melodic male vocals, singing over filtered synth pad, uptempo toms rolls, punchy snare and kick hits and shimmering cymbals. It sounds energetic and addictive.", "data_idx": 3975, "number": 2, "label": "metal"} +{"file_name": "test_06477.png", "caption": "The low quality recording features a soft metal song that consists of muffled male vocals, alongside wide background melodic male vocals, singing over filtered synth pad, uptempo toms rolls, punchy snare and kick hits and shimmering cymbals. It sounds energetic and addictive.", "data_idx": 3975, "number": 3, "label": "metal"} +{"file_name": "test_06478.png", "caption": "This is a live performance of a rock music piece. There are male vocals singing melodically. The electric guitar is playing the main tune. The bass guitar is playing a simple bass line. In the rhythmic background, there is a simple acoustic drum beat. The atmosphere is cheerful. This piece can be used in the soundtrack of a feelgood TV series during the credits.", "data_idx": 3977, "number": 0, "label": "rock"} +{"file_name": "test_06479.png", "caption": "This is a live performance of a rock music piece. There are male vocals singing melodically. The electric guitar is playing the main tune. The bass guitar is playing a simple bass line. In the rhythmic background, there is a simple acoustic drum beat. The atmosphere is cheerful. This piece can be used in the soundtrack of a feelgood TV series during the credits.", "data_idx": 3977, "number": 1, "label": "rock"} +{"file_name": "test_06480.png", "caption": "This is a live performance of a rock music piece. There are male vocals singing melodically. The electric guitar is playing the main tune. The bass guitar is playing a simple bass line. In the rhythmic background, there is a simple acoustic drum beat. The atmosphere is cheerful. This piece can be used in the soundtrack of a feelgood TV series during the credits.", "data_idx": 3977, "number": 2, "label": "rock"} +{"file_name": "test_06481.png", "caption": "This is a live performance of a rock music piece. There are male vocals singing melodically. The electric guitar is playing the main tune. The bass guitar is playing a simple bass line. In the rhythmic background, there is a simple acoustic drum beat. The atmosphere is cheerful. This piece can be used in the soundtrack of a feelgood TV series during the credits.", "data_idx": 3977, "number": 3, "label": "rock"} +{"file_name": "test_06482.png", "caption": "This is an electronic house music piece. There is a melodic pad playing a repeated tune for the melody. The strong bass and the loud electronic drums are playing as the essential backbone of the house music genre. There is a male voice sample that repeats the same word. There is a female voice sample that speaks occasionally. The atmosphere is energetic. This piece could be playing at nightclubs or dance clubs.", "data_idx": 3979, "number": 0, "label": "reggae"} +{"file_name": "test_06483.png", "caption": "This is an electronic house music piece. There is a melodic pad playing a repeated tune for the melody. The strong bass and the loud electronic drums are playing as the essential backbone of the house music genre. There is a male voice sample that repeats the same word. There is a female voice sample that speaks occasionally. The atmosphere is energetic. This piece could be playing at nightclubs or dance clubs.", "data_idx": 3979, "number": 1, "label": "reggae"} +{"file_name": "test_06484.png", "caption": "This is an electronic house music piece. There is a melodic pad playing a repeated tune for the melody. The strong bass and the loud electronic drums are playing as the essential backbone of the house music genre. There is a male voice sample that repeats the same word. There is a female voice sample that speaks occasionally. The atmosphere is energetic. This piece could be playing at nightclubs or dance clubs.", "data_idx": 3979, "number": 2, "label": "reggae"} +{"file_name": "test_06485.png", "caption": "This is an electronic house music piece. There is a melodic pad playing a repeated tune for the melody. The strong bass and the loud electronic drums are playing as the essential backbone of the house music genre. There is a male voice sample that repeats the same word. There is a female voice sample that speaks occasionally. The atmosphere is energetic. This piece could be playing at nightclubs or dance clubs.", "data_idx": 3979, "number": 3, "label": "reggae"} +{"file_name": "test_06486.png", "caption": "This slow pop ballad features two cellos playing in harmony. One cello plays the high notes. The second cello plays the bass notes. This is accompanied by a piano playing chords in the background. The mood of this song is romantic. There are no voices in this song. This song can be played in a romantic movie.", "data_idx": 3980, "number": 0, "label": "classical"} +{"file_name": "test_06487.png", "caption": "This slow pop ballad features two cellos playing in harmony. One cello plays the high notes. The second cello plays the bass notes. This is accompanied by a piano playing chords in the background. The mood of this song is romantic. There are no voices in this song. This song can be played in a romantic movie.", "data_idx": 3980, "number": 1, "label": "classical"} +{"file_name": "test_06488.png", "caption": "This slow pop ballad features two cellos playing in harmony. One cello plays the high notes. The second cello plays the bass notes. This is accompanied by a piano playing chords in the background. The mood of this song is romantic. There are no voices in this song. This song can be played in a romantic movie.", "data_idx": 3980, "number": 2, "label": "classical"} +{"file_name": "test_06489.png", "caption": "This slow pop ballad features two cellos playing in harmony. One cello plays the high notes. The second cello plays the bass notes. This is accompanied by a piano playing chords in the background. The mood of this song is romantic. There are no voices in this song. This song can be played in a romantic movie.", "data_idx": 3980, "number": 3, "label": "classical"} +{"file_name": "test_06490.png", "caption": "This clip features a drum kit being played. Different parts of the drum kit are played. At the beginning, a female narrates the process in one line following which different parts of the kit are struck. This sound can be played in a drum test scenario.", "data_idx": 3981, "number": 0, "label": "hiphop"} +{"file_name": "test_06491.png", "caption": "This clip features a drum kit being played. Different parts of the drum kit are played. At the beginning, a female narrates the process in one line following which different parts of the kit are struck. This sound can be played in a drum test scenario.", "data_idx": 3981, "number": 1, "label": "hiphop"} +{"file_name": "test_06492.png", "caption": "This clip features a drum kit being played. Different parts of the drum kit are played. At the beginning, a female narrates the process in one line following which different parts of the kit are struck. This sound can be played in a drum test scenario.", "data_idx": 3981, "number": 2, "label": "hiphop"} +{"file_name": "test_06493.png", "caption": "This clip features a drum kit being played. Different parts of the drum kit are played. At the beginning, a female narrates the process in one line following which different parts of the kit are struck. This sound can be played in a drum test scenario.", "data_idx": 3981, "number": 3, "label": "hiphop"} +{"file_name": "test_06494.png", "caption": "This song features a male giving instructions on playing a guitar. A distortion guitar is playing the root note and the fifth. After the instruction, the root note and the fifth is played individually. This song features only the male instruction voice and no vocal melody. There are no other instruments in this song. There is no percussion in this song.", "data_idx": 3983, "number": 0, "label": "blues"} +{"file_name": "test_06495.png", "caption": "This song features a male giving instructions on playing a guitar. A distortion guitar is playing the root note and the fifth. After the instruction, the root note and the fifth is played individually. This song features only the male instruction voice and no vocal melody. There are no other instruments in this song. There is no percussion in this song.", "data_idx": 3983, "number": 1, "label": "blues"} +{"file_name": "test_06496.png", "caption": "This song features a male giving instructions on playing a guitar. A distortion guitar is playing the root note and the fifth. After the instruction, the root note and the fifth is played individually. This song features only the male instruction voice and no vocal melody. There are no other instruments in this song. There is no percussion in this song.", "data_idx": 3983, "number": 2, "label": "blues"} +{"file_name": "test_06497.png", "caption": "This song features a male giving instructions on playing a guitar. A distortion guitar is playing the root note and the fifth. After the instruction, the root note and the fifth is played individually. This song features only the male instruction voice and no vocal melody. There are no other instruments in this song. There is no percussion in this song.", "data_idx": 3983, "number": 3, "label": "blues"} +{"file_name": "test_06498.png", "caption": "The low quality recording features a flat male talking singing over ukulele chord progression, after which the flat male vocal is talking. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 3985, "number": 0, "label": "reggae"} +{"file_name": "test_06499.png", "caption": "The low quality recording features a flat male talking singing over ukulele chord progression, after which the flat male vocal is talking. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 3985, "number": 1, "label": "reggae"} +{"file_name": "test_06500.png", "caption": "The low quality recording features a flat male talking singing over ukulele chord progression, after which the flat male vocal is talking. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 3985, "number": 2, "label": "reggae"} +{"file_name": "test_06501.png", "caption": "The low quality recording features a flat male talking singing over ukulele chord progression, after which the flat male vocal is talking. It sounds like a tutorial and the recording is noisy and in mono.", "data_idx": 3985, "number": 3, "label": "reggae"} +{"file_name": "test_06502.png", "caption": "This is an instrument comedy music piece. There is a clarinet playing a goofy tune. Then, the clarinet stops and the strings section starts playing a dramatic melody. This piece could be sampled to be used as instrumentals in an advertisement jingle.", "data_idx": 3987, "number": 0, "label": "hiphop"} +{"file_name": "test_06503.png", "caption": "This is an instrument comedy music piece. There is a clarinet playing a goofy tune. Then, the clarinet stops and the strings section starts playing a dramatic melody. This piece could be sampled to be used as instrumentals in an advertisement jingle.", "data_idx": 3987, "number": 1, "label": "hiphop"} +{"file_name": "test_06504.png", "caption": "This is an instrument comedy music piece. There is a clarinet playing a goofy tune. Then, the clarinet stops and the strings section starts playing a dramatic melody. This piece could be sampled to be used as instrumentals in an advertisement jingle.", "data_idx": 3987, "number": 2, "label": "hiphop"} +{"file_name": "test_06505.png", "caption": "This is an instrument comedy music piece. There is a clarinet playing a goofy tune. Then, the clarinet stops and the strings section starts playing a dramatic melody. This piece could be sampled to be used as instrumentals in an advertisement jingle.", "data_idx": 3987, "number": 3, "label": "hiphop"} +{"file_name": "test_06506.png", "caption": "The song is an instrumental. The tempo is medium with a recorder being played with a lot of heart, accompanied by string section harmony. The song is emotional and has a lot of spirit. The song is a western classical music masterpiece.", "data_idx": 3989, "number": 0, "label": "classical"} +{"file_name": "test_06507.png", "caption": "The song is an instrumental. The tempo is medium with a recorder being played with a lot of heart, accompanied by string section harmony. The song is emotional and has a lot of spirit. The song is a western classical music masterpiece.", "data_idx": 3989, "number": 1, "label": "classical"} +{"file_name": "test_06508.png", "caption": "The song is an instrumental. The tempo is medium with a recorder being played with a lot of heart, accompanied by string section harmony. The song is emotional and has a lot of spirit. The song is a western classical music masterpiece.", "data_idx": 3989, "number": 2, "label": "classical"} +{"file_name": "test_06509.png", "caption": "The song is an instrumental. The tempo is medium with a recorder being played with a lot of heart, accompanied by string section harmony. The song is emotional and has a lot of spirit. The song is a western classical music masterpiece.", "data_idx": 3989, "number": 3, "label": "classical"} +{"file_name": "test_06510.png", "caption": "This audio contains a lot of people playing a percussive instrument. You can also hear stick hits. It seems like they're all playing the same rhythmic pattern. This song may be playing live in a drumming school.", "data_idx": 3992, "number": 0, "label": "reggae"} +{"file_name": "test_06511.png", "caption": "This audio contains a lot of people playing a percussive instrument. You can also hear stick hits. It seems like they're all playing the same rhythmic pattern. This song may be playing live in a drumming school.", "data_idx": 3992, "number": 1, "label": "reggae"} +{"file_name": "test_06512.png", "caption": "This audio contains a lot of people playing a percussive instrument. You can also hear stick hits. It seems like they're all playing the same rhythmic pattern. This song may be playing live in a drumming school.", "data_idx": 3992, "number": 2, "label": "reggae"} +{"file_name": "test_06513.png", "caption": "This audio contains a lot of people playing a percussive instrument. You can also hear stick hits. It seems like they're all playing the same rhythmic pattern. This song may be playing live in a drumming school.", "data_idx": 3992, "number": 3, "label": "reggae"} +{"file_name": "test_06514.png", "caption": "The song is an instrumental. The song is medium tempo with a violin, viola, cello playing a string harmony accompanied by an acoustic guitar strumming chords. The song is a western classical music piece.", "data_idx": 3994, "number": 0, "label": "classical"} +{"file_name": "test_06515.png", "caption": "The song is an instrumental. The song is medium tempo with a violin, viola, cello playing a string harmony accompanied by an acoustic guitar strumming chords. The song is a western classical music piece.", "data_idx": 3994, "number": 1, "label": "classical"} +{"file_name": "test_06516.png", "caption": "The song is an instrumental. The song is medium tempo with a violin, viola, cello playing a string harmony accompanied by an acoustic guitar strumming chords. The song is a western classical music piece.", "data_idx": 3994, "number": 2, "label": "classical"} +{"file_name": "test_06517.png", "caption": "The song is an instrumental. The song is medium tempo with a violin, viola, cello playing a string harmony accompanied by an acoustic guitar strumming chords. The song is a western classical music piece.", "data_idx": 3994, "number": 3, "label": "classical"} diff --git a/data/test/metadata_0015.jsonl b/data/test/metadata_0015.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..20ae0dff3f2d3f1597229d990744e3d0ec45cce3 --- /dev/null +++ b/data/test/metadata_0015.jsonl @@ -0,0 +1,340 @@ +{"file_name": "test_06518.png", "caption": "This piano song features a piano playing the backing chords. A violin plays the main melody. The melody is romantic but turns eerie at the end. There are no other instruments in this song. A male voice narrates two words toward the end of the song. This song can be played in a promotional video.", "data_idx": 4001, "number": 0, "label": "reggae"} +{"file_name": "test_06519.png", "caption": "This piano song features a piano playing the backing chords. A violin plays the main melody. The melody is romantic but turns eerie at the end. There are no other instruments in this song. A male voice narrates two words toward the end of the song. This song can be played in a promotional video.", "data_idx": 4001, "number": 1, "label": "reggae"} +{"file_name": "test_06520.png", "caption": "This piano song features a piano playing the backing chords. A violin plays the main melody. The melody is romantic but turns eerie at the end. There are no other instruments in this song. A male voice narrates two words toward the end of the song. This song can be played in a promotional video.", "data_idx": 4001, "number": 2, "label": "reggae"} +{"file_name": "test_06521.png", "caption": "This piano song features a piano playing the backing chords. A violin plays the main melody. The melody is romantic but turns eerie at the end. There are no other instruments in this song. A male voice narrates two words toward the end of the song. This song can be played in a promotional video.", "data_idx": 4001, "number": 3, "label": "reggae"} +{"file_name": "test_06522.png", "caption": "This is a classical music piece in the style of a military march. There is a wind orchestra playing the melody. In the rhythmic background, marching band elements such as the snare drum, the bass drum, the cymbal and the triangle can be heard. There is an epic atmosphere. This piece would fit perfectly in the soundtrack of a war video game.", "data_idx": 4003, "number": 0, "label": "classical"} +{"file_name": "test_06523.png", "caption": "This is a classical music piece in the style of a military march. There is a wind orchestra playing the melody. In the rhythmic background, marching band elements such as the snare drum, the bass drum, the cymbal and the triangle can be heard. There is an epic atmosphere. This piece would fit perfectly in the soundtrack of a war video game.", "data_idx": 4003, "number": 1, "label": "classical"} +{"file_name": "test_06524.png", "caption": "This is a classical music piece in the style of a military march. There is a wind orchestra playing the melody. In the rhythmic background, marching band elements such as the snare drum, the bass drum, the cymbal and the triangle can be heard. There is an epic atmosphere. This piece would fit perfectly in the soundtrack of a war video game.", "data_idx": 4003, "number": 2, "label": "classical"} +{"file_name": "test_06525.png", "caption": "This is a classical music piece in the style of a military march. There is a wind orchestra playing the melody. In the rhythmic background, marching band elements such as the snare drum, the bass drum, the cymbal and the triangle can be heard. There is an epic atmosphere. This piece would fit perfectly in the soundtrack of a war video game.", "data_idx": 4003, "number": 3, "label": "classical"} +{"file_name": "test_06526.png", "caption": "This clip features a synth being played. The tone is that of an electric piano. This synth plays the bass notes as well as the treble notes. This song has no other instruments. This is an instrumental song with no voices. This song can be played in an instructional video for synthesizers.", "data_idx": 4008, "number": 0, "label": "jazz"} +{"file_name": "test_06527.png", "caption": "This clip features a synth being played. The tone is that of an electric piano. This synth plays the bass notes as well as the treble notes. This song has no other instruments. This is an instrumental song with no voices. This song can be played in an instructional video for synthesizers.", "data_idx": 4008, "number": 1, "label": "jazz"} +{"file_name": "test_06528.png", "caption": "This clip features a synth being played. The tone is that of an electric piano. This synth plays the bass notes as well as the treble notes. This song has no other instruments. This is an instrumental song with no voices. This song can be played in an instructional video for synthesizers.", "data_idx": 4008, "number": 2, "label": "jazz"} +{"file_name": "test_06529.png", "caption": "This clip features a synth being played. The tone is that of an electric piano. This synth plays the bass notes as well as the treble notes. This song has no other instruments. This is an instrumental song with no voices. This song can be played in an instructional video for synthesizers.", "data_idx": 4008, "number": 3, "label": "jazz"} +{"file_name": "test_06530.png", "caption": "This is an upbeat Arabic dance pop song. There's an energetic male singer with a heavily autotuned voice who sings to the beat. The beat features a four on the floor kick drum pattern and hi-hats being played in a pattern of 16th notes. There's a rapid repeated synth melody riff. The song would be heard at a dance club.", "data_idx": 4009, "number": 0, "label": "hiphop"} +{"file_name": "test_06531.png", "caption": "This is an upbeat Arabic dance pop song. There's an energetic male singer with a heavily autotuned voice who sings to the beat. The beat features a four on the floor kick drum pattern and hi-hats being played in a pattern of 16th notes. There's a rapid repeated synth melody riff. The song would be heard at a dance club.", "data_idx": 4009, "number": 1, "label": "hiphop"} +{"file_name": "test_06532.png", "caption": "This is an upbeat Arabic dance pop song. There's an energetic male singer with a heavily autotuned voice who sings to the beat. The beat features a four on the floor kick drum pattern and hi-hats being played in a pattern of 16th notes. There's a rapid repeated synth melody riff. The song would be heard at a dance club.", "data_idx": 4009, "number": 2, "label": "hiphop"} +{"file_name": "test_06533.png", "caption": "This is an upbeat Arabic dance pop song. There's an energetic male singer with a heavily autotuned voice who sings to the beat. The beat features a four on the floor kick drum pattern and hi-hats being played in a pattern of 16th notes. There's a rapid repeated synth melody riff. The song would be heard at a dance club.", "data_idx": 4009, "number": 3, "label": "hiphop"} +{"file_name": "test_06534.png", "caption": "The song is an instrumental. The tempo is medium fast with strong metal drumming, groovy bass line, distorted guitar playing rhythm and cymbals crashing. The song is high on adrenaline and exciting. The audio quality is poor.", "data_idx": 4012, "number": 0, "label": "disco"} +{"file_name": "test_06535.png", "caption": "The song is an instrumental. The tempo is medium fast with strong metal drumming, groovy bass line, distorted guitar playing rhythm and cymbals crashing. The song is high on adrenaline and exciting. The audio quality is poor.", "data_idx": 4012, "number": 1, "label": "disco"} +{"file_name": "test_06536.png", "caption": "The song is an instrumental. The tempo is medium fast with strong metal drumming, groovy bass line, distorted guitar playing rhythm and cymbals crashing. The song is high on adrenaline and exciting. The audio quality is poor.", "data_idx": 4012, "number": 2, "label": "disco"} +{"file_name": "test_06537.png", "caption": "The song is an instrumental. The tempo is medium fast with strong metal drumming, groovy bass line, distorted guitar playing rhythm and cymbals crashing. The song is high on adrenaline and exciting. The audio quality is poor.", "data_idx": 4012, "number": 3, "label": "disco"} +{"file_name": "test_06538.png", "caption": "This is an Omani traditional music piece performed live on the street. The melody is being performed by the bagpipes. The atmosphere is vibrant and lively. This piece could be used in the soundtrack of a historical drama that takes place in the Gulf region during British imperial rule.", "data_idx": 4017, "number": 0, "label": "classical"} +{"file_name": "test_06539.png", "caption": "This is an Omani traditional music piece performed live on the street. The melody is being performed by the bagpipes. The atmosphere is vibrant and lively. This piece could be used in the soundtrack of a historical drama that takes place in the Gulf region during British imperial rule.", "data_idx": 4017, "number": 1, "label": "classical"} +{"file_name": "test_06540.png", "caption": "This is an Omani traditional music piece performed live on the street. The melody is being performed by the bagpipes. The atmosphere is vibrant and lively. This piece could be used in the soundtrack of a historical drama that takes place in the Gulf region during British imperial rule.", "data_idx": 4017, "number": 2, "label": "classical"} +{"file_name": "test_06541.png", "caption": "This is an Omani traditional music piece performed live on the street. The melody is being performed by the bagpipes. The atmosphere is vibrant and lively. This piece could be used in the soundtrack of a historical drama that takes place in the Gulf region during British imperial rule.", "data_idx": 4017, "number": 3, "label": "classical"} +{"file_name": "test_06542.png", "caption": "This song contains a male voice loudly singing in a higher key. A flutelike instrument is playing a melody out of tune accompanied by an accordion sound. This is an amateur recording.", "data_idx": 4021, "number": 0, "label": "jazz"} +{"file_name": "test_06543.png", "caption": "This song contains a male voice loudly singing in a higher key. A flutelike instrument is playing a melody out of tune accompanied by an accordion sound. This is an amateur recording.", "data_idx": 4021, "number": 1, "label": "jazz"} +{"file_name": "test_06544.png", "caption": "This song contains a male voice loudly singing in a higher key. A flutelike instrument is playing a melody out of tune accompanied by an accordion sound. This is an amateur recording.", "data_idx": 4021, "number": 2, "label": "jazz"} +{"file_name": "test_06545.png", "caption": "This song contains a male voice loudly singing in a higher key. A flutelike instrument is playing a melody out of tune accompanied by an accordion sound. This is an amateur recording.", "data_idx": 4021, "number": 3, "label": "jazz"} +{"file_name": "test_06546.png", "caption": "This clip features a low and reverberating synth, and then a bright and futuristic and spacey synth. The low synth sounds like a landing space ship.", "data_idx": 4022, "number": 0, "label": "blues"} +{"file_name": "test_06547.png", "caption": "This clip features a low and reverberating synth, and then a bright and futuristic and spacey synth. The low synth sounds like a landing space ship.", "data_idx": 4022, "number": 1, "label": "blues"} +{"file_name": "test_06548.png", "caption": "This is an instrumental progressive/math rock piece. The electric guitar is playing a complex solo with rapid procession of notes using the tapping technique. There is a reverberating piano sample in the background. The atmosphere is trippy. This piece can be used in the soundtrack of a video game that takes place in outer space.", "data_idx": 4023, "number": 0, "label": "disco"} +{"file_name": "test_06549.png", "caption": "This is an instrumental progressive/math rock piece. The electric guitar is playing a complex solo with rapid procession of notes using the tapping technique. There is a reverberating piano sample in the background. The atmosphere is trippy. This piece can be used in the soundtrack of a video game that takes place in outer space.", "data_idx": 4023, "number": 1, "label": "disco"} +{"file_name": "test_06550.png", "caption": "This is an instrumental progressive/math rock piece. The electric guitar is playing a complex solo with rapid procession of notes using the tapping technique. There is a reverberating piano sample in the background. The atmosphere is trippy. This piece can be used in the soundtrack of a video game that takes place in outer space.", "data_idx": 4023, "number": 2, "label": "disco"} +{"file_name": "test_06551.png", "caption": "This is an instrumental progressive/math rock piece. The electric guitar is playing a complex solo with rapid procession of notes using the tapping technique. There is a reverberating piano sample in the background. The atmosphere is trippy. This piece can be used in the soundtrack of a video game that takes place in outer space.", "data_idx": 4023, "number": 3, "label": "disco"} +{"file_name": "test_06552.png", "caption": "This salsa song features a female voice singing the main melody. This is accompanied by percussion on a drum kit as well as on a congo. The congo gives this song the salsa feel. The drum kit plays the cowbell and high pitched snare drum to add more of the salsa vibe. The bass plays groovy fills. Trumpets, trombones and saxophones play fills in between lines. They play in harmony. A piano plays jazzy chords in the background. This song can be played in a dance club for a salsa night.", "data_idx": 4024, "number": 0, "label": "disco"} +{"file_name": "test_06553.png", "caption": "This salsa song features a female voice singing the main melody. This is accompanied by percussion on a drum kit as well as on a congo. The congo gives this song the salsa feel. The drum kit plays the cowbell and high pitched snare drum to add more of the salsa vibe. The bass plays groovy fills. Trumpets, trombones and saxophones play fills in between lines. They play in harmony. A piano plays jazzy chords in the background. This song can be played in a dance club for a salsa night.", "data_idx": 4024, "number": 1, "label": "disco"} +{"file_name": "test_06554.png", "caption": "This salsa song features a female voice singing the main melody. This is accompanied by percussion on a drum kit as well as on a congo. The congo gives this song the salsa feel. The drum kit plays the cowbell and high pitched snare drum to add more of the salsa vibe. The bass plays groovy fills. Trumpets, trombones and saxophones play fills in between lines. They play in harmony. A piano plays jazzy chords in the background. This song can be played in a dance club for a salsa night.", "data_idx": 4024, "number": 2, "label": "disco"} +{"file_name": "test_06555.png", "caption": "This salsa song features a female voice singing the main melody. This is accompanied by percussion on a drum kit as well as on a congo. The congo gives this song the salsa feel. The drum kit plays the cowbell and high pitched snare drum to add more of the salsa vibe. The bass plays groovy fills. Trumpets, trombones and saxophones play fills in between lines. They play in harmony. A piano plays jazzy chords in the background. This song can be played in a dance club for a salsa night.", "data_idx": 4024, "number": 3, "label": "disco"} +{"file_name": "test_06556.png", "caption": "The low quality recording features a passionate female vocalist singing over wooden percussion, synth lead melody and plucked strings melody playing in the background. It sounds passionate, emotional, joyful and traditional.", "data_idx": 4026, "number": 0, "label": "blues"} +{"file_name": "test_06557.png", "caption": "The low quality recording features a passionate female vocalist singing over wooden percussion, synth lead melody and plucked strings melody playing in the background. It sounds passionate, emotional, joyful and traditional.", "data_idx": 4026, "number": 1, "label": "blues"} +{"file_name": "test_06558.png", "caption": "The low quality recording features a passionate female vocalist singing over wooden percussion, synth lead melody and plucked strings melody playing in the background. It sounds passionate, emotional, joyful and traditional.", "data_idx": 4026, "number": 2, "label": "blues"} +{"file_name": "test_06559.png", "caption": "The low quality recording features a passionate female vocalist singing over wooden percussion, synth lead melody and plucked strings melody playing in the background. It sounds passionate, emotional, joyful and traditional.", "data_idx": 4026, "number": 3, "label": "blues"} +{"file_name": "test_06560.png", "caption": "A string digital drum is playing a simple groove along with a shaker sound. A piano is playing a neo-soul melody while a high pitched vocal sample is panning to both sides of the speakers. It almost sounds like a plucked strings instrument. On top of that a male voice is singing in a higher pitch. This song may be playing being on a date with someone you started going out with.", "data_idx": 4027, "number": 0, "label": "reggae"} +{"file_name": "test_06561.png", "caption": "A string digital drum is playing a simple groove along with a shaker sound. A piano is playing a neo-soul melody while a high pitched vocal sample is panning to both sides of the speakers. It almost sounds like a plucked strings instrument. On top of that a male voice is singing in a higher pitch. This song may be playing being on a date with someone you started going out with.", "data_idx": 4027, "number": 1, "label": "reggae"} +{"file_name": "test_06562.png", "caption": "A string digital drum is playing a simple groove along with a shaker sound. A piano is playing a neo-soul melody while a high pitched vocal sample is panning to both sides of the speakers. It almost sounds like a plucked strings instrument. On top of that a male voice is singing in a higher pitch. This song may be playing being on a date with someone you started going out with.", "data_idx": 4027, "number": 2, "label": "reggae"} +{"file_name": "test_06563.png", "caption": "A string digital drum is playing a simple groove along with a shaker sound. A piano is playing a neo-soul melody while a high pitched vocal sample is panning to both sides of the speakers. It almost sounds like a plucked strings instrument. On top of that a male voice is singing in a higher pitch. This song may be playing being on a date with someone you started going out with.", "data_idx": 4027, "number": 3, "label": "reggae"} +{"file_name": "test_06564.png", "caption": "This song is a salsa song, with various layers of upbeat percussion which are suitable for dancing. There are bongo drums and maracas, played at a medium to high tempo. The vocalist has a dainty voice and sings in almost a high pitched voice in almost a whisper. There are brass instruments, especially trumpet and the song would be suitable for a salsa party.", "data_idx": 4028, "number": 0, "label": "reggae"} +{"file_name": "test_06565.png", "caption": "This song is a salsa song, with various layers of upbeat percussion which are suitable for dancing. There are bongo drums and maracas, played at a medium to high tempo. The vocalist has a dainty voice and sings in almost a high pitched voice in almost a whisper. There are brass instruments, especially trumpet and the song would be suitable for a salsa party.", "data_idx": 4028, "number": 1, "label": "reggae"} +{"file_name": "test_06566.png", "caption": "This song is a salsa song, with various layers of upbeat percussion which are suitable for dancing. There are bongo drums and maracas, played at a medium to high tempo. The vocalist has a dainty voice and sings in almost a high pitched voice in almost a whisper. There are brass instruments, especially trumpet and the song would be suitable for a salsa party.", "data_idx": 4028, "number": 2, "label": "reggae"} +{"file_name": "test_06567.png", "caption": "This song is a salsa song, with various layers of upbeat percussion which are suitable for dancing. There are bongo drums and maracas, played at a medium to high tempo. The vocalist has a dainty voice and sings in almost a high pitched voice in almost a whisper. There are brass instruments, especially trumpet and the song would be suitable for a salsa party.", "data_idx": 4028, "number": 3, "label": "reggae"} +{"file_name": "test_06568.png", "caption": "A male vocalist sings this sad melody. The tempo is slow with an acoustic guitar accompaniment and a droning keyboard harmony. The song is soft ,mellow, sad, emotional, sentimental, regretful , lonely and poignant. This song is an Alternative Rock/Indie.", "data_idx": 4031, "number": 0, "label": "disco"} +{"file_name": "test_06569.png", "caption": "A male vocalist sings this sad melody. The tempo is slow with an acoustic guitar accompaniment and a droning keyboard harmony. The song is soft ,mellow, sad, emotional, sentimental, regretful , lonely and poignant. This song is an Alternative Rock/Indie.", "data_idx": 4031, "number": 1, "label": "disco"} +{"file_name": "test_06570.png", "caption": "A male vocalist sings this sad melody. The tempo is slow with an acoustic guitar accompaniment and a droning keyboard harmony. The song is soft ,mellow, sad, emotional, sentimental, regretful , lonely and poignant. This song is an Alternative Rock/Indie.", "data_idx": 4031, "number": 2, "label": "disco"} +{"file_name": "test_06571.png", "caption": "A male vocalist sings this sad melody. The tempo is slow with an acoustic guitar accompaniment and a droning keyboard harmony. The song is soft ,mellow, sad, emotional, sentimental, regretful , lonely and poignant. This song is an Alternative Rock/Indie.", "data_idx": 4031, "number": 3, "label": "disco"} +{"file_name": "test_06572.png", "caption": "This is an R&B/pop music piece. There is a female vocalist singing melodically in the lead. The melody is being played on the electric guitar. The bass guitar is playing in the background. The rhythmic background consists of an electronic drum beat. The atmosphere is easygoing and generic. This piece could work well as an advertisement jingle.", "data_idx": 4032, "number": 0, "label": "disco"} +{"file_name": "test_06573.png", "caption": "This is an R&B/pop music piece. There is a female vocalist singing melodically in the lead. The melody is being played on the electric guitar. The bass guitar is playing in the background. The rhythmic background consists of an electronic drum beat. The atmosphere is easygoing and generic. This piece could work well as an advertisement jingle.", "data_idx": 4032, "number": 1, "label": "disco"} +{"file_name": "test_06574.png", "caption": "This is an R&B/pop music piece. There is a female vocalist singing melodically in the lead. The melody is being played on the electric guitar. The bass guitar is playing in the background. The rhythmic background consists of an electronic drum beat. The atmosphere is easygoing and generic. This piece could work well as an advertisement jingle.", "data_idx": 4032, "number": 2, "label": "disco"} +{"file_name": "test_06575.png", "caption": "This is an R&B/pop music piece. There is a female vocalist singing melodically in the lead. The melody is being played on the electric guitar. The bass guitar is playing in the background. The rhythmic background consists of an electronic drum beat. The atmosphere is easygoing and generic. This piece could work well as an advertisement jingle.", "data_idx": 4032, "number": 3, "label": "disco"} +{"file_name": "test_06576.png", "caption": "solo harmonic playing a single high note and bending it down a half step. This is followed by a male voice over.", "data_idx": 4033, "number": 0, "label": "blues"} +{"file_name": "test_06577.png", "caption": "solo harmonic playing a single high note and bending it down a half step. This is followed by a male voice over.", "data_idx": 4033, "number": 1, "label": "blues"} +{"file_name": "test_06578.png", "caption": "solo harmonic playing a single high note and bending it down a half step. This is followed by a male voice over.", "data_idx": 4033, "number": 2, "label": "blues"} +{"file_name": "test_06579.png", "caption": "solo harmonic playing a single high note and bending it down a half step. This is followed by a male voice over.", "data_idx": 4033, "number": 3, "label": "blues"} +{"file_name": "test_06580.png", "caption": "This music is an instrumental tutorial. A male musician is keeping count in French to the drone-like tune of a French Horn. The audio is not clear and has a lot of static.", "data_idx": 4035, "number": 0, "label": "reggae"} +{"file_name": "test_06581.png", "caption": "This music is an instrumental tutorial. A male musician is keeping count in French to the drone-like tune of a French Horn. The audio is not clear and has a lot of static.", "data_idx": 4035, "number": 1, "label": "reggae"} +{"file_name": "test_06582.png", "caption": "This music is an instrumental tutorial. A male musician is keeping count in French to the drone-like tune of a French Horn. The audio is not clear and has a lot of static.", "data_idx": 4035, "number": 2, "label": "reggae"} +{"file_name": "test_06583.png", "caption": "This music is an instrumental tutorial. A male musician is keeping count in French to the drone-like tune of a French Horn. The audio is not clear and has a lot of static.", "data_idx": 4035, "number": 3, "label": "reggae"} +{"file_name": "test_06584.png", "caption": "The song is an instrumental. The tempo is medium with a brass including trumpets and saxophones playing in harmony, wooden xylophones and Latin percussions play accompaniment to the band along with a male singer. The song is exciting and groovy. The audio quality is poor and probably a home recording.", "data_idx": 4039, "number": 0, "label": "reggae"} +{"file_name": "test_06585.png", "caption": "The song is an instrumental. The tempo is medium with a brass including trumpets and saxophones playing in harmony, wooden xylophones and Latin percussions play accompaniment to the band along with a male singer. The song is exciting and groovy. The audio quality is poor and probably a home recording.", "data_idx": 4039, "number": 1, "label": "reggae"} +{"file_name": "test_06586.png", "caption": "The song is an instrumental. The tempo is medium with a brass including trumpets and saxophones playing in harmony, wooden xylophones and Latin percussions play accompaniment to the band along with a male singer. The song is exciting and groovy. The audio quality is poor and probably a home recording.", "data_idx": 4039, "number": 2, "label": "reggae"} +{"file_name": "test_06587.png", "caption": "The song is an instrumental. The tempo is medium with a brass including trumpets and saxophones playing in harmony, wooden xylophones and Latin percussions play accompaniment to the band along with a male singer. The song is exciting and groovy. The audio quality is poor and probably a home recording.", "data_idx": 4039, "number": 3, "label": "reggae"} +{"file_name": "test_06588.png", "caption": "This is an instrumental latin music piece. There is a keyboard playing a few notes. The acoustic drums start playing initially by hitting a small cymbal repeatedly and then performing drum rolls on the snare drum. The drum rolls sound very much alike to the style of a marching band. Parts of this recording can be sampled for use in beat-making.", "data_idx": 4040, "number": 0, "label": "classical"} +{"file_name": "test_06589.png", "caption": "This is an instrumental latin music piece. There is a keyboard playing a few notes. The acoustic drums start playing initially by hitting a small cymbal repeatedly and then performing drum rolls on the snare drum. The drum rolls sound very much alike to the style of a marching band. Parts of this recording can be sampled for use in beat-making.", "data_idx": 4040, "number": 1, "label": "classical"} +{"file_name": "test_06590.png", "caption": "This is an instrumental latin music piece. There is a keyboard playing a few notes. The acoustic drums start playing initially by hitting a small cymbal repeatedly and then performing drum rolls on the snare drum. The drum rolls sound very much alike to the style of a marching band. Parts of this recording can be sampled for use in beat-making.", "data_idx": 4040, "number": 2, "label": "classical"} +{"file_name": "test_06591.png", "caption": "This is an instrumental latin music piece. There is a keyboard playing a few notes. The acoustic drums start playing initially by hitting a small cymbal repeatedly and then performing drum rolls on the snare drum. The drum rolls sound very much alike to the style of a marching band. Parts of this recording can be sampled for use in beat-making.", "data_idx": 4040, "number": 3, "label": "classical"} +{"file_name": "test_06592.png", "caption": "This audio contains digital drums with an open hi hat. A distorted e-guitar and an e-bass are both playing the same melody in the lower register. A synth pluck is playing a simple repeating rhythmic melody on top. You can hear the sound of glass breaking. This song may be playing at a live festival.", "data_idx": 4042, "number": 0, "label": "hiphop"} +{"file_name": "test_06593.png", "caption": "This audio contains digital drums with an open hi hat. A distorted e-guitar and an e-bass are both playing the same melody in the lower register. A synth pluck is playing a simple repeating rhythmic melody on top. You can hear the sound of glass breaking. This song may be playing at a live festival.", "data_idx": 4042, "number": 1, "label": "hiphop"} +{"file_name": "test_06594.png", "caption": "The low quality recording features an arpeggiated electric guitar melody. It sounds passionate, fun, happy and joyful. The recording is noisy and in mono.", "data_idx": 4043, "number": 0, "label": "reggae"} +{"file_name": "test_06595.png", "caption": "The low quality recording features an arpeggiated electric guitar melody. It sounds passionate, fun, happy and joyful. The recording is noisy and in mono.", "data_idx": 4043, "number": 1, "label": "reggae"} +{"file_name": "test_06596.png", "caption": "The low quality recording features an arpeggiated electric guitar melody. It sounds passionate, fun, happy and joyful. The recording is noisy and in mono.", "data_idx": 4043, "number": 2, "label": "reggae"} +{"file_name": "test_06597.png", "caption": "The low quality recording features an arpeggiated electric guitar melody. It sounds passionate, fun, happy and joyful. The recording is noisy and in mono.", "data_idx": 4043, "number": 3, "label": "reggae"} +{"file_name": "test_06598.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with violin harmony, keyboard accompaniment, saxophone, digital drum, tabla and tambourine beats. The song is mellow, soft, melodic, soothing, calming , devotional and euphonious. This song is a Tamil Christian Song.", "data_idx": 4045, "number": 0, "label": "pop"} +{"file_name": "test_06599.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with violin harmony, keyboard accompaniment, saxophone, digital drum, tabla and tambourine beats. The song is mellow, soft, melodic, soothing, calming , devotional and euphonious. This song is a Tamil Christian Song.", "data_idx": 4045, "number": 1, "label": "pop"} +{"file_name": "test_06600.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with violin harmony, keyboard accompaniment, saxophone, digital drum, tabla and tambourine beats. The song is mellow, soft, melodic, soothing, calming , devotional and euphonious. This song is a Tamil Christian Song.", "data_idx": 4045, "number": 2, "label": "pop"} +{"file_name": "test_06601.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with violin harmony, keyboard accompaniment, saxophone, digital drum, tabla and tambourine beats. The song is mellow, soft, melodic, soothing, calming , devotional and euphonious. This song is a Tamil Christian Song.", "data_idx": 4045, "number": 3, "label": "pop"} +{"file_name": "test_06602.png", "caption": "A digital kick in playing on every beat along with short voice samples with breathy sounds that sound seductive. Then the song changes into someone fingerpicking an acoustic guitar along to someone playing an acoustic snare/hihat with brushes. This first song may be playing in a club and the second one at a live concert.", "data_idx": 4049, "number": 0, "label": "hiphop"} +{"file_name": "test_06603.png", "caption": "A digital kick in playing on every beat along with short voice samples with breathy sounds that sound seductive. Then the song changes into someone fingerpicking an acoustic guitar along to someone playing an acoustic snare/hihat with brushes. This first song may be playing in a club and the second one at a live concert.", "data_idx": 4049, "number": 1, "label": "hiphop"} +{"file_name": "test_06604.png", "caption": "A male vocalist sings a soft melody in a foreign language. The tempo is slow with a piano harmony . The vocals are soft and subdued with ambient background sounds. The song is simple, mellow , melancholic and soft. This song is soft pop.", "data_idx": 4050, "number": 0, "label": "classical"} +{"file_name": "test_06605.png", "caption": "A male vocalist sings a soft melody in a foreign language. The tempo is slow with a piano harmony . The vocals are soft and subdued with ambient background sounds. The song is simple, mellow , melancholic and soft. This song is soft pop.", "data_idx": 4050, "number": 1, "label": "classical"} +{"file_name": "test_06606.png", "caption": "This is a cover of a pop music piece. There is a male vocalist singing melodically. The melody is being played by the acoustic guitar and the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. There is a mellow atmosphere in this piece. It could be used in the soundtrack of a drama TV series.", "data_idx": 4051, "number": 0, "label": "country"} +{"file_name": "test_06607.png", "caption": "This is a cover of a pop music piece. There is a male vocalist singing melodically. The melody is being played by the acoustic guitar and the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. There is a mellow atmosphere in this piece. It could be used in the soundtrack of a drama TV series.", "data_idx": 4051, "number": 1, "label": "country"} +{"file_name": "test_06608.png", "caption": "This is a cover of a pop music piece. There is a male vocalist singing melodically. The melody is being played by the acoustic guitar and the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. There is a mellow atmosphere in this piece. It could be used in the soundtrack of a drama TV series.", "data_idx": 4051, "number": 2, "label": "country"} +{"file_name": "test_06609.png", "caption": "This is a cover of a pop music piece. There is a male vocalist singing melodically. The melody is being played by the acoustic guitar and the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a slow tempo acoustic drum beat. There is a mellow atmosphere in this piece. It could be used in the soundtrack of a drama TV series.", "data_idx": 4051, "number": 3, "label": "country"} +{"file_name": "test_06610.png", "caption": "This is a live performance of a jazz ballad music piece. The accordion is playing a solo as the main melody. There is an acoustic guitar playing the chords of the piece. The bass line is being played by the upright bass. The atmosphere is gentle. This piece is the perfect music to be played in the background at a coffee shop.", "data_idx": 4053, "number": 0, "label": "classical"} +{"file_name": "test_06611.png", "caption": "This is a live performance of a jazz ballad music piece. The accordion is playing a solo as the main melody. There is an acoustic guitar playing the chords of the piece. The bass line is being played by the upright bass. The atmosphere is gentle. This piece is the perfect music to be played in the background at a coffee shop.", "data_idx": 4053, "number": 1, "label": "classical"} +{"file_name": "test_06612.png", "caption": "This is a live performance of a jazz ballad music piece. The accordion is playing a solo as the main melody. There is an acoustic guitar playing the chords of the piece. The bass line is being played by the upright bass. The atmosphere is gentle. This piece is the perfect music to be played in the background at a coffee shop.", "data_idx": 4053, "number": 2, "label": "classical"} +{"file_name": "test_06613.png", "caption": "This is a live performance of a jazz ballad music piece. The accordion is playing a solo as the main melody. There is an acoustic guitar playing the chords of the piece. The bass line is being played by the upright bass. The atmosphere is gentle. This piece is the perfect music to be played in the background at a coffee shop.", "data_idx": 4053, "number": 3, "label": "classical"} +{"file_name": "test_06614.png", "caption": "The song track is an instrumental. The tempo is medium, with a guitarist demonstrating a guitar effects reverb pedal by playing related instrumental phrases. The song is trippy and exciting. The audio quality is poor as it\u2019s an amateur home recording .", "data_idx": 4055, "number": 0, "label": "classical"} +{"file_name": "test_06615.png", "caption": "The song track is an instrumental. The tempo is medium, with a guitarist demonstrating a guitar effects reverb pedal by playing related instrumental phrases. The song is trippy and exciting. The audio quality is poor as it\u2019s an amateur home recording .", "data_idx": 4055, "number": 1, "label": "classical"} +{"file_name": "test_06616.png", "caption": "The song track is an instrumental. The tempo is medium, with a guitarist demonstrating a guitar effects reverb pedal by playing related instrumental phrases. The song is trippy and exciting. The audio quality is poor as it\u2019s an amateur home recording .", "data_idx": 4055, "number": 2, "label": "classical"} +{"file_name": "test_06617.png", "caption": "The song track is an instrumental. The tempo is medium, with a guitarist demonstrating a guitar effects reverb pedal by playing related instrumental phrases. The song is trippy and exciting. The audio quality is poor as it\u2019s an amateur home recording .", "data_idx": 4055, "number": 3, "label": "classical"} +{"file_name": "test_06618.png", "caption": "The low quality recording features a Chiptune music that consists of a high pitched vocal singing over groovy synth keys, synth lead melody, laser synth effects, punchy kick, claps, shimmering hi hats and groovy synth bass. It sounds energetic, fun, happy and joyful - like something kids would listen to.", "data_idx": 4056, "number": 0, "label": "hiphop"} +{"file_name": "test_06619.png", "caption": "The low quality recording features a Chiptune music that consists of a high pitched vocal singing over groovy synth keys, synth lead melody, laser synth effects, punchy kick, claps, shimmering hi hats and groovy synth bass. It sounds energetic, fun, happy and joyful - like something kids would listen to.", "data_idx": 4056, "number": 1, "label": "hiphop"} +{"file_name": "test_06620.png", "caption": "The low quality recording features a Chiptune music that consists of a high pitched vocal singing over groovy synth keys, synth lead melody, laser synth effects, punchy kick, claps, shimmering hi hats and groovy synth bass. It sounds energetic, fun, happy and joyful - like something kids would listen to.", "data_idx": 4056, "number": 2, "label": "hiphop"} +{"file_name": "test_06621.png", "caption": "The low quality recording features a Chiptune music that consists of a high pitched vocal singing over groovy synth keys, synth lead melody, laser synth effects, punchy kick, claps, shimmering hi hats and groovy synth bass. It sounds energetic, fun, happy and joyful - like something kids would listen to.", "data_idx": 4056, "number": 3, "label": "hiphop"} +{"file_name": "test_06622.png", "caption": "This meditation song features a melody played on a flute. The tone of the flute is tremulous. This is accompanied by a Veena playing a repetitive melody. There are no other instruments in this song. There are no voices in this song. The mood of this song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 4058, "number": 0, "label": "jazz"} +{"file_name": "test_06623.png", "caption": "This meditation song features a melody played on a flute. The tone of the flute is tremulous. This is accompanied by a Veena playing a repetitive melody. There are no other instruments in this song. There are no voices in this song. The mood of this song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 4058, "number": 1, "label": "jazz"} +{"file_name": "test_06624.png", "caption": "This meditation song features a melody played on a flute. The tone of the flute is tremulous. This is accompanied by a Veena playing a repetitive melody. There are no other instruments in this song. There are no voices in this song. The mood of this song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 4058, "number": 2, "label": "jazz"} +{"file_name": "test_06625.png", "caption": "This meditation song features a melody played on a flute. The tone of the flute is tremulous. This is accompanied by a Veena playing a repetitive melody. There are no other instruments in this song. There are no voices in this song. The mood of this song is relaxing and calming. This song can be played in a meditation center.", "data_idx": 4058, "number": 3, "label": "jazz"} +{"file_name": "test_06626.png", "caption": "This is an upbeat, soulful and funky song. It's got a catchy and fast paced rhythm which makes it good to dance to. The singer has a raspy and energetic voice.", "data_idx": 4059, "number": 0, "label": "disco"} +{"file_name": "test_06627.png", "caption": "This is an upbeat, soulful and funky song. It's got a catchy and fast paced rhythm which makes it good to dance to. The singer has a raspy and energetic voice.", "data_idx": 4059, "number": 1, "label": "disco"} +{"file_name": "test_06628.png", "caption": "This is an upbeat, soulful and funky song. It's got a catchy and fast paced rhythm which makes it good to dance to. The singer has a raspy and energetic voice.", "data_idx": 4059, "number": 2, "label": "disco"} +{"file_name": "test_06629.png", "caption": "This is an upbeat, soulful and funky song. It's got a catchy and fast paced rhythm which makes it good to dance to. The singer has a raspy and energetic voice.", "data_idx": 4059, "number": 3, "label": "disco"} +{"file_name": "test_06630.png", "caption": "This music is an electronic instrumental. The tempo is fast with synthesiser articulation, electronically arranged music and digital drumming . The music is a vigorous, vivacious, energetic, hypnotic, psychedelic, new age, trance like and trippy. This is used in EDM/ Techno Pop.", "data_idx": 4060, "number": 0, "label": "hiphop"} +{"file_name": "test_06631.png", "caption": "This music is an electronic instrumental. The tempo is fast with synthesiser articulation, electronically arranged music and digital drumming . The music is a vigorous, vivacious, energetic, hypnotic, psychedelic, new age, trance like and trippy. This is used in EDM/ Techno Pop.", "data_idx": 4060, "number": 1, "label": "hiphop"} +{"file_name": "test_06632.png", "caption": "This salsa song contains percussive elements as maracas,cowbell and bongos creating a typical salsa rhythm spread across both sides of the speakers. An e-bass is playing a complex walking bassline. An acoustic piano is playing a melody up and down the scales along with backing vocals singing in harmony as a countermelody to the male lead voice singing in the midrange. This song may be playing in a latin bar.", "data_idx": 4062, "number": 0, "label": "reggae"} +{"file_name": "test_06633.png", "caption": "This salsa song contains percussive elements as maracas,cowbell and bongos creating a typical salsa rhythm spread across both sides of the speakers. An e-bass is playing a complex walking bassline. An acoustic piano is playing a melody up and down the scales along with backing vocals singing in harmony as a countermelody to the male lead voice singing in the midrange. This song may be playing in a latin bar.", "data_idx": 4062, "number": 1, "label": "reggae"} +{"file_name": "test_06634.png", "caption": "This salsa song contains percussive elements as maracas,cowbell and bongos creating a typical salsa rhythm spread across both sides of the speakers. An e-bass is playing a complex walking bassline. An acoustic piano is playing a melody up and down the scales along with backing vocals singing in harmony as a countermelody to the male lead voice singing in the midrange. This song may be playing in a latin bar.", "data_idx": 4062, "number": 2, "label": "reggae"} +{"file_name": "test_06635.png", "caption": "This salsa song contains percussive elements as maracas,cowbell and bongos creating a typical salsa rhythm spread across both sides of the speakers. An e-bass is playing a complex walking bassline. An acoustic piano is playing a melody up and down the scales along with backing vocals singing in harmony as a countermelody to the male lead voice singing in the midrange. This song may be playing in a latin bar.", "data_idx": 4062, "number": 3, "label": "reggae"} +{"file_name": "test_06636.png", "caption": "The low quality recording features a live performance of a folk song that contains an accordion melody playing over acoustic rhythm guitar, groovy bass, punchy kick and snare hits, shimmering cymbals, saxophone and trumpet melody. It sounds passionate and easygoing, even though the recording is noisy and the stereo image is unbalanced, due to the fact that the sound is leaning towards the left channel.", "data_idx": 4063, "number": 0, "label": "blues"} +{"file_name": "test_06637.png", "caption": "The low quality recording features a live performance of a folk song that contains an accordion melody playing over acoustic rhythm guitar, groovy bass, punchy kick and snare hits, shimmering cymbals, saxophone and trumpet melody. It sounds passionate and easygoing, even though the recording is noisy and the stereo image is unbalanced, due to the fact that the sound is leaning towards the left channel.", "data_idx": 4063, "number": 1, "label": "blues"} +{"file_name": "test_06638.png", "caption": "The low quality recording features a live performance of a folk song that contains an accordion melody playing over acoustic rhythm guitar, groovy bass, punchy kick and snare hits, shimmering cymbals, saxophone and trumpet melody. It sounds passionate and easygoing, even though the recording is noisy and the stereo image is unbalanced, due to the fact that the sound is leaning towards the left channel.", "data_idx": 4063, "number": 2, "label": "blues"} +{"file_name": "test_06639.png", "caption": "The low quality recording features a live performance of a folk song that contains an accordion melody playing over acoustic rhythm guitar, groovy bass, punchy kick and snare hits, shimmering cymbals, saxophone and trumpet melody. It sounds passionate and easygoing, even though the recording is noisy and the stereo image is unbalanced, due to the fact that the sound is leaning towards the left channel.", "data_idx": 4063, "number": 3, "label": "blues"} +{"file_name": "test_06640.png", "caption": "The Low Quality Recording features a widely spread simple strings melody. The recording is a bit noisy.", "data_idx": 4066, "number": 0, "label": "hiphop"} +{"file_name": "test_06641.png", "caption": "The Low Quality Recording features a widely spread simple strings melody. The recording is a bit noisy.", "data_idx": 4066, "number": 1, "label": "hiphop"} +{"file_name": "test_06642.png", "caption": "This song contains someone playing a melody on a flute panning to the right side of the speakers. A lower synth drone pad is underlining the flute along with more synth pad sounds and wind. Then a soft riser comes in and a digital drum starts playing along to a synth bass sound. This song may be playing in an indie movie.", "data_idx": 4067, "number": 0, "label": "hiphop"} +{"file_name": "test_06643.png", "caption": "This song contains someone playing a melody on a flute panning to the right side of the speakers. A lower synth drone pad is underlining the flute along with more synth pad sounds and wind. Then a soft riser comes in and a digital drum starts playing along to a synth bass sound. This song may be playing in an indie movie.", "data_idx": 4067, "number": 1, "label": "hiphop"} +{"file_name": "test_06644.png", "caption": "This song contains someone playing a melody on a flute panning to the right side of the speakers. A lower synth drone pad is underlining the flute along with more synth pad sounds and wind. Then a soft riser comes in and a digital drum starts playing along to a synth bass sound. This song may be playing in an indie movie.", "data_idx": 4067, "number": 2, "label": "hiphop"} +{"file_name": "test_06645.png", "caption": "This song contains someone playing a melody on a flute panning to the right side of the speakers. A lower synth drone pad is underlining the flute along with more synth pad sounds and wind. Then a soft riser comes in and a digital drum starts playing along to a synth bass sound. This song may be playing in an indie movie.", "data_idx": 4067, "number": 3, "label": "hiphop"} +{"file_name": "test_06646.png", "caption": "The Reggae song features harmonizing male vocals singing over wooden percussion, punchy snare and kick hits, claps, groovy bass, offbeat piano chords, followed by flat male vocals. It sounds energetic, happy, fun, groovy and funky.", "data_idx": 4070, "number": 0, "label": "reggae"} +{"file_name": "test_06647.png", "caption": "The Reggae song features harmonizing male vocals singing over wooden percussion, punchy snare and kick hits, claps, groovy bass, offbeat piano chords, followed by flat male vocals. It sounds energetic, happy, fun, groovy and funky.", "data_idx": 4070, "number": 1, "label": "reggae"} +{"file_name": "test_06648.png", "caption": "The Reggae song features harmonizing male vocals singing over wooden percussion, punchy snare and kick hits, claps, groovy bass, offbeat piano chords, followed by flat male vocals. It sounds energetic, happy, fun, groovy and funky.", "data_idx": 4070, "number": 2, "label": "reggae"} +{"file_name": "test_06649.png", "caption": "The Reggae song features harmonizing male vocals singing over wooden percussion, punchy snare and kick hits, claps, groovy bass, offbeat piano chords, followed by flat male vocals. It sounds energetic, happy, fun, groovy and funky.", "data_idx": 4070, "number": 3, "label": "reggae"} +{"file_name": "test_06650.png", "caption": "This clip features a drum solo being played on a rock drum kit. The snare, kick, toms, hi-hat and splash are being struck. A pattern is played on this percussion. There are no other instruments in this song. There are no voices in this song. This song can be played in a drum instruction video.", "data_idx": 4072, "number": 0, "label": "metal"} +{"file_name": "test_06651.png", "caption": "This clip features a drum solo being played on a rock drum kit. The snare, kick, toms, hi-hat and splash are being struck. A pattern is played on this percussion. There are no other instruments in this song. There are no voices in this song. This song can be played in a drum instruction video.", "data_idx": 4072, "number": 1, "label": "metal"} +{"file_name": "test_06652.png", "caption": "This clip features a drum solo being played on a rock drum kit. The snare, kick, toms, hi-hat and splash are being struck. A pattern is played on this percussion. There are no other instruments in this song. There are no voices in this song. This song can be played in a drum instruction video.", "data_idx": 4072, "number": 2, "label": "metal"} +{"file_name": "test_06653.png", "caption": "This clip features a drum solo being played on a rock drum kit. The snare, kick, toms, hi-hat and splash are being struck. A pattern is played on this percussion. There are no other instruments in this song. There are no voices in this song. This song can be played in a drum instruction video.", "data_idx": 4072, "number": 3, "label": "metal"} +{"file_name": "test_06654.png", "caption": "This music is instrumental. The tempo is medium with an intense didgeridoo harmony, violin melody and keyboard accompaniment. The music is eerie,suspenseful; grim, sinister, scary and spooky. It is the sound track of a movie.", "data_idx": 4076, "number": 0, "label": "classical"} +{"file_name": "test_06655.png", "caption": "This music is instrumental. The tempo is medium with an intense didgeridoo harmony, violin melody and keyboard accompaniment. The music is eerie,suspenseful; grim, sinister, scary and spooky. It is the sound track of a movie.", "data_idx": 4076, "number": 1, "label": "classical"} +{"file_name": "test_06656.png", "caption": "This music is instrumental. The tempo is medium with an intense didgeridoo harmony, violin melody and keyboard accompaniment. The music is eerie,suspenseful; grim, sinister, scary and spooky. It is the sound track of a movie.", "data_idx": 4076, "number": 2, "label": "classical"} +{"file_name": "test_06657.png", "caption": "This music is instrumental. The tempo is medium with an intense didgeridoo harmony, violin melody and keyboard accompaniment. The music is eerie,suspenseful; grim, sinister, scary and spooky. It is the sound track of a movie.", "data_idx": 4076, "number": 3, "label": "classical"} +{"file_name": "test_06658.png", "caption": "The low quality recording features house music generated from a digital drum machine. It consists of boomy synth bass played over shimmering hi hats, snappy snare and punchy kick. It sounds groovy and a bit dull.", "data_idx": 4078, "number": 0, "label": "reggae"} +{"file_name": "test_06659.png", "caption": "The low quality recording features house music generated from a digital drum machine. It consists of boomy synth bass played over shimmering hi hats, snappy snare and punchy kick. It sounds groovy and a bit dull.", "data_idx": 4078, "number": 1, "label": "reggae"} +{"file_name": "test_06660.png", "caption": "The low quality recording features house music generated from a digital drum machine. It consists of boomy synth bass played over shimmering hi hats, snappy snare and punchy kick. It sounds groovy and a bit dull.", "data_idx": 4078, "number": 2, "label": "reggae"} +{"file_name": "test_06661.png", "caption": "The low quality recording features house music generated from a digital drum machine. It consists of boomy synth bass played over shimmering hi hats, snappy snare and punchy kick. It sounds groovy and a bit dull.", "data_idx": 4078, "number": 3, "label": "reggae"} +{"file_name": "test_06662.png", "caption": "This song contains a drumbeat with a funky bassline. A male voice is singing in a higher range. in the background you can hear different voice samples and scratching. This song may be playing while cruising down the street in your car.", "data_idx": 4080, "number": 0, "label": "reggae"} +{"file_name": "test_06663.png", "caption": "This song contains a drumbeat with a funky bassline. A male voice is singing in a higher range. in the background you can hear different voice samples and scratching. This song may be playing while cruising down the street in your car.", "data_idx": 4080, "number": 1, "label": "reggae"} +{"file_name": "test_06664.png", "caption": "This song contains a drumbeat with a funky bassline. A male voice is singing in a higher range. in the background you can hear different voice samples and scratching. This song may be playing while cruising down the street in your car.", "data_idx": 4080, "number": 2, "label": "reggae"} +{"file_name": "test_06665.png", "caption": "This song contains a drumbeat with a funky bassline. A male voice is singing in a higher range. in the background you can hear different voice samples and scratching. This song may be playing while cruising down the street in your car.", "data_idx": 4080, "number": 3, "label": "reggae"} +{"file_name": "test_06666.png", "caption": "The low quality recording features a groovy piano melody, mellow cello melody and brass melody. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 4082, "number": 0, "label": "classical"} +{"file_name": "test_06667.png", "caption": "The low quality recording features a groovy piano melody, mellow cello melody and brass melody. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 4082, "number": 1, "label": "classical"} +{"file_name": "test_06668.png", "caption": "The low quality recording features a groovy piano melody, mellow cello melody and brass melody. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 4082, "number": 2, "label": "classical"} +{"file_name": "test_06669.png", "caption": "The low quality recording features a groovy piano melody, mellow cello melody and brass melody. It sounds emotional and passionate, while the recording is noisy.", "data_idx": 4082, "number": 3, "label": "classical"} +{"file_name": "test_06670.png", "caption": "The low quality recording features an arpeggiated theremin melody being played. The recording is noisy, in mono and it sounds weird and gives off some spacey vibes.", "data_idx": 4083, "number": 0, "label": "hiphop"} +{"file_name": "test_06671.png", "caption": "The low quality recording features an arpeggiated theremin melody being played. The recording is noisy, in mono and it sounds weird and gives off some spacey vibes.", "data_idx": 4083, "number": 1, "label": "hiphop"} +{"file_name": "test_06672.png", "caption": "The low quality recording features an arpeggiated theremin melody being played. The recording is noisy, in mono and it sounds weird and gives off some spacey vibes.", "data_idx": 4083, "number": 2, "label": "hiphop"} +{"file_name": "test_06673.png", "caption": "The low quality recording features an arpeggiated theremin melody being played. The recording is noisy, in mono and it sounds weird and gives off some spacey vibes.", "data_idx": 4083, "number": 3, "label": "hiphop"} +{"file_name": "test_06674.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, shimmering open hats, tinny wide minimal percussions, low groovy bass, simple electric guitar melody and reverberant snappy rimshots. It sounds dark, energetic, suspenseful and exciting.", "data_idx": 4084, "number": 0, "label": "hiphop"} +{"file_name": "test_06675.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, shimmering open hats, tinny wide minimal percussions, low groovy bass, simple electric guitar melody and reverberant snappy rimshots. It sounds dark, energetic, suspenseful and exciting.", "data_idx": 4084, "number": 1, "label": "hiphop"} +{"file_name": "test_06676.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, shimmering open hats, tinny wide minimal percussions, low groovy bass, simple electric guitar melody and reverberant snappy rimshots. It sounds dark, energetic, suspenseful and exciting.", "data_idx": 4084, "number": 2, "label": "hiphop"} +{"file_name": "test_06677.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern, shimmering open hats, tinny wide minimal percussions, low groovy bass, simple electric guitar melody and reverberant snappy rimshots. It sounds dark, energetic, suspenseful and exciting.", "data_idx": 4084, "number": 3, "label": "hiphop"} +{"file_name": "test_06678.png", "caption": "The R&B song features a melancholic female vocal singing over mellow piano melody, electric guitar chords, synth lead melody, groovy bass, organ keys chords, shimmering hi hats, punchy snare and soft kick hits. It sounds emotional, passionate and heartfelt.", "data_idx": 4090, "number": 0, "label": "rock"} +{"file_name": "test_06679.png", "caption": "The R&B song features a melancholic female vocal singing over mellow piano melody, electric guitar chords, synth lead melody, groovy bass, organ keys chords, shimmering hi hats, punchy snare and soft kick hits. It sounds emotional, passionate and heartfelt.", "data_idx": 4090, "number": 1, "label": "rock"} +{"file_name": "test_06680.png", "caption": "The R&B song features a melancholic female vocal singing over mellow piano melody, electric guitar chords, synth lead melody, groovy bass, organ keys chords, shimmering hi hats, punchy snare and soft kick hits. It sounds emotional, passionate and heartfelt.", "data_idx": 4090, "number": 2, "label": "rock"} +{"file_name": "test_06681.png", "caption": "The R&B song features a melancholic female vocal singing over mellow piano melody, electric guitar chords, synth lead melody, groovy bass, organ keys chords, shimmering hi hats, punchy snare and soft kick hits. It sounds emotional, passionate and heartfelt.", "data_idx": 4090, "number": 3, "label": "rock"} +{"file_name": "test_06682.png", "caption": "This is the live performance of a bluegrass gospel music piece. There are male vocals synchronously harmony singing which is called a \"stack\" in bluegrass music. The melody is being played by the fiddle, the banjo, the acoustic guitar and the mandolin. There is a cozy atmosphere in this piece. It could be playing in the background of an American roadside diner. This piece could also be played at a Christian religious event.", "data_idx": 4092, "number": 0, "label": "country"} +{"file_name": "test_06683.png", "caption": "This is the live performance of a bluegrass gospel music piece. There are male vocals synchronously harmony singing which is called a \"stack\" in bluegrass music. The melody is being played by the fiddle, the banjo, the acoustic guitar and the mandolin. There is a cozy atmosphere in this piece. It could be playing in the background of an American roadside diner. This piece could also be played at a Christian religious event.", "data_idx": 4092, "number": 1, "label": "country"} +{"file_name": "test_06684.png", "caption": "This is the live performance of a bluegrass gospel music piece. There are male vocals synchronously harmony singing which is called a \"stack\" in bluegrass music. The melody is being played by the fiddle, the banjo, the acoustic guitar and the mandolin. There is a cozy atmosphere in this piece. It could be playing in the background of an American roadside diner. This piece could also be played at a Christian religious event.", "data_idx": 4092, "number": 2, "label": "country"} +{"file_name": "test_06685.png", "caption": "This is the live performance of a bluegrass gospel music piece. There are male vocals synchronously harmony singing which is called a \"stack\" in bluegrass music. The melody is being played by the fiddle, the banjo, the acoustic guitar and the mandolin. There is a cozy atmosphere in this piece. It could be playing in the background of an American roadside diner. This piece could also be played at a Christian religious event.", "data_idx": 4092, "number": 3, "label": "country"} +{"file_name": "test_06686.png", "caption": "This music is instrumental. The tempo is fast with a hypnotic harmony of the didgeridoo. The music is unique, catchy,engaging, mesmerising and hypnotic because of the continuous droning. This music is a Didgeridoo instrumental.", "data_idx": 4093, "number": 0, "label": "metal"} +{"file_name": "test_06687.png", "caption": "This music is instrumental. The tempo is fast with a hypnotic harmony of the didgeridoo. The music is unique, catchy,engaging, mesmerising and hypnotic because of the continuous droning. This music is a Didgeridoo instrumental.", "data_idx": 4093, "number": 1, "label": "metal"} +{"file_name": "test_06688.png", "caption": "This music is instrumental. The tempo is fast with a hypnotic harmony of the didgeridoo. The music is unique, catchy,engaging, mesmerising and hypnotic because of the continuous droning. This music is a Didgeridoo instrumental.", "data_idx": 4093, "number": 2, "label": "metal"} +{"file_name": "test_06689.png", "caption": "This music is instrumental. The tempo is fast with a hypnotic harmony of the didgeridoo. The music is unique, catchy,engaging, mesmerising and hypnotic because of the continuous droning. This music is a Didgeridoo instrumental.", "data_idx": 4093, "number": 3, "label": "metal"} +{"file_name": "test_06690.png", "caption": "The low quality recording features harmonizing male vocals singing over a song played on playback, followed by a flat male vocal talking. At the end of the recording, there is a male laughter. It sounds fun and the recording is noisy.", "data_idx": 4097, "number": 0, "label": "reggae"} +{"file_name": "test_06691.png", "caption": "The low quality recording features harmonizing male vocals singing over a song played on playback, followed by a flat male vocal talking. At the end of the recording, there is a male laughter. It sounds fun and the recording is noisy.", "data_idx": 4097, "number": 1, "label": "reggae"} +{"file_name": "test_06692.png", "caption": "The low quality recording features harmonizing male vocals singing over a song played on playback, followed by a flat male vocal talking. At the end of the recording, there is a male laughter. It sounds fun and the recording is noisy.", "data_idx": 4097, "number": 2, "label": "reggae"} +{"file_name": "test_06693.png", "caption": "The low quality recording features harmonizing male vocals singing over a song played on playback, followed by a flat male vocal talking. At the end of the recording, there is a male laughter. It sounds fun and the recording is noisy.", "data_idx": 4097, "number": 3, "label": "reggae"} +{"file_name": "test_06694.png", "caption": "This music is a grim instrumental. The tempo is slow with a Violin symphony. The deep bass of the cello to the accompaniment of a steady, droning violin melody and the sound of a ringing bell give it a very intense and serious vibe. The music is enthralling, powerful,impactful, intense, sinister, scary and anticipatory. This is an orchestral harmony.", "data_idx": 4098, "number": 0, "label": "classical"} +{"file_name": "test_06695.png", "caption": "This music is a grim instrumental. The tempo is slow with a Violin symphony. The deep bass of the cello to the accompaniment of a steady, droning violin melody and the sound of a ringing bell give it a very intense and serious vibe. The music is enthralling, powerful,impactful, intense, sinister, scary and anticipatory. This is an orchestral harmony.", "data_idx": 4098, "number": 1, "label": "classical"} +{"file_name": "test_06696.png", "caption": "The low quality recording features a rock song that consists of an electric guitar melody, smooth bass, shimmering shakers, snappy rimshots and soft male vocals singing over it. The recording is really noisy and in mono. It sounds cool, groovy and easygoing.", "data_idx": 4099, "number": 0, "label": "blues"} +{"file_name": "test_06697.png", "caption": "The low quality recording features a rock song that consists of an electric guitar melody, smooth bass, shimmering shakers, snappy rimshots and soft male vocals singing over it. The recording is really noisy and in mono. It sounds cool, groovy and easygoing.", "data_idx": 4099, "number": 1, "label": "blues"} +{"file_name": "test_06698.png", "caption": "The low quality recording features a rock song that consists of an electric guitar melody, smooth bass, shimmering shakers, snappy rimshots and soft male vocals singing over it. The recording is really noisy and in mono. It sounds cool, groovy and easygoing.", "data_idx": 4099, "number": 2, "label": "blues"} +{"file_name": "test_06699.png", "caption": "The low quality recording features a rock song that consists of an electric guitar melody, smooth bass, shimmering shakers, snappy rimshots and soft male vocals singing over it. The recording is really noisy and in mono. It sounds cool, groovy and easygoing.", "data_idx": 4099, "number": 3, "label": "blues"} +{"file_name": "test_06700.png", "caption": "This is the recording of a gear showcase. There is a male voice advertising an effect amp. The distorted electric guitar is playing a crunchy-sounding riff with the added effect of the chorus amp. The atmosphere is hard-hitting. Some parts of this recording could be used in heavy guitar samples for beat-making. Such parts could also work in sections of an advertisement jingle.", "data_idx": 4102, "number": 0, "label": "hiphop"} +{"file_name": "test_06701.png", "caption": "This is the recording of a gear showcase. There is a male voice advertising an effect amp. The distorted electric guitar is playing a crunchy-sounding riff with the added effect of the chorus amp. The atmosphere is hard-hitting. Some parts of this recording could be used in heavy guitar samples for beat-making. Such parts could also work in sections of an advertisement jingle.", "data_idx": 4102, "number": 1, "label": "hiphop"} +{"file_name": "test_06702.png", "caption": "This is the recording of a gear showcase. There is a male voice advertising an effect amp. The distorted electric guitar is playing a crunchy-sounding riff with the added effect of the chorus amp. The atmosphere is hard-hitting. Some parts of this recording could be used in heavy guitar samples for beat-making. Such parts could also work in sections of an advertisement jingle.", "data_idx": 4102, "number": 2, "label": "hiphop"} +{"file_name": "test_06703.png", "caption": "This is the recording of a gear showcase. There is a male voice advertising an effect amp. The distorted electric guitar is playing a crunchy-sounding riff with the added effect of the chorus amp. The atmosphere is hard-hitting. Some parts of this recording could be used in heavy guitar samples for beat-making. Such parts could also work in sections of an advertisement jingle.", "data_idx": 4102, "number": 3, "label": "hiphop"} +{"file_name": "test_06704.png", "caption": "This is an instrumental rock music piece recording in the style of blues. There is an electric guitar playing a solo using the shredding technique. The backing track consists of a piano, a bass guitar and acoustic drums. There is a groovy feel to it. Parts of this recording could be sampled for use in beat-making.", "data_idx": 4112, "number": 0, "label": "rock"} +{"file_name": "test_06705.png", "caption": "This is an instrumental rock music piece recording in the style of blues. There is an electric guitar playing a solo using the shredding technique. The backing track consists of a piano, a bass guitar and acoustic drums. There is a groovy feel to it. Parts of this recording could be sampled for use in beat-making.", "data_idx": 4112, "number": 1, "label": "rock"} +{"file_name": "test_06706.png", "caption": "This is an instrumental rock music piece recording in the style of blues. There is an electric guitar playing a solo using the shredding technique. The backing track consists of a piano, a bass guitar and acoustic drums. There is a groovy feel to it. Parts of this recording could be sampled for use in beat-making.", "data_idx": 4112, "number": 2, "label": "rock"} +{"file_name": "test_06707.png", "caption": "This is an instrumental rock music piece recording in the style of blues. There is an electric guitar playing a solo using the shredding technique. The backing track consists of a piano, a bass guitar and acoustic drums. There is a groovy feel to it. Parts of this recording could be sampled for use in beat-making.", "data_idx": 4112, "number": 3, "label": "rock"} +{"file_name": "test_06708.png", "caption": "This music is an animated instrumental. The tempo is fast with a playful trumpet harmony, trombone, synthesised sounds and sounds of glass shattering,punching and grunting. This music is a background score for an animated movie for kids.", "data_idx": 4113, "number": 0, "label": "hiphop"} +{"file_name": "test_06709.png", "caption": "This music is an animated instrumental. The tempo is fast with a playful trumpet harmony, trombone, synthesised sounds and sounds of glass shattering,punching and grunting. This music is a background score for an animated movie for kids.", "data_idx": 4113, "number": 1, "label": "hiphop"} +{"file_name": "test_06710.png", "caption": "This is an alternative metal music piece. There is a male vocal singing loudly initially with a cleaner character and then with a heavy vocal fry. The distorted electric guitar is playing a heavy riff with the bass guitar in the background. The rhythmic background consists of an aggressive acoustic drum metal beat. The atmosphere is rebellious and violent. This piece can be used in the soundtrack of an action video game or a thriller movie during scenes of a face-off or a combat.", "data_idx": 4114, "number": 0, "label": "metal"} +{"file_name": "test_06711.png", "caption": "This is an alternative metal music piece. There is a male vocal singing loudly initially with a cleaner character and then with a heavy vocal fry. The distorted electric guitar is playing a heavy riff with the bass guitar in the background. The rhythmic background consists of an aggressive acoustic drum metal beat. The atmosphere is rebellious and violent. This piece can be used in the soundtrack of an action video game or a thriller movie during scenes of a face-off or a combat.", "data_idx": 4114, "number": 1, "label": "metal"} +{"file_name": "test_06712.png", "caption": "This is an alternative metal music piece. There is a male vocal singing loudly initially with a cleaner character and then with a heavy vocal fry. The distorted electric guitar is playing a heavy riff with the bass guitar in the background. The rhythmic background consists of an aggressive acoustic drum metal beat. The atmosphere is rebellious and violent. This piece can be used in the soundtrack of an action video game or a thriller movie during scenes of a face-off or a combat.", "data_idx": 4114, "number": 2, "label": "metal"} +{"file_name": "test_06713.png", "caption": "This is an alternative metal music piece. There is a male vocal singing loudly initially with a cleaner character and then with a heavy vocal fry. The distorted electric guitar is playing a heavy riff with the bass guitar in the background. The rhythmic background consists of an aggressive acoustic drum metal beat. The atmosphere is rebellious and violent. This piece can be used in the soundtrack of an action video game or a thriller movie during scenes of a face-off or a combat.", "data_idx": 4114, "number": 3, "label": "metal"} +{"file_name": "test_06714.png", "caption": "This is an instrumental harp cover of a heavy metal music piece. The atmosphere of the recording is lively. This piece could be used in the soundtrack of an arcade video game. It could also be sampled for use in beat-making.", "data_idx": 4115, "number": 0, "label": "classical"} +{"file_name": "test_06715.png", "caption": "This is an instrumental harp cover of a heavy metal music piece. The atmosphere of the recording is lively. This piece could be used in the soundtrack of an arcade video game. It could also be sampled for use in beat-making.", "data_idx": 4115, "number": 1, "label": "classical"} +{"file_name": "test_06716.png", "caption": "This is an instrumental harp cover of a heavy metal music piece. The atmosphere of the recording is lively. This piece could be used in the soundtrack of an arcade video game. It could also be sampled for use in beat-making.", "data_idx": 4115, "number": 2, "label": "classical"} +{"file_name": "test_06717.png", "caption": "This is an instrumental harp cover of a heavy metal music piece. The atmosphere of the recording is lively. This piece could be used in the soundtrack of an arcade video game. It could also be sampled for use in beat-making.", "data_idx": 4115, "number": 3, "label": "classical"} +{"file_name": "test_06718.png", "caption": "A male vocalist sings this powerful pop. The tempo is medium fast with an emphatic and groovy bass line, lively trumpet harmony, piano accompaniment, electric guitar rhythm, tambourine beats and infectious drums. The song is lively,spirited, engaging, vivacious,passionate, compelling and ambient with powerful vocals . This Song is an R&B/Funk.", "data_idx": 4116, "number": 0, "label": "disco"} +{"file_name": "test_06719.png", "caption": "A male vocalist sings this powerful pop. The tempo is medium fast with an emphatic and groovy bass line, lively trumpet harmony, piano accompaniment, electric guitar rhythm, tambourine beats and infectious drums. The song is lively,spirited, engaging, vivacious,passionate, compelling and ambient with powerful vocals . This Song is an R&B/Funk.", "data_idx": 4116, "number": 1, "label": "disco"} +{"file_name": "test_06720.png", "caption": "A male vocalist sings this powerful pop. The tempo is medium fast with an emphatic and groovy bass line, lively trumpet harmony, piano accompaniment, electric guitar rhythm, tambourine beats and infectious drums. The song is lively,spirited, engaging, vivacious,passionate, compelling and ambient with powerful vocals . This Song is an R&B/Funk.", "data_idx": 4116, "number": 2, "label": "disco"} +{"file_name": "test_06721.png", "caption": "A male vocalist sings this powerful pop. The tempo is medium fast with an emphatic and groovy bass line, lively trumpet harmony, piano accompaniment, electric guitar rhythm, tambourine beats and infectious drums. The song is lively,spirited, engaging, vivacious,passionate, compelling and ambient with powerful vocals . This Song is an R&B/Funk.", "data_idx": 4116, "number": 3, "label": "disco"} +{"file_name": "test_06722.png", "caption": "This is a latin pop music piece with a salsa beat. There is a male vocalist singing melodically in the lead. The melody is being played by an orchestra composed of the trumpet, the piano and the bass guitar. The rhythmic background is provided by a mild acoustic drum beat with heavy use of latin percussive elements. The piece has a sensual atmosphere. This music could go well in a Latin American soap opera soundtrack where there is a hopeless situation for one of the characters.", "data_idx": 4117, "number": 0, "label": "reggae"} +{"file_name": "test_06723.png", "caption": "This is a latin pop music piece with a salsa beat. There is a male vocalist singing melodically in the lead. The melody is being played by an orchestra composed of the trumpet, the piano and the bass guitar. The rhythmic background is provided by a mild acoustic drum beat with heavy use of latin percussive elements. The piece has a sensual atmosphere. This music could go well in a Latin American soap opera soundtrack where there is a hopeless situation for one of the characters.", "data_idx": 4117, "number": 1, "label": "reggae"} +{"file_name": "test_06724.png", "caption": "This is a latin pop music piece with a salsa beat. There is a male vocalist singing melodically in the lead. The melody is being played by an orchestra composed of the trumpet, the piano and the bass guitar. The rhythmic background is provided by a mild acoustic drum beat with heavy use of latin percussive elements. The piece has a sensual atmosphere. This music could go well in a Latin American soap opera soundtrack where there is a hopeless situation for one of the characters.", "data_idx": 4117, "number": 2, "label": "reggae"} +{"file_name": "test_06725.png", "caption": "This is a latin pop music piece with a salsa beat. There is a male vocalist singing melodically in the lead. The melody is being played by an orchestra composed of the trumpet, the piano and the bass guitar. The rhythmic background is provided by a mild acoustic drum beat with heavy use of latin percussive elements. The piece has a sensual atmosphere. This music could go well in a Latin American soap opera soundtrack where there is a hopeless situation for one of the characters.", "data_idx": 4117, "number": 3, "label": "reggae"} +{"file_name": "test_06726.png", "caption": "This music features a ukulele being played. Only one string is played for tuning. This clip can be used to tune the G string of the ukulele. There are no voices in this clip. There are no other instruments in this clip.", "data_idx": 4118, "number": 0, "label": "jazz"} +{"file_name": "test_06727.png", "caption": "This music features a ukulele being played. Only one string is played for tuning. This clip can be used to tune the G string of the ukulele. There are no voices in this clip. There are no other instruments in this clip.", "data_idx": 4118, "number": 1, "label": "jazz"} +{"file_name": "test_06728.png", "caption": "This is a live recording of an italian song that is primarily played on the accordions. We have a male vocalist with a mature voice, who sings in a tone that feels a little bit sombre. The music itself has a romantic feeling to it.", "data_idx": 4120, "number": 0, "label": "classical"} +{"file_name": "test_06729.png", "caption": "This is a live recording of an italian song that is primarily played on the accordions. We have a male vocalist with a mature voice, who sings in a tone that feels a little bit sombre. The music itself has a romantic feeling to it.", "data_idx": 4120, "number": 1, "label": "classical"} +{"file_name": "test_06730.png", "caption": "This is a live recording of an italian song that is primarily played on the accordions. We have a male vocalist with a mature voice, who sings in a tone that feels a little bit sombre. The music itself has a romantic feeling to it.", "data_idx": 4120, "number": 2, "label": "classical"} +{"file_name": "test_06731.png", "caption": "This is a live recording of an italian song that is primarily played on the accordions. We have a male vocalist with a mature voice, who sings in a tone that feels a little bit sombre. The music itself has a romantic feeling to it.", "data_idx": 4120, "number": 3, "label": "classical"} +{"file_name": "test_06732.png", "caption": "This is the recording of a DJ performance. The DJ is performing on a turntable using the scratching technique. The beat in the background has a repeating male vocal sample and a groovy bass sound. The rhythmic background consists of an electronic drum beat. The atmosphere is urban. This piece could be used in the soundtrack of a teenage drama TV series that takes place in the ghettos of a big city.", "data_idx": 4124, "number": 0, "label": "reggae"} +{"file_name": "test_06733.png", "caption": "This is the recording of a DJ performance. The DJ is performing on a turntable using the scratching technique. The beat in the background has a repeating male vocal sample and a groovy bass sound. The rhythmic background consists of an electronic drum beat. The atmosphere is urban. This piece could be used in the soundtrack of a teenage drama TV series that takes place in the ghettos of a big city.", "data_idx": 4124, "number": 1, "label": "reggae"} +{"file_name": "test_06734.png", "caption": "The low quality recording features a house music that consists an echoing female scream and reverberant flat male vocal over repetitive percussive synth melody, wooden percussions, groovy bass, shimmering hi hats, reversed snare hits and punchy \"4 on the floor\" kick pattern. It sounds hypnotic, energetic and exciting.", "data_idx": 4126, "number": 0, "label": "hiphop"} +{"file_name": "test_06735.png", "caption": "The low quality recording features a house music that consists an echoing female scream and reverberant flat male vocal over repetitive percussive synth melody, wooden percussions, groovy bass, shimmering hi hats, reversed snare hits and punchy \"4 on the floor\" kick pattern. It sounds hypnotic, energetic and exciting.", "data_idx": 4126, "number": 1, "label": "hiphop"} +{"file_name": "test_06736.png", "caption": "The low quality recording features a house music that consists an echoing female scream and reverberant flat male vocal over repetitive percussive synth melody, wooden percussions, groovy bass, shimmering hi hats, reversed snare hits and punchy \"4 on the floor\" kick pattern. It sounds hypnotic, energetic and exciting.", "data_idx": 4126, "number": 2, "label": "hiphop"} +{"file_name": "test_06737.png", "caption": "The low quality recording features a house music that consists an echoing female scream and reverberant flat male vocal over repetitive percussive synth melody, wooden percussions, groovy bass, shimmering hi hats, reversed snare hits and punchy \"4 on the floor\" kick pattern. It sounds hypnotic, energetic and exciting.", "data_idx": 4126, "number": 3, "label": "hiphop"} +{"file_name": "test_06738.png", "caption": "This is a live blues-rock performance. The saxophone is playing a solo section, and the electric guitar repeats an arpeggio. This song would be suitable in a blues bar.", "data_idx": 4127, "number": 0, "label": "jazz"} +{"file_name": "test_06739.png", "caption": "This is a live blues-rock performance. The saxophone is playing a solo section, and the electric guitar repeats an arpeggio. This song would be suitable in a blues bar.", "data_idx": 4127, "number": 1, "label": "jazz"} +{"file_name": "test_06740.png", "caption": "This is a live blues-rock performance. The saxophone is playing a solo section, and the electric guitar repeats an arpeggio. This song would be suitable in a blues bar.", "data_idx": 4127, "number": 2, "label": "jazz"} +{"file_name": "test_06741.png", "caption": "This is a live blues-rock performance. The saxophone is playing a solo section, and the electric guitar repeats an arpeggio. This song would be suitable in a blues bar.", "data_idx": 4127, "number": 3, "label": "jazz"} +{"file_name": "test_06742.png", "caption": "Someone is strumming a melody on the mandolin. The audio-quality is very poor and you can hear a high frequency ringing in the recording. This song may be playing while practicing at home.", "data_idx": 4128, "number": 0, "label": "classical"} +{"file_name": "test_06743.png", "caption": "Someone is strumming a melody on the mandolin. The audio-quality is very poor and you can hear a high frequency ringing in the recording. This song may be playing while practicing at home.", "data_idx": 4128, "number": 1, "label": "classical"} +{"file_name": "test_06744.png", "caption": "Someone is strumming a melody on the mandolin. The audio-quality is very poor and you can hear a high frequency ringing in the recording. This song may be playing while practicing at home.", "data_idx": 4128, "number": 2, "label": "classical"} +{"file_name": "test_06745.png", "caption": "Someone is strumming a melody on the mandolin. The audio-quality is very poor and you can hear a high frequency ringing in the recording. This song may be playing while practicing at home.", "data_idx": 4128, "number": 3, "label": "classical"} +{"file_name": "test_06746.png", "caption": "A male singer sings this animated melody . The song is medium tempo with a groovy bass , keyboard accompaniment and steady drumming rhythm. The song is cheerful and animated and designed as educational material for little children.", "data_idx": 4129, "number": 0, "label": "reggae"} +{"file_name": "test_06747.png", "caption": "A male singer sings this animated melody . The song is medium tempo with a groovy bass , keyboard accompaniment and steady drumming rhythm. The song is cheerful and animated and designed as educational material for little children.", "data_idx": 4129, "number": 1, "label": "reggae"} +{"file_name": "test_06748.png", "caption": "A male singer sings this animated melody . The song is medium tempo with a groovy bass , keyboard accompaniment and steady drumming rhythm. The song is cheerful and animated and designed as educational material for little children.", "data_idx": 4129, "number": 2, "label": "reggae"} +{"file_name": "test_06749.png", "caption": "A male singer sings this animated melody . The song is medium tempo with a groovy bass , keyboard accompaniment and steady drumming rhythm. The song is cheerful and animated and designed as educational material for little children.", "data_idx": 4129, "number": 3, "label": "reggae"} +{"file_name": "test_06750.png", "caption": "This song contains digital drums playing a groove together with an e-bass. Different fast paced synth sounds are playing a rhythmic melody along to the drums. Violas are playing a countermelody to the male voices singing a melody creating a harmony. This song may be playing in a movie scene where someone is driving with a partner on a motorbike.", "data_idx": 4131, "number": 0, "label": "disco"} +{"file_name": "test_06751.png", "caption": "This song contains digital drums playing a groove together with an e-bass. Different fast paced synth sounds are playing a rhythmic melody along to the drums. Violas are playing a countermelody to the male voices singing a melody creating a harmony. This song may be playing in a movie scene where someone is driving with a partner on a motorbike.", "data_idx": 4131, "number": 1, "label": "disco"} +{"file_name": "test_06752.png", "caption": "This song contains digital drums playing a groove together with an e-bass. Different fast paced synth sounds are playing a rhythmic melody along to the drums. Violas are playing a countermelody to the male voices singing a melody creating a harmony. This song may be playing in a movie scene where someone is driving with a partner on a motorbike.", "data_idx": 4131, "number": 2, "label": "disco"} +{"file_name": "test_06753.png", "caption": "This song contains digital drums playing a groove together with an e-bass. Different fast paced synth sounds are playing a rhythmic melody along to the drums. Violas are playing a countermelody to the male voices singing a melody creating a harmony. This song may be playing in a movie scene where someone is driving with a partner on a motorbike.", "data_idx": 4131, "number": 3, "label": "disco"} +{"file_name": "test_06754.png", "caption": "Here we have a live recording of a performance by a female singer/songwriter. She plays simple chords with a simple rhythm on the guitar, while she sings with a vibrant and youthful voice. The song is a pop song.", "data_idx": 4132, "number": 0, "label": "pop"} +{"file_name": "test_06755.png", "caption": "Here we have a live recording of a performance by a female singer/songwriter. She plays simple chords with a simple rhythm on the guitar, while she sings with a vibrant and youthful voice. The song is a pop song.", "data_idx": 4132, "number": 1, "label": "pop"} +{"file_name": "test_06756.png", "caption": "Here we have a live recording of a performance by a female singer/songwriter. She plays simple chords with a simple rhythm on the guitar, while she sings with a vibrant and youthful voice. The song is a pop song.", "data_idx": 4132, "number": 2, "label": "pop"} +{"file_name": "test_06757.png", "caption": "Here we have a live recording of a performance by a female singer/songwriter. She plays simple chords with a simple rhythm on the guitar, while she sings with a vibrant and youthful voice. The song is a pop song.", "data_idx": 4132, "number": 3, "label": "pop"} +{"file_name": "test_06758.png", "caption": "This audio contains a string section playing a romantic ballad. Violin and viola are playing the lead melody while celli are playing a rhythmic melody in the background. This song may be playing live for a wedding.", "data_idx": 4133, "number": 0, "label": "classical"} +{"file_name": "test_06759.png", "caption": "This audio contains a string section playing a romantic ballad. Violin and viola are playing the lead melody while celli are playing a rhythmic melody in the background. This song may be playing live for a wedding.", "data_idx": 4133, "number": 1, "label": "classical"} +{"file_name": "test_06760.png", "caption": "This audio contains a string section playing a romantic ballad. Violin and viola are playing the lead melody while celli are playing a rhythmic melody in the background. This song may be playing live for a wedding.", "data_idx": 4133, "number": 2, "label": "classical"} +{"file_name": "test_06761.png", "caption": "This audio contains a string section playing a romantic ballad. Violin and viola are playing the lead melody while celli are playing a rhythmic melody in the background. This song may be playing live for a wedding.", "data_idx": 4133, "number": 3, "label": "classical"} +{"file_name": "test_06762.png", "caption": "The low quality recording features a live performance of an opera that consists of a passionate female vocal singing over strings melody, brass melody and mellow percussion. It sounds emotional and passionate.", "data_idx": 4135, "number": 0, "label": "classical"} +{"file_name": "test_06763.png", "caption": "The low quality recording features a live performance of an opera that consists of a passionate female vocal singing over strings melody, brass melody and mellow percussion. It sounds emotional and passionate.", "data_idx": 4135, "number": 1, "label": "classical"} +{"file_name": "test_06764.png", "caption": "The low quality recording features a live performance of an arpeggiated acoustic guitar melody and plucked harp melody. It sounds mellow, soft, easygoing and the recording is really noisy and in mono.", "data_idx": 4138, "number": 0, "label": "classical"} +{"file_name": "test_06765.png", "caption": "The low quality recording features a live performance of an arpeggiated acoustic guitar melody and plucked harp melody. It sounds mellow, soft, easygoing and the recording is really noisy and in mono.", "data_idx": 4138, "number": 1, "label": "classical"} +{"file_name": "test_06766.png", "caption": "The low quality recording features a live performance of an arpeggiated acoustic guitar melody and plucked harp melody. It sounds mellow, soft, easygoing and the recording is really noisy and in mono.", "data_idx": 4138, "number": 2, "label": "classical"} +{"file_name": "test_06767.png", "caption": "The low quality recording features a live performance of an arpeggiated acoustic guitar melody and plucked harp melody. It sounds mellow, soft, easygoing and the recording is really noisy and in mono.", "data_idx": 4138, "number": 3, "label": "classical"} +{"file_name": "test_06768.png", "caption": "This symphonic song features french horns playing in harmony. The notes played are descending and they finally fade away. There are no other instruments in this song. There are no voices in this song. This song can be played in a dream sequence in a movie.", "data_idx": 4140, "number": 0, "label": "classical"} +{"file_name": "test_06769.png", "caption": "This symphonic song features french horns playing in harmony. The notes played are descending and they finally fade away. There are no other instruments in this song. There are no voices in this song. This song can be played in a dream sequence in a movie.", "data_idx": 4140, "number": 1, "label": "classical"} +{"file_name": "test_06770.png", "caption": "This symphonic song features french horns playing in harmony. The notes played are descending and they finally fade away. There are no other instruments in this song. There are no voices in this song. This song can be played in a dream sequence in a movie.", "data_idx": 4140, "number": 2, "label": "classical"} +{"file_name": "test_06771.png", "caption": "This symphonic song features french horns playing in harmony. The notes played are descending and they finally fade away. There are no other instruments in this song. There are no voices in this song. This song can be played in a dream sequence in a movie.", "data_idx": 4140, "number": 3, "label": "classical"} +{"file_name": "test_06772.png", "caption": "This music is instrumental. The tempo is medium with a beautiful Harpsichord rendition. The music is a famous Western Classical composition by an Italian composer. The music is engaging, enthralling, rich, deep, passionate baroque music.", "data_idx": 4143, "number": 0, "label": "classical"} +{"file_name": "test_06773.png", "caption": "This music is instrumental. The tempo is medium with a beautiful Harpsichord rendition. The music is a famous Western Classical composition by an Italian composer. The music is engaging, enthralling, rich, deep, passionate baroque music.", "data_idx": 4143, "number": 1, "label": "classical"} +{"file_name": "test_06774.png", "caption": "This music is instrumental. The tempo is medium with a beautiful Harpsichord rendition. The music is a famous Western Classical composition by an Italian composer. The music is engaging, enthralling, rich, deep, passionate baroque music.", "data_idx": 4143, "number": 2, "label": "classical"} +{"file_name": "test_06775.png", "caption": "This music is instrumental. The tempo is medium with a beautiful Harpsichord rendition. The music is a famous Western Classical composition by an Italian composer. The music is engaging, enthralling, rich, deep, passionate baroque music.", "data_idx": 4143, "number": 3, "label": "classical"} +{"file_name": "test_06776.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing vocals, singing over wide claps, layered with shimmering tambourine, groovy bass and straight piano melody. It sounds emotional and passionate.", "data_idx": 4145, "number": 0, "label": "reggae"} +{"file_name": "test_06777.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing vocals, singing over wide claps, layered with shimmering tambourine, groovy bass and straight piano melody. It sounds emotional and passionate.", "data_idx": 4145, "number": 1, "label": "reggae"} +{"file_name": "test_06778.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing vocals, singing over wide claps, layered with shimmering tambourine, groovy bass and straight piano melody. It sounds emotional and passionate.", "data_idx": 4145, "number": 2, "label": "reggae"} +{"file_name": "test_06779.png", "caption": "The low quality recording features a pop song that consists of a passionate male vocal, alongside harmonizing vocals, singing over wide claps, layered with shimmering tambourine, groovy bass and straight piano melody. It sounds emotional and passionate.", "data_idx": 4145, "number": 3, "label": "reggae"} +{"file_name": "test_06780.png", "caption": "The low quality recording features an echoing theremin melody, slowly fading out, over growly synth bass. It sounds suspenseful and haunting - like something you would hear in horror movies.", "data_idx": 4147, "number": 0, "label": "hiphop"} +{"file_name": "test_06781.png", "caption": "The low quality recording features an echoing theremin melody, slowly fading out, over growly synth bass. It sounds suspenseful and haunting - like something you would hear in horror movies.", "data_idx": 4147, "number": 1, "label": "hiphop"} +{"file_name": "test_06782.png", "caption": "The low quality recording features an echoing theremin melody, slowly fading out, over growly synth bass. It sounds suspenseful and haunting - like something you would hear in horror movies.", "data_idx": 4147, "number": 2, "label": "hiphop"} +{"file_name": "test_06783.png", "caption": "The low quality recording features an echoing theremin melody, slowly fading out, over growly synth bass. It sounds suspenseful and haunting - like something you would hear in horror movies.", "data_idx": 4147, "number": 3, "label": "hiphop"} +{"file_name": "test_06784.png", "caption": "This track is characterised by a leading melody that is played on an instrument which sounds like it would be suitable in a video game like Super Mario Brothers. Behind this instrument, there is a grungy, fuzzy and dirty electric guitar being played. The drummer plays a simple beat to allow the melody to shine. The song has an energizing feel to it.", "data_idx": 4149, "number": 0, "label": "hiphop"} +{"file_name": "test_06785.png", "caption": "This track is characterised by a leading melody that is played on an instrument which sounds like it would be suitable in a video game like Super Mario Brothers. Behind this instrument, there is a grungy, fuzzy and dirty electric guitar being played. The drummer plays a simple beat to allow the melody to shine. The song has an energizing feel to it.", "data_idx": 4149, "number": 1, "label": "hiphop"} +{"file_name": "test_06786.png", "caption": "This track is characterised by a leading melody that is played on an instrument which sounds like it would be suitable in a video game like Super Mario Brothers. Behind this instrument, there is a grungy, fuzzy and dirty electric guitar being played. The drummer plays a simple beat to allow the melody to shine. The song has an energizing feel to it.", "data_idx": 4149, "number": 2, "label": "hiphop"} +{"file_name": "test_06787.png", "caption": "This track is characterised by a leading melody that is played on an instrument which sounds like it would be suitable in a video game like Super Mario Brothers. Behind this instrument, there is a grungy, fuzzy and dirty electric guitar being played. The drummer plays a simple beat to allow the melody to shine. The song has an energizing feel to it.", "data_idx": 4149, "number": 3, "label": "hiphop"} +{"file_name": "test_06788.png", "caption": "This is a post-grunge/pop punk music piece. There is a male vocalist singing melodically in the lead. The main melody is being played by the electric guitar in the major key with the bass guitar backing it. The rhythmic background consists of an acoustic drum beat. The atmosphere is energetic and cheerful. This piece could be used in the soundtrack of a comedy TV series as the opening theme.", "data_idx": 4150, "number": 0, "label": "reggae"} +{"file_name": "test_06789.png", "caption": "This is a post-grunge/pop punk music piece. There is a male vocalist singing melodically in the lead. The main melody is being played by the electric guitar in the major key with the bass guitar backing it. The rhythmic background consists of an acoustic drum beat. The atmosphere is energetic and cheerful. This piece could be used in the soundtrack of a comedy TV series as the opening theme.", "data_idx": 4150, "number": 1, "label": "reggae"} +{"file_name": "test_06790.png", "caption": "This is a post-grunge/pop punk music piece. There is a male vocalist singing melodically in the lead. The main melody is being played by the electric guitar in the major key with the bass guitar backing it. The rhythmic background consists of an acoustic drum beat. The atmosphere is energetic and cheerful. This piece could be used in the soundtrack of a comedy TV series as the opening theme.", "data_idx": 4150, "number": 2, "label": "reggae"} +{"file_name": "test_06791.png", "caption": "This is a post-grunge/pop punk music piece. There is a male vocalist singing melodically in the lead. The main melody is being played by the electric guitar in the major key with the bass guitar backing it. The rhythmic background consists of an acoustic drum beat. The atmosphere is energetic and cheerful. This piece could be used in the soundtrack of a comedy TV series as the opening theme.", "data_idx": 4150, "number": 3, "label": "reggae"} +{"file_name": "test_06792.png", "caption": "The low quality recording features a compilation of rock songs in-between which there is a flat male vocal talking. At the very beginning there is a short snippet of a groovy piano melody and fruity male vocal singing over it. After that, there is an even shorter snippet of a song that consists of acoustic rhythm guitar and a male vocalist singing over it. And at the end of the loop, there is a fade in into a flat male vocal singing with background vocals over punchy kick, punchy snare, shimmering cymbals, distorted bass guitar and electric guitar melody. Overall it sounds weird and chaotic, due to the arrangement of the sounds, but it is also energetic.", "data_idx": 4151, "number": 0, "label": "blues"} +{"file_name": "test_06793.png", "caption": "The low quality recording features a compilation of rock songs in-between which there is a flat male vocal talking. At the very beginning there is a short snippet of a groovy piano melody and fruity male vocal singing over it. After that, there is an even shorter snippet of a song that consists of acoustic rhythm guitar and a male vocalist singing over it. And at the end of the loop, there is a fade in into a flat male vocal singing with background vocals over punchy kick, punchy snare, shimmering cymbals, distorted bass guitar and electric guitar melody. Overall it sounds weird and chaotic, due to the arrangement of the sounds, but it is also energetic.", "data_idx": 4151, "number": 1, "label": "blues"} +{"file_name": "test_06794.png", "caption": "The low quality recording features a compilation of rock songs in-between which there is a flat male vocal talking. At the very beginning there is a short snippet of a groovy piano melody and fruity male vocal singing over it. After that, there is an even shorter snippet of a song that consists of acoustic rhythm guitar and a male vocalist singing over it. And at the end of the loop, there is a fade in into a flat male vocal singing with background vocals over punchy kick, punchy snare, shimmering cymbals, distorted bass guitar and electric guitar melody. Overall it sounds weird and chaotic, due to the arrangement of the sounds, but it is also energetic.", "data_idx": 4151, "number": 2, "label": "blues"} +{"file_name": "test_06795.png", "caption": "The low quality recording features a compilation of rock songs in-between which there is a flat male vocal talking. At the very beginning there is a short snippet of a groovy piano melody and fruity male vocal singing over it. After that, there is an even shorter snippet of a song that consists of acoustic rhythm guitar and a male vocalist singing over it. And at the end of the loop, there is a fade in into a flat male vocal singing with background vocals over punchy kick, punchy snare, shimmering cymbals, distorted bass guitar and electric guitar melody. Overall it sounds weird and chaotic, due to the arrangement of the sounds, but it is also energetic.", "data_idx": 4151, "number": 3, "label": "blues"} +{"file_name": "test_06796.png", "caption": "The low quality recording features a reverberant groovy piano melody. It sounds like a cover and it is energetic.", "data_idx": 4152, "number": 0, "label": "hiphop"} +{"file_name": "test_06797.png", "caption": "The low quality recording features a reverberant groovy piano melody. It sounds like a cover and it is energetic.", "data_idx": 4152, "number": 1, "label": "hiphop"} +{"file_name": "test_06798.png", "caption": "The song is an instrumental. The song is medium tempo, with an acoustic guitar playing blues, strong drumming rhythm, walking bass line and keyboard harmony. The song is exciting and has a dance rhythm. The audio quality is poor.", "data_idx": 4155, "number": 0, "label": "blues"} +{"file_name": "test_06799.png", "caption": "The song is an instrumental. The song is medium tempo, with an acoustic guitar playing blues, strong drumming rhythm, walking bass line and keyboard harmony. The song is exciting and has a dance rhythm. The audio quality is poor.", "data_idx": 4155, "number": 1, "label": "blues"} +{"file_name": "test_06800.png", "caption": "The song is an instrumental. The song is medium tempo, with an acoustic guitar playing blues, strong drumming rhythm, walking bass line and keyboard harmony. The song is exciting and has a dance rhythm. The audio quality is poor.", "data_idx": 4155, "number": 2, "label": "blues"} +{"file_name": "test_06801.png", "caption": "The song is an instrumental. The song is medium tempo, with an acoustic guitar playing blues, strong drumming rhythm, walking bass line and keyboard harmony. The song is exciting and has a dance rhythm. The audio quality is poor.", "data_idx": 4155, "number": 3, "label": "blues"} +{"file_name": "test_06802.png", "caption": "The low quality recording features a live performance of a classical cover of a rock song that consists of a cello strings melody playing.The recording is noisy, slightly distorted and in mono.", "data_idx": 4158, "number": 0, "label": "classical"} +{"file_name": "test_06803.png", "caption": "The low quality recording features a live performance of a classical cover of a rock song that consists of a cello strings melody playing.The recording is noisy, slightly distorted and in mono.", "data_idx": 4158, "number": 1, "label": "classical"} +{"file_name": "test_06804.png", "caption": "The low quality recording features a live performance of a classical cover of a rock song that consists of a cello strings melody playing.The recording is noisy, slightly distorted and in mono.", "data_idx": 4158, "number": 2, "label": "classical"} +{"file_name": "test_06805.png", "caption": "The low quality recording features a live performance of a classical cover of a rock song that consists of a cello strings melody playing.The recording is noisy, slightly distorted and in mono.", "data_idx": 4158, "number": 3, "label": "classical"} +{"file_name": "test_06806.png", "caption": "This is the live performance of a Mexican folk music piece. In the beginning, there is a female voice giving an introductory speech in the Spanish language. Then, the arpa jarocha (which is a Mexican harp) and the ukulele start playing a lively and relaxed tune. The atmosphere is vibrant. This piece could be used in the soundtrack of a Mexican soap opera during scenes of calmer temperament.", "data_idx": 4160, "number": 0, "label": "reggae"} +{"file_name": "test_06807.png", "caption": "This is the live performance of a Mexican folk music piece. In the beginning, there is a female voice giving an introductory speech in the Spanish language. Then, the arpa jarocha (which is a Mexican harp) and the ukulele start playing a lively and relaxed tune. The atmosphere is vibrant. This piece could be used in the soundtrack of a Mexican soap opera during scenes of calmer temperament.", "data_idx": 4160, "number": 1, "label": "reggae"} +{"file_name": "test_06808.png", "caption": "This is the live performance of a Mexican folk music piece. In the beginning, there is a female voice giving an introductory speech in the Spanish language. Then, the arpa jarocha (which is a Mexican harp) and the ukulele start playing a lively and relaxed tune. The atmosphere is vibrant. This piece could be used in the soundtrack of a Mexican soap opera during scenes of calmer temperament.", "data_idx": 4160, "number": 2, "label": "reggae"} +{"file_name": "test_06809.png", "caption": "This is the live performance of a Mexican folk music piece. In the beginning, there is a female voice giving an introductory speech in the Spanish language. Then, the arpa jarocha (which is a Mexican harp) and the ukulele start playing a lively and relaxed tune. The atmosphere is vibrant. This piece could be used in the soundtrack of a Mexican soap opera during scenes of calmer temperament.", "data_idx": 4160, "number": 3, "label": "reggae"} +{"file_name": "test_06810.png", "caption": "The low quality recording features a 6/8 conga percussion rhythm. The recording is noisy and in mono.", "data_idx": 4161, "number": 0, "label": "reggae"} +{"file_name": "test_06811.png", "caption": "The low quality recording features a 6/8 conga percussion rhythm. The recording is noisy and in mono.", "data_idx": 4161, "number": 1, "label": "reggae"} +{"file_name": "test_06812.png", "caption": "The low quality recording features a 6/8 conga percussion rhythm. The recording is noisy and in mono.", "data_idx": 4161, "number": 2, "label": "reggae"} +{"file_name": "test_06813.png", "caption": "The low quality recording features a 6/8 conga percussion rhythm. The recording is noisy and in mono.", "data_idx": 4161, "number": 3, "label": "reggae"} +{"file_name": "test_06814.png", "caption": "This audio contains a complex and funky acoustic drum groove along with a repeating bassline. The clean e-guitar is playing along with the bass in the lower register. A tambourine adds flavor to the drums. This song may be playing at a breakdance battle.", "data_idx": 4165, "number": 0, "label": "blues"} +{"file_name": "test_06815.png", "caption": "This audio contains a complex and funky acoustic drum groove along with a repeating bassline. The clean e-guitar is playing along with the bass in the lower register. A tambourine adds flavor to the drums. This song may be playing at a breakdance battle.", "data_idx": 4165, "number": 1, "label": "blues"} +{"file_name": "test_06816.png", "caption": "This audio contains a complex and funky acoustic drum groove along with a repeating bassline. The clean e-guitar is playing along with the bass in the lower register. A tambourine adds flavor to the drums. This song may be playing at a breakdance battle.", "data_idx": 4165, "number": 2, "label": "blues"} +{"file_name": "test_06817.png", "caption": "This audio contains a complex and funky acoustic drum groove along with a repeating bassline. The clean e-guitar is playing along with the bass in the lower register. A tambourine adds flavor to the drums. This song may be playing at a breakdance battle.", "data_idx": 4165, "number": 3, "label": "blues"} +{"file_name": "test_06818.png", "caption": "This is the type of horn that would be heard in a distant battlecry. The clip features just this war horn sitting on top of a deep, low ringing and sustained bass. There is reverb applied to the sound of the horn.", "data_idx": 4171, "number": 0, "label": "classical"} +{"file_name": "test_06819.png", "caption": "This is the type of horn that would be heard in a distant battlecry. The clip features just this war horn sitting on top of a deep, low ringing and sustained bass. There is reverb applied to the sound of the horn.", "data_idx": 4171, "number": 1, "label": "classical"} +{"file_name": "test_06820.png", "caption": "This is the type of horn that would be heard in a distant battlecry. The clip features just this war horn sitting on top of a deep, low ringing and sustained bass. There is reverb applied to the sound of the horn.", "data_idx": 4171, "number": 2, "label": "classical"} +{"file_name": "test_06821.png", "caption": "This is the type of horn that would be heard in a distant battlecry. The clip features just this war horn sitting on top of a deep, low ringing and sustained bass. There is reverb applied to the sound of the horn.", "data_idx": 4171, "number": 3, "label": "classical"} +{"file_name": "test_06822.png", "caption": "The low quality recording features a rock song that consists of harmonizing male vocals singing over groovy piano melody, groovy bass guitar, electric guitar melody, punchy snare, soft kick hits and shimmering hi-hats. There is a short snare roll that serves as a transition into a new section. It sounds groovy and addictive.", "data_idx": 4173, "number": 0, "label": "disco"} +{"file_name": "test_06823.png", "caption": "The low quality recording features a rock song that consists of harmonizing male vocals singing over groovy piano melody, groovy bass guitar, electric guitar melody, punchy snare, soft kick hits and shimmering hi-hats. There is a short snare roll that serves as a transition into a new section. It sounds groovy and addictive.", "data_idx": 4173, "number": 1, "label": "disco"} +{"file_name": "test_06824.png", "caption": "The low quality recording features a rock song that consists of harmonizing male vocals singing over groovy piano melody, groovy bass guitar, electric guitar melody, punchy snare, soft kick hits and shimmering hi-hats. There is a short snare roll that serves as a transition into a new section. It sounds groovy and addictive.", "data_idx": 4173, "number": 2, "label": "disco"} +{"file_name": "test_06825.png", "caption": "The low quality recording features a rock song that consists of harmonizing male vocals singing over groovy piano melody, groovy bass guitar, electric guitar melody, punchy snare, soft kick hits and shimmering hi-hats. There is a short snare roll that serves as a transition into a new section. It sounds groovy and addictive.", "data_idx": 4173, "number": 3, "label": "disco"} +{"file_name": "test_06826.png", "caption": "This audio contains a very high pitched sound played with a synthesizer. Then another synthesizer sound that sounds a little bit like cleaning a window. This song may be playing at home experimenting sounds with a synthesizer.", "data_idx": 4174, "number": 0, "label": "hiphop"} +{"file_name": "test_06827.png", "caption": "This audio contains a very high pitched sound played with a synthesizer. Then another synthesizer sound that sounds a little bit like cleaning a window. This song may be playing at home experimenting sounds with a synthesizer.", "data_idx": 4174, "number": 1, "label": "hiphop"} +{"file_name": "test_06828.png", "caption": "This is a classical music piece that is being performed live by a philharmonic orchestra. There is a wide array of instruments in the brass and the strings sections playing an epic tune. There is a grandiose atmosphere to this piece. It could be used in the soundtrack of an adventure movie where the protagonist begins his odyssey and explores wonderful scenes.", "data_idx": 4176, "number": 0, "label": "classical"} +{"file_name": "test_06829.png", "caption": "This is a classical music piece that is being performed live by a philharmonic orchestra. There is a wide array of instruments in the brass and the strings sections playing an epic tune. There is a grandiose atmosphere to this piece. It could be used in the soundtrack of an adventure movie where the protagonist begins his odyssey and explores wonderful scenes.", "data_idx": 4176, "number": 1, "label": "classical"} +{"file_name": "test_06830.png", "caption": "This is a classical music piece that is being performed live by a philharmonic orchestra. There is a wide array of instruments in the brass and the strings sections playing an epic tune. There is a grandiose atmosphere to this piece. It could be used in the soundtrack of an adventure movie where the protagonist begins his odyssey and explores wonderful scenes.", "data_idx": 4176, "number": 2, "label": "classical"} +{"file_name": "test_06831.png", "caption": "This is a classical music piece that is being performed live by a philharmonic orchestra. There is a wide array of instruments in the brass and the strings sections playing an epic tune. There is a grandiose atmosphere to this piece. It could be used in the soundtrack of an adventure movie where the protagonist begins his odyssey and explores wonderful scenes.", "data_idx": 4176, "number": 3, "label": "classical"} +{"file_name": "test_06832.png", "caption": "The low quality recording features an indie song that consists of a mellow piano melody, punchy kick and snare hits, wide toms and shimmering hi-hats. As the kick is leaning to the left and the snare to the right - it makes the stereo image unbalanced. Overall it sounds groovy, suspenseful and reverberant.", "data_idx": 4177, "number": 0, "label": "reggae"} +{"file_name": "test_06833.png", "caption": "The low quality recording features an indie song that consists of a mellow piano melody, punchy kick and snare hits, wide toms and shimmering hi-hats. As the kick is leaning to the left and the snare to the right - it makes the stereo image unbalanced. Overall it sounds groovy, suspenseful and reverberant.", "data_idx": 4177, "number": 1, "label": "reggae"} +{"file_name": "test_06834.png", "caption": "The low quality recording features an indie song that consists of a mellow piano melody, punchy kick and snare hits, wide toms and shimmering hi-hats. As the kick is leaning to the left and the snare to the right - it makes the stereo image unbalanced. Overall it sounds groovy, suspenseful and reverberant.", "data_idx": 4177, "number": 2, "label": "reggae"} +{"file_name": "test_06835.png", "caption": "The low quality recording features an indie song that consists of a mellow piano melody, punchy kick and snare hits, wide toms and shimmering hi-hats. As the kick is leaning to the left and the snare to the right - it makes the stereo image unbalanced. Overall it sounds groovy, suspenseful and reverberant.", "data_idx": 4177, "number": 3, "label": "reggae"} +{"file_name": "test_06836.png", "caption": "This is the intro part of a hip-hop beat. There is a rising pattern coming from a synth bass that has its low-pass filter getting dragged to higher frequencies. There is a hype feel to it. This part of the beat can be sampled and looped to be used in the soundtrack of a video game when the main character is simply walking around or exploring the area.", "data_idx": 4181, "number": 0, "label": "hiphop"} +{"file_name": "test_06837.png", "caption": "This is the intro part of a hip-hop beat. There is a rising pattern coming from a synth bass that has its low-pass filter getting dragged to higher frequencies. There is a hype feel to it. This part of the beat can be sampled and looped to be used in the soundtrack of a video game when the main character is simply walking around or exploring the area.", "data_idx": 4181, "number": 1, "label": "hiphop"} +{"file_name": "test_06838.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The tempo is medium and gradually slows down towards the end. The drumming rhythm is steady and retards to the end with a percussive bass line and keyboard accompaniment. The song is a retro disco or R&B love song. The song has poor audio quality.", "data_idx": 4184, "number": 0, "label": "disco"} +{"file_name": "test_06839.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The tempo is medium and gradually slows down towards the end. The drumming rhythm is steady and retards to the end with a percussive bass line and keyboard accompaniment. The song is a retro disco or R&B love song. The song has poor audio quality.", "data_idx": 4184, "number": 1, "label": "disco"} +{"file_name": "test_06840.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The tempo is medium and gradually slows down towards the end. The drumming rhythm is steady and retards to the end with a percussive bass line and keyboard accompaniment. The song is a retro disco or R&B love song. The song has poor audio quality.", "data_idx": 4184, "number": 2, "label": "disco"} +{"file_name": "test_06841.png", "caption": "A female singer sings this passionate melody with backup singers in vocal harmony. The tempo is medium and gradually slows down towards the end. The drumming rhythm is steady and retards to the end with a percussive bass line and keyboard accompaniment. The song is a retro disco or R&B love song. The song has poor audio quality.", "data_idx": 4184, "number": 3, "label": "disco"} +{"file_name": "test_06842.png", "caption": "This song contains digital drums playing along with a funky synth bassline. Other synth sounds are playing pads and a lead melody. This song sounds like it was made for dancing. This song may be playing in a club.", "data_idx": 4186, "number": 0, "label": "hiphop"} +{"file_name": "test_06843.png", "caption": "This song contains digital drums playing along with a funky synth bassline. Other synth sounds are playing pads and a lead melody. This song sounds like it was made for dancing. This song may be playing in a club.", "data_idx": 4186, "number": 1, "label": "hiphop"} +{"file_name": "test_06844.png", "caption": "This song contains digital drums playing along with a funky synth bassline. Other synth sounds are playing pads and a lead melody. This song sounds like it was made for dancing. This song may be playing in a club.", "data_idx": 4186, "number": 2, "label": "hiphop"} +{"file_name": "test_06845.png", "caption": "This song contains digital drums playing along with a funky synth bassline. Other synth sounds are playing pads and a lead melody. This song sounds like it was made for dancing. This song may be playing in a club.", "data_idx": 4186, "number": 3, "label": "hiphop"} +{"file_name": "test_06846.png", "caption": "Someone is scratching along to a hip hop style backing song containing digital drums and a synth arpeggio sound playing in the midrange. Two male voices are speaking. This song may be playing while practicing scratching.", "data_idx": 4188, "number": 0, "label": "reggae"} +{"file_name": "test_06847.png", "caption": "Someone is scratching along to a hip hop style backing song containing digital drums and a synth arpeggio sound playing in the midrange. Two male voices are speaking. This song may be playing while practicing scratching.", "data_idx": 4188, "number": 1, "label": "reggae"} +{"file_name": "test_06848.png", "caption": "Someone is scratching along to a hip hop style backing song containing digital drums and a synth arpeggio sound playing in the midrange. Two male voices are speaking. This song may be playing while practicing scratching.", "data_idx": 4188, "number": 2, "label": "reggae"} +{"file_name": "test_06849.png", "caption": "Someone is scratching along to a hip hop style backing song containing digital drums and a synth arpeggio sound playing in the midrange. Two male voices are speaking. This song may be playing while practicing scratching.", "data_idx": 4188, "number": 3, "label": "reggae"} +{"file_name": "test_06850.png", "caption": "A saxophonist plays a phrase on the alto sax and explains the movement. The song is medium tempo with no other instrumentation. The audio quality is poor and serves as an online music tutorial.", "data_idx": 4191, "number": 0, "label": "blues"} +{"file_name": "test_06851.png", "caption": "A saxophonist plays a phrase on the alto sax and explains the movement. The song is medium tempo with no other instrumentation. The audio quality is poor and serves as an online music tutorial.", "data_idx": 4191, "number": 1, "label": "blues"} +{"file_name": "test_06852.png", "caption": "A saxophonist plays a phrase on the alto sax and explains the movement. The song is medium tempo with no other instrumentation. The audio quality is poor and serves as an online music tutorial.", "data_idx": 4191, "number": 2, "label": "blues"} +{"file_name": "test_06853.png", "caption": "A saxophonist plays a phrase on the alto sax and explains the movement. The song is medium tempo with no other instrumentation. The audio quality is poor and serves as an online music tutorial.", "data_idx": 4191, "number": 3, "label": "blues"} +{"file_name": "test_06854.png", "caption": "This is an acapella performance with a beautiful male pop vocal that has a combination of airy and raspy qualities. The song would fit in the pop genre. The clip features non-verbal ad libs such as grunts and other vocal exclamations.", "data_idx": 4194, "number": 0, "label": "hiphop"} +{"file_name": "test_06855.png", "caption": "This is an acapella performance with a beautiful male pop vocal that has a combination of airy and raspy qualities. The song would fit in the pop genre. The clip features non-verbal ad libs such as grunts and other vocal exclamations.", "data_idx": 4194, "number": 1, "label": "hiphop"} +{"file_name": "test_06856.png", "caption": "This is an acapella performance with a beautiful male pop vocal that has a combination of airy and raspy qualities. The song would fit in the pop genre. The clip features non-verbal ad libs such as grunts and other vocal exclamations.", "data_idx": 4194, "number": 2, "label": "hiphop"} +{"file_name": "test_06857.png", "caption": "This is an acapella performance with a beautiful male pop vocal that has a combination of airy and raspy qualities. The song would fit in the pop genre. The clip features non-verbal ad libs such as grunts and other vocal exclamations.", "data_idx": 4194, "number": 3, "label": "hiphop"} diff --git a/data/test/metadata_0016.jsonl b/data/test/metadata_0016.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..582046738cd92dcdd5e8b99c8a30319fa76d45bd --- /dev/null +++ b/data/test/metadata_0016.jsonl @@ -0,0 +1,358 @@ +{"file_name": "test_06858.png", "caption": "The low quality recording features an electro song playing in the background, while there is a muffled male vocal being interviewed. It sounds muffled and loud. The recording is noisy and in mono.", "data_idx": 4201, "number": 0, "label": "hiphop"} +{"file_name": "test_06859.png", "caption": "The low quality recording features an electro song playing in the background, while there is a muffled male vocal being interviewed. It sounds muffled and loud. The recording is noisy and in mono.", "data_idx": 4201, "number": 1, "label": "hiphop"} +{"file_name": "test_06860.png", "caption": "The low quality recording features an electro song playing in the background, while there is a muffled male vocal being interviewed. It sounds muffled and loud. The recording is noisy and in mono.", "data_idx": 4201, "number": 2, "label": "hiphop"} +{"file_name": "test_06861.png", "caption": "The low quality recording features an electro song playing in the background, while there is a muffled male vocal being interviewed. It sounds muffled and loud. The recording is noisy and in mono.", "data_idx": 4201, "number": 3, "label": "hiphop"} +{"file_name": "test_06862.png", "caption": "This music is an electronic instrumental. The tempo is medium with an intense electronic boom and sound of something collapsing or tumbling. The clip starts with the angry voice of a child talking in a foreign language.", "data_idx": 4203, "number": 0, "label": "hiphop"} +{"file_name": "test_06863.png", "caption": "This music is an electronic instrumental. The tempo is medium with an intense electronic boom and sound of something collapsing or tumbling. The clip starts with the angry voice of a child talking in a foreign language.", "data_idx": 4203, "number": 1, "label": "hiphop"} +{"file_name": "test_06864.png", "caption": "This music is an electronic instrumental. The tempo is medium with an intense electronic boom and sound of something collapsing or tumbling. The clip starts with the angry voice of a child talking in a foreign language.", "data_idx": 4203, "number": 2, "label": "hiphop"} +{"file_name": "test_06865.png", "caption": "This music is an electronic instrumental. The tempo is medium with an intense electronic boom and sound of something collapsing or tumbling. The clip starts with the angry voice of a child talking in a foreign language.", "data_idx": 4203, "number": 3, "label": "hiphop"} +{"file_name": "test_06866.png", "caption": "The song is an instrumental. The tempo is slow with a synth trumpet playing a lilting melody with supporting keyboard synth accompaniment and no percussion. The song is emotional and powerful. The song is a movie soundtrack.", "data_idx": 4204, "number": 0, "label": "hiphop"} +{"file_name": "test_06867.png", "caption": "The song is an instrumental. The tempo is slow with a synth trumpet playing a lilting melody with supporting keyboard synth accompaniment and no percussion. The song is emotional and powerful. The song is a movie soundtrack.", "data_idx": 4204, "number": 1, "label": "hiphop"} +{"file_name": "test_06868.png", "caption": "The song is an instrumental. The tempo is slow with a synth trumpet playing a lilting melody with supporting keyboard synth accompaniment and no percussion. The song is emotional and powerful. The song is a movie soundtrack.", "data_idx": 4204, "number": 2, "label": "hiphop"} +{"file_name": "test_06869.png", "caption": "The song is an instrumental. The tempo is slow with a synth trumpet playing a lilting melody with supporting keyboard synth accompaniment and no percussion. The song is emotional and powerful. The song is a movie soundtrack.", "data_idx": 4204, "number": 3, "label": "hiphop"} +{"file_name": "test_06870.png", "caption": "The low quality recording features an electric guitar melody. It sounds mellow, chill and easygoing.", "data_idx": 4205, "number": 0, "label": "jazz"} +{"file_name": "test_06871.png", "caption": "The low quality recording features an electric guitar melody. It sounds mellow, chill and easygoing.", "data_idx": 4205, "number": 1, "label": "jazz"} +{"file_name": "test_06872.png", "caption": "The low quality recording features an electric guitar melody. It sounds mellow, chill and easygoing.", "data_idx": 4205, "number": 2, "label": "jazz"} +{"file_name": "test_06873.png", "caption": "The low quality recording features an electric guitar melody. It sounds mellow, chill and easygoing.", "data_idx": 4205, "number": 3, "label": "jazz"} +{"file_name": "test_06874.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking, after which he plays an arpeggiated acoustic guitar melody. The recording is extremely noisy.", "data_idx": 4210, "number": 0, "label": "blues"} +{"file_name": "test_06875.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking, after which he plays an arpeggiated acoustic guitar melody. The recording is extremely noisy.", "data_idx": 4210, "number": 1, "label": "blues"} +{"file_name": "test_06876.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking, after which he plays an arpeggiated acoustic guitar melody. The recording is extremely noisy.", "data_idx": 4210, "number": 2, "label": "blues"} +{"file_name": "test_06877.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking, after which he plays an arpeggiated acoustic guitar melody. The recording is extremely noisy.", "data_idx": 4210, "number": 3, "label": "blues"} +{"file_name": "test_06878.png", "caption": "The low quality recording features a buzzy bass guitar playing. It sounds passionate, even though the recording is very noisy.", "data_idx": 4211, "number": 0, "label": "blues"} +{"file_name": "test_06879.png", "caption": "The low quality recording features a buzzy bass guitar playing. It sounds passionate, even though the recording is very noisy.", "data_idx": 4211, "number": 1, "label": "blues"} +{"file_name": "test_06880.png", "caption": "The low quality recording features a buzzy bass guitar playing. It sounds passionate, even though the recording is very noisy.", "data_idx": 4211, "number": 2, "label": "blues"} +{"file_name": "test_06881.png", "caption": "The low quality recording features a buzzy bass guitar playing. It sounds passionate, even though the recording is very noisy.", "data_idx": 4211, "number": 3, "label": "blues"} +{"file_name": "test_06882.png", "caption": "This music is instrumental. The tempo is slow with the resounding vibrations of the cello , flute or recorder melody with a female voice talking about Spinal treatment . The music is soft, soothing, meditative,hypnotic, calming, droning, recurring and insistent. This clip is a documentary or tutorial on spinal treatment superimposed on the instrumental.", "data_idx": 4212, "number": 0, "label": "blues"} +{"file_name": "test_06883.png", "caption": "This music is instrumental. The tempo is slow with the resounding vibrations of the cello , flute or recorder melody with a female voice talking about Spinal treatment . The music is soft, soothing, meditative,hypnotic, calming, droning, recurring and insistent. This clip is a documentary or tutorial on spinal treatment superimposed on the instrumental.", "data_idx": 4212, "number": 1, "label": "blues"} +{"file_name": "test_06884.png", "caption": "This music is instrumental. The tempo is slow with the resounding vibrations of the cello , flute or recorder melody with a female voice talking about Spinal treatment . The music is soft, soothing, meditative,hypnotic, calming, droning, recurring and insistent. This clip is a documentary or tutorial on spinal treatment superimposed on the instrumental.", "data_idx": 4212, "number": 2, "label": "blues"} +{"file_name": "test_06885.png", "caption": "This music is instrumental. The tempo is slow with the resounding vibrations of the cello , flute or recorder melody with a female voice talking about Spinal treatment . The music is soft, soothing, meditative,hypnotic, calming, droning, recurring and insistent. This clip is a documentary or tutorial on spinal treatment superimposed on the instrumental.", "data_idx": 4212, "number": 3, "label": "blues"} +{"file_name": "test_06886.png", "caption": "This is a gear review jam video. There is a male voice describing the tone that he achieves from using an amp with the electric guitar. The said amp applies an echo effect to the electric guitar, making it sound more dreamy. The performer is playing a simple tune. This piece could be sampled for use in an advertisement jingle or in beat-making.", "data_idx": 4213, "number": 0, "label": "blues"} +{"file_name": "test_06887.png", "caption": "This is a gear review jam video. There is a male voice describing the tone that he achieves from using an amp with the electric guitar. The said amp applies an echo effect to the electric guitar, making it sound more dreamy. The performer is playing a simple tune. This piece could be sampled for use in an advertisement jingle or in beat-making.", "data_idx": 4213, "number": 1, "label": "blues"} +{"file_name": "test_06888.png", "caption": "This is a gear review jam video. There is a male voice describing the tone that he achieves from using an amp with the electric guitar. The said amp applies an echo effect to the electric guitar, making it sound more dreamy. The performer is playing a simple tune. This piece could be sampled for use in an advertisement jingle or in beat-making.", "data_idx": 4213, "number": 2, "label": "blues"} +{"file_name": "test_06889.png", "caption": "This is a gear review jam video. There is a male voice describing the tone that he achieves from using an amp with the electric guitar. The said amp applies an echo effect to the electric guitar, making it sound more dreamy. The performer is playing a simple tune. This piece could be sampled for use in an advertisement jingle or in beat-making.", "data_idx": 4213, "number": 3, "label": "blues"} +{"file_name": "test_06890.png", "caption": "The low quality recording features a reverberant snare roll, followed by wide low toms hits. At the very end of the loop, there is a short snippet of breathy flute melody. It sounds intense and suspenseful.", "data_idx": 4214, "number": 0, "label": "hiphop"} +{"file_name": "test_06891.png", "caption": "The low quality recording features a reverberant snare roll, followed by wide low toms hits. At the very end of the loop, there is a short snippet of breathy flute melody. It sounds intense and suspenseful.", "data_idx": 4214, "number": 1, "label": "hiphop"} +{"file_name": "test_06892.png", "caption": "This song contains a piano playing a minor chord progression. In the background you can hear a synth lead pad playing kind of an easy arpeggio melody. Panned to the right side of the speakers you can hear strings playing a melody in the midrange. A male voice is singing in the midrange breaking his voice into headvoice. This song may be playing on loud speakers when alone at home.", "data_idx": 4215, "number": 0, "label": "disco"} +{"file_name": "test_06893.png", "caption": "This song contains a piano playing a minor chord progression. In the background you can hear a synth lead pad playing kind of an easy arpeggio melody. Panned to the right side of the speakers you can hear strings playing a melody in the midrange. A male voice is singing in the midrange breaking his voice into headvoice. This song may be playing on loud speakers when alone at home.", "data_idx": 4215, "number": 1, "label": "disco"} +{"file_name": "test_06894.png", "caption": "This song contains a piano playing a minor chord progression. In the background you can hear a synth lead pad playing kind of an easy arpeggio melody. Panned to the right side of the speakers you can hear strings playing a melody in the midrange. A male voice is singing in the midrange breaking his voice into headvoice. This song may be playing on loud speakers when alone at home.", "data_idx": 4215, "number": 2, "label": "disco"} +{"file_name": "test_06895.png", "caption": "This song contains a piano playing a minor chord progression. In the background you can hear a synth lead pad playing kind of an easy arpeggio melody. Panned to the right side of the speakers you can hear strings playing a melody in the midrange. A male voice is singing in the midrange breaking his voice into headvoice. This song may be playing on loud speakers when alone at home.", "data_idx": 4215, "number": 3, "label": "disco"} +{"file_name": "test_06896.png", "caption": "This song contains someone playing a blues melody on the acoustic piano along with an e-guitar and an e-bass. The acoustic drums are playing a constant rhythm while male deep voice is backed by higher sounding male voices singing harmonies along with him. Then a male voice starts talking that seems not to be part of the musical composition. This song may be playing in a cafe.", "data_idx": 4217, "number": 0, "label": "blues"} +{"file_name": "test_06897.png", "caption": "This song contains someone playing a blues melody on the acoustic piano along with an e-guitar and an e-bass. The acoustic drums are playing a constant rhythm while male deep voice is backed by higher sounding male voices singing harmonies along with him. Then a male voice starts talking that seems not to be part of the musical composition. This song may be playing in a cafe.", "data_idx": 4217, "number": 1, "label": "blues"} +{"file_name": "test_06898.png", "caption": "This song contains someone playing a blues melody on the acoustic piano along with an e-guitar and an e-bass. The acoustic drums are playing a constant rhythm while male deep voice is backed by higher sounding male voices singing harmonies along with him. Then a male voice starts talking that seems not to be part of the musical composition. This song may be playing in a cafe.", "data_idx": 4217, "number": 2, "label": "blues"} +{"file_name": "test_06899.png", "caption": "This song contains someone playing a blues melody on the acoustic piano along with an e-guitar and an e-bass. The acoustic drums are playing a constant rhythm while male deep voice is backed by higher sounding male voices singing harmonies along with him. Then a male voice starts talking that seems not to be part of the musical composition. This song may be playing in a cafe.", "data_idx": 4217, "number": 3, "label": "blues"} +{"file_name": "test_06900.png", "caption": "The soundtrack is mysterious and builds anticipation. The tempo is medium with male actors vocalising a monologue, along with a terse string section harmony. The soundtrack builds anticipation and fear. The audio quality is bad.", "data_idx": 4220, "number": 0, "label": "rock"} +{"file_name": "test_06901.png", "caption": "The soundtrack is mysterious and builds anticipation. The tempo is medium with male actors vocalising a monologue, along with a terse string section harmony. The soundtrack builds anticipation and fear. The audio quality is bad.", "data_idx": 4220, "number": 1, "label": "rock"} +{"file_name": "test_06902.png", "caption": "The soundtrack is mysterious and builds anticipation. The tempo is medium with male actors vocalising a monologue, along with a terse string section harmony. The soundtrack builds anticipation and fear. The audio quality is bad.", "data_idx": 4220, "number": 2, "label": "rock"} +{"file_name": "test_06903.png", "caption": "The soundtrack is mysterious and builds anticipation. The tempo is medium with male actors vocalising a monologue, along with a terse string section harmony. The soundtrack builds anticipation and fear. The audio quality is bad.", "data_idx": 4220, "number": 3, "label": "rock"} +{"file_name": "test_06904.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated trumpet harmony, infectious drumming, groovy bass lines and synthesiser arrangement. The Brass lead, harmony and flourish is the main layer of this instrumental . The music is youthful, buoyant, fresh, cheerful, happy and energetic. This instrumental is an Urban Blues.", "data_idx": 4221, "number": 0, "label": "hiphop"} +{"file_name": "test_06905.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated trumpet harmony, infectious drumming, groovy bass lines and synthesiser arrangement. The Brass lead, harmony and flourish is the main layer of this instrumental . The music is youthful, buoyant, fresh, cheerful, happy and energetic. This instrumental is an Urban Blues.", "data_idx": 4221, "number": 1, "label": "hiphop"} +{"file_name": "test_06906.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated trumpet harmony, infectious drumming, groovy bass lines and synthesiser arrangement. The Brass lead, harmony and flourish is the main layer of this instrumental . The music is youthful, buoyant, fresh, cheerful, happy and energetic. This instrumental is an Urban Blues.", "data_idx": 4221, "number": 2, "label": "hiphop"} +{"file_name": "test_06907.png", "caption": "This music is a lively instrumental. The tempo is fast with an animated trumpet harmony, infectious drumming, groovy bass lines and synthesiser arrangement. The Brass lead, harmony and flourish is the main layer of this instrumental . The music is youthful, buoyant, fresh, cheerful, happy and energetic. This instrumental is an Urban Blues.", "data_idx": 4221, "number": 3, "label": "hiphop"} +{"file_name": "test_06908.png", "caption": "The low quality recording features a sustained didgeridoo melody being played. It sounds low, suspenseful and the recording is noisy and in mono.", "data_idx": 4223, "number": 0, "label": "jazz"} +{"file_name": "test_06909.png", "caption": "The low quality recording features a sustained didgeridoo melody being played. It sounds low, suspenseful and the recording is noisy and in mono.", "data_idx": 4223, "number": 1, "label": "jazz"} +{"file_name": "test_06910.png", "caption": "The low quality recording features a passionate electric guitar solo melody being played. It is a bit reverberant too.", "data_idx": 4224, "number": 0, "label": "hiphop"} +{"file_name": "test_06911.png", "caption": "The low quality recording features a passionate electric guitar solo melody being played. It is a bit reverberant too.", "data_idx": 4224, "number": 1, "label": "hiphop"} +{"file_name": "test_06912.png", "caption": "The low quality recording features a passionate electric guitar solo melody being played. It is a bit reverberant too.", "data_idx": 4224, "number": 2, "label": "hiphop"} +{"file_name": "test_06913.png", "caption": "The low quality recording features a passionate electric guitar solo melody being played. It is a bit reverberant too.", "data_idx": 4224, "number": 3, "label": "hiphop"} +{"file_name": "test_06914.png", "caption": "This instrumental music is relaxing. It features a slow melody played on a harp. A flute continues to play a melody with the harp playing in the background. A male voice talks in the end in a narrative tone. This music can be played in a dream sequence in a movie.", "data_idx": 4225, "number": 0, "label": "reggae"} +{"file_name": "test_06915.png", "caption": "This instrumental music is relaxing. It features a slow melody played on a harp. A flute continues to play a melody with the harp playing in the background. A male voice talks in the end in a narrative tone. This music can be played in a dream sequence in a movie.", "data_idx": 4225, "number": 1, "label": "reggae"} +{"file_name": "test_06916.png", "caption": "This instrumental music is relaxing. It features a slow melody played on a harp. A flute continues to play a melody with the harp playing in the background. A male voice talks in the end in a narrative tone. This music can be played in a dream sequence in a movie.", "data_idx": 4225, "number": 2, "label": "reggae"} +{"file_name": "test_06917.png", "caption": "This instrumental music is relaxing. It features a slow melody played on a harp. A flute continues to play a melody with the harp playing in the background. A male voice talks in the end in a narrative tone. This music can be played in a dream sequence in a movie.", "data_idx": 4225, "number": 3, "label": "reggae"} +{"file_name": "test_06918.png", "caption": "The low quality recording features an arpeggiated acoustic guitar melody and some cars passing by sounds in the background. It sounds heartfelt, emotional and sad. The recording is noisy.", "data_idx": 4226, "number": 0, "label": "classical"} +{"file_name": "test_06919.png", "caption": "The low quality recording features an arpeggiated acoustic guitar melody and some cars passing by sounds in the background. It sounds heartfelt, emotional and sad. The recording is noisy.", "data_idx": 4226, "number": 1, "label": "classical"} +{"file_name": "test_06920.png", "caption": "The low quality recording features an arpeggiated acoustic guitar melody and some cars passing by sounds in the background. It sounds heartfelt, emotional and sad. The recording is noisy.", "data_idx": 4226, "number": 2, "label": "classical"} +{"file_name": "test_06921.png", "caption": "The low quality recording features an arpeggiated acoustic guitar melody and some cars passing by sounds in the background. It sounds heartfelt, emotional and sad. The recording is noisy.", "data_idx": 4226, "number": 3, "label": "classical"} +{"file_name": "test_06922.png", "caption": "This song contains an upright bass playing a simple bassline along with an acoustic guitar strumming chords and a mandolin playing a fast paced melody. A violin is ending the phrase in the mid range. Then male and female voices are singing with the female voice being the lead voice. In the background you can hear the crowd laughing. This song may be playing as a local concert.", "data_idx": 4228, "number": 0, "label": "reggae"} +{"file_name": "test_06923.png", "caption": "This song contains an upright bass playing a simple bassline along with an acoustic guitar strumming chords and a mandolin playing a fast paced melody. A violin is ending the phrase in the mid range. Then male and female voices are singing with the female voice being the lead voice. In the background you can hear the crowd laughing. This song may be playing as a local concert.", "data_idx": 4228, "number": 1, "label": "reggae"} +{"file_name": "test_06924.png", "caption": "This song contains an upright bass playing a simple bassline along with an acoustic guitar strumming chords and a mandolin playing a fast paced melody. A violin is ending the phrase in the mid range. Then male and female voices are singing with the female voice being the lead voice. In the background you can hear the crowd laughing. This song may be playing as a local concert.", "data_idx": 4228, "number": 2, "label": "reggae"} +{"file_name": "test_06925.png", "caption": "This song contains an upright bass playing a simple bassline along with an acoustic guitar strumming chords and a mandolin playing a fast paced melody. A violin is ending the phrase in the mid range. Then male and female voices are singing with the female voice being the lead voice. In the background you can hear the crowd laughing. This song may be playing as a local concert.", "data_idx": 4228, "number": 3, "label": "reggae"} +{"file_name": "test_06926.png", "caption": "This clip is an amateur attempt at beatboxing. The tempo is medium and the beat is Catchy but it is a failed attempt at imitating digital drums. There is a female voice speaking in foreign language.", "data_idx": 4232, "number": 0, "label": "disco"} +{"file_name": "test_06927.png", "caption": "This clip is an amateur attempt at beatboxing. The tempo is medium and the beat is Catchy but it is a failed attempt at imitating digital drums. There is a female voice speaking in foreign language.", "data_idx": 4232, "number": 1, "label": "disco"} +{"file_name": "test_06928.png", "caption": "The low quality recording features a breathy flute melody, violin melody and arpeggiated harp melody. It sounds joyful, emotional and passionate. The recording is a bit noisy.", "data_idx": 4233, "number": 0, "label": "classical"} +{"file_name": "test_06929.png", "caption": "The low quality recording features a breathy flute melody, violin melody and arpeggiated harp melody. It sounds joyful, emotional and passionate. The recording is a bit noisy.", "data_idx": 4233, "number": 1, "label": "classical"} +{"file_name": "test_06930.png", "caption": "The low quality recording features a breathy flute melody, violin melody and arpeggiated harp melody. It sounds joyful, emotional and passionate. The recording is a bit noisy.", "data_idx": 4233, "number": 2, "label": "classical"} +{"file_name": "test_06931.png", "caption": "The low quality recording features a breathy flute melody, violin melody and arpeggiated harp melody. It sounds joyful, emotional and passionate. The recording is a bit noisy.", "data_idx": 4233, "number": 3, "label": "classical"} +{"file_name": "test_06932.png", "caption": "The low quality recording features aggressive metallic and wooden percussion played chaotically. The recording is noisy, loud and in mono, as it was probably recorded with a phone.", "data_idx": 4234, "number": 0, "label": "metal"} +{"file_name": "test_06933.png", "caption": "The low quality recording features aggressive metallic and wooden percussion played chaotically. The recording is noisy, loud and in mono, as it was probably recorded with a phone.", "data_idx": 4234, "number": 1, "label": "metal"} +{"file_name": "test_06934.png", "caption": "The low quality recording features aggressive metallic and wooden percussion played chaotically. The recording is noisy, loud and in mono, as it was probably recorded with a phone.", "data_idx": 4234, "number": 2, "label": "metal"} +{"file_name": "test_06935.png", "caption": "The low quality recording features aggressive metallic and wooden percussion played chaotically. The recording is noisy, loud and in mono, as it was probably recorded with a phone.", "data_idx": 4234, "number": 3, "label": "metal"} +{"file_name": "test_06936.png", "caption": "The low quality recording features a tinny mellow rubber impact over a muffled song played on playback in the background. It sounds messy and the recording is very noisy and in mono.", "data_idx": 4235, "number": 0, "label": "classical"} +{"file_name": "test_06937.png", "caption": "The low quality recording features a tinny mellow rubber impact over a muffled song played on playback in the background. It sounds messy and the recording is very noisy and in mono.", "data_idx": 4235, "number": 1, "label": "classical"} +{"file_name": "test_06938.png", "caption": "This is a soul/R&B music piece. There is a trio of two male vocalists and a female vocalist singing melodically. The keyboard is holding the chords in the background while the electric guitar and the bass guitar are playing a groovy tune. The rhythmic background contains an electronic drum beat. The atmosphere is urban. The piece could be played during a retro-themed party at a nightclub.", "data_idx": 4236, "number": 0, "label": "disco"} +{"file_name": "test_06939.png", "caption": "This is a soul/R&B music piece. There is a trio of two male vocalists and a female vocalist singing melodically. The keyboard is holding the chords in the background while the electric guitar and the bass guitar are playing a groovy tune. The rhythmic background contains an electronic drum beat. The atmosphere is urban. The piece could be played during a retro-themed party at a nightclub.", "data_idx": 4236, "number": 1, "label": "disco"} +{"file_name": "test_06940.png", "caption": "This is a soul/R&B music piece. There is a trio of two male vocalists and a female vocalist singing melodically. The keyboard is holding the chords in the background while the electric guitar and the bass guitar are playing a groovy tune. The rhythmic background contains an electronic drum beat. The atmosphere is urban. The piece could be played during a retro-themed party at a nightclub.", "data_idx": 4236, "number": 2, "label": "disco"} +{"file_name": "test_06941.png", "caption": "This is a soul/R&B music piece. There is a trio of two male vocalists and a female vocalist singing melodically. The keyboard is holding the chords in the background while the electric guitar and the bass guitar are playing a groovy tune. The rhythmic background contains an electronic drum beat. The atmosphere is urban. The piece could be played during a retro-themed party at a nightclub.", "data_idx": 4236, "number": 3, "label": "disco"} +{"file_name": "test_06942.png", "caption": "A male voice speaks in a menacing voice over a pop song in the background. The song is fast tempo with synthesiser articulation , digital arrangements and electronic sounds with subtle male vocals. The music is upbeat, energetic, enthusiastic, youthful, chilling, vibrating, exciting and pulsating. This song is a hit by Dance Pop.", "data_idx": 4237, "number": 0, "label": "disco"} +{"file_name": "test_06943.png", "caption": "A male voice speaks in a menacing voice over a pop song in the background. The song is fast tempo with synthesiser articulation , digital arrangements and electronic sounds with subtle male vocals. The music is upbeat, energetic, enthusiastic, youthful, chilling, vibrating, exciting and pulsating. This song is a hit by Dance Pop.", "data_idx": 4237, "number": 1, "label": "disco"} +{"file_name": "test_06944.png", "caption": "A male voice speaks in a menacing voice over a pop song in the background. The song is fast tempo with synthesiser articulation , digital arrangements and electronic sounds with subtle male vocals. The music is upbeat, energetic, enthusiastic, youthful, chilling, vibrating, exciting and pulsating. This song is a hit by Dance Pop.", "data_idx": 4237, "number": 2, "label": "disco"} +{"file_name": "test_06945.png", "caption": "A male voice speaks in a menacing voice over a pop song in the background. The song is fast tempo with synthesiser articulation , digital arrangements and electronic sounds with subtle male vocals. The music is upbeat, energetic, enthusiastic, youthful, chilling, vibrating, exciting and pulsating. This song is a hit by Dance Pop.", "data_idx": 4237, "number": 3, "label": "disco"} +{"file_name": "test_06946.png", "caption": "This is a traditional Korean song featuring a motif played on a stringed instrument known as a gayageum. The percussion is simple and traditional.", "data_idx": 4238, "number": 0, "label": "jazz"} +{"file_name": "test_06947.png", "caption": "This is a traditional Korean song featuring a motif played on a stringed instrument known as a gayageum. The percussion is simple and traditional.", "data_idx": 4238, "number": 1, "label": "jazz"} +{"file_name": "test_06948.png", "caption": "This is a traditional Korean song featuring a motif played on a stringed instrument known as a gayageum. The percussion is simple and traditional.", "data_idx": 4238, "number": 2, "label": "jazz"} +{"file_name": "test_06949.png", "caption": "This is a traditional Korean song featuring a motif played on a stringed instrument known as a gayageum. The percussion is simple and traditional.", "data_idx": 4238, "number": 3, "label": "jazz"} +{"file_name": "test_06950.png", "caption": "This audio contains someone playing a modern piece of music on an acoustic piano. This song may be playing live in a bar with a piano.", "data_idx": 4240, "number": 0, "label": "classical"} +{"file_name": "test_06951.png", "caption": "This audio contains someone playing a modern piece of music on an acoustic piano. This song may be playing live in a bar with a piano.", "data_idx": 4240, "number": 1, "label": "classical"} +{"file_name": "test_06952.png", "caption": "This audio contains someone playing a modern piece of music on an acoustic piano. This song may be playing live in a bar with a piano.", "data_idx": 4240, "number": 2, "label": "classical"} +{"file_name": "test_06953.png", "caption": "This audio contains someone playing a modern piece of music on an acoustic piano. This song may be playing live in a bar with a piano.", "data_idx": 4240, "number": 3, "label": "classical"} +{"file_name": "test_06954.png", "caption": "The low quality recording features a hip hop song that consists of a mellow arpeggiated piano melody played over sustained strings melody, chime bell and filtered male vocal in the first half of the loop. In the second half the beat drops and it consists of a punchy kick and snare hits, shimmering hi hats and passionate female vocals singing over. It sounds passionate, groovy and emotional.", "data_idx": 4241, "number": 0, "label": "classical"} +{"file_name": "test_06955.png", "caption": "The low quality recording features a hip hop song that consists of a mellow arpeggiated piano melody played over sustained strings melody, chime bell and filtered male vocal in the first half of the loop. In the second half the beat drops and it consists of a punchy kick and snare hits, shimmering hi hats and passionate female vocals singing over. It sounds passionate, groovy and emotional.", "data_idx": 4241, "number": 1, "label": "classical"} +{"file_name": "test_06956.png", "caption": "The low quality recording features a hip hop song that consists of a mellow arpeggiated piano melody played over sustained strings melody, chime bell and filtered male vocal in the first half of the loop. In the second half the beat drops and it consists of a punchy kick and snare hits, shimmering hi hats and passionate female vocals singing over. It sounds passionate, groovy and emotional.", "data_idx": 4241, "number": 2, "label": "classical"} +{"file_name": "test_06957.png", "caption": "The low quality recording features a hip hop song that consists of a mellow arpeggiated piano melody played over sustained strings melody, chime bell and filtered male vocal in the first half of the loop. In the second half the beat drops and it consists of a punchy kick and snare hits, shimmering hi hats and passionate female vocals singing over. It sounds passionate, groovy and emotional.", "data_idx": 4241, "number": 3, "label": "classical"} +{"file_name": "test_06958.png", "caption": "This is a Greek folk music piece. There is a male vocalist singing melodically and with a lot of articulation. The clarinet is playing the main theme while there is an electric guitar playing a backing tune. The rhythmic background consists of a percussion line that sounds very much like the toubeleki. There is a vibrant atmosphere. This piece could be playing in the background at a Greek cuisine restaurant or a Greek tavern.", "data_idx": 4243, "number": 0, "label": "blues"} +{"file_name": "test_06959.png", "caption": "This is a Greek folk music piece. There is a male vocalist singing melodically and with a lot of articulation. The clarinet is playing the main theme while there is an electric guitar playing a backing tune. The rhythmic background consists of a percussion line that sounds very much like the toubeleki. There is a vibrant atmosphere. This piece could be playing in the background at a Greek cuisine restaurant or a Greek tavern.", "data_idx": 4243, "number": 1, "label": "blues"} +{"file_name": "test_06960.png", "caption": "This is a Greek folk music piece. There is a male vocalist singing melodically and with a lot of articulation. The clarinet is playing the main theme while there is an electric guitar playing a backing tune. The rhythmic background consists of a percussion line that sounds very much like the toubeleki. There is a vibrant atmosphere. This piece could be playing in the background at a Greek cuisine restaurant or a Greek tavern.", "data_idx": 4243, "number": 2, "label": "blues"} +{"file_name": "test_06961.png", "caption": "This is a Greek folk music piece. There is a male vocalist singing melodically and with a lot of articulation. The clarinet is playing the main theme while there is an electric guitar playing a backing tune. The rhythmic background consists of a percussion line that sounds very much like the toubeleki. There is a vibrant atmosphere. This piece could be playing in the background at a Greek cuisine restaurant or a Greek tavern.", "data_idx": 4243, "number": 3, "label": "blues"} +{"file_name": "test_06962.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple but fast paced beat. Trumpets are featured in this song playing fills at high pitch. This song can be played in an aerobics workout session where fast movements are required.", "data_idx": 4244, "number": 0, "label": "metal"} +{"file_name": "test_06963.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple but fast paced beat. Trumpets are featured in this song playing fills at high pitch. This song can be played in an aerobics workout session where fast movements are required.", "data_idx": 4244, "number": 1, "label": "metal"} +{"file_name": "test_06964.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple but fast paced beat. Trumpets are featured in this song playing fills at high pitch. This song can be played in an aerobics workout session where fast movements are required.", "data_idx": 4244, "number": 2, "label": "metal"} +{"file_name": "test_06965.png", "caption": "This low quality audio features a male voice singing the main melody. This is accompanied by percussion playing a simple but fast paced beat. Trumpets are featured in this song playing fills at high pitch. This song can be played in an aerobics workout session where fast movements are required.", "data_idx": 4244, "number": 3, "label": "metal"} +{"file_name": "test_06966.png", "caption": "A female vocalist sings this pop song in a foreign language. The tempo is medium with karaoke music and vocal backup. The audio quality is inferior and the music is incoherent except for a violin harmony and piano accompaniment. This song is an amateur home video.", "data_idx": 4245, "number": 0, "label": "classical"} +{"file_name": "test_06967.png", "caption": "A female vocalist sings this pop song in a foreign language. The tempo is medium with karaoke music and vocal backup. The audio quality is inferior and the music is incoherent except for a violin harmony and piano accompaniment. This song is an amateur home video.", "data_idx": 4245, "number": 1, "label": "classical"} +{"file_name": "test_06968.png", "caption": "Someone is playing a shofar in a very high pitch using rhythmic techniques. There is some reverb of the room in the recording. This song may be playing while enjoying your instrument at home.", "data_idx": 4247, "number": 0, "label": "jazz"} +{"file_name": "test_06969.png", "caption": "Someone is playing a shofar in a very high pitch using rhythmic techniques. There is some reverb of the room in the recording. This song may be playing while enjoying your instrument at home.", "data_idx": 4247, "number": 1, "label": "jazz"} +{"file_name": "test_06970.png", "caption": "Someone is playing a shofar in a very high pitch using rhythmic techniques. There is some reverb of the room in the recording. This song may be playing while enjoying your instrument at home.", "data_idx": 4247, "number": 2, "label": "jazz"} +{"file_name": "test_06971.png", "caption": "Someone is playing a shofar in a very high pitch using rhythmic techniques. There is some reverb of the room in the recording. This song may be playing while enjoying your instrument at home.", "data_idx": 4247, "number": 3, "label": "jazz"} +{"file_name": "test_06972.png", "caption": "This music is instrumental. The tempo is fast with a loud, lively keyboard , hard hitting drums and electric guitar melody. The audio is muffled so it is hard to hear the other instruments. This performance is live with ambient sounds of audience cheering, clapping and singing along. This music is a Christmas Carol instrumental.", "data_idx": 4249, "number": 0, "label": "rock"} +{"file_name": "test_06973.png", "caption": "This music is instrumental. The tempo is fast with a loud, lively keyboard , hard hitting drums and electric guitar melody. The audio is muffled so it is hard to hear the other instruments. This performance is live with ambient sounds of audience cheering, clapping and singing along. This music is a Christmas Carol instrumental.", "data_idx": 4249, "number": 1, "label": "rock"} +{"file_name": "test_06974.png", "caption": "This music is instrumental. The tempo is fast with a loud, lively keyboard , hard hitting drums and electric guitar melody. The audio is muffled so it is hard to hear the other instruments. This performance is live with ambient sounds of audience cheering, clapping and singing along. This music is a Christmas Carol instrumental.", "data_idx": 4249, "number": 2, "label": "rock"} +{"file_name": "test_06975.png", "caption": "This music is instrumental. The tempo is fast with a loud, lively keyboard , hard hitting drums and electric guitar melody. The audio is muffled so it is hard to hear the other instruments. This performance is live with ambient sounds of audience cheering, clapping and singing along. This music is a Christmas Carol instrumental.", "data_idx": 4249, "number": 3, "label": "rock"} +{"file_name": "test_06976.png", "caption": "The low quality recording features a passionate male vocal, alongside passionate female vocal in the left channel of the stereo image, singing over shimmering hi hats, which are also in the left channel, widely spread funky electric guitar chords, synth keys melody in the right channel, groovy bass, wooden percussions and mellow rimshots. It sounds happy, joyful, easygoing and chill.", "data_idx": 4250, "number": 0, "label": "reggae"} +{"file_name": "test_06977.png", "caption": "The low quality recording features a passionate male vocal, alongside passionate female vocal in the left channel of the stereo image, singing over shimmering hi hats, which are also in the left channel, widely spread funky electric guitar chords, synth keys melody in the right channel, groovy bass, wooden percussions and mellow rimshots. It sounds happy, joyful, easygoing and chill.", "data_idx": 4250, "number": 1, "label": "reggae"} +{"file_name": "test_06978.png", "caption": "The low quality recording features a passionate male vocal, alongside passionate female vocal in the left channel of the stereo image, singing over shimmering hi hats, which are also in the left channel, widely spread funky electric guitar chords, synth keys melody in the right channel, groovy bass, wooden percussions and mellow rimshots. It sounds happy, joyful, easygoing and chill.", "data_idx": 4250, "number": 2, "label": "reggae"} +{"file_name": "test_06979.png", "caption": "The low quality recording features a passionate male vocal, alongside passionate female vocal in the left channel of the stereo image, singing over shimmering hi hats, which are also in the left channel, widely spread funky electric guitar chords, synth keys melody in the right channel, groovy bass, wooden percussions and mellow rimshots. It sounds happy, joyful, easygoing and chill.", "data_idx": 4250, "number": 3, "label": "reggae"} +{"file_name": "test_06980.png", "caption": "A male singer sings this hip hop dance song. The tempo is medium tempo with a groovy bass line, keyboard harmony and reggae inspired drumming rhythm. The song is story telling and romantic in nature.", "data_idx": 4252, "number": 0, "label": "reggae"} +{"file_name": "test_06981.png", "caption": "A male singer sings this hip hop dance song. The tempo is medium tempo with a groovy bass line, keyboard harmony and reggae inspired drumming rhythm. The song is story telling and romantic in nature.", "data_idx": 4252, "number": 1, "label": "reggae"} +{"file_name": "test_06982.png", "caption": "A male singer sings this hip hop dance song. The tempo is medium tempo with a groovy bass line, keyboard harmony and reggae inspired drumming rhythm. The song is story telling and romantic in nature.", "data_idx": 4252, "number": 2, "label": "reggae"} +{"file_name": "test_06983.png", "caption": "A male singer sings this hip hop dance song. The tempo is medium tempo with a groovy bass line, keyboard harmony and reggae inspired drumming rhythm. The song is story telling and romantic in nature.", "data_idx": 4252, "number": 3, "label": "reggae"} +{"file_name": "test_06984.png", "caption": "The low quality recording features laughing male sounds over sloppy drums that contain energetic crash cymbal hits and toms percussion. It sounds exciting, even though the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4253, "number": 0, "label": "hiphop"} +{"file_name": "test_06985.png", "caption": "The low quality recording features laughing male sounds over sloppy drums that contain energetic crash cymbal hits and toms percussion. It sounds exciting, even though the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4253, "number": 1, "label": "hiphop"} +{"file_name": "test_06986.png", "caption": "The low quality recording features laughing male sounds over sloppy drums that contain energetic crash cymbal hits and toms percussion. It sounds exciting, even though the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4253, "number": 2, "label": "hiphop"} +{"file_name": "test_06987.png", "caption": "The low quality recording features laughing male sounds over sloppy drums that contain energetic crash cymbal hits and toms percussion. It sounds exciting, even though the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4253, "number": 3, "label": "hiphop"} +{"file_name": "test_06988.png", "caption": "This is an ASMR clip which features a sound that is crackly and fuzzy. We also hear the ambient tone of a room - possibly an air conditioner in the background.", "data_idx": 4256, "number": 0, "label": "metal"} +{"file_name": "test_06989.png", "caption": "This is an ASMR clip which features a sound that is crackly and fuzzy. We also hear the ambient tone of a room - possibly an air conditioner in the background.", "data_idx": 4256, "number": 1, "label": "metal"} +{"file_name": "test_06990.png", "caption": "This is an ASMR clip which features a sound that is crackly and fuzzy. We also hear the ambient tone of a room - possibly an air conditioner in the background.", "data_idx": 4256, "number": 2, "label": "metal"} +{"file_name": "test_06991.png", "caption": "This is an ASMR clip which features a sound that is crackly and fuzzy. We also hear the ambient tone of a room - possibly an air conditioner in the background.", "data_idx": 4256, "number": 3, "label": "metal"} +{"file_name": "test_06992.png", "caption": "The low quality recording features a traditional song that consists of passionate male vocals singing over wooden percussion, claps, repetitive plucked strings melody and accordion melody. The percussion and plucked strings are in the left channel, while the other elements are in the right channel of the stereo image. It sounds passionate and soulful.", "data_idx": 4258, "number": 0, "label": "disco"} +{"file_name": "test_06993.png", "caption": "The low quality recording features a traditional song that consists of passionate male vocals singing over wooden percussion, claps, repetitive plucked strings melody and accordion melody. The percussion and plucked strings are in the left channel, while the other elements are in the right channel of the stereo image. It sounds passionate and soulful.", "data_idx": 4258, "number": 1, "label": "disco"} +{"file_name": "test_06994.png", "caption": "The low quality recording features a traditional song that consists of passionate male vocals singing over wooden percussion, claps, repetitive plucked strings melody and accordion melody. The percussion and plucked strings are in the left channel, while the other elements are in the right channel of the stereo image. It sounds passionate and soulful.", "data_idx": 4258, "number": 2, "label": "disco"} +{"file_name": "test_06995.png", "caption": "The low quality recording features a traditional song that consists of passionate male vocals singing over wooden percussion, claps, repetitive plucked strings melody and accordion melody. The percussion and plucked strings are in the left channel, while the other elements are in the right channel of the stereo image. It sounds passionate and soulful.", "data_idx": 4258, "number": 3, "label": "disco"} +{"file_name": "test_06996.png", "caption": "This is an electronic dance music piece. It is an instrumental piece. There is an ambient synth holding a note in the background while a melodic pad is playing the main tune. The rhythmic background consists of a medium tempo electronic drum beat. The atmosphere is danceable and trippy. This piece could be playing in the background at a nightclub or a dance club. It could also work well in the soundtrack of a sci-fi video game with a dystopian future setting.", "data_idx": 4259, "number": 0, "label": "reggae"} +{"file_name": "test_06997.png", "caption": "This is an electronic dance music piece. It is an instrumental piece. There is an ambient synth holding a note in the background while a melodic pad is playing the main tune. The rhythmic background consists of a medium tempo electronic drum beat. The atmosphere is danceable and trippy. This piece could be playing in the background at a nightclub or a dance club. It could also work well in the soundtrack of a sci-fi video game with a dystopian future setting.", "data_idx": 4259, "number": 1, "label": "reggae"} +{"file_name": "test_06998.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in between harmonica tones. The recording is mono and noisy.", "data_idx": 4260, "number": 0, "label": "classical"} +{"file_name": "test_06999.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in between harmonica tones. The recording is mono and noisy.", "data_idx": 4260, "number": 1, "label": "classical"} +{"file_name": "test_07000.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in between harmonica tones. The recording is mono and noisy.", "data_idx": 4260, "number": 2, "label": "classical"} +{"file_name": "test_07001.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in between harmonica tones. The recording is mono and noisy.", "data_idx": 4260, "number": 3, "label": "classical"} +{"file_name": "test_07002.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking in-between punchy electro kick and synth hi hat. The recording is noisy and in mono.", "data_idx": 4262, "number": 0, "label": "rock"} +{"file_name": "test_07003.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking in-between punchy electro kick and synth hi hat. The recording is noisy and in mono.", "data_idx": 4262, "number": 1, "label": "rock"} +{"file_name": "test_07004.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking in-between punchy electro kick and synth hi hat. The recording is noisy and in mono.", "data_idx": 4262, "number": 2, "label": "rock"} +{"file_name": "test_07005.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking in-between punchy electro kick and synth hi hat. The recording is noisy and in mono.", "data_idx": 4262, "number": 3, "label": "rock"} +{"file_name": "test_07006.png", "caption": "The low quality recording features a didgeridoo melody played outside, along with some birds chirping and crickets sounds. The recording is noisy and in mono.", "data_idx": 4264, "number": 0, "label": "jazz"} +{"file_name": "test_07007.png", "caption": "The low quality recording features a didgeridoo melody played outside, along with some birds chirping and crickets sounds. The recording is noisy and in mono.", "data_idx": 4264, "number": 1, "label": "jazz"} +{"file_name": "test_07008.png", "caption": "The low quality recording features a harmonizing female vocals singing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 4265, "number": 0, "label": "rock"} +{"file_name": "test_07009.png", "caption": "The low quality recording features a harmonizing female vocals singing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 4265, "number": 1, "label": "rock"} +{"file_name": "test_07010.png", "caption": "The low quality recording features a harmonizing female vocals singing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 4265, "number": 2, "label": "rock"} +{"file_name": "test_07011.png", "caption": "The low quality recording features a harmonizing female vocals singing. It sounds passionate, emotional and the recording is noisy and in mono.", "data_idx": 4265, "number": 3, "label": "rock"} +{"file_name": "test_07012.png", "caption": "The low quality recording features a live performance of a metal song that features a flat male vocal talking, repetitive cowbell percussion and manic drums. The recording is loud, messy, distorted, muffled and it sounds aggressive and uptempo.", "data_idx": 4268, "number": 0, "label": "rock"} +{"file_name": "test_07013.png", "caption": "The low quality recording features a live performance of a metal song that features a flat male vocal talking, repetitive cowbell percussion and manic drums. The recording is loud, messy, distorted, muffled and it sounds aggressive and uptempo.", "data_idx": 4268, "number": 1, "label": "rock"} +{"file_name": "test_07014.png", "caption": "The low quality recording features a sustained strings melody over which there is a mellow arpeggiated harp melody being played. It sounds spooky, haunting and emotional - like something you would hear in thriller mystery movies.", "data_idx": 4269, "number": 0, "label": "classical"} +{"file_name": "test_07015.png", "caption": "The low quality recording features a sustained strings melody over which there is a mellow arpeggiated harp melody being played. It sounds spooky, haunting and emotional - like something you would hear in thriller mystery movies.", "data_idx": 4269, "number": 1, "label": "classical"} +{"file_name": "test_07016.png", "caption": "The low quality recording features a sustained strings melody over which there is a mellow arpeggiated harp melody being played. It sounds spooky, haunting and emotional - like something you would hear in thriller mystery movies.", "data_idx": 4269, "number": 2, "label": "classical"} +{"file_name": "test_07017.png", "caption": "The low quality recording features a sustained strings melody over which there is a mellow arpeggiated harp melody being played. It sounds spooky, haunting and emotional - like something you would hear in thriller mystery movies.", "data_idx": 4269, "number": 3, "label": "classical"} +{"file_name": "test_07018.png", "caption": "This audio contains a violent and tense cinematic composition. Evolving synth pads are played in a higher key with an aggressive overdrive bass sound with reverb. Then you can hear a machine gun shooting. This song may be playing for an action video-game.", "data_idx": 4271, "number": 0, "label": "rock"} +{"file_name": "test_07019.png", "caption": "This audio contains a violent and tense cinematic composition. Evolving synth pads are played in a higher key with an aggressive overdrive bass sound with reverb. Then you can hear a machine gun shooting. This song may be playing for an action video-game.", "data_idx": 4271, "number": 1, "label": "rock"} +{"file_name": "test_07020.png", "caption": "This audio contains a violent and tense cinematic composition. Evolving synth pads are played in a higher key with an aggressive overdrive bass sound with reverb. Then you can hear a machine gun shooting. This song may be playing for an action video-game.", "data_idx": 4271, "number": 2, "label": "rock"} +{"file_name": "test_07021.png", "caption": "This audio contains a violent and tense cinematic composition. Evolving synth pads are played in a higher key with an aggressive overdrive bass sound with reverb. Then you can hear a machine gun shooting. This song may be playing for an action video-game.", "data_idx": 4271, "number": 3, "label": "rock"} +{"file_name": "test_07022.png", "caption": "This is a classical music piece from the romantic era. The piece is being performed by the double bass. There is a melancholic atmosphere to the piece. The overall feel is dark and dramatic. This piece could be used in the soundtrack of an art movie.", "data_idx": 4275, "number": 0, "label": "classical"} +{"file_name": "test_07023.png", "caption": "This is a classical music piece from the romantic era. The piece is being performed by the double bass. There is a melancholic atmosphere to the piece. The overall feel is dark and dramatic. This piece could be used in the soundtrack of an art movie.", "data_idx": 4275, "number": 1, "label": "classical"} +{"file_name": "test_07024.png", "caption": "This is a classical music piece from the romantic era. The piece is being performed by the double bass. There is a melancholic atmosphere to the piece. The overall feel is dark and dramatic. This piece could be used in the soundtrack of an art movie.", "data_idx": 4275, "number": 2, "label": "classical"} +{"file_name": "test_07025.png", "caption": "This is a classical music piece from the romantic era. The piece is being performed by the double bass. There is a melancholic atmosphere to the piece. The overall feel is dark and dramatic. This piece could be used in the soundtrack of an art movie.", "data_idx": 4275, "number": 3, "label": "classical"} +{"file_name": "test_07026.png", "caption": "This music is instrumental. The tempo is slow with an electric guitar harmony. It is mellow, sad, sentimental,sombre, poignant and emotional. This music is a movie theme melody.", "data_idx": 4276, "number": 0, "label": "classical"} +{"file_name": "test_07027.png", "caption": "This music is instrumental. The tempo is slow with an electric guitar harmony. It is mellow, sad, sentimental,sombre, poignant and emotional. This music is a movie theme melody.", "data_idx": 4276, "number": 1, "label": "classical"} +{"file_name": "test_07028.png", "caption": "This music is instrumental. The tempo is slow with an electric guitar harmony. It is mellow, sad, sentimental,sombre, poignant and emotional. This music is a movie theme melody.", "data_idx": 4276, "number": 2, "label": "classical"} +{"file_name": "test_07029.png", "caption": "This music is instrumental. The tempo is slow with an electric guitar harmony. It is mellow, sad, sentimental,sombre, poignant and emotional. This music is a movie theme melody.", "data_idx": 4276, "number": 3, "label": "classical"} +{"file_name": "test_07030.png", "caption": "This music is instrumental. The tempo is fast with an enthralling harpsichord melody. The music is an energetic, high-powered, vibrant, vivacious and melodious western classical.", "data_idx": 4277, "number": 0, "label": "classical"} +{"file_name": "test_07031.png", "caption": "This music is instrumental. The tempo is fast with an enthralling harpsichord melody. The music is an energetic, high-powered, vibrant, vivacious and melodious western classical.", "data_idx": 4277, "number": 1, "label": "classical"} +{"file_name": "test_07032.png", "caption": "This music is instrumental. The tempo is fast with an enthralling harpsichord melody. The music is an energetic, high-powered, vibrant, vivacious and melodious western classical.", "data_idx": 4277, "number": 2, "label": "classical"} +{"file_name": "test_07033.png", "caption": "This music is instrumental. The tempo is fast with an enthralling harpsichord melody. The music is an energetic, high-powered, vibrant, vivacious and melodious western classical.", "data_idx": 4277, "number": 3, "label": "classical"} +{"file_name": "test_07034.png", "caption": "A male singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a slick drumming rhythm, keyboard accompaniment, beep tones, strong bass line and slick percussion hits. The song is groovy and story telling in nature. The song has poor audio quality.", "data_idx": 4279, "number": 0, "label": "hiphop"} +{"file_name": "test_07035.png", "caption": "A male singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a slick drumming rhythm, keyboard accompaniment, beep tones, strong bass line and slick percussion hits. The song is groovy and story telling in nature. The song has poor audio quality.", "data_idx": 4279, "number": 1, "label": "hiphop"} +{"file_name": "test_07036.png", "caption": "A male singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a slick drumming rhythm, keyboard accompaniment, beep tones, strong bass line and slick percussion hits. The song is groovy and story telling in nature. The song has poor audio quality.", "data_idx": 4279, "number": 2, "label": "hiphop"} +{"file_name": "test_07037.png", "caption": "A male singer sings this passionate melody with backup singers in vocal harmony. The song is medium tempo with a slick drumming rhythm, keyboard accompaniment, beep tones, strong bass line and slick percussion hits. The song is groovy and story telling in nature. The song has poor audio quality.", "data_idx": 4279, "number": 3, "label": "hiphop"} +{"file_name": "test_07038.png", "caption": "This recording is full of flutes and string instruments played with a bow. All of them are playing melodies spread across the sides of the speakers. Someone is playing a percussion instrument and a male voice is singing in a higher key. To me it sounds overloaded with too many melodies playing at the same time. This song may be playing in a traditional presentation.", "data_idx": 4280, "number": 0, "label": "blues"} +{"file_name": "test_07039.png", "caption": "This recording is full of flutes and string instruments played with a bow. All of them are playing melodies spread across the sides of the speakers. Someone is playing a percussion instrument and a male voice is singing in a higher key. To me it sounds overloaded with too many melodies playing at the same time. This song may be playing in a traditional presentation.", "data_idx": 4280, "number": 1, "label": "blues"} +{"file_name": "test_07040.png", "caption": "This recording is full of flutes and string instruments played with a bow. All of them are playing melodies spread across the sides of the speakers. Someone is playing a percussion instrument and a male voice is singing in a higher key. To me it sounds overloaded with too many melodies playing at the same time. This song may be playing in a traditional presentation.", "data_idx": 4280, "number": 2, "label": "blues"} +{"file_name": "test_07041.png", "caption": "This recording is full of flutes and string instruments played with a bow. All of them are playing melodies spread across the sides of the speakers. Someone is playing a percussion instrument and a male voice is singing in a higher key. To me it sounds overloaded with too many melodies playing at the same time. This song may be playing in a traditional presentation.", "data_idx": 4280, "number": 3, "label": "blues"} +{"file_name": "test_07042.png", "caption": "This is a hip-hop/dancehall music piece. There is a repeating female vocal sample in the lead. The piano is playing the chords of the song. There is a groovy bass guitar in the background. The rhythm is provided by an acoustic drum beat with a lot of rhythmic sound effects applied to give it more of a swing feel. The atmosphere of the piece is chill and urban. This piece could be the opening theme of a sit-com taking place in the big city.", "data_idx": 4286, "number": 0, "label": "metal"} +{"file_name": "test_07043.png", "caption": "This is a hip-hop/dancehall music piece. There is a repeating female vocal sample in the lead. The piano is playing the chords of the song. There is a groovy bass guitar in the background. The rhythm is provided by an acoustic drum beat with a lot of rhythmic sound effects applied to give it more of a swing feel. The atmosphere of the piece is chill and urban. This piece could be the opening theme of a sit-com taking place in the big city.", "data_idx": 4286, "number": 1, "label": "metal"} +{"file_name": "test_07044.png", "caption": "This is a hip-hop/dancehall music piece. There is a repeating female vocal sample in the lead. The piano is playing the chords of the song. There is a groovy bass guitar in the background. The rhythm is provided by an acoustic drum beat with a lot of rhythmic sound effects applied to give it more of a swing feel. The atmosphere of the piece is chill and urban. This piece could be the opening theme of a sit-com taking place in the big city.", "data_idx": 4286, "number": 2, "label": "metal"} +{"file_name": "test_07045.png", "caption": "This is a hip-hop/dancehall music piece. There is a repeating female vocal sample in the lead. The piano is playing the chords of the song. There is a groovy bass guitar in the background. The rhythm is provided by an acoustic drum beat with a lot of rhythmic sound effects applied to give it more of a swing feel. The atmosphere of the piece is chill and urban. This piece could be the opening theme of a sit-com taking place in the big city.", "data_idx": 4286, "number": 3, "label": "metal"} +{"file_name": "test_07046.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained synth pad, followed by mellow sustained strings. It sounds relaxing, calming and like something you would listen to in a yoga session.", "data_idx": 4289, "number": 0, "label": "classical"} +{"file_name": "test_07047.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained synth pad, followed by mellow sustained strings. It sounds relaxing, calming and like something you would listen to in a yoga session.", "data_idx": 4289, "number": 1, "label": "classical"} +{"file_name": "test_07048.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained synth pad, followed by mellow sustained strings. It sounds relaxing, calming and like something you would listen to in a yoga session.", "data_idx": 4289, "number": 2, "label": "classical"} +{"file_name": "test_07049.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained synth pad, followed by mellow sustained strings. It sounds relaxing, calming and like something you would listen to in a yoga session.", "data_idx": 4289, "number": 3, "label": "classical"} +{"file_name": "test_07050.png", "caption": "This contemporary gospel song features a female voice. When the voice reaches a high pitch, she sings in falsetto. This is accompanied by percussion playing the floor tom and kick. The splash cymbal is played on the fourth count of the bars. A piano plays arpeggiated chords in the background. Synth pads play chords in the background filling the musicscape. This gospel song is emotional. This song can be played in a worship session in church.", "data_idx": 4295, "number": 0, "label": "disco"} +{"file_name": "test_07051.png", "caption": "This contemporary gospel song features a female voice. When the voice reaches a high pitch, she sings in falsetto. This is accompanied by percussion playing the floor tom and kick. The splash cymbal is played on the fourth count of the bars. A piano plays arpeggiated chords in the background. Synth pads play chords in the background filling the musicscape. This gospel song is emotional. This song can be played in a worship session in church.", "data_idx": 4295, "number": 1, "label": "disco"} +{"file_name": "test_07052.png", "caption": "This contemporary gospel song features a female voice. When the voice reaches a high pitch, she sings in falsetto. This is accompanied by percussion playing the floor tom and kick. The splash cymbal is played on the fourth count of the bars. A piano plays arpeggiated chords in the background. Synth pads play chords in the background filling the musicscape. This gospel song is emotional. This song can be played in a worship session in church.", "data_idx": 4295, "number": 2, "label": "disco"} +{"file_name": "test_07053.png", "caption": "This contemporary gospel song features a female voice. When the voice reaches a high pitch, she sings in falsetto. This is accompanied by percussion playing the floor tom and kick. The splash cymbal is played on the fourth count of the bars. A piano plays arpeggiated chords in the background. Synth pads play chords in the background filling the musicscape. This gospel song is emotional. This song can be played in a worship session in church.", "data_idx": 4295, "number": 3, "label": "disco"} +{"file_name": "test_07054.png", "caption": "This audio contains a simple drum groove along with a bassline playing long notes. A piano and keyboard are playing chords and melodies panned to the left and right side of the speakers. Male voices are singing a melody together. Some in the mid and high range and one as a bass voice. This audio may be playing at a celebration event.", "data_idx": 4296, "number": 0, "label": "rock"} +{"file_name": "test_07055.png", "caption": "This audio contains a simple drum groove along with a bassline playing long notes. A piano and keyboard are playing chords and melodies panned to the left and right side of the speakers. Male voices are singing a melody together. Some in the mid and high range and one as a bass voice. This audio may be playing at a celebration event.", "data_idx": 4296, "number": 1, "label": "rock"} +{"file_name": "test_07056.png", "caption": "This audio contains a simple drum groove along with a bassline playing long notes. A piano and keyboard are playing chords and melodies panned to the left and right side of the speakers. Male voices are singing a melody together. Some in the mid and high range and one as a bass voice. This audio may be playing at a celebration event.", "data_idx": 4296, "number": 2, "label": "rock"} +{"file_name": "test_07057.png", "caption": "This audio contains a simple drum groove along with a bassline playing long notes. A piano and keyboard are playing chords and melodies panned to the left and right side of the speakers. Male voices are singing a melody together. Some in the mid and high range and one as a bass voice. This audio may be playing at a celebration event.", "data_idx": 4296, "number": 3, "label": "rock"} +{"file_name": "test_07058.png", "caption": "The low quality recording features a flat male talking, after which there are harmonizing clarinet melodies playing. It sounds soulful and the recording is in mono and noisy.", "data_idx": 4298, "number": 0, "label": "blues"} +{"file_name": "test_07059.png", "caption": "The low quality recording features a flat male talking, after which there are harmonizing clarinet melodies playing. It sounds soulful and the recording is in mono and noisy.", "data_idx": 4298, "number": 1, "label": "blues"} +{"file_name": "test_07060.png", "caption": "The low quality recording features a flat male talking, after which there are harmonizing clarinet melodies playing. It sounds soulful and the recording is in mono and noisy.", "data_idx": 4298, "number": 2, "label": "blues"} +{"file_name": "test_07061.png", "caption": "The low quality recording features a flat male talking, after which there are harmonizing clarinet melodies playing. It sounds soulful and the recording is in mono and noisy.", "data_idx": 4298, "number": 3, "label": "blues"} +{"file_name": "test_07062.png", "caption": "This audio contains a male church choir singing from the low register up into the mid-higher register. An acoustic piano is providing single notes walking up the keybed. This song may be playing in a church sung by a male choir.", "data_idx": 4299, "number": 0, "label": "classical"} +{"file_name": "test_07063.png", "caption": "This audio contains a male church choir singing from the low register up into the mid-higher register. An acoustic piano is providing single notes walking up the keybed. This song may be playing in a church sung by a male choir.", "data_idx": 4299, "number": 1, "label": "classical"} +{"file_name": "test_07064.png", "caption": "This audio contains a male church choir singing from the low register up into the mid-higher register. An acoustic piano is providing single notes walking up the keybed. This song may be playing in a church sung by a male choir.", "data_idx": 4299, "number": 2, "label": "classical"} +{"file_name": "test_07065.png", "caption": "This audio contains a male church choir singing from the low register up into the mid-higher register. An acoustic piano is providing single notes walking up the keybed. This song may be playing in a church sung by a male choir.", "data_idx": 4299, "number": 3, "label": "classical"} +{"file_name": "test_07066.png", "caption": "The low quality recording features a pop song that consists of a passionate, echoing female vocal singing over punchy kick, groovy bass, repetitive synth lead melody and some claps. It sounds energetic, passionate and addictive.", "data_idx": 4301, "number": 0, "label": "pop"} +{"file_name": "test_07067.png", "caption": "The low quality recording features a pop song that consists of a passionate, echoing female vocal singing over punchy kick, groovy bass, repetitive synth lead melody and some claps. It sounds energetic, passionate and addictive.", "data_idx": 4301, "number": 1, "label": "pop"} +{"file_name": "test_07068.png", "caption": "solo ukelele playing in free time in a demonstrative manner with a female voiceover.", "data_idx": 4305, "number": 0, "label": "reggae"} +{"file_name": "test_07069.png", "caption": "solo ukelele playing in free time in a demonstrative manner with a female voiceover.", "data_idx": 4305, "number": 1, "label": "reggae"} +{"file_name": "test_07070.png", "caption": "solo ukelele playing in free time in a demonstrative manner with a female voiceover.", "data_idx": 4305, "number": 2, "label": "reggae"} +{"file_name": "test_07071.png", "caption": "solo ukelele playing in free time in a demonstrative manner with a female voiceover.", "data_idx": 4305, "number": 3, "label": "reggae"} +{"file_name": "test_07072.png", "caption": "The low quality recording features a short snippet of flat male vocals, followed by steel guitar melodies. It sounds passionate, even though the recording is very noisy.", "data_idx": 4306, "number": 0, "label": "classical"} +{"file_name": "test_07073.png", "caption": "The low quality recording features a short snippet of flat male vocals, followed by steel guitar melodies. It sounds passionate, even though the recording is very noisy.", "data_idx": 4306, "number": 1, "label": "classical"} +{"file_name": "test_07074.png", "caption": "The low quality recording features a short snippet of flat male vocals, followed by steel guitar melodies. It sounds passionate, even though the recording is very noisy.", "data_idx": 4306, "number": 2, "label": "classical"} +{"file_name": "test_07075.png", "caption": "The low quality recording features a short snippet of flat male vocals, followed by steel guitar melodies. It sounds passionate, even though the recording is very noisy.", "data_idx": 4306, "number": 3, "label": "classical"} +{"file_name": "test_07076.png", "caption": "This audio contains a synth drone playing in the lower midrange and other synthesizer sounds on top. One of them is playing a melody in a higher pitch. A female voice is talking along to the music. The whole recording is full of reverb. This song may be playing during meditation or while falling asleep.", "data_idx": 4307, "number": 0, "label": "reggae"} +{"file_name": "test_07077.png", "caption": "This audio contains a synth drone playing in the lower midrange and other synthesizer sounds on top. One of them is playing a melody in a higher pitch. A female voice is talking along to the music. The whole recording is full of reverb. This song may be playing during meditation or while falling asleep.", "data_idx": 4307, "number": 1, "label": "reggae"} +{"file_name": "test_07078.png", "caption": "This audio contains a synth drone playing in the lower midrange and other synthesizer sounds on top. One of them is playing a melody in a higher pitch. A female voice is talking along to the music. The whole recording is full of reverb. This song may be playing during meditation or while falling asleep.", "data_idx": 4307, "number": 2, "label": "reggae"} +{"file_name": "test_07079.png", "caption": "This audio contains a synth drone playing in the lower midrange and other synthesizer sounds on top. One of them is playing a melody in a higher pitch. A female voice is talking along to the music. The whole recording is full of reverb. This song may be playing during meditation or while falling asleep.", "data_idx": 4307, "number": 3, "label": "reggae"} +{"file_name": "test_07080.png", "caption": "This is a classical music piece performed by an orchestra. There is a wide ranging brass section that has the french horn as the lead playing the melody. In the percussive background there are the tubular bells which give the piece a festive feel. The atmosphere is vibrant. This piece would fit perfectly in the soundtrack of a Christmas movie either as the opening theme or during the scenes where there is a preparation going on.", "data_idx": 4310, "number": 0, "label": "jazz"} +{"file_name": "test_07081.png", "caption": "This is a classical music piece performed by an orchestra. There is a wide ranging brass section that has the french horn as the lead playing the melody. In the percussive background there are the tubular bells which give the piece a festive feel. The atmosphere is vibrant. This piece would fit perfectly in the soundtrack of a Christmas movie either as the opening theme or during the scenes where there is a preparation going on.", "data_idx": 4310, "number": 1, "label": "jazz"} +{"file_name": "test_07082.png", "caption": "This is a classical music piece performed by an orchestra. There is a wide ranging brass section that has the french horn as the lead playing the melody. In the percussive background there are the tubular bells which give the piece a festive feel. The atmosphere is vibrant. This piece would fit perfectly in the soundtrack of a Christmas movie either as the opening theme or during the scenes where there is a preparation going on.", "data_idx": 4310, "number": 2, "label": "jazz"} +{"file_name": "test_07083.png", "caption": "This is a classical music piece performed by an orchestra. There is a wide ranging brass section that has the french horn as the lead playing the melody. In the percussive background there are the tubular bells which give the piece a festive feel. The atmosphere is vibrant. This piece would fit perfectly in the soundtrack of a Christmas movie either as the opening theme or during the scenes where there is a preparation going on.", "data_idx": 4310, "number": 3, "label": "jazz"} +{"file_name": "test_07084.png", "caption": "The low quality recording features a folk song that consists of an echoing male chant over punchy kick and snare hits, wooden percussion, addictive strings and brass melodies and simple bass. It sounds traditional, addictive, passionate and energetic. The recording is noisy and in mono.", "data_idx": 4311, "number": 0, "label": "classical"} +{"file_name": "test_07085.png", "caption": "The low quality recording features a folk song that consists of an echoing male chant over punchy kick and snare hits, wooden percussion, addictive strings and brass melodies and simple bass. It sounds traditional, addictive, passionate and energetic. The recording is noisy and in mono.", "data_idx": 4311, "number": 1, "label": "classical"} +{"file_name": "test_07086.png", "caption": "The low quality recording features a folk song that consists of an echoing male chant over punchy kick and snare hits, wooden percussion, addictive strings and brass melodies and simple bass. It sounds traditional, addictive, passionate and energetic. The recording is noisy and in mono.", "data_idx": 4311, "number": 2, "label": "classical"} +{"file_name": "test_07087.png", "caption": "The low quality recording features a folk song that consists of an echoing male chant over punchy kick and snare hits, wooden percussion, addictive strings and brass melodies and simple bass. It sounds traditional, addictive, passionate and energetic. The recording is noisy and in mono.", "data_idx": 4311, "number": 3, "label": "classical"} +{"file_name": "test_07088.png", "caption": "A male vocalist sings this smooth Soul song. The tempo is medium with a groovy bass line, trombone harmony, electric guitar rhythm, slick drumming, vocal backup, congas and tambourine beats with smooth vocal backup. The song is soft, rich, elegant, ambient and smooth. This music is a Funk pop/Soul.", "data_idx": 4312, "number": 0, "label": "disco"} +{"file_name": "test_07089.png", "caption": "A male vocalist sings this smooth Soul song. The tempo is medium with a groovy bass line, trombone harmony, electric guitar rhythm, slick drumming, vocal backup, congas and tambourine beats with smooth vocal backup. The song is soft, rich, elegant, ambient and smooth. This music is a Funk pop/Soul.", "data_idx": 4312, "number": 1, "label": "disco"} +{"file_name": "test_07090.png", "caption": "A male vocalist sings this smooth Soul song. The tempo is medium with a groovy bass line, trombone harmony, electric guitar rhythm, slick drumming, vocal backup, congas and tambourine beats with smooth vocal backup. The song is soft, rich, elegant, ambient and smooth. This music is a Funk pop/Soul.", "data_idx": 4312, "number": 2, "label": "disco"} +{"file_name": "test_07091.png", "caption": "A male vocalist sings this smooth Soul song. The tempo is medium with a groovy bass line, trombone harmony, electric guitar rhythm, slick drumming, vocal backup, congas and tambourine beats with smooth vocal backup. The song is soft, rich, elegant, ambient and smooth. This music is a Funk pop/Soul.", "data_idx": 4312, "number": 3, "label": "disco"} +{"file_name": "test_07092.png", "caption": "This audio contains someone playing a piece of music on a bagpipe. The music sounds traditional. This song may be playing at a folksfest.", "data_idx": 4313, "number": 0, "label": "jazz"} +{"file_name": "test_07093.png", "caption": "This audio contains someone playing a piece of music on a bagpipe. The music sounds traditional. This song may be playing at a folksfest.", "data_idx": 4313, "number": 1, "label": "jazz"} +{"file_name": "test_07094.png", "caption": "This audio contains someone playing a piece of music on a bagpipe. The music sounds traditional. This song may be playing at a folksfest.", "data_idx": 4313, "number": 2, "label": "jazz"} +{"file_name": "test_07095.png", "caption": "This audio contains someone playing a piece of music on a bagpipe. The music sounds traditional. This song may be playing at a folksfest.", "data_idx": 4313, "number": 3, "label": "jazz"} +{"file_name": "test_07096.png", "caption": "The low quality, mono recording features a classical song performed by sad violin melody and harpsichord. The recording is noisy and it sounds emotional and passionate.", "data_idx": 4315, "number": 0, "label": "classical"} +{"file_name": "test_07097.png", "caption": "The low quality, mono recording features a classical song performed by sad violin melody and harpsichord. The recording is noisy and it sounds emotional and passionate.", "data_idx": 4315, "number": 1, "label": "classical"} +{"file_name": "test_07098.png", "caption": "The low quality, mono recording features a classical song performed by sad violin melody and harpsichord. The recording is noisy and it sounds emotional and passionate.", "data_idx": 4315, "number": 2, "label": "classical"} +{"file_name": "test_07099.png", "caption": "The low quality, mono recording features a classical song performed by sad violin melody and harpsichord. The recording is noisy and it sounds emotional and passionate.", "data_idx": 4315, "number": 3, "label": "classical"} +{"file_name": "test_07100.png", "caption": "A male singer sings this cheerful children\u2019s song. The song is medium tempo with reggae inspired drumming rhythm, guitar accompaniment, groovy bass line and keyboard harmony. The song is exciting and cheerful. The song is a children\u2019s dance song.", "data_idx": 4319, "number": 0, "label": "reggae"} +{"file_name": "test_07101.png", "caption": "A male singer sings this cheerful children\u2019s song. The song is medium tempo with reggae inspired drumming rhythm, guitar accompaniment, groovy bass line and keyboard harmony. The song is exciting and cheerful. The song is a children\u2019s dance song.", "data_idx": 4319, "number": 1, "label": "reggae"} +{"file_name": "test_07102.png", "caption": "A male singer sings this cheerful children\u2019s song. The song is medium tempo with reggae inspired drumming rhythm, guitar accompaniment, groovy bass line and keyboard harmony. The song is exciting and cheerful. The song is a children\u2019s dance song.", "data_idx": 4319, "number": 2, "label": "reggae"} +{"file_name": "test_07103.png", "caption": "A male singer sings this cheerful children\u2019s song. The song is medium tempo with reggae inspired drumming rhythm, guitar accompaniment, groovy bass line and keyboard harmony. The song is exciting and cheerful. The song is a children\u2019s dance song.", "data_idx": 4319, "number": 3, "label": "reggae"} +{"file_name": "test_07104.png", "caption": "The low quality recording features a short snippet of echoing effect at the beginning, after which there is a theremin swell. It sounds suspenseful, intense and the recording is noisy and in mono.", "data_idx": 4323, "number": 0, "label": "hiphop"} +{"file_name": "test_07105.png", "caption": "The low quality recording features a short snippet of echoing effect at the beginning, after which there is a theremin swell. It sounds suspenseful, intense and the recording is noisy and in mono.", "data_idx": 4323, "number": 1, "label": "hiphop"} +{"file_name": "test_07106.png", "caption": "The song is a hip hop song with a violin motif playing the most prominent role in the instrumental. The drum beat is a simple boom bap beat. The rapper has a raspy voice and he sounds emboldened regarding his message. The violin riff is repeated throughout the song.", "data_idx": 4325, "number": 0, "label": "hiphop"} +{"file_name": "test_07107.png", "caption": "The song is a hip hop song with a violin motif playing the most prominent role in the instrumental. The drum beat is a simple boom bap beat. The rapper has a raspy voice and he sounds emboldened regarding his message. The violin riff is repeated throughout the song.", "data_idx": 4325, "number": 1, "label": "hiphop"} +{"file_name": "test_07108.png", "caption": "The song is a hip hop song with a violin motif playing the most prominent role in the instrumental. The drum beat is a simple boom bap beat. The rapper has a raspy voice and he sounds emboldened regarding his message. The violin riff is repeated throughout the song.", "data_idx": 4325, "number": 2, "label": "hiphop"} +{"file_name": "test_07109.png", "caption": "The song is a hip hop song with a violin motif playing the most prominent role in the instrumental. The drum beat is a simple boom bap beat. The rapper has a raspy voice and he sounds emboldened regarding his message. The violin riff is repeated throughout the song.", "data_idx": 4325, "number": 3, "label": "hiphop"} +{"file_name": "test_07110.png", "caption": "This is a house song, meant for dancing. The synths are played rapidly for the build-up and then the song drops into a section where it's mostly the low, rumbling, futuristic pad and the house drum beat. This song would be heard at house dance parties.", "data_idx": 4326, "number": 0, "label": "metal"} +{"file_name": "test_07111.png", "caption": "This is a house song, meant for dancing. The synths are played rapidly for the build-up and then the song drops into a section where it's mostly the low, rumbling, futuristic pad and the house drum beat. This song would be heard at house dance parties.", "data_idx": 4326, "number": 1, "label": "metal"} +{"file_name": "test_07112.png", "caption": "This is a house song, meant for dancing. The synths are played rapidly for the build-up and then the song drops into a section where it's mostly the low, rumbling, futuristic pad and the house drum beat. This song would be heard at house dance parties.", "data_idx": 4326, "number": 2, "label": "metal"} +{"file_name": "test_07113.png", "caption": "This is a house song, meant for dancing. The synths are played rapidly for the build-up and then the song drops into a section where it's mostly the low, rumbling, futuristic pad and the house drum beat. This song would be heard at house dance parties.", "data_idx": 4326, "number": 3, "label": "metal"} +{"file_name": "test_07114.png", "caption": "A male beatboxer creates a cool groove with animated sounds like grunting and mouth percussion. The song is medium tempo with no other instrumentation. The song is energetic and passionate. The song has bad audio quality.", "data_idx": 4328, "number": 0, "label": "reggae"} +{"file_name": "test_07115.png", "caption": "A male beatboxer creates a cool groove with animated sounds like grunting and mouth percussion. The song is medium tempo with no other instrumentation. The song is energetic and passionate. The song has bad audio quality.", "data_idx": 4328, "number": 1, "label": "reggae"} +{"file_name": "test_07116.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live in a theater.", "data_idx": 4330, "number": 0, "label": "classical"} +{"file_name": "test_07117.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live in a theater.", "data_idx": 4330, "number": 1, "label": "classical"} +{"file_name": "test_07118.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live in a theater.", "data_idx": 4330, "number": 2, "label": "classical"} +{"file_name": "test_07119.png", "caption": "This audio contains someone playing a classical piece on a cembalo. This song may be playing live in a theater.", "data_idx": 4330, "number": 3, "label": "classical"} +{"file_name": "test_07120.png", "caption": "This is a piece by a classical orchestra. The melody is mainly led by string instruments such as violins and cellos. The piece elicits feelings of sadness, and can initiate a desire to reflect. The piece ends on an uplifting high note, which could be used as a sign that better days are to come.", "data_idx": 4335, "number": 0, "label": "classical"} +{"file_name": "test_07121.png", "caption": "This is a piece by a classical orchestra. The melody is mainly led by string instruments such as violins and cellos. The piece elicits feelings of sadness, and can initiate a desire to reflect. The piece ends on an uplifting high note, which could be used as a sign that better days are to come.", "data_idx": 4335, "number": 1, "label": "classical"} +{"file_name": "test_07122.png", "caption": "This is a piece by a classical orchestra. The melody is mainly led by string instruments such as violins and cellos. The piece elicits feelings of sadness, and can initiate a desire to reflect. The piece ends on an uplifting high note, which could be used as a sign that better days are to come.", "data_idx": 4335, "number": 2, "label": "classical"} +{"file_name": "test_07123.png", "caption": "This is a piece by a classical orchestra. The melody is mainly led by string instruments such as violins and cellos. The piece elicits feelings of sadness, and can initiate a desire to reflect. The piece ends on an uplifting high note, which could be used as a sign that better days are to come.", "data_idx": 4335, "number": 3, "label": "classical"} +{"file_name": "test_07124.png", "caption": "This song contains a fast and silent jazz drum rhythm with a fast groove on the ride. Someone is playing an arpeggio melody on an acoustic piano in the midrange, adding a little melody on top being played in the upper register. A upright bass is playing a walking bassline. A saxophone is playing the main melody. This song may be playing live as a concert.", "data_idx": 4336, "number": 0, "label": "classical"} +{"file_name": "test_07125.png", "caption": "This song contains a fast and silent jazz drum rhythm with a fast groove on the ride. Someone is playing an arpeggio melody on an acoustic piano in the midrange, adding a little melody on top being played in the upper register. A upright bass is playing a walking bassline. A saxophone is playing the main melody. This song may be playing live as a concert.", "data_idx": 4336, "number": 1, "label": "classical"} +{"file_name": "test_07126.png", "caption": "This song contains a fast and silent jazz drum rhythm with a fast groove on the ride. Someone is playing an arpeggio melody on an acoustic piano in the midrange, adding a little melody on top being played in the upper register. A upright bass is playing a walking bassline. A saxophone is playing the main melody. This song may be playing live as a concert.", "data_idx": 4336, "number": 2, "label": "classical"} +{"file_name": "test_07127.png", "caption": "This song contains a fast and silent jazz drum rhythm with a fast groove on the ride. Someone is playing an arpeggio melody on an acoustic piano in the midrange, adding a little melody on top being played in the upper register. A upright bass is playing a walking bassline. A saxophone is playing the main melody. This song may be playing live as a concert.", "data_idx": 4336, "number": 3, "label": "classical"} +{"file_name": "test_07128.png", "caption": "The low quality recording features a bowl scraping resonance tone over which there is a deep male vocal hum. The recording is in mono, noisy and it sounds calming and relaxing.", "data_idx": 4339, "number": 0, "label": "blues"} +{"file_name": "test_07129.png", "caption": "The low quality recording features a bowl scraping resonance tone over which there is a deep male vocal hum. The recording is in mono, noisy and it sounds calming and relaxing.", "data_idx": 4339, "number": 1, "label": "blues"} +{"file_name": "test_07130.png", "caption": "The low quality recording features a bowl scraping resonance tone over which there is a deep male vocal hum. The recording is in mono, noisy and it sounds calming and relaxing.", "data_idx": 4339, "number": 2, "label": "blues"} +{"file_name": "test_07131.png", "caption": "The low quality recording features a bowl scraping resonance tone over which there is a deep male vocal hum. The recording is in mono, noisy and it sounds calming and relaxing.", "data_idx": 4339, "number": 3, "label": "blues"} +{"file_name": "test_07132.png", "caption": "This song contains a female voice singing along to a piano playing chords and the melody along. An acoustic drum is playing together with an e-bass. In the background you can hear an organ and a background choir. This song may be playing in a church.", "data_idx": 4343, "number": 0, "label": "metal"} +{"file_name": "test_07133.png", "caption": "This song contains a female voice singing along to a piano playing chords and the melody along. An acoustic drum is playing together with an e-bass. In the background you can hear an organ and a background choir. This song may be playing in a church.", "data_idx": 4343, "number": 1, "label": "metal"} +{"file_name": "test_07134.png", "caption": "This song contains a female voice singing along to a piano playing chords and the melody along. An acoustic drum is playing together with an e-bass. In the background you can hear an organ and a background choir. This song may be playing in a church.", "data_idx": 4343, "number": 2, "label": "metal"} +{"file_name": "test_07135.png", "caption": "This song contains a female voice singing along to a piano playing chords and the melody along. An acoustic drum is playing together with an e-bass. In the background you can hear an organ and a background choir. This song may be playing in a church.", "data_idx": 4343, "number": 3, "label": "metal"} +{"file_name": "test_07136.png", "caption": "The low quality recording features a resonating bell in one shot. It sounds mellow, soft, calming, relaxing and hypnotic - like something you would listen to while meditating.", "data_idx": 4344, "number": 0, "label": "classical"} +{"file_name": "test_07137.png", "caption": "The low quality recording features a resonating bell in one shot. It sounds mellow, soft, calming, relaxing and hypnotic - like something you would listen to while meditating.", "data_idx": 4344, "number": 1, "label": "classical"} +{"file_name": "test_07138.png", "caption": "The low quality recording features a resonating bell in one shot. It sounds mellow, soft, calming, relaxing and hypnotic - like something you would listen to while meditating.", "data_idx": 4344, "number": 2, "label": "classical"} +{"file_name": "test_07139.png", "caption": "The low quality recording features a resonating bell in one shot. It sounds mellow, soft, calming, relaxing and hypnotic - like something you would listen to while meditating.", "data_idx": 4344, "number": 3, "label": "classical"} +{"file_name": "test_07140.png", "caption": "This is a soothing Italian ballad. The leading instruments are a harmonica and acoustic guitar on which arpeggios are played. The singer has a silky baritone voice, and captures the reflective and tranquil nature of the song with his performance.", "data_idx": 4346, "number": 0, "label": "country"} +{"file_name": "test_07141.png", "caption": "This is a soothing Italian ballad. The leading instruments are a harmonica and acoustic guitar on which arpeggios are played. The singer has a silky baritone voice, and captures the reflective and tranquil nature of the song with his performance.", "data_idx": 4346, "number": 1, "label": "country"} +{"file_name": "test_07142.png", "caption": "This is a soothing Italian ballad. The leading instruments are a harmonica and acoustic guitar on which arpeggios are played. The singer has a silky baritone voice, and captures the reflective and tranquil nature of the song with his performance.", "data_idx": 4346, "number": 2, "label": "country"} +{"file_name": "test_07143.png", "caption": "This is a soothing Italian ballad. The leading instruments are a harmonica and acoustic guitar on which arpeggios are played. The singer has a silky baritone voice, and captures the reflective and tranquil nature of the song with his performance.", "data_idx": 4346, "number": 3, "label": "country"} +{"file_name": "test_07144.png", "caption": "A male singer sings this pop melody with backup singers with vocal harmony. The song is medium, with a keyboard accompaniment , steady drumming rhythm and strong bass line. The song is passionate and cheerful. The audio quality is poor.", "data_idx": 4349, "number": 0, "label": "country"} +{"file_name": "test_07145.png", "caption": "A male singer sings this pop melody with backup singers with vocal harmony. The song is medium, with a keyboard accompaniment , steady drumming rhythm and strong bass line. The song is passionate and cheerful. The audio quality is poor.", "data_idx": 4349, "number": 1, "label": "country"} +{"file_name": "test_07146.png", "caption": "A male singer sings this pop melody with backup singers with vocal harmony. The song is medium, with a keyboard accompaniment , steady drumming rhythm and strong bass line. The song is passionate and cheerful. The audio quality is poor.", "data_idx": 4349, "number": 2, "label": "country"} +{"file_name": "test_07147.png", "caption": "A male singer sings this pop melody with backup singers with vocal harmony. The song is medium, with a keyboard accompaniment , steady drumming rhythm and strong bass line. The song is passionate and cheerful. The audio quality is poor.", "data_idx": 4349, "number": 3, "label": "country"} +{"file_name": "test_07148.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with an acoustic and electric guitar flourish with a bass cello. This bit is the end of the song as the musician plays a closing riff and the sound of clapping and cheering can be heard. This song is an enthusiastic live performance of an energetic Soft Rock.", "data_idx": 4351, "number": 0, "label": "blues"} +{"file_name": "test_07149.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with an acoustic and electric guitar flourish with a bass cello. This bit is the end of the song as the musician plays a closing riff and the sound of clapping and cheering can be heard. This song is an enthusiastic live performance of an energetic Soft Rock.", "data_idx": 4351, "number": 1, "label": "blues"} +{"file_name": "test_07150.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with an acoustic and electric guitar flourish with a bass cello. This bit is the end of the song as the musician plays a closing riff and the sound of clapping and cheering can be heard. This song is an enthusiastic live performance of an energetic Soft Rock.", "data_idx": 4351, "number": 2, "label": "blues"} +{"file_name": "test_07151.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with an acoustic and electric guitar flourish with a bass cello. This bit is the end of the song as the musician plays a closing riff and the sound of clapping and cheering can be heard. This song is an enthusiastic live performance of an energetic Soft Rock.", "data_idx": 4351, "number": 3, "label": "blues"} +{"file_name": "test_07152.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with an animated keyboard harmony, groovy bass lines, electric guitar, tenor and alto saxophone accompaniment, enthusiastic drumming and tambourine beats with vocal backup. The song is energetic, upbeat, youthful, enthusiastic with emphatic vocals. This song is contemporary alternative rock.", "data_idx": 4353, "number": 0, "label": "rock"} +{"file_name": "test_07153.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with an animated keyboard harmony, groovy bass lines, electric guitar, tenor and alto saxophone accompaniment, enthusiastic drumming and tambourine beats with vocal backup. The song is energetic, upbeat, youthful, enthusiastic with emphatic vocals. This song is contemporary alternative rock.", "data_idx": 4353, "number": 1, "label": "rock"} +{"file_name": "test_07154.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with an animated keyboard harmony, groovy bass lines, electric guitar, tenor and alto saxophone accompaniment, enthusiastic drumming and tambourine beats with vocal backup. The song is energetic, upbeat, youthful, enthusiastic with emphatic vocals. This song is contemporary alternative rock.", "data_idx": 4353, "number": 2, "label": "rock"} +{"file_name": "test_07155.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with an animated keyboard harmony, groovy bass lines, electric guitar, tenor and alto saxophone accompaniment, enthusiastic drumming and tambourine beats with vocal backup. The song is energetic, upbeat, youthful, enthusiastic with emphatic vocals. This song is contemporary alternative rock.", "data_idx": 4353, "number": 3, "label": "rock"} +{"file_name": "test_07156.png", "caption": "This audio contains someone playing an acoustic guitar fingerstyle. An upright bass is playing a line in the background. This song may be playing guitar to someone.", "data_idx": 4355, "number": 0, "label": "blues"} +{"file_name": "test_07157.png", "caption": "This audio contains someone playing an acoustic guitar fingerstyle. An upright bass is playing a line in the background. This song may be playing guitar to someone.", "data_idx": 4355, "number": 1, "label": "blues"} +{"file_name": "test_07158.png", "caption": "This audio contains someone playing an acoustic guitar fingerstyle. An upright bass is playing a line in the background. This song may be playing guitar to someone.", "data_idx": 4355, "number": 2, "label": "blues"} +{"file_name": "test_07159.png", "caption": "This audio contains someone playing an acoustic guitar fingerstyle. An upright bass is playing a line in the background. This song may be playing guitar to someone.", "data_idx": 4355, "number": 3, "label": "blues"} +{"file_name": "test_07160.png", "caption": "This clip is regal, momentous, big, impressive. We hear a loud bang on the timpani percussion instrument, followed by a motif on the french horn. This is the type of piece that would be played for the arrival of a king, or the return of an epic war hero.", "data_idx": 4356, "number": 0, "label": "jazz"} +{"file_name": "test_07161.png", "caption": "This clip is regal, momentous, big, impressive. We hear a loud bang on the timpani percussion instrument, followed by a motif on the french horn. This is the type of piece that would be played for the arrival of a king, or the return of an epic war hero.", "data_idx": 4356, "number": 1, "label": "jazz"} +{"file_name": "test_07162.png", "caption": "This clip is regal, momentous, big, impressive. We hear a loud bang on the timpani percussion instrument, followed by a motif on the french horn. This is the type of piece that would be played for the arrival of a king, or the return of an epic war hero.", "data_idx": 4356, "number": 2, "label": "jazz"} +{"file_name": "test_07163.png", "caption": "This clip is regal, momentous, big, impressive. We hear a loud bang on the timpani percussion instrument, followed by a motif on the french horn. This is the type of piece that would be played for the arrival of a king, or the return of an epic war hero.", "data_idx": 4356, "number": 3, "label": "jazz"} +{"file_name": "test_07164.png", "caption": "This electronic music is played on a drum kit. This song also uses a processor to make electronic sounds. The percussion plays the ride continuously followed by the hi-hat continuously. Deep bass sounds are played on the electronic console. There are other animated sounds like the sound of an alien space ship played in this song. This song has no other instruments. There are no voices in this song.", "data_idx": 4358, "number": 0, "label": "metal"} +{"file_name": "test_07165.png", "caption": "This electronic music is played on a drum kit. This song also uses a processor to make electronic sounds. The percussion plays the ride continuously followed by the hi-hat continuously. Deep bass sounds are played on the electronic console. There are other animated sounds like the sound of an alien space ship played in this song. This song has no other instruments. There are no voices in this song.", "data_idx": 4358, "number": 1, "label": "metal"} +{"file_name": "test_07166.png", "caption": "This electronic music is played on a drum kit. This song also uses a processor to make electronic sounds. The percussion plays the ride continuously followed by the hi-hat continuously. Deep bass sounds are played on the electronic console. There are other animated sounds like the sound of an alien space ship played in this song. This song has no other instruments. There are no voices in this song.", "data_idx": 4358, "number": 2, "label": "metal"} +{"file_name": "test_07167.png", "caption": "This electronic music is played on a drum kit. This song also uses a processor to make electronic sounds. The percussion plays the ride continuously followed by the hi-hat continuously. Deep bass sounds are played on the electronic console. There are other animated sounds like the sound of an alien space ship played in this song. This song has no other instruments. There are no voices in this song.", "data_idx": 4358, "number": 3, "label": "metal"} +{"file_name": "test_07168.png", "caption": "After a clicking sound and e-guitar slide up the fretboard someone is playing a melody on an e-guitar. White noise from the recording can be heard. This song may be playing in a guitar class.", "data_idx": 4364, "number": 0, "label": "hiphop"} +{"file_name": "test_07169.png", "caption": "After a clicking sound and e-guitar slide up the fretboard someone is playing a melody on an e-guitar. White noise from the recording can be heard. This song may be playing in a guitar class.", "data_idx": 4364, "number": 1, "label": "hiphop"} +{"file_name": "test_07170.png", "caption": "This is the live recording of a boy band performing a pop music piece. The male vocals are singing melodically. There is a keyboard and a bass guitar playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is emotional. This piece could be included in the soundtrack of a teenage romance/drama movie.", "data_idx": 4366, "number": 0, "label": "rock"} +{"file_name": "test_07171.png", "caption": "This is the live recording of a boy band performing a pop music piece. The male vocals are singing melodically. There is a keyboard and a bass guitar playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is emotional. This piece could be included in the soundtrack of a teenage romance/drama movie.", "data_idx": 4366, "number": 1, "label": "rock"} +{"file_name": "test_07172.png", "caption": "This is the live recording of a boy band performing a pop music piece. The male vocals are singing melodically. There is a keyboard and a bass guitar playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is emotional. This piece could be included in the soundtrack of a teenage romance/drama movie.", "data_idx": 4366, "number": 2, "label": "rock"} +{"file_name": "test_07173.png", "caption": "This is the live recording of a boy band performing a pop music piece. The male vocals are singing melodically. There is a keyboard and a bass guitar playing in the background. The rhythm is provided by the acoustic drums. The atmosphere is emotional. This piece could be included in the soundtrack of a teenage romance/drama movie.", "data_idx": 4366, "number": 3, "label": "rock"} +{"file_name": "test_07174.png", "caption": "This is a Scottish folk music rendition of a rock music piece. It is an instrumental piece. The Scottish bagpipes are playing the melody while the rhythmic background is provided by a bodhran frame drum. The atmosphere is energetic and lively. The audio quality of the piece is quite poor. Still, it could be used in a comedy movie as a song playing from the radio.", "data_idx": 4367, "number": 0, "label": "classical"} +{"file_name": "test_07175.png", "caption": "This is a Scottish folk music rendition of a rock music piece. It is an instrumental piece. The Scottish bagpipes are playing the melody while the rhythmic background is provided by a bodhran frame drum. The atmosphere is energetic and lively. The audio quality of the piece is quite poor. Still, it could be used in a comedy movie as a song playing from the radio.", "data_idx": 4367, "number": 1, "label": "classical"} +{"file_name": "test_07176.png", "caption": "This is a Scottish folk music rendition of a rock music piece. It is an instrumental piece. The Scottish bagpipes are playing the melody while the rhythmic background is provided by a bodhran frame drum. The atmosphere is energetic and lively. The audio quality of the piece is quite poor. Still, it could be used in a comedy movie as a song playing from the radio.", "data_idx": 4367, "number": 2, "label": "classical"} +{"file_name": "test_07177.png", "caption": "This is a Scottish folk music rendition of a rock music piece. It is an instrumental piece. The Scottish bagpipes are playing the melody while the rhythmic background is provided by a bodhran frame drum. The atmosphere is energetic and lively. The audio quality of the piece is quite poor. Still, it could be used in a comedy movie as a song playing from the radio.", "data_idx": 4367, "number": 3, "label": "classical"} +{"file_name": "test_07178.png", "caption": "The low quality recording features a groovy piano organ keys in the left channel and organ keys lead melody played in the right and the middle channel of the stereo image, followed by groovy bass, shimmering hi hats and soft kick hits. It sounds happy and joyful.", "data_idx": 4368, "number": 0, "label": "reggae"} +{"file_name": "test_07179.png", "caption": "The low quality recording features a groovy piano organ keys in the left channel and organ keys lead melody played in the right and the middle channel of the stereo image, followed by groovy bass, shimmering hi hats and soft kick hits. It sounds happy and joyful.", "data_idx": 4368, "number": 1, "label": "reggae"} +{"file_name": "test_07180.png", "caption": "The low quality recording features a groovy piano organ keys in the left channel and organ keys lead melody played in the right and the middle channel of the stereo image, followed by groovy bass, shimmering hi hats and soft kick hits. It sounds happy and joyful.", "data_idx": 4368, "number": 2, "label": "reggae"} +{"file_name": "test_07181.png", "caption": "The low quality recording features a groovy piano organ keys in the left channel and organ keys lead melody played in the right and the middle channel of the stereo image, followed by groovy bass, shimmering hi hats and soft kick hits. It sounds happy and joyful.", "data_idx": 4368, "number": 3, "label": "reggae"} +{"file_name": "test_07182.png", "caption": "The low quality recording features a flat male vocal talking in-between resonating shofar melody. It sounds like a traditional instrument and it is reverberant, as it was probably recorded in a medium size room.", "data_idx": 4370, "number": 0, "label": "classical"} +{"file_name": "test_07183.png", "caption": "The low quality recording features a flat male vocal talking in-between resonating shofar melody. It sounds like a traditional instrument and it is reverberant, as it was probably recorded in a medium size room.", "data_idx": 4370, "number": 1, "label": "classical"} +{"file_name": "test_07184.png", "caption": "The low quality recording features a flat male vocal talking in-between resonating shofar melody. It sounds like a traditional instrument and it is reverberant, as it was probably recorded in a medium size room.", "data_idx": 4370, "number": 2, "label": "classical"} +{"file_name": "test_07185.png", "caption": "The low quality recording features a flat male vocal talking in-between resonating shofar melody. It sounds like a traditional instrument and it is reverberant, as it was probably recorded in a medium size room.", "data_idx": 4370, "number": 3, "label": "classical"} +{"file_name": "test_07186.png", "caption": "This is an instrument lesson recording. The same tune is being played repeatedly on a harmonica to present a technique on how to play it. The male instructor gives occasional descriptions about the technique.", "data_idx": 4371, "number": 0, "label": "jazz"} +{"file_name": "test_07187.png", "caption": "This is an instrument lesson recording. The same tune is being played repeatedly on a harmonica to present a technique on how to play it. The male instructor gives occasional descriptions about the technique.", "data_idx": 4371, "number": 1, "label": "jazz"} +{"file_name": "test_07188.png", "caption": "This is an instrument lesson recording. The same tune is being played repeatedly on a harmonica to present a technique on how to play it. The male instructor gives occasional descriptions about the technique.", "data_idx": 4371, "number": 2, "label": "jazz"} +{"file_name": "test_07189.png", "caption": "This is an instrument lesson recording. The same tune is being played repeatedly on a harmonica to present a technique on how to play it. The male instructor gives occasional descriptions about the technique.", "data_idx": 4371, "number": 3, "label": "jazz"} +{"file_name": "test_07190.png", "caption": "This is a funk/disco music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the keyboard with the backing of the electric guitar and the bass guitar. The rhythm is being played by the acoustic drums. The atmosphere is groovy. This piece could be played at a retro-themed party at a dance club.", "data_idx": 4374, "number": 0, "label": "pop"} +{"file_name": "test_07191.png", "caption": "This is a funk/disco music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the keyboard with the backing of the electric guitar and the bass guitar. The rhythm is being played by the acoustic drums. The atmosphere is groovy. This piece could be played at a retro-themed party at a dance club.", "data_idx": 4374, "number": 1, "label": "pop"} +{"file_name": "test_07192.png", "caption": "This is a funk/disco music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the keyboard with the backing of the electric guitar and the bass guitar. The rhythm is being played by the acoustic drums. The atmosphere is groovy. This piece could be played at a retro-themed party at a dance club.", "data_idx": 4374, "number": 2, "label": "pop"} +{"file_name": "test_07193.png", "caption": "This is a funk/disco music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the keyboard with the backing of the electric guitar and the bass guitar. The rhythm is being played by the acoustic drums. The atmosphere is groovy. This piece could be played at a retro-themed party at a dance club.", "data_idx": 4374, "number": 3, "label": "pop"} +{"file_name": "test_07194.png", "caption": "This folk song features a male voice singing the main melody. The voice is loud and not modulated. This is accompanied by a violin and a harp. The violins are playing high pitched notes. The harp is playing a repetitive phrase. There is no percussion in the song. This song can be played in a village style movie.", "data_idx": 4375, "number": 0, "label": "blues"} +{"file_name": "test_07195.png", "caption": "This folk song features a male voice singing the main melody. The voice is loud and not modulated. This is accompanied by a violin and a harp. The violins are playing high pitched notes. The harp is playing a repetitive phrase. There is no percussion in the song. This song can be played in a village style movie.", "data_idx": 4375, "number": 1, "label": "blues"} +{"file_name": "test_07196.png", "caption": "This folk song features a male voice singing the main melody. The voice is loud and not modulated. This is accompanied by a violin and a harp. The violins are playing high pitched notes. The harp is playing a repetitive phrase. There is no percussion in the song. This song can be played in a village style movie.", "data_idx": 4375, "number": 2, "label": "blues"} +{"file_name": "test_07197.png", "caption": "This folk song features a male voice singing the main melody. The voice is loud and not modulated. This is accompanied by a violin and a harp. The violins are playing high pitched notes. The harp is playing a repetitive phrase. There is no percussion in the song. This song can be played in a village style movie.", "data_idx": 4375, "number": 3, "label": "blues"} +{"file_name": "test_07198.png", "caption": "This is an R&B/neo-soul music piece. There is a male vocalist in the lead singing melodically. The main tune is being played by the electric guitar and the keyboard. There is a strong and groovy bass sound. The rhythmic background consists of a slow tempo electronic drum beat. The atmosphere is sentimental. This piece could be used in the soundtrack of a romantic comedy movie that takes place in the big city, especially during the scenes where a character is going through the feeling of heartbreak.", "data_idx": 4377, "number": 0, "label": "reggae"} +{"file_name": "test_07199.png", "caption": "This is an R&B/neo-soul music piece. There is a male vocalist in the lead singing melodically. The main tune is being played by the electric guitar and the keyboard. There is a strong and groovy bass sound. The rhythmic background consists of a slow tempo electronic drum beat. The atmosphere is sentimental. This piece could be used in the soundtrack of a romantic comedy movie that takes place in the big city, especially during the scenes where a character is going through the feeling of heartbreak.", "data_idx": 4377, "number": 1, "label": "reggae"} +{"file_name": "test_07200.png", "caption": "This is an R&B/neo-soul music piece. There is a male vocalist in the lead singing melodically. The main tune is being played by the electric guitar and the keyboard. There is a strong and groovy bass sound. The rhythmic background consists of a slow tempo electronic drum beat. The atmosphere is sentimental. This piece could be used in the soundtrack of a romantic comedy movie that takes place in the big city, especially during the scenes where a character is going through the feeling of heartbreak.", "data_idx": 4377, "number": 2, "label": "reggae"} +{"file_name": "test_07201.png", "caption": "This is an R&B/neo-soul music piece. There is a male vocalist in the lead singing melodically. The main tune is being played by the electric guitar and the keyboard. There is a strong and groovy bass sound. The rhythmic background consists of a slow tempo electronic drum beat. The atmosphere is sentimental. This piece could be used in the soundtrack of a romantic comedy movie that takes place in the big city, especially during the scenes where a character is going through the feeling of heartbreak.", "data_idx": 4377, "number": 3, "label": "reggae"} +{"file_name": "test_07202.png", "caption": "Here we have a flute which has a lot of echo and reverb applied to it. The music is relaxing, serene, tranquil. It would be suitable as meditation music.", "data_idx": 4378, "number": 0, "label": "classical"} +{"file_name": "test_07203.png", "caption": "Here we have a flute which has a lot of echo and reverb applied to it. The music is relaxing, serene, tranquil. It would be suitable as meditation music.", "data_idx": 4378, "number": 1, "label": "classical"} +{"file_name": "test_07204.png", "caption": "The song is an instrumental. The tempo is medium with a quartzophone being played delicately by an expert producing ethereal pulsating tones of music. The song is emotional and beautiful. The audio quality with ambient nature sounds.", "data_idx": 4382, "number": 0, "label": "pop"} +{"file_name": "test_07205.png", "caption": "The song is an instrumental. The tempo is medium with a quartzophone being played delicately by an expert producing ethereal pulsating tones of music. The song is emotional and beautiful. The audio quality with ambient nature sounds.", "data_idx": 4382, "number": 1, "label": "pop"} +{"file_name": "test_07206.png", "caption": "The song is an instrumental. The tempo is medium with a quartzophone being played delicately by an expert producing ethereal pulsating tones of music. The song is emotional and beautiful. The audio quality with ambient nature sounds.", "data_idx": 4382, "number": 2, "label": "pop"} +{"file_name": "test_07207.png", "caption": "The song is an instrumental. The tempo is medium with a quartzophone being played delicately by an expert producing ethereal pulsating tones of music. The song is emotional and beautiful. The audio quality with ambient nature sounds.", "data_idx": 4382, "number": 3, "label": "pop"} +{"file_name": "test_07208.png", "caption": "The low quality recording features a woodblock one shot. The recording is in mono, noisy and it sounds like a tutorial.", "data_idx": 4383, "number": 0, "label": "hiphop"} +{"file_name": "test_07209.png", "caption": "The low quality recording features a woodblock one shot. The recording is in mono, noisy and it sounds like a tutorial.", "data_idx": 4383, "number": 1, "label": "hiphop"} +{"file_name": "test_07210.png", "caption": "The low quality recording features a woodblock one shot. The recording is in mono, noisy and it sounds like a tutorial.", "data_idx": 4383, "number": 2, "label": "hiphop"} +{"file_name": "test_07211.png", "caption": "The low quality recording features a woodblock one shot. The recording is in mono, noisy and it sounds like a tutorial.", "data_idx": 4383, "number": 3, "label": "hiphop"} +{"file_name": "test_07212.png", "caption": "There is a kids music piece playing from a small speaker. It is a robotic voice singing about brushing teeth. At the same time, a kid brushing his teeth can be heard. A female voice talks to the kid telling him to keep on brushing.", "data_idx": 4385, "number": 0, "label": "classical"} +{"file_name": "test_07213.png", "caption": "There is a kids music piece playing from a small speaker. It is a robotic voice singing about brushing teeth. At the same time, a kid brushing his teeth can be heard. A female voice talks to the kid telling him to keep on brushing.", "data_idx": 4385, "number": 1, "label": "classical"} +{"file_name": "test_07214.png", "caption": "There is a kids music piece playing from a small speaker. It is a robotic voice singing about brushing teeth. At the same time, a kid brushing his teeth can be heard. A female voice talks to the kid telling him to keep on brushing.", "data_idx": 4385, "number": 2, "label": "classical"} +{"file_name": "test_07215.png", "caption": "There is a kids music piece playing from a small speaker. It is a robotic voice singing about brushing teeth. At the same time, a kid brushing his teeth can be heard. A female voice talks to the kid telling him to keep on brushing.", "data_idx": 4385, "number": 3, "label": "classical"} diff --git a/data/test/metadata_0017.jsonl b/data/test/metadata_0017.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6a0e0bd28e0f0d54c84ae82ecd52e59b18d648be --- /dev/null +++ b/data/test/metadata_0017.jsonl @@ -0,0 +1,392 @@ +{"file_name": "test_07216.png", "caption": "This is an instrumental percussion piece performed by an orchestra. There is a marimba playing the main melody at the forefront while bell percussion adds texture around it. There is a timpani that plays a loud drum line that is accentuated by occasional cymbal hits. The atmosphere is lighthearted. This piece would fit perfectly in the soundtrack of an arcade video game.", "data_idx": 4402, "number": 0, "label": "classical"} +{"file_name": "test_07217.png", "caption": "This is an instrumental percussion piece performed by an orchestra. There is a marimba playing the main melody at the forefront while bell percussion adds texture around it. There is a timpani that plays a loud drum line that is accentuated by occasional cymbal hits. The atmosphere is lighthearted. This piece would fit perfectly in the soundtrack of an arcade video game.", "data_idx": 4402, "number": 1, "label": "classical"} +{"file_name": "test_07218.png", "caption": "This is an instrumental percussion piece performed by an orchestra. There is a marimba playing the main melody at the forefront while bell percussion adds texture around it. There is a timpani that plays a loud drum line that is accentuated by occasional cymbal hits. The atmosphere is lighthearted. This piece would fit perfectly in the soundtrack of an arcade video game.", "data_idx": 4402, "number": 2, "label": "classical"} +{"file_name": "test_07219.png", "caption": "This is an instrumental percussion piece performed by an orchestra. There is a marimba playing the main melody at the forefront while bell percussion adds texture around it. There is a timpani that plays a loud drum line that is accentuated by occasional cymbal hits. The atmosphere is lighthearted. This piece would fit perfectly in the soundtrack of an arcade video game.", "data_idx": 4402, "number": 3, "label": "classical"} +{"file_name": "test_07220.png", "caption": "The song is an instrumental. The tempo is medium with an aborigine playing a didgeridoo and a tapping rhythm in a percussive manner. The audio quality is bad with ambient crowd talking sounds. The music is traditional and deeply meditative in nature.", "data_idx": 4403, "number": 0, "label": "reggae"} +{"file_name": "test_07221.png", "caption": "The song is an instrumental. The tempo is medium with an aborigine playing a didgeridoo and a tapping rhythm in a percussive manner. The audio quality is bad with ambient crowd talking sounds. The music is traditional and deeply meditative in nature.", "data_idx": 4403, "number": 1, "label": "reggae"} +{"file_name": "test_07222.png", "caption": "The song is an instrumental. The tempo is medium with an aborigine playing a didgeridoo and a tapping rhythm in a percussive manner. The audio quality is bad with ambient crowd talking sounds. The music is traditional and deeply meditative in nature.", "data_idx": 4403, "number": 2, "label": "reggae"} +{"file_name": "test_07223.png", "caption": "The song is an instrumental. The tempo is medium with an aborigine playing a didgeridoo and a tapping rhythm in a percussive manner. The audio quality is bad with ambient crowd talking sounds. The music is traditional and deeply meditative in nature.", "data_idx": 4403, "number": 3, "label": "reggae"} +{"file_name": "test_07224.png", "caption": "The Disco song features a passionate female vocalist singing over a funky electric guitar melody, groovy bass, punchy kick and claps. It sounds passionate, funky and groovy - like something you would hear in clubs during the 80s.", "data_idx": 4405, "number": 0, "label": "disco"} +{"file_name": "test_07225.png", "caption": "The Disco song features a passionate female vocalist singing over a funky electric guitar melody, groovy bass, punchy kick and claps. It sounds passionate, funky and groovy - like something you would hear in clubs during the 80s.", "data_idx": 4405, "number": 1, "label": "disco"} +{"file_name": "test_07226.png", "caption": "The Disco song features a passionate female vocalist singing over a funky electric guitar melody, groovy bass, punchy kick and claps. It sounds passionate, funky and groovy - like something you would hear in clubs during the 80s.", "data_idx": 4405, "number": 2, "label": "disco"} +{"file_name": "test_07227.png", "caption": "The Disco song features a passionate female vocalist singing over a funky electric guitar melody, groovy bass, punchy kick and claps. It sounds passionate, funky and groovy - like something you would hear in clubs during the 80s.", "data_idx": 4405, "number": 3, "label": "disco"} +{"file_name": "test_07228.png", "caption": "This is a middle eastern pop song, with traditional elements such as the habban. The percussion is also traditional and may involve the use of a bendir. The singer sounds calm and has some autotune applied to his vocal.", "data_idx": 4406, "number": 0, "label": "reggae"} +{"file_name": "test_07229.png", "caption": "This is a middle eastern pop song, with traditional elements such as the habban. The percussion is also traditional and may involve the use of a bendir. The singer sounds calm and has some autotune applied to his vocal.", "data_idx": 4406, "number": 1, "label": "reggae"} +{"file_name": "test_07230.png", "caption": "This is a middle eastern pop song, with traditional elements such as the habban. The percussion is also traditional and may involve the use of a bendir. The singer sounds calm and has some autotune applied to his vocal.", "data_idx": 4406, "number": 2, "label": "reggae"} +{"file_name": "test_07231.png", "caption": "This is a middle eastern pop song, with traditional elements such as the habban. The percussion is also traditional and may involve the use of a bendir. The singer sounds calm and has some autotune applied to his vocal.", "data_idx": 4406, "number": 3, "label": "reggae"} +{"file_name": "test_07232.png", "caption": "This audio contains someone playing a melody on an organ in the mid- to higher range. This song may be playing in a church.", "data_idx": 4407, "number": 0, "label": "classical"} +{"file_name": "test_07233.png", "caption": "This audio contains someone playing a melody on an organ in the mid- to higher range. This song may be playing in a church.", "data_idx": 4407, "number": 1, "label": "classical"} +{"file_name": "test_07234.png", "caption": "This audio contains someone playing a melody on an organ in the mid- to higher range. This song may be playing in a church.", "data_idx": 4407, "number": 2, "label": "classical"} +{"file_name": "test_07235.png", "caption": "This audio contains someone playing a melody on an organ in the mid- to higher range. This song may be playing in a church.", "data_idx": 4407, "number": 3, "label": "classical"} +{"file_name": "test_07236.png", "caption": "This is the remix of an Original Pilipino Music (OPM) Christmas song. The female vocalist is singing melodically and in a festive manner. The melody is being played by a strings section while the rhythm consists of an electronic drum beat with heavy usage of percussive elements. The atmosphere is cheerful. This piece could be played at Christmas events in the Philippines.", "data_idx": 4408, "number": 0, "label": "disco"} +{"file_name": "test_07237.png", "caption": "This is the remix of an Original Pilipino Music (OPM) Christmas song. The female vocalist is singing melodically and in a festive manner. The melody is being played by a strings section while the rhythm consists of an electronic drum beat with heavy usage of percussive elements. The atmosphere is cheerful. This piece could be played at Christmas events in the Philippines.", "data_idx": 4408, "number": 1, "label": "disco"} +{"file_name": "test_07238.png", "caption": "This is the remix of an Original Pilipino Music (OPM) Christmas song. The female vocalist is singing melodically and in a festive manner. The melody is being played by a strings section while the rhythm consists of an electronic drum beat with heavy usage of percussive elements. The atmosphere is cheerful. This piece could be played at Christmas events in the Philippines.", "data_idx": 4408, "number": 2, "label": "disco"} +{"file_name": "test_07239.png", "caption": "This is the remix of an Original Pilipino Music (OPM) Christmas song. The female vocalist is singing melodically and in a festive manner. The melody is being played by a strings section while the rhythm consists of an electronic drum beat with heavy usage of percussive elements. The atmosphere is cheerful. This piece could be played at Christmas events in the Philippines.", "data_idx": 4408, "number": 3, "label": "disco"} +{"file_name": "test_07240.png", "caption": "This pop rock song features a guitar riff being played. This guitar has a chorus effect added to the sound. Another guitar plays one chord in a three stroke grouping. The bass plays only one note throughout the song. This is accompanied by percussion playing a simple beat in common time. There are no voices in this song. This is an instrumental song. This song can be played in a movie with sports as the focus.", "data_idx": 4411, "number": 0, "label": "hiphop"} +{"file_name": "test_07241.png", "caption": "This pop rock song features a guitar riff being played. This guitar has a chorus effect added to the sound. Another guitar plays one chord in a three stroke grouping. The bass plays only one note throughout the song. This is accompanied by percussion playing a simple beat in common time. There are no voices in this song. This is an instrumental song. This song can be played in a movie with sports as the focus.", "data_idx": 4411, "number": 1, "label": "hiphop"} +{"file_name": "test_07242.png", "caption": "This pop rock song features a guitar riff being played. This guitar has a chorus effect added to the sound. Another guitar plays one chord in a three stroke grouping. The bass plays only one note throughout the song. This is accompanied by percussion playing a simple beat in common time. There are no voices in this song. This is an instrumental song. This song can be played in a movie with sports as the focus.", "data_idx": 4411, "number": 2, "label": "hiphop"} +{"file_name": "test_07243.png", "caption": "This pop rock song features a guitar riff being played. This guitar has a chorus effect added to the sound. Another guitar plays one chord in a three stroke grouping. The bass plays only one note throughout the song. This is accompanied by percussion playing a simple beat in common time. There are no voices in this song. This is an instrumental song. This song can be played in a movie with sports as the focus.", "data_idx": 4411, "number": 3, "label": "hiphop"} +{"file_name": "test_07244.png", "caption": "This clip feels like a magical fairytale. It features layers of violin that are somewhat orchestral in their arrangement, on top of acoustic guitar arpeggios that cut through the legato violin melodies. At the beginning, there is a warm synth that sounds a little bit like an accordion - rapid chord stabs are played there in eighth notes.", "data_idx": 4412, "number": 0, "label": "classical"} +{"file_name": "test_07245.png", "caption": "This clip feels like a magical fairytale. It features layers of violin that are somewhat orchestral in their arrangement, on top of acoustic guitar arpeggios that cut through the legato violin melodies. At the beginning, there is a warm synth that sounds a little bit like an accordion - rapid chord stabs are played there in eighth notes.", "data_idx": 4412, "number": 1, "label": "classical"} +{"file_name": "test_07246.png", "caption": "This clip feels like a magical fairytale. It features layers of violin that are somewhat orchestral in their arrangement, on top of acoustic guitar arpeggios that cut through the legato violin melodies. At the beginning, there is a warm synth that sounds a little bit like an accordion - rapid chord stabs are played there in eighth notes.", "data_idx": 4412, "number": 2, "label": "classical"} +{"file_name": "test_07247.png", "caption": "This clip feels like a magical fairytale. It features layers of violin that are somewhat orchestral in their arrangement, on top of acoustic guitar arpeggios that cut through the legato violin melodies. At the beginning, there is a warm synth that sounds a little bit like an accordion - rapid chord stabs are played there in eighth notes.", "data_idx": 4412, "number": 3, "label": "classical"} +{"file_name": "test_07248.png", "caption": "This audio contains someone playing a complex and fast rhythm on the tambourine. Also playing percussive. This song may be playing at a traditional ceremony.", "data_idx": 4413, "number": 0, "label": "hiphop"} +{"file_name": "test_07249.png", "caption": "This audio contains someone playing a complex and fast rhythm on the tambourine. Also playing percussive. This song may be playing at a traditional ceremony.", "data_idx": 4413, "number": 1, "label": "hiphop"} +{"file_name": "test_07250.png", "caption": "This audio contains someone playing a complex and fast rhythm on the tambourine. Also playing percussive. This song may be playing at a traditional ceremony.", "data_idx": 4413, "number": 2, "label": "hiphop"} +{"file_name": "test_07251.png", "caption": "This audio contains someone playing a complex and fast rhythm on the tambourine. Also playing percussive. This song may be playing at a traditional ceremony.", "data_idx": 4413, "number": 3, "label": "hiphop"} +{"file_name": "test_07252.png", "caption": "This is an instrument which creates sounds that are similar to laser beams. It sounds futuristic and like something that would be heard in a sci-fi movie. There's a slight crackle to the sounds and they are high-pitched.", "data_idx": 4415, "number": 0, "label": "hiphop"} +{"file_name": "test_07253.png", "caption": "This is an instrument which creates sounds that are similar to laser beams. It sounds futuristic and like something that would be heard in a sci-fi movie. There's a slight crackle to the sounds and they are high-pitched.", "data_idx": 4415, "number": 1, "label": "hiphop"} +{"file_name": "test_07254.png", "caption": "This is an instrument which creates sounds that are similar to laser beams. It sounds futuristic and like something that would be heard in a sci-fi movie. There's a slight crackle to the sounds and they are high-pitched.", "data_idx": 4415, "number": 2, "label": "hiphop"} +{"file_name": "test_07255.png", "caption": "This is an instrument which creates sounds that are similar to laser beams. It sounds futuristic and like something that would be heard in a sci-fi movie. There's a slight crackle to the sounds and they are high-pitched.", "data_idx": 4415, "number": 3, "label": "hiphop"} +{"file_name": "test_07256.png", "caption": "The song is an instrumental. The tempo is slow with a strong bass line, guitar accompaniment, violin accompaniment and Arabic horn instrument playing melancholic. The song is sad and tragic. The audio quality is poor.", "data_idx": 4419, "number": 0, "label": "classical"} +{"file_name": "test_07257.png", "caption": "The song is an instrumental. The tempo is slow with a strong bass line, guitar accompaniment, violin accompaniment and Arabic horn instrument playing melancholic. The song is sad and tragic. The audio quality is poor.", "data_idx": 4419, "number": 1, "label": "classical"} +{"file_name": "test_07258.png", "caption": "The song is an instrumental. The tempo is slow with a strong bass line, guitar accompaniment, violin accompaniment and Arabic horn instrument playing melancholic. The song is sad and tragic. The audio quality is poor.", "data_idx": 4419, "number": 2, "label": "classical"} +{"file_name": "test_07259.png", "caption": "The song is an instrumental. The tempo is slow with a strong bass line, guitar accompaniment, violin accompaniment and Arabic horn instrument playing melancholic. The song is sad and tragic. The audio quality is poor.", "data_idx": 4419, "number": 3, "label": "classical"} +{"file_name": "test_07260.png", "caption": "The low quality recording features a live performance of a bagpipes melody. It sounds traditional, passionate and the recording is in mono and noisy.", "data_idx": 4421, "number": 0, "label": "classical"} +{"file_name": "test_07261.png", "caption": "The low quality recording features a live performance of a bagpipes melody. It sounds traditional, passionate and the recording is in mono and noisy.", "data_idx": 4421, "number": 1, "label": "classical"} +{"file_name": "test_07262.png", "caption": "The low quality recording features a live performance of a bagpipes melody. It sounds traditional, passionate and the recording is in mono and noisy.", "data_idx": 4421, "number": 2, "label": "classical"} +{"file_name": "test_07263.png", "caption": "The low quality recording features a live performance of a bagpipes melody. It sounds traditional, passionate and the recording is in mono and noisy.", "data_idx": 4421, "number": 3, "label": "classical"} +{"file_name": "test_07264.png", "caption": "The low quality recording features a steel drums melody played over punchy kick and snare hits, shimmering hi hats and groovy bass. It sounds exotic and joyful. The recording is noisy.", "data_idx": 4422, "number": 0, "label": "disco"} +{"file_name": "test_07265.png", "caption": "The low quality recording features a steel drums melody played over punchy kick and snare hits, shimmering hi hats and groovy bass. It sounds exotic and joyful. The recording is noisy.", "data_idx": 4422, "number": 1, "label": "disco"} +{"file_name": "test_07266.png", "caption": "This classical Hindustani song features the sitar playing the main melody. Open strings are continuously played with fretted strings providing the main melody of this song. This is accompanied by a tabla playing a classical rhythm. There are no other instruments in this song. There are no voices in this song. This song can be played for an Indian traditional dance.", "data_idx": 4423, "number": 0, "label": "hiphop"} +{"file_name": "test_07267.png", "caption": "This classical Hindustani song features the sitar playing the main melody. Open strings are continuously played with fretted strings providing the main melody of this song. This is accompanied by a tabla playing a classical rhythm. There are no other instruments in this song. There are no voices in this song. This song can be played for an Indian traditional dance.", "data_idx": 4423, "number": 1, "label": "hiphop"} +{"file_name": "test_07268.png", "caption": "A male voice is singing in the mid range accompanied by acoustic drums with a groove on the ride cymbal and a bass playing a simple line. In the background you can hear a keyboard playing short chords while a trumpet is playing its own melody at the end of the singer's phrases. This song may be playing in a repair workshop.", "data_idx": 4430, "number": 0, "label": "reggae"} +{"file_name": "test_07269.png", "caption": "A male voice is singing in the mid range accompanied by acoustic drums with a groove on the ride cymbal and a bass playing a simple line. In the background you can hear a keyboard playing short chords while a trumpet is playing its own melody at the end of the singer's phrases. This song may be playing in a repair workshop.", "data_idx": 4430, "number": 1, "label": "reggae"} +{"file_name": "test_07270.png", "caption": "The song is an instrumental. The song is medium tempo with a tenor saxophone playing a lilting melody in legato style. The song has no other instrumentation support. The audio quality is very poor.", "data_idx": 4433, "number": 0, "label": "jazz"} +{"file_name": "test_07271.png", "caption": "The song is an instrumental. The song is medium tempo with a tenor saxophone playing a lilting melody in legato style. The song has no other instrumentation support. The audio quality is very poor.", "data_idx": 4433, "number": 1, "label": "jazz"} +{"file_name": "test_07272.png", "caption": "The song is an instrumental. The song is medium tempo with a tenor saxophone playing a lilting melody in legato style. The song has no other instrumentation support. The audio quality is very poor.", "data_idx": 4433, "number": 2, "label": "jazz"} +{"file_name": "test_07273.png", "caption": "The song is an instrumental. The song is medium tempo with a tenor saxophone playing a lilting melody in legato style. The song has no other instrumentation support. The audio quality is very poor.", "data_idx": 4433, "number": 3, "label": "jazz"} +{"file_name": "test_07274.png", "caption": "The Electro song features a \"4 on the floor\" kick pattern, punchy snare, claps, groovy bass, metallic percussion and repetitive male vocal singing over it. It sounds groovy and energetic - like something you would hear in clubs.", "data_idx": 4435, "number": 0, "label": "hiphop"} +{"file_name": "test_07275.png", "caption": "The Electro song features a \"4 on the floor\" kick pattern, punchy snare, claps, groovy bass, metallic percussion and repetitive male vocal singing over it. It sounds groovy and energetic - like something you would hear in clubs.", "data_idx": 4435, "number": 1, "label": "hiphop"} +{"file_name": "test_07276.png", "caption": "The Electro song features a \"4 on the floor\" kick pattern, punchy snare, claps, groovy bass, metallic percussion and repetitive male vocal singing over it. It sounds groovy and energetic - like something you would hear in clubs.", "data_idx": 4435, "number": 2, "label": "hiphop"} +{"file_name": "test_07277.png", "caption": "The Electro song features a \"4 on the floor\" kick pattern, punchy snare, claps, groovy bass, metallic percussion and repetitive male vocal singing over it. It sounds groovy and energetic - like something you would hear in clubs.", "data_idx": 4435, "number": 3, "label": "hiphop"} +{"file_name": "test_07278.png", "caption": "This is a Christian gospel music piece. There is a female vocalist singing melodically. An acoustic guitar and an electric guitar are playing in the melodic background. The atmosphere is religious. This piece could be used as a background music for Christian social media content.", "data_idx": 4437, "number": 0, "label": "blues"} +{"file_name": "test_07279.png", "caption": "This is a Christian gospel music piece. There is a female vocalist singing melodically. An acoustic guitar and an electric guitar are playing in the melodic background. The atmosphere is religious. This piece could be used as a background music for Christian social media content.", "data_idx": 4437, "number": 1, "label": "blues"} +{"file_name": "test_07280.png", "caption": "This is a Christian gospel music piece. There is a female vocalist singing melodically. An acoustic guitar and an electric guitar are playing in the melodic background. The atmosphere is religious. This piece could be used as a background music for Christian social media content.", "data_idx": 4437, "number": 2, "label": "blues"} +{"file_name": "test_07281.png", "caption": "This is a Christian gospel music piece. There is a female vocalist singing melodically. An acoustic guitar and an electric guitar are playing in the melodic background. The atmosphere is religious. This piece could be used as a background music for Christian social media content.", "data_idx": 4437, "number": 3, "label": "blues"} +{"file_name": "test_07282.png", "caption": "Someone is playing high single long notes on a harmonica along to a metronome sound. Then a male voice starts speaking. This audio may be playing as a harmonica tutorial.", "data_idx": 4439, "number": 0, "label": "classical"} +{"file_name": "test_07283.png", "caption": "Someone is playing high single long notes on a harmonica along to a metronome sound. Then a male voice starts speaking. This audio may be playing as a harmonica tutorial.", "data_idx": 4439, "number": 1, "label": "classical"} +{"file_name": "test_07284.png", "caption": "Someone is playing high single long notes on a harmonica along to a metronome sound. Then a male voice starts speaking. This audio may be playing as a harmonica tutorial.", "data_idx": 4439, "number": 2, "label": "classical"} +{"file_name": "test_07285.png", "caption": "Someone is playing high single long notes on a harmonica along to a metronome sound. Then a male voice starts speaking. This audio may be playing as a harmonica tutorial.", "data_idx": 4439, "number": 3, "label": "classical"} +{"file_name": "test_07286.png", "caption": "This song features a male voice singing the main melody. The instruments lend an Indian tonality to the song. The song starts with a flute solo backed by a tabla and a stringed instrument that sounds like a santoor. This is followed by a violin solo backed by the tabla as percussion. The bass plays the root notes of the chords. The male voice starts singing after the violin solo. This song has a gospel feel. The voice is mellow and carries emotion.", "data_idx": 4440, "number": 0, "label": "country"} +{"file_name": "test_07287.png", "caption": "This song features a male voice singing the main melody. The instruments lend an Indian tonality to the song. The song starts with a flute solo backed by a tabla and a stringed instrument that sounds like a santoor. This is followed by a violin solo backed by the tabla as percussion. The bass plays the root notes of the chords. The male voice starts singing after the violin solo. This song has a gospel feel. The voice is mellow and carries emotion.", "data_idx": 4440, "number": 1, "label": "country"} +{"file_name": "test_07288.png", "caption": "This song features a male voice singing the main melody. The instruments lend an Indian tonality to the song. The song starts with a flute solo backed by a tabla and a stringed instrument that sounds like a santoor. This is followed by a violin solo backed by the tabla as percussion. The bass plays the root notes of the chords. The male voice starts singing after the violin solo. This song has a gospel feel. The voice is mellow and carries emotion.", "data_idx": 4440, "number": 2, "label": "country"} +{"file_name": "test_07289.png", "caption": "This song features a male voice singing the main melody. The instruments lend an Indian tonality to the song. The song starts with a flute solo backed by a tabla and a stringed instrument that sounds like a santoor. This is followed by a violin solo backed by the tabla as percussion. The bass plays the root notes of the chords. The male voice starts singing after the violin solo. This song has a gospel feel. The voice is mellow and carries emotion.", "data_idx": 4440, "number": 3, "label": "country"} +{"file_name": "test_07290.png", "caption": "The song's instrumental tempo is slow with various percussive hits, harp playing and a French horn playing a gentle yet strong melody. The song is emotional and full of hope. The song is an adventure movie soundtrack.", "data_idx": 4443, "number": 0, "label": "classical"} +{"file_name": "test_07291.png", "caption": "The song's instrumental tempo is slow with various percussive hits, harp playing and a French horn playing a gentle yet strong melody. The song is emotional and full of hope. The song is an adventure movie soundtrack.", "data_idx": 4443, "number": 1, "label": "classical"} +{"file_name": "test_07292.png", "caption": "The song's instrumental tempo is slow with various percussive hits, harp playing and a French horn playing a gentle yet strong melody. The song is emotional and full of hope. The song is an adventure movie soundtrack.", "data_idx": 4443, "number": 2, "label": "classical"} +{"file_name": "test_07293.png", "caption": "The song's instrumental tempo is slow with various percussive hits, harp playing and a French horn playing a gentle yet strong melody. The song is emotional and full of hope. The song is an adventure movie soundtrack.", "data_idx": 4443, "number": 3, "label": "classical"} +{"file_name": "test_07294.png", "caption": "Solo harmonica playing blues licks, followed by a male voiceover.", "data_idx": 4445, "number": 0, "label": "blues"} +{"file_name": "test_07295.png", "caption": "Solo harmonica playing blues licks, followed by a male voiceover.", "data_idx": 4445, "number": 1, "label": "blues"} +{"file_name": "test_07296.png", "caption": "Solo harmonica playing blues licks, followed by a male voiceover.", "data_idx": 4445, "number": 2, "label": "blues"} +{"file_name": "test_07297.png", "caption": "Solo harmonica playing blues licks, followed by a male voiceover.", "data_idx": 4445, "number": 3, "label": "blues"} +{"file_name": "test_07298.png", "caption": "The low quality recording features distorted electric guitar chords playing over rock songs played on playback. It sounds messy and harsh, as the frequencies of the room and the actual sound of the guitar and song are clashing with each other.", "data_idx": 4446, "number": 0, "label": "metal"} +{"file_name": "test_07299.png", "caption": "The low quality recording features distorted electric guitar chords playing over rock songs played on playback. It sounds messy and harsh, as the frequencies of the room and the actual sound of the guitar and song are clashing with each other.", "data_idx": 4446, "number": 1, "label": "metal"} +{"file_name": "test_07300.png", "caption": "The low quality recording features distorted electric guitar chords playing over rock songs played on playback. It sounds messy and harsh, as the frequencies of the room and the actual sound of the guitar and song are clashing with each other.", "data_idx": 4446, "number": 2, "label": "metal"} +{"file_name": "test_07301.png", "caption": "The low quality recording features distorted electric guitar chords playing over rock songs played on playback. It sounds messy and harsh, as the frequencies of the room and the actual sound of the guitar and song are clashing with each other.", "data_idx": 4446, "number": 3, "label": "metal"} +{"file_name": "test_07302.png", "caption": "This clip is a sound of scratching or scraping using binaural sound. The effect is a 3D stereo sound sensation. The sounds are clear and lucid as if hearing it live. This clip is a demonstration of Binaural sounds.", "data_idx": 4448, "number": 0, "label": "hiphop"} +{"file_name": "test_07303.png", "caption": "This clip is a sound of scratching or scraping using binaural sound. The effect is a 3D stereo sound sensation. The sounds are clear and lucid as if hearing it live. This clip is a demonstration of Binaural sounds.", "data_idx": 4448, "number": 1, "label": "hiphop"} +{"file_name": "test_07304.png", "caption": "This clip is a sound of scratching or scraping using binaural sound. The effect is a 3D stereo sound sensation. The sounds are clear and lucid as if hearing it live. This clip is a demonstration of Binaural sounds.", "data_idx": 4448, "number": 2, "label": "hiphop"} +{"file_name": "test_07305.png", "caption": "This clip is a sound of scratching or scraping using binaural sound. The effect is a 3D stereo sound sensation. The sounds are clear and lucid as if hearing it live. This clip is a demonstration of Binaural sounds.", "data_idx": 4448, "number": 3, "label": "hiphop"} +{"file_name": "test_07306.png", "caption": "Amateur produced hip hop music with out of tune male and female vocals and amateur vocal production. The backing track is a trap beat with a synthesizer arpeggio.", "data_idx": 4449, "number": 0, "label": "hiphop"} +{"file_name": "test_07307.png", "caption": "Amateur produced hip hop music with out of tune male and female vocals and amateur vocal production. The backing track is a trap beat with a synthesizer arpeggio.", "data_idx": 4449, "number": 1, "label": "hiphop"} +{"file_name": "test_07308.png", "caption": "Amateur produced hip hop music with out of tune male and female vocals and amateur vocal production. The backing track is a trap beat with a synthesizer arpeggio.", "data_idx": 4449, "number": 2, "label": "hiphop"} +{"file_name": "test_07309.png", "caption": "Amateur produced hip hop music with out of tune male and female vocals and amateur vocal production. The backing track is a trap beat with a synthesizer arpeggio.", "data_idx": 4449, "number": 3, "label": "hiphop"} +{"file_name": "test_07310.png", "caption": "The low quality recording features a live performance of a pop song that contains flat male vocals talking on a microphone over a song played on playback and some crowd cheering noises. The song consists of a \"4 on the floor\" kick pattern, energetic cymbals, groovy synth bass, claps and synth lead melody. It sounds happy, joyful and exciting.", "data_idx": 4450, "number": 0, "label": "metal"} +{"file_name": "test_07311.png", "caption": "The low quality recording features a live performance of a pop song that contains flat male vocals talking on a microphone over a song played on playback and some crowd cheering noises. The song consists of a \"4 on the floor\" kick pattern, energetic cymbals, groovy synth bass, claps and synth lead melody. It sounds happy, joyful and exciting.", "data_idx": 4450, "number": 1, "label": "metal"} +{"file_name": "test_07312.png", "caption": "The low quality recording features a live performance of a pop song that contains flat male vocals talking on a microphone over a song played on playback and some crowd cheering noises. The song consists of a \"4 on the floor\" kick pattern, energetic cymbals, groovy synth bass, claps and synth lead melody. It sounds happy, joyful and exciting.", "data_idx": 4450, "number": 2, "label": "metal"} +{"file_name": "test_07313.png", "caption": "The low quality recording features a live performance of a pop song that contains flat male vocals talking on a microphone over a song played on playback and some crowd cheering noises. The song consists of a \"4 on the floor\" kick pattern, energetic cymbals, groovy synth bass, claps and synth lead melody. It sounds happy, joyful and exciting.", "data_idx": 4450, "number": 3, "label": "metal"} +{"file_name": "test_07314.png", "caption": "A solo trumpet playing an energetic staccato melody with dramatic glissandi. The trumpet has been processed to add a stereo delay effect and reverb. The tone is very bright.", "data_idx": 4451, "number": 0, "label": "hiphop"} +{"file_name": "test_07315.png", "caption": "A solo trumpet playing an energetic staccato melody with dramatic glissandi. The trumpet has been processed to add a stereo delay effect and reverb. The tone is very bright.", "data_idx": 4451, "number": 1, "label": "hiphop"} +{"file_name": "test_07316.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a passionate female vocalist singing over groovy piano melody, saxophone melody, groovy bass, shimmering hi hats, punchy snare and soft kick hits. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 4455, "number": 0, "label": "classical"} +{"file_name": "test_07317.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a passionate female vocalist singing over groovy piano melody, saxophone melody, groovy bass, shimmering hi hats, punchy snare and soft kick hits. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 4455, "number": 1, "label": "classical"} +{"file_name": "test_07318.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a passionate female vocalist singing over groovy piano melody, saxophone melody, groovy bass, shimmering hi hats, punchy snare and soft kick hits. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 4455, "number": 2, "label": "classical"} +{"file_name": "test_07319.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of a passionate female vocalist singing over groovy piano melody, saxophone melody, groovy bass, shimmering hi hats, punchy snare and soft kick hits. It sounds passionate, soulful and the recording is noisy and in mono.", "data_idx": 4455, "number": 3, "label": "classical"} +{"file_name": "test_07320.png", "caption": "The low quality recording features a cajon percussive rhythm played, after which there is a flat male vocal talking. It is noisy, mono, reverberant and it sounds like a tutorial.", "data_idx": 4456, "number": 0, "label": "rock"} +{"file_name": "test_07321.png", "caption": "The low quality recording features a cajon percussive rhythm played, after which there is a flat male vocal talking. It is noisy, mono, reverberant and it sounds like a tutorial.", "data_idx": 4456, "number": 1, "label": "rock"} +{"file_name": "test_07322.png", "caption": "The low quality recording features a cajon percussive rhythm played, after which there is a flat male vocal talking. It is noisy, mono, reverberant and it sounds like a tutorial.", "data_idx": 4456, "number": 2, "label": "rock"} +{"file_name": "test_07323.png", "caption": "The low quality recording features a cajon percussive rhythm played, after which there is a flat male vocal talking. It is noisy, mono, reverberant and it sounds like a tutorial.", "data_idx": 4456, "number": 3, "label": "rock"} +{"file_name": "test_07324.png", "caption": "This slow rock song features a male voice singing the main melody. This is accompanied by other voices singing vocables in the background. The percussion plays a simple beat in common time. The bass plays the root notes of the chords. A synth plays a repetitive chord in staccato. A piano plays some high pitched notes in between lines. This song can be played in a movie scene at a harbour at night.", "data_idx": 4457, "number": 0, "label": "disco"} +{"file_name": "test_07325.png", "caption": "This slow rock song features a male voice singing the main melody. This is accompanied by other voices singing vocables in the background. The percussion plays a simple beat in common time. The bass plays the root notes of the chords. A synth plays a repetitive chord in staccato. A piano plays some high pitched notes in between lines. This song can be played in a movie scene at a harbour at night.", "data_idx": 4457, "number": 1, "label": "disco"} +{"file_name": "test_07326.png", "caption": "This slow rock song features a male voice singing the main melody. This is accompanied by other voices singing vocables in the background. The percussion plays a simple beat in common time. The bass plays the root notes of the chords. A synth plays a repetitive chord in staccato. A piano plays some high pitched notes in between lines. This song can be played in a movie scene at a harbour at night.", "data_idx": 4457, "number": 2, "label": "disco"} +{"file_name": "test_07327.png", "caption": "This slow rock song features a male voice singing the main melody. This is accompanied by other voices singing vocables in the background. The percussion plays a simple beat in common time. The bass plays the root notes of the chords. A synth plays a repetitive chord in staccato. A piano plays some high pitched notes in between lines. This song can be played in a movie scene at a harbour at night.", "data_idx": 4457, "number": 3, "label": "disco"} +{"file_name": "test_07328.png", "caption": "This audio contains two people playing accordion. One is playing the foundation as rhythmical chords while the other person is playing the lead melody in a higher pitch. This song may be playing live in the countryside.", "data_idx": 4459, "number": 0, "label": "classical"} +{"file_name": "test_07329.png", "caption": "This audio contains two people playing accordion. One is playing the foundation as rhythmical chords while the other person is playing the lead melody in a higher pitch. This song may be playing live in the countryside.", "data_idx": 4459, "number": 1, "label": "classical"} +{"file_name": "test_07330.png", "caption": "This audio contains two people playing accordion. One is playing the foundation as rhythmical chords while the other person is playing the lead melody in a higher pitch. This song may be playing live in the countryside.", "data_idx": 4459, "number": 2, "label": "classical"} +{"file_name": "test_07331.png", "caption": "This audio contains two people playing accordion. One is playing the foundation as rhythmical chords while the other person is playing the lead melody in a higher pitch. This song may be playing live in the countryside.", "data_idx": 4459, "number": 3, "label": "classical"} +{"file_name": "test_07332.png", "caption": "low fidelity recording of a solo electric guitar with a distorted tone playing fast notes with aggressive vibrato and whammy bar for dive bombs. The mood is frenetic and wild. The style would fit in an 80's heavy metal band.", "data_idx": 4462, "number": 0, "label": "rock"} +{"file_name": "test_07333.png", "caption": "low fidelity recording of a solo electric guitar with a distorted tone playing fast notes with aggressive vibrato and whammy bar for dive bombs. The mood is frenetic and wild. The style would fit in an 80's heavy metal band.", "data_idx": 4462, "number": 1, "label": "rock"} +{"file_name": "test_07334.png", "caption": "low fidelity recording of a solo electric guitar with a distorted tone playing fast notes with aggressive vibrato and whammy bar for dive bombs. The mood is frenetic and wild. The style would fit in an 80's heavy metal band.", "data_idx": 4462, "number": 2, "label": "rock"} +{"file_name": "test_07335.png", "caption": "low fidelity recording of a solo electric guitar with a distorted tone playing fast notes with aggressive vibrato and whammy bar for dive bombs. The mood is frenetic and wild. The style would fit in an 80's heavy metal band.", "data_idx": 4462, "number": 3, "label": "rock"} +{"file_name": "test_07336.png", "caption": "This clip brings about the sensation of building up to something. It features an arpeggiated melody on the piano, and timpani drum rolls. The audio quality is low.", "data_idx": 4464, "number": 0, "label": "classical"} +{"file_name": "test_07337.png", "caption": "This clip brings about the sensation of building up to something. It features an arpeggiated melody on the piano, and timpani drum rolls. The audio quality is low.", "data_idx": 4464, "number": 1, "label": "classical"} +{"file_name": "test_07338.png", "caption": "This clip brings about the sensation of building up to something. It features an arpeggiated melody on the piano, and timpani drum rolls. The audio quality is low.", "data_idx": 4464, "number": 2, "label": "classical"} +{"file_name": "test_07339.png", "caption": "This clip brings about the sensation of building up to something. It features an arpeggiated melody on the piano, and timpani drum rolls. The audio quality is low.", "data_idx": 4464, "number": 3, "label": "classical"} +{"file_name": "test_07340.png", "caption": "The low quality recording features a groovy tabla percussion playing. The recording is noisy and in mono.", "data_idx": 4465, "number": 0, "label": "reggae"} +{"file_name": "test_07341.png", "caption": "The low quality recording features a groovy tabla percussion playing. The recording is noisy and in mono.", "data_idx": 4465, "number": 1, "label": "reggae"} +{"file_name": "test_07342.png", "caption": "The low quality recording features a groovy tabla percussion playing. The recording is noisy and in mono.", "data_idx": 4465, "number": 2, "label": "reggae"} +{"file_name": "test_07343.png", "caption": "The low quality recording features a groovy tabla percussion playing. The recording is noisy and in mono.", "data_idx": 4465, "number": 3, "label": "reggae"} +{"file_name": "test_07344.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of harmonizing female vocals singing over a mellow harp melody and flamenco acoustic guitar melody. It sounds raw, emotional and passionate. The recording is a bit noisy and there are some car rev noises in the background.", "data_idx": 4468, "number": 0, "label": "reggae"} +{"file_name": "test_07345.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of harmonizing female vocals singing over a mellow harp melody and flamenco acoustic guitar melody. It sounds raw, emotional and passionate. The recording is a bit noisy and there are some car rev noises in the background.", "data_idx": 4468, "number": 1, "label": "reggae"} +{"file_name": "test_07346.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of harmonizing female vocals singing over a mellow harp melody and flamenco acoustic guitar melody. It sounds raw, emotional and passionate. The recording is a bit noisy and there are some car rev noises in the background.", "data_idx": 4468, "number": 2, "label": "reggae"} +{"file_name": "test_07347.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of harmonizing female vocals singing over a mellow harp melody and flamenco acoustic guitar melody. It sounds raw, emotional and passionate. The recording is a bit noisy and there are some car rev noises in the background.", "data_idx": 4468, "number": 3, "label": "reggae"} +{"file_name": "test_07348.png", "caption": "The low quality recording features a traditional song that consists of a passionate woodwind melody playing over wide sustained strings, acoustic guitar chords and dissonant string melody. It sounds joyful, weird and hypnotic.", "data_idx": 4471, "number": 0, "label": "classical"} +{"file_name": "test_07349.png", "caption": "The low quality recording features a traditional song that consists of a passionate woodwind melody playing over wide sustained strings, acoustic guitar chords and dissonant string melody. It sounds joyful, weird and hypnotic.", "data_idx": 4471, "number": 1, "label": "classical"} +{"file_name": "test_07350.png", "caption": "The low quality recording features a traditional song that consists of a passionate woodwind melody playing over wide sustained strings, acoustic guitar chords and dissonant string melody. It sounds joyful, weird and hypnotic.", "data_idx": 4471, "number": 2, "label": "classical"} +{"file_name": "test_07351.png", "caption": "The low quality recording features a traditional song that consists of a passionate woodwind melody playing over wide sustained strings, acoustic guitar chords and dissonant string melody. It sounds joyful, weird and hypnotic.", "data_idx": 4471, "number": 3, "label": "classical"} +{"file_name": "test_07352.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a shimmering tambourine being played. The recording is noisy and the stereo image is unbalanced, as the audio is slightly leaning towards the right channel of the stereo image.", "data_idx": 4472, "number": 0, "label": "hiphop"} +{"file_name": "test_07353.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a shimmering tambourine being played. The recording is noisy and the stereo image is unbalanced, as the audio is slightly leaning towards the right channel of the stereo image.", "data_idx": 4472, "number": 1, "label": "hiphop"} +{"file_name": "test_07354.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a shimmering tambourine being played. The recording is noisy and the stereo image is unbalanced, as the audio is slightly leaning towards the right channel of the stereo image.", "data_idx": 4472, "number": 2, "label": "hiphop"} +{"file_name": "test_07355.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a shimmering tambourine being played. The recording is noisy and the stereo image is unbalanced, as the audio is slightly leaning towards the right channel of the stereo image.", "data_idx": 4472, "number": 3, "label": "hiphop"} +{"file_name": "test_07356.png", "caption": "This is a synthwave music piece. It is an instrumental piece. There is an analog sounding synth playing a mellow tune. An overall feeling of nostalgia can be felt from this piece. It could be used in the soundtrack of a drama movie that is about a protagonist who cannot adapt to modernity.", "data_idx": 4475, "number": 0, "label": "blues"} +{"file_name": "test_07357.png", "caption": "This is a synthwave music piece. It is an instrumental piece. There is an analog sounding synth playing a mellow tune. An overall feeling of nostalgia can be felt from this piece. It could be used in the soundtrack of a drama movie that is about a protagonist who cannot adapt to modernity.", "data_idx": 4475, "number": 1, "label": "blues"} +{"file_name": "test_07358.png", "caption": "This is a synthwave music piece. It is an instrumental piece. There is an analog sounding synth playing a mellow tune. An overall feeling of nostalgia can be felt from this piece. It could be used in the soundtrack of a drama movie that is about a protagonist who cannot adapt to modernity.", "data_idx": 4475, "number": 2, "label": "blues"} +{"file_name": "test_07359.png", "caption": "This is a synthwave music piece. It is an instrumental piece. There is an analog sounding synth playing a mellow tune. An overall feeling of nostalgia can be felt from this piece. It could be used in the soundtrack of a drama movie that is about a protagonist who cannot adapt to modernity.", "data_idx": 4475, "number": 3, "label": "blues"} +{"file_name": "test_07360.png", "caption": "This is a live performance of a Greek folk music piece. There is an orchestra performing the piece. There is a floghera flute playing the main tune while the oud and the bass guitar are playing in the background. The rhythm is being played by the acoustic drums. After the shout coming from a male voice, the orchestra starts accelerating. The atmosphere is lively. This piece could be playing in the background at a seaside Greek tavern.", "data_idx": 4476, "number": 0, "label": "blues"} +{"file_name": "test_07361.png", "caption": "This is a live performance of a Greek folk music piece. There is an orchestra performing the piece. There is a floghera flute playing the main tune while the oud and the bass guitar are playing in the background. The rhythm is being played by the acoustic drums. After the shout coming from a male voice, the orchestra starts accelerating. The atmosphere is lively. This piece could be playing in the background at a seaside Greek tavern.", "data_idx": 4476, "number": 1, "label": "blues"} +{"file_name": "test_07362.png", "caption": "This is a trombone performance piece for an audition. The tune being played resembles something that would be heard at the royal court of a western kingdom. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie, especially during the scenes where the king is attending a feast.", "data_idx": 4477, "number": 0, "label": "classical"} +{"file_name": "test_07363.png", "caption": "This is a trombone performance piece for an audition. The tune being played resembles something that would be heard at the royal court of a western kingdom. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie, especially during the scenes where the king is attending a feast.", "data_idx": 4477, "number": 1, "label": "classical"} +{"file_name": "test_07364.png", "caption": "This is a trombone performance piece for an audition. The tune being played resembles something that would be heard at the royal court of a western kingdom. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie, especially during the scenes where the king is attending a feast.", "data_idx": 4477, "number": 2, "label": "classical"} +{"file_name": "test_07365.png", "caption": "This is a trombone performance piece for an audition. The tune being played resembles something that would be heard at the royal court of a western kingdom. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie, especially during the scenes where the king is attending a feast.", "data_idx": 4477, "number": 3, "label": "classical"} +{"file_name": "test_07366.png", "caption": "The low quality recording features a loud church bells playing. The recording is in mono and it is very noisy.", "data_idx": 4478, "number": 0, "label": "classical"} +{"file_name": "test_07367.png", "caption": "The low quality recording features a loud church bells playing. The recording is in mono and it is very noisy.", "data_idx": 4478, "number": 1, "label": "classical"} +{"file_name": "test_07368.png", "caption": "The low quality recording features a loud church bells playing. The recording is in mono and it is very noisy.", "data_idx": 4478, "number": 2, "label": "classical"} +{"file_name": "test_07369.png", "caption": "The low quality recording features a loud church bells playing. The recording is in mono and it is very noisy.", "data_idx": 4478, "number": 3, "label": "classical"} +{"file_name": "test_07370.png", "caption": "The low quality recording features a harmonica solo melody over soft double bass and arpeggiated acoustic guitar melody. It sounds emotional, passionate and heartfelt.", "data_idx": 4479, "number": 0, "label": "classical"} +{"file_name": "test_07371.png", "caption": "The low quality recording features a harmonica solo melody over soft double bass and arpeggiated acoustic guitar melody. It sounds emotional, passionate and heartfelt.", "data_idx": 4479, "number": 1, "label": "classical"} +{"file_name": "test_07372.png", "caption": "The low quality recording features a harmonica solo melody over soft double bass and arpeggiated acoustic guitar melody. It sounds emotional, passionate and heartfelt.", "data_idx": 4479, "number": 2, "label": "classical"} +{"file_name": "test_07373.png", "caption": "The low quality recording features a harmonica solo melody over soft double bass and arpeggiated acoustic guitar melody. It sounds emotional, passionate and heartfelt.", "data_idx": 4479, "number": 3, "label": "classical"} +{"file_name": "test_07374.png", "caption": "The low quality recording features a gospel song that contains a harmonizing mixed vocals singing. The recording is a bit noisy and it sounds emotional and passionate.", "data_idx": 4480, "number": 0, "label": "classical"} +{"file_name": "test_07375.png", "caption": "The low quality recording features a gospel song that contains a harmonizing mixed vocals singing. The recording is a bit noisy and it sounds emotional and passionate.", "data_idx": 4480, "number": 1, "label": "classical"} +{"file_name": "test_07376.png", "caption": "The low quality recording features a gospel song that contains a harmonizing mixed vocals singing. The recording is a bit noisy and it sounds emotional and passionate.", "data_idx": 4480, "number": 2, "label": "classical"} +{"file_name": "test_07377.png", "caption": "The low quality recording features a gospel song that contains a harmonizing mixed vocals singing. The recording is a bit noisy and it sounds emotional and passionate.", "data_idx": 4480, "number": 3, "label": "classical"} +{"file_name": "test_07378.png", "caption": "This music is an upbeat instrumental. The tempo is fast with a plethora of instruments like trumpets, congas, bongos, steel drum, accordion,saxophone, keyboard,and electric guitar. The music is perky, buoyant, high spirited, enthusiastic, energetic with complex harmonies. This music is a contemporary take in Traditional Latin folk music.", "data_idx": 4481, "number": 0, "label": "disco"} +{"file_name": "test_07379.png", "caption": "This music is an upbeat instrumental. The tempo is fast with a plethora of instruments like trumpets, congas, bongos, steel drum, accordion,saxophone, keyboard,and electric guitar. The music is perky, buoyant, high spirited, enthusiastic, energetic with complex harmonies. This music is a contemporary take in Traditional Latin folk music.", "data_idx": 4481, "number": 1, "label": "disco"} +{"file_name": "test_07380.png", "caption": "This music is an upbeat instrumental. The tempo is fast with a plethora of instruments like trumpets, congas, bongos, steel drum, accordion,saxophone, keyboard,and electric guitar. The music is perky, buoyant, high spirited, enthusiastic, energetic with complex harmonies. This music is a contemporary take in Traditional Latin folk music.", "data_idx": 4481, "number": 2, "label": "disco"} +{"file_name": "test_07381.png", "caption": "This music is an upbeat instrumental. The tempo is fast with a plethora of instruments like trumpets, congas, bongos, steel drum, accordion,saxophone, keyboard,and electric guitar. The music is perky, buoyant, high spirited, enthusiastic, energetic with complex harmonies. This music is a contemporary take in Traditional Latin folk music.", "data_idx": 4481, "number": 3, "label": "disco"} +{"file_name": "test_07382.png", "caption": "This song contains a lot of synth pad and drone sounds creating a meditative atmosphere. Then a deep soft bass sound comes in. A piano is playing a slow melody with a lot of reverb. A flute sound is playing a simple melody on top and a pluck instrument is playing another short melody. Then a digital female choir sounding pad comes in. This song may be playing during a meditation session.", "data_idx": 4482, "number": 0, "label": "classical"} +{"file_name": "test_07383.png", "caption": "This song contains a lot of synth pad and drone sounds creating a meditative atmosphere. Then a deep soft bass sound comes in. A piano is playing a slow melody with a lot of reverb. A flute sound is playing a simple melody on top and a pluck instrument is playing another short melody. Then a digital female choir sounding pad comes in. This song may be playing during a meditation session.", "data_idx": 4482, "number": 1, "label": "classical"} +{"file_name": "test_07384.png", "caption": "This song contains a lot of synth pad and drone sounds creating a meditative atmosphere. Then a deep soft bass sound comes in. A piano is playing a slow melody with a lot of reverb. A flute sound is playing a simple melody on top and a pluck instrument is playing another short melody. Then a digital female choir sounding pad comes in. This song may be playing during a meditation session.", "data_idx": 4482, "number": 2, "label": "classical"} +{"file_name": "test_07385.png", "caption": "This song contains a lot of synth pad and drone sounds creating a meditative atmosphere. Then a deep soft bass sound comes in. A piano is playing a slow melody with a lot of reverb. A flute sound is playing a simple melody on top and a pluck instrument is playing another short melody. Then a digital female choir sounding pad comes in. This song may be playing during a meditation session.", "data_idx": 4482, "number": 3, "label": "classical"} +{"file_name": "test_07386.png", "caption": "The low quality recording features an orchestral music that consists of a wide string melody, followed by mellow brass, wide brass melody and shimmering cymbals. It sounds suspenseful and intense - like something that you would hear in the background of a movie scene.", "data_idx": 4486, "number": 0, "label": "classical"} +{"file_name": "test_07387.png", "caption": "The low quality recording features an orchestral music that consists of a wide string melody, followed by mellow brass, wide brass melody and shimmering cymbals. It sounds suspenseful and intense - like something that you would hear in the background of a movie scene.", "data_idx": 4486, "number": 1, "label": "classical"} +{"file_name": "test_07388.png", "caption": "The low quality recording features an orchestral music that consists of a wide string melody, followed by mellow brass, wide brass melody and shimmering cymbals. It sounds suspenseful and intense - like something that you would hear in the background of a movie scene.", "data_idx": 4486, "number": 2, "label": "classical"} +{"file_name": "test_07389.png", "caption": "The low quality recording features an orchestral music that consists of a wide string melody, followed by mellow brass, wide brass melody and shimmering cymbals. It sounds suspenseful and intense - like something that you would hear in the background of a movie scene.", "data_idx": 4486, "number": 3, "label": "classical"} +{"file_name": "test_07390.png", "caption": "The low quality recording features an orchestral music played by wide violin melody and low cello. It sounds emotional and passionate - like something you would hear in old cartoons.", "data_idx": 4488, "number": 0, "label": "classical"} +{"file_name": "test_07391.png", "caption": "The low quality recording features an orchestral music played by wide violin melody and low cello. It sounds emotional and passionate - like something you would hear in old cartoons.", "data_idx": 4488, "number": 1, "label": "classical"} +{"file_name": "test_07392.png", "caption": "The low quality recording features an orchestral music played by wide violin melody and low cello. It sounds emotional and passionate - like something you would hear in old cartoons.", "data_idx": 4488, "number": 2, "label": "classical"} +{"file_name": "test_07393.png", "caption": "The low quality recording features an orchestral music played by wide violin melody and low cello. It sounds emotional and passionate - like something you would hear in old cartoons.", "data_idx": 4488, "number": 3, "label": "classical"} +{"file_name": "test_07394.png", "caption": "The low quality recording features a country song that contains harmonizing vocals singing over electric guitar solo melody, smooth bass guitar, acoustic rhythm guitar, snappy rimshots, shimmering hi hats and soft kick hits. It sounds soulful, emotional and passionate.", "data_idx": 4489, "number": 0, "label": "blues"} +{"file_name": "test_07395.png", "caption": "The low quality recording features a country song that contains harmonizing vocals singing over electric guitar solo melody, smooth bass guitar, acoustic rhythm guitar, snappy rimshots, shimmering hi hats and soft kick hits. It sounds soulful, emotional and passionate.", "data_idx": 4489, "number": 1, "label": "blues"} +{"file_name": "test_07396.png", "caption": "The low quality recording features a country song that contains harmonizing vocals singing over electric guitar solo melody, smooth bass guitar, acoustic rhythm guitar, snappy rimshots, shimmering hi hats and soft kick hits. It sounds soulful, emotional and passionate.", "data_idx": 4489, "number": 2, "label": "blues"} +{"file_name": "test_07397.png", "caption": "The low quality recording features a country song that contains harmonizing vocals singing over electric guitar solo melody, smooth bass guitar, acoustic rhythm guitar, snappy rimshots, shimmering hi hats and soft kick hits. It sounds soulful, emotional and passionate.", "data_idx": 4489, "number": 3, "label": "blues"} +{"file_name": "test_07398.png", "caption": "The low quality recording features a live performance of a classical song that consists of a woodwinds melody, sustained strings melody and double bass melody. It sounds passionate and the recording is in mono and noisy.", "data_idx": 4490, "number": 0, "label": "jazz"} +{"file_name": "test_07399.png", "caption": "The low quality recording features a live performance of a classical song that consists of a woodwinds melody, sustained strings melody and double bass melody. It sounds passionate and the recording is in mono and noisy.", "data_idx": 4490, "number": 1, "label": "jazz"} +{"file_name": "test_07400.png", "caption": "The low quality recording features a live performance of a classical song that consists of a woodwinds melody, sustained strings melody and double bass melody. It sounds passionate and the recording is in mono and noisy.", "data_idx": 4490, "number": 2, "label": "jazz"} +{"file_name": "test_07401.png", "caption": "The low quality recording features a live performance of a classical song that consists of a woodwinds melody, sustained strings melody and double bass melody. It sounds passionate and the recording is in mono and noisy.", "data_idx": 4490, "number": 3, "label": "jazz"} +{"file_name": "test_07402.png", "caption": "A female singer sings this cool dance melody. The song is medium-fast tempo with a cool dance groove, percussive bass line, steady dance rhythm, keyboard accompaniment and various percussion hits. The song is groovy and proper electronic dance music hit,", "data_idx": 4492, "number": 0, "label": "disco"} +{"file_name": "test_07403.png", "caption": "A female singer sings this cool dance melody. The song is medium-fast tempo with a cool dance groove, percussive bass line, steady dance rhythm, keyboard accompaniment and various percussion hits. The song is groovy and proper electronic dance music hit,", "data_idx": 4492, "number": 1, "label": "disco"} +{"file_name": "test_07404.png", "caption": "A female singer sings this cool dance melody. The song is medium-fast tempo with a cool dance groove, percussive bass line, steady dance rhythm, keyboard accompaniment and various percussion hits. The song is groovy and proper electronic dance music hit,", "data_idx": 4492, "number": 2, "label": "disco"} +{"file_name": "test_07405.png", "caption": "A female singer sings this cool dance melody. The song is medium-fast tempo with a cool dance groove, percussive bass line, steady dance rhythm, keyboard accompaniment and various percussion hits. The song is groovy and proper electronic dance music hit,", "data_idx": 4492, "number": 3, "label": "disco"} +{"file_name": "test_07406.png", "caption": "This African beat song features a male voice singing the main melody. Other voices sing one word after each line. This is accompanied by percussion playing an African dance beat. The bass plays a groovy bassline. A flute plays the same melody as the main voice. This song has a happy mood. This song can be played in a dance party.", "data_idx": 4493, "number": 0, "label": "disco"} +{"file_name": "test_07407.png", "caption": "This African beat song features a male voice singing the main melody. Other voices sing one word after each line. This is accompanied by percussion playing an African dance beat. The bass plays a groovy bassline. A flute plays the same melody as the main voice. This song has a happy mood. This song can be played in a dance party.", "data_idx": 4493, "number": 1, "label": "disco"} +{"file_name": "test_07408.png", "caption": "This African beat song features a male voice singing the main melody. Other voices sing one word after each line. This is accompanied by percussion playing an African dance beat. The bass plays a groovy bassline. A flute plays the same melody as the main voice. This song has a happy mood. This song can be played in a dance party.", "data_idx": 4493, "number": 2, "label": "disco"} +{"file_name": "test_07409.png", "caption": "This African beat song features a male voice singing the main melody. Other voices sing one word after each line. This is accompanied by percussion playing an African dance beat. The bass plays a groovy bassline. A flute plays the same melody as the main voice. This song has a happy mood. This song can be played in a dance party.", "data_idx": 4493, "number": 3, "label": "disco"} +{"file_name": "test_07410.png", "caption": "This audio contains someone playing a melody on steeldrums along to a backing track containing an e-bass playing a melody along with an e-guitar. A kick is being played on every beat. This song may be played on the streets by a busker.", "data_idx": 4496, "number": 0, "label": "classical"} +{"file_name": "test_07411.png", "caption": "This audio contains someone playing a melody on steeldrums along to a backing track containing an e-bass playing a melody along with an e-guitar. A kick is being played on every beat. This song may be played on the streets by a busker.", "data_idx": 4496, "number": 1, "label": "classical"} +{"file_name": "test_07412.png", "caption": "This audio contains someone playing a melody on steeldrums along to a backing track containing an e-bass playing a melody along with an e-guitar. A kick is being played on every beat. This song may be played on the streets by a busker.", "data_idx": 4496, "number": 2, "label": "classical"} +{"file_name": "test_07413.png", "caption": "This audio contains someone playing a melody on steeldrums along to a backing track containing an e-bass playing a melody along with an e-guitar. A kick is being played on every beat. This song may be played on the streets by a busker.", "data_idx": 4496, "number": 3, "label": "classical"} +{"file_name": "test_07414.png", "caption": "Here we have a pair of differently calibrated Tibetan bowls being played. They sound similar to bells and they create a high pitched resonating sound after the initial transient hit. The sounds are relaxing and would be suitable for a meditation session.", "data_idx": 4497, "number": 0, "label": "classical"} +{"file_name": "test_07415.png", "caption": "Here we have a pair of differently calibrated Tibetan bowls being played. They sound similar to bells and they create a high pitched resonating sound after the initial transient hit. The sounds are relaxing and would be suitable for a meditation session.", "data_idx": 4497, "number": 1, "label": "classical"} +{"file_name": "test_07416.png", "caption": "Here we have a pair of differently calibrated Tibetan bowls being played. They sound similar to bells and they create a high pitched resonating sound after the initial transient hit. The sounds are relaxing and would be suitable for a meditation session.", "data_idx": 4497, "number": 2, "label": "classical"} +{"file_name": "test_07417.png", "caption": "Here we have a pair of differently calibrated Tibetan bowls being played. They sound similar to bells and they create a high pitched resonating sound after the initial transient hit. The sounds are relaxing and would be suitable for a meditation session.", "data_idx": 4497, "number": 3, "label": "classical"} +{"file_name": "test_07418.png", "caption": "The low quality recording features an organ keys melody played over playback instrumental that consists of groovy bass, plucked melody and some wooden percussion. It sounds weird, bouncy, happy and the recording is very noisy.", "data_idx": 4498, "number": 0, "label": "disco"} +{"file_name": "test_07419.png", "caption": "The low quality recording features an organ keys melody played over playback instrumental that consists of groovy bass, plucked melody and some wooden percussion. It sounds weird, bouncy, happy and the recording is very noisy.", "data_idx": 4498, "number": 1, "label": "disco"} +{"file_name": "test_07420.png", "caption": "The low quality recording features an organ keys melody played over playback instrumental that consists of groovy bass, plucked melody and some wooden percussion. It sounds weird, bouncy, happy and the recording is very noisy.", "data_idx": 4498, "number": 2, "label": "disco"} +{"file_name": "test_07421.png", "caption": "The low quality recording features an organ keys melody played over playback instrumental that consists of groovy bass, plucked melody and some wooden percussion. It sounds weird, bouncy, happy and the recording is very noisy.", "data_idx": 4498, "number": 3, "label": "disco"} +{"file_name": "test_07422.png", "caption": "The low quality recording features a live performance of steel drums. It sounds exotic, passionate and emotional, even though the recording is noisy and has some audio popping sounds.", "data_idx": 4501, "number": 0, "label": "hiphop"} +{"file_name": "test_07423.png", "caption": "The low quality recording features a live performance of steel drums. It sounds exotic, passionate and emotional, even though the recording is noisy and has some audio popping sounds.", "data_idx": 4501, "number": 1, "label": "hiphop"} +{"file_name": "test_07424.png", "caption": "The low quality recording features a live performance of steel drums. It sounds exotic, passionate and emotional, even though the recording is noisy and has some audio popping sounds.", "data_idx": 4501, "number": 2, "label": "hiphop"} +{"file_name": "test_07425.png", "caption": "The low quality recording features a live performance of steel drums. It sounds exotic, passionate and emotional, even though the recording is noisy and has some audio popping sounds.", "data_idx": 4501, "number": 3, "label": "hiphop"} +{"file_name": "test_07426.png", "caption": "This music is a Jazz instrumental. The tempo is medium fast with lively trumpets, groovy bass lines, infectious drumming, sound of bells and chimes at the end followed by the voice of a female speaking. The music is spirited, ambient, complex, fun, informal, active,smooth and airy and emphatic.", "data_idx": 4502, "number": 0, "label": "reggae"} +{"file_name": "test_07427.png", "caption": "This music is a Jazz instrumental. The tempo is medium fast with lively trumpets, groovy bass lines, infectious drumming, sound of bells and chimes at the end followed by the voice of a female speaking. The music is spirited, ambient, complex, fun, informal, active,smooth and airy and emphatic.", "data_idx": 4502, "number": 1, "label": "reggae"} +{"file_name": "test_07428.png", "caption": "This music is a Jazz instrumental. The tempo is medium fast with lively trumpets, groovy bass lines, infectious drumming, sound of bells and chimes at the end followed by the voice of a female speaking. The music is spirited, ambient, complex, fun, informal, active,smooth and airy and emphatic.", "data_idx": 4502, "number": 2, "label": "reggae"} +{"file_name": "test_07429.png", "caption": "This music is a Jazz instrumental. The tempo is medium fast with lively trumpets, groovy bass lines, infectious drumming, sound of bells and chimes at the end followed by the voice of a female speaking. The music is spirited, ambient, complex, fun, informal, active,smooth and airy and emphatic.", "data_idx": 4502, "number": 3, "label": "reggae"} +{"file_name": "test_07430.png", "caption": "This is a power metal/speed metal music piece. The melody is being performed by the distorted electric guitar and the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a loud metal acoustic drum beat. The atmosphere is aggressive and upbeat. This music would suit perfectly in the soundtrack of an adventure video game. It could also work well in the soundtrack of an action-filled cartoon series.", "data_idx": 4503, "number": 0, "label": "metal"} +{"file_name": "test_07431.png", "caption": "This is a power metal/speed metal music piece. The melody is being performed by the distorted electric guitar and the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a loud metal acoustic drum beat. The atmosphere is aggressive and upbeat. This music would suit perfectly in the soundtrack of an adventure video game. It could also work well in the soundtrack of an action-filled cartoon series.", "data_idx": 4503, "number": 1, "label": "metal"} +{"file_name": "test_07432.png", "caption": "This is a power metal/speed metal music piece. The melody is being performed by the distorted electric guitar and the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a loud metal acoustic drum beat. The atmosphere is aggressive and upbeat. This music would suit perfectly in the soundtrack of an adventure video game. It could also work well in the soundtrack of an action-filled cartoon series.", "data_idx": 4503, "number": 2, "label": "metal"} +{"file_name": "test_07433.png", "caption": "This is a power metal/speed metal music piece. The melody is being performed by the distorted electric guitar and the keyboard while the bass guitar is playing in the background. The rhythmic background consists of a loud metal acoustic drum beat. The atmosphere is aggressive and upbeat. This music would suit perfectly in the soundtrack of an adventure video game. It could also work well in the soundtrack of an action-filled cartoon series.", "data_idx": 4503, "number": 3, "label": "metal"} +{"file_name": "test_07434.png", "caption": "A male vocalist sings this Classical song. The tempo is fast with animated ghatam, mridangam and tabla accompaniment and violin harmony. The vocals are classical notes and lyrics in a South Indian language. The song has three layers, the melody, percussion and drone. This song is a devotional Carnatic Classical song.", "data_idx": 4504, "number": 0, "label": "disco"} +{"file_name": "test_07435.png", "caption": "A male vocalist sings this Classical song. The tempo is fast with animated ghatam, mridangam and tabla accompaniment and violin harmony. The vocals are classical notes and lyrics in a South Indian language. The song has three layers, the melody, percussion and drone. This song is a devotional Carnatic Classical song.", "data_idx": 4504, "number": 1, "label": "disco"} +{"file_name": "test_07436.png", "caption": "A male vocalist sings this Classical song. The tempo is fast with animated ghatam, mridangam and tabla accompaniment and violin harmony. The vocals are classical notes and lyrics in a South Indian language. The song has three layers, the melody, percussion and drone. This song is a devotional Carnatic Classical song.", "data_idx": 4504, "number": 2, "label": "disco"} +{"file_name": "test_07437.png", "caption": "A male vocalist sings this Classical song. The tempo is fast with animated ghatam, mridangam and tabla accompaniment and violin harmony. The vocals are classical notes and lyrics in a South Indian language. The song has three layers, the melody, percussion and drone. This song is a devotional Carnatic Classical song.", "data_idx": 4504, "number": 3, "label": "disco"} +{"file_name": "test_07438.png", "caption": "This is an instructive recording about body percussion. In the beginning, there is a backing track that has the sitar and the tabla in it. Then, the music stops and a boy starts talking about body percussion in the Italian language. The part where the backing track is playing could be sampled for use in beat-making.", "data_idx": 4505, "number": 0, "label": "hiphop"} +{"file_name": "test_07439.png", "caption": "This is an instructive recording about body percussion. In the beginning, there is a backing track that has the sitar and the tabla in it. Then, the music stops and a boy starts talking about body percussion in the Italian language. The part where the backing track is playing could be sampled for use in beat-making.", "data_idx": 4505, "number": 1, "label": "hiphop"} +{"file_name": "test_07440.png", "caption": "This is an instructive recording about body percussion. In the beginning, there is a backing track that has the sitar and the tabla in it. Then, the music stops and a boy starts talking about body percussion in the Italian language. The part where the backing track is playing could be sampled for use in beat-making.", "data_idx": 4505, "number": 2, "label": "hiphop"} +{"file_name": "test_07441.png", "caption": "This is an instructive recording about body percussion. In the beginning, there is a backing track that has the sitar and the tabla in it. Then, the music stops and a boy starts talking about body percussion in the Italian language. The part where the backing track is playing could be sampled for use in beat-making.", "data_idx": 4505, "number": 3, "label": "hiphop"} +{"file_name": "test_07442.png", "caption": "This is a classical music piece. It is being performed on the harpsichord. The piece is in the minor key. The atmosphere is gentle and it has a medieval sound. This piece could be used in the soundtrack of a medieval era historical drama TV series during the scenes where the characters are taking a stroll through the meadows.", "data_idx": 4506, "number": 0, "label": "classical"} +{"file_name": "test_07443.png", "caption": "This is a classical music piece. It is being performed on the harpsichord. The piece is in the minor key. The atmosphere is gentle and it has a medieval sound. This piece could be used in the soundtrack of a medieval era historical drama TV series during the scenes where the characters are taking a stroll through the meadows.", "data_idx": 4506, "number": 1, "label": "classical"} +{"file_name": "test_07444.png", "caption": "This is a classical music piece. It is being performed on the harpsichord. The piece is in the minor key. The atmosphere is gentle and it has a medieval sound. This piece could be used in the soundtrack of a medieval era historical drama TV series during the scenes where the characters are taking a stroll through the meadows.", "data_idx": 4506, "number": 2, "label": "classical"} +{"file_name": "test_07445.png", "caption": "This is a classical music piece. It is being performed on the harpsichord. The piece is in the minor key. The atmosphere is gentle and it has a medieval sound. This piece could be used in the soundtrack of a medieval era historical drama TV series during the scenes where the characters are taking a stroll through the meadows.", "data_idx": 4506, "number": 3, "label": "classical"} +{"file_name": "test_07446.png", "caption": "The low quality recording features an ambient song that consists of a wide mellow synth pad and echoing bells. It sounds relaxing, calming and easygoing.", "data_idx": 4508, "number": 0, "label": "hiphop"} +{"file_name": "test_07447.png", "caption": "The low quality recording features an ambient song that consists of a wide mellow synth pad and echoing bells. It sounds relaxing, calming and easygoing.", "data_idx": 4508, "number": 1, "label": "hiphop"} +{"file_name": "test_07448.png", "caption": "This is a gear showcase jam. There is a male voice talking in between the sounds giving information about a reverb pedal. There is an electric guitar playing random tunes with the reverb effect. The tunes in the recording are simple. Sounds from this recording could be sampled for use in beat-making.", "data_idx": 4509, "number": 0, "label": "classical"} +{"file_name": "test_07449.png", "caption": "This is a gear showcase jam. There is a male voice talking in between the sounds giving information about a reverb pedal. There is an electric guitar playing random tunes with the reverb effect. The tunes in the recording are simple. Sounds from this recording could be sampled for use in beat-making.", "data_idx": 4509, "number": 1, "label": "classical"} +{"file_name": "test_07450.png", "caption": "This is a gear showcase jam. There is a male voice talking in between the sounds giving information about a reverb pedal. There is an electric guitar playing random tunes with the reverb effect. The tunes in the recording are simple. Sounds from this recording could be sampled for use in beat-making.", "data_idx": 4509, "number": 2, "label": "classical"} +{"file_name": "test_07451.png", "caption": "This is a gear showcase jam. There is a male voice talking in between the sounds giving information about a reverb pedal. There is an electric guitar playing random tunes with the reverb effect. The tunes in the recording are simple. Sounds from this recording could be sampled for use in beat-making.", "data_idx": 4509, "number": 3, "label": "classical"} +{"file_name": "test_07452.png", "caption": "This is a gear showcase video demonstrating the sound difference when an electric guitar is connected to an amp. The electric guitar is playing simple tunes. A male voice is describing the applied effect. Sounds from this piece can be sampled for use in beat-making.", "data_idx": 4511, "number": 0, "label": "blues"} +{"file_name": "test_07453.png", "caption": "This is a gear showcase video demonstrating the sound difference when an electric guitar is connected to an amp. The electric guitar is playing simple tunes. A male voice is describing the applied effect. Sounds from this piece can be sampled for use in beat-making.", "data_idx": 4511, "number": 1, "label": "blues"} +{"file_name": "test_07454.png", "caption": "This is a gear showcase video demonstrating the sound difference when an electric guitar is connected to an amp. The electric guitar is playing simple tunes. A male voice is describing the applied effect. Sounds from this piece can be sampled for use in beat-making.", "data_idx": 4511, "number": 2, "label": "blues"} +{"file_name": "test_07455.png", "caption": "This is a gear showcase video demonstrating the sound difference when an electric guitar is connected to an amp. The electric guitar is playing simple tunes. A male voice is describing the applied effect. Sounds from this piece can be sampled for use in beat-making.", "data_idx": 4511, "number": 3, "label": "blues"} +{"file_name": "test_07456.png", "caption": "Solo nylon string acoustic guitar played fingerstyle in a flamenco tradition. The guitar has lower bass notes than a regular 6 string guitar.", "data_idx": 4513, "number": 0, "label": "classical"} +{"file_name": "test_07457.png", "caption": "Solo nylon string acoustic guitar played fingerstyle in a flamenco tradition. The guitar has lower bass notes than a regular 6 string guitar.", "data_idx": 4513, "number": 1, "label": "classical"} +{"file_name": "test_07458.png", "caption": "Solo nylon string acoustic guitar played fingerstyle in a flamenco tradition. The guitar has lower bass notes than a regular 6 string guitar.", "data_idx": 4513, "number": 2, "label": "classical"} +{"file_name": "test_07459.png", "caption": "Solo nylon string acoustic guitar played fingerstyle in a flamenco tradition. The guitar has lower bass notes than a regular 6 string guitar.", "data_idx": 4513, "number": 3, "label": "classical"} +{"file_name": "test_07460.png", "caption": "This song features synth sounds. There is no particular melody. There is no percussion and no voices. This sounds like sounds from outer space. When the first note is played, a ring modulated sound is played in the background. The same pattern is found in the third, fourth and fifth notes. This song can be played in a movie featuring an outer space theme.", "data_idx": 4514, "number": 0, "label": "jazz"} +{"file_name": "test_07461.png", "caption": "This song features synth sounds. There is no particular melody. There is no percussion and no voices. This sounds like sounds from outer space. When the first note is played, a ring modulated sound is played in the background. The same pattern is found in the third, fourth and fifth notes. This song can be played in a movie featuring an outer space theme.", "data_idx": 4514, "number": 1, "label": "jazz"} +{"file_name": "test_07462.png", "caption": "This song features synth sounds. There is no particular melody. There is no percussion and no voices. This sounds like sounds from outer space. When the first note is played, a ring modulated sound is played in the background. The same pattern is found in the third, fourth and fifth notes. This song can be played in a movie featuring an outer space theme.", "data_idx": 4514, "number": 2, "label": "jazz"} +{"file_name": "test_07463.png", "caption": "This song features synth sounds. There is no particular melody. There is no percussion and no voices. This sounds like sounds from outer space. When the first note is played, a ring modulated sound is played in the background. The same pattern is found in the third, fourth and fifth notes. This song can be played in a movie featuring an outer space theme.", "data_idx": 4514, "number": 3, "label": "jazz"} +{"file_name": "test_07464.png", "caption": "Quirky surf rock music featuring a retro organ playing a simple melody and twangy electric guitar with female background vocals and a male lead vocal. The mood is fun and silly.", "data_idx": 4517, "number": 0, "label": "rock"} +{"file_name": "test_07465.png", "caption": "Quirky surf rock music featuring a retro organ playing a simple melody and twangy electric guitar with female background vocals and a male lead vocal. The mood is fun and silly.", "data_idx": 4517, "number": 1, "label": "rock"} +{"file_name": "test_07466.png", "caption": "Quirky surf rock music featuring a retro organ playing a simple melody and twangy electric guitar with female background vocals and a male lead vocal. The mood is fun and silly.", "data_idx": 4517, "number": 2, "label": "rock"} +{"file_name": "test_07467.png", "caption": "Quirky surf rock music featuring a retro organ playing a simple melody and twangy electric guitar with female background vocals and a male lead vocal. The mood is fun and silly.", "data_idx": 4517, "number": 3, "label": "rock"} +{"file_name": "test_07468.png", "caption": "The low quality recording features an experimental song that consists of wide synth pad chords, wide echoing & shimmering hi hats and filtered echoing acid bass melody that slowly fade in, in the second half of the loop. There are also some subtle crackles, as the recording is a bit noisy. It sounds mystical, hypnotic and haunting.", "data_idx": 4520, "number": 0, "label": "classical"} +{"file_name": "test_07469.png", "caption": "The low quality recording features an experimental song that consists of wide synth pad chords, wide echoing & shimmering hi hats and filtered echoing acid bass melody that slowly fade in, in the second half of the loop. There are also some subtle crackles, as the recording is a bit noisy. It sounds mystical, hypnotic and haunting.", "data_idx": 4520, "number": 1, "label": "classical"} +{"file_name": "test_07470.png", "caption": "The low quality recording features an experimental song that consists of wide synth pad chords, wide echoing & shimmering hi hats and filtered echoing acid bass melody that slowly fade in, in the second half of the loop. There are also some subtle crackles, as the recording is a bit noisy. It sounds mystical, hypnotic and haunting.", "data_idx": 4520, "number": 2, "label": "classical"} +{"file_name": "test_07471.png", "caption": "The low quality recording features an experimental song that consists of wide synth pad chords, wide echoing & shimmering hi hats and filtered echoing acid bass melody that slowly fade in, in the second half of the loop. There are also some subtle crackles, as the recording is a bit noisy. It sounds mystical, hypnotic and haunting.", "data_idx": 4520, "number": 3, "label": "classical"} +{"file_name": "test_07472.png", "caption": "This is an instrumental meditation music piece. The only instrument being played is a set of Tibetan singing bowls. The bowls are rung at different frequencies, giving resonant sounds. The atmosphere of the recording is calming and relaxing. This piece is the perfect background track for a meditation video or a meditation session at a wellness center. It could also be playing in the background at a spa.", "data_idx": 4522, "number": 0, "label": "classical"} +{"file_name": "test_07473.png", "caption": "This is an instrumental meditation music piece. The only instrument being played is a set of Tibetan singing bowls. The bowls are rung at different frequencies, giving resonant sounds. The atmosphere of the recording is calming and relaxing. This piece is the perfect background track for a meditation video or a meditation session at a wellness center. It could also be playing in the background at a spa.", "data_idx": 4522, "number": 1, "label": "classical"} +{"file_name": "test_07474.png", "caption": "This is an instrumental meditation music piece. The only instrument being played is a set of Tibetan singing bowls. The bowls are rung at different frequencies, giving resonant sounds. The atmosphere of the recording is calming and relaxing. This piece is the perfect background track for a meditation video or a meditation session at a wellness center. It could also be playing in the background at a spa.", "data_idx": 4522, "number": 2, "label": "classical"} +{"file_name": "test_07475.png", "caption": "This is an instrumental meditation music piece. The only instrument being played is a set of Tibetan singing bowls. The bowls are rung at different frequencies, giving resonant sounds. The atmosphere of the recording is calming and relaxing. This piece is the perfect background track for a meditation video or a meditation session at a wellness center. It could also be playing in the background at a spa.", "data_idx": 4522, "number": 3, "label": "classical"} +{"file_name": "test_07476.png", "caption": "This is a traditional middle eastern song from an older era. The recording quality suggests that this is a vintage song. There is a group of children singing the same melody in unison, and then there is a male with a soothing vocal. The song comes in at a medium tempo and is suitable for dancing.", "data_idx": 4524, "number": 0, "label": "blues"} +{"file_name": "test_07477.png", "caption": "This is a traditional middle eastern song from an older era. The recording quality suggests that this is a vintage song. There is a group of children singing the same melody in unison, and then there is a male with a soothing vocal. The song comes in at a medium tempo and is suitable for dancing.", "data_idx": 4524, "number": 1, "label": "blues"} +{"file_name": "test_07478.png", "caption": "This is a traditional middle eastern song from an older era. The recording quality suggests that this is a vintage song. There is a group of children singing the same melody in unison, and then there is a male with a soothing vocal. The song comes in at a medium tempo and is suitable for dancing.", "data_idx": 4524, "number": 2, "label": "blues"} +{"file_name": "test_07479.png", "caption": "This is a traditional middle eastern song from an older era. The recording quality suggests that this is a vintage song. There is a group of children singing the same melody in unison, and then there is a male with a soothing vocal. The song comes in at a medium tempo and is suitable for dancing.", "data_idx": 4524, "number": 3, "label": "blues"} +{"file_name": "test_07480.png", "caption": "Whilst this clip is mellow, it feels like the song has a general sense of budding energy. On the bass guitar we have a simple three note motif repeated across different chords. The singer has a seductive, airy and sultry female voice. In the background, we hear an atmospheric, futuristic pad synth.", "data_idx": 4526, "number": 0, "label": "jazz"} +{"file_name": "test_07481.png", "caption": "Whilst this clip is mellow, it feels like the song has a general sense of budding energy. On the bass guitar we have a simple three note motif repeated across different chords. The singer has a seductive, airy and sultry female voice. In the background, we hear an atmospheric, futuristic pad synth.", "data_idx": 4526, "number": 1, "label": "jazz"} +{"file_name": "test_07482.png", "caption": "Whilst this clip is mellow, it feels like the song has a general sense of budding energy. On the bass guitar we have a simple three note motif repeated across different chords. The singer has a seductive, airy and sultry female voice. In the background, we hear an atmospheric, futuristic pad synth.", "data_idx": 4526, "number": 2, "label": "jazz"} +{"file_name": "test_07483.png", "caption": "Whilst this clip is mellow, it feels like the song has a general sense of budding energy. On the bass guitar we have a simple three note motif repeated across different chords. The singer has a seductive, airy and sultry female voice. In the background, we hear an atmospheric, futuristic pad synth.", "data_idx": 4526, "number": 3, "label": "jazz"} +{"file_name": "test_07484.png", "caption": "This song contains a tabla rhythm spread across both sides of the speakers. An acoustic guitar melody panned to the right side of the speakers. Far in the background you can hear clapping as part of the song. A male voice is singing in a higher register than a violin takes over playing a melody in a higher register with reverb and a little delay. This song may be playing in a lovely movie-scene.", "data_idx": 4527, "number": 0, "label": "blues"} +{"file_name": "test_07485.png", "caption": "This song contains a tabla rhythm spread across both sides of the speakers. An acoustic guitar melody panned to the right side of the speakers. Far in the background you can hear clapping as part of the song. A male voice is singing in a higher register than a violin takes over playing a melody in a higher register with reverb and a little delay. This song may be playing in a lovely movie-scene.", "data_idx": 4527, "number": 1, "label": "blues"} +{"file_name": "test_07486.png", "caption": "This song contains a tabla rhythm spread across both sides of the speakers. An acoustic guitar melody panned to the right side of the speakers. Far in the background you can hear clapping as part of the song. A male voice is singing in a higher register than a violin takes over playing a melody in a higher register with reverb and a little delay. This song may be playing in a lovely movie-scene.", "data_idx": 4527, "number": 2, "label": "blues"} +{"file_name": "test_07487.png", "caption": "This song contains a tabla rhythm spread across both sides of the speakers. An acoustic guitar melody panned to the right side of the speakers. Far in the background you can hear clapping as part of the song. A male voice is singing in a higher register than a violin takes over playing a melody in a higher register with reverb and a little delay. This song may be playing in a lovely movie-scene.", "data_idx": 4527, "number": 3, "label": "blues"} +{"file_name": "test_07488.png", "caption": "This song contains someone playing an accordion melody and chords along with an acoustic guitar strumming the same chords. Someone is playing an acoustic instrument while a male voice is singing in a higher key. This song may be playing in the countryside.", "data_idx": 4530, "number": 0, "label": "blues"} +{"file_name": "test_07489.png", "caption": "This song contains someone playing an accordion melody and chords along with an acoustic guitar strumming the same chords. Someone is playing an acoustic instrument while a male voice is singing in a higher key. This song may be playing in the countryside.", "data_idx": 4530, "number": 1, "label": "blues"} +{"file_name": "test_07490.png", "caption": "This song contains someone playing an accordion melody and chords along with an acoustic guitar strumming the same chords. Someone is playing an acoustic instrument while a male voice is singing in a higher key. This song may be playing in the countryside.", "data_idx": 4530, "number": 2, "label": "blues"} +{"file_name": "test_07491.png", "caption": "This song contains someone playing an accordion melody and chords along with an acoustic guitar strumming the same chords. Someone is playing an acoustic instrument while a male voice is singing in a higher key. This song may be playing in the countryside.", "data_idx": 4530, "number": 3, "label": "blues"} +{"file_name": "test_07492.png", "caption": "The low quality recording features passionate female harmonizing vocals, alongside wide staccato female vocals melodies singing over some claps. It sounds passionate and joyful.", "data_idx": 4531, "number": 0, "label": "disco"} +{"file_name": "test_07493.png", "caption": "The low quality recording features passionate female harmonizing vocals, alongside wide staccato female vocals melodies singing over some claps. It sounds passionate and joyful.", "data_idx": 4531, "number": 1, "label": "disco"} +{"file_name": "test_07494.png", "caption": "The low quality recording features passionate female harmonizing vocals, alongside wide staccato female vocals melodies singing over some claps. It sounds passionate and joyful.", "data_idx": 4531, "number": 2, "label": "disco"} +{"file_name": "test_07495.png", "caption": "The low quality recording features passionate female harmonizing vocals, alongside wide staccato female vocals melodies singing over some claps. It sounds passionate and joyful.", "data_idx": 4531, "number": 3, "label": "disco"} +{"file_name": "test_07496.png", "caption": "This song is a classical composition played on a harpsichord. This features the notes played on the higher register and the bass notes played on the same instrument. There are no other instruments in this song. This song has no voices. It is an instrumental song. This song can be played to honor royalty.", "data_idx": 4532, "number": 0, "label": "classical"} +{"file_name": "test_07497.png", "caption": "This song is a classical composition played on a harpsichord. This features the notes played on the higher register and the bass notes played on the same instrument. There are no other instruments in this song. This song has no voices. It is an instrumental song. This song can be played to honor royalty.", "data_idx": 4532, "number": 1, "label": "classical"} +{"file_name": "test_07498.png", "caption": "This song is a classical composition played on a harpsichord. This features the notes played on the higher register and the bass notes played on the same instrument. There are no other instruments in this song. This song has no voices. It is an instrumental song. This song can be played to honor royalty.", "data_idx": 4532, "number": 2, "label": "classical"} +{"file_name": "test_07499.png", "caption": "This song is a classical composition played on a harpsichord. This features the notes played on the higher register and the bass notes played on the same instrument. There are no other instruments in this song. This song has no voices. It is an instrumental song. This song can be played to honor royalty.", "data_idx": 4532, "number": 3, "label": "classical"} +{"file_name": "test_07500.png", "caption": "The low quality recording features a traditional pop song that consists of harmonized vocals singing over breathy flute melody, groovy bass, wooden percussion, strings melody and acoustic guitar chords. It sounds happy and fun - like a song you would hear in a TV commercial.", "data_idx": 4533, "number": 0, "label": "classical"} +{"file_name": "test_07501.png", "caption": "The low quality recording features a traditional pop song that consists of harmonized vocals singing over breathy flute melody, groovy bass, wooden percussion, strings melody and acoustic guitar chords. It sounds happy and fun - like a song you would hear in a TV commercial.", "data_idx": 4533, "number": 1, "label": "classical"} +{"file_name": "test_07502.png", "caption": "The low quality recording features a R&B song that consists of flat male vocals, alongside filtered background male vocals, singing over punchy kick and snare hits, shimmering cymbals, uptempo hi hats, distorted bass and repetitive synth lead melody. It sounds messy, as the frequencies are clashing with each other, but also energetic, emotional and addictive - like something you would quickly learn to sing along.", "data_idx": 4537, "number": 0, "label": "hiphop"} +{"file_name": "test_07503.png", "caption": "The low quality recording features a R&B song that consists of flat male vocals, alongside filtered background male vocals, singing over punchy kick and snare hits, shimmering cymbals, uptempo hi hats, distorted bass and repetitive synth lead melody. It sounds messy, as the frequencies are clashing with each other, but also energetic, emotional and addictive - like something you would quickly learn to sing along.", "data_idx": 4537, "number": 1, "label": "hiphop"} +{"file_name": "test_07504.png", "caption": "The low quality recording features a R&B song that consists of flat male vocals, alongside filtered background male vocals, singing over punchy kick and snare hits, shimmering cymbals, uptempo hi hats, distorted bass and repetitive synth lead melody. It sounds messy, as the frequencies are clashing with each other, but also energetic, emotional and addictive - like something you would quickly learn to sing along.", "data_idx": 4537, "number": 2, "label": "hiphop"} +{"file_name": "test_07505.png", "caption": "The low quality recording features a R&B song that consists of flat male vocals, alongside filtered background male vocals, singing over punchy kick and snare hits, shimmering cymbals, uptempo hi hats, distorted bass and repetitive synth lead melody. It sounds messy, as the frequencies are clashing with each other, but also energetic, emotional and addictive - like something you would quickly learn to sing along.", "data_idx": 4537, "number": 3, "label": "hiphop"} +{"file_name": "test_07506.png", "caption": "This is a Christian rock/CCM piece. There is a male vocalist singing melodically. The main melody is being played by the acoustic guitar. The electric guitar, the piano and the bass guitar are playing in the background. The rhythm consists of an easygoing acoustic drum beat. The atmosphere is religious. This piece could be used in the soundtrack of a gospel movie. It could also be playing in the background at a Christian religious event.", "data_idx": 4539, "number": 0, "label": "rock"} +{"file_name": "test_07507.png", "caption": "This is a Christian rock/CCM piece. There is a male vocalist singing melodically. The main melody is being played by the acoustic guitar. The electric guitar, the piano and the bass guitar are playing in the background. The rhythm consists of an easygoing acoustic drum beat. The atmosphere is religious. This piece could be used in the soundtrack of a gospel movie. It could also be playing in the background at a Christian religious event.", "data_idx": 4539, "number": 1, "label": "rock"} +{"file_name": "test_07508.png", "caption": "This is a Christian rock/CCM piece. There is a male vocalist singing melodically. The main melody is being played by the acoustic guitar. The electric guitar, the piano and the bass guitar are playing in the background. The rhythm consists of an easygoing acoustic drum beat. The atmosphere is religious. This piece could be used in the soundtrack of a gospel movie. It could also be playing in the background at a Christian religious event.", "data_idx": 4539, "number": 2, "label": "rock"} +{"file_name": "test_07509.png", "caption": "This is a Christian rock/CCM piece. There is a male vocalist singing melodically. The main melody is being played by the acoustic guitar. The electric guitar, the piano and the bass guitar are playing in the background. The rhythm consists of an easygoing acoustic drum beat. The atmosphere is religious. This piece could be used in the soundtrack of a gospel movie. It could also be playing in the background at a Christian religious event.", "data_idx": 4539, "number": 3, "label": "rock"} +{"file_name": "test_07510.png", "caption": "The low quality recording features a live performance of a classical song that consists of an arpeggiated harp melody and breathy flute melody. It sounds soulful, emotional and passionate.", "data_idx": 4544, "number": 0, "label": "classical"} +{"file_name": "test_07511.png", "caption": "The low quality recording features a live performance of a classical song that consists of an arpeggiated harp melody and breathy flute melody. It sounds soulful, emotional and passionate.", "data_idx": 4544, "number": 1, "label": "classical"} +{"file_name": "test_07512.png", "caption": "The low quality recording features a live performance of a classical song that consists of an arpeggiated harp melody and breathy flute melody. It sounds soulful, emotional and passionate.", "data_idx": 4544, "number": 2, "label": "classical"} +{"file_name": "test_07513.png", "caption": "The low quality recording features a live performance of a classical song that consists of an arpeggiated harp melody and breathy flute melody. It sounds soulful, emotional and passionate.", "data_idx": 4544, "number": 3, "label": "classical"} +{"file_name": "test_07514.png", "caption": "This audio contains acoustic drums playing something like a reggae groove along with an e-bass. A e-guitar strumming chords, piano, organ saxophones and trumpets are playing a short melody on the backbeat giving this song its reggae feeling. In-between the instruments are playing a short loud melody to break into the next part. The instruments are spread across the sides of the speakers. This audio may be playing in an urban coffee shop.", "data_idx": 4546, "number": 0, "label": "reggae"} +{"file_name": "test_07515.png", "caption": "This audio contains acoustic drums playing something like a reggae groove along with an e-bass. A e-guitar strumming chords, piano, organ saxophones and trumpets are playing a short melody on the backbeat giving this song its reggae feeling. In-between the instruments are playing a short loud melody to break into the next part. The instruments are spread across the sides of the speakers. This audio may be playing in an urban coffee shop.", "data_idx": 4546, "number": 1, "label": "reggae"} +{"file_name": "test_07516.png", "caption": "This audio contains acoustic drums playing something like a reggae groove along with an e-bass. A e-guitar strumming chords, piano, organ saxophones and trumpets are playing a short melody on the backbeat giving this song its reggae feeling. In-between the instruments are playing a short loud melody to break into the next part. The instruments are spread across the sides of the speakers. This audio may be playing in an urban coffee shop.", "data_idx": 4546, "number": 2, "label": "reggae"} +{"file_name": "test_07517.png", "caption": "This audio contains acoustic drums playing something like a reggae groove along with an e-bass. A e-guitar strumming chords, piano, organ saxophones and trumpets are playing a short melody on the backbeat giving this song its reggae feeling. In-between the instruments are playing a short loud melody to break into the next part. The instruments are spread across the sides of the speakers. This audio may be playing in an urban coffee shop.", "data_idx": 4546, "number": 3, "label": "reggae"} +{"file_name": "test_07518.png", "caption": "The low quality recording features a traditional song that consists of a breathy flute melody playing over wide acoustic guitar chords. It sounds addictive, joyful and passionate.", "data_idx": 4547, "number": 0, "label": "classical"} +{"file_name": "test_07519.png", "caption": "The low quality recording features a traditional song that consists of a breathy flute melody playing over wide acoustic guitar chords. It sounds addictive, joyful and passionate.", "data_idx": 4547, "number": 1, "label": "classical"} +{"file_name": "test_07520.png", "caption": "The low quality recording features a traditional song that consists of a breathy flute melody playing over wide acoustic guitar chords. It sounds addictive, joyful and passionate.", "data_idx": 4547, "number": 2, "label": "classical"} +{"file_name": "test_07521.png", "caption": "The low quality recording features a traditional song that consists of a breathy flute melody playing over wide acoustic guitar chords. It sounds addictive, joyful and passionate.", "data_idx": 4547, "number": 3, "label": "classical"} +{"file_name": "test_07522.png", "caption": "A bass trombone is playing a melody while violas and violins support with a long melody in the mid and higher register. This song may be playing live.", "data_idx": 4548, "number": 0, "label": "classical"} +{"file_name": "test_07523.png", "caption": "A bass trombone is playing a melody while violas and violins support with a long melody in the mid and higher register. This song may be playing live.", "data_idx": 4548, "number": 1, "label": "classical"} +{"file_name": "test_07524.png", "caption": "A bass trombone is playing a melody while violas and violins support with a long melody in the mid and higher register. This song may be playing live.", "data_idx": 4548, "number": 2, "label": "classical"} +{"file_name": "test_07525.png", "caption": "A bass trombone is playing a melody while violas and violins support with a long melody in the mid and higher register. This song may be playing live.", "data_idx": 4548, "number": 3, "label": "classical"} +{"file_name": "test_07526.png", "caption": "This is an acapella version of a swing jazz music piece that was performed with various layers of a vocal synth software called vocaloid. Three different harmonies can be heard from this vocal synth. There is a bass guitar playing a walking bass line in the background. The rhythmic background consists of finger clicks and a swing jazz beat performed with brushes on a snare drum. The atmosphere is cheerful but eerie. This piece could be used in the soundtrack of an arcade/analog type video game. It could also work well in the soundtrack of an anime.", "data_idx": 4549, "number": 0, "label": "reggae"} +{"file_name": "test_07527.png", "caption": "This is an acapella version of a swing jazz music piece that was performed with various layers of a vocal synth software called vocaloid. Three different harmonies can be heard from this vocal synth. There is a bass guitar playing a walking bass line in the background. The rhythmic background consists of finger clicks and a swing jazz beat performed with brushes on a snare drum. The atmosphere is cheerful but eerie. This piece could be used in the soundtrack of an arcade/analog type video game. It could also work well in the soundtrack of an anime.", "data_idx": 4549, "number": 1, "label": "reggae"} +{"file_name": "test_07528.png", "caption": "This is an acapella version of a swing jazz music piece that was performed with various layers of a vocal synth software called vocaloid. Three different harmonies can be heard from this vocal synth. There is a bass guitar playing a walking bass line in the background. The rhythmic background consists of finger clicks and a swing jazz beat performed with brushes on a snare drum. The atmosphere is cheerful but eerie. This piece could be used in the soundtrack of an arcade/analog type video game. It could also work well in the soundtrack of an anime.", "data_idx": 4549, "number": 2, "label": "reggae"} +{"file_name": "test_07529.png", "caption": "This is an acapella version of a swing jazz music piece that was performed with various layers of a vocal synth software called vocaloid. Three different harmonies can be heard from this vocal synth. There is a bass guitar playing a walking bass line in the background. The rhythmic background consists of finger clicks and a swing jazz beat performed with brushes on a snare drum. The atmosphere is cheerful but eerie. This piece could be used in the soundtrack of an arcade/analog type video game. It could also work well in the soundtrack of an anime.", "data_idx": 4549, "number": 3, "label": "reggae"} +{"file_name": "test_07530.png", "caption": "The cover of a rock song consists of soft male vocal singing over shimmering cymbals, punchy snare and kick hits, groovy bass guitar, addictive synth keys melody and electric guitar melody. It sounds energetic, but yet mellow and addictive - thanks to that cadence.", "data_idx": 4552, "number": 0, "label": "metal"} +{"file_name": "test_07531.png", "caption": "The cover of a rock song consists of soft male vocal singing over shimmering cymbals, punchy snare and kick hits, groovy bass guitar, addictive synth keys melody and electric guitar melody. It sounds energetic, but yet mellow and addictive - thanks to that cadence.", "data_idx": 4552, "number": 1, "label": "metal"} +{"file_name": "test_07532.png", "caption": "The cover of a rock song consists of soft male vocal singing over shimmering cymbals, punchy snare and kick hits, groovy bass guitar, addictive synth keys melody and electric guitar melody. It sounds energetic, but yet mellow and addictive - thanks to that cadence.", "data_idx": 4552, "number": 2, "label": "metal"} +{"file_name": "test_07533.png", "caption": "The cover of a rock song consists of soft male vocal singing over shimmering cymbals, punchy snare and kick hits, groovy bass guitar, addictive synth keys melody and electric guitar melody. It sounds energetic, but yet mellow and addictive - thanks to that cadence.", "data_idx": 4552, "number": 3, "label": "metal"} +{"file_name": "test_07534.png", "caption": "The low quality recording features a tutorial that consists of a french horn melody played in-between flat male vocal talking. The recording is noisy, mono and quiet.", "data_idx": 4553, "number": 0, "label": "hiphop"} +{"file_name": "test_07535.png", "caption": "The low quality recording features a tutorial that consists of a french horn melody played in-between flat male vocal talking. The recording is noisy, mono and quiet.", "data_idx": 4553, "number": 1, "label": "hiphop"} +{"file_name": "test_07536.png", "caption": "The low quality recording features a tutorial that consists of a french horn melody played in-between flat male vocal talking. The recording is noisy, mono and quiet.", "data_idx": 4553, "number": 2, "label": "hiphop"} +{"file_name": "test_07537.png", "caption": "The low quality recording features a tutorial that consists of a french horn melody played in-between flat male vocal talking. The recording is noisy, mono and quiet.", "data_idx": 4553, "number": 3, "label": "hiphop"} +{"file_name": "test_07538.png", "caption": "This is the recording of an acoustic drum solo. The drummer is playing a groovy beat with a lot of different fills. This piece could be sampled and looped to be used in the background of a hip-hop beat.", "data_idx": 4555, "number": 0, "label": "hiphop"} +{"file_name": "test_07539.png", "caption": "This is the recording of an acoustic drum solo. The drummer is playing a groovy beat with a lot of different fills. This piece could be sampled and looped to be used in the background of a hip-hop beat.", "data_idx": 4555, "number": 1, "label": "hiphop"} +{"file_name": "test_07540.png", "caption": "This is the recording of an acoustic drum solo. The drummer is playing a groovy beat with a lot of different fills. This piece could be sampled and looped to be used in the background of a hip-hop beat.", "data_idx": 4555, "number": 2, "label": "hiphop"} +{"file_name": "test_07541.png", "caption": "This is the recording of an acoustic drum solo. The drummer is playing a groovy beat with a lot of different fills. This piece could be sampled and looped to be used in the background of a hip-hop beat.", "data_idx": 4555, "number": 3, "label": "hiphop"} +{"file_name": "test_07542.png", "caption": "This bollywood song features a female voice singing the main melody. This is accompanied by a tabla and other percussion playing a staccato beat. A guitar strums chords in staccato following the percussion in the breaks. Another guitar plays arpeggiated chords. A piano plays in the background. The bass walks down playing a descending bassline. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 4556, "number": 0, "label": "pop"} +{"file_name": "test_07543.png", "caption": "This bollywood song features a female voice singing the main melody. This is accompanied by a tabla and other percussion playing a staccato beat. A guitar strums chords in staccato following the percussion in the breaks. Another guitar plays arpeggiated chords. A piano plays in the background. The bass walks down playing a descending bassline. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 4556, "number": 1, "label": "pop"} +{"file_name": "test_07544.png", "caption": "This bollywood song features a female voice singing the main melody. This is accompanied by a tabla and other percussion playing a staccato beat. A guitar strums chords in staccato following the percussion in the breaks. Another guitar plays arpeggiated chords. A piano plays in the background. The bass walks down playing a descending bassline. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 4556, "number": 2, "label": "pop"} +{"file_name": "test_07545.png", "caption": "This bollywood song features a female voice singing the main melody. This is accompanied by a tabla and other percussion playing a staccato beat. A guitar strums chords in staccato following the percussion in the breaks. Another guitar plays arpeggiated chords. A piano plays in the background. The bass walks down playing a descending bassline. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 4556, "number": 3, "label": "pop"} +{"file_name": "test_07546.png", "caption": "The song is an instrumental. The tempo is fast with a fast metal drumming rhythm, complete with cymbal crashes, distorted guitar lead, guitar playing rhythm, and percussive bass line. The song is a death metal song ending with a bad audio quality.", "data_idx": 4562, "number": 0, "label": "metal"} +{"file_name": "test_07547.png", "caption": "The song is an instrumental. The tempo is fast with a fast metal drumming rhythm, complete with cymbal crashes, distorted guitar lead, guitar playing rhythm, and percussive bass line. The song is a death metal song ending with a bad audio quality.", "data_idx": 4562, "number": 1, "label": "metal"} +{"file_name": "test_07548.png", "caption": "The song is an instrumental. The tempo is fast with a fast metal drumming rhythm, complete with cymbal crashes, distorted guitar lead, guitar playing rhythm, and percussive bass line. The song is a death metal song ending with a bad audio quality.", "data_idx": 4562, "number": 2, "label": "metal"} +{"file_name": "test_07549.png", "caption": "The song is an instrumental. The tempo is fast with a fast metal drumming rhythm, complete with cymbal crashes, distorted guitar lead, guitar playing rhythm, and percussive bass line. The song is a death metal song ending with a bad audio quality.", "data_idx": 4562, "number": 3, "label": "metal"} +{"file_name": "test_07550.png", "caption": "This is a street performance of a church hymn. It is being performed by a choir singing melodically in a devotional manner. The atmosphere is religious. The audio quality is a bit poor.", "data_idx": 4564, "number": 0, "label": "rock"} +{"file_name": "test_07551.png", "caption": "This is a street performance of a church hymn. It is being performed by a choir singing melodically in a devotional manner. The atmosphere is religious. The audio quality is a bit poor.", "data_idx": 4564, "number": 1, "label": "rock"} +{"file_name": "test_07552.png", "caption": "The low quality recording features a didgeridoo melody. It sounds boomy and the recording is noisy and in mono.", "data_idx": 4568, "number": 0, "label": "jazz"} +{"file_name": "test_07553.png", "caption": "The low quality recording features a didgeridoo melody. It sounds boomy and the recording is noisy and in mono.", "data_idx": 4568, "number": 1, "label": "jazz"} +{"file_name": "test_07554.png", "caption": "The song is an instrumental. The tempo is medium with a tabla playing percussion, Veena and other stringed instruments playing harmony. The audio quality of the video is very poor. The song is a classical Carnatic music tune.", "data_idx": 4571, "number": 0, "label": "jazz"} +{"file_name": "test_07555.png", "caption": "The song is an instrumental. The tempo is medium with a tabla playing percussion, Veena and other stringed instruments playing harmony. The audio quality of the video is very poor. The song is a classical Carnatic music tune.", "data_idx": 4571, "number": 1, "label": "jazz"} +{"file_name": "test_07556.png", "caption": "The song is an instrumental. The tempo is medium with a tabla playing percussion, Veena and other stringed instruments playing harmony. The audio quality of the video is very poor. The song is a classical Carnatic music tune.", "data_idx": 4571, "number": 2, "label": "jazz"} +{"file_name": "test_07557.png", "caption": "The song is an instrumental. The tempo is medium with a tabla playing percussion, Veena and other stringed instruments playing harmony. The audio quality of the video is very poor. The song is a classical Carnatic music tune.", "data_idx": 4571, "number": 3, "label": "jazz"} +{"file_name": "test_07558.png", "caption": "This instrumental song features a flute playing a high pitched melody. The melody starts off with one high pitched staccato note. After a brief pause, the flute plays two ascending notes in which the second note is sustained. Then a third higher note is played followed by a descending run of four more notes and ending on one higher note. There are no other instruments in this song. There is no percussion in this song. This song has a relaxing mood. This song can be played at a meditation center.", "data_idx": 4572, "number": 0, "label": "hiphop"} +{"file_name": "test_07559.png", "caption": "This instrumental song features a flute playing a high pitched melody. The melody starts off with one high pitched staccato note. After a brief pause, the flute plays two ascending notes in which the second note is sustained. Then a third higher note is played followed by a descending run of four more notes and ending on one higher note. There are no other instruments in this song. There is no percussion in this song. This song has a relaxing mood. This song can be played at a meditation center.", "data_idx": 4572, "number": 1, "label": "hiphop"} +{"file_name": "test_07560.png", "caption": "This instrumental song features a flute playing a high pitched melody. The melody starts off with one high pitched staccato note. After a brief pause, the flute plays two ascending notes in which the second note is sustained. Then a third higher note is played followed by a descending run of four more notes and ending on one higher note. There are no other instruments in this song. There is no percussion in this song. This song has a relaxing mood. This song can be played at a meditation center.", "data_idx": 4572, "number": 2, "label": "hiphop"} +{"file_name": "test_07561.png", "caption": "This instrumental song features a flute playing a high pitched melody. The melody starts off with one high pitched staccato note. After a brief pause, the flute plays two ascending notes in which the second note is sustained. Then a third higher note is played followed by a descending run of four more notes and ending on one higher note. There are no other instruments in this song. There is no percussion in this song. This song has a relaxing mood. This song can be played at a meditation center.", "data_idx": 4572, "number": 3, "label": "hiphop"} +{"file_name": "test_07562.png", "caption": "A male vocalist sings this Jazz melody. The tempo is medium with a jazz style piano and drumming, groovy bass line, tambourine beats and vocal backup. The harmony is syncopated and complex. It is ambient, atmospheric, punchy, emphatic and enjoyable.", "data_idx": 4573, "number": 0, "label": "hiphop"} +{"file_name": "test_07563.png", "caption": "A male vocalist sings this Jazz melody. The tempo is medium with a jazz style piano and drumming, groovy bass line, tambourine beats and vocal backup. The harmony is syncopated and complex. It is ambient, atmospheric, punchy, emphatic and enjoyable.", "data_idx": 4573, "number": 1, "label": "hiphop"} +{"file_name": "test_07564.png", "caption": "A male vocalist sings this Jazz melody. The tempo is medium with a jazz style piano and drumming, groovy bass line, tambourine beats and vocal backup. The harmony is syncopated and complex. It is ambient, atmospheric, punchy, emphatic and enjoyable.", "data_idx": 4573, "number": 2, "label": "hiphop"} +{"file_name": "test_07565.png", "caption": "A male vocalist sings this Jazz melody. The tempo is medium with a jazz style piano and drumming, groovy bass line, tambourine beats and vocal backup. The harmony is syncopated and complex. It is ambient, atmospheric, punchy, emphatic and enjoyable.", "data_idx": 4573, "number": 3, "label": "hiphop"} +{"file_name": "test_07566.png", "caption": "This music is instrumental . The tempo is medium fast with the sound of a conch shell or shell trumpet playing a victorious drone. The music is loud, clear, deep and is often used in religious and sacred rituals in Hinduism and Buddhism. There are sounds of phone dealing and ringing. This music is superimposed on the sound of male talking and children cheering in unison.", "data_idx": 4574, "number": 0, "label": "reggae"} +{"file_name": "test_07567.png", "caption": "This music is instrumental . The tempo is medium fast with the sound of a conch shell or shell trumpet playing a victorious drone. The music is loud, clear, deep and is often used in religious and sacred rituals in Hinduism and Buddhism. There are sounds of phone dealing and ringing. This music is superimposed on the sound of male talking and children cheering in unison.", "data_idx": 4574, "number": 1, "label": "reggae"} +{"file_name": "test_07568.png", "caption": "This is a Hindi film music piece. Initially, there is a female voice crying. Afterwards, an orchestra made up of a flute, a string element, a sitar and a piano starts playing an emotional tune. The atmosphere of the piece is heart-touching. It could be used in the soundtracks of Bollywood movies during heartbreaking scenes.", "data_idx": 4577, "number": 0, "label": "hiphop"} +{"file_name": "test_07569.png", "caption": "This is a Hindi film music piece. Initially, there is a female voice crying. Afterwards, an orchestra made up of a flute, a string element, a sitar and a piano starts playing an emotional tune. The atmosphere of the piece is heart-touching. It could be used in the soundtracks of Bollywood movies during heartbreaking scenes.", "data_idx": 4577, "number": 1, "label": "hiphop"} +{"file_name": "test_07570.png", "caption": "The Hip Hip song features an autotune male vocal, alongside harmonizing background vocals, singing over boomy 808 bass, snappy rimshots, synth pad chords, synth organ keys chords and tinny hi hats. It sounds groovy and addictive.", "data_idx": 4578, "number": 0, "label": "hiphop"} +{"file_name": "test_07571.png", "caption": "The Hip Hip song features an autotune male vocal, alongside harmonizing background vocals, singing over boomy 808 bass, snappy rimshots, synth pad chords, synth organ keys chords and tinny hi hats. It sounds groovy and addictive.", "data_idx": 4578, "number": 1, "label": "hiphop"} +{"file_name": "test_07572.png", "caption": "The Hip Hip song features an autotune male vocal, alongside harmonizing background vocals, singing over boomy 808 bass, snappy rimshots, synth pad chords, synth organ keys chords and tinny hi hats. It sounds groovy and addictive.", "data_idx": 4578, "number": 2, "label": "hiphop"} +{"file_name": "test_07573.png", "caption": "The Hip Hip song features an autotune male vocal, alongside harmonizing background vocals, singing over boomy 808 bass, snappy rimshots, synth pad chords, synth organ keys chords and tinny hi hats. It sounds groovy and addictive.", "data_idx": 4578, "number": 3, "label": "hiphop"} +{"file_name": "test_07574.png", "caption": "This song features an electric guitar played using a clean tone. Octaves are played in this clip. The first note is a slide up two frets followed by an ascending lick using octaves throughout the song. There are no other instruments in this song. A buzz is heard probably from the hi-gain amp that is being used. There is no voice in this song. This song can be used in a guitar instruction video.", "data_idx": 4579, "number": 0, "label": "jazz"} +{"file_name": "test_07575.png", "caption": "This song features an electric guitar played using a clean tone. Octaves are played in this clip. The first note is a slide up two frets followed by an ascending lick using octaves throughout the song. There are no other instruments in this song. A buzz is heard probably from the hi-gain amp that is being used. There is no voice in this song. This song can be used in a guitar instruction video.", "data_idx": 4579, "number": 1, "label": "jazz"} +{"file_name": "test_07576.png", "caption": "This song features an electric guitar played using a clean tone. Octaves are played in this clip. The first note is a slide up two frets followed by an ascending lick using octaves throughout the song. There are no other instruments in this song. A buzz is heard probably from the hi-gain amp that is being used. There is no voice in this song. This song can be used in a guitar instruction video.", "data_idx": 4579, "number": 2, "label": "jazz"} +{"file_name": "test_07577.png", "caption": "This song features an electric guitar played using a clean tone. Octaves are played in this clip. The first note is a slide up two frets followed by an ascending lick using octaves throughout the song. There are no other instruments in this song. A buzz is heard probably from the hi-gain amp that is being used. There is no voice in this song. This song can be used in a guitar instruction video.", "data_idx": 4579, "number": 3, "label": "jazz"} +{"file_name": "test_07578.png", "caption": "This is a tutorial involving the french horn. We have an American male speaking, giving instruction related to the french horn instrument. At a point in the clip, the musician plays one note on the horn.", "data_idx": 4581, "number": 0, "label": "hiphop"} +{"file_name": "test_07579.png", "caption": "This is a tutorial involving the french horn. We have an American male speaking, giving instruction related to the french horn instrument. At a point in the clip, the musician plays one note on the horn.", "data_idx": 4581, "number": 1, "label": "hiphop"} +{"file_name": "test_07580.png", "caption": "This is a tutorial involving the french horn. We have an American male speaking, giving instruction related to the french horn instrument. At a point in the clip, the musician plays one note on the horn.", "data_idx": 4581, "number": 2, "label": "hiphop"} +{"file_name": "test_07581.png", "caption": "This is a tutorial involving the french horn. We have an American male speaking, giving instruction related to the french horn instrument. At a point in the clip, the musician plays one note on the horn.", "data_idx": 4581, "number": 3, "label": "hiphop"} +{"file_name": "test_07582.png", "caption": "The song is an instrumental. The tempo is medium with a maestro percussionist performing a solo drum solo in front of a live audience. The song is exciting and gripping. The audio quality is poor.", "data_idx": 4583, "number": 0, "label": "rock"} +{"file_name": "test_07583.png", "caption": "The song is an instrumental. The tempo is medium with a maestro percussionist performing a solo drum solo in front of a live audience. The song is exciting and gripping. The audio quality is poor.", "data_idx": 4583, "number": 1, "label": "rock"} +{"file_name": "test_07584.png", "caption": "The song is an instrumental. The tempo is medium with a maestro percussionist performing a solo drum solo in front of a live audience. The song is exciting and gripping. The audio quality is poor.", "data_idx": 4583, "number": 2, "label": "rock"} +{"file_name": "test_07585.png", "caption": "The song is an instrumental. The tempo is medium with a maestro percussionist performing a solo drum solo in front of a live audience. The song is exciting and gripping. The audio quality is poor.", "data_idx": 4583, "number": 3, "label": "rock"} +{"file_name": "test_07586.png", "caption": "This is a jam performed on a homemade theremin instrument. There are irritatingly high-pitched sounds coming from the theremin. The atmosphere is creepy and unsettling. The sounds in this recording could be sampled for use in beat-making.", "data_idx": 4584, "number": 0, "label": "blues"} +{"file_name": "test_07587.png", "caption": "This is a jam performed on a homemade theremin instrument. There are irritatingly high-pitched sounds coming from the theremin. The atmosphere is creepy and unsettling. The sounds in this recording could be sampled for use in beat-making.", "data_idx": 4584, "number": 1, "label": "blues"} +{"file_name": "test_07588.png", "caption": "This is a jam performed on a homemade theremin instrument. There are irritatingly high-pitched sounds coming from the theremin. The atmosphere is creepy and unsettling. The sounds in this recording could be sampled for use in beat-making.", "data_idx": 4584, "number": 2, "label": "blues"} +{"file_name": "test_07589.png", "caption": "This is a jam performed on a homemade theremin instrument. There are irritatingly high-pitched sounds coming from the theremin. The atmosphere is creepy and unsettling. The sounds in this recording could be sampled for use in beat-making.", "data_idx": 4584, "number": 3, "label": "blues"} +{"file_name": "test_07590.png", "caption": "This music is instrumental. The tempo is fast with a groovy drumming rhythm with bass drums, snares, cymbals and a Cowbell. The rhythm is upbeat, catchy, punchy and buoyant. This music is a Drumming lesson/ tutorial.", "data_idx": 4587, "number": 0, "label": "hiphop"} +{"file_name": "test_07591.png", "caption": "This music is instrumental. The tempo is fast with a groovy drumming rhythm with bass drums, snares, cymbals and a Cowbell. The rhythm is upbeat, catchy, punchy and buoyant. This music is a Drumming lesson/ tutorial.", "data_idx": 4587, "number": 1, "label": "hiphop"} +{"file_name": "test_07592.png", "caption": "This music is instrumental. The tempo is fast with a groovy drumming rhythm with bass drums, snares, cymbals and a Cowbell. The rhythm is upbeat, catchy, punchy and buoyant. This music is a Drumming lesson/ tutorial.", "data_idx": 4587, "number": 2, "label": "hiphop"} +{"file_name": "test_07593.png", "caption": "This music is instrumental. The tempo is fast with a groovy drumming rhythm with bass drums, snares, cymbals and a Cowbell. The rhythm is upbeat, catchy, punchy and buoyant. This music is a Drumming lesson/ tutorial.", "data_idx": 4587, "number": 3, "label": "hiphop"} +{"file_name": "test_07594.png", "caption": "This song contains digital drums with percussive elements such as a cowbell and synth sounds used as short percussion in a higher pitch and also a high pitched voice sample. A male voice is rapping in a higher pitch. This song may be playing while driving in your car.", "data_idx": 4588, "number": 0, "label": "reggae"} +{"file_name": "test_07595.png", "caption": "This song contains digital drums with percussive elements such as a cowbell and synth sounds used as short percussion in a higher pitch and also a high pitched voice sample. A male voice is rapping in a higher pitch. This song may be playing while driving in your car.", "data_idx": 4588, "number": 1, "label": "reggae"} +{"file_name": "test_07596.png", "caption": "This song contains digital drums with percussive elements such as a cowbell and synth sounds used as short percussion in a higher pitch and also a high pitched voice sample. A male voice is rapping in a higher pitch. This song may be playing while driving in your car.", "data_idx": 4588, "number": 2, "label": "reggae"} +{"file_name": "test_07597.png", "caption": "This song contains digital drums with percussive elements such as a cowbell and synth sounds used as short percussion in a higher pitch and also a high pitched voice sample. A male voice is rapping in a higher pitch. This song may be playing while driving in your car.", "data_idx": 4588, "number": 3, "label": "reggae"} +{"file_name": "test_07598.png", "caption": "The low quality recording features a rock song that consists of a melancholic male vocal singing over punchy kick and snare hits, shimmering ride cymbals, groovy bass guitar and acoustic rhythm guitar. It sounds emotional and heartfelt.", "data_idx": 4590, "number": 0, "label": "blues"} +{"file_name": "test_07599.png", "caption": "The low quality recording features a rock song that consists of a melancholic male vocal singing over punchy kick and snare hits, shimmering ride cymbals, groovy bass guitar and acoustic rhythm guitar. It sounds emotional and heartfelt.", "data_idx": 4590, "number": 1, "label": "blues"} +{"file_name": "test_07600.png", "caption": "The low quality recording features a rock song that consists of a melancholic male vocal singing over punchy kick and snare hits, shimmering ride cymbals, groovy bass guitar and acoustic rhythm guitar. It sounds emotional and heartfelt.", "data_idx": 4590, "number": 2, "label": "blues"} +{"file_name": "test_07601.png", "caption": "The low quality recording features a rock song that consists of a melancholic male vocal singing over punchy kick and snare hits, shimmering ride cymbals, groovy bass guitar and acoustic rhythm guitar. It sounds emotional and heartfelt.", "data_idx": 4590, "number": 3, "label": "blues"} +{"file_name": "test_07602.png", "caption": "The low quality recording features a techno song that consists of DJ scratching sound effects, groovy bass, buzzy synth leads, punchy \"4 on the floor\" kick pattern, shimmering hi hats and some claps. It sounds energetic, aggressive and weird - due to those synth lead \"screams\".", "data_idx": 4591, "number": 0, "label": "reggae"} +{"file_name": "test_07603.png", "caption": "The low quality recording features a techno song that consists of DJ scratching sound effects, groovy bass, buzzy synth leads, punchy \"4 on the floor\" kick pattern, shimmering hi hats and some claps. It sounds energetic, aggressive and weird - due to those synth lead \"screams\".", "data_idx": 4591, "number": 1, "label": "reggae"} +{"file_name": "test_07604.png", "caption": "The low quality recording features a techno song that consists of DJ scratching sound effects, groovy bass, buzzy synth leads, punchy \"4 on the floor\" kick pattern, shimmering hi hats and some claps. It sounds energetic, aggressive and weird - due to those synth lead \"screams\".", "data_idx": 4591, "number": 2, "label": "reggae"} +{"file_name": "test_07605.png", "caption": "The low quality recording features a techno song that consists of DJ scratching sound effects, groovy bass, buzzy synth leads, punchy \"4 on the floor\" kick pattern, shimmering hi hats and some claps. It sounds energetic, aggressive and weird - due to those synth lead \"screams\".", "data_idx": 4591, "number": 3, "label": "reggae"} +{"file_name": "test_07606.png", "caption": "This song contains a female voice singing in the mid to higher register sounding sensual and sad. She is singing along to a backing track containing acoustic drums playing along with an e-bass. Castanets typical for latin music, an acoustic guitar, plucked and long notes being played by strings giving the song a feeling of flamenco music. In the background you can hear the crowd giving applause. This song may be playing as a live concert.", "data_idx": 4592, "number": 0, "label": "rock"} +{"file_name": "test_07607.png", "caption": "This song contains a female voice singing in the mid to higher register sounding sensual and sad. She is singing along to a backing track containing acoustic drums playing along with an e-bass. Castanets typical for latin music, an acoustic guitar, plucked and long notes being played by strings giving the song a feeling of flamenco music. In the background you can hear the crowd giving applause. This song may be playing as a live concert.", "data_idx": 4592, "number": 1, "label": "rock"} diff --git a/data/test/metadata_0018.jsonl b/data/test/metadata_0018.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9f47ddda31f3c721131c0485b23b182161b65afc --- /dev/null +++ b/data/test/metadata_0018.jsonl @@ -0,0 +1,396 @@ +{"file_name": "test_07608.png", "caption": "The song is an instrumental. The song is medium tempo with an accordion playing in an accompaniment style with both medley and harmony and no other instrumentation. The music is romantic and melancholic. The audio quality is poor.", "data_idx": 4602, "number": 0, "label": "classical"} +{"file_name": "test_07609.png", "caption": "The song is an instrumental. The song is medium tempo with an accordion playing in an accompaniment style with both medley and harmony and no other instrumentation. The music is romantic and melancholic. The audio quality is poor.", "data_idx": 4602, "number": 1, "label": "classical"} +{"file_name": "test_07610.png", "caption": "This audio contains a male voice singing a harmony with another voice both in the mid to higher register. Then a e-piano comes in playing a minor chord. This song may be playing live during a concert.", "data_idx": 4603, "number": 0, "label": "rock"} +{"file_name": "test_07611.png", "caption": "This audio contains a male voice singing a harmony with another voice both in the mid to higher register. Then a e-piano comes in playing a minor chord. This song may be playing live during a concert.", "data_idx": 4603, "number": 1, "label": "rock"} +{"file_name": "test_07612.png", "caption": "This audio contains a male voice singing a harmony with another voice both in the mid to higher register. Then a e-piano comes in playing a minor chord. This song may be playing live during a concert.", "data_idx": 4603, "number": 2, "label": "rock"} +{"file_name": "test_07613.png", "caption": "This audio contains a male voice singing a harmony with another voice both in the mid to higher register. Then a e-piano comes in playing a minor chord. This song may be playing live during a concert.", "data_idx": 4603, "number": 3, "label": "rock"} +{"file_name": "test_07614.png", "caption": "This is a live recording which features strums of a single chord on a ukulele. At points in the clip, there is the voice of someone who is speaking. The recording is of a low-quality, and thus the audio has a slight fuzzy sound the whole way through.", "data_idx": 4606, "number": 0, "label": "classical"} +{"file_name": "test_07615.png", "caption": "This is a live recording which features strums of a single chord on a ukulele. At points in the clip, there is the voice of someone who is speaking. The recording is of a low-quality, and thus the audio has a slight fuzzy sound the whole way through.", "data_idx": 4606, "number": 1, "label": "classical"} +{"file_name": "test_07616.png", "caption": "The low quality recording features a live performance of a pop song that consists of harmonizing male vocals singing over punchy kick and snare, shimmering hi hats, groovy bass, brass melody and electric guitar melody. There are some crowd clapping and cheering sounds in the background. It sounds energetic, exciting and groovy.", "data_idx": 4607, "number": 0, "label": "disco"} +{"file_name": "test_07617.png", "caption": "The low quality recording features a live performance of a pop song that consists of harmonizing male vocals singing over punchy kick and snare, shimmering hi hats, groovy bass, brass melody and electric guitar melody. There are some crowd clapping and cheering sounds in the background. It sounds energetic, exciting and groovy.", "data_idx": 4607, "number": 1, "label": "disco"} +{"file_name": "test_07618.png", "caption": "The low quality recording features a live performance of a pop song that consists of harmonizing male vocals singing over punchy kick and snare, shimmering hi hats, groovy bass, brass melody and electric guitar melody. There are some crowd clapping and cheering sounds in the background. It sounds energetic, exciting and groovy.", "data_idx": 4607, "number": 2, "label": "disco"} +{"file_name": "test_07619.png", "caption": "The low quality recording features a live performance of a pop song that consists of harmonizing male vocals singing over punchy kick and snare, shimmering hi hats, groovy bass, brass melody and electric guitar melody. There are some crowd clapping and cheering sounds in the background. It sounds energetic, exciting and groovy.", "data_idx": 4607, "number": 3, "label": "disco"} +{"file_name": "test_07620.png", "caption": "The Jazz song features reverberant saxophones and trumpet melodies playing over groovy double bass, groovy piano melody, shimmering cymbals and soft kick hits. It sounds uptempo, groovy and passionate, like something you would hear in traditional jazz bars.", "data_idx": 4608, "number": 0, "label": "jazz"} +{"file_name": "test_07621.png", "caption": "The Jazz song features reverberant saxophones and trumpet melodies playing over groovy double bass, groovy piano melody, shimmering cymbals and soft kick hits. It sounds uptempo, groovy and passionate, like something you would hear in traditional jazz bars.", "data_idx": 4608, "number": 1, "label": "jazz"} +{"file_name": "test_07622.png", "caption": "The Jazz song features reverberant saxophones and trumpet melodies playing over groovy double bass, groovy piano melody, shimmering cymbals and soft kick hits. It sounds uptempo, groovy and passionate, like something you would hear in traditional jazz bars.", "data_idx": 4608, "number": 2, "label": "jazz"} +{"file_name": "test_07623.png", "caption": "The Jazz song features reverberant saxophones and trumpet melodies playing over groovy double bass, groovy piano melody, shimmering cymbals and soft kick hits. It sounds uptempo, groovy and passionate, like something you would hear in traditional jazz bars.", "data_idx": 4608, "number": 3, "label": "jazz"} +{"file_name": "test_07624.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment, sonic effects, various percussion hits, strong bass line and synth pad section. The song is eerie and full of tension. The song is tv show theme and has poor audio quality.", "data_idx": 4609, "number": 0, "label": "hiphop"} +{"file_name": "test_07625.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment, sonic effects, various percussion hits, strong bass line and synth pad section. The song is eerie and full of tension. The song is tv show theme and has poor audio quality.", "data_idx": 4609, "number": 1, "label": "hiphop"} +{"file_name": "test_07626.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment, sonic effects, various percussion hits, strong bass line and synth pad section. The song is eerie and full of tension. The song is tv show theme and has poor audio quality.", "data_idx": 4609, "number": 2, "label": "hiphop"} +{"file_name": "test_07627.png", "caption": "The song is an instrumental. The tempo is medium with a keyboard accompaniment, sonic effects, various percussion hits, strong bass line and synth pad section. The song is eerie and full of tension. The song is tv show theme and has poor audio quality.", "data_idx": 4609, "number": 3, "label": "hiphop"} +{"file_name": "test_07628.png", "caption": "This song features two female voices. One of the voices sings an 'ooh' throughout the song. The second voice sings an 'ah' in places. The first time the 'ah' is sung, it is in a dissonant harmony. The second one is in the scale. This is accompanied by a guitar playing arpeggiated chords. There are no lyrics in this song, but only lyrics. There is no percussion in this song. This song can be played in a movie scene where a person is confused after having been forced to make a tough decision.", "data_idx": 4611, "number": 0, "label": "classical"} +{"file_name": "test_07629.png", "caption": "This song features two female voices. One of the voices sings an 'ooh' throughout the song. The second voice sings an 'ah' in places. The first time the 'ah' is sung, it is in a dissonant harmony. The second one is in the scale. This is accompanied by a guitar playing arpeggiated chords. There are no lyrics in this song, but only lyrics. There is no percussion in this song. This song can be played in a movie scene where a person is confused after having been forced to make a tough decision.", "data_idx": 4611, "number": 1, "label": "classical"} +{"file_name": "test_07630.png", "caption": "This song features two female voices. One of the voices sings an 'ooh' throughout the song. The second voice sings an 'ah' in places. The first time the 'ah' is sung, it is in a dissonant harmony. The second one is in the scale. This is accompanied by a guitar playing arpeggiated chords. There are no lyrics in this song, but only lyrics. There is no percussion in this song. This song can be played in a movie scene where a person is confused after having been forced to make a tough decision.", "data_idx": 4611, "number": 2, "label": "classical"} +{"file_name": "test_07631.png", "caption": "This song features two female voices. One of the voices sings an 'ooh' throughout the song. The second voice sings an 'ah' in places. The first time the 'ah' is sung, it is in a dissonant harmony. The second one is in the scale. This is accompanied by a guitar playing arpeggiated chords. There are no lyrics in this song, but only lyrics. There is no percussion in this song. This song can be played in a movie scene where a person is confused after having been forced to make a tough decision.", "data_idx": 4611, "number": 3, "label": "classical"} +{"file_name": "test_07632.png", "caption": "This song contains an acoustic drum playing along to a e-guitar strumming chords before breaking into a more silent part with the e-bass repeating the same note. The e-guitar is playing a simple short melody with delay. Then a deeper male voice is singing and the crowd starts cheering. This recording is in bad audio-quality. This song may be playing at a live concert.", "data_idx": 4616, "number": 0, "label": "metal"} +{"file_name": "test_07633.png", "caption": "This song contains an acoustic drum playing along to a e-guitar strumming chords before breaking into a more silent part with the e-bass repeating the same note. The e-guitar is playing a simple short melody with delay. Then a deeper male voice is singing and the crowd starts cheering. This recording is in bad audio-quality. This song may be playing at a live concert.", "data_idx": 4616, "number": 1, "label": "metal"} +{"file_name": "test_07634.png", "caption": "This song contains an acoustic drum playing along to a e-guitar strumming chords before breaking into a more silent part with the e-bass repeating the same note. The e-guitar is playing a simple short melody with delay. Then a deeper male voice is singing and the crowd starts cheering. This recording is in bad audio-quality. This song may be playing at a live concert.", "data_idx": 4616, "number": 2, "label": "metal"} +{"file_name": "test_07635.png", "caption": "This song contains an acoustic drum playing along to a e-guitar strumming chords before breaking into a more silent part with the e-bass repeating the same note. The e-guitar is playing a simple short melody with delay. Then a deeper male voice is singing and the crowd starts cheering. This recording is in bad audio-quality. This song may be playing at a live concert.", "data_idx": 4616, "number": 3, "label": "metal"} +{"file_name": "test_07636.png", "caption": "This clip features a synchronised playing of some traditional South Asian horned instruments. The horns are played in unison, at a high pitch, and create the sensation of a royal and momentous occasion.", "data_idx": 4617, "number": 0, "label": "hiphop"} +{"file_name": "test_07637.png", "caption": "This clip features a synchronised playing of some traditional South Asian horned instruments. The horns are played in unison, at a high pitch, and create the sensation of a royal and momentous occasion.", "data_idx": 4617, "number": 1, "label": "hiphop"} +{"file_name": "test_07638.png", "caption": "This audio contains someone playing a classical piece on a harpsichord. This song may be playing live at a concert.", "data_idx": 4618, "number": 0, "label": "classical"} +{"file_name": "test_07639.png", "caption": "This audio contains someone playing a classical piece on a harpsichord. This song may be playing live at a concert.", "data_idx": 4618, "number": 1, "label": "classical"} +{"file_name": "test_07640.png", "caption": "This audio contains someone playing a classical piece on a harpsichord. This song may be playing live at a concert.", "data_idx": 4618, "number": 2, "label": "classical"} +{"file_name": "test_07641.png", "caption": "This audio contains someone playing a classical piece on a harpsichord. This song may be playing live at a concert.", "data_idx": 4618, "number": 3, "label": "classical"} +{"file_name": "test_07642.png", "caption": "This is a comedy music piece in the style of a Christmas song. It is an instrumental piece. There is a rhythmic background that is composed of percussive elements. The sleigh bells can be heard very distinctively. The melody is played by a lute in a slightly out-of-sync manner while a tuba is playing the bass line. The piece has a tongue-in-cheek feel to it. This piece could fit well in the soundtrack of a Christmas-themed comedy movie.", "data_idx": 4619, "number": 0, "label": "rock"} +{"file_name": "test_07643.png", "caption": "This is a comedy music piece in the style of a Christmas song. It is an instrumental piece. There is a rhythmic background that is composed of percussive elements. The sleigh bells can be heard very distinctively. The melody is played by a lute in a slightly out-of-sync manner while a tuba is playing the bass line. The piece has a tongue-in-cheek feel to it. This piece could fit well in the soundtrack of a Christmas-themed comedy movie.", "data_idx": 4619, "number": 1, "label": "rock"} +{"file_name": "test_07644.png", "caption": "This is a comedy music piece in the style of a Christmas song. It is an instrumental piece. There is a rhythmic background that is composed of percussive elements. The sleigh bells can be heard very distinctively. The melody is played by a lute in a slightly out-of-sync manner while a tuba is playing the bass line. The piece has a tongue-in-cheek feel to it. This piece could fit well in the soundtrack of a Christmas-themed comedy movie.", "data_idx": 4619, "number": 2, "label": "rock"} +{"file_name": "test_07645.png", "caption": "This is a comedy music piece in the style of a Christmas song. It is an instrumental piece. There is a rhythmic background that is composed of percussive elements. The sleigh bells can be heard very distinctively. The melody is played by a lute in a slightly out-of-sync manner while a tuba is playing the bass line. The piece has a tongue-in-cheek feel to it. This piece could fit well in the soundtrack of a Christmas-themed comedy movie.", "data_idx": 4619, "number": 3, "label": "rock"} +{"file_name": "test_07646.png", "caption": "This audio contains a lot of different percussive instruments spread to both sides of the speakers. In the background you can hear a laughing sample in a high pitch. A male voice is singing in a higher pitch than a female voice takes over singing. A doorbell is ringing. An acoustic guitar is strumming chords. This song may be playing at an open air festival where everybody can dance along.", "data_idx": 4620, "number": 0, "label": "disco"} +{"file_name": "test_07647.png", "caption": "This audio contains a lot of different percussive instruments spread to both sides of the speakers. In the background you can hear a laughing sample in a high pitch. A male voice is singing in a higher pitch than a female voice takes over singing. A doorbell is ringing. An acoustic guitar is strumming chords. This song may be playing at an open air festival where everybody can dance along.", "data_idx": 4620, "number": 1, "label": "disco"} +{"file_name": "test_07648.png", "caption": "This audio contains a lot of different percussive instruments spread to both sides of the speakers. In the background you can hear a laughing sample in a high pitch. A male voice is singing in a higher pitch than a female voice takes over singing. A doorbell is ringing. An acoustic guitar is strumming chords. This song may be playing at an open air festival where everybody can dance along.", "data_idx": 4620, "number": 2, "label": "disco"} +{"file_name": "test_07649.png", "caption": "This audio contains a lot of different percussive instruments spread to both sides of the speakers. In the background you can hear a laughing sample in a high pitch. A male voice is singing in a higher pitch than a female voice takes over singing. A doorbell is ringing. An acoustic guitar is strumming chords. This song may be playing at an open air festival where everybody can dance along.", "data_idx": 4620, "number": 3, "label": "disco"} +{"file_name": "test_07650.png", "caption": "This song contains a female acapella choir singing together a melody in minor along with a piano. A e-guitar panned to the ride side of the speakers is providing a supporting melody. This song may be playing as a live performance in a theater.", "data_idx": 4621, "number": 0, "label": "rock"} +{"file_name": "test_07651.png", "caption": "This song contains a female acapella choir singing together a melody in minor along with a piano. A e-guitar panned to the ride side of the speakers is providing a supporting melody. This song may be playing as a live performance in a theater.", "data_idx": 4621, "number": 1, "label": "rock"} +{"file_name": "test_07652.png", "caption": "This song contains a female acapella choir singing together a melody in minor along with a piano. A e-guitar panned to the ride side of the speakers is providing a supporting melody. This song may be playing as a live performance in a theater.", "data_idx": 4621, "number": 2, "label": "rock"} +{"file_name": "test_07653.png", "caption": "This song contains a female acapella choir singing together a melody in minor along with a piano. A e-guitar panned to the ride side of the speakers is providing a supporting melody. This song may be playing as a live performance in a theater.", "data_idx": 4621, "number": 3, "label": "rock"} +{"file_name": "test_07654.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a string section harmony and a strong bass line. The audio quality is poor. The song is a retro pop hit with inspiring and romantic vibes.", "data_idx": 4622, "number": 0, "label": "country"} +{"file_name": "test_07655.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a string section harmony and a strong bass line. The audio quality is poor. The song is a retro pop hit with inspiring and romantic vibes.", "data_idx": 4622, "number": 1, "label": "country"} +{"file_name": "test_07656.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a string section harmony and a strong bass line. The audio quality is poor. The song is a retro pop hit with inspiring and romantic vibes.", "data_idx": 4622, "number": 2, "label": "country"} +{"file_name": "test_07657.png", "caption": "A female singer sings this beautiful melody. The tempo is medium with a string section harmony and a strong bass line. The audio quality is poor. The song is a retro pop hit with inspiring and romantic vibes.", "data_idx": 4622, "number": 3, "label": "country"} +{"file_name": "test_07658.png", "caption": "This is an amateur cover of a grunge rock music piece. Both the recording and the playing are of poor quality. There is a male vocalist singing in a grunt-like manner as the lead. A crunchy riff is being played by the distorted electric guitar and the bass guitar while the acoustic drums are playing a simple rock beat. The atmosphere is rebellious and noisy.", "data_idx": 4625, "number": 0, "label": "classical"} +{"file_name": "test_07659.png", "caption": "This is an amateur cover of a grunge rock music piece. Both the recording and the playing are of poor quality. There is a male vocalist singing in a grunt-like manner as the lead. A crunchy riff is being played by the distorted electric guitar and the bass guitar while the acoustic drums are playing a simple rock beat. The atmosphere is rebellious and noisy.", "data_idx": 4625, "number": 1, "label": "classical"} +{"file_name": "test_07660.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking after a clean electric guitar chord is played. Judging by the short snippet at the end of the loop, there is a guitar pedal effect that changes the preset of the guitar sound. The recording is noisy and in mono.", "data_idx": 4629, "number": 0, "label": "blues"} +{"file_name": "test_07661.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking after a clean electric guitar chord is played. Judging by the short snippet at the end of the loop, there is a guitar pedal effect that changes the preset of the guitar sound. The recording is noisy and in mono.", "data_idx": 4629, "number": 1, "label": "blues"} +{"file_name": "test_07662.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking after a clean electric guitar chord is played. Judging by the short snippet at the end of the loop, there is a guitar pedal effect that changes the preset of the guitar sound. The recording is noisy and in mono.", "data_idx": 4629, "number": 2, "label": "blues"} +{"file_name": "test_07663.png", "caption": "The low quality recording features a tutorial where a flat male vocalist is talking after a clean electric guitar chord is played. Judging by the short snippet at the end of the loop, there is a guitar pedal effect that changes the preset of the guitar sound. The recording is noisy and in mono.", "data_idx": 4629, "number": 3, "label": "blues"} +{"file_name": "test_07664.png", "caption": "A female vocalist sings this upbeat electronic pop song. The tempo is fast with enthusiastic synthesiser arrangements, groovy drumming. The music is electronically arranged and has a youthful, vivacious, enthusiastic, buoyant dance groove. This music is upbeat Electronic Dance music.", "data_idx": 4634, "number": 0, "label": "disco"} +{"file_name": "test_07665.png", "caption": "A female vocalist sings this upbeat electronic pop song. The tempo is fast with enthusiastic synthesiser arrangements, groovy drumming. The music is electronically arranged and has a youthful, vivacious, enthusiastic, buoyant dance groove. This music is upbeat Electronic Dance music.", "data_idx": 4634, "number": 1, "label": "disco"} +{"file_name": "test_07666.png", "caption": "A female vocalist sings this upbeat electronic pop song. The tempo is fast with enthusiastic synthesiser arrangements, groovy drumming. The music is electronically arranged and has a youthful, vivacious, enthusiastic, buoyant dance groove. This music is upbeat Electronic Dance music.", "data_idx": 4634, "number": 2, "label": "disco"} +{"file_name": "test_07667.png", "caption": "A female vocalist sings this upbeat electronic pop song. The tempo is fast with enthusiastic synthesiser arrangements, groovy drumming. The music is electronically arranged and has a youthful, vivacious, enthusiastic, buoyant dance groove. This music is upbeat Electronic Dance music.", "data_idx": 4634, "number": 3, "label": "disco"} +{"file_name": "test_07668.png", "caption": "This song contains an orchestra playing a melody in the mid to high range with a string section decreasing in volume.Oboes/flutes are playing another melody on top with a low timpani hit in the background. This song may be playing at the end of an emotional adventure movie.", "data_idx": 4635, "number": 0, "label": "classical"} +{"file_name": "test_07669.png", "caption": "This song contains an orchestra playing a melody in the mid to high range with a string section decreasing in volume.Oboes/flutes are playing another melody on top with a low timpani hit in the background. This song may be playing at the end of an emotional adventure movie.", "data_idx": 4635, "number": 1, "label": "classical"} +{"file_name": "test_07670.png", "caption": "This song contains an orchestra playing a melody in the mid to high range with a string section decreasing in volume.Oboes/flutes are playing another melody on top with a low timpani hit in the background. This song may be playing at the end of an emotional adventure movie.", "data_idx": 4635, "number": 2, "label": "classical"} +{"file_name": "test_07671.png", "caption": "This song contains an orchestra playing a melody in the mid to high range with a string section decreasing in volume.Oboes/flutes are playing another melody on top with a low timpani hit in the background. This song may be playing at the end of an emotional adventure movie.", "data_idx": 4635, "number": 3, "label": "classical"} +{"file_name": "test_07672.png", "caption": "This audio contains a loud and strong digital drum almost sounding like an acoustic drum set. A bass sound rich in harmonica is serving as bassline while a short female shouting voice sample is repeatedly being played as a rhythmic element. This song may be playing for a dance battle.", "data_idx": 4640, "number": 0, "label": "reggae"} +{"file_name": "test_07673.png", "caption": "This audio contains a loud and strong digital drum almost sounding like an acoustic drum set. A bass sound rich in harmonica is serving as bassline while a short female shouting voice sample is repeatedly being played as a rhythmic element. This song may be playing for a dance battle.", "data_idx": 4640, "number": 1, "label": "reggae"} +{"file_name": "test_07674.png", "caption": "This audio contains a loud and strong digital drum almost sounding like an acoustic drum set. A bass sound rich in harmonica is serving as bassline while a short female shouting voice sample is repeatedly being played as a rhythmic element. This song may be playing for a dance battle.", "data_idx": 4640, "number": 2, "label": "reggae"} +{"file_name": "test_07675.png", "caption": "This audio contains a loud and strong digital drum almost sounding like an acoustic drum set. A bass sound rich in harmonica is serving as bassline while a short female shouting voice sample is repeatedly being played as a rhythmic element. This song may be playing for a dance battle.", "data_idx": 4640, "number": 3, "label": "reggae"} +{"file_name": "test_07676.png", "caption": "This audio contains someone playing a classical piece on a cembalo.\nThis song may be playing at a theater.", "data_idx": 4645, "number": 0, "label": "classical"} +{"file_name": "test_07677.png", "caption": "This audio contains someone playing a classical piece on a cembalo.\nThis song may be playing at a theater.", "data_idx": 4645, "number": 1, "label": "classical"} +{"file_name": "test_07678.png", "caption": "This audio contains someone playing a classical piece on a cembalo.\nThis song may be playing at a theater.", "data_idx": 4645, "number": 2, "label": "classical"} +{"file_name": "test_07679.png", "caption": "This audio contains someone playing a classical piece on a cembalo.\nThis song may be playing at a theater.", "data_idx": 4645, "number": 3, "label": "classical"} +{"file_name": "test_07680.png", "caption": "This song contains a male voice singing a drone sound in the lower register while other male voices are singing a harmonic melody in the mid-range. This song may be playing live in a church.", "data_idx": 4648, "number": 0, "label": "country"} +{"file_name": "test_07681.png", "caption": "This song contains a male voice singing a drone sound in the lower register while other male voices are singing a harmonic melody in the mid-range. This song may be playing live in a church.", "data_idx": 4648, "number": 1, "label": "country"} +{"file_name": "test_07682.png", "caption": "This song contains a male voice singing a drone sound in the lower register while other male voices are singing a harmonic melody in the mid-range. This song may be playing live in a church.", "data_idx": 4648, "number": 2, "label": "country"} +{"file_name": "test_07683.png", "caption": "This song contains a male voice singing a drone sound in the lower register while other male voices are singing a harmonic melody in the mid-range. This song may be playing live in a church.", "data_idx": 4648, "number": 3, "label": "country"} +{"file_name": "test_07684.png", "caption": "This song contains digital drums playing a ragga groove with a light pitch shifting sub bass on the kick and snare. A soft synth pad is creating an atmosphere. A deep male voice is singing/rapping over the instrumental. This song may be playing in an urban club.", "data_idx": 4649, "number": 0, "label": "reggae"} +{"file_name": "test_07685.png", "caption": "This song contains digital drums playing a ragga groove with a light pitch shifting sub bass on the kick and snare. A soft synth pad is creating an atmosphere. A deep male voice is singing/rapping over the instrumental. This song may be playing in an urban club.", "data_idx": 4649, "number": 1, "label": "reggae"} +{"file_name": "test_07686.png", "caption": "This song contains digital drums playing a ragga groove with a light pitch shifting sub bass on the kick and snare. A soft synth pad is creating an atmosphere. A deep male voice is singing/rapping over the instrumental. This song may be playing in an urban club.", "data_idx": 4649, "number": 2, "label": "reggae"} +{"file_name": "test_07687.png", "caption": "This song contains digital drums playing a ragga groove with a light pitch shifting sub bass on the kick and snare. A soft synth pad is creating an atmosphere. A deep male voice is singing/rapping over the instrumental. This song may be playing in an urban club.", "data_idx": 4649, "number": 3, "label": "reggae"} +{"file_name": "test_07688.png", "caption": "This is a live performance of a Hindustani classical music piece. There is a male vocalist singing passionately in the lead. The melody is being played by a gentle harmonium tune. The rhythmic background is provided by the tabla percussion. The atmosphere is vibrant. This piece could be used in the soundtrack of a movie with a North Indian setting.", "data_idx": 4652, "number": 0, "label": "rock"} +{"file_name": "test_07689.png", "caption": "This is a live performance of a Hindustani classical music piece. There is a male vocalist singing passionately in the lead. The melody is being played by a gentle harmonium tune. The rhythmic background is provided by the tabla percussion. The atmosphere is vibrant. This piece could be used in the soundtrack of a movie with a North Indian setting.", "data_idx": 4652, "number": 1, "label": "rock"} +{"file_name": "test_07690.png", "caption": "This is a live performance of a Hindustani classical music piece. There is a male vocalist singing passionately in the lead. The melody is being played by a gentle harmonium tune. The rhythmic background is provided by the tabla percussion. The atmosphere is vibrant. This piece could be used in the soundtrack of a movie with a North Indian setting.", "data_idx": 4652, "number": 2, "label": "rock"} +{"file_name": "test_07691.png", "caption": "This is a live performance of a Hindustani classical music piece. There is a male vocalist singing passionately in the lead. The melody is being played by a gentle harmonium tune. The rhythmic background is provided by the tabla percussion. The atmosphere is vibrant. This piece could be used in the soundtrack of a movie with a North Indian setting.", "data_idx": 4652, "number": 3, "label": "rock"} +{"file_name": "test_07692.png", "caption": "The low quality recording features a pop song that consists a passionate female lead vocal, alongside harmonizing female vocal, singing over groovy synth bas, claps, shimmering hi hats, punchy \"4 on the floor\" kick pattern, electric guitar melody and short groovy synth keys chords. It sounds energetic, groovy and addictive. The recording is noisy.", "data_idx": 4653, "number": 0, "label": "pop"} +{"file_name": "test_07693.png", "caption": "The low quality recording features a pop song that consists a passionate female lead vocal, alongside harmonizing female vocal, singing over groovy synth bas, claps, shimmering hi hats, punchy \"4 on the floor\" kick pattern, electric guitar melody and short groovy synth keys chords. It sounds energetic, groovy and addictive. The recording is noisy.", "data_idx": 4653, "number": 1, "label": "pop"} +{"file_name": "test_07694.png", "caption": "The low quality recording features a pop song that consists a passionate female lead vocal, alongside harmonizing female vocal, singing over groovy synth bas, claps, shimmering hi hats, punchy \"4 on the floor\" kick pattern, electric guitar melody and short groovy synth keys chords. It sounds energetic, groovy and addictive. The recording is noisy.", "data_idx": 4653, "number": 2, "label": "pop"} +{"file_name": "test_07695.png", "caption": "The low quality recording features a pop song that consists a passionate female lead vocal, alongside harmonizing female vocal, singing over groovy synth bas, claps, shimmering hi hats, punchy \"4 on the floor\" kick pattern, electric guitar melody and short groovy synth keys chords. It sounds energetic, groovy and addictive. The recording is noisy.", "data_idx": 4653, "number": 3, "label": "pop"} +{"file_name": "test_07696.png", "caption": "Here we have several standing crystal bells being played. They produce a sustained, ringing, high pitched frequency that would be suitable for meditative and relaxed environments. The woman sings a short, open-mouthed melody.", "data_idx": 4654, "number": 0, "label": "jazz"} +{"file_name": "test_07697.png", "caption": "Here we have several standing crystal bells being played. They produce a sustained, ringing, high pitched frequency that would be suitable for meditative and relaxed environments. The woman sings a short, open-mouthed melody.", "data_idx": 4654, "number": 1, "label": "jazz"} +{"file_name": "test_07698.png", "caption": "Here we have several standing crystal bells being played. They produce a sustained, ringing, high pitched frequency that would be suitable for meditative and relaxed environments. The woman sings a short, open-mouthed melody.", "data_idx": 4654, "number": 2, "label": "jazz"} +{"file_name": "test_07699.png", "caption": "Here we have several standing crystal bells being played. They produce a sustained, ringing, high pitched frequency that would be suitable for meditative and relaxed environments. The woman sings a short, open-mouthed melody.", "data_idx": 4654, "number": 3, "label": "jazz"} +{"file_name": "test_07700.png", "caption": "The Pop song features a filtered male vocal, alongside flat male vocal, singing over some claps, boomy kick hits, laser synth riser and addictive synth lead melody. There are also some male laughing sounds. It sounds addictive, groovy and exciting - like something you would hear in clubs.", "data_idx": 4656, "number": 0, "label": "hiphop"} +{"file_name": "test_07701.png", "caption": "The Pop song features a filtered male vocal, alongside flat male vocal, singing over some claps, boomy kick hits, laser synth riser and addictive synth lead melody. There are also some male laughing sounds. It sounds addictive, groovy and exciting - like something you would hear in clubs.", "data_idx": 4656, "number": 1, "label": "hiphop"} +{"file_name": "test_07702.png", "caption": "The Pop song features a filtered male vocal, alongside flat male vocal, singing over some claps, boomy kick hits, laser synth riser and addictive synth lead melody. There are also some male laughing sounds. It sounds addictive, groovy and exciting - like something you would hear in clubs.", "data_idx": 4656, "number": 2, "label": "hiphop"} +{"file_name": "test_07703.png", "caption": "The Pop song features a filtered male vocal, alongside flat male vocal, singing over some claps, boomy kick hits, laser synth riser and addictive synth lead melody. There are also some male laughing sounds. It sounds addictive, groovy and exciting - like something you would hear in clubs.", "data_idx": 4656, "number": 3, "label": "hiphop"} +{"file_name": "test_07704.png", "caption": "A male vocalist sings this beautiful Reggae song. The tempo is medium with a keyboard harmony, punchy and infectious bass line and funky drumming with harmonic vocal backup. The song talks about world peace, kindness towards humankind and unity. The song is inspirational, passionate, youthful, emotional,persuasive,impactful, melodic , engaging and captivating.", "data_idx": 4657, "number": 0, "label": "reggae"} +{"file_name": "test_07705.png", "caption": "A male vocalist sings this beautiful Reggae song. The tempo is medium with a keyboard harmony, punchy and infectious bass line and funky drumming with harmonic vocal backup. The song talks about world peace, kindness towards humankind and unity. The song is inspirational, passionate, youthful, emotional,persuasive,impactful, melodic , engaging and captivating.", "data_idx": 4657, "number": 1, "label": "reggae"} +{"file_name": "test_07706.png", "caption": "A male vocalist sings this beautiful Reggae song. The tempo is medium with a keyboard harmony, punchy and infectious bass line and funky drumming with harmonic vocal backup. The song talks about world peace, kindness towards humankind and unity. The song is inspirational, passionate, youthful, emotional,persuasive,impactful, melodic , engaging and captivating.", "data_idx": 4657, "number": 2, "label": "reggae"} +{"file_name": "test_07707.png", "caption": "A male vocalist sings this beautiful Reggae song. The tempo is medium with a keyboard harmony, punchy and infectious bass line and funky drumming with harmonic vocal backup. The song talks about world peace, kindness towards humankind and unity. The song is inspirational, passionate, youthful, emotional,persuasive,impactful, melodic , engaging and captivating.", "data_idx": 4657, "number": 3, "label": "reggae"} +{"file_name": "test_07708.png", "caption": "This is a glam rock/classic rock music piece. There is a male vocalist singing melodically. The main theme is being played by the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a rock acoustic drum beat. There is a loud vinyl hiss because of how aged the record is. The atmosphere is groovy. This piece could be playing in the background of a rock bar.", "data_idx": 4660, "number": 0, "label": "disco"} +{"file_name": "test_07709.png", "caption": "This is a glam rock/classic rock music piece. There is a male vocalist singing melodically. The main theme is being played by the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a rock acoustic drum beat. There is a loud vinyl hiss because of how aged the record is. The atmosphere is groovy. This piece could be playing in the background of a rock bar.", "data_idx": 4660, "number": 1, "label": "disco"} +{"file_name": "test_07710.png", "caption": "This is a glam rock/classic rock music piece. There is a male vocalist singing melodically. The main theme is being played by the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a rock acoustic drum beat. There is a loud vinyl hiss because of how aged the record is. The atmosphere is groovy. This piece could be playing in the background of a rock bar.", "data_idx": 4660, "number": 2, "label": "disco"} +{"file_name": "test_07711.png", "caption": "This is a glam rock/classic rock music piece. There is a male vocalist singing melodically. The main theme is being played by the electric guitar while the bass guitar is playing in the background. The rhythm is provided by a rock acoustic drum beat. There is a loud vinyl hiss because of how aged the record is. The atmosphere is groovy. This piece could be playing in the background of a rock bar.", "data_idx": 4660, "number": 3, "label": "disco"} +{"file_name": "test_07712.png", "caption": "This music is instrumental. The tempo is slow with a harmonious melody of string instruments, percussion and wind instruments which sound like the Indian Sarangi, dhol or madal , shakers and a flute. The music is classical, simple, enchanting and melodic. This song is a Folk song Instrumental.", "data_idx": 4661, "number": 0, "label": "classical"} +{"file_name": "test_07713.png", "caption": "This music is instrumental. The tempo is slow with a harmonious melody of string instruments, percussion and wind instruments which sound like the Indian Sarangi, dhol or madal , shakers and a flute. The music is classical, simple, enchanting and melodic. This song is a Folk song Instrumental.", "data_idx": 4661, "number": 1, "label": "classical"} +{"file_name": "test_07714.png", "caption": "This music is instrumental. The tempo is slow with a harmonious melody of string instruments, percussion and wind instruments which sound like the Indian Sarangi, dhol or madal , shakers and a flute. The music is classical, simple, enchanting and melodic. This song is a Folk song Instrumental.", "data_idx": 4661, "number": 2, "label": "classical"} +{"file_name": "test_07715.png", "caption": "This music is instrumental. The tempo is slow with a harmonious melody of string instruments, percussion and wind instruments which sound like the Indian Sarangi, dhol or madal , shakers and a flute. The music is classical, simple, enchanting and melodic. This song is a Folk song Instrumental.", "data_idx": 4661, "number": 3, "label": "classical"} +{"file_name": "test_07716.png", "caption": "This audio contains a digital reggaeton beat that uses some acoustic samples. In the background you can hear a soft bass playing along with the kick. A lot of male voices are rapping/speaking providing backing vocals that are spread across both sides of the speakers. This song may be playing at a party outside on the streets.", "data_idx": 4662, "number": 0, "label": "hiphop"} +{"file_name": "test_07717.png", "caption": "This audio contains a digital reggaeton beat that uses some acoustic samples. In the background you can hear a soft bass playing along with the kick. A lot of male voices are rapping/speaking providing backing vocals that are spread across both sides of the speakers. This song may be playing at a party outside on the streets.", "data_idx": 4662, "number": 1, "label": "hiphop"} +{"file_name": "test_07718.png", "caption": "This audio contains a digital reggaeton beat that uses some acoustic samples. In the background you can hear a soft bass playing along with the kick. A lot of male voices are rapping/speaking providing backing vocals that are spread across both sides of the speakers. This song may be playing at a party outside on the streets.", "data_idx": 4662, "number": 2, "label": "hiphop"} +{"file_name": "test_07719.png", "caption": "This audio contains a digital reggaeton beat that uses some acoustic samples. In the background you can hear a soft bass playing along with the kick. A lot of male voices are rapping/speaking providing backing vocals that are spread across both sides of the speakers. This song may be playing at a party outside on the streets.", "data_idx": 4662, "number": 3, "label": "hiphop"} +{"file_name": "test_07720.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a smooth electric guitar lead harmony. The music is clear, emphatic, smooth, groovy, youthful, crisp, edgy and dominant.", "data_idx": 4663, "number": 0, "label": "hiphop"} +{"file_name": "test_07721.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a smooth electric guitar lead harmony. The music is clear, emphatic, smooth, groovy, youthful, crisp, edgy and dominant.", "data_idx": 4663, "number": 1, "label": "hiphop"} +{"file_name": "test_07722.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a smooth electric guitar lead harmony. The music is clear, emphatic, smooth, groovy, youthful, crisp, edgy and dominant.", "data_idx": 4663, "number": 2, "label": "hiphop"} +{"file_name": "test_07723.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a smooth electric guitar lead harmony. The music is clear, emphatic, smooth, groovy, youthful, crisp, edgy and dominant.", "data_idx": 4663, "number": 3, "label": "hiphop"} +{"file_name": "test_07724.png", "caption": "The low quality recording features a live performance of blues songs and it consists of a harmonica solo melody played over groovy bass, punchy snare, shimmering cymbals and electric guitar melody. As it was recorded with a phone, there are some whistling crowd noises, aside from the fact that the recording is in mono and noisy. It still sounds energetic and passionate.", "data_idx": 4665, "number": 0, "label": "classical"} +{"file_name": "test_07725.png", "caption": "The low quality recording features a live performance of blues songs and it consists of a harmonica solo melody played over groovy bass, punchy snare, shimmering cymbals and electric guitar melody. As it was recorded with a phone, there are some whistling crowd noises, aside from the fact that the recording is in mono and noisy. It still sounds energetic and passionate.", "data_idx": 4665, "number": 1, "label": "classical"} +{"file_name": "test_07726.png", "caption": "The low quality recording features a wide harmonizing vocals singing over wide toms, groovy bass, punchy snare, energetic crash cymbal, thin kick hits and buzzy synth lead melody. It sounds passionate and addictive thanks to that synth lead. The recording is noisy.", "data_idx": 4666, "number": 0, "label": "hiphop"} +{"file_name": "test_07727.png", "caption": "The low quality recording features a wide harmonizing vocals singing over wide toms, groovy bass, punchy snare, energetic crash cymbal, thin kick hits and buzzy synth lead melody. It sounds passionate and addictive thanks to that synth lead. The recording is noisy.", "data_idx": 4666, "number": 1, "label": "hiphop"} +{"file_name": "test_07728.png", "caption": "A male Latin singer sings this romantic melody. The song is medium tempo with an acoustic guitar accompaniment with no other instrumentation. The song is emotional and passionate. The audio quality is poor.", "data_idx": 4669, "number": 0, "label": "pop"} +{"file_name": "test_07729.png", "caption": "A male Latin singer sings this romantic melody. The song is medium tempo with an acoustic guitar accompaniment with no other instrumentation. The song is emotional and passionate. The audio quality is poor.", "data_idx": 4669, "number": 1, "label": "pop"} +{"file_name": "test_07730.png", "caption": "A male Latin singer sings this romantic melody. The song is medium tempo with an acoustic guitar accompaniment with no other instrumentation. The song is emotional and passionate. The audio quality is poor.", "data_idx": 4669, "number": 2, "label": "pop"} +{"file_name": "test_07731.png", "caption": "A male Latin singer sings this romantic melody. The song is medium tempo with an acoustic guitar accompaniment with no other instrumentation. The song is emotional and passionate. The audio quality is poor.", "data_idx": 4669, "number": 3, "label": "pop"} +{"file_name": "test_07732.png", "caption": "This bluegrass song starts off with a male voice making an announcement. The music starts to play. The banjo plays an introductory bluegrass lick. This is accompanied by an acoustic guitar strumming chords. The double bass plays the root note and the fifth of the chord. The mandolin plays the rhythm section in the song. There is no vocal melody in this song. There is no percussion in this song. This song can be played in a movie with a Western theme.", "data_idx": 4670, "number": 0, "label": "hiphop"} +{"file_name": "test_07733.png", "caption": "This bluegrass song starts off with a male voice making an announcement. The music starts to play. The banjo plays an introductory bluegrass lick. This is accompanied by an acoustic guitar strumming chords. The double bass plays the root note and the fifth of the chord. The mandolin plays the rhythm section in the song. There is no vocal melody in this song. There is no percussion in this song. This song can be played in a movie with a Western theme.", "data_idx": 4670, "number": 1, "label": "hiphop"} +{"file_name": "test_07734.png", "caption": "This slow song features a male voice singing the main melody at a comfortable pitch. The tone of the voice is emotional. This is accompanied by a bass playing the root notes of the chords. After one line, a synth swell is played. A piano plays the backing chords. The mood of this song is sad. This song can be played in a sad scene in a movie.", "data_idx": 4671, "number": 0, "label": "country"} +{"file_name": "test_07735.png", "caption": "This slow song features a male voice singing the main melody at a comfortable pitch. The tone of the voice is emotional. This is accompanied by a bass playing the root notes of the chords. After one line, a synth swell is played. A piano plays the backing chords. The mood of this song is sad. This song can be played in a sad scene in a movie.", "data_idx": 4671, "number": 1, "label": "country"} +{"file_name": "test_07736.png", "caption": "This slow song features a male voice singing the main melody at a comfortable pitch. The tone of the voice is emotional. This is accompanied by a bass playing the root notes of the chords. After one line, a synth swell is played. A piano plays the backing chords. The mood of this song is sad. This song can be played in a sad scene in a movie.", "data_idx": 4671, "number": 2, "label": "country"} +{"file_name": "test_07737.png", "caption": "This slow song features a male voice singing the main melody at a comfortable pitch. The tone of the voice is emotional. This is accompanied by a bass playing the root notes of the chords. After one line, a synth swell is played. A piano plays the backing chords. The mood of this song is sad. This song can be played in a sad scene in a movie.", "data_idx": 4671, "number": 3, "label": "country"} +{"file_name": "test_07738.png", "caption": "This is a funk remix of a hip-hop music piece. There is a male vocal rapping calmly almost as if he is just having a normal conversation with someone. There are various layers of different synths playing different melodies. The piece has a strong bass sound. The rhythm is being played by a groovy electronic drum beat. The atmosphere of the piece is danceable and the sound is urban. This piece could be playing at a retro-themed party at a nightclub.", "data_idx": 4672, "number": 0, "label": "hiphop"} +{"file_name": "test_07739.png", "caption": "This is a funk remix of a hip-hop music piece. There is a male vocal rapping calmly almost as if he is just having a normal conversation with someone. There are various layers of different synths playing different melodies. The piece has a strong bass sound. The rhythm is being played by a groovy electronic drum beat. The atmosphere of the piece is danceable and the sound is urban. This piece could be playing at a retro-themed party at a nightclub.", "data_idx": 4672, "number": 1, "label": "hiphop"} +{"file_name": "test_07740.png", "caption": "This is a funk remix of a hip-hop music piece. There is a male vocal rapping calmly almost as if he is just having a normal conversation with someone. There are various layers of different synths playing different melodies. The piece has a strong bass sound. The rhythm is being played by a groovy electronic drum beat. The atmosphere of the piece is danceable and the sound is urban. This piece could be playing at a retro-themed party at a nightclub.", "data_idx": 4672, "number": 2, "label": "hiphop"} +{"file_name": "test_07741.png", "caption": "This is a funk remix of a hip-hop music piece. There is a male vocal rapping calmly almost as if he is just having a normal conversation with someone. There are various layers of different synths playing different melodies. The piece has a strong bass sound. The rhythm is being played by a groovy electronic drum beat. The atmosphere of the piece is danceable and the sound is urban. This piece could be playing at a retro-themed party at a nightclub.", "data_idx": 4672, "number": 3, "label": "hiphop"} +{"file_name": "test_07742.png", "caption": "A male singer sings this soulful melody with backup singers in vocal harmony. The song is medium tempo with an organ accompaniment, steady drumming , guitar rhythm and various percussion hits. The song is story telling and passionate in nature. The audio quality is very poor.", "data_idx": 4673, "number": 0, "label": "rock"} +{"file_name": "test_07743.png", "caption": "A male singer sings this soulful melody with backup singers in vocal harmony. The song is medium tempo with an organ accompaniment, steady drumming , guitar rhythm and various percussion hits. The song is story telling and passionate in nature. The audio quality is very poor.", "data_idx": 4673, "number": 1, "label": "rock"} +{"file_name": "test_07744.png", "caption": "A male singer sings this soulful melody with backup singers in vocal harmony. The song is medium tempo with an organ accompaniment, steady drumming , guitar rhythm and various percussion hits. The song is story telling and passionate in nature. The audio quality is very poor.", "data_idx": 4673, "number": 2, "label": "rock"} +{"file_name": "test_07745.png", "caption": "A male singer sings this soulful melody with backup singers in vocal harmony. The song is medium tempo with an organ accompaniment, steady drumming , guitar rhythm and various percussion hits. The song is story telling and passionate in nature. The audio quality is very poor.", "data_idx": 4673, "number": 3, "label": "rock"} +{"file_name": "test_07746.png", "caption": "French horn solo with orchestral accompaniment, woodwinds, glockenspiel and cymbals. The genre is jazz and classical.", "data_idx": 4674, "number": 0, "label": "classical"} +{"file_name": "test_07747.png", "caption": "French horn solo with orchestral accompaniment, woodwinds, glockenspiel and cymbals. The genre is jazz and classical.", "data_idx": 4674, "number": 1, "label": "classical"} +{"file_name": "test_07748.png", "caption": "French horn solo with orchestral accompaniment, woodwinds, glockenspiel and cymbals. The genre is jazz and classical.", "data_idx": 4674, "number": 2, "label": "classical"} +{"file_name": "test_07749.png", "caption": "French horn solo with orchestral accompaniment, woodwinds, glockenspiel and cymbals. The genre is jazz and classical.", "data_idx": 4674, "number": 3, "label": "classical"} +{"file_name": "test_07750.png", "caption": "This music is a Jazz instrumental. The tempo is slow with emphatic brass and wind instrumentation, with cello and jazz drumming. The trumpets are emphatic with a lively trombone riff. The other instruments add a rich, dense layer to the music. It is intense, complex, ambient, groovy and pleasant. This music is a Jazz instrumental.5.", "data_idx": 4675, "number": 0, "label": "hiphop"} +{"file_name": "test_07751.png", "caption": "This music is a Jazz instrumental. The tempo is slow with emphatic brass and wind instrumentation, with cello and jazz drumming. The trumpets are emphatic with a lively trombone riff. The other instruments add a rich, dense layer to the music. It is intense, complex, ambient, groovy and pleasant. This music is a Jazz instrumental.5.", "data_idx": 4675, "number": 1, "label": "hiphop"} +{"file_name": "test_07752.png", "caption": "This music is a Jazz instrumental. The tempo is slow with emphatic brass and wind instrumentation, with cello and jazz drumming. The trumpets are emphatic with a lively trombone riff. The other instruments add a rich, dense layer to the music. It is intense, complex, ambient, groovy and pleasant. This music is a Jazz instrumental.5.", "data_idx": 4675, "number": 2, "label": "hiphop"} +{"file_name": "test_07753.png", "caption": "This music is a Jazz instrumental. The tempo is slow with emphatic brass and wind instrumentation, with cello and jazz drumming. The trumpets are emphatic with a lively trombone riff. The other instruments add a rich, dense layer to the music. It is intense, complex, ambient, groovy and pleasant. This music is a Jazz instrumental.5.", "data_idx": 4675, "number": 3, "label": "hiphop"} +{"file_name": "test_07754.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of groovy double bass, trombone solo and shimmering hi-hats. The recording is a bit noisy and it sounds warm, intimate and passionate.", "data_idx": 4676, "number": 0, "label": "jazz"} +{"file_name": "test_07755.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of groovy double bass, trombone solo and shimmering hi-hats. The recording is a bit noisy and it sounds warm, intimate and passionate.", "data_idx": 4676, "number": 1, "label": "jazz"} +{"file_name": "test_07756.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of groovy double bass, trombone solo and shimmering hi-hats. The recording is a bit noisy and it sounds warm, intimate and passionate.", "data_idx": 4676, "number": 2, "label": "jazz"} +{"file_name": "test_07757.png", "caption": "The low quality recording features a live performance of a jazz song and it consists of groovy double bass, trombone solo and shimmering hi-hats. The recording is a bit noisy and it sounds warm, intimate and passionate.", "data_idx": 4676, "number": 3, "label": "jazz"} +{"file_name": "test_07758.png", "caption": "This music is instrumental. The tempo is slow with a melodic acoustic guitar solo. The music is soft, euphonious, dreamy, romantic , warm ,ambient and soothing. This is a Classical acoustic instrumental.", "data_idx": 4682, "number": 0, "label": "jazz"} +{"file_name": "test_07759.png", "caption": "This music is instrumental. The tempo is slow with a melodic acoustic guitar solo. The music is soft, euphonious, dreamy, romantic , warm ,ambient and soothing. This is a Classical acoustic instrumental.", "data_idx": 4682, "number": 1, "label": "jazz"} +{"file_name": "test_07760.png", "caption": "Someone is playing a melody on an electric organ in a minor key. An acoustic drum is playing a simple groove with single hits on the ride. An e-bass is playing the root note of the melody accompanied by a clean e-guitar sound fingerpicking the chords. Then a deeper male voice starts singing. This song may be playing in a sad romantic movie scene.", "data_idx": 4683, "number": 0, "label": "jazz"} +{"file_name": "test_07761.png", "caption": "Someone is playing a melody on an electric organ in a minor key. An acoustic drum is playing a simple groove with single hits on the ride. An e-bass is playing the root note of the melody accompanied by a clean e-guitar sound fingerpicking the chords. Then a deeper male voice starts singing. This song may be playing in a sad romantic movie scene.", "data_idx": 4683, "number": 1, "label": "jazz"} +{"file_name": "test_07762.png", "caption": "The low quality recording features a resonating mellow bell playing. It sounds relaxing, calming, soft, mellow, haunting and hypnotic. The recording is noisy and in mono.", "data_idx": 4684, "number": 0, "label": "jazz"} +{"file_name": "test_07763.png", "caption": "The low quality recording features a resonating mellow bell playing. It sounds relaxing, calming, soft, mellow, haunting and hypnotic. The recording is noisy and in mono.", "data_idx": 4684, "number": 1, "label": "jazz"} +{"file_name": "test_07764.png", "caption": "The low quality recording features a resonating mellow bell playing. It sounds relaxing, calming, soft, mellow, haunting and hypnotic. The recording is noisy and in mono.", "data_idx": 4684, "number": 2, "label": "jazz"} +{"file_name": "test_07765.png", "caption": "The low quality recording features a resonating mellow bell playing. It sounds relaxing, calming, soft, mellow, haunting and hypnotic. The recording is noisy and in mono.", "data_idx": 4684, "number": 3, "label": "jazz"} +{"file_name": "test_07766.png", "caption": "This song is a Latin Football team anthem. The song is medium tempo with lively keyboard, flute harmony, synthesiser arrangements , shakers and infectious drumming. The song is youthful, energetic,encouraging, celebratory, cheerful and happy.", "data_idx": 4685, "number": 0, "label": "disco"} +{"file_name": "test_07767.png", "caption": "This song is a Latin Football team anthem. The song is medium tempo with lively keyboard, flute harmony, synthesiser arrangements , shakers and infectious drumming. The song is youthful, energetic,encouraging, celebratory, cheerful and happy.", "data_idx": 4685, "number": 1, "label": "disco"} +{"file_name": "test_07768.png", "caption": "This song is a Latin Football team anthem. The song is medium tempo with lively keyboard, flute harmony, synthesiser arrangements , shakers and infectious drumming. The song is youthful, energetic,encouraging, celebratory, cheerful and happy.", "data_idx": 4685, "number": 2, "label": "disco"} +{"file_name": "test_07769.png", "caption": "This song is a Latin Football team anthem. The song is medium tempo with lively keyboard, flute harmony, synthesiser arrangements , shakers and infectious drumming. The song is youthful, energetic,encouraging, celebratory, cheerful and happy.", "data_idx": 4685, "number": 3, "label": "disco"} +{"file_name": "test_07770.png", "caption": "The low quality recording features a live performance and it contains glass breaking and shattering sounds, high pitched female vocal grunt, sustained synth bass, boomy toms and punchy kick, it also includes a crowd cheering sounds. The recording is in mono, really noisy, muffled and it sounds energetic.", "data_idx": 4686, "number": 0, "label": "metal"} +{"file_name": "test_07771.png", "caption": "The low quality recording features a live performance and it contains glass breaking and shattering sounds, high pitched female vocal grunt, sustained synth bass, boomy toms and punchy kick, it also includes a crowd cheering sounds. The recording is in mono, really noisy, muffled and it sounds energetic.", "data_idx": 4686, "number": 1, "label": "metal"} +{"file_name": "test_07772.png", "caption": "The low quality recording features a live performance and it contains glass breaking and shattering sounds, high pitched female vocal grunt, sustained synth bass, boomy toms and punchy kick, it also includes a crowd cheering sounds. The recording is in mono, really noisy, muffled and it sounds energetic.", "data_idx": 4686, "number": 2, "label": "metal"} +{"file_name": "test_07773.png", "caption": "The low quality recording features a live performance and it contains glass breaking and shattering sounds, high pitched female vocal grunt, sustained synth bass, boomy toms and punchy kick, it also includes a crowd cheering sounds. The recording is in mono, really noisy, muffled and it sounds energetic.", "data_idx": 4686, "number": 3, "label": "metal"} +{"file_name": "test_07774.png", "caption": "The Disco song features a flat male vocal singing over a wide funky electric guitar melody, groovy bass, synth keys chords, funky synth lead melody, punchy kick, punchy snare layered with some claps and simple hi hats. It sounds passionate, funky and groovy.", "data_idx": 4687, "number": 0, "label": "disco"} +{"file_name": "test_07775.png", "caption": "The Disco song features a flat male vocal singing over a wide funky electric guitar melody, groovy bass, synth keys chords, funky synth lead melody, punchy kick, punchy snare layered with some claps and simple hi hats. It sounds passionate, funky and groovy.", "data_idx": 4687, "number": 1, "label": "disco"} +{"file_name": "test_07776.png", "caption": "The Disco song features a flat male vocal singing over a wide funky electric guitar melody, groovy bass, synth keys chords, funky synth lead melody, punchy kick, punchy snare layered with some claps and simple hi hats. It sounds passionate, funky and groovy.", "data_idx": 4687, "number": 2, "label": "disco"} +{"file_name": "test_07777.png", "caption": "The Disco song features a flat male vocal singing over a wide funky electric guitar melody, groovy bass, synth keys chords, funky synth lead melody, punchy kick, punchy snare layered with some claps and simple hi hats. It sounds passionate, funky and groovy.", "data_idx": 4687, "number": 3, "label": "disco"} +{"file_name": "test_07778.png", "caption": "This song contains an acoustic drum playing a simple groove with heat panned to both sides of the speakers. An e-bass is playing along while someone is strumming chords on an acoustic guitar. Two male voices are singing together in harmony. A viola is joining, playing along with the singer's melody. This song may be playing while cooking at home.", "data_idx": 4688, "number": 0, "label": "rock"} +{"file_name": "test_07779.png", "caption": "This song contains an acoustic drum playing a simple groove with heat panned to both sides of the speakers. An e-bass is playing along while someone is strumming chords on an acoustic guitar. Two male voices are singing together in harmony. A viola is joining, playing along with the singer's melody. This song may be playing while cooking at home.", "data_idx": 4688, "number": 1, "label": "rock"} +{"file_name": "test_07780.png", "caption": "This song contains an acoustic drum playing a simple groove with heat panned to both sides of the speakers. An e-bass is playing along while someone is strumming chords on an acoustic guitar. Two male voices are singing together in harmony. A viola is joining, playing along with the singer's melody. This song may be playing while cooking at home.", "data_idx": 4688, "number": 2, "label": "rock"} +{"file_name": "test_07781.png", "caption": "This song contains an acoustic drum playing a simple groove with heat panned to both sides of the speakers. An e-bass is playing along while someone is strumming chords on an acoustic guitar. Two male voices are singing together in harmony. A viola is joining, playing along with the singer's melody. This song may be playing while cooking at home.", "data_idx": 4688, "number": 3, "label": "rock"} +{"file_name": "test_07782.png", "caption": "This music is instrumental.The tempo is slow with a keyboard harmony, a male voice talking over the music and the sound of birds chirping. The music is playful, naughty, animated, simple and minimalist. The music style and dialogue indicate that this is an animated movie.", "data_idx": 4689, "number": 0, "label": "hiphop"} +{"file_name": "test_07783.png", "caption": "This music is instrumental.The tempo is slow with a keyboard harmony, a male voice talking over the music and the sound of birds chirping. The music is playful, naughty, animated, simple and minimalist. The music style and dialogue indicate that this is an animated movie.", "data_idx": 4689, "number": 1, "label": "hiphop"} +{"file_name": "test_07784.png", "caption": "This folk song features a quarter. The main melody starts off with the accordion playing an ascending run. This is accompanied by the bass playing the root and fifth of the chords. An acoustic guitar strums chords in waltz time. After the accordion part, the violin plays the main melody and the same instruments back the violin. This song can be played in a village fair.", "data_idx": 4690, "number": 0, "label": "blues"} +{"file_name": "test_07785.png", "caption": "This folk song features a quarter. The main melody starts off with the accordion playing an ascending run. This is accompanied by the bass playing the root and fifth of the chords. An acoustic guitar strums chords in waltz time. After the accordion part, the violin plays the main melody and the same instruments back the violin. This song can be played in a village fair.", "data_idx": 4690, "number": 1, "label": "blues"} +{"file_name": "test_07786.png", "caption": "This folk song features a quarter. The main melody starts off with the accordion playing an ascending run. This is accompanied by the bass playing the root and fifth of the chords. An acoustic guitar strums chords in waltz time. After the accordion part, the violin plays the main melody and the same instruments back the violin. This song can be played in a village fair.", "data_idx": 4690, "number": 2, "label": "blues"} +{"file_name": "test_07787.png", "caption": "This folk song features a quarter. The main melody starts off with the accordion playing an ascending run. This is accompanied by the bass playing the root and fifth of the chords. An acoustic guitar strums chords in waltz time. After the accordion part, the violin plays the main melody and the same instruments back the violin. This song can be played in a village fair.", "data_idx": 4690, "number": 3, "label": "blues"} +{"file_name": "test_07788.png", "caption": "The low quality recording features a R&B song that consists of a passionate female vocal, alongside wide exhale sounds and wide repetitive female vocals, singing over claps, punchy kick, shimmering hi hats, synth lead melody and simple synth bass. It sounds energetic and exciting.", "data_idx": 4691, "number": 0, "label": "hiphop"} +{"file_name": "test_07789.png", "caption": "The low quality recording features a R&B song that consists of a passionate female vocal, alongside wide exhale sounds and wide repetitive female vocals, singing over claps, punchy kick, shimmering hi hats, synth lead melody and simple synth bass. It sounds energetic and exciting.", "data_idx": 4691, "number": 1, "label": "hiphop"} +{"file_name": "test_07790.png", "caption": "The low quality recording features a R&B song that consists of a passionate female vocal, alongside wide exhale sounds and wide repetitive female vocals, singing over claps, punchy kick, shimmering hi hats, synth lead melody and simple synth bass. It sounds energetic and exciting.", "data_idx": 4691, "number": 2, "label": "hiphop"} +{"file_name": "test_07791.png", "caption": "The low quality recording features a R&B song that consists of a passionate female vocal, alongside wide exhale sounds and wide repetitive female vocals, singing over claps, punchy kick, shimmering hi hats, synth lead melody and simple synth bass. It sounds energetic and exciting.", "data_idx": 4691, "number": 3, "label": "hiphop"} +{"file_name": "test_07792.png", "caption": "A male rock singer sings this climatic solo with a long sustained note. The tempo is medium with strong rock drumming, guitar rhythm; guitar lead and a percussive bass line. The song is hard rock with a lot of spirit and excitement. The audio quality is bad with a lot of ambient crowd noises.", "data_idx": 4693, "number": 0, "label": "hiphop"} +{"file_name": "test_07793.png", "caption": "A male rock singer sings this climatic solo with a long sustained note. The tempo is medium with strong rock drumming, guitar rhythm; guitar lead and a percussive bass line. The song is hard rock with a lot of spirit and excitement. The audio quality is bad with a lot of ambient crowd noises.", "data_idx": 4693, "number": 1, "label": "hiphop"} +{"file_name": "test_07794.png", "caption": "A male rock singer sings this climatic solo with a long sustained note. The tempo is medium with strong rock drumming, guitar rhythm; guitar lead and a percussive bass line. The song is hard rock with a lot of spirit and excitement. The audio quality is bad with a lot of ambient crowd noises.", "data_idx": 4693, "number": 2, "label": "hiphop"} +{"file_name": "test_07795.png", "caption": "A male rock singer sings this climatic solo with a long sustained note. The tempo is medium with strong rock drumming, guitar rhythm; guitar lead and a percussive bass line. The song is hard rock with a lot of spirit and excitement. The audio quality is bad with a lot of ambient crowd noises.", "data_idx": 4693, "number": 3, "label": "hiphop"} +{"file_name": "test_07796.png", "caption": "This is an amateur recording of a Bavarian folk music performance. The audio quality is not that great. There is a male vocalist singing in the lead. Then, brass elements start playing a cheerful tune. There is a festive atmosphere in this recording. It could be playing in the background at an Oktoberfest event.", "data_idx": 4694, "number": 0, "label": "classical"} +{"file_name": "test_07797.png", "caption": "This is an amateur recording of a Bavarian folk music performance. The audio quality is not that great. There is a male vocalist singing in the lead. Then, brass elements start playing a cheerful tune. There is a festive atmosphere in this recording. It could be playing in the background at an Oktoberfest event.", "data_idx": 4694, "number": 1, "label": "classical"} +{"file_name": "test_07798.png", "caption": "The low quality recording features a live performance of a pop song and it consists of a passionate boy vocal singing over wide synth melody, reversed crash riser, punchy kick and snare hits, shimmering hi hats, groovy synth bass and later sustained synth bass. There is some crowd noise and cheering sounds. It sounds addictive, energetic and exciting.", "data_idx": 4695, "number": 0, "label": "disco"} +{"file_name": "test_07799.png", "caption": "The low quality recording features a live performance of a pop song and it consists of a passionate boy vocal singing over wide synth melody, reversed crash riser, punchy kick and snare hits, shimmering hi hats, groovy synth bass and later sustained synth bass. There is some crowd noise and cheering sounds. It sounds addictive, energetic and exciting.", "data_idx": 4695, "number": 1, "label": "disco"} +{"file_name": "test_07800.png", "caption": "The low quality recording features a live performance of a pop song and it consists of a passionate boy vocal singing over wide synth melody, reversed crash riser, punchy kick and snare hits, shimmering hi hats, groovy synth bass and later sustained synth bass. There is some crowd noise and cheering sounds. It sounds addictive, energetic and exciting.", "data_idx": 4695, "number": 2, "label": "disco"} +{"file_name": "test_07801.png", "caption": "The low quality recording features a live performance of a pop song and it consists of a passionate boy vocal singing over wide synth melody, reversed crash riser, punchy kick and snare hits, shimmering hi hats, groovy synth bass and later sustained synth bass. There is some crowd noise and cheering sounds. It sounds addictive, energetic and exciting.", "data_idx": 4695, "number": 3, "label": "disco"} +{"file_name": "test_07802.png", "caption": "This DJ song features a DJ console being used to mix music. Vinyl scratching is played in this clip. The voice is also cut as a DJ drop for this song. The percussion plays a simple steady beat in common time. This song can be played at a DJ party.", "data_idx": 4698, "number": 0, "label": "reggae"} +{"file_name": "test_07803.png", "caption": "This DJ song features a DJ console being used to mix music. Vinyl scratching is played in this clip. The voice is also cut as a DJ drop for this song. The percussion plays a simple steady beat in common time. This song can be played at a DJ party.", "data_idx": 4698, "number": 1, "label": "reggae"} +{"file_name": "test_07804.png", "caption": "This DJ song features a DJ console being used to mix music. Vinyl scratching is played in this clip. The voice is also cut as a DJ drop for this song. The percussion plays a simple steady beat in common time. This song can be played at a DJ party.", "data_idx": 4698, "number": 2, "label": "reggae"} +{"file_name": "test_07805.png", "caption": "This DJ song features a DJ console being used to mix music. Vinyl scratching is played in this clip. The voice is also cut as a DJ drop for this song. The percussion plays a simple steady beat in common time. This song can be played at a DJ party.", "data_idx": 4698, "number": 3, "label": "reggae"} +{"file_name": "test_07806.png", "caption": "This audio features an electric guitar. This guitar is played through an effects pedal adding reverb to the sound. A guitar lick is played with one open string and the melody on the higher register of another string. There are no other instruments in this song. There is no voice in this song. This song can be played in an instructional video on effects pedals.", "data_idx": 4701, "number": 0, "label": "hiphop"} +{"file_name": "test_07807.png", "caption": "This audio features an electric guitar. This guitar is played through an effects pedal adding reverb to the sound. A guitar lick is played with one open string and the melody on the higher register of another string. There are no other instruments in this song. There is no voice in this song. This song can be played in an instructional video on effects pedals.", "data_idx": 4701, "number": 1, "label": "hiphop"} +{"file_name": "test_07808.png", "caption": "This audio features an electric guitar. This guitar is played through an effects pedal adding reverb to the sound. A guitar lick is played with one open string and the melody on the higher register of another string. There are no other instruments in this song. There is no voice in this song. This song can be played in an instructional video on effects pedals.", "data_idx": 4701, "number": 2, "label": "hiphop"} +{"file_name": "test_07809.png", "caption": "This audio features an electric guitar. This guitar is played through an effects pedal adding reverb to the sound. A guitar lick is played with one open string and the melody on the higher register of another string. There are no other instruments in this song. There is no voice in this song. This song can be played in an instructional video on effects pedals.", "data_idx": 4701, "number": 3, "label": "hiphop"} +{"file_name": "test_07810.png", "caption": "This music is a percussive instrumental. The tempo is fast with a vigorous, vivacious beat. It is rhythmic, pulsating, vigorous and energetic with a male voice giving instructions on drumming styles. This clip is an instruction audio/video on drumming patterns.", "data_idx": 4702, "number": 0, "label": "hiphop"} +{"file_name": "test_07811.png", "caption": "This music is a percussive instrumental. The tempo is fast with a vigorous, vivacious beat. It is rhythmic, pulsating, vigorous and energetic with a male voice giving instructions on drumming styles. This clip is an instruction audio/video on drumming patterns.", "data_idx": 4702, "number": 1, "label": "hiphop"} +{"file_name": "test_07812.png", "caption": "This is a live performance of a salsa music piece. The melody is being played by loud and high-pitched trumpets with the backing of the piano and the bass guitar. In the rhythmic background, a group of latin percussive elements are playing such as cowbell and maracas. The atmosphere is vibrant and sensual. This piece could be included in the soundtrack of a romance movie that takes place in the Caribbeans or Latin America.", "data_idx": 4703, "number": 0, "label": "reggae"} +{"file_name": "test_07813.png", "caption": "This is a live performance of a salsa music piece. The melody is being played by loud and high-pitched trumpets with the backing of the piano and the bass guitar. In the rhythmic background, a group of latin percussive elements are playing such as cowbell and maracas. The atmosphere is vibrant and sensual. This piece could be included in the soundtrack of a romance movie that takes place in the Caribbeans or Latin America.", "data_idx": 4703, "number": 1, "label": "reggae"} +{"file_name": "test_07814.png", "caption": "This audio contains background noises of people talking. Then the music begins involving synth pad sounds playing long drones in the lower mid range to the higher register with little sparkling tones on top playing in a high pitch. This song may be playing for a meditation session.", "data_idx": 4706, "number": 0, "label": "hiphop"} +{"file_name": "test_07815.png", "caption": "This audio contains background noises of people talking. Then the music begins involving synth pad sounds playing long drones in the lower mid range to the higher register with little sparkling tones on top playing in a high pitch. This song may be playing for a meditation session.", "data_idx": 4706, "number": 1, "label": "hiphop"} +{"file_name": "test_07816.png", "caption": "The low quality recording features a live performance of bagpipe melodies played over some percussive wooden elements. The recording is muffled, noisy, in mono and it sounds soulful and passionate.", "data_idx": 4707, "number": 0, "label": "classical"} +{"file_name": "test_07817.png", "caption": "The low quality recording features a live performance of bagpipe melodies played over some percussive wooden elements. The recording is muffled, noisy, in mono and it sounds soulful and passionate.", "data_idx": 4707, "number": 1, "label": "classical"} +{"file_name": "test_07818.png", "caption": "The low quality recording features a live performance of bagpipe melodies played over some percussive wooden elements. The recording is muffled, noisy, in mono and it sounds soulful and passionate.", "data_idx": 4707, "number": 2, "label": "classical"} +{"file_name": "test_07819.png", "caption": "The low quality recording features a live performance of bagpipe melodies played over some percussive wooden elements. The recording is muffled, noisy, in mono and it sounds soulful and passionate.", "data_idx": 4707, "number": 3, "label": "classical"} +{"file_name": "test_07820.png", "caption": "This amateur folk song features a stringed instrument being played by plucking the strings. This is accompanied by a percussion that sounds like a shaker. This is a low quality recording and the sound of whistling can be heard in the background. There are no voices in the song. This song can be played in a movie featuring a visit to a village.", "data_idx": 4709, "number": 0, "label": "disco"} +{"file_name": "test_07821.png", "caption": "This amateur folk song features a stringed instrument being played by plucking the strings. This is accompanied by a percussion that sounds like a shaker. This is a low quality recording and the sound of whistling can be heard in the background. There are no voices in the song. This song can be played in a movie featuring a visit to a village.", "data_idx": 4709, "number": 1, "label": "disco"} +{"file_name": "test_07822.png", "caption": "This amateur folk song features a stringed instrument being played by plucking the strings. This is accompanied by a percussion that sounds like a shaker. This is a low quality recording and the sound of whistling can be heard in the background. There are no voices in the song. This song can be played in a movie featuring a visit to a village.", "data_idx": 4709, "number": 2, "label": "disco"} +{"file_name": "test_07823.png", "caption": "This amateur folk song features a stringed instrument being played by plucking the strings. This is accompanied by a percussion that sounds like a shaker. This is a low quality recording and the sound of whistling can be heard in the background. There are no voices in the song. This song can be played in a movie featuring a visit to a village.", "data_idx": 4709, "number": 3, "label": "disco"} +{"file_name": "test_07824.png", "caption": "This is a rocksteady/proto-reggae music piece. There is a male vocalist singing in a relaxed manner. The electric guitar and the bass guitar is playing a groovy melody while occasional synth sounds from the keyboard can be heard. The rhythmic background consists of a slow tempo reggae acoustic drum beat. The atmosphere is chill. This piece could be used in the soundtrack of a summertime movie taking place on a tropical island.", "data_idx": 4710, "number": 0, "label": "reggae"} +{"file_name": "test_07825.png", "caption": "This is a rocksteady/proto-reggae music piece. There is a male vocalist singing in a relaxed manner. The electric guitar and the bass guitar is playing a groovy melody while occasional synth sounds from the keyboard can be heard. The rhythmic background consists of a slow tempo reggae acoustic drum beat. The atmosphere is chill. This piece could be used in the soundtrack of a summertime movie taking place on a tropical island.", "data_idx": 4710, "number": 1, "label": "reggae"} +{"file_name": "test_07826.png", "caption": "This is a rocksteady/proto-reggae music piece. There is a male vocalist singing in a relaxed manner. The electric guitar and the bass guitar is playing a groovy melody while occasional synth sounds from the keyboard can be heard. The rhythmic background consists of a slow tempo reggae acoustic drum beat. The atmosphere is chill. This piece could be used in the soundtrack of a summertime movie taking place on a tropical island.", "data_idx": 4710, "number": 2, "label": "reggae"} +{"file_name": "test_07827.png", "caption": "This is a rocksteady/proto-reggae music piece. There is a male vocalist singing in a relaxed manner. The electric guitar and the bass guitar is playing a groovy melody while occasional synth sounds from the keyboard can be heard. The rhythmic background consists of a slow tempo reggae acoustic drum beat. The atmosphere is chill. This piece could be used in the soundtrack of a summertime movie taking place on a tropical island.", "data_idx": 4710, "number": 3, "label": "reggae"} +{"file_name": "test_07828.png", "caption": "This is a gear showcase jam. The electric guitar is being played initially without and then with the effect of a reverb pedal. There is a groovy feel to the solo that is being played. This piece can be sampled to be used as an advertisement jingle or to be used in beat-making.", "data_idx": 4712, "number": 0, "label": "jazz"} +{"file_name": "test_07829.png", "caption": "This is a gear showcase jam. The electric guitar is being played initially without and then with the effect of a reverb pedal. There is a groovy feel to the solo that is being played. This piece can be sampled to be used as an advertisement jingle or to be used in beat-making.", "data_idx": 4712, "number": 1, "label": "jazz"} +{"file_name": "test_07830.png", "caption": "This is a gear showcase jam. The electric guitar is being played initially without and then with the effect of a reverb pedal. There is a groovy feel to the solo that is being played. This piece can be sampled to be used as an advertisement jingle or to be used in beat-making.", "data_idx": 4712, "number": 2, "label": "jazz"} +{"file_name": "test_07831.png", "caption": "This is a gear showcase jam. The electric guitar is being played initially without and then with the effect of a reverb pedal. There is a groovy feel to the solo that is being played. This piece can be sampled to be used as an advertisement jingle or to be used in beat-making.", "data_idx": 4712, "number": 3, "label": "jazz"} +{"file_name": "test_07832.png", "caption": "This is the sound of a shofar, a bugle-like instrument. It is blown by a person using the lips. This shofar music is playing only one note. There are no other instruments in this song. There is no voice in this song. This song is used for religious purposes.", "data_idx": 4713, "number": 0, "label": "jazz"} +{"file_name": "test_07833.png", "caption": "This is the sound of a shofar, a bugle-like instrument. It is blown by a person using the lips. This shofar music is playing only one note. There are no other instruments in this song. There is no voice in this song. This song is used for religious purposes.", "data_idx": 4713, "number": 1, "label": "jazz"} +{"file_name": "test_07834.png", "caption": "This low quality recording features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. After two bars, the percussion plays only the ride cymbal. A distortion guitar plays power chords and after two bars, lets the last chord ring. The bass plays the root notes of the chords. This song can be played in a Transformers style movie.", "data_idx": 4714, "number": 0, "label": "metal"} +{"file_name": "test_07835.png", "caption": "This low quality recording features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. After two bars, the percussion plays only the ride cymbal. A distortion guitar plays power chords and after two bars, lets the last chord ring. The bass plays the root notes of the chords. This song can be played in a Transformers style movie.", "data_idx": 4714, "number": 1, "label": "metal"} +{"file_name": "test_07836.png", "caption": "This low quality recording features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. After two bars, the percussion plays only the ride cymbal. A distortion guitar plays power chords and after two bars, lets the last chord ring. The bass plays the root notes of the chords. This song can be played in a Transformers style movie.", "data_idx": 4714, "number": 2, "label": "metal"} +{"file_name": "test_07837.png", "caption": "This low quality recording features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. After two bars, the percussion plays only the ride cymbal. A distortion guitar plays power chords and after two bars, lets the last chord ring. The bass plays the root notes of the chords. This song can be played in a Transformers style movie.", "data_idx": 4714, "number": 3, "label": "metal"} +{"file_name": "test_07838.png", "caption": "This is a classical music piece performed on a baritone saxophone. The tone of the baritone saxophone resembles a cello sound. There is a tender feel to the melody being played. The atmosphere is heart-touching. This piece would fit perfectly in the soundtrack of a documentary with serene scenes such as a birdlife documentary.", "data_idx": 4717, "number": 0, "label": "classical"} +{"file_name": "test_07839.png", "caption": "This is a classical music piece performed on a baritone saxophone. The tone of the baritone saxophone resembles a cello sound. There is a tender feel to the melody being played. The atmosphere is heart-touching. This piece would fit perfectly in the soundtrack of a documentary with serene scenes such as a birdlife documentary.", "data_idx": 4717, "number": 1, "label": "classical"} +{"file_name": "test_07840.png", "caption": "This is a classical music piece performed on a baritone saxophone. The tone of the baritone saxophone resembles a cello sound. There is a tender feel to the melody being played. The atmosphere is heart-touching. This piece would fit perfectly in the soundtrack of a documentary with serene scenes such as a birdlife documentary.", "data_idx": 4717, "number": 2, "label": "classical"} +{"file_name": "test_07841.png", "caption": "This is a classical music piece performed on a baritone saxophone. The tone of the baritone saxophone resembles a cello sound. There is a tender feel to the melody being played. The atmosphere is heart-touching. This piece would fit perfectly in the soundtrack of a documentary with serene scenes such as a birdlife documentary.", "data_idx": 4717, "number": 3, "label": "classical"} +{"file_name": "test_07842.png", "caption": "The low quality recording features a compilation of bright trumpet melodies. The recording is noisy, in mono and it sounds passionate and jazzy.", "data_idx": 4719, "number": 0, "label": "jazz"} +{"file_name": "test_07843.png", "caption": "The low quality recording features a compilation of bright trumpet melodies. The recording is noisy, in mono and it sounds passionate and jazzy.", "data_idx": 4719, "number": 1, "label": "jazz"} +{"file_name": "test_07844.png", "caption": "The low quality recording features a compilation of bright trumpet melodies. The recording is noisy, in mono and it sounds passionate and jazzy.", "data_idx": 4719, "number": 2, "label": "jazz"} +{"file_name": "test_07845.png", "caption": "The low quality recording features a compilation of bright trumpet melodies. The recording is noisy, in mono and it sounds passionate and jazzy.", "data_idx": 4719, "number": 3, "label": "jazz"} +{"file_name": "test_07846.png", "caption": "This classical song features the main melody played by trumpets. This is accompanied by violins playing two note trills. A xylophone plays notes in the background. Church bells are played in the background. There is no percussion in this song. This is an instrumental song. There are no voices in this song. The mood of this song is relaxing. This song can be played in a magical scene in a movie.", "data_idx": 4721, "number": 0, "label": "classical"} +{"file_name": "test_07847.png", "caption": "This classical song features the main melody played by trumpets. This is accompanied by violins playing two note trills. A xylophone plays notes in the background. Church bells are played in the background. There is no percussion in this song. This is an instrumental song. There are no voices in this song. The mood of this song is relaxing. This song can be played in a magical scene in a movie.", "data_idx": 4721, "number": 1, "label": "classical"} +{"file_name": "test_07848.png", "caption": "This classical song features the main melody played by trumpets. This is accompanied by violins playing two note trills. A xylophone plays notes in the background. Church bells are played in the background. There is no percussion in this song. This is an instrumental song. There are no voices in this song. The mood of this song is relaxing. This song can be played in a magical scene in a movie.", "data_idx": 4721, "number": 2, "label": "classical"} +{"file_name": "test_07849.png", "caption": "This classical song features the main melody played by trumpets. This is accompanied by violins playing two note trills. A xylophone plays notes in the background. Church bells are played in the background. There is no percussion in this song. This is an instrumental song. There are no voices in this song. The mood of this song is relaxing. This song can be played in a magical scene in a movie.", "data_idx": 4721, "number": 3, "label": "classical"} +{"file_name": "test_07850.png", "caption": "This is the live performance of a progressive metal music piece. The electric guitar is playing a complex solo in the lead. There is a bass guitar playing in the background. The rhythm is played by the acoustic drums. There is an agitated feel to the piece. This piece could be playing in the background at a rock bar.", "data_idx": 4724, "number": 0, "label": "rock"} +{"file_name": "test_07851.png", "caption": "This is the live performance of a progressive metal music piece. The electric guitar is playing a complex solo in the lead. There is a bass guitar playing in the background. The rhythm is played by the acoustic drums. There is an agitated feel to the piece. This piece could be playing in the background at a rock bar.", "data_idx": 4724, "number": 1, "label": "rock"} +{"file_name": "test_07852.png", "caption": "This is the live performance of a progressive metal music piece. The electric guitar is playing a complex solo in the lead. There is a bass guitar playing in the background. The rhythm is played by the acoustic drums. There is an agitated feel to the piece. This piece could be playing in the background at a rock bar.", "data_idx": 4724, "number": 2, "label": "rock"} +{"file_name": "test_07853.png", "caption": "This is the live performance of a progressive metal music piece. The electric guitar is playing a complex solo in the lead. There is a bass guitar playing in the background. The rhythm is played by the acoustic drums. There is an agitated feel to the piece. This piece could be playing in the background at a rock bar.", "data_idx": 4724, "number": 3, "label": "rock"} +{"file_name": "test_07854.png", "caption": "The low quality recording features a punk song that contains flat male vocal singing over punchy kick and snare hits, shimmering cymbals, wide electric guitars and groovy bass guitar. It sounds energetic, exciting and upbeat - like something you would jump to at concerts.", "data_idx": 4725, "number": 0, "label": "rock"} +{"file_name": "test_07855.png", "caption": "The low quality recording features a punk song that contains flat male vocal singing over punchy kick and snare hits, shimmering cymbals, wide electric guitars and groovy bass guitar. It sounds energetic, exciting and upbeat - like something you would jump to at concerts.", "data_idx": 4725, "number": 1, "label": "rock"} +{"file_name": "test_07856.png", "caption": "The low quality recording features a filtered monster growl, followed by a wide arpeggiated synth. It sounds spooky and haunting.", "data_idx": 4726, "number": 0, "label": "hiphop"} +{"file_name": "test_07857.png", "caption": "The low quality recording features a filtered monster growl, followed by a wide arpeggiated synth. It sounds spooky and haunting.", "data_idx": 4726, "number": 1, "label": "hiphop"} +{"file_name": "test_07858.png", "caption": "The low quality recording features a filtered monster growl, followed by a wide arpeggiated synth. It sounds spooky and haunting.", "data_idx": 4726, "number": 2, "label": "hiphop"} +{"file_name": "test_07859.png", "caption": "The low quality recording features a filtered monster growl, followed by a wide arpeggiated synth. It sounds spooky and haunting.", "data_idx": 4726, "number": 3, "label": "hiphop"} +{"file_name": "test_07860.png", "caption": "This song contains a digital techno drum with a kick on every beat. A sub-bass is inviting to dance along with synth pluck sounds playing a melody in a higher key along with a female voice. A very low pitched male voice sample comes in for a moment before a synth pad sound playing in the midrange comes in. This song may be playing in a techno club.", "data_idx": 4727, "number": 0, "label": "jazz"} +{"file_name": "test_07861.png", "caption": "This song contains a digital techno drum with a kick on every beat. A sub-bass is inviting to dance along with synth pluck sounds playing a melody in a higher key along with a female voice. A very low pitched male voice sample comes in for a moment before a synth pad sound playing in the midrange comes in. This song may be playing in a techno club.", "data_idx": 4727, "number": 1, "label": "jazz"} +{"file_name": "test_07862.png", "caption": "This song contains a digital techno drum with a kick on every beat. A sub-bass is inviting to dance along with synth pluck sounds playing a melody in a higher key along with a female voice. A very low pitched male voice sample comes in for a moment before a synth pad sound playing in the midrange comes in. This song may be playing in a techno club.", "data_idx": 4727, "number": 2, "label": "jazz"} +{"file_name": "test_07863.png", "caption": "This song contains a digital techno drum with a kick on every beat. A sub-bass is inviting to dance along with synth pluck sounds playing a melody in a higher key along with a female voice. A very low pitched male voice sample comes in for a moment before a synth pad sound playing in the midrange comes in. This song may be playing in a techno club.", "data_idx": 4727, "number": 3, "label": "jazz"} +{"file_name": "test_07864.png", "caption": "This song features a drum solo. The drum solo has the accents on the cowbell. The tempo of this song is fast. The hi-hat accentuates the counts and is played in eighth note pattern. There are no other instruments in this song. This song can be played in an instructional video.", "data_idx": 4728, "number": 0, "label": "hiphop"} +{"file_name": "test_07865.png", "caption": "This song features a drum solo. The drum solo has the accents on the cowbell. The tempo of this song is fast. The hi-hat accentuates the counts and is played in eighth note pattern. There are no other instruments in this song. This song can be played in an instructional video.", "data_idx": 4728, "number": 1, "label": "hiphop"} +{"file_name": "test_07866.png", "caption": "This song features a drum solo. The drum solo has the accents on the cowbell. The tempo of this song is fast. The hi-hat accentuates the counts and is played in eighth note pattern. There are no other instruments in this song. This song can be played in an instructional video.", "data_idx": 4728, "number": 2, "label": "hiphop"} +{"file_name": "test_07867.png", "caption": "This song features a drum solo. The drum solo has the accents on the cowbell. The tempo of this song is fast. The hi-hat accentuates the counts and is played in eighth note pattern. There are no other instruments in this song. This song can be played in an instructional video.", "data_idx": 4728, "number": 3, "label": "hiphop"} +{"file_name": "test_07868.png", "caption": "This is a rock-n-roll music piece. There is a male vocalist in the lead singing in a gritty manner. The electric guitar is playing a simple tune with the backing of the bass guitar. The rhythmic background consists of a basic upbeat acoustic rock drum beat. There is a groovy feel to this piece. It could be playing in the background at a rock bar. It could also be used in the soundtrack of a feelgood movie during road trip scenes.", "data_idx": 4731, "number": 0, "label": "hiphop"} +{"file_name": "test_07869.png", "caption": "This is a rock-n-roll music piece. There is a male vocalist in the lead singing in a gritty manner. The electric guitar is playing a simple tune with the backing of the bass guitar. The rhythmic background consists of a basic upbeat acoustic rock drum beat. There is a groovy feel to this piece. It could be playing in the background at a rock bar. It could also be used in the soundtrack of a feelgood movie during road trip scenes.", "data_idx": 4731, "number": 1, "label": "hiphop"} +{"file_name": "test_07870.png", "caption": "This is a rock-n-roll music piece. There is a male vocalist in the lead singing in a gritty manner. The electric guitar is playing a simple tune with the backing of the bass guitar. The rhythmic background consists of a basic upbeat acoustic rock drum beat. There is a groovy feel to this piece. It could be playing in the background at a rock bar. It could also be used in the soundtrack of a feelgood movie during road trip scenes.", "data_idx": 4731, "number": 2, "label": "hiphop"} +{"file_name": "test_07871.png", "caption": "This is a rock-n-roll music piece. There is a male vocalist in the lead singing in a gritty manner. The electric guitar is playing a simple tune with the backing of the bass guitar. The rhythmic background consists of a basic upbeat acoustic rock drum beat. There is a groovy feel to this piece. It could be playing in the background at a rock bar. It could also be used in the soundtrack of a feelgood movie during road trip scenes.", "data_idx": 4731, "number": 3, "label": "hiphop"} +{"file_name": "test_07872.png", "caption": "The low quality recording features a flat male vocal talking over an electro song that consists of a punchy \"4 on the floor\" kick pattern, short snare hit and offbeat shimmering hi hats. In the second part of the loop, the electro song is being scratched by a DJ. The recording is noisy and in mono.", "data_idx": 4734, "number": 0, "label": "hiphop"} +{"file_name": "test_07873.png", "caption": "The low quality recording features a flat male vocal talking over an electro song that consists of a punchy \"4 on the floor\" kick pattern, short snare hit and offbeat shimmering hi hats. In the second part of the loop, the electro song is being scratched by a DJ. The recording is noisy and in mono.", "data_idx": 4734, "number": 1, "label": "hiphop"} +{"file_name": "test_07874.png", "caption": "The low quality recording features a flat male vocal talking over an electro song that consists of a punchy \"4 on the floor\" kick pattern, short snare hit and offbeat shimmering hi hats. In the second part of the loop, the electro song is being scratched by a DJ. The recording is noisy and in mono.", "data_idx": 4734, "number": 2, "label": "hiphop"} +{"file_name": "test_07875.png", "caption": "The low quality recording features a flat male vocal talking over an electro song that consists of a punchy \"4 on the floor\" kick pattern, short snare hit and offbeat shimmering hi hats. In the second part of the loop, the electro song is being scratched by a DJ. The recording is noisy and in mono.", "data_idx": 4734, "number": 3, "label": "hiphop"} +{"file_name": "test_07876.png", "caption": "A male vocalist sings this catchy song. The tempo is fast with synthesiser arrangement, punchy digital drum beats, groovy bass line and melodic vocal backup. The music has a repetitive, catchy vocal riff. It is youthful, punchy, bouncy, thumping, pulsating, and throbbing with soulful vocals and a dance groove. This music is Deep House/Techno pop.", "data_idx": 4735, "number": 0, "label": "hiphop"} +{"file_name": "test_07877.png", "caption": "A male vocalist sings this catchy song. The tempo is fast with synthesiser arrangement, punchy digital drum beats, groovy bass line and melodic vocal backup. The music has a repetitive, catchy vocal riff. It is youthful, punchy, bouncy, thumping, pulsating, and throbbing with soulful vocals and a dance groove. This music is Deep House/Techno pop.", "data_idx": 4735, "number": 1, "label": "hiphop"} +{"file_name": "test_07878.png", "caption": "A male vocalist sings this catchy song. The tempo is fast with synthesiser arrangement, punchy digital drum beats, groovy bass line and melodic vocal backup. The music has a repetitive, catchy vocal riff. It is youthful, punchy, bouncy, thumping, pulsating, and throbbing with soulful vocals and a dance groove. This music is Deep House/Techno pop.", "data_idx": 4735, "number": 2, "label": "hiphop"} +{"file_name": "test_07879.png", "caption": "A male vocalist sings this catchy song. The tempo is fast with synthesiser arrangement, punchy digital drum beats, groovy bass line and melodic vocal backup. The music has a repetitive, catchy vocal riff. It is youthful, punchy, bouncy, thumping, pulsating, and throbbing with soulful vocals and a dance groove. This music is Deep House/Techno pop.", "data_idx": 4735, "number": 3, "label": "hiphop"} +{"file_name": "test_07880.png", "caption": "This song is a duet sung in a two part harmony in a foreign language. The tempo is slow with a male voice chanting a call to which the response is this melodious harmony. The song is soothing, calming, delicate, charming and melodic. This could possibly be a religious ritual.", "data_idx": 4737, "number": 0, "label": "rock"} +{"file_name": "test_07881.png", "caption": "This song is a duet sung in a two part harmony in a foreign language. The tempo is slow with a male voice chanting a call to which the response is this melodious harmony. The song is soothing, calming, delicate, charming and melodic. This could possibly be a religious ritual.", "data_idx": 4737, "number": 1, "label": "rock"} +{"file_name": "test_07882.png", "caption": "This song is a duet sung in a two part harmony in a foreign language. The tempo is slow with a male voice chanting a call to which the response is this melodious harmony. The song is soothing, calming, delicate, charming and melodic. This could possibly be a religious ritual.", "data_idx": 4737, "number": 2, "label": "rock"} +{"file_name": "test_07883.png", "caption": "This song is a duet sung in a two part harmony in a foreign language. The tempo is slow with a male voice chanting a call to which the response is this melodious harmony. The song is soothing, calming, delicate, charming and melodic. This could possibly be a religious ritual.", "data_idx": 4737, "number": 3, "label": "rock"} +{"file_name": "test_07884.png", "caption": "This is a live recording of an instrumentalist playing a didgeridoo. The melody is rapid and bouncy.", "data_idx": 4739, "number": 0, "label": "jazz"} +{"file_name": "test_07885.png", "caption": "This is a live recording of an instrumentalist playing a didgeridoo. The melody is rapid and bouncy.", "data_idx": 4739, "number": 1, "label": "jazz"} +{"file_name": "test_07886.png", "caption": "This is a fun, upbeat country folk song. We hear a banjo player strum rapidly and then go on to do a solo. We hear cheering and clapping fans, intricate basslines and acoustic guitars being rapidly strummed. It's a fun, uptempo song that would be heard in a barnyard.", "data_idx": 4740, "number": 0, "label": "classical"} +{"file_name": "test_07887.png", "caption": "This is a fun, upbeat country folk song. We hear a banjo player strum rapidly and then go on to do a solo. We hear cheering and clapping fans, intricate basslines and acoustic guitars being rapidly strummed. It's a fun, uptempo song that would be heard in a barnyard.", "data_idx": 4740, "number": 1, "label": "classical"} +{"file_name": "test_07888.png", "caption": "This is an instrument showcase jam. The steel drums are being played in a gentle manner. Then, a male voice starts describing the features of the steel drums. The instrument has a relaxing timbre. The parts where it is being played can be sampled for use in the background of meditation videos.", "data_idx": 4741, "number": 0, "label": "classical"} +{"file_name": "test_07889.png", "caption": "This is an instrument showcase jam. The steel drums are being played in a gentle manner. Then, a male voice starts describing the features of the steel drums. The instrument has a relaxing timbre. The parts where it is being played can be sampled for use in the background of meditation videos.", "data_idx": 4741, "number": 1, "label": "classical"} +{"file_name": "test_07890.png", "caption": "This is an instrument showcase jam. The steel drums are being played in a gentle manner. Then, a male voice starts describing the features of the steel drums. The instrument has a relaxing timbre. The parts where it is being played can be sampled for use in the background of meditation videos.", "data_idx": 4741, "number": 2, "label": "classical"} +{"file_name": "test_07891.png", "caption": "This is an instrument showcase jam. The steel drums are being played in a gentle manner. Then, a male voice starts describing the features of the steel drums. The instrument has a relaxing timbre. The parts where it is being played can be sampled for use in the background of meditation videos.", "data_idx": 4741, "number": 3, "label": "classical"} +{"file_name": "test_07892.png", "caption": "This pop rock song features a male voice singing the main melody. A backing male voice sings the last part of the line in harmony. This is accompanied by a piano playing staccato chords. There is a momentary silence of instruments except the percussion after the chords are struck. An acoustic guitar plays chords in the background. A bass guitar plays the root notes of the chords. The percussion plays a simple beat in common time and finishes the bar with a roll. Then the drum plays with the beat with an open hi-hat. The mood of this song is happy. This song can be played in a coming of age movie.", "data_idx": 4742, "number": 0, "label": "rock"} +{"file_name": "test_07893.png", "caption": "This pop rock song features a male voice singing the main melody. A backing male voice sings the last part of the line in harmony. This is accompanied by a piano playing staccato chords. There is a momentary silence of instruments except the percussion after the chords are struck. An acoustic guitar plays chords in the background. A bass guitar plays the root notes of the chords. The percussion plays a simple beat in common time and finishes the bar with a roll. Then the drum plays with the beat with an open hi-hat. The mood of this song is happy. This song can be played in a coming of age movie.", "data_idx": 4742, "number": 1, "label": "rock"} +{"file_name": "test_07894.png", "caption": "This pop rock song features a male voice singing the main melody. A backing male voice sings the last part of the line in harmony. This is accompanied by a piano playing staccato chords. There is a momentary silence of instruments except the percussion after the chords are struck. An acoustic guitar plays chords in the background. A bass guitar plays the root notes of the chords. The percussion plays a simple beat in common time and finishes the bar with a roll. Then the drum plays with the beat with an open hi-hat. The mood of this song is happy. This song can be played in a coming of age movie.", "data_idx": 4742, "number": 2, "label": "rock"} +{"file_name": "test_07895.png", "caption": "This pop rock song features a male voice singing the main melody. A backing male voice sings the last part of the line in harmony. This is accompanied by a piano playing staccato chords. There is a momentary silence of instruments except the percussion after the chords are struck. An acoustic guitar plays chords in the background. A bass guitar plays the root notes of the chords. The percussion plays a simple beat in common time and finishes the bar with a roll. Then the drum plays with the beat with an open hi-hat. The mood of this song is happy. This song can be played in a coming of age movie.", "data_idx": 4742, "number": 3, "label": "rock"} +{"file_name": "test_07896.png", "caption": "This contemporary gospel song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. The bass plays the root nots of the chords. An electric guitar plays fills in between lines. The quality of this audio is low and other instruments cannot be easily identified. This song can be played in a Christian movie.", "data_idx": 4745, "number": 0, "label": "country"} +{"file_name": "test_07897.png", "caption": "This contemporary gospel song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. The bass plays the root nots of the chords. An electric guitar plays fills in between lines. The quality of this audio is low and other instruments cannot be easily identified. This song can be played in a Christian movie.", "data_idx": 4745, "number": 1, "label": "country"} +{"file_name": "test_07898.png", "caption": "This contemporary gospel song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. The bass plays the root nots of the chords. An electric guitar plays fills in between lines. The quality of this audio is low and other instruments cannot be easily identified. This song can be played in a Christian movie.", "data_idx": 4745, "number": 2, "label": "country"} +{"file_name": "test_07899.png", "caption": "This contemporary gospel song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. The bass plays the root nots of the chords. An electric guitar plays fills in between lines. The quality of this audio is low and other instruments cannot be easily identified. This song can be played in a Christian movie.", "data_idx": 4745, "number": 3, "label": "country"} +{"file_name": "test_07900.png", "caption": "This song contains a male voice singing in the midrange while percussion instruments such a triangle and drums are playing a rhythm along with an e-bass. A baritone saxophone is playing a melody and someone is strumming chords and a melody on an acoustic guitar. This is an amateur recording. You can hear a high frequency tone from the recording and the sound is lagging. This song may be playing on the radio in a small village.", "data_idx": 4747, "number": 0, "label": "hiphop"} +{"file_name": "test_07901.png", "caption": "This song contains a male voice singing in the midrange while percussion instruments such a triangle and drums are playing a rhythm along with an e-bass. A baritone saxophone is playing a melody and someone is strumming chords and a melody on an acoustic guitar. This is an amateur recording. You can hear a high frequency tone from the recording and the sound is lagging. This song may be playing on the radio in a small village.", "data_idx": 4747, "number": 1, "label": "hiphop"} +{"file_name": "test_07902.png", "caption": "This song contains a male voice singing in the midrange while percussion instruments such a triangle and drums are playing a rhythm along with an e-bass. A baritone saxophone is playing a melody and someone is strumming chords and a melody on an acoustic guitar. This is an amateur recording. You can hear a high frequency tone from the recording and the sound is lagging. This song may be playing on the radio in a small village.", "data_idx": 4747, "number": 2, "label": "hiphop"} +{"file_name": "test_07903.png", "caption": "This song contains a male voice singing in the midrange while percussion instruments such a triangle and drums are playing a rhythm along with an e-bass. A baritone saxophone is playing a melody and someone is strumming chords and a melody on an acoustic guitar. This is an amateur recording. You can hear a high frequency tone from the recording and the sound is lagging. This song may be playing on the radio in a small village.", "data_idx": 4747, "number": 3, "label": "hiphop"} +{"file_name": "test_07904.png", "caption": "This music is a mesmerising Chinese instrumental. The tempo is medium with a melodious Chinese harp or Guzheng with rhythmic pipa, violin harmony and Chinese percussion instruments. The music is soft, soothing, calming, ethereal, meditative, mellifluous,euphonious and enchanting.", "data_idx": 4748, "number": 0, "label": "classical"} +{"file_name": "test_07905.png", "caption": "This music is a mesmerising Chinese instrumental. The tempo is medium with a melodious Chinese harp or Guzheng with rhythmic pipa, violin harmony and Chinese percussion instruments. The music is soft, soothing, calming, ethereal, meditative, mellifluous,euphonious and enchanting.", "data_idx": 4748, "number": 1, "label": "classical"} +{"file_name": "test_07906.png", "caption": "This music is a mesmerising Chinese instrumental. The tempo is medium with a melodious Chinese harp or Guzheng with rhythmic pipa, violin harmony and Chinese percussion instruments. The music is soft, soothing, calming, ethereal, meditative, mellifluous,euphonious and enchanting.", "data_idx": 4748, "number": 2, "label": "classical"} +{"file_name": "test_07907.png", "caption": "This music is a mesmerising Chinese instrumental. The tempo is medium with a melodious Chinese harp or Guzheng with rhythmic pipa, violin harmony and Chinese percussion instruments. The music is soft, soothing, calming, ethereal, meditative, mellifluous,euphonious and enchanting.", "data_idx": 4748, "number": 3, "label": "classical"} +{"file_name": "test_07908.png", "caption": "A male vocalist sings this high energy Country Song. The tempo is fast with animated Banjo, fiddle, auto harp, acoustic guitar and cello. The song is cheerful, happy, enthusiastic, fervent, pulsating, buoyant and animated with vocalising and backup. This song is a spirited Country Folk Song.", "data_idx": 4749, "number": 0, "label": "blues"} +{"file_name": "test_07909.png", "caption": "A male vocalist sings this high energy Country Song. The tempo is fast with animated Banjo, fiddle, auto harp, acoustic guitar and cello. The song is cheerful, happy, enthusiastic, fervent, pulsating, buoyant and animated with vocalising and backup. This song is a spirited Country Folk Song.", "data_idx": 4749, "number": 1, "label": "blues"} +{"file_name": "test_07910.png", "caption": "A male vocalist sings this high energy Country Song. The tempo is fast with animated Banjo, fiddle, auto harp, acoustic guitar and cello. The song is cheerful, happy, enthusiastic, fervent, pulsating, buoyant and animated with vocalising and backup. This song is a spirited Country Folk Song.", "data_idx": 4749, "number": 2, "label": "blues"} +{"file_name": "test_07911.png", "caption": "A male vocalist sings this high energy Country Song. The tempo is fast with animated Banjo, fiddle, auto harp, acoustic guitar and cello. The song is cheerful, happy, enthusiastic, fervent, pulsating, buoyant and animated with vocalising and backup. This song is a spirited Country Folk Song.", "data_idx": 4749, "number": 3, "label": "blues"} +{"file_name": "test_07912.png", "caption": "The song is an instrumental. The tempo is medium with a string section accompanying the first violin playing a melancholic melody. The song is emotional and melancholic. The song is a classic western classical music piece.", "data_idx": 4751, "number": 0, "label": "classical"} +{"file_name": "test_07913.png", "caption": "The song is an instrumental. The tempo is medium with a string section accompanying the first violin playing a melancholic melody. The song is emotional and melancholic. The song is a classic western classical music piece.", "data_idx": 4751, "number": 1, "label": "classical"} +{"file_name": "test_07914.png", "caption": "The song is an instrumental. The tempo is medium with a string section accompanying the first violin playing a melancholic melody. The song is emotional and melancholic. The song is a classic western classical music piece.", "data_idx": 4751, "number": 2, "label": "classical"} +{"file_name": "test_07915.png", "caption": "The song is an instrumental. The tempo is medium with a string section accompanying the first violin playing a melancholic melody. The song is emotional and melancholic. The song is a classic western classical music piece.", "data_idx": 4751, "number": 3, "label": "classical"} +{"file_name": "test_07916.png", "caption": "The song is an instrumental. The tempo is medium with a wood block percussion and a didgeridoo playing percussively. The song is spiritual and emotional in nature. The audio quality is poor.", "data_idx": 4752, "number": 0, "label": "rock"} +{"file_name": "test_07917.png", "caption": "The song is an instrumental. The tempo is medium with a wood block percussion and a didgeridoo playing percussively. The song is spiritual and emotional in nature. The audio quality is poor.", "data_idx": 4752, "number": 1, "label": "rock"} +{"file_name": "test_07918.png", "caption": "The song is an instrumental. The tempo is medium with a wood block percussion and a didgeridoo playing percussively. The song is spiritual and emotional in nature. The audio quality is poor.", "data_idx": 4752, "number": 2, "label": "rock"} +{"file_name": "test_07919.png", "caption": "The song is an instrumental. The tempo is medium with a wood block percussion and a didgeridoo playing percussively. The song is spiritual and emotional in nature. The audio quality is poor.", "data_idx": 4752, "number": 3, "label": "rock"} +{"file_name": "test_07920.png", "caption": "The low quality recording features a flat male vocal talking over electric guitar melody and sustained strings, with some metallic impact sound and stuttering vocal sound effect. It sounds funny and the recording is noisy and in mono.", "data_idx": 4754, "number": 0, "label": "hiphop"} +{"file_name": "test_07921.png", "caption": "The low quality recording features a flat male vocal talking over electric guitar melody and sustained strings, with some metallic impact sound and stuttering vocal sound effect. It sounds funny and the recording is noisy and in mono.", "data_idx": 4754, "number": 1, "label": "hiphop"} +{"file_name": "test_07922.png", "caption": "The low quality recording features a flat male vocal talking over electric guitar melody and sustained strings, with some metallic impact sound and stuttering vocal sound effect. It sounds funny and the recording is noisy and in mono.", "data_idx": 4754, "number": 2, "label": "hiphop"} +{"file_name": "test_07923.png", "caption": "The low quality recording features a flat male vocal talking over electric guitar melody and sustained strings, with some metallic impact sound and stuttering vocal sound effect. It sounds funny and the recording is noisy and in mono.", "data_idx": 4754, "number": 3, "label": "hiphop"} +{"file_name": "test_07924.png", "caption": "This is a live performance of a pop rock music piece. Two male vocals are singing melodically at the same time. There is a piano playing an upbeat melody while the bass guitar plays a simple bass line in the background. The piece has a joyful aura to it. This piece could be used in the soundtrack of a sit-com during the scenes of a character happily walking through the city.", "data_idx": 4755, "number": 0, "label": "reggae"} +{"file_name": "test_07925.png", "caption": "This is a live performance of a pop rock music piece. Two male vocals are singing melodically at the same time. There is a piano playing an upbeat melody while the bass guitar plays a simple bass line in the background. The piece has a joyful aura to it. This piece could be used in the soundtrack of a sit-com during the scenes of a character happily walking through the city.", "data_idx": 4755, "number": 1, "label": "reggae"} +{"file_name": "test_07926.png", "caption": "This is a live performance of a pop rock music piece. Two male vocals are singing melodically at the same time. There is a piano playing an upbeat melody while the bass guitar plays a simple bass line in the background. The piece has a joyful aura to it. This piece could be used in the soundtrack of a sit-com during the scenes of a character happily walking through the city.", "data_idx": 4755, "number": 2, "label": "reggae"} +{"file_name": "test_07927.png", "caption": "This is a live performance of a pop rock music piece. Two male vocals are singing melodically at the same time. There is a piano playing an upbeat melody while the bass guitar plays a simple bass line in the background. The piece has a joyful aura to it. This piece could be used in the soundtrack of a sit-com during the scenes of a character happily walking through the city.", "data_idx": 4755, "number": 3, "label": "reggae"} +{"file_name": "test_07928.png", "caption": "Energetic, fun latin salsa music with a fast tempo that includes busy percussion, a brass section, piano, group male vocals.", "data_idx": 4757, "number": 0, "label": "reggae"} +{"file_name": "test_07929.png", "caption": "Energetic, fun latin salsa music with a fast tempo that includes busy percussion, a brass section, piano, group male vocals.", "data_idx": 4757, "number": 1, "label": "reggae"} +{"file_name": "test_07930.png", "caption": "Energetic, fun latin salsa music with a fast tempo that includes busy percussion, a brass section, piano, group male vocals.", "data_idx": 4757, "number": 2, "label": "reggae"} +{"file_name": "test_07931.png", "caption": "Energetic, fun latin salsa music with a fast tempo that includes busy percussion, a brass section, piano, group male vocals.", "data_idx": 4757, "number": 3, "label": "reggae"} +{"file_name": "test_07932.png", "caption": "The song is an instrumental. The bagpipes play together in unison and march to the sounds of crowds cheering and other ambient sounds. The song is patriotic like a victory march. The song has very bad audio quality.", "data_idx": 4761, "number": 0, "label": "classical"} +{"file_name": "test_07933.png", "caption": "The song is an instrumental. The bagpipes play together in unison and march to the sounds of crowds cheering and other ambient sounds. The song is patriotic like a victory march. The song has very bad audio quality.", "data_idx": 4761, "number": 1, "label": "classical"} +{"file_name": "test_07934.png", "caption": "The song is an instrumental. The bagpipes play together in unison and march to the sounds of crowds cheering and other ambient sounds. The song is patriotic like a victory march. The song has very bad audio quality.", "data_idx": 4761, "number": 2, "label": "classical"} +{"file_name": "test_07935.png", "caption": "The song is an instrumental. The bagpipes play together in unison and march to the sounds of crowds cheering and other ambient sounds. The song is patriotic like a victory march. The song has very bad audio quality.", "data_idx": 4761, "number": 3, "label": "classical"} +{"file_name": "test_07936.png", "caption": "This is a drumline stick trick recording. A drummer is playing rudiments on a snare pad in an acrobatic manner. There is a rapid procession of single and double strokes. This piece could be sampled for use in beat-making.", "data_idx": 4762, "number": 0, "label": "hiphop"} +{"file_name": "test_07937.png", "caption": "This is a drumline stick trick recording. A drummer is playing rudiments on a snare pad in an acrobatic manner. There is a rapid procession of single and double strokes. This piece could be sampled for use in beat-making.", "data_idx": 4762, "number": 1, "label": "hiphop"} +{"file_name": "test_07938.png", "caption": "A female vocalist sings this sweet Country song. The music is fast with lively banjo, mandolin, acoustic guitar , dobro and Auto harp harmony, steady bass and rhythmic drumming . The song is emotional, sentimental, pensive, reflective, with a catchy beat. This song is classic Country Pop.", "data_idx": 4763, "number": 0, "label": "reggae"} +{"file_name": "test_07939.png", "caption": "A female vocalist sings this sweet Country song. The music is fast with lively banjo, mandolin, acoustic guitar , dobro and Auto harp harmony, steady bass and rhythmic drumming . The song is emotional, sentimental, pensive, reflective, with a catchy beat. This song is classic Country Pop.", "data_idx": 4763, "number": 1, "label": "reggae"} +{"file_name": "test_07940.png", "caption": "A female vocalist sings this sweet Country song. The music is fast with lively banjo, mandolin, acoustic guitar , dobro and Auto harp harmony, steady bass and rhythmic drumming . The song is emotional, sentimental, pensive, reflective, with a catchy beat. This song is classic Country Pop.", "data_idx": 4763, "number": 2, "label": "reggae"} +{"file_name": "test_07941.png", "caption": "A female vocalist sings this sweet Country song. The music is fast with lively banjo, mandolin, acoustic guitar , dobro and Auto harp harmony, steady bass and rhythmic drumming . The song is emotional, sentimental, pensive, reflective, with a catchy beat. This song is classic Country Pop.", "data_idx": 4763, "number": 3, "label": "reggae"} +{"file_name": "test_07942.png", "caption": "A Chinese zither plucked string instrument, or guzheng covering a popular western song with virtuosity, tremolo picking and string bending over a steady rock beat. East meets west.", "data_idx": 4765, "number": 0, "label": "rock"} +{"file_name": "test_07943.png", "caption": "A Chinese zither plucked string instrument, or guzheng covering a popular western song with virtuosity, tremolo picking and string bending over a steady rock beat. East meets west.", "data_idx": 4765, "number": 1, "label": "rock"} +{"file_name": "test_07944.png", "caption": "A Chinese zither plucked string instrument, or guzheng covering a popular western song with virtuosity, tremolo picking and string bending over a steady rock beat. East meets west.", "data_idx": 4765, "number": 2, "label": "rock"} +{"file_name": "test_07945.png", "caption": "A Chinese zither plucked string instrument, or guzheng covering a popular western song with virtuosity, tremolo picking and string bending over a steady rock beat. East meets west.", "data_idx": 4765, "number": 3, "label": "rock"} +{"file_name": "test_07946.png", "caption": "The low quality recording features a squeaking sound, followed by shimmering bells. The recording is noisy.", "data_idx": 4769, "number": 0, "label": "hiphop"} +{"file_name": "test_07947.png", "caption": "The low quality recording features a squeaking sound, followed by shimmering bells. The recording is noisy.", "data_idx": 4769, "number": 1, "label": "hiphop"} +{"file_name": "test_07948.png", "caption": "The low quality recording features a squeaking sound, followed by shimmering bells. The recording is noisy.", "data_idx": 4769, "number": 2, "label": "hiphop"} +{"file_name": "test_07949.png", "caption": "The low quality recording features a squeaking sound, followed by shimmering bells. The recording is noisy.", "data_idx": 4769, "number": 3, "label": "hiphop"} +{"file_name": "test_07950.png", "caption": "This is a yoga music piece. There is a male vocal humming a gentle tune. The acoustic guitar is playing a simple arpeggio in the background. There is a calming atmosphere. This piece could fit well during meditation sessions.", "data_idx": 4770, "number": 0, "label": "hiphop"} +{"file_name": "test_07951.png", "caption": "This is a yoga music piece. There is a male vocal humming a gentle tune. The acoustic guitar is playing a simple arpeggio in the background. There is a calming atmosphere. This piece could fit well during meditation sessions.", "data_idx": 4770, "number": 1, "label": "hiphop"} +{"file_name": "test_07952.png", "caption": "The low quality recording features a man talking in the background over woodwind melody and wooden percussion. It sounds like a traditional folk song and the recording is noisy and in mono.", "data_idx": 4771, "number": 0, "label": "reggae"} +{"file_name": "test_07953.png", "caption": "The low quality recording features a man talking in the background over woodwind melody and wooden percussion. It sounds like a traditional folk song and the recording is noisy and in mono.", "data_idx": 4771, "number": 1, "label": "reggae"} +{"file_name": "test_07954.png", "caption": "Lead clarinetist playing a melody with an eastern scale accompanied by wind ensemble, cymbals and drums.", "data_idx": 4772, "number": 0, "label": "jazz"} +{"file_name": "test_07955.png", "caption": "Lead clarinetist playing a melody with an eastern scale accompanied by wind ensemble, cymbals and drums.", "data_idx": 4772, "number": 1, "label": "jazz"} +{"file_name": "test_07956.png", "caption": "Lead clarinetist playing a melody with an eastern scale accompanied by wind ensemble, cymbals and drums.", "data_idx": 4772, "number": 2, "label": "jazz"} +{"file_name": "test_07957.png", "caption": "Lead clarinetist playing a melody with an eastern scale accompanied by wind ensemble, cymbals and drums.", "data_idx": 4772, "number": 3, "label": "jazz"} +{"file_name": "test_07958.png", "caption": "The low quality recording features an electro song that contains soft male vocal singing over punchy \"4 on the floor\" kick pattern, shimmering hi hats and open hats, claps, groovy acid synth bass and mellow synth pad chords. It sounds energetic, groovy and hypnotic.", "data_idx": 4773, "number": 0, "label": "disco"} +{"file_name": "test_07959.png", "caption": "The low quality recording features an electro song that contains soft male vocal singing over punchy \"4 on the floor\" kick pattern, shimmering hi hats and open hats, claps, groovy acid synth bass and mellow synth pad chords. It sounds energetic, groovy and hypnotic.", "data_idx": 4773, "number": 1, "label": "disco"} +{"file_name": "test_07960.png", "caption": "The low quality recording features an electro song that contains soft male vocal singing over punchy \"4 on the floor\" kick pattern, shimmering hi hats and open hats, claps, groovy acid synth bass and mellow synth pad chords. It sounds energetic, groovy and hypnotic.", "data_idx": 4773, "number": 2, "label": "disco"} +{"file_name": "test_07961.png", "caption": "The low quality recording features an electro song that contains soft male vocal singing over punchy \"4 on the floor\" kick pattern, shimmering hi hats and open hats, claps, groovy acid synth bass and mellow synth pad chords. It sounds energetic, groovy and hypnotic.", "data_idx": 4773, "number": 3, "label": "disco"} +{"file_name": "test_07962.png", "caption": "A male Arab singer sings this cool melody. The tempo is medium with Arabic percussion instruments and various stringed instruments. The song is passionate and romantic. The song has bad audio quality.", "data_idx": 4774, "number": 0, "label": "classical"} +{"file_name": "test_07963.png", "caption": "A male Arab singer sings this cool melody. The tempo is medium with Arabic percussion instruments and various stringed instruments. The song is passionate and romantic. The song has bad audio quality.", "data_idx": 4774, "number": 1, "label": "classical"} +{"file_name": "test_07964.png", "caption": "A male Arab singer sings this cool melody. The tempo is medium with Arabic percussion instruments and various stringed instruments. The song is passionate and romantic. The song has bad audio quality.", "data_idx": 4774, "number": 2, "label": "classical"} +{"file_name": "test_07965.png", "caption": "A male Arab singer sings this cool melody. The tempo is medium with Arabic percussion instruments and various stringed instruments. The song is passionate and romantic. The song has bad audio quality.", "data_idx": 4774, "number": 3, "label": "classical"} +{"file_name": "test_07966.png", "caption": "The low quality recording features a traditional song that contains a wide string melody, wooden percussion and some noisy sound in the background. It gives relaxing vibes, even though the percussion and strings are a bit aggressive.", "data_idx": 4776, "number": 0, "label": "jazz"} +{"file_name": "test_07967.png", "caption": "The low quality recording features a traditional song that contains a wide string melody, wooden percussion and some noisy sound in the background. It gives relaxing vibes, even though the percussion and strings are a bit aggressive.", "data_idx": 4776, "number": 1, "label": "jazz"} +{"file_name": "test_07968.png", "caption": "The low quality recording features a traditional song that contains a wide string melody, wooden percussion and some noisy sound in the background. It gives relaxing vibes, even though the percussion and strings are a bit aggressive.", "data_idx": 4776, "number": 2, "label": "jazz"} +{"file_name": "test_07969.png", "caption": "The low quality recording features a traditional song that contains a wide string melody, wooden percussion and some noisy sound in the background. It gives relaxing vibes, even though the percussion and strings are a bit aggressive.", "data_idx": 4776, "number": 3, "label": "jazz"} +{"file_name": "test_07970.png", "caption": "The low quality recording features a traditional pop song that consists of a flat male vocal, alongside exciting background vocals, singing over claps, wooden percussive elements, groovy bass and acoustic guitar melody. It sounds energetic, addictive, fun and joyful - like something you would hear at more traditional parties.", "data_idx": 4778, "number": 0, "label": "disco"} +{"file_name": "test_07971.png", "caption": "The low quality recording features a traditional pop song that consists of a flat male vocal, alongside exciting background vocals, singing over claps, wooden percussive elements, groovy bass and acoustic guitar melody. It sounds energetic, addictive, fun and joyful - like something you would hear at more traditional parties.", "data_idx": 4778, "number": 1, "label": "disco"} +{"file_name": "test_07972.png", "caption": "The low quality recording features a traditional pop song that consists of a flat male vocal, alongside exciting background vocals, singing over claps, wooden percussive elements, groovy bass and acoustic guitar melody. It sounds energetic, addictive, fun and joyful - like something you would hear at more traditional parties.", "data_idx": 4778, "number": 2, "label": "disco"} +{"file_name": "test_07973.png", "caption": "The low quality recording features a traditional pop song that consists of a flat male vocal, alongside exciting background vocals, singing over claps, wooden percussive elements, groovy bass and acoustic guitar melody. It sounds energetic, addictive, fun and joyful - like something you would hear at more traditional parties.", "data_idx": 4778, "number": 3, "label": "disco"} +{"file_name": "test_07974.png", "caption": "This is the live performance of an Irish folk music piece. There is no singer. The fiddle is playing an upbeat solo while the bass guitar is playing a complex bass line using the tapping technique. The atmosphere is joyful. This piece could be used in the soundtrack of a documentary that has scenes of rapid movement.", "data_idx": 4780, "number": 0, "label": "classical"} +{"file_name": "test_07975.png", "caption": "This is the live performance of an Irish folk music piece. There is no singer. The fiddle is playing an upbeat solo while the bass guitar is playing a complex bass line using the tapping technique. The atmosphere is joyful. This piece could be used in the soundtrack of a documentary that has scenes of rapid movement.", "data_idx": 4780, "number": 1, "label": "classical"} +{"file_name": "test_07976.png", "caption": "This is the live performance of an Irish folk music piece. There is no singer. The fiddle is playing an upbeat solo while the bass guitar is playing a complex bass line using the tapping technique. The atmosphere is joyful. This piece could be used in the soundtrack of a documentary that has scenes of rapid movement.", "data_idx": 4780, "number": 2, "label": "classical"} +{"file_name": "test_07977.png", "caption": "This is the live performance of an Irish folk music piece. There is no singer. The fiddle is playing an upbeat solo while the bass guitar is playing a complex bass line using the tapping technique. The atmosphere is joyful. This piece could be used in the soundtrack of a documentary that has scenes of rapid movement.", "data_idx": 4780, "number": 3, "label": "classical"} +{"file_name": "test_07978.png", "caption": "The low quality recording features a children song that consists a passionate female vocal singing over, punchy snare located in the right channel, shimmering tambourine in the right channel of the stereo image, shimmering bells melody, shimmering acoustic rhythm guitar chords, simple bass and coughing sound in the beginning. It sounds fun, happy and joyful - like something kids would listen to.", "data_idx": 4781, "number": 0, "label": "reggae"} +{"file_name": "test_07979.png", "caption": "The low quality recording features a children song that consists a passionate female vocal singing over, punchy snare located in the right channel, shimmering tambourine in the right channel of the stereo image, shimmering bells melody, shimmering acoustic rhythm guitar chords, simple bass and coughing sound in the beginning. It sounds fun, happy and joyful - like something kids would listen to.", "data_idx": 4781, "number": 1, "label": "reggae"} +{"file_name": "test_07980.png", "caption": "The low quality recording features a children song that consists a passionate female vocal singing over, punchy snare located in the right channel, shimmering tambourine in the right channel of the stereo image, shimmering bells melody, shimmering acoustic rhythm guitar chords, simple bass and coughing sound in the beginning. It sounds fun, happy and joyful - like something kids would listen to.", "data_idx": 4781, "number": 2, "label": "reggae"} +{"file_name": "test_07981.png", "caption": "The low quality recording features a children song that consists a passionate female vocal singing over, punchy snare located in the right channel, shimmering tambourine in the right channel of the stereo image, shimmering bells melody, shimmering acoustic rhythm guitar chords, simple bass and coughing sound in the beginning. It sounds fun, happy and joyful - like something kids would listen to.", "data_idx": 4781, "number": 3, "label": "reggae"} +{"file_name": "test_07982.png", "caption": "This is an instrumental didgeridoo piece performed on the street. The didgeridoo is played at a low-to-medium range while the player is performing a simple rhythmic pattern with the use of percussion at the same time. The atmosphere is eccentric. This recording can be used in the soundtrack of a movie that has a tribal setting.", "data_idx": 4784, "number": 0, "label": "metal"} +{"file_name": "test_07983.png", "caption": "This is an instrumental didgeridoo piece performed on the street. The didgeridoo is played at a low-to-medium range while the player is performing a simple rhythmic pattern with the use of percussion at the same time. The atmosphere is eccentric. This recording can be used in the soundtrack of a movie that has a tribal setting.", "data_idx": 4784, "number": 1, "label": "metal"} +{"file_name": "test_07984.png", "caption": "This folk song features a clarinet playing the main melody. A trumpet plays a similar melody in harmony. This is accompanied by a tuba playing the bass notes. An acoustic guitar plays chords for this song. There are no voices in this song. This is an instrumental song. There is no percussion in this song. This song can be played at an Oktoberfest party.", "data_idx": 4785, "number": 0, "label": "classical"} +{"file_name": "test_07985.png", "caption": "This folk song features a clarinet playing the main melody. A trumpet plays a similar melody in harmony. This is accompanied by a tuba playing the bass notes. An acoustic guitar plays chords for this song. There are no voices in this song. This is an instrumental song. There is no percussion in this song. This song can be played at an Oktoberfest party.", "data_idx": 4785, "number": 1, "label": "classical"} +{"file_name": "test_07986.png", "caption": "This folk song features a clarinet playing the main melody. A trumpet plays a similar melody in harmony. This is accompanied by a tuba playing the bass notes. An acoustic guitar plays chords for this song. There are no voices in this song. This is an instrumental song. There is no percussion in this song. This song can be played at an Oktoberfest party.", "data_idx": 4785, "number": 2, "label": "classical"} +{"file_name": "test_07987.png", "caption": "This folk song features a clarinet playing the main melody. A trumpet plays a similar melody in harmony. This is accompanied by a tuba playing the bass notes. An acoustic guitar plays chords for this song. There are no voices in this song. This is an instrumental song. There is no percussion in this song. This song can be played at an Oktoberfest party.", "data_idx": 4785, "number": 3, "label": "classical"} +{"file_name": "test_07988.png", "caption": "This song contains a complex drum groove with fill-ins and a loud groove on the ride cymbal. A distorted e-bass is playing a simple fast bassline along with a distorted e-guitar playing lower notes along with the bass. This song may be playing in a car racing video-game.", "data_idx": 4786, "number": 0, "label": "metal"} +{"file_name": "test_07989.png", "caption": "This song contains a complex drum groove with fill-ins and a loud groove on the ride cymbal. A distorted e-bass is playing a simple fast bassline along with a distorted e-guitar playing lower notes along with the bass. This song may be playing in a car racing video-game.", "data_idx": 4786, "number": 1, "label": "metal"} +{"file_name": "test_07990.png", "caption": "This song contains a complex drum groove with fill-ins and a loud groove on the ride cymbal. A distorted e-bass is playing a simple fast bassline along with a distorted e-guitar playing lower notes along with the bass. This song may be playing in a car racing video-game.", "data_idx": 4786, "number": 2, "label": "metal"} +{"file_name": "test_07991.png", "caption": "This song contains a complex drum groove with fill-ins and a loud groove on the ride cymbal. A distorted e-bass is playing a simple fast bassline along with a distorted e-guitar playing lower notes along with the bass. This song may be playing in a car racing video-game.", "data_idx": 4786, "number": 3, "label": "metal"} +{"file_name": "test_07992.png", "caption": "This music is instrumental. It is the sound of a bell playing incessantly. The sound is loud, booming, vibrating, resounding and resonating.", "data_idx": 4788, "number": 0, "label": "classical"} +{"file_name": "test_07993.png", "caption": "This music is instrumental. It is the sound of a bell playing incessantly. The sound is loud, booming, vibrating, resounding and resonating.", "data_idx": 4788, "number": 1, "label": "classical"} +{"file_name": "test_07994.png", "caption": "This music is instrumental. It is the sound of a bell playing incessantly. The sound is loud, booming, vibrating, resounding and resonating.", "data_idx": 4788, "number": 2, "label": "classical"} +{"file_name": "test_07995.png", "caption": "This music is instrumental. It is the sound of a bell playing incessantly. The sound is loud, booming, vibrating, resounding and resonating.", "data_idx": 4788, "number": 3, "label": "classical"} +{"file_name": "test_07996.png", "caption": "This music is instrumental. The tempo is slow with a smooth saxophone harmony, groovy bassline, syncopated piano and jazz style drumming. The music is soothing, atmospheric, soothing, lively, romantic, compelling and informal. This music is a Jazz instrumental.", "data_idx": 4791, "number": 0, "label": "jazz"} +{"file_name": "test_07997.png", "caption": "This music is instrumental. The tempo is slow with a smooth saxophone harmony, groovy bassline, syncopated piano and jazz style drumming. The music is soothing, atmospheric, soothing, lively, romantic, compelling and informal. This music is a Jazz instrumental.", "data_idx": 4791, "number": 1, "label": "jazz"} +{"file_name": "test_07998.png", "caption": "This music is instrumental. The tempo is slow with a smooth saxophone harmony, groovy bassline, syncopated piano and jazz style drumming. The music is soothing, atmospheric, soothing, lively, romantic, compelling and informal. This music is a Jazz instrumental.", "data_idx": 4791, "number": 2, "label": "jazz"} +{"file_name": "test_07999.png", "caption": "This music is instrumental. The tempo is slow with a smooth saxophone harmony, groovy bassline, syncopated piano and jazz style drumming. The music is soothing, atmospheric, soothing, lively, romantic, compelling and informal. This music is a Jazz instrumental.", "data_idx": 4791, "number": 3, "label": "jazz"} +{"file_name": "test_08000.png", "caption": "This song is an animated vocalisation. The tempo is fast with a lively piano accompaniment, accordion harmony, cello rhythm, hard hitting drums, groovy bass lines, hand percussion beats and xylophone. The music is upbeat, energetic,enthusiastic, high-spirited and vivacious. This is a live performance with ambient sounds of people talking and general bustling. The audio quality is inferior. This song is a live Pop.", "data_idx": 4794, "number": 0, "label": "classical"} +{"file_name": "test_08001.png", "caption": "This song is an animated vocalisation. The tempo is fast with a lively piano accompaniment, accordion harmony, cello rhythm, hard hitting drums, groovy bass lines, hand percussion beats and xylophone. The music is upbeat, energetic,enthusiastic, high-spirited and vivacious. This is a live performance with ambient sounds of people talking and general bustling. The audio quality is inferior. This song is a live Pop.", "data_idx": 4794, "number": 1, "label": "classical"} +{"file_name": "test_08002.png", "caption": "This song is an animated vocalisation. The tempo is fast with a lively piano accompaniment, accordion harmony, cello rhythm, hard hitting drums, groovy bass lines, hand percussion beats and xylophone. The music is upbeat, energetic,enthusiastic, high-spirited and vivacious. This is a live performance with ambient sounds of people talking and general bustling. The audio quality is inferior. This song is a live Pop.", "data_idx": 4794, "number": 2, "label": "classical"} +{"file_name": "test_08003.png", "caption": "This song is an animated vocalisation. The tempo is fast with a lively piano accompaniment, accordion harmony, cello rhythm, hard hitting drums, groovy bass lines, hand percussion beats and xylophone. The music is upbeat, energetic,enthusiastic, high-spirited and vivacious. This is a live performance with ambient sounds of people talking and general bustling. The audio quality is inferior. This song is a live Pop.", "data_idx": 4794, "number": 3, "label": "classical"} diff --git a/data/test/metadata_0019.jsonl b/data/test/metadata_0019.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..64be5ef91576e948ec6f0d01fe565b9ad800d280 --- /dev/null +++ b/data/test/metadata_0019.jsonl @@ -0,0 +1,346 @@ +{"file_name": "test_08004.png", "caption": "The low quality recording features a flat female vocal talking over breathy flute melody. As soon as the female starts talking, the flute melody lowers in volume. The recording is noisy and in mono.", "data_idx": 4802, "number": 0, "label": "hiphop"} +{"file_name": "test_08005.png", "caption": "The low quality recording features a flat female vocal talking over breathy flute melody. As soon as the female starts talking, the flute melody lowers in volume. The recording is noisy and in mono.", "data_idx": 4802, "number": 1, "label": "hiphop"} +{"file_name": "test_08006.png", "caption": "The low quality recording features a flat female vocal talking over breathy flute melody. As soon as the female starts talking, the flute melody lowers in volume. The recording is noisy and in mono.", "data_idx": 4802, "number": 2, "label": "hiphop"} +{"file_name": "test_08007.png", "caption": "The low quality recording features a flat female vocal talking over breathy flute melody. As soon as the female starts talking, the flute melody lowers in volume. The recording is noisy and in mono.", "data_idx": 4802, "number": 3, "label": "hiphop"} +{"file_name": "test_08008.png", "caption": "The low quality recording features an electro song that consists of reversed hi hats, followed by shimmering 2 step hi hats and \"4 on the floor\" kick pattern playing on top of it. It sounds groovy and exciting.", "data_idx": 4804, "number": 0, "label": "reggae"} +{"file_name": "test_08009.png", "caption": "The low quality recording features an electro song that consists of reversed hi hats, followed by shimmering 2 step hi hats and \"4 on the floor\" kick pattern playing on top of it. It sounds groovy and exciting.", "data_idx": 4804, "number": 1, "label": "reggae"} +{"file_name": "test_08010.png", "caption": "The low quality recording features an electro song that consists of reversed hi hats, followed by shimmering 2 step hi hats and \"4 on the floor\" kick pattern playing on top of it. It sounds groovy and exciting.", "data_idx": 4804, "number": 2, "label": "reggae"} +{"file_name": "test_08011.png", "caption": "The low quality recording features an electro song that consists of reversed hi hats, followed by shimmering 2 step hi hats and \"4 on the floor\" kick pattern playing on top of it. It sounds groovy and exciting.", "data_idx": 4804, "number": 3, "label": "reggae"} +{"file_name": "test_08012.png", "caption": "The song is an instrumental. The song is medium fast tempo with a didgeridoo playing percussively with no other instrumentation. The song is played passionately and spirited. The audio quality is very poor.", "data_idx": 4805, "number": 0, "label": "classical"} +{"file_name": "test_08013.png", "caption": "The song is an instrumental. The song is medium fast tempo with a didgeridoo playing percussively with no other instrumentation. The song is played passionately and spirited. The audio quality is very poor.", "data_idx": 4805, "number": 1, "label": "classical"} +{"file_name": "test_08014.png", "caption": "The song is an instrumental. The song is medium fast tempo with a didgeridoo playing percussively with no other instrumentation. The song is played passionately and spirited. The audio quality is very poor.", "data_idx": 4805, "number": 2, "label": "classical"} +{"file_name": "test_08015.png", "caption": "The song is an instrumental. The song is medium fast tempo with a didgeridoo playing percussively with no other instrumentation. The song is played passionately and spirited. The audio quality is very poor.", "data_idx": 4805, "number": 3, "label": "classical"} +{"file_name": "test_08016.png", "caption": "This is a dancehall/reggae music piece. There is a female vocalist singing in a rap-like manner with a Jamaican accent in the lead. The melody is being played by two layers of electric guitar with a bass guitar backing. The rhythm is being played by the electronic drums. An airy synth sound can be heard very faintly in the distance. The atmosphere is chill. This piece can be used in the soundtrack of a summer movie during scenes where everybody is relaxing.", "data_idx": 4806, "number": 0, "label": "pop"} +{"file_name": "test_08017.png", "caption": "This is a dancehall/reggae music piece. There is a female vocalist singing in a rap-like manner with a Jamaican accent in the lead. The melody is being played by two layers of electric guitar with a bass guitar backing. The rhythm is being played by the electronic drums. An airy synth sound can be heard very faintly in the distance. The atmosphere is chill. This piece can be used in the soundtrack of a summer movie during scenes where everybody is relaxing.", "data_idx": 4806, "number": 1, "label": "pop"} +{"file_name": "test_08018.png", "caption": "This is a dancehall/reggae music piece. There is a female vocalist singing in a rap-like manner with a Jamaican accent in the lead. The melody is being played by two layers of electric guitar with a bass guitar backing. The rhythm is being played by the electronic drums. An airy synth sound can be heard very faintly in the distance. The atmosphere is chill. This piece can be used in the soundtrack of a summer movie during scenes where everybody is relaxing.", "data_idx": 4806, "number": 2, "label": "pop"} +{"file_name": "test_08019.png", "caption": "This is a dancehall/reggae music piece. There is a female vocalist singing in a rap-like manner with a Jamaican accent in the lead. The melody is being played by two layers of electric guitar with a bass guitar backing. The rhythm is being played by the electronic drums. An airy synth sound can be heard very faintly in the distance. The atmosphere is chill. This piece can be used in the soundtrack of a summer movie during scenes where everybody is relaxing.", "data_idx": 4806, "number": 3, "label": "pop"} +{"file_name": "test_08020.png", "caption": "The song is an instrumental. The song is medium tempo with a horn player playing a deer horn in a repeated manner. The song is spiritual and customary. The song has bad audio quality.", "data_idx": 4807, "number": 0, "label": "jazz"} +{"file_name": "test_08021.png", "caption": "The song is an instrumental. The song is medium tempo with a horn player playing a deer horn in a repeated manner. The song is spiritual and customary. The song has bad audio quality.", "data_idx": 4807, "number": 1, "label": "jazz"} +{"file_name": "test_08022.png", "caption": "The song is an instrumental. The song is medium tempo with a horn player playing a deer horn in a repeated manner. The song is spiritual and customary. The song has bad audio quality.", "data_idx": 4807, "number": 2, "label": "jazz"} +{"file_name": "test_08023.png", "caption": "The song is an instrumental. The song is medium tempo with a horn player playing a deer horn in a repeated manner. The song is spiritual and customary. The song has bad audio quality.", "data_idx": 4807, "number": 3, "label": "jazz"} +{"file_name": "test_08024.png", "caption": "The low quality recording features a drum & bass song that consists of a repetitive female vocal sound effect, growl synth bass, manic percussions, shimmering hi hats, punchy kick and snare hits and echoing synth pad. It sounds energetic, aggressive and manic - like something you would hear in underground clubs during the 00s.", "data_idx": 4809, "number": 0, "label": "hiphop"} +{"file_name": "test_08025.png", "caption": "The low quality recording features a drum & bass song that consists of a repetitive female vocal sound effect, growl synth bass, manic percussions, shimmering hi hats, punchy kick and snare hits and echoing synth pad. It sounds energetic, aggressive and manic - like something you would hear in underground clubs during the 00s.", "data_idx": 4809, "number": 1, "label": "hiphop"} +{"file_name": "test_08026.png", "caption": "The low quality recording features a drum & bass song that consists of a repetitive female vocal sound effect, growl synth bass, manic percussions, shimmering hi hats, punchy kick and snare hits and echoing synth pad. It sounds energetic, aggressive and manic - like something you would hear in underground clubs during the 00s.", "data_idx": 4809, "number": 2, "label": "hiphop"} +{"file_name": "test_08027.png", "caption": "The low quality recording features a drum & bass song that consists of a repetitive female vocal sound effect, growl synth bass, manic percussions, shimmering hi hats, punchy kick and snare hits and echoing synth pad. It sounds energetic, aggressive and manic - like something you would hear in underground clubs during the 00s.", "data_idx": 4809, "number": 3, "label": "hiphop"} +{"file_name": "test_08028.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over pulsating synth lead melody, groovy bass, \"4 on the floor\" kick pattern, punchy snare, shimmering hi hats and some wooden percussive elements. It sounds energetic and addictive.", "data_idx": 4810, "number": 0, "label": "reggae"} +{"file_name": "test_08029.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over pulsating synth lead melody, groovy bass, \"4 on the floor\" kick pattern, punchy snare, shimmering hi hats and some wooden percussive elements. It sounds energetic and addictive.", "data_idx": 4810, "number": 1, "label": "reggae"} +{"file_name": "test_08030.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over pulsating synth lead melody, groovy bass, \"4 on the floor\" kick pattern, punchy snare, shimmering hi hats and some wooden percussive elements. It sounds energetic and addictive.", "data_idx": 4810, "number": 2, "label": "reggae"} +{"file_name": "test_08031.png", "caption": "The low quality recording features a pop song that consists of harmonizing vocals singing over pulsating synth lead melody, groovy bass, \"4 on the floor\" kick pattern, punchy snare, shimmering hi hats and some wooden percussive elements. It sounds energetic and addictive.", "data_idx": 4810, "number": 3, "label": "reggae"} +{"file_name": "test_08032.png", "caption": "This song carries a powerful air of conviction with it that is aided by the singer's soulful performance. It's a heartbreak song and although it feels sad, it also feels like a reclamation of power. It's a live performance with a full band including guitarists, violinists, a pianist and a drummer who plays a pop beat. The genre for this song could be classified as pop-soul.", "data_idx": 4811, "number": 0, "label": "rock"} +{"file_name": "test_08033.png", "caption": "This song carries a powerful air of conviction with it that is aided by the singer's soulful performance. It's a heartbreak song and although it feels sad, it also feels like a reclamation of power. It's a live performance with a full band including guitarists, violinists, a pianist and a drummer who plays a pop beat. The genre for this song could be classified as pop-soul.", "data_idx": 4811, "number": 1, "label": "rock"} +{"file_name": "test_08034.png", "caption": "This song carries a powerful air of conviction with it that is aided by the singer's soulful performance. It's a heartbreak song and although it feels sad, it also feels like a reclamation of power. It's a live performance with a full band including guitarists, violinists, a pianist and a drummer who plays a pop beat. The genre for this song could be classified as pop-soul.", "data_idx": 4811, "number": 2, "label": "rock"} +{"file_name": "test_08035.png", "caption": "This song carries a powerful air of conviction with it that is aided by the singer's soulful performance. It's a heartbreak song and although it feels sad, it also feels like a reclamation of power. It's a live performance with a full band including guitarists, violinists, a pianist and a drummer who plays a pop beat. The genre for this song could be classified as pop-soul.", "data_idx": 4811, "number": 3, "label": "rock"} +{"file_name": "test_08036.png", "caption": "This is a contemporary reggae song. The vocalist has a smooth and silky voice, the song sounds romantic and intimate. We hear electric guitar chord stabs on the off-beats which characterise the reggae pop style. There are also licks on the electric guitar and a simple drum beat suitable for laid-back dancing. The song has a tropical feel.", "data_idx": 4815, "number": 0, "label": "reggae"} +{"file_name": "test_08037.png", "caption": "This is a contemporary reggae song. The vocalist has a smooth and silky voice, the song sounds romantic and intimate. We hear electric guitar chord stabs on the off-beats which characterise the reggae pop style. There are also licks on the electric guitar and a simple drum beat suitable for laid-back dancing. The song has a tropical feel.", "data_idx": 4815, "number": 1, "label": "reggae"} +{"file_name": "test_08038.png", "caption": "This is a contemporary reggae song. The vocalist has a smooth and silky voice, the song sounds romantic and intimate. We hear electric guitar chord stabs on the off-beats which characterise the reggae pop style. There are also licks on the electric guitar and a simple drum beat suitable for laid-back dancing. The song has a tropical feel.", "data_idx": 4815, "number": 2, "label": "reggae"} +{"file_name": "test_08039.png", "caption": "This is a contemporary reggae song. The vocalist has a smooth and silky voice, the song sounds romantic and intimate. We hear electric guitar chord stabs on the off-beats which characterise the reggae pop style. There are also licks on the electric guitar and a simple drum beat suitable for laid-back dancing. The song has a tropical feel.", "data_idx": 4815, "number": 3, "label": "reggae"} +{"file_name": "test_08040.png", "caption": "fast tapping in rhythm. The sounds are clicking. There is a metronome sound present as well. The rhythm is regimented.", "data_idx": 4816, "number": 0, "label": "blues"} +{"file_name": "test_08041.png", "caption": "fast tapping in rhythm. The sounds are clicking. There is a metronome sound present as well. The rhythm is regimented.", "data_idx": 4816, "number": 1, "label": "blues"} +{"file_name": "test_08042.png", "caption": "fast tapping in rhythm. The sounds are clicking. There is a metronome sound present as well. The rhythm is regimented.", "data_idx": 4816, "number": 2, "label": "blues"} +{"file_name": "test_08043.png", "caption": "fast tapping in rhythm. The sounds are clicking. There is a metronome sound present as well. The rhythm is regimented.", "data_idx": 4816, "number": 3, "label": "blues"} +{"file_name": "test_08044.png", "caption": "This audio contains someone playing a soothing melody on a harp. This piece sounds a little bit melancholic. This song may be playing at a little concert.", "data_idx": 4818, "number": 0, "label": "jazz"} +{"file_name": "test_08045.png", "caption": "This audio contains someone playing a soothing melody on a harp. This piece sounds a little bit melancholic. This song may be playing at a little concert.", "data_idx": 4818, "number": 1, "label": "jazz"} +{"file_name": "test_08046.png", "caption": "This audio contains someone playing a soothing melody on a harp. This piece sounds a little bit melancholic. This song may be playing at a little concert.", "data_idx": 4818, "number": 2, "label": "jazz"} +{"file_name": "test_08047.png", "caption": "This audio contains someone playing a soothing melody on a harp. This piece sounds a little bit melancholic. This song may be playing at a little concert.", "data_idx": 4818, "number": 3, "label": "jazz"} +{"file_name": "test_08048.png", "caption": "The clip is a combination of various sound effects. First, we have a fire crackling and this continues throughout the clip. Then we have the sounds of hard objects falling on a wooden floor, and then the sound of glass breaking. What follows is a retro video game beeping sound effect, a grungy electric guitar power chord sequence, and simple rock drumming along with a bassline that matches the chords.", "data_idx": 4821, "number": 0, "label": "hiphop"} +{"file_name": "test_08049.png", "caption": "The clip is a combination of various sound effects. First, we have a fire crackling and this continues throughout the clip. Then we have the sounds of hard objects falling on a wooden floor, and then the sound of glass breaking. What follows is a retro video game beeping sound effect, a grungy electric guitar power chord sequence, and simple rock drumming along with a bassline that matches the chords.", "data_idx": 4821, "number": 1, "label": "hiphop"} +{"file_name": "test_08050.png", "caption": "This audio contains someone playing a xylophone sound and rattles. This is an amateur recording. You can hear clicking and recording noises. This audio may be playing demonstrating specific sounds on a device.", "data_idx": 4822, "number": 0, "label": "hiphop"} +{"file_name": "test_08051.png", "caption": "This audio contains someone playing a xylophone sound and rattles. This is an amateur recording. You can hear clicking and recording noises. This audio may be playing demonstrating specific sounds on a device.", "data_idx": 4822, "number": 1, "label": "hiphop"} +{"file_name": "test_08052.png", "caption": "This audio contains someone playing a xylophone sound and rattles. This is an amateur recording. You can hear clicking and recording noises. This audio may be playing demonstrating specific sounds on a device.", "data_idx": 4822, "number": 2, "label": "hiphop"} +{"file_name": "test_08053.png", "caption": "This audio contains someone playing a xylophone sound and rattles. This is an amateur recording. You can hear clicking and recording noises. This audio may be playing demonstrating specific sounds on a device.", "data_idx": 4822, "number": 3, "label": "hiphop"} +{"file_name": "test_08054.png", "caption": "This folk dubstep features female voices singing the main melody. This is accompanied by percussion playing a dubstep beat. The tempo of the beat is fast, incorporating shuffles. A jaw harp plays a quirky sound in the background. The tempo of the song is fast. At the beginning, there is no bass. Toward the end, the bass plays while the percussion gets louder. This song can be played in a club.", "data_idx": 4824, "number": 0, "label": "disco"} +{"file_name": "test_08055.png", "caption": "This folk dubstep features female voices singing the main melody. This is accompanied by percussion playing a dubstep beat. The tempo of the beat is fast, incorporating shuffles. A jaw harp plays a quirky sound in the background. The tempo of the song is fast. At the beginning, there is no bass. Toward the end, the bass plays while the percussion gets louder. This song can be played in a club.", "data_idx": 4824, "number": 1, "label": "disco"} +{"file_name": "test_08056.png", "caption": "This folk dubstep features female voices singing the main melody. This is accompanied by percussion playing a dubstep beat. The tempo of the beat is fast, incorporating shuffles. A jaw harp plays a quirky sound in the background. The tempo of the song is fast. At the beginning, there is no bass. Toward the end, the bass plays while the percussion gets louder. This song can be played in a club.", "data_idx": 4824, "number": 2, "label": "disco"} +{"file_name": "test_08057.png", "caption": "This folk dubstep features female voices singing the main melody. This is accompanied by percussion playing a dubstep beat. The tempo of the beat is fast, incorporating shuffles. A jaw harp plays a quirky sound in the background. The tempo of the song is fast. At the beginning, there is no bass. Toward the end, the bass plays while the percussion gets louder. This song can be played in a club.", "data_idx": 4824, "number": 3, "label": "disco"} +{"file_name": "test_08058.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over punchy kick and snare hits, shimmering hi hats, wide electric guitar melody and groovy bass guitar. It sounds energetic and addictive in the first half of the loop, while in the second part it's mellow and softer.", "data_idx": 4827, "number": 0, "label": "metal"} +{"file_name": "test_08059.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over punchy kick and snare hits, shimmering hi hats, wide electric guitar melody and groovy bass guitar. It sounds energetic and addictive in the first half of the loop, while in the second part it's mellow and softer.", "data_idx": 4827, "number": 1, "label": "metal"} +{"file_name": "test_08060.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over punchy kick and snare hits, shimmering hi hats, wide electric guitar melody and groovy bass guitar. It sounds energetic and addictive in the first half of the loop, while in the second part it's mellow and softer.", "data_idx": 4827, "number": 2, "label": "metal"} +{"file_name": "test_08061.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over punchy kick and snare hits, shimmering hi hats, wide electric guitar melody and groovy bass guitar. It sounds energetic and addictive in the first half of the loop, while in the second part it's mellow and softer.", "data_idx": 4827, "number": 3, "label": "metal"} +{"file_name": "test_08062.png", "caption": "The low quality recording features an electro song played live and it consists of at least a punchy snare and a boomy bass. There are some crowd cheering noises in the background. It sounds muffled, energetic, aggressive and distorted as the recording is very noisy and in mono.", "data_idx": 4830, "number": 0, "label": "classical"} +{"file_name": "test_08063.png", "caption": "The low quality recording features an electro song played live and it consists of at least a punchy snare and a boomy bass. There are some crowd cheering noises in the background. It sounds muffled, energetic, aggressive and distorted as the recording is very noisy and in mono.", "data_idx": 4830, "number": 1, "label": "classical"} +{"file_name": "test_08064.png", "caption": "The low quality recording features an electro song played live and it consists of at least a punchy snare and a boomy bass. There are some crowd cheering noises in the background. It sounds muffled, energetic, aggressive and distorted as the recording is very noisy and in mono.", "data_idx": 4830, "number": 2, "label": "classical"} +{"file_name": "test_08065.png", "caption": "The low quality recording features an electro song played live and it consists of at least a punchy snare and a boomy bass. There are some crowd cheering noises in the background. It sounds muffled, energetic, aggressive and distorted as the recording is very noisy and in mono.", "data_idx": 4830, "number": 3, "label": "classical"} +{"file_name": "test_08066.png", "caption": "This song features two harps playing a melody. In the beginning, both harps play the harp complimenting each other. After one bar, one of the harps plays the higher repetitive phrase and the other harp plays the lower register notes. This song has a happy mood. There are no other instruments in this song. There are no voices in this song. This song can be played in an inspirational video.", "data_idx": 4832, "number": 0, "label": "classical"} +{"file_name": "test_08067.png", "caption": "This song features two harps playing a melody. In the beginning, both harps play the harp complimenting each other. After one bar, one of the harps plays the higher repetitive phrase and the other harp plays the lower register notes. This song has a happy mood. There are no other instruments in this song. There are no voices in this song. This song can be played in an inspirational video.", "data_idx": 4832, "number": 1, "label": "classical"} +{"file_name": "test_08068.png", "caption": "This song features two harps playing a melody. In the beginning, both harps play the harp complimenting each other. After one bar, one of the harps plays the higher repetitive phrase and the other harp plays the lower register notes. This song has a happy mood. There are no other instruments in this song. There are no voices in this song. This song can be played in an inspirational video.", "data_idx": 4832, "number": 2, "label": "classical"} +{"file_name": "test_08069.png", "caption": "This song features two harps playing a melody. In the beginning, both harps play the harp complimenting each other. After one bar, one of the harps plays the higher repetitive phrase and the other harp plays the lower register notes. This song has a happy mood. There are no other instruments in this song. There are no voices in this song. This song can be played in an inspirational video.", "data_idx": 4832, "number": 3, "label": "classical"} +{"file_name": "test_08070.png", "caption": "This song features a pop song being sung by male voices in acapella . The voices sing the different parts of a choir. They are singing vocables and not words. The voices sing in harmony. Voices are singing the bass; alto and tenor parts. The mood of this song is romantic. This is an amateur recording. This song can be played in a romantic movie.", "data_idx": 4836, "number": 0, "label": "classical"} +{"file_name": "test_08071.png", "caption": "This song features a pop song being sung by male voices in acapella . The voices sing the different parts of a choir. They are singing vocables and not words. The voices sing in harmony. Voices are singing the bass; alto and tenor parts. The mood of this song is romantic. This is an amateur recording. This song can be played in a romantic movie.", "data_idx": 4836, "number": 1, "label": "classical"} +{"file_name": "test_08072.png", "caption": "This song features a pop song being sung by male voices in acapella . The voices sing the different parts of a choir. They are singing vocables and not words. The voices sing in harmony. Voices are singing the bass; alto and tenor parts. The mood of this song is romantic. This is an amateur recording. This song can be played in a romantic movie.", "data_idx": 4836, "number": 2, "label": "classical"} +{"file_name": "test_08073.png", "caption": "This song features a pop song being sung by male voices in acapella . The voices sing the different parts of a choir. They are singing vocables and not words. The voices sing in harmony. Voices are singing the bass; alto and tenor parts. The mood of this song is romantic. This is an amateur recording. This song can be played in a romantic movie.", "data_idx": 4836, "number": 3, "label": "classical"} +{"file_name": "test_08074.png", "caption": "This is the live performance of a pop music piece. It is an amateur recording. There are male vocals singing melodically. An electric guitar strums a chord for the ending of a song while the sounds of the cymbals can be heard from the acoustic drums. The cheers of the crowd can be heard even more than the music itself. This recording could be sampled for use in beat-making.", "data_idx": 4838, "number": 0, "label": "pop"} +{"file_name": "test_08075.png", "caption": "This is the live performance of a pop music piece. It is an amateur recording. There are male vocals singing melodically. An electric guitar strums a chord for the ending of a song while the sounds of the cymbals can be heard from the acoustic drums. The cheers of the crowd can be heard even more than the music itself. This recording could be sampled for use in beat-making.", "data_idx": 4838, "number": 1, "label": "pop"} +{"file_name": "test_08076.png", "caption": "The low quality recording features a live performance of a folk song and it consists of acoustic guitar solo melody, followed by banjo melody. The recording is noisy, there are some natural sounds - since it was performed outdoors and the stereo image is unbalanced due to the fact that the instruments are leaning towards the right channel of the stereo image. It still sounds passionate and upbeat.", "data_idx": 4839, "number": 0, "label": "classical"} +{"file_name": "test_08077.png", "caption": "The low quality recording features a live performance of a folk song and it consists of acoustic guitar solo melody, followed by banjo melody. The recording is noisy, there are some natural sounds - since it was performed outdoors and the stereo image is unbalanced due to the fact that the instruments are leaning towards the right channel of the stereo image. It still sounds passionate and upbeat.", "data_idx": 4839, "number": 1, "label": "classical"} +{"file_name": "test_08078.png", "caption": "The low quality recording features a live performance of a folk song and it consists of acoustic guitar solo melody, followed by banjo melody. The recording is noisy, there are some natural sounds - since it was performed outdoors and the stereo image is unbalanced due to the fact that the instruments are leaning towards the right channel of the stereo image. It still sounds passionate and upbeat.", "data_idx": 4839, "number": 2, "label": "classical"} +{"file_name": "test_08079.png", "caption": "The low quality recording features a live performance of a folk song and it consists of acoustic guitar solo melody, followed by banjo melody. The recording is noisy, there are some natural sounds - since it was performed outdoors and the stereo image is unbalanced due to the fact that the instruments are leaning towards the right channel of the stereo image. It still sounds passionate and upbeat.", "data_idx": 4839, "number": 3, "label": "classical"} +{"file_name": "test_08080.png", "caption": "A male voice is speaking. In the background you can hear other voices. Then someone starts playing a bagpipe in a higher register underlaying its own drone. This song may be played on the streets by a busker.", "data_idx": 4841, "number": 0, "label": "classical"} +{"file_name": "test_08081.png", "caption": "A male voice is speaking. In the background you can hear other voices. Then someone starts playing a bagpipe in a higher register underlaying its own drone. This song may be played on the streets by a busker.", "data_idx": 4841, "number": 1, "label": "classical"} +{"file_name": "test_08082.png", "caption": "A male voice is speaking. In the background you can hear other voices. Then someone starts playing a bagpipe in a higher register underlaying its own drone. This song may be played on the streets by a busker.", "data_idx": 4841, "number": 2, "label": "classical"} +{"file_name": "test_08083.png", "caption": "A male voice is speaking. In the background you can hear other voices. Then someone starts playing a bagpipe in a higher register underlaying its own drone. This song may be played on the streets by a busker.", "data_idx": 4841, "number": 3, "label": "classical"} +{"file_name": "test_08084.png", "caption": "This is an electronic dance/house music piece. There are female vocals singing melodically. The melody is being played by the keyboard with the electric guitar samples in the background. The rhythm consists of an electronic drum beat and electronic percussive elements. The atmosphere is danceable and energetic. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where a character is hesitating to open up to their crush.", "data_idx": 4843, "number": 0, "label": "disco"} +{"file_name": "test_08085.png", "caption": "This is an electronic dance/house music piece. There are female vocals singing melodically. The melody is being played by the keyboard with the electric guitar samples in the background. The rhythm consists of an electronic drum beat and electronic percussive elements. The atmosphere is danceable and energetic. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where a character is hesitating to open up to their crush.", "data_idx": 4843, "number": 1, "label": "disco"} +{"file_name": "test_08086.png", "caption": "This is an electronic dance/house music piece. There are female vocals singing melodically. The melody is being played by the keyboard with the electric guitar samples in the background. The rhythm consists of an electronic drum beat and electronic percussive elements. The atmosphere is danceable and energetic. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where a character is hesitating to open up to their crush.", "data_idx": 4843, "number": 2, "label": "disco"} +{"file_name": "test_08087.png", "caption": "This is an electronic dance/house music piece. There are female vocals singing melodically. The melody is being played by the keyboard with the electric guitar samples in the background. The rhythm consists of an electronic drum beat and electronic percussive elements. The atmosphere is danceable and energetic. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where a character is hesitating to open up to their crush.", "data_idx": 4843, "number": 3, "label": "disco"} +{"file_name": "test_08088.png", "caption": "This clip would be suitable for a movie soundtrack during a scene that is thrilling, intense, exciting and fueled with adrenaline. The music is played by an orchestra, with several layers of violin and brass instruments. The song brings about an atmosphere that invites action.", "data_idx": 4844, "number": 0, "label": "jazz"} +{"file_name": "test_08089.png", "caption": "This clip would be suitable for a movie soundtrack during a scene that is thrilling, intense, exciting and fueled with adrenaline. The music is played by an orchestra, with several layers of violin and brass instruments. The song brings about an atmosphere that invites action.", "data_idx": 4844, "number": 1, "label": "jazz"} +{"file_name": "test_08090.png", "caption": "This clip would be suitable for a movie soundtrack during a scene that is thrilling, intense, exciting and fueled with adrenaline. The music is played by an orchestra, with several layers of violin and brass instruments. The song brings about an atmosphere that invites action.", "data_idx": 4844, "number": 2, "label": "jazz"} +{"file_name": "test_08091.png", "caption": "This clip would be suitable for a movie soundtrack during a scene that is thrilling, intense, exciting and fueled with adrenaline. The music is played by an orchestra, with several layers of violin and brass instruments. The song brings about an atmosphere that invites action.", "data_idx": 4844, "number": 3, "label": "jazz"} +{"file_name": "test_08092.png", "caption": "The low quality recording features a soft echoing female vocal singing over mellow piano chords, mellow synth pad chords and reverberant percussion. It sounds soft, mellow, passionate, emotional and sad.", "data_idx": 4846, "number": 0, "label": "rock"} +{"file_name": "test_08093.png", "caption": "The low quality recording features a soft echoing female vocal singing over mellow piano chords, mellow synth pad chords and reverberant percussion. It sounds soft, mellow, passionate, emotional and sad.", "data_idx": 4846, "number": 1, "label": "rock"} +{"file_name": "test_08094.png", "caption": "The low quality recording features a soft echoing female vocal singing over mellow piano chords, mellow synth pad chords and reverberant percussion. It sounds soft, mellow, passionate, emotional and sad.", "data_idx": 4846, "number": 2, "label": "rock"} +{"file_name": "test_08095.png", "caption": "The low quality recording features a soft echoing female vocal singing over mellow piano chords, mellow synth pad chords and reverberant percussion. It sounds soft, mellow, passionate, emotional and sad.", "data_idx": 4846, "number": 3, "label": "rock"} +{"file_name": "test_08096.png", "caption": "A male singer sings this emotional melody. The song is medium tempo with a steady drumming rhythm, accordion accompaniment and people singing together in unison. The song is emotional and sentimental. The song audio quality is poor.", "data_idx": 4847, "number": 0, "label": "rock"} +{"file_name": "test_08097.png", "caption": "A male singer sings this emotional melody. The song is medium tempo with a steady drumming rhythm, accordion accompaniment and people singing together in unison. The song is emotional and sentimental. The song audio quality is poor.", "data_idx": 4847, "number": 1, "label": "rock"} +{"file_name": "test_08098.png", "caption": "A male singer sings this emotional melody. The song is medium tempo with a steady drumming rhythm, accordion accompaniment and people singing together in unison. The song is emotional and sentimental. The song audio quality is poor.", "data_idx": 4847, "number": 2, "label": "rock"} +{"file_name": "test_08099.png", "caption": "A male singer sings this emotional melody. The song is medium tempo with a steady drumming rhythm, accordion accompaniment and people singing together in unison. The song is emotional and sentimental. The song audio quality is poor.", "data_idx": 4847, "number": 3, "label": "rock"} +{"file_name": "test_08100.png", "caption": "A male vocalist sings this lively Rock song. The tempo is fast with bright trumpet harmony, groovy bass, infectious drumming , electric guitar and vocal backup. The music is upbeat, groovy, funky, high-spirited, vibrant and enthusiastic. This song is Retro Rock and Roll.", "data_idx": 4848, "number": 0, "label": "hiphop"} +{"file_name": "test_08101.png", "caption": "A male vocalist sings this lively Rock song. The tempo is fast with bright trumpet harmony, groovy bass, infectious drumming , electric guitar and vocal backup. The music is upbeat, groovy, funky, high-spirited, vibrant and enthusiastic. This song is Retro Rock and Roll.", "data_idx": 4848, "number": 1, "label": "hiphop"} +{"file_name": "test_08102.png", "caption": "The low quality recording features a reggae song that consists of flat male vocals, alongside filtered, echoing male vocal and doubling background vocals, singing over punchy kick and snare hits, energetic crash cymbals, tinny wooden percussions, groovy bass and synth keys chords. It sounds energetic, as it is upbeat and addictive, thanks to the cadence.", "data_idx": 4849, "number": 0, "label": "hiphop"} +{"file_name": "test_08103.png", "caption": "The low quality recording features a reggae song that consists of flat male vocals, alongside filtered, echoing male vocal and doubling background vocals, singing over punchy kick and snare hits, energetic crash cymbals, tinny wooden percussions, groovy bass and synth keys chords. It sounds energetic, as it is upbeat and addictive, thanks to the cadence.", "data_idx": 4849, "number": 1, "label": "hiphop"} +{"file_name": "test_08104.png", "caption": "The low quality recording features a reggae song that consists of flat male vocals, alongside filtered, echoing male vocal and doubling background vocals, singing over punchy kick and snare hits, energetic crash cymbals, tinny wooden percussions, groovy bass and synth keys chords. It sounds energetic, as it is upbeat and addictive, thanks to the cadence.", "data_idx": 4849, "number": 2, "label": "hiphop"} +{"file_name": "test_08105.png", "caption": "The low quality recording features a reggae song that consists of flat male vocals, alongside filtered, echoing male vocal and doubling background vocals, singing over punchy kick and snare hits, energetic crash cymbals, tinny wooden percussions, groovy bass and synth keys chords. It sounds energetic, as it is upbeat and addictive, thanks to the cadence.", "data_idx": 4849, "number": 3, "label": "hiphop"} +{"file_name": "test_08106.png", "caption": "Someone is playing an acoustic drum set with a lot of different percussive sounds such as tambourine, cowbell and congos. A male voice is speaking as if explaining something. This song may be playing in a drumming class.", "data_idx": 4854, "number": 0, "label": "disco"} +{"file_name": "test_08107.png", "caption": "Someone is playing an acoustic drum set with a lot of different percussive sounds such as tambourine, cowbell and congos. A male voice is speaking as if explaining something. This song may be playing in a drumming class.", "data_idx": 4854, "number": 1, "label": "disco"} +{"file_name": "test_08108.png", "caption": "Someone is playing an acoustic drum set with a lot of different percussive sounds such as tambourine, cowbell and congos. A male voice is speaking as if explaining something. This song may be playing in a drumming class.", "data_idx": 4854, "number": 2, "label": "disco"} +{"file_name": "test_08109.png", "caption": "Someone is playing an acoustic drum set with a lot of different percussive sounds such as tambourine, cowbell and congos. A male voice is speaking as if explaining something. This song may be playing in a drumming class.", "data_idx": 4854, "number": 3, "label": "disco"} +{"file_name": "test_08110.png", "caption": "This clip is two different tracks. The first one is a female vocalist singing a nursery rhyme with lively drums, tambourine beats and vocal backup. The second track is a child singing a song with a playful piano accompaniment . The songs are children\u2019s nursery rhymes.", "data_idx": 4856, "number": 0, "label": "reggae"} +{"file_name": "test_08111.png", "caption": "This clip is two different tracks. The first one is a female vocalist singing a nursery rhyme with lively drums, tambourine beats and vocal backup. The second track is a child singing a song with a playful piano accompaniment . The songs are children\u2019s nursery rhymes.", "data_idx": 4856, "number": 1, "label": "reggae"} +{"file_name": "test_08112.png", "caption": "This clip is two different tracks. The first one is a female vocalist singing a nursery rhyme with lively drums, tambourine beats and vocal backup. The second track is a child singing a song with a playful piano accompaniment . The songs are children\u2019s nursery rhymes.", "data_idx": 4856, "number": 2, "label": "reggae"} +{"file_name": "test_08113.png", "caption": "This clip is two different tracks. The first one is a female vocalist singing a nursery rhyme with lively drums, tambourine beats and vocal backup. The second track is a child singing a song with a playful piano accompaniment . The songs are children\u2019s nursery rhymes.", "data_idx": 4856, "number": 3, "label": "reggae"} +{"file_name": "test_08114.png", "caption": "The low quality recording features a cover of a classical song played on buzzy harpsichord melody. The recording is a bit noisy.", "data_idx": 4858, "number": 0, "label": "classical"} +{"file_name": "test_08115.png", "caption": "The low quality recording features a cover of a classical song played on buzzy harpsichord melody. The recording is a bit noisy.", "data_idx": 4858, "number": 1, "label": "classical"} +{"file_name": "test_08116.png", "caption": "The low quality recording features a cover of a classical song played on buzzy harpsichord melody. The recording is a bit noisy.", "data_idx": 4858, "number": 2, "label": "classical"} +{"file_name": "test_08117.png", "caption": "The low quality recording features a cover of a classical song played on buzzy harpsichord melody. The recording is a bit noisy.", "data_idx": 4858, "number": 3, "label": "classical"} +{"file_name": "test_08118.png", "caption": "A male voice is rapping in a higher pitch and with reverb and delay on his voice. An acoustic drum sample is playing a simple hip hop groove along with a tambourine like sound. The hihat is panned to the right side of the speakers. An e-bass is playing along. A clean e-guitar sample is being repeated as a melodic and rhythmic element. This song may be playing at home while cleaning the house.", "data_idx": 4861, "number": 0, "label": "hiphop"} +{"file_name": "test_08119.png", "caption": "A male voice is rapping in a higher pitch and with reverb and delay on his voice. An acoustic drum sample is playing a simple hip hop groove along with a tambourine like sound. The hihat is panned to the right side of the speakers. An e-bass is playing along. A clean e-guitar sample is being repeated as a melodic and rhythmic element. This song may be playing at home while cleaning the house.", "data_idx": 4861, "number": 1, "label": "hiphop"} +{"file_name": "test_08120.png", "caption": "A male voice is rapping in a higher pitch and with reverb and delay on his voice. An acoustic drum sample is playing a simple hip hop groove along with a tambourine like sound. The hihat is panned to the right side of the speakers. An e-bass is playing along. A clean e-guitar sample is being repeated as a melodic and rhythmic element. This song may be playing at home while cleaning the house.", "data_idx": 4861, "number": 2, "label": "hiphop"} +{"file_name": "test_08121.png", "caption": "A male voice is rapping in a higher pitch and with reverb and delay on his voice. An acoustic drum sample is playing a simple hip hop groove along with a tambourine like sound. The hihat is panned to the right side of the speakers. An e-bass is playing along. A clean e-guitar sample is being repeated as a melodic and rhythmic element. This song may be playing at home while cleaning the house.", "data_idx": 4861, "number": 3, "label": "hiphop"} +{"file_name": "test_08122.png", "caption": "This song features a shofar being played. It starts off with a sustained note followed by a higher note. After a short pause, the melody is repeated but the first note is shortened and the second, higher note is sustained. There are no other instruments in this song. This song has religious significance. This song can be played at the call of battle in a historical movie.", "data_idx": 4862, "number": 0, "label": "jazz"} +{"file_name": "test_08123.png", "caption": "This song features a shofar being played. It starts off with a sustained note followed by a higher note. After a short pause, the melody is repeated but the first note is shortened and the second, higher note is sustained. There are no other instruments in this song. This song has religious significance. This song can be played at the call of battle in a historical movie.", "data_idx": 4862, "number": 1, "label": "jazz"} +{"file_name": "test_08124.png", "caption": "This is an acoustic drum solo performance. The drummer is playing rapid and complex fills with a heavy use of cowbells. There is a clear latin music influence in this solo. It has an energetic aura. Parts of this performance could be sampled in use for beat-making.", "data_idx": 4864, "number": 0, "label": "reggae"} +{"file_name": "test_08125.png", "caption": "This is an acoustic drum solo performance. The drummer is playing rapid and complex fills with a heavy use of cowbells. There is a clear latin music influence in this solo. It has an energetic aura. Parts of this performance could be sampled in use for beat-making.", "data_idx": 4864, "number": 1, "label": "reggae"} +{"file_name": "test_08126.png", "caption": "This is an acoustic drum solo performance. The drummer is playing rapid and complex fills with a heavy use of cowbells. There is a clear latin music influence in this solo. It has an energetic aura. Parts of this performance could be sampled in use for beat-making.", "data_idx": 4864, "number": 2, "label": "reggae"} +{"file_name": "test_08127.png", "caption": "This is an acoustic drum solo performance. The drummer is playing rapid and complex fills with a heavy use of cowbells. There is a clear latin music influence in this solo. It has an energetic aura. Parts of this performance could be sampled in use for beat-making.", "data_idx": 4864, "number": 3, "label": "reggae"} +{"file_name": "test_08128.png", "caption": "The low quality recording features a traditional song that consists of wide wooden percussion, arpeggiated strings melody and breathy flute melody layered with brass melody. It sounds soulful, mystical and passionate.", "data_idx": 4865, "number": 0, "label": "hiphop"} +{"file_name": "test_08129.png", "caption": "The low quality recording features a traditional song that consists of wide wooden percussion, arpeggiated strings melody and breathy flute melody layered with brass melody. It sounds soulful, mystical and passionate.", "data_idx": 4865, "number": 1, "label": "hiphop"} +{"file_name": "test_08130.png", "caption": "This music is an upbeat instrumental . The tempo is fast with a funky harmonica melody leading to a pre-recorded track with infectious drumming, double bass and keyboard harmony. The track is muffled and incoherent. The music is. Catchy, lively, cheerful, perky, funky, happy, vivacious, vibrant and groovy. This music is a Blues Boogie instrumental.", "data_idx": 4866, "number": 0, "label": "disco"} +{"file_name": "test_08131.png", "caption": "This music is an upbeat instrumental . The tempo is fast with a funky harmonica melody leading to a pre-recorded track with infectious drumming, double bass and keyboard harmony. The track is muffled and incoherent. The music is. Catchy, lively, cheerful, perky, funky, happy, vivacious, vibrant and groovy. This music is a Blues Boogie instrumental.", "data_idx": 4866, "number": 1, "label": "disco"} +{"file_name": "test_08132.png", "caption": "This music is an upbeat instrumental . The tempo is fast with a funky harmonica melody leading to a pre-recorded track with infectious drumming, double bass and keyboard harmony. The track is muffled and incoherent. The music is. Catchy, lively, cheerful, perky, funky, happy, vivacious, vibrant and groovy. This music is a Blues Boogie instrumental.", "data_idx": 4866, "number": 2, "label": "disco"} +{"file_name": "test_08133.png", "caption": "This music is an upbeat instrumental . The tempo is fast with a funky harmonica melody leading to a pre-recorded track with infectious drumming, double bass and keyboard harmony. The track is muffled and incoherent. The music is. Catchy, lively, cheerful, perky, funky, happy, vivacious, vibrant and groovy. This music is a Blues Boogie instrumental.", "data_idx": 4866, "number": 3, "label": "disco"} +{"file_name": "test_08134.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll. It sounds suspenseful, dramatic and intense.", "data_idx": 4871, "number": 0, "label": "hiphop"} +{"file_name": "test_08135.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll. It sounds suspenseful, dramatic and intense.", "data_idx": 4871, "number": 1, "label": "hiphop"} +{"file_name": "test_08136.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll. It sounds suspenseful, dramatic and intense.", "data_idx": 4871, "number": 2, "label": "hiphop"} +{"file_name": "test_08137.png", "caption": "The low quality recording features a classical song that consists of a suspenseful brass melody, sustained strings and dynamic low percussion roll. It sounds suspenseful, dramatic and intense.", "data_idx": 4871, "number": 3, "label": "hiphop"} +{"file_name": "test_08138.png", "caption": "This music is a lively instrumental. The tempo is fast with the charming harmony of trumpet, saxophone, tuba and a rhythmic accordion accompaniment. The music is fresh, spirited,lively, pleasant, merry, cheerful, charming and entertaining. This music is a classical piece.", "data_idx": 4872, "number": 0, "label": "hiphop"} +{"file_name": "test_08139.png", "caption": "This music is a lively instrumental. The tempo is fast with the charming harmony of trumpet, saxophone, tuba and a rhythmic accordion accompaniment. The music is fresh, spirited,lively, pleasant, merry, cheerful, charming and entertaining. This music is a classical piece.", "data_idx": 4872, "number": 1, "label": "hiphop"} +{"file_name": "test_08140.png", "caption": "This music is a lively instrumental. The tempo is fast with the charming harmony of trumpet, saxophone, tuba and a rhythmic accordion accompaniment. The music is fresh, spirited,lively, pleasant, merry, cheerful, charming and entertaining. This music is a classical piece.", "data_idx": 4872, "number": 2, "label": "hiphop"} +{"file_name": "test_08141.png", "caption": "This music is a lively instrumental. The tempo is fast with the charming harmony of trumpet, saxophone, tuba and a rhythmic accordion accompaniment. The music is fresh, spirited,lively, pleasant, merry, cheerful, charming and entertaining. This music is a classical piece.", "data_idx": 4872, "number": 3, "label": "hiphop"} +{"file_name": "test_08142.png", "caption": "This orchestral song features a brass band. The main melody is played on the trumpet. The bass is played on a tuba. There are other brass instruments playing in harmony in the background. There is no percussion in this song. There is no voice in this song. The mood of this song is victorious. This song can be played when a champion takes the podium in a classic event such as fencing or an equestrian event.", "data_idx": 4874, "number": 0, "label": "classical"} +{"file_name": "test_08143.png", "caption": "This orchestral song features a brass band. The main melody is played on the trumpet. The bass is played on a tuba. There are other brass instruments playing in harmony in the background. There is no percussion in this song. There is no voice in this song. The mood of this song is victorious. This song can be played when a champion takes the podium in a classic event such as fencing or an equestrian event.", "data_idx": 4874, "number": 1, "label": "classical"} +{"file_name": "test_08144.png", "caption": "This orchestral song features a brass band. The main melody is played on the trumpet. The bass is played on a tuba. There are other brass instruments playing in harmony in the background. There is no percussion in this song. There is no voice in this song. The mood of this song is victorious. This song can be played when a champion takes the podium in a classic event such as fencing or an equestrian event.", "data_idx": 4874, "number": 2, "label": "classical"} +{"file_name": "test_08145.png", "caption": "This orchestral song features a brass band. The main melody is played on the trumpet. The bass is played on a tuba. There are other brass instruments playing in harmony in the background. There is no percussion in this song. There is no voice in this song. The mood of this song is victorious. This song can be played when a champion takes the podium in a classic event such as fencing or an equestrian event.", "data_idx": 4874, "number": 3, "label": "classical"} +{"file_name": "test_08146.png", "caption": "This song features the brass section of a symphonic orchestra. The melody is played on trumpets. It is accompanied by a trombone and a brass horn playing individual parts. This song is at a slow tempo and has a relaxing feel. There are no voices in this song. There is no percussion in this song. This song can be played when a hero is returning victorious from a battle.", "data_idx": 4875, "number": 0, "label": "classical"} +{"file_name": "test_08147.png", "caption": "This song features the brass section of a symphonic orchestra. The melody is played on trumpets. It is accompanied by a trombone and a brass horn playing individual parts. This song is at a slow tempo and has a relaxing feel. There are no voices in this song. There is no percussion in this song. This song can be played when a hero is returning victorious from a battle.", "data_idx": 4875, "number": 1, "label": "classical"} +{"file_name": "test_08148.png", "caption": "This song features the brass section of a symphonic orchestra. The melody is played on trumpets. It is accompanied by a trombone and a brass horn playing individual parts. This song is at a slow tempo and has a relaxing feel. There are no voices in this song. There is no percussion in this song. This song can be played when a hero is returning victorious from a battle.", "data_idx": 4875, "number": 2, "label": "classical"} +{"file_name": "test_08149.png", "caption": "This song features the brass section of a symphonic orchestra. The melody is played on trumpets. It is accompanied by a trombone and a brass horn playing individual parts. This song is at a slow tempo and has a relaxing feel. There are no voices in this song. There is no percussion in this song. This song can be played when a hero is returning victorious from a battle.", "data_idx": 4875, "number": 3, "label": "classical"} +{"file_name": "test_08150.png", "caption": "This is an advertisement video for a rhythm machine. Firstly, it is shown playing behind a bass guitar jam. Then, it is shown playing behind an acoustic guitar jam. A male voice is describing the benefits and functions of the rhythm machine. The parts where the instruments can be heard without the interruption of the voice can be sampled for use in beat-making.", "data_idx": 4876, "number": 0, "label": "hiphop"} +{"file_name": "test_08151.png", "caption": "This is an advertisement video for a rhythm machine. Firstly, it is shown playing behind a bass guitar jam. Then, it is shown playing behind an acoustic guitar jam. A male voice is describing the benefits and functions of the rhythm machine. The parts where the instruments can be heard without the interruption of the voice can be sampled for use in beat-making.", "data_idx": 4876, "number": 1, "label": "hiphop"} +{"file_name": "test_08152.png", "caption": "This is an advertisement video for a rhythm machine. Firstly, it is shown playing behind a bass guitar jam. Then, it is shown playing behind an acoustic guitar jam. A male voice is describing the benefits and functions of the rhythm machine. The parts where the instruments can be heard without the interruption of the voice can be sampled for use in beat-making.", "data_idx": 4876, "number": 2, "label": "hiphop"} +{"file_name": "test_08153.png", "caption": "This is an advertisement video for a rhythm machine. Firstly, it is shown playing behind a bass guitar jam. Then, it is shown playing behind an acoustic guitar jam. A male voice is describing the benefits and functions of the rhythm machine. The parts where the instruments can be heard without the interruption of the voice can be sampled for use in beat-making.", "data_idx": 4876, "number": 3, "label": "hiphop"} +{"file_name": "test_08154.png", "caption": "This song is played on the bamboo flute. The melody is simple and traditional. The sound is tremulous. There are no other instruments in this song. There are no voices in this song. This song can be played in a children's kung fu animation movie.", "data_idx": 4880, "number": 0, "label": "jazz"} +{"file_name": "test_08155.png", "caption": "This song is played on the bamboo flute. The melody is simple and traditional. The sound is tremulous. There are no other instruments in this song. There are no voices in this song. This song can be played in a children's kung fu animation movie.", "data_idx": 4880, "number": 1, "label": "jazz"} +{"file_name": "test_08156.png", "caption": "This song is played on the bamboo flute. The melody is simple and traditional. The sound is tremulous. There are no other instruments in this song. There are no voices in this song. This song can be played in a children's kung fu animation movie.", "data_idx": 4880, "number": 2, "label": "jazz"} +{"file_name": "test_08157.png", "caption": "This song is played on the bamboo flute. The melody is simple and traditional. The sound is tremulous. There are no other instruments in this song. There are no voices in this song. This song can be played in a children's kung fu animation movie.", "data_idx": 4880, "number": 3, "label": "jazz"} +{"file_name": "test_08158.png", "caption": "The song is an instrumental. The tempo is slow with an Indian flute or bansuri playing soulfully to the keyboard accompaniment, sitar accompaniment and a tabla player waiting to join in. The music is soulful and emotional. The audio quality is poor.", "data_idx": 4882, "number": 0, "label": "jazz"} +{"file_name": "test_08159.png", "caption": "The song is an instrumental. The tempo is slow with an Indian flute or bansuri playing soulfully to the keyboard accompaniment, sitar accompaniment and a tabla player waiting to join in. The music is soulful and emotional. The audio quality is poor.", "data_idx": 4882, "number": 1, "label": "jazz"} +{"file_name": "test_08160.png", "caption": "The song is an instrumental. The tempo is slow with an Indian flute or bansuri playing soulfully to the keyboard accompaniment, sitar accompaniment and a tabla player waiting to join in. The music is soulful and emotional. The audio quality is poor.", "data_idx": 4882, "number": 2, "label": "jazz"} +{"file_name": "test_08161.png", "caption": "The song is an instrumental. The tempo is slow with an Indian flute or bansuri playing soulfully to the keyboard accompaniment, sitar accompaniment and a tabla player waiting to join in. The music is soulful and emotional. The audio quality is poor.", "data_idx": 4882, "number": 3, "label": "jazz"} +{"file_name": "test_08162.png", "caption": "This is a kids music piece. There is a keyboard playing the main tune while the wind chimes and the xylophone can be heard adding texture. There are sound effects such as clicks and a clown horn. A female voice says \"ice cream\". The atmosphere is goofy and generic. This piece could be used in the background of an educational video about ice cream meant for kids.", "data_idx": 4884, "number": 0, "label": "rock"} +{"file_name": "test_08163.png", "caption": "This is a kids music piece. There is a keyboard playing the main tune while the wind chimes and the xylophone can be heard adding texture. There are sound effects such as clicks and a clown horn. A female voice says \"ice cream\". The atmosphere is goofy and generic. This piece could be used in the background of an educational video about ice cream meant for kids.", "data_idx": 4884, "number": 1, "label": "rock"} +{"file_name": "test_08164.png", "caption": "This is a kids music piece. There is a keyboard playing the main tune while the wind chimes and the xylophone can be heard adding texture. There are sound effects such as clicks and a clown horn. A female voice says \"ice cream\". The atmosphere is goofy and generic. This piece could be used in the background of an educational video about ice cream meant for kids.", "data_idx": 4884, "number": 2, "label": "rock"} +{"file_name": "test_08165.png", "caption": "This is a kids music piece. There is a keyboard playing the main tune while the wind chimes and the xylophone can be heard adding texture. There are sound effects such as clicks and a clown horn. A female voice says \"ice cream\". The atmosphere is goofy and generic. This piece could be used in the background of an educational video about ice cream meant for kids.", "data_idx": 4884, "number": 3, "label": "rock"} +{"file_name": "test_08166.png", "caption": "This audio contains a composition played by brass instruments such as trumpets playing a melody in the higher range along with a deeper horn and a bass horn. This song may be playing at a theater presenting this composition.", "data_idx": 4885, "number": 0, "label": "classical"} +{"file_name": "test_08167.png", "caption": "This audio contains a composition played by brass instruments such as trumpets playing a melody in the higher range along with a deeper horn and a bass horn. This song may be playing at a theater presenting this composition.", "data_idx": 4885, "number": 1, "label": "classical"} +{"file_name": "test_08168.png", "caption": "This audio contains a composition played by brass instruments such as trumpets playing a melody in the higher range along with a deeper horn and a bass horn. This song may be playing at a theater presenting this composition.", "data_idx": 4885, "number": 2, "label": "classical"} +{"file_name": "test_08169.png", "caption": "This audio contains a composition played by brass instruments such as trumpets playing a melody in the higher range along with a deeper horn and a bass horn. This song may be playing at a theater presenting this composition.", "data_idx": 4885, "number": 3, "label": "classical"} +{"file_name": "test_08170.png", "caption": "Someone is playing soft and warm sounding chords on an analog synthesizer slowly opening up a filter letting higher frequencies pass. Someone is playing a melody along on a theremin. Both are playing in the mid to higher range. This song may be playing live.", "data_idx": 4887, "number": 0, "label": "hiphop"} +{"file_name": "test_08171.png", "caption": "Someone is playing soft and warm sounding chords on an analog synthesizer slowly opening up a filter letting higher frequencies pass. Someone is playing a melody along on a theremin. Both are playing in the mid to higher range. This song may be playing live.", "data_idx": 4887, "number": 1, "label": "hiphop"} +{"file_name": "test_08172.png", "caption": "Someone is playing soft and warm sounding chords on an analog synthesizer slowly opening up a filter letting higher frequencies pass. Someone is playing a melody along on a theremin. Both are playing in the mid to higher range. This song may be playing live.", "data_idx": 4887, "number": 2, "label": "hiphop"} +{"file_name": "test_08173.png", "caption": "Someone is playing soft and warm sounding chords on an analog synthesizer slowly opening up a filter letting higher frequencies pass. Someone is playing a melody along on a theremin. Both are playing in the mid to higher range. This song may be playing live.", "data_idx": 4887, "number": 3, "label": "hiphop"} +{"file_name": "test_08174.png", "caption": "The low quality recording features passionate harmonizing choir vocals, alongside fruity male vocals. It sounds passionate, traditional and joyful. The recording is noisy and in mono.", "data_idx": 4896, "number": 0, "label": "classical"} +{"file_name": "test_08175.png", "caption": "The low quality recording features passionate harmonizing choir vocals, alongside fruity male vocals. It sounds passionate, traditional and joyful. The recording is noisy and in mono.", "data_idx": 4896, "number": 1, "label": "classical"} +{"file_name": "test_08176.png", "caption": "The low quality recording features passionate harmonizing choir vocals, alongside fruity male vocals. It sounds passionate, traditional and joyful. The recording is noisy and in mono.", "data_idx": 4896, "number": 2, "label": "classical"} +{"file_name": "test_08177.png", "caption": "The low quality recording features passionate harmonizing choir vocals, alongside fruity male vocals. It sounds passionate, traditional and joyful. The recording is noisy and in mono.", "data_idx": 4896, "number": 3, "label": "classical"} +{"file_name": "test_08178.png", "caption": "This audio clip features an instruction of playing the guitar. An electric guitar plays a descending pentatonic run at two different places on the guitar to give a different feel. The voice narrates the process of playing the notes. This is followed by a double stop which is played seven times with a string bend on the eighth time. This can be used in an instruction video.", "data_idx": 4901, "number": 0, "label": "hiphop"} +{"file_name": "test_08179.png", "caption": "This audio clip features an instruction of playing the guitar. An electric guitar plays a descending pentatonic run at two different places on the guitar to give a different feel. The voice narrates the process of playing the notes. This is followed by a double stop which is played seven times with a string bend on the eighth time. This can be used in an instruction video.", "data_idx": 4901, "number": 1, "label": "hiphop"} +{"file_name": "test_08180.png", "caption": "This audio clip features an instruction of playing the guitar. An electric guitar plays a descending pentatonic run at two different places on the guitar to give a different feel. The voice narrates the process of playing the notes. This is followed by a double stop which is played seven times with a string bend on the eighth time. This can be used in an instruction video.", "data_idx": 4901, "number": 2, "label": "hiphop"} +{"file_name": "test_08181.png", "caption": "This audio clip features an instruction of playing the guitar. An electric guitar plays a descending pentatonic run at two different places on the guitar to give a different feel. The voice narrates the process of playing the notes. This is followed by a double stop which is played seven times with a string bend on the eighth time. This can be used in an instruction video.", "data_idx": 4901, "number": 3, "label": "hiphop"} +{"file_name": "test_08182.png", "caption": "Solo latin percussion music featuring congas, cowbells, and timbales, performing complex rhythms.", "data_idx": 4902, "number": 0, "label": "disco"} +{"file_name": "test_08183.png", "caption": "Solo latin percussion music featuring congas, cowbells, and timbales, performing complex rhythms.", "data_idx": 4902, "number": 1, "label": "disco"} +{"file_name": "test_08184.png", "caption": "Solo latin percussion music featuring congas, cowbells, and timbales, performing complex rhythms.", "data_idx": 4902, "number": 2, "label": "disco"} +{"file_name": "test_08185.png", "caption": "Solo latin percussion music featuring congas, cowbells, and timbales, performing complex rhythms.", "data_idx": 4902, "number": 3, "label": "disco"} +{"file_name": "test_08186.png", "caption": "This is a recording of an electric guitar, first with a chord being strummed and allowed to ring out, then with licks being played. The guitarist plays a blues lick with the guitar producing a clean and compressed tone.", "data_idx": 4903, "number": 0, "label": "jazz"} +{"file_name": "test_08187.png", "caption": "This is a recording of an electric guitar, first with a chord being strummed and allowed to ring out, then with licks being played. The guitarist plays a blues lick with the guitar producing a clean and compressed tone.", "data_idx": 4903, "number": 1, "label": "jazz"} +{"file_name": "test_08188.png", "caption": "This is a recording of an electric guitar, first with a chord being strummed and allowed to ring out, then with licks being played. The guitarist plays a blues lick with the guitar producing a clean and compressed tone.", "data_idx": 4903, "number": 2, "label": "jazz"} +{"file_name": "test_08189.png", "caption": "This is a recording of an electric guitar, first with a chord being strummed and allowed to ring out, then with licks being played. The guitarist plays a blues lick with the guitar producing a clean and compressed tone.", "data_idx": 4903, "number": 3, "label": "jazz"} +{"file_name": "test_08190.png", "caption": "Male voice over with a solo oboe melody in the background.", "data_idx": 4908, "number": 0, "label": "blues"} +{"file_name": "test_08191.png", "caption": "Male voice over with a solo oboe melody in the background.", "data_idx": 4908, "number": 1, "label": "blues"} +{"file_name": "test_08192.png", "caption": "The low quality recording features in-game sound effects and background orchestral music. The in-game sounds are weird high pitched grunts, female grunts, swoosh sound effects, hitting sound effects and laser sound effects. The background music consists of wide strings melody, woodwinds melody and low staccato brass melody. It sounds suspenseful, intense, dramatic and there is a constant noise in the background.", "data_idx": 4909, "number": 0, "label": "classical"} +{"file_name": "test_08193.png", "caption": "The low quality recording features in-game sound effects and background orchestral music. The in-game sounds are weird high pitched grunts, female grunts, swoosh sound effects, hitting sound effects and laser sound effects. The background music consists of wide strings melody, woodwinds melody and low staccato brass melody. It sounds suspenseful, intense, dramatic and there is a constant noise in the background.", "data_idx": 4909, "number": 1, "label": "classical"} +{"file_name": "test_08194.png", "caption": "The low quality recording features multiple layers of french horn melodies. It sounds passionate, a bit muddy and soulful.", "data_idx": 4911, "number": 0, "label": "jazz"} +{"file_name": "test_08195.png", "caption": "The low quality recording features multiple layers of french horn melodies. It sounds passionate, a bit muddy and soulful.", "data_idx": 4911, "number": 1, "label": "jazz"} +{"file_name": "test_08196.png", "caption": "The low quality recording features multiple layers of french horn melodies. It sounds passionate, a bit muddy and soulful.", "data_idx": 4911, "number": 2, "label": "jazz"} +{"file_name": "test_08197.png", "caption": "The low quality recording features multiple layers of french horn melodies. It sounds passionate, a bit muddy and soulful.", "data_idx": 4911, "number": 3, "label": "jazz"} +{"file_name": "test_08198.png", "caption": "Here we have a live recording of a song intro which is likely played by an orchestra. We hear vibrant brass instruments which create an air of importance about the moment. In the background, there are hundreds or thousands of fans screaming, and we hear a teen screaming really close to the recording device. The audio quality is low.", "data_idx": 4912, "number": 0, "label": "blues"} +{"file_name": "test_08199.png", "caption": "Here we have a live recording of a song intro which is likely played by an orchestra. We hear vibrant brass instruments which create an air of importance about the moment. In the background, there are hundreds or thousands of fans screaming, and we hear a teen screaming really close to the recording device. The audio quality is low.", "data_idx": 4912, "number": 1, "label": "blues"} +{"file_name": "test_08200.png", "caption": "Here we have a live recording of a song intro which is likely played by an orchestra. We hear vibrant brass instruments which create an air of importance about the moment. In the background, there are hundreds or thousands of fans screaming, and we hear a teen screaming really close to the recording device. The audio quality is low.", "data_idx": 4912, "number": 2, "label": "blues"} +{"file_name": "test_08201.png", "caption": "Here we have a live recording of a song intro which is likely played by an orchestra. We hear vibrant brass instruments which create an air of importance about the moment. In the background, there are hundreds or thousands of fans screaming, and we hear a teen screaming really close to the recording device. The audio quality is low.", "data_idx": 4912, "number": 3, "label": "blues"} +{"file_name": "test_08202.png", "caption": "This low quality audio features too much noise. The instruments are not audible due to the noise.", "data_idx": 4913, "number": 0, "label": "metal"} +{"file_name": "test_08203.png", "caption": "This low quality audio features too much noise. The instruments are not audible due to the noise.", "data_idx": 4913, "number": 1, "label": "metal"} +{"file_name": "test_08204.png", "caption": "This low quality audio features too much noise. The instruments are not audible due to the noise.", "data_idx": 4913, "number": 2, "label": "metal"} +{"file_name": "test_08205.png", "caption": "This low quality audio features too much noise. The instruments are not audible due to the noise.", "data_idx": 4913, "number": 3, "label": "metal"} +{"file_name": "test_08206.png", "caption": "This is a poor quality recording of a yodeling music piece. There is a male vocalist singing rapidly with the yodeling technique. The melody is being played by an accordion. There is a bass guitar playing in the background. The rhythm is provided by an upbeat acoustic drum beat. The atmosphere is cheerful. Despite the quality issue of the recording, it would suit well as a rural radio station music playing inside the car in a movie.", "data_idx": 4915, "number": 0, "label": "reggae"} +{"file_name": "test_08207.png", "caption": "This is a poor quality recording of a yodeling music piece. There is a male vocalist singing rapidly with the yodeling technique. The melody is being played by an accordion. There is a bass guitar playing in the background. The rhythm is provided by an upbeat acoustic drum beat. The atmosphere is cheerful. Despite the quality issue of the recording, it would suit well as a rural radio station music playing inside the car in a movie.", "data_idx": 4915, "number": 1, "label": "reggae"} +{"file_name": "test_08208.png", "caption": "This is a Spanish Christmas song with child vocalists. The song has a jolly and positive vibe to it. There are string instruments and brass instruments. The brass plays a three note motif that is vibrant and positive.", "data_idx": 4919, "number": 0, "label": "reggae"} +{"file_name": "test_08209.png", "caption": "This is a Spanish Christmas song with child vocalists. The song has a jolly and positive vibe to it. There are string instruments and brass instruments. The brass plays a three note motif that is vibrant and positive.", "data_idx": 4919, "number": 1, "label": "reggae"} +{"file_name": "test_08210.png", "caption": "This is a Spanish Christmas song with child vocalists. The song has a jolly and positive vibe to it. There are string instruments and brass instruments. The brass plays a three note motif that is vibrant and positive.", "data_idx": 4919, "number": 2, "label": "reggae"} +{"file_name": "test_08211.png", "caption": "This is a Spanish Christmas song with child vocalists. The song has a jolly and positive vibe to it. There are string instruments and brass instruments. The brass plays a three note motif that is vibrant and positive.", "data_idx": 4919, "number": 3, "label": "reggae"} +{"file_name": "test_08212.png", "caption": "The low quality recording features a live performance of a rock song that consists of a passionate male vocal, followed by passionate female vocal singing over shimmering cymbals, mellow snare and kick hits, electric guitar melody and groovy bass guitar. It sounds distant, reverberant, but also energetic.", "data_idx": 4922, "number": 0, "label": "metal"} +{"file_name": "test_08213.png", "caption": "The low quality recording features a live performance of a rock song that consists of a passionate male vocal, followed by passionate female vocal singing over shimmering cymbals, mellow snare and kick hits, electric guitar melody and groovy bass guitar. It sounds distant, reverberant, but also energetic.", "data_idx": 4922, "number": 1, "label": "metal"} +{"file_name": "test_08214.png", "caption": "The low quality recording features a live performance of a rock song that consists of a passionate male vocal, followed by passionate female vocal singing over shimmering cymbals, mellow snare and kick hits, electric guitar melody and groovy bass guitar. It sounds distant, reverberant, but also energetic.", "data_idx": 4922, "number": 2, "label": "metal"} +{"file_name": "test_08215.png", "caption": "The low quality recording features a live performance of a rock song that consists of a passionate male vocal, followed by passionate female vocal singing over shimmering cymbals, mellow snare and kick hits, electric guitar melody and groovy bass guitar. It sounds distant, reverberant, but also energetic.", "data_idx": 4922, "number": 3, "label": "metal"} +{"file_name": "test_08216.png", "caption": "The low quality, mono recording features reverberant wooden toms, played after long silence, which makes it weird.", "data_idx": 4923, "number": 0, "label": "hiphop"} +{"file_name": "test_08217.png", "caption": "The low quality, mono recording features reverberant wooden toms, played after long silence, which makes it weird.", "data_idx": 4923, "number": 1, "label": "hiphop"} +{"file_name": "test_08218.png", "caption": "The low quality, mono recording features reverberant wooden toms, played after long silence, which makes it weird.", "data_idx": 4923, "number": 2, "label": "hiphop"} +{"file_name": "test_08219.png", "caption": "The low quality, mono recording features reverberant wooden toms, played after long silence, which makes it weird.", "data_idx": 4923, "number": 3, "label": "hiphop"} +{"file_name": "test_08220.png", "caption": "The low quality recording features a flat male vocal talking, after which an accordion melody starts playing. It sounds joyful and happy, even though the recording is noisy.", "data_idx": 4925, "number": 0, "label": "rock"} +{"file_name": "test_08221.png", "caption": "The low quality recording features a flat male vocal talking, after which an accordion melody starts playing. It sounds joyful and happy, even though the recording is noisy.", "data_idx": 4925, "number": 1, "label": "rock"} +{"file_name": "test_08222.png", "caption": "The low quality recording features a flat male vocal talking, after which an accordion melody starts playing. It sounds joyful and happy, even though the recording is noisy.", "data_idx": 4925, "number": 2, "label": "rock"} +{"file_name": "test_08223.png", "caption": "The low quality recording features a flat male vocal talking, after which an accordion melody starts playing. It sounds joyful and happy, even though the recording is noisy.", "data_idx": 4925, "number": 3, "label": "rock"} +{"file_name": "test_08224.png", "caption": "This heavy metal song features a male voice singing the main melody. This voice sings in an angry tone. The voice is shrieking. This is accompanied by percussion playing an aggressive rock beat. The distortion guitar plays a riff which starts off on the root note and then plays higher notes in the scale descending back to the root note. The bass plays the root notes of the chords. The mood of this song is anger. This song can be played in an action sequence in a movie.", "data_idx": 4926, "number": 0, "label": "metal"} +{"file_name": "test_08225.png", "caption": "This heavy metal song features a male voice singing the main melody. This voice sings in an angry tone. The voice is shrieking. This is accompanied by percussion playing an aggressive rock beat. The distortion guitar plays a riff which starts off on the root note and then plays higher notes in the scale descending back to the root note. The bass plays the root notes of the chords. The mood of this song is anger. This song can be played in an action sequence in a movie.", "data_idx": 4926, "number": 1, "label": "metal"} +{"file_name": "test_08226.png", "caption": "This heavy metal song features a male voice singing the main melody. This voice sings in an angry tone. The voice is shrieking. This is accompanied by percussion playing an aggressive rock beat. The distortion guitar plays a riff which starts off on the root note and then plays higher notes in the scale descending back to the root note. The bass plays the root notes of the chords. The mood of this song is anger. This song can be played in an action sequence in a movie.", "data_idx": 4926, "number": 2, "label": "metal"} +{"file_name": "test_08227.png", "caption": "This heavy metal song features a male voice singing the main melody. This voice sings in an angry tone. The voice is shrieking. This is accompanied by percussion playing an aggressive rock beat. The distortion guitar plays a riff which starts off on the root note and then plays higher notes in the scale descending back to the root note. The bass plays the root notes of the chords. The mood of this song is anger. This song can be played in an action sequence in a movie.", "data_idx": 4926, "number": 3, "label": "metal"} +{"file_name": "test_08228.png", "caption": "Here we have a couple of musicians playing bagpipes live, and in the background there is the vehicle engine sound of a supercar. The video was recorded outside as we hear the ambient noise of a city.", "data_idx": 4928, "number": 0, "label": "classical"} +{"file_name": "test_08229.png", "caption": "Here we have a couple of musicians playing bagpipes live, and in the background there is the vehicle engine sound of a supercar. The video was recorded outside as we hear the ambient noise of a city.", "data_idx": 4928, "number": 1, "label": "classical"} +{"file_name": "test_08230.png", "caption": "Here we have a couple of musicians playing bagpipes live, and in the background there is the vehicle engine sound of a supercar. The video was recorded outside as we hear the ambient noise of a city.", "data_idx": 4928, "number": 2, "label": "classical"} +{"file_name": "test_08231.png", "caption": "Here we have a couple of musicians playing bagpipes live, and in the background there is the vehicle engine sound of a supercar. The video was recorded outside as we hear the ambient noise of a city.", "data_idx": 4928, "number": 3, "label": "classical"} +{"file_name": "test_08232.png", "caption": "The low quality recording features a short snippet of theremin solo melody, after which there is a complete silence, as the performer turned off his microphone. The recording is noisy and in mono.", "data_idx": 4929, "number": 0, "label": "hiphop"} +{"file_name": "test_08233.png", "caption": "The low quality recording features a short snippet of theremin solo melody, after which there is a complete silence, as the performer turned off his microphone. The recording is noisy and in mono.", "data_idx": 4929, "number": 1, "label": "hiphop"} +{"file_name": "test_08234.png", "caption": "The low quality recording features a short snippet of theremin solo melody, after which there is a complete silence, as the performer turned off his microphone. The recording is noisy and in mono.", "data_idx": 4929, "number": 2, "label": "hiphop"} +{"file_name": "test_08235.png", "caption": "The low quality recording features a short snippet of theremin solo melody, after which there is a complete silence, as the performer turned off his microphone. The recording is noisy and in mono.", "data_idx": 4929, "number": 3, "label": "hiphop"} +{"file_name": "test_08236.png", "caption": "This song features a harmonica playing the main melody. This is accompanied by percussion playing a simple beat with the focus on the snare. The bass plays the root note of the chord. Due to the low quality of the audio, the other instruments cannot be heard. T.", "data_idx": 4931, "number": 0, "label": "blues"} +{"file_name": "test_08237.png", "caption": "This song features a harmonica playing the main melody. This is accompanied by percussion playing a simple beat with the focus on the snare. The bass plays the root note of the chord. Due to the low quality of the audio, the other instruments cannot be heard. T.", "data_idx": 4931, "number": 1, "label": "blues"} +{"file_name": "test_08238.png", "caption": "This song features a harmonica playing the main melody. This is accompanied by percussion playing a simple beat with the focus on the snare. The bass plays the root note of the chord. Due to the low quality of the audio, the other instruments cannot be heard. T.", "data_idx": 4931, "number": 2, "label": "blues"} +{"file_name": "test_08239.png", "caption": "This song features a harmonica playing the main melody. This is accompanied by percussion playing a simple beat with the focus on the snare. The bass plays the root note of the chord. Due to the low quality of the audio, the other instruments cannot be heard. T.", "data_idx": 4931, "number": 3, "label": "blues"} +{"file_name": "test_08240.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised music and electronic arrangements with heavy reverb and surround sound. The music is droning, incessant, trippy, hypnotic and trance like. This is an EDM/Synth Pop.", "data_idx": 4932, "number": 0, "label": "metal"} +{"file_name": "test_08241.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised music and electronic arrangements with heavy reverb and surround sound. The music is droning, incessant, trippy, hypnotic and trance like. This is an EDM/Synth Pop.", "data_idx": 4932, "number": 1, "label": "metal"} +{"file_name": "test_08242.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised music and electronic arrangements with heavy reverb and surround sound. The music is droning, incessant, trippy, hypnotic and trance like. This is an EDM/Synth Pop.", "data_idx": 4932, "number": 2, "label": "metal"} +{"file_name": "test_08243.png", "caption": "This music is an electronic instrumental. The tempo is fast with heavily synthesised music and electronic arrangements with heavy reverb and surround sound. The music is droning, incessant, trippy, hypnotic and trance like. This is an EDM/Synth Pop.", "data_idx": 4932, "number": 3, "label": "metal"} +{"file_name": "test_08244.png", "caption": "This music is instrumental. The tempo is slow with an intense violin harmony with heavy bass cello. The music is intense, serious, grim, spooky, eerie, terrifying and spine chilling and sounds like the soundtrack of a horror movie.", "data_idx": 4934, "number": 0, "label": "classical"} +{"file_name": "test_08245.png", "caption": "This music is instrumental. The tempo is slow with an intense violin harmony with heavy bass cello. The music is intense, serious, grim, spooky, eerie, terrifying and spine chilling and sounds like the soundtrack of a horror movie.", "data_idx": 4934, "number": 1, "label": "classical"} +{"file_name": "test_08246.png", "caption": "This music is instrumental. The tempo is slow with an intense violin harmony with heavy bass cello. The music is intense, serious, grim, spooky, eerie, terrifying and spine chilling and sounds like the soundtrack of a horror movie.", "data_idx": 4934, "number": 2, "label": "classical"} +{"file_name": "test_08247.png", "caption": "This music is instrumental. The tempo is slow with an intense violin harmony with heavy bass cello. The music is intense, serious, grim, spooky, eerie, terrifying and spine chilling and sounds like the soundtrack of a horror movie.", "data_idx": 4934, "number": 3, "label": "classical"} +{"file_name": "test_08248.png", "caption": "The low quality recording features a passionate electric guitar lick played over electric guitar chords. It sounds emotional, soulful and the recording is noisy and in mono.", "data_idx": 4935, "number": 0, "label": "classical"} +{"file_name": "test_08249.png", "caption": "The low quality recording features a passionate electric guitar lick played over electric guitar chords. It sounds emotional, soulful and the recording is noisy and in mono.", "data_idx": 4935, "number": 1, "label": "classical"} +{"file_name": "test_08250.png", "caption": "The low quality recording features a passionate electric guitar lick played over electric guitar chords. It sounds emotional, soulful and the recording is noisy and in mono.", "data_idx": 4935, "number": 2, "label": "classical"} +{"file_name": "test_08251.png", "caption": "The low quality recording features a passionate electric guitar lick played over electric guitar chords. It sounds emotional, soulful and the recording is noisy and in mono.", "data_idx": 4935, "number": 3, "label": "classical"} +{"file_name": "test_08252.png", "caption": "The Electro song features a harmonizing passionate male vocals, with widely spread and dynamic echo effect on it, singing over groovy bass, groovy piano chords, synth keys and filtered \"4 on the floor\" kick pattern. It sounds exciting, easygoing and addictive - like something you would hear in a DJ set as a warm up.", "data_idx": 4939, "number": 0, "label": "blues"} +{"file_name": "test_08253.png", "caption": "The Electro song features a harmonizing passionate male vocals, with widely spread and dynamic echo effect on it, singing over groovy bass, groovy piano chords, synth keys and filtered \"4 on the floor\" kick pattern. It sounds exciting, easygoing and addictive - like something you would hear in a DJ set as a warm up.", "data_idx": 4939, "number": 1, "label": "blues"} +{"file_name": "test_08254.png", "caption": "The Electro song features a harmonizing passionate male vocals, with widely spread and dynamic echo effect on it, singing over groovy bass, groovy piano chords, synth keys and filtered \"4 on the floor\" kick pattern. It sounds exciting, easygoing and addictive - like something you would hear in a DJ set as a warm up.", "data_idx": 4939, "number": 2, "label": "blues"} +{"file_name": "test_08255.png", "caption": "The Electro song features a harmonizing passionate male vocals, with widely spread and dynamic echo effect on it, singing over groovy bass, groovy piano chords, synth keys and filtered \"4 on the floor\" kick pattern. It sounds exciting, easygoing and addictive - like something you would hear in a DJ set as a warm up.", "data_idx": 4939, "number": 3, "label": "blues"} +{"file_name": "test_08256.png", "caption": "This is a pop/soft rock music piece. There is a female vocalist singing melodically in the lead. The keyboard is playing the main tune while the bass guitar plays in the background. The rhythm is being provided by an acoustic drum beat. The atmosphere is lighthearted. The piece has a slow tempo. The song is in major key. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where the characters are reminiscing about the good old days.", "data_idx": 4940, "number": 0, "label": "rock"} +{"file_name": "test_08257.png", "caption": "This is a pop/soft rock music piece. There is a female vocalist singing melodically in the lead. The keyboard is playing the main tune while the bass guitar plays in the background. The rhythm is being provided by an acoustic drum beat. The atmosphere is lighthearted. The piece has a slow tempo. The song is in major key. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where the characters are reminiscing about the good old days.", "data_idx": 4940, "number": 1, "label": "rock"} +{"file_name": "test_08258.png", "caption": "This is a pop/soft rock music piece. There is a female vocalist singing melodically in the lead. The keyboard is playing the main tune while the bass guitar plays in the background. The rhythm is being provided by an acoustic drum beat. The atmosphere is lighthearted. The piece has a slow tempo. The song is in major key. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where the characters are reminiscing about the good old days.", "data_idx": 4940, "number": 2, "label": "rock"} +{"file_name": "test_08259.png", "caption": "This is a pop/soft rock music piece. There is a female vocalist singing melodically in the lead. The keyboard is playing the main tune while the bass guitar plays in the background. The rhythm is being provided by an acoustic drum beat. The atmosphere is lighthearted. The piece has a slow tempo. The song is in major key. This piece could be used in the soundtrack of a romantic comedy movie, especially during the scenes where the characters are reminiscing about the good old days.", "data_idx": 4940, "number": 3, "label": "rock"} +{"file_name": "test_08260.png", "caption": "This is an emotional ballad played on the theremin. The audio quality is poor, but still we feel the sad and sombre effects of the melody played by the performer.", "data_idx": 4942, "number": 0, "label": "classical"} +{"file_name": "test_08261.png", "caption": "This is an emotional ballad played on the theremin. The audio quality is poor, but still we feel the sad and sombre effects of the melody played by the performer.", "data_idx": 4942, "number": 1, "label": "classical"} +{"file_name": "test_08262.png", "caption": "This is an emotional ballad played on the theremin. The audio quality is poor, but still we feel the sad and sombre effects of the melody played by the performer.", "data_idx": 4942, "number": 2, "label": "classical"} +{"file_name": "test_08263.png", "caption": "This is an emotional ballad played on the theremin. The audio quality is poor, but still we feel the sad and sombre effects of the melody played by the performer.", "data_idx": 4942, "number": 3, "label": "classical"} +{"file_name": "test_08264.png", "caption": "This is a soap opera theme music. There is a clarinet playing the main tune with the acoustic guitar and the bass guitar in the backing. There is a melodic pad that can be heard. An acoustic sounding electronic cymbal and wind chimes strokes are playing every now and then. There is a sentimental atmosphere to this piece.", "data_idx": 4943, "number": 0, "label": "hiphop"} +{"file_name": "test_08265.png", "caption": "This is a soap opera theme music. There is a clarinet playing the main tune with the acoustic guitar and the bass guitar in the backing. There is a melodic pad that can be heard. An acoustic sounding electronic cymbal and wind chimes strokes are playing every now and then. There is a sentimental atmosphere to this piece.", "data_idx": 4943, "number": 1, "label": "hiphop"} +{"file_name": "test_08266.png", "caption": "This music is instrumental. The tempo is slow with a single note played on a horn-like instrument . The instrument sounds like a Jewish Ram\u2019s horn. It is loud, emphatic, and authoritative with the sound of running water in the background . It is a celebratory,festive ritual music for making announcements. This music is Ritual music.", "data_idx": 4944, "number": 0, "label": "classical"} +{"file_name": "test_08267.png", "caption": "This music is instrumental. The tempo is slow with a single note played on a horn-like instrument . The instrument sounds like a Jewish Ram\u2019s horn. It is loud, emphatic, and authoritative with the sound of running water in the background . It is a celebratory,festive ritual music for making announcements. This music is Ritual music.", "data_idx": 4944, "number": 1, "label": "classical"} +{"file_name": "test_08268.png", "caption": "This music is instrumental. The tempo is slow with a single note played on a horn-like instrument . The instrument sounds like a Jewish Ram\u2019s horn. It is loud, emphatic, and authoritative with the sound of running water in the background . It is a celebratory,festive ritual music for making announcements. This music is Ritual music.", "data_idx": 4944, "number": 2, "label": "classical"} +{"file_name": "test_08269.png", "caption": "This music is instrumental. The tempo is slow with a single note played on a horn-like instrument . The instrument sounds like a Jewish Ram\u2019s horn. It is loud, emphatic, and authoritative with the sound of running water in the background . It is a celebratory,festive ritual music for making announcements. This music is Ritual music.", "data_idx": 4944, "number": 3, "label": "classical"} +{"file_name": "test_08270.png", "caption": "This song contains an orchestra playing an epic sounding piece. Trumpets are playing the main melody along with a brass section providing chords, other string instruments are playing a short melody with the bow and someone is playing marching snares before a cymbal roll comes in and flutes are taking over along with strings in the background. This song may be playing in a war hero movie.", "data_idx": 4947, "number": 0, "label": "classical"} +{"file_name": "test_08271.png", "caption": "This song contains an orchestra playing an epic sounding piece. Trumpets are playing the main melody along with a brass section providing chords, other string instruments are playing a short melody with the bow and someone is playing marching snares before a cymbal roll comes in and flutes are taking over along with strings in the background. This song may be playing in a war hero movie.", "data_idx": 4947, "number": 1, "label": "classical"} +{"file_name": "test_08272.png", "caption": "This song contains an orchestra playing an epic sounding piece. Trumpets are playing the main melody along with a brass section providing chords, other string instruments are playing a short melody with the bow and someone is playing marching snares before a cymbal roll comes in and flutes are taking over along with strings in the background. This song may be playing in a war hero movie.", "data_idx": 4947, "number": 2, "label": "classical"} +{"file_name": "test_08273.png", "caption": "This song contains an orchestra playing an epic sounding piece. Trumpets are playing the main melody along with a brass section providing chords, other string instruments are playing a short melody with the bow and someone is playing marching snares before a cymbal roll comes in and flutes are taking over along with strings in the background. This song may be playing in a war hero movie.", "data_idx": 4947, "number": 3, "label": "classical"} +{"file_name": "test_08274.png", "caption": "This song features a harp playing the main melody. This melody is calming and relaxing. This song can be played in a meditation center. There are no other instruments in this song. There are no voices in this song.", "data_idx": 4949, "number": 0, "label": "classical"} +{"file_name": "test_08275.png", "caption": "This song features a harp playing the main melody. This melody is calming and relaxing. This song can be played in a meditation center. There are no other instruments in this song. There are no voices in this song.", "data_idx": 4949, "number": 1, "label": "classical"} +{"file_name": "test_08276.png", "caption": "This song features a harp playing the main melody. This melody is calming and relaxing. This song can be played in a meditation center. There are no other instruments in this song. There are no voices in this song.", "data_idx": 4949, "number": 2, "label": "classical"} +{"file_name": "test_08277.png", "caption": "This song features a harp playing the main melody. This melody is calming and relaxing. This song can be played in a meditation center. There are no other instruments in this song. There are no voices in this song.", "data_idx": 4949, "number": 3, "label": "classical"} +{"file_name": "test_08278.png", "caption": "The Jazz song features a saxophone solo melody playing over shimmering hi hats, groovy bass and shimmering bells melody. It sounds passionate, soft, mellow and soulful.", "data_idx": 4950, "number": 0, "label": "blues"} +{"file_name": "test_08279.png", "caption": "The Jazz song features a saxophone solo melody playing over shimmering hi hats, groovy bass and shimmering bells melody. It sounds passionate, soft, mellow and soulful.", "data_idx": 4950, "number": 1, "label": "blues"} +{"file_name": "test_08280.png", "caption": "The Jazz song features a saxophone solo melody playing over shimmering hi hats, groovy bass and shimmering bells melody. It sounds passionate, soft, mellow and soulful.", "data_idx": 4950, "number": 2, "label": "blues"} +{"file_name": "test_08281.png", "caption": "The Jazz song features a saxophone solo melody playing over shimmering hi hats, groovy bass and shimmering bells melody. It sounds passionate, soft, mellow and soulful.", "data_idx": 4950, "number": 3, "label": "blues"} +{"file_name": "test_08282.png", "caption": "The Electro song features a passionate female vocalist singing over wide synth pad chords, mellow synth keys, shimmering hi hats, \"4 on the floor\" kick pattern and haunting synth lead melody. It sounds addictive and exciting.", "data_idx": 4952, "number": 0, "label": "disco"} +{"file_name": "test_08283.png", "caption": "The Electro song features a passionate female vocalist singing over wide synth pad chords, mellow synth keys, shimmering hi hats, \"4 on the floor\" kick pattern and haunting synth lead melody. It sounds addictive and exciting.", "data_idx": 4952, "number": 1, "label": "disco"} +{"file_name": "test_08284.png", "caption": "This music is an animated instrumental. The tempo is fast with a lively cello bass line , viola and violin harmony with a lead strung instrument which is either an Auto Harp or electric guitar. There is a child\u2019s voice superimposed on the music with incoherent words and a lot of static. The music is lively, intense,playful, fun, cheerful, animated and breezy. This music is an animated Pop.", "data_idx": 4953, "number": 0, "label": "hiphop"} +{"file_name": "test_08285.png", "caption": "This music is an animated instrumental. The tempo is fast with a lively cello bass line , viola and violin harmony with a lead strung instrument which is either an Auto Harp or electric guitar. There is a child\u2019s voice superimposed on the music with incoherent words and a lot of static. The music is lively, intense,playful, fun, cheerful, animated and breezy. This music is an animated Pop.", "data_idx": 4953, "number": 1, "label": "hiphop"} +{"file_name": "test_08286.png", "caption": "The low quality recording features a tutorial where a flat male vocalist talks, followed by echoing, uptempo electric guitar melody. The recording is really noisy and the actual sound is leaning towards the right channel - which makes the stereo image unbalanced.", "data_idx": 4954, "number": 0, "label": "blues"} +{"file_name": "test_08287.png", "caption": "The low quality recording features a tutorial where a flat male vocalist talks, followed by echoing, uptempo electric guitar melody. The recording is really noisy and the actual sound is leaning towards the right channel - which makes the stereo image unbalanced.", "data_idx": 4954, "number": 1, "label": "blues"} +{"file_name": "test_08288.png", "caption": "The low quality recording features a tutorial where a flat male vocalist talks, followed by echoing, uptempo electric guitar melody. The recording is really noisy and the actual sound is leaning towards the right channel - which makes the stereo image unbalanced.", "data_idx": 4954, "number": 2, "label": "blues"} +{"file_name": "test_08289.png", "caption": "The low quality recording features a tutorial where a flat male vocalist talks, followed by echoing, uptempo electric guitar melody. The recording is really noisy and the actual sound is leaning towards the right channel - which makes the stereo image unbalanced.", "data_idx": 4954, "number": 3, "label": "blues"} +{"file_name": "test_08290.png", "caption": "This music is two separate tracks of two Turkish Rap/Hip-Hop artists. The male and female artists sing a fast tempo, energetic, enthusiastic, spirited and youthful Rap. This is contemporary Turkish Hip-Hop.", "data_idx": 4958, "number": 0, "label": "hiphop"} +{"file_name": "test_08291.png", "caption": "This music is two separate tracks of two Turkish Rap/Hip-Hop artists. The male and female artists sing a fast tempo, energetic, enthusiastic, spirited and youthful Rap. This is contemporary Turkish Hip-Hop.", "data_idx": 4958, "number": 1, "label": "hiphop"} +{"file_name": "test_08292.png", "caption": "This is a low quality audio clip. This jazz song features percussion playing a Latin style beat. A chindong is being played along with the main percussion. This instrument has a 'tin' sound. There are no other instruments in this song. The male singer narrates one line in the course of this song. This is an instrumental song. The mood of this song is happy.", "data_idx": 4959, "number": 0, "label": "classical"} +{"file_name": "test_08293.png", "caption": "This is a low quality audio clip. This jazz song features percussion playing a Latin style beat. A chindong is being played along with the main percussion. This instrument has a 'tin' sound. There are no other instruments in this song. The male singer narrates one line in the course of this song. This is an instrumental song. The mood of this song is happy.", "data_idx": 4959, "number": 1, "label": "classical"} +{"file_name": "test_08294.png", "caption": "This is a low quality audio clip. This jazz song features percussion playing a Latin style beat. A chindong is being played along with the main percussion. This instrument has a 'tin' sound. There are no other instruments in this song. The male singer narrates one line in the course of this song. This is an instrumental song. The mood of this song is happy.", "data_idx": 4959, "number": 2, "label": "classical"} +{"file_name": "test_08295.png", "caption": "This is a low quality audio clip. This jazz song features percussion playing a Latin style beat. A chindong is being played along with the main percussion. This instrument has a 'tin' sound. There are no other instruments in this song. The male singer narrates one line in the course of this song. This is an instrumental song. The mood of this song is happy.", "data_idx": 4959, "number": 3, "label": "classical"} +{"file_name": "test_08296.png", "caption": "This song is a classical music instrumental. The two main instruments it features are piano and violin - the piano plays arpeggiated chords while the violin plays legato notes. The song has a sombre and emotional tone to it.", "data_idx": 4963, "number": 0, "label": "classical"} +{"file_name": "test_08297.png", "caption": "This song is a classical music instrumental. The two main instruments it features are piano and violin - the piano plays arpeggiated chords while the violin plays legato notes. The song has a sombre and emotional tone to it.", "data_idx": 4963, "number": 1, "label": "classical"} +{"file_name": "test_08298.png", "caption": "This song is a classical music instrumental. The two main instruments it features are piano and violin - the piano plays arpeggiated chords while the violin plays legato notes. The song has a sombre and emotional tone to it.", "data_idx": 4963, "number": 2, "label": "classical"} +{"file_name": "test_08299.png", "caption": "This song is a classical music instrumental. The two main instruments it features are piano and violin - the piano plays arpeggiated chords while the violin plays legato notes. The song has a sombre and emotional tone to it.", "data_idx": 4963, "number": 3, "label": "classical"} +{"file_name": "test_08300.png", "caption": "This hip-hop song features a male voice singing the main melody. There are other quirky voices singing in the background. This is accompanied by programmed percussion playing deep kick and snare hits. Hand claps are played on alternate counts of the bar. This song can be played in a club.", "data_idx": 4965, "number": 0, "label": "reggae"} +{"file_name": "test_08301.png", "caption": "This hip-hop song features a male voice singing the main melody. There are other quirky voices singing in the background. This is accompanied by programmed percussion playing deep kick and snare hits. Hand claps are played on alternate counts of the bar. This song can be played in a club.", "data_idx": 4965, "number": 1, "label": "reggae"} +{"file_name": "test_08302.png", "caption": "This hip-hop song features a male voice singing the main melody. There are other quirky voices singing in the background. This is accompanied by programmed percussion playing deep kick and snare hits. Hand claps are played on alternate counts of the bar. This song can be played in a club.", "data_idx": 4965, "number": 2, "label": "reggae"} +{"file_name": "test_08303.png", "caption": "This hip-hop song features a male voice singing the main melody. There are other quirky voices singing in the background. This is accompanied by programmed percussion playing deep kick and snare hits. Hand claps are played on alternate counts of the bar. This song can be played in a club.", "data_idx": 4965, "number": 3, "label": "reggae"} +{"file_name": "test_08304.png", "caption": "This audio contains a big bell ringing in a steady rhythm. This is an amateur recording. This sound may be playing in a church bell tower.", "data_idx": 4967, "number": 0, "label": "classical"} +{"file_name": "test_08305.png", "caption": "This audio contains a big bell ringing in a steady rhythm. This is an amateur recording. This sound may be playing in a church bell tower.", "data_idx": 4967, "number": 1, "label": "classical"} +{"file_name": "test_08306.png", "caption": "This audio contains a big bell ringing in a steady rhythm. This is an amateur recording. This sound may be playing in a church bell tower.", "data_idx": 4967, "number": 2, "label": "classical"} +{"file_name": "test_08307.png", "caption": "This audio contains a big bell ringing in a steady rhythm. This is an amateur recording. This sound may be playing in a church bell tower.", "data_idx": 4967, "number": 3, "label": "classical"} +{"file_name": "test_08308.png", "caption": "This song contains an acoustic drum sample playing a groove along with an e-bass line. A high pitched sound sample is playing along with an e-piano playing single notes in a higher register. A male voice is rapping in a higher register. In-between you can hear a gunshot and a male voice shouting. This song may be playing while doing sports.", "data_idx": 4974, "number": 0, "label": "disco"} +{"file_name": "test_08309.png", "caption": "This song contains an acoustic drum sample playing a groove along with an e-bass line. A high pitched sound sample is playing along with an e-piano playing single notes in a higher register. A male voice is rapping in a higher register. In-between you can hear a gunshot and a male voice shouting. This song may be playing while doing sports.", "data_idx": 4974, "number": 1, "label": "disco"} +{"file_name": "test_08310.png", "caption": "This song contains an acoustic drum sample playing a groove along with an e-bass line. A high pitched sound sample is playing along with an e-piano playing single notes in a higher register. A male voice is rapping in a higher register. In-between you can hear a gunshot and a male voice shouting. This song may be playing while doing sports.", "data_idx": 4974, "number": 2, "label": "disco"} +{"file_name": "test_08311.png", "caption": "This song contains an acoustic drum sample playing a groove along with an e-bass line. A high pitched sound sample is playing along with an e-piano playing single notes in a higher register. A male voice is rapping in a higher register. In-between you can hear a gunshot and a male voice shouting. This song may be playing while doing sports.", "data_idx": 4974, "number": 3, "label": "disco"} +{"file_name": "test_08312.png", "caption": "A digital drum is playing a techno groove with a kick on every beat. A synth bass is playing a simple line along to a piano playing major chords. Panned to the sides of the speakers you can hear a xylophone like sound playing the melody along in a higher key and a marimba adding notes. A digital brass sound is adding hits to the melody. A female voice is singing in a higher key. This song may be playing in a kids tv-show.", "data_idx": 4978, "number": 0, "label": "disco"} +{"file_name": "test_08313.png", "caption": "A digital drum is playing a techno groove with a kick on every beat. A synth bass is playing a simple line along to a piano playing major chords. Panned to the sides of the speakers you can hear a xylophone like sound playing the melody along in a higher key and a marimba adding notes. A digital brass sound is adding hits to the melody. A female voice is singing in a higher key. This song may be playing in a kids tv-show.", "data_idx": 4978, "number": 1, "label": "disco"} +{"file_name": "test_08314.png", "caption": "A digital drum is playing a techno groove with a kick on every beat. A synth bass is playing a simple line along to a piano playing major chords. Panned to the sides of the speakers you can hear a xylophone like sound playing the melody along in a higher key and a marimba adding notes. A digital brass sound is adding hits to the melody. A female voice is singing in a higher key. This song may be playing in a kids tv-show.", "data_idx": 4978, "number": 2, "label": "disco"} +{"file_name": "test_08315.png", "caption": "A digital drum is playing a techno groove with a kick on every beat. A synth bass is playing a simple line along to a piano playing major chords. Panned to the sides of the speakers you can hear a xylophone like sound playing the melody along in a higher key and a marimba adding notes. A digital brass sound is adding hits to the melody. A female voice is singing in a higher key. This song may be playing in a kids tv-show.", "data_idx": 4978, "number": 3, "label": "disco"} +{"file_name": "test_08316.png", "caption": "This music is an Electric Guitar instrumental. The tempo is medium with a pleasant electric guitar riff. The music is loud, powerful, clear, tight, intense and engaging.", "data_idx": 4980, "number": 0, "label": "blues"} +{"file_name": "test_08317.png", "caption": "This music is an Electric Guitar instrumental. The tempo is medium with a pleasant electric guitar riff. The music is loud, powerful, clear, tight, intense and engaging.", "data_idx": 4980, "number": 1, "label": "blues"} +{"file_name": "test_08318.png", "caption": "This music is an Electric Guitar instrumental. The tempo is medium with a pleasant electric guitar riff. The music is loud, powerful, clear, tight, intense and engaging.", "data_idx": 4980, "number": 2, "label": "blues"} +{"file_name": "test_08319.png", "caption": "This music is an Electric Guitar instrumental. The tempo is medium with a pleasant electric guitar riff. The music is loud, powerful, clear, tight, intense and engaging.", "data_idx": 4980, "number": 3, "label": "blues"} +{"file_name": "test_08320.png", "caption": "The song is an instrumental. The tempo is medium fast with two harpsichordists playing an instrument harmony with no other instrumentation. The song is exciting like a dance but has a bad audio quality.", "data_idx": 4981, "number": 0, "label": "classical"} +{"file_name": "test_08321.png", "caption": "The song is an instrumental. The tempo is medium fast with two harpsichordists playing an instrument harmony with no other instrumentation. The song is exciting like a dance but has a bad audio quality.", "data_idx": 4981, "number": 1, "label": "classical"} +{"file_name": "test_08322.png", "caption": "The song is an instrumental. The tempo is medium fast with two harpsichordists playing an instrument harmony with no other instrumentation. The song is exciting like a dance but has a bad audio quality.", "data_idx": 4981, "number": 2, "label": "classical"} +{"file_name": "test_08323.png", "caption": "The song is an instrumental. The tempo is medium fast with two harpsichordists playing an instrument harmony with no other instrumentation. The song is exciting like a dance but has a bad audio quality.", "data_idx": 4981, "number": 3, "label": "classical"} +{"file_name": "test_08324.png", "caption": "The low quality recording features a shofar repetitive melody. The recording is in mono and so noisy that it slightly distorts the audio. It sounds soulful and reverberant.", "data_idx": 4983, "number": 0, "label": "classical"} +{"file_name": "test_08325.png", "caption": "The low quality recording features a shofar repetitive melody. The recording is in mono and so noisy that it slightly distorts the audio. It sounds soulful and reverberant.", "data_idx": 4983, "number": 1, "label": "classical"} +{"file_name": "test_08326.png", "caption": "The low quality recording features a shofar repetitive melody. The recording is in mono and so noisy that it slightly distorts the audio. It sounds soulful and reverberant.", "data_idx": 4983, "number": 2, "label": "classical"} +{"file_name": "test_08327.png", "caption": "The low quality recording features a shofar repetitive melody. The recording is in mono and so noisy that it slightly distorts the audio. It sounds soulful and reverberant.", "data_idx": 4983, "number": 3, "label": "classical"} +{"file_name": "test_08328.png", "caption": "This is a country music piece. There is a female vocalist singing melodically at the forefront. The melodic background consists of the electric guitar, the bass guitar and the piano. The rhythmic background is provided by a simple acoustic drum beat. The atmosphere is upbeat and easygoing. This piece could be playing in the background at a rock bar. It could also work well as an advertisement jingle.", "data_idx": 4985, "number": 0, "label": "pop"} +{"file_name": "test_08329.png", "caption": "This is a country music piece. There is a female vocalist singing melodically at the forefront. The melodic background consists of the electric guitar, the bass guitar and the piano. The rhythmic background is provided by a simple acoustic drum beat. The atmosphere is upbeat and easygoing. This piece could be playing in the background at a rock bar. It could also work well as an advertisement jingle.", "data_idx": 4985, "number": 1, "label": "pop"} +{"file_name": "test_08330.png", "caption": "This is a country music piece. There is a female vocalist singing melodically at the forefront. The melodic background consists of the electric guitar, the bass guitar and the piano. The rhythmic background is provided by a simple acoustic drum beat. The atmosphere is upbeat and easygoing. This piece could be playing in the background at a rock bar. It could also work well as an advertisement jingle.", "data_idx": 4985, "number": 2, "label": "pop"} +{"file_name": "test_08331.png", "caption": "This is a country music piece. There is a female vocalist singing melodically at the forefront. The melodic background consists of the electric guitar, the bass guitar and the piano. The rhythmic background is provided by a simple acoustic drum beat. The atmosphere is upbeat and easygoing. This piece could be playing in the background at a rock bar. It could also work well as an advertisement jingle.", "data_idx": 4985, "number": 3, "label": "pop"} +{"file_name": "test_08332.png", "caption": "This is a pop music piece. There is a female vocalist singing in a shout-like style. There is a flute and an electric guitar playing the melody with the bass guitar playing in the background. The rhythm is provided by a medium tempo acoustic drum beat. The tune is catchy. The piece is in the major key and there is an easygoing atmosphere to it. This piece could be used in the soundtrack of a sit-com during the credits section.", "data_idx": 4986, "number": 0, "label": "blues"} +{"file_name": "test_08333.png", "caption": "This is a pop music piece. There is a female vocalist singing in a shout-like style. There is a flute and an electric guitar playing the melody with the bass guitar playing in the background. The rhythm is provided by a medium tempo acoustic drum beat. The tune is catchy. The piece is in the major key and there is an easygoing atmosphere to it. This piece could be used in the soundtrack of a sit-com during the credits section.", "data_idx": 4986, "number": 1, "label": "blues"} +{"file_name": "test_08334.png", "caption": "This is a pop music piece. There is a female vocalist singing in a shout-like style. There is a flute and an electric guitar playing the melody with the bass guitar playing in the background. The rhythm is provided by a medium tempo acoustic drum beat. The tune is catchy. The piece is in the major key and there is an easygoing atmosphere to it. This piece could be used in the soundtrack of a sit-com during the credits section.", "data_idx": 4986, "number": 2, "label": "blues"} +{"file_name": "test_08335.png", "caption": "This is a pop music piece. There is a female vocalist singing in a shout-like style. There is a flute and an electric guitar playing the melody with the bass guitar playing in the background. The rhythm is provided by a medium tempo acoustic drum beat. The tune is catchy. The piece is in the major key and there is an easygoing atmosphere to it. This piece could be used in the soundtrack of a sit-com during the credits section.", "data_idx": 4986, "number": 3, "label": "blues"} +{"file_name": "test_08336.png", "caption": "The Traditional song features a sustained strings melody, followed by short strings melody, wide wooden percussions and shimmering shakers. It sounds soulful and passionate.", "data_idx": 4989, "number": 0, "label": "disco"} +{"file_name": "test_08337.png", "caption": "The Traditional song features a sustained strings melody, followed by short strings melody, wide wooden percussions and shimmering shakers. It sounds soulful and passionate.", "data_idx": 4989, "number": 1, "label": "disco"} +{"file_name": "test_08338.png", "caption": "The Traditional song features a sustained strings melody, followed by short strings melody, wide wooden percussions and shimmering shakers. It sounds soulful and passionate.", "data_idx": 4989, "number": 2, "label": "disco"} +{"file_name": "test_08339.png", "caption": "The Traditional song features a sustained strings melody, followed by short strings melody, wide wooden percussions and shimmering shakers. It sounds soulful and passionate.", "data_idx": 4989, "number": 3, "label": "disco"} +{"file_name": "test_08340.png", "caption": "The low quality recording features a gospel song that consists of harmonizing female vocals singing over groovy piano melody and some clapping. There are crowd talking noises in the background, while the recording is in mono and noisy. It sounds emotional, passionate and romantic - like something you would hear at weddings.", "data_idx": 4990, "number": 0, "label": "classical"} +{"file_name": "test_08341.png", "caption": "The low quality recording features a gospel song that consists of harmonizing female vocals singing over groovy piano melody and some clapping. There are crowd talking noises in the background, while the recording is in mono and noisy. It sounds emotional, passionate and romantic - like something you would hear at weddings.", "data_idx": 4990, "number": 1, "label": "classical"} +{"file_name": "test_08342.png", "caption": "This is a Swedish bridal march piece. The bagpipes are playing a festive melody. There is a ceremonial atmosphere. This piece could be played at a Swedish wedding or during a wedding scene in a Swedish historical drama movie.", "data_idx": 4994, "number": 0, "label": "classical"} +{"file_name": "test_08343.png", "caption": "This is a Swedish bridal march piece. The bagpipes are playing a festive melody. There is a ceremonial atmosphere. This piece could be played at a Swedish wedding or during a wedding scene in a Swedish historical drama movie.", "data_idx": 4994, "number": 1, "label": "classical"} +{"file_name": "test_08344.png", "caption": "This is a Swedish bridal march piece. The bagpipes are playing a festive melody. There is a ceremonial atmosphere. This piece could be played at a Swedish wedding or during a wedding scene in a Swedish historical drama movie.", "data_idx": 4994, "number": 2, "label": "classical"} +{"file_name": "test_08345.png", "caption": "This is a Swedish bridal march piece. The bagpipes are playing a festive melody. There is a ceremonial atmosphere. This piece could be played at a Swedish wedding or during a wedding scene in a Swedish historical drama movie.", "data_idx": 4994, "number": 3, "label": "classical"} +{"file_name": "test_08346.png", "caption": "The low quality recording features a jazz live performance that consists of saxophone solo melody played over energetic cymbals, manic tom roll, punchy snare and kick hits, organ keys chords, groovy double bass and groovy piano chords. It sounds passionate and upbeat.", "data_idx": 4997, "number": 0, "label": "jazz"} +{"file_name": "test_08347.png", "caption": "The low quality recording features a jazz live performance that consists of saxophone solo melody played over energetic cymbals, manic tom roll, punchy snare and kick hits, organ keys chords, groovy double bass and groovy piano chords. It sounds passionate and upbeat.", "data_idx": 4997, "number": 1, "label": "jazz"} +{"file_name": "test_08348.png", "caption": "The low quality recording features a jazz live performance that consists of saxophone solo melody played over energetic cymbals, manic tom roll, punchy snare and kick hits, organ keys chords, groovy double bass and groovy piano chords. It sounds passionate and upbeat.", "data_idx": 4997, "number": 2, "label": "jazz"} +{"file_name": "test_08349.png", "caption": "The low quality recording features a jazz live performance that consists of saxophone solo melody played over energetic cymbals, manic tom roll, punchy snare and kick hits, organ keys chords, groovy double bass and groovy piano chords. It sounds passionate and upbeat.", "data_idx": 4997, "number": 3, "label": "jazz"} diff --git a/data/test/metadata_0020.jsonl b/data/test/metadata_0020.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..440b9fb29fe4a77a300be6940eed22c6c8f57796 --- /dev/null +++ b/data/test/metadata_0020.jsonl @@ -0,0 +1,396 @@ +{"file_name": "test_08350.png", "caption": "The low quality recording features a cover of a song and it consists of harmonica solo melody over arpeggiated acoustic guitar melodies played a bit sloppy. It still sounds passionate and emotional. The recording is in mono and a bit noisy.", "data_idx": 5000, "number": 0, "label": "classical"} +{"file_name": "test_08351.png", "caption": "The low quality recording features a cover of a song and it consists of harmonica solo melody over arpeggiated acoustic guitar melodies played a bit sloppy. It still sounds passionate and emotional. The recording is in mono and a bit noisy.", "data_idx": 5000, "number": 1, "label": "classical"} +{"file_name": "test_08352.png", "caption": "The low quality recording features a cover of a song and it consists of harmonica solo melody over arpeggiated acoustic guitar melodies played a bit sloppy. It still sounds passionate and emotional. The recording is in mono and a bit noisy.", "data_idx": 5000, "number": 2, "label": "classical"} +{"file_name": "test_08353.png", "caption": "The low quality recording features a cover of a song and it consists of harmonica solo melody over arpeggiated acoustic guitar melodies played a bit sloppy. It still sounds passionate and emotional. The recording is in mono and a bit noisy.", "data_idx": 5000, "number": 3, "label": "classical"} +{"file_name": "test_08354.png", "caption": "The low quality recording features a song that consists of a repetitive flat male vocal singing over plucked string melody, groovy bass, wooden percussion, snappy rimshots and soft kick hits. It sounds fun and happy - like something kids would listen to.", "data_idx": 5001, "number": 0, "label": "blues"} +{"file_name": "test_08355.png", "caption": "The low quality recording features a song that consists of a repetitive flat male vocal singing over plucked string melody, groovy bass, wooden percussion, snappy rimshots and soft kick hits. It sounds fun and happy - like something kids would listen to.", "data_idx": 5001, "number": 1, "label": "blues"} +{"file_name": "test_08356.png", "caption": "The low quality recording features a song that consists of a repetitive flat male vocal singing over plucked string melody, groovy bass, wooden percussion, snappy rimshots and soft kick hits. It sounds fun and happy - like something kids would listen to.", "data_idx": 5001, "number": 2, "label": "blues"} +{"file_name": "test_08357.png", "caption": "The low quality recording features a song that consists of a repetitive flat male vocal singing over plucked string melody, groovy bass, wooden percussion, snappy rimshots and soft kick hits. It sounds fun and happy - like something kids would listen to.", "data_idx": 5001, "number": 3, "label": "blues"} +{"file_name": "test_08358.png", "caption": "A male vocalist sings this violent Rock. The tempo is fast and rigorous with hard hitting drums, intense bass line and aggressive electric guitar lead with synthesiser arrangements. The song is loud, violent, thunderous,passionate, boisterous and aggressive. This song is Death Metal.", "data_idx": 5002, "number": 0, "label": "hiphop"} +{"file_name": "test_08359.png", "caption": "A male vocalist sings this violent Rock. The tempo is fast and rigorous with hard hitting drums, intense bass line and aggressive electric guitar lead with synthesiser arrangements. The song is loud, violent, thunderous,passionate, boisterous and aggressive. This song is Death Metal.", "data_idx": 5002, "number": 1, "label": "hiphop"} +{"file_name": "test_08360.png", "caption": "The song is an instrumental. The tempo is medium fast with three accordions playing in harmony and virtuoso style , guitar strumming and other percussion instruments. The song is highly improvisational and has a bad audio quality with ambient room noises.", "data_idx": 5005, "number": 0, "label": "classical"} +{"file_name": "test_08361.png", "caption": "The song is an instrumental. The tempo is medium fast with three accordions playing in harmony and virtuoso style , guitar strumming and other percussion instruments. The song is highly improvisational and has a bad audio quality with ambient room noises.", "data_idx": 5005, "number": 1, "label": "classical"} +{"file_name": "test_08362.png", "caption": "The song is an instrumental. The tempo is medium fast with three accordions playing in harmony and virtuoso style , guitar strumming and other percussion instruments. The song is highly improvisational and has a bad audio quality with ambient room noises.", "data_idx": 5005, "number": 2, "label": "classical"} +{"file_name": "test_08363.png", "caption": "The song is an instrumental. The tempo is medium fast with three accordions playing in harmony and virtuoso style , guitar strumming and other percussion instruments. The song is highly improvisational and has a bad audio quality with ambient room noises.", "data_idx": 5005, "number": 3, "label": "classical"} +{"file_name": "test_08364.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over shimmering hi hats, punchy snare, mellow kick hits, uptempo acoustic rhythm guitar, groovy bass and some crowd talking sounds in the background. It sounds energetic, happy and addictive.", "data_idx": 5008, "number": 0, "label": "rock"} +{"file_name": "test_08365.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over shimmering hi hats, punchy snare, mellow kick hits, uptempo acoustic rhythm guitar, groovy bass and some crowd talking sounds in the background. It sounds energetic, happy and addictive.", "data_idx": 5008, "number": 1, "label": "rock"} +{"file_name": "test_08366.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over shimmering hi hats, punchy snare, mellow kick hits, uptempo acoustic rhythm guitar, groovy bass and some crowd talking sounds in the background. It sounds energetic, happy and addictive.", "data_idx": 5008, "number": 2, "label": "rock"} +{"file_name": "test_08367.png", "caption": "The low quality recording features a rock song that consists of a passionate female vocal singing over shimmering hi hats, punchy snare, mellow kick hits, uptempo acoustic rhythm guitar, groovy bass and some crowd talking sounds in the background. It sounds energetic, happy and addictive.", "data_idx": 5008, "number": 3, "label": "rock"} +{"file_name": "test_08368.png", "caption": "The low quality recording features a cover of a latin urban song that consists of a groovy bass guitar, acoustic rhythm guitar, hand tapping and electric guitar solo playing over it in the first half of the loop, followed by harmonica solo in the second half of the loop. It sounds passionate and energetic.", "data_idx": 5009, "number": 0, "label": "blues"} +{"file_name": "test_08369.png", "caption": "The low quality recording features a cover of a latin urban song that consists of a groovy bass guitar, acoustic rhythm guitar, hand tapping and electric guitar solo playing over it in the first half of the loop, followed by harmonica solo in the second half of the loop. It sounds passionate and energetic.", "data_idx": 5009, "number": 1, "label": "blues"} +{"file_name": "test_08370.png", "caption": "The low quality recording features a cover of a latin urban song that consists of a groovy bass guitar, acoustic rhythm guitar, hand tapping and electric guitar solo playing over it in the first half of the loop, followed by harmonica solo in the second half of the loop. It sounds passionate and energetic.", "data_idx": 5009, "number": 2, "label": "blues"} +{"file_name": "test_08371.png", "caption": "The low quality recording features a cover of a latin urban song that consists of a groovy bass guitar, acoustic rhythm guitar, hand tapping and electric guitar solo playing over it in the first half of the loop, followed by harmonica solo in the second half of the loop. It sounds passionate and energetic.", "data_idx": 5009, "number": 3, "label": "blues"} +{"file_name": "test_08372.png", "caption": "This music is a soothing Chinese lute instrumental. The tempo is slow with a soft melody of the Pipa. It is melodic, zen, meditative, reflective, ponderous and calming.", "data_idx": 5010, "number": 0, "label": "jazz"} +{"file_name": "test_08373.png", "caption": "This music is a soothing Chinese lute instrumental. The tempo is slow with a soft melody of the Pipa. It is melodic, zen, meditative, reflective, ponderous and calming.", "data_idx": 5010, "number": 1, "label": "jazz"} +{"file_name": "test_08374.png", "caption": "This music is a soothing Chinese lute instrumental. The tempo is slow with a soft melody of the Pipa. It is melodic, zen, meditative, reflective, ponderous and calming.", "data_idx": 5010, "number": 2, "label": "jazz"} +{"file_name": "test_08375.png", "caption": "This music is a soothing Chinese lute instrumental. The tempo is slow with a soft melody of the Pipa. It is melodic, zen, meditative, reflective, ponderous and calming.", "data_idx": 5010, "number": 3, "label": "jazz"} +{"file_name": "test_08376.png", "caption": "This song contains a female singer singing with a lower voice. An acoustic drum is playing a simple groove with a catchy bassline. An e-guitar is playing the notes along with the bass. A keyboard is emulating an e-guitar sound by playing a little lick. This song may be playing at a live concert.", "data_idx": 5011, "number": 0, "label": "disco"} +{"file_name": "test_08377.png", "caption": "This song contains a female singer singing with a lower voice. An acoustic drum is playing a simple groove with a catchy bassline. An e-guitar is playing the notes along with the bass. A keyboard is emulating an e-guitar sound by playing a little lick. This song may be playing at a live concert.", "data_idx": 5011, "number": 1, "label": "disco"} +{"file_name": "test_08378.png", "caption": "This song contains a female singer singing with a lower voice. An acoustic drum is playing a simple groove with a catchy bassline. An e-guitar is playing the notes along with the bass. A keyboard is emulating an e-guitar sound by playing a little lick. This song may be playing at a live concert.", "data_idx": 5011, "number": 2, "label": "disco"} +{"file_name": "test_08379.png", "caption": "This song contains a female singer singing with a lower voice. An acoustic drum is playing a simple groove with a catchy bassline. An e-guitar is playing the notes along with the bass. A keyboard is emulating an e-guitar sound by playing a little lick. This song may be playing at a live concert.", "data_idx": 5011, "number": 3, "label": "disco"} +{"file_name": "test_08380.png", "caption": "This is a jazz music piece. There is a piano and a trombone playing a groovy tune. The atmosphere is lively. This piece could be used as an opening theme for a nighttime talk show or a historical YouTube channel.", "data_idx": 5013, "number": 0, "label": "jazz"} +{"file_name": "test_08381.png", "caption": "This is a jazz music piece. There is a piano and a trombone playing a groovy tune. The atmosphere is lively. This piece could be used as an opening theme for a nighttime talk show or a historical YouTube channel.", "data_idx": 5013, "number": 1, "label": "jazz"} +{"file_name": "test_08382.png", "caption": "This is a jazz music piece. There is a piano and a trombone playing a groovy tune. The atmosphere is lively. This piece could be used as an opening theme for a nighttime talk show or a historical YouTube channel.", "data_idx": 5013, "number": 2, "label": "jazz"} +{"file_name": "test_08383.png", "caption": "This is a jazz music piece. There is a piano and a trombone playing a groovy tune. The atmosphere is lively. This piece could be used as an opening theme for a nighttime talk show or a historical YouTube channel.", "data_idx": 5013, "number": 3, "label": "jazz"} +{"file_name": "test_08384.png", "caption": "This music is a simple and pleasing instrumental. The tempo is medium fast with a cheerful accordion harmony. The music is minimalist,simple, cheerful, happy, fun, carefree, jolly and lighthearted.", "data_idx": 5014, "number": 0, "label": "hiphop"} +{"file_name": "test_08385.png", "caption": "This music is a simple and pleasing instrumental. The tempo is medium fast with a cheerful accordion harmony. The music is minimalist,simple, cheerful, happy, fun, carefree, jolly and lighthearted.", "data_idx": 5014, "number": 1, "label": "hiphop"} +{"file_name": "test_08386.png", "caption": "This music is a simple and pleasing instrumental. The tempo is medium fast with a cheerful accordion harmony. The music is minimalist,simple, cheerful, happy, fun, carefree, jolly and lighthearted.", "data_idx": 5014, "number": 2, "label": "hiphop"} +{"file_name": "test_08387.png", "caption": "This music is a simple and pleasing instrumental. The tempo is medium fast with a cheerful accordion harmony. The music is minimalist,simple, cheerful, happy, fun, carefree, jolly and lighthearted.", "data_idx": 5014, "number": 3, "label": "hiphop"} +{"file_name": "test_08388.png", "caption": "This is a Christmas music piece. There is a male voice and a female voice singing melodically in the Cebuano language. The electric piano is playing the main melody while the electric guitar and the bass guitar are playing in the background. The rhythm is provided by a simple and upbeat acoustic drum beat. The atmosphere is festive and cheerful. This piece could be the opening theme of a Christmas movie that takes place in the southern Philippines.", "data_idx": 5015, "number": 0, "label": "disco"} +{"file_name": "test_08389.png", "caption": "This is a Christmas music piece. There is a male voice and a female voice singing melodically in the Cebuano language. The electric piano is playing the main melody while the electric guitar and the bass guitar are playing in the background. The rhythm is provided by a simple and upbeat acoustic drum beat. The atmosphere is festive and cheerful. This piece could be the opening theme of a Christmas movie that takes place in the southern Philippines.", "data_idx": 5015, "number": 1, "label": "disco"} +{"file_name": "test_08390.png", "caption": "This is a Christmas music piece. There is a male voice and a female voice singing melodically in the Cebuano language. The electric piano is playing the main melody while the electric guitar and the bass guitar are playing in the background. The rhythm is provided by a simple and upbeat acoustic drum beat. The atmosphere is festive and cheerful. This piece could be the opening theme of a Christmas movie that takes place in the southern Philippines.", "data_idx": 5015, "number": 2, "label": "disco"} +{"file_name": "test_08391.png", "caption": "This is a Christmas music piece. There is a male voice and a female voice singing melodically in the Cebuano language. The electric piano is playing the main melody while the electric guitar and the bass guitar are playing in the background. The rhythm is provided by a simple and upbeat acoustic drum beat. The atmosphere is festive and cheerful. This piece could be the opening theme of a Christmas movie that takes place in the southern Philippines.", "data_idx": 5015, "number": 3, "label": "disco"} +{"file_name": "test_08392.png", "caption": "The low quality recording features a harmonizing choir vocals singing over brass melody and sustained strings melody. There is a snare roll in the left channel of the stereo image. It sounds passionate, emotional and soulful.", "data_idx": 5016, "number": 0, "label": "classical"} +{"file_name": "test_08393.png", "caption": "The low quality recording features a harmonizing choir vocals singing over brass melody and sustained strings melody. There is a snare roll in the left channel of the stereo image. It sounds passionate, emotional and soulful.", "data_idx": 5016, "number": 1, "label": "classical"} +{"file_name": "test_08394.png", "caption": "The low quality recording features a harmonizing choir vocals singing over brass melody and sustained strings melody. There is a snare roll in the left channel of the stereo image. It sounds passionate, emotional and soulful.", "data_idx": 5016, "number": 2, "label": "classical"} +{"file_name": "test_08395.png", "caption": "The low quality recording features a harmonizing choir vocals singing over brass melody and sustained strings melody. There is a snare roll in the left channel of the stereo image. It sounds passionate, emotional and soulful.", "data_idx": 5016, "number": 3, "label": "classical"} +{"file_name": "test_08396.png", "caption": "A female vocalist sings this spirited pop. The tempo is medium fast with percussion accompaniment like congas, bongos and drums , tambourine beats,along with amplified flute like the Ney and rhythmic oud. The music is catchy, youthful, groovy, breezy, romantic, pleasant and spirited. This music is contemporary Folk Pop.", "data_idx": 5025, "number": 0, "label": "pop"} +{"file_name": "test_08397.png", "caption": "A female vocalist sings this spirited pop. The tempo is medium fast with percussion accompaniment like congas, bongos and drums , tambourine beats,along with amplified flute like the Ney and rhythmic oud. The music is catchy, youthful, groovy, breezy, romantic, pleasant and spirited. This music is contemporary Folk Pop.", "data_idx": 5025, "number": 1, "label": "pop"} +{"file_name": "test_08398.png", "caption": "A female vocalist sings this spirited pop. The tempo is medium fast with percussion accompaniment like congas, bongos and drums , tambourine beats,along with amplified flute like the Ney and rhythmic oud. The music is catchy, youthful, groovy, breezy, romantic, pleasant and spirited. This music is contemporary Folk Pop.", "data_idx": 5025, "number": 2, "label": "pop"} +{"file_name": "test_08399.png", "caption": "A female vocalist sings this spirited pop. The tempo is medium fast with percussion accompaniment like congas, bongos and drums , tambourine beats,along with amplified flute like the Ney and rhythmic oud. The music is catchy, youthful, groovy, breezy, romantic, pleasant and spirited. This music is contemporary Folk Pop.", "data_idx": 5025, "number": 3, "label": "pop"} +{"file_name": "test_08400.png", "caption": "This is a chaotic mix of sound effects meant to scare the listener. There is a carousel-like tune coming from what sounds like a circus setting. Various ominous sound effects such as screaming, roaring and evil laughter can be heard in the piece. There is an ear-piercingly loud synth sound at some point. The atmosphere is creepy. This piece could be used in the soundtrack of a horror video game during a nightmare/pandemonium sequence.", "data_idx": 5026, "number": 0, "label": "classical"} +{"file_name": "test_08401.png", "caption": "This is a chaotic mix of sound effects meant to scare the listener. There is a carousel-like tune coming from what sounds like a circus setting. Various ominous sound effects such as screaming, roaring and evil laughter can be heard in the piece. There is an ear-piercingly loud synth sound at some point. The atmosphere is creepy. This piece could be used in the soundtrack of a horror video game during a nightmare/pandemonium sequence.", "data_idx": 5026, "number": 1, "label": "classical"} +{"file_name": "test_08402.png", "caption": "This is a chaotic mix of sound effects meant to scare the listener. There is a carousel-like tune coming from what sounds like a circus setting. Various ominous sound effects such as screaming, roaring and evil laughter can be heard in the piece. There is an ear-piercingly loud synth sound at some point. The atmosphere is creepy. This piece could be used in the soundtrack of a horror video game during a nightmare/pandemonium sequence.", "data_idx": 5026, "number": 2, "label": "classical"} +{"file_name": "test_08403.png", "caption": "This is a chaotic mix of sound effects meant to scare the listener. There is a carousel-like tune coming from what sounds like a circus setting. Various ominous sound effects such as screaming, roaring and evil laughter can be heard in the piece. There is an ear-piercingly loud synth sound at some point. The atmosphere is creepy. This piece could be used in the soundtrack of a horror video game during a nightmare/pandemonium sequence.", "data_idx": 5026, "number": 3, "label": "classical"} +{"file_name": "test_08404.png", "caption": "This is a vintage middle eastern song. The male singer sings passionately in Arabic, on top of a simple instrumental which features violins and a simple drum pattern. This song would be heard in an old middle eastern movie.", "data_idx": 5028, "number": 0, "label": "blues"} +{"file_name": "test_08405.png", "caption": "This is a vintage middle eastern song. The male singer sings passionately in Arabic, on top of a simple instrumental which features violins and a simple drum pattern. This song would be heard in an old middle eastern movie.", "data_idx": 5028, "number": 1, "label": "blues"} +{"file_name": "test_08406.png", "caption": "This is a vintage middle eastern song. The male singer sings passionately in Arabic, on top of a simple instrumental which features violins and a simple drum pattern. This song would be heard in an old middle eastern movie.", "data_idx": 5028, "number": 2, "label": "blues"} +{"file_name": "test_08407.png", "caption": "This is a vintage middle eastern song. The male singer sings passionately in Arabic, on top of a simple instrumental which features violins and a simple drum pattern. This song would be heard in an old middle eastern movie.", "data_idx": 5028, "number": 3, "label": "blues"} +{"file_name": "test_08408.png", "caption": "The low quality recording features a jazz song that consists of electric guitar melody, shimmering hi hats, snappy snare, groovy piano melody and some applause at the very beginning of the loop. The recording is noisy and it sounds passionate and reverberant.", "data_idx": 5029, "number": 0, "label": "hiphop"} +{"file_name": "test_08409.png", "caption": "The low quality recording features a jazz song that consists of electric guitar melody, shimmering hi hats, snappy snare, groovy piano melody and some applause at the very beginning of the loop. The recording is noisy and it sounds passionate and reverberant.", "data_idx": 5029, "number": 1, "label": "hiphop"} +{"file_name": "test_08410.png", "caption": "Someone is playing a drum groove on the ride with a lot of fill-ins on toms. This song may be playing during drum practice.", "data_idx": 5030, "number": 0, "label": "disco"} +{"file_name": "test_08411.png", "caption": "Someone is playing a drum groove on the ride with a lot of fill-ins on toms. This song may be playing during drum practice.", "data_idx": 5030, "number": 1, "label": "disco"} +{"file_name": "test_08412.png", "caption": "Someone is playing a drum groove on the ride with a lot of fill-ins on toms. This song may be playing during drum practice.", "data_idx": 5030, "number": 2, "label": "disco"} +{"file_name": "test_08413.png", "caption": "Someone is playing a drum groove on the ride with a lot of fill-ins on toms. This song may be playing during drum practice.", "data_idx": 5030, "number": 3, "label": "disco"} +{"file_name": "test_08414.png", "caption": "This is a sad, emotional piano song. Initially, we hear the low pitch and high pitch notes played in unison. The low notes then serve as a bass backing for the treble. The song would suit a sad scene in a movie.", "data_idx": 5031, "number": 0, "label": "classical"} +{"file_name": "test_08415.png", "caption": "This is a sad, emotional piano song. Initially, we hear the low pitch and high pitch notes played in unison. The low notes then serve as a bass backing for the treble. The song would suit a sad scene in a movie.", "data_idx": 5031, "number": 1, "label": "classical"} +{"file_name": "test_08416.png", "caption": "This is a sad, emotional piano song. Initially, we hear the low pitch and high pitch notes played in unison. The low notes then serve as a bass backing for the treble. The song would suit a sad scene in a movie.", "data_idx": 5031, "number": 2, "label": "classical"} +{"file_name": "test_08417.png", "caption": "This is a sad, emotional piano song. Initially, we hear the low pitch and high pitch notes played in unison. The low notes then serve as a bass backing for the treble. The song would suit a sad scene in a movie.", "data_idx": 5031, "number": 3, "label": "classical"} +{"file_name": "test_08418.png", "caption": "The Dubstep song features a punchy kick and snare hits, groovy hi hats, aggressive synth bass and mellow bells melody played in the beginning. It sounds energetic and haunting.", "data_idx": 5033, "number": 0, "label": "jazz"} +{"file_name": "test_08419.png", "caption": "The Dubstep song features a punchy kick and snare hits, groovy hi hats, aggressive synth bass and mellow bells melody played in the beginning. It sounds energetic and haunting.", "data_idx": 5033, "number": 1, "label": "jazz"} +{"file_name": "test_08420.png", "caption": "The Dubstep song features a punchy kick and snare hits, groovy hi hats, aggressive synth bass and mellow bells melody played in the beginning. It sounds energetic and haunting.", "data_idx": 5033, "number": 2, "label": "jazz"} +{"file_name": "test_08421.png", "caption": "The Dubstep song features a punchy kick and snare hits, groovy hi hats, aggressive synth bass and mellow bells melody played in the beginning. It sounds energetic and haunting.", "data_idx": 5033, "number": 3, "label": "jazz"} +{"file_name": "test_08422.png", "caption": "This is an electronic/downtempo house music piece. There is a male vocalist singing melodically under heavy effects. There is a synth and an acoustic guitar playing the repeated main tune. The rhythmic background consists of an acoustic drum beat. The atmosphere is trippy. This piece could be used in the soundtrack of an animation movie, especially during vivid dream sequences.", "data_idx": 5036, "number": 0, "label": "disco"} +{"file_name": "test_08423.png", "caption": "This is an electronic/downtempo house music piece. There is a male vocalist singing melodically under heavy effects. There is a synth and an acoustic guitar playing the repeated main tune. The rhythmic background consists of an acoustic drum beat. The atmosphere is trippy. This piece could be used in the soundtrack of an animation movie, especially during vivid dream sequences.", "data_idx": 5036, "number": 1, "label": "disco"} +{"file_name": "test_08424.png", "caption": "This is an electronic/downtempo house music piece. There is a male vocalist singing melodically under heavy effects. There is a synth and an acoustic guitar playing the repeated main tune. The rhythmic background consists of an acoustic drum beat. The atmosphere is trippy. This piece could be used in the soundtrack of an animation movie, especially during vivid dream sequences.", "data_idx": 5036, "number": 2, "label": "disco"} +{"file_name": "test_08425.png", "caption": "This is an electronic/downtempo house music piece. There is a male vocalist singing melodically under heavy effects. There is a synth and an acoustic guitar playing the repeated main tune. The rhythmic background consists of an acoustic drum beat. The atmosphere is trippy. This piece could be used in the soundtrack of an animation movie, especially during vivid dream sequences.", "data_idx": 5036, "number": 3, "label": "disco"} +{"file_name": "test_08426.png", "caption": "A female singer sings this sad Country song. The tempo is medium with a Harmonica harmony, steady bass line, acoustic guitar, auto harp and dobro accompaniment. The song is soft, mellow, sad, poignant, emotional, sentimental and despondent with a melodious tune. This Song is a classic Country Pop.", "data_idx": 5037, "number": 0, "label": "pop"} +{"file_name": "test_08427.png", "caption": "A female singer sings this sad Country song. The tempo is medium with a Harmonica harmony, steady bass line, acoustic guitar, auto harp and dobro accompaniment. The song is soft, mellow, sad, poignant, emotional, sentimental and despondent with a melodious tune. This Song is a classic Country Pop.", "data_idx": 5037, "number": 1, "label": "pop"} +{"file_name": "test_08428.png", "caption": "A female singer sings this sad Country song. The tempo is medium with a Harmonica harmony, steady bass line, acoustic guitar, auto harp and dobro accompaniment. The song is soft, mellow, sad, poignant, emotional, sentimental and despondent with a melodious tune. This Song is a classic Country Pop.", "data_idx": 5037, "number": 2, "label": "pop"} +{"file_name": "test_08429.png", "caption": "A female singer sings this sad Country song. The tempo is medium with a Harmonica harmony, steady bass line, acoustic guitar, auto harp and dobro accompaniment. The song is soft, mellow, sad, poignant, emotional, sentimental and despondent with a melodious tune. This Song is a classic Country Pop.", "data_idx": 5037, "number": 3, "label": "pop"} +{"file_name": "test_08430.png", "caption": "This audio contains someone plucking a simple bassline on an upright bass while you can hear a percussive brushing sound. Then the playing stops and a male voice starts speaking. This song may be playing in a video-tutorial.", "data_idx": 5038, "number": 0, "label": "blues"} +{"file_name": "test_08431.png", "caption": "This audio contains someone plucking a simple bassline on an upright bass while you can hear a percussive brushing sound. Then the playing stops and a male voice starts speaking. This song may be playing in a video-tutorial.", "data_idx": 5038, "number": 1, "label": "blues"} +{"file_name": "test_08432.png", "caption": "A male voice is singing a melody in the midrange sounding like having fun while doing so. Backing vocals are shouting at the end of his phrase. In the background you can hear the instruments playing funky melodies; rhythms and grooves. What stands out is a flute playing a flute melody sounding like a traditional chinese melody and digital strings are playing in the midrange. This song may be playing celebrating graduation with costumes.", "data_idx": 5039, "number": 0, "label": "rock"} +{"file_name": "test_08433.png", "caption": "A male voice is singing a melody in the midrange sounding like having fun while doing so. Backing vocals are shouting at the end of his phrase. In the background you can hear the instruments playing funky melodies; rhythms and grooves. What stands out is a flute playing a flute melody sounding like a traditional chinese melody and digital strings are playing in the midrange. This song may be playing celebrating graduation with costumes.", "data_idx": 5039, "number": 1, "label": "rock"} +{"file_name": "test_08434.png", "caption": "A male voice is singing a melody in the midrange sounding like having fun while doing so. Backing vocals are shouting at the end of his phrase. In the background you can hear the instruments playing funky melodies; rhythms and grooves. What stands out is a flute playing a flute melody sounding like a traditional chinese melody and digital strings are playing in the midrange. This song may be playing celebrating graduation with costumes.", "data_idx": 5039, "number": 2, "label": "rock"} +{"file_name": "test_08435.png", "caption": "A male voice is singing a melody in the midrange sounding like having fun while doing so. Backing vocals are shouting at the end of his phrase. In the background you can hear the instruments playing funky melodies; rhythms and grooves. What stands out is a flute playing a flute melody sounding like a traditional chinese melody and digital strings are playing in the midrange. This song may be playing celebrating graduation with costumes.", "data_idx": 5039, "number": 3, "label": "rock"} +{"file_name": "test_08436.png", "caption": "This soul funk song features a female voice singing the main melody using vocals. This is accompanied by female voices singing backing vocals. The percussion plays a simple beat in common time. The bass plays a funky bassline. The trumpet plays a repetitive fill in the background. Due to the low quality of audio, other instruments are not audible. This song is a classic disco song and can be played in a disco.", "data_idx": 5041, "number": 0, "label": "disco"} +{"file_name": "test_08437.png", "caption": "This soul funk song features a female voice singing the main melody using vocals. This is accompanied by female voices singing backing vocals. The percussion plays a simple beat in common time. The bass plays a funky bassline. The trumpet plays a repetitive fill in the background. Due to the low quality of audio, other instruments are not audible. This song is a classic disco song and can be played in a disco.", "data_idx": 5041, "number": 1, "label": "disco"} +{"file_name": "test_08438.png", "caption": "This soul funk song features a female voice singing the main melody using vocals. This is accompanied by female voices singing backing vocals. The percussion plays a simple beat in common time. The bass plays a funky bassline. The trumpet plays a repetitive fill in the background. Due to the low quality of audio, other instruments are not audible. This song is a classic disco song and can be played in a disco.", "data_idx": 5041, "number": 2, "label": "disco"} +{"file_name": "test_08439.png", "caption": "This soul funk song features a female voice singing the main melody using vocals. This is accompanied by female voices singing backing vocals. The percussion plays a simple beat in common time. The bass plays a funky bassline. The trumpet plays a repetitive fill in the background. Due to the low quality of audio, other instruments are not audible. This song is a classic disco song and can be played in a disco.", "data_idx": 5041, "number": 3, "label": "disco"} +{"file_name": "test_08440.png", "caption": "This symphonic song features a melody played on cellos and violins in the beginning. A similar melody is played on the harpsichord soon after. The harpsichord plays the melody as well as the bass notes. There is no percussion in this song. This song has no voices. This is an instrumental song which can be played at a black tie event.", "data_idx": 5043, "number": 0, "label": "classical"} +{"file_name": "test_08441.png", "caption": "This symphonic song features a melody played on cellos and violins in the beginning. A similar melody is played on the harpsichord soon after. The harpsichord plays the melody as well as the bass notes. There is no percussion in this song. This song has no voices. This is an instrumental song which can be played at a black tie event.", "data_idx": 5043, "number": 1, "label": "classical"} +{"file_name": "test_08442.png", "caption": "This symphonic song features a melody played on cellos and violins in the beginning. A similar melody is played on the harpsichord soon after. The harpsichord plays the melody as well as the bass notes. There is no percussion in this song. This song has no voices. This is an instrumental song which can be played at a black tie event.", "data_idx": 5043, "number": 2, "label": "classical"} +{"file_name": "test_08443.png", "caption": "This symphonic song features a melody played on cellos and violins in the beginning. A similar melody is played on the harpsichord soon after. The harpsichord plays the melody as well as the bass notes. There is no percussion in this song. This song has no voices. This is an instrumental song which can be played at a black tie event.", "data_idx": 5043, "number": 3, "label": "classical"} +{"file_name": "test_08444.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking over snappy wooden snare one shots. The recording is noisy and in mono.", "data_idx": 5047, "number": 0, "label": "rock"} +{"file_name": "test_08445.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking over snappy wooden snare one shots. The recording is noisy and in mono.", "data_idx": 5047, "number": 1, "label": "rock"} +{"file_name": "test_08446.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking over snappy wooden snare one shots. The recording is noisy and in mono.", "data_idx": 5047, "number": 2, "label": "rock"} +{"file_name": "test_08447.png", "caption": "The low quality recording features a tutorial that consists of a flat male vocal talking over snappy wooden snare one shots. The recording is noisy and in mono.", "data_idx": 5047, "number": 3, "label": "rock"} +{"file_name": "test_08448.png", "caption": "The song is an instrumental. The tempo is medium with an accordion player, guitar rhythm, flute player and other percussion playing in harmony. The song is groovy and has gypsy flavour to it. The song audio quality is poor with ambient crowd noises.", "data_idx": 5050, "number": 0, "label": "classical"} +{"file_name": "test_08449.png", "caption": "The song is an instrumental. The tempo is medium with an accordion player, guitar rhythm, flute player and other percussion playing in harmony. The song is groovy and has gypsy flavour to it. The song audio quality is poor with ambient crowd noises.", "data_idx": 5050, "number": 1, "label": "classical"} +{"file_name": "test_08450.png", "caption": "The song is an instrumental. The tempo is medium with an accordion player, guitar rhythm, flute player and other percussion playing in harmony. The song is groovy and has gypsy flavour to it. The song audio quality is poor with ambient crowd noises.", "data_idx": 5050, "number": 2, "label": "classical"} +{"file_name": "test_08451.png", "caption": "The song is an instrumental. The tempo is medium with an accordion player, guitar rhythm, flute player and other percussion playing in harmony. The song is groovy and has gypsy flavour to it. The song audio quality is poor with ambient crowd noises.", "data_idx": 5050, "number": 3, "label": "classical"} +{"file_name": "test_08452.png", "caption": "This is a rocksteady music piece. There is a male vocalist with a Jamaican accent singing in a relaxed manner. The melody is being played by an electric guitar and a keyboard with a groovy bass guitar joining them in the background. The acoustic drums are playing a slow tempo reggae beat in the rhythmic background. The atmosphere is chill and tropical. This piece could be used in the soundtrack of a romance movie with a tropical setting. It could also be playing in the background at a beach or a seaside restaurant.", "data_idx": 5051, "number": 0, "label": "reggae"} +{"file_name": "test_08453.png", "caption": "This is a rocksteady music piece. There is a male vocalist with a Jamaican accent singing in a relaxed manner. The melody is being played by an electric guitar and a keyboard with a groovy bass guitar joining them in the background. The acoustic drums are playing a slow tempo reggae beat in the rhythmic background. The atmosphere is chill and tropical. This piece could be used in the soundtrack of a romance movie with a tropical setting. It could also be playing in the background at a beach or a seaside restaurant.", "data_idx": 5051, "number": 1, "label": "reggae"} +{"file_name": "test_08454.png", "caption": "This is a rocksteady music piece. There is a male vocalist with a Jamaican accent singing in a relaxed manner. The melody is being played by an electric guitar and a keyboard with a groovy bass guitar joining them in the background. The acoustic drums are playing a slow tempo reggae beat in the rhythmic background. The atmosphere is chill and tropical. This piece could be used in the soundtrack of a romance movie with a tropical setting. It could also be playing in the background at a beach or a seaside restaurant.", "data_idx": 5051, "number": 2, "label": "reggae"} +{"file_name": "test_08455.png", "caption": "This is a rocksteady music piece. There is a male vocalist with a Jamaican accent singing in a relaxed manner. The melody is being played by an electric guitar and a keyboard with a groovy bass guitar joining them in the background. The acoustic drums are playing a slow tempo reggae beat in the rhythmic background. The atmosphere is chill and tropical. This piece could be used in the soundtrack of a romance movie with a tropical setting. It could also be playing in the background at a beach or a seaside restaurant.", "data_idx": 5051, "number": 3, "label": "reggae"} +{"file_name": "test_08456.png", "caption": "Someone is playing a kick on every beat along with little fill-ins on toms, cymbals and hihat. An e-bass is playing long notes along with an acoustic guitar finger picking chords while another guitar is playing higher pitched notes in a tremolo. A male voice is singing in a higher pitch sounding grateful. An atmospheric synth pad sound is rising in the background processed with a lot of reverb. This song may be playing with headphones enjoying a beautiful day.", "data_idx": 5053, "number": 0, "label": "country"} +{"file_name": "test_08457.png", "caption": "Someone is playing a kick on every beat along with little fill-ins on toms, cymbals and hihat. An e-bass is playing long notes along with an acoustic guitar finger picking chords while another guitar is playing higher pitched notes in a tremolo. A male voice is singing in a higher pitch sounding grateful. An atmospheric synth pad sound is rising in the background processed with a lot of reverb. This song may be playing with headphones enjoying a beautiful day.", "data_idx": 5053, "number": 1, "label": "country"} +{"file_name": "test_08458.png", "caption": "Someone is playing a kick on every beat along with little fill-ins on toms, cymbals and hihat. An e-bass is playing long notes along with an acoustic guitar finger picking chords while another guitar is playing higher pitched notes in a tremolo. A male voice is singing in a higher pitch sounding grateful. An atmospheric synth pad sound is rising in the background processed with a lot of reverb. This song may be playing with headphones enjoying a beautiful day.", "data_idx": 5053, "number": 2, "label": "country"} +{"file_name": "test_08459.png", "caption": "Someone is playing a kick on every beat along with little fill-ins on toms, cymbals and hihat. An e-bass is playing long notes along with an acoustic guitar finger picking chords while another guitar is playing higher pitched notes in a tremolo. A male voice is singing in a higher pitch sounding grateful. An atmospheric synth pad sound is rising in the background processed with a lot of reverb. This song may be playing with headphones enjoying a beautiful day.", "data_idx": 5053, "number": 3, "label": "country"} +{"file_name": "test_08460.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with a mellow keyboard harmony, steady drumming, subtle bass line and acoustic guitar accompaniment. The song is soft, romantic, melodic, emotional , sentimental, melancholic and pleasant. This song is classic Soft Rock.", "data_idx": 5056, "number": 0, "label": "hiphop"} +{"file_name": "test_08461.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with a mellow keyboard harmony, steady drumming, subtle bass line and acoustic guitar accompaniment. The song is soft, romantic, melodic, emotional , sentimental, melancholic and pleasant. This song is classic Soft Rock.", "data_idx": 5056, "number": 1, "label": "hiphop"} +{"file_name": "test_08462.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with a mellow keyboard harmony, steady drumming, subtle bass line and acoustic guitar accompaniment. The song is soft, romantic, melodic, emotional , sentimental, melancholic and pleasant. This song is classic Soft Rock.", "data_idx": 5056, "number": 2, "label": "hiphop"} +{"file_name": "test_08463.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with a mellow keyboard harmony, steady drumming, subtle bass line and acoustic guitar accompaniment. The song is soft, romantic, melodic, emotional , sentimental, melancholic and pleasant. This song is classic Soft Rock.", "data_idx": 5056, "number": 3, "label": "hiphop"} +{"file_name": "test_08464.png", "caption": "This song features a drum solo. The solo starts with 4 strokes on the kick drum followed by three strokes on the snare and cymbals together. Then the kick is played in groups of three strokes and the hi-hat is and snare is played in a repetitive pattern. This song has no other instruments and no voices. This song can be played in an instructional video.", "data_idx": 5057, "number": 0, "label": "hiphop"} +{"file_name": "test_08465.png", "caption": "This song features a drum solo. The solo starts with 4 strokes on the kick drum followed by three strokes on the snare and cymbals together. Then the kick is played in groups of three strokes and the hi-hat is and snare is played in a repetitive pattern. This song has no other instruments and no voices. This song can be played in an instructional video.", "data_idx": 5057, "number": 1, "label": "hiphop"} +{"file_name": "test_08466.png", "caption": "This is an R&B and hip hop inspired instrumental. The drum pattern is 808 kick heavy and typically found in hip hop. The main melodic instruments are the fuzzy bass which plays long sustained notes, and there's also a beeping synth which sounds like the tones of old morse code machines. There are sound effects like a laughing man, children chanting, and a muffled shouting sound.", "data_idx": 5058, "number": 0, "label": "hiphop"} +{"file_name": "test_08467.png", "caption": "This is an R&B and hip hop inspired instrumental. The drum pattern is 808 kick heavy and typically found in hip hop. The main melodic instruments are the fuzzy bass which plays long sustained notes, and there's also a beeping synth which sounds like the tones of old morse code machines. There are sound effects like a laughing man, children chanting, and a muffled shouting sound.", "data_idx": 5058, "number": 1, "label": "hiphop"} +{"file_name": "test_08468.png", "caption": "This is an R&B and hip hop inspired instrumental. The drum pattern is 808 kick heavy and typically found in hip hop. The main melodic instruments are the fuzzy bass which plays long sustained notes, and there's also a beeping synth which sounds like the tones of old morse code machines. There are sound effects like a laughing man, children chanting, and a muffled shouting sound.", "data_idx": 5058, "number": 2, "label": "hiphop"} +{"file_name": "test_08469.png", "caption": "This is an R&B and hip hop inspired instrumental. The drum pattern is 808 kick heavy and typically found in hip hop. The main melodic instruments are the fuzzy bass which plays long sustained notes, and there's also a beeping synth which sounds like the tones of old morse code machines. There are sound effects like a laughing man, children chanting, and a muffled shouting sound.", "data_idx": 5058, "number": 3, "label": "hiphop"} +{"file_name": "test_08470.png", "caption": "The low quality recording features wooden percussion playing in the right channel, shimmering xylophone playing in the left channel and dissonant bells chords in the middle of the stereo image. It sounds suspenseful and intense.", "data_idx": 5060, "number": 0, "label": "rock"} +{"file_name": "test_08471.png", "caption": "The low quality recording features wooden percussion playing in the right channel, shimmering xylophone playing in the left channel and dissonant bells chords in the middle of the stereo image. It sounds suspenseful and intense.", "data_idx": 5060, "number": 1, "label": "rock"} +{"file_name": "test_08472.png", "caption": "The low quality recording features wooden percussion playing in the right channel, shimmering xylophone playing in the left channel and dissonant bells chords in the middle of the stereo image. It sounds suspenseful and intense.", "data_idx": 5060, "number": 2, "label": "rock"} +{"file_name": "test_08473.png", "caption": "The low quality recording features wooden percussion playing in the right channel, shimmering xylophone playing in the left channel and dissonant bells chords in the middle of the stereo image. It sounds suspenseful and intense.", "data_idx": 5060, "number": 3, "label": "rock"} +{"file_name": "test_08474.png", "caption": "The low quality recording features a funk/soul song that consists of a passionate female vocal singing over groovy bass guitar, wide strings chords, low repetitive plucked strings melody, punchy snare layered with claps, soft kicks and shimmering cymbals. It sounds emotional, passionate and addictive.", "data_idx": 5064, "number": 0, "label": "pop"} +{"file_name": "test_08475.png", "caption": "The low quality recording features a funk/soul song that consists of a passionate female vocal singing over groovy bass guitar, wide strings chords, low repetitive plucked strings melody, punchy snare layered with claps, soft kicks and shimmering cymbals. It sounds emotional, passionate and addictive.", "data_idx": 5064, "number": 1, "label": "pop"} +{"file_name": "test_08476.png", "caption": "The low quality recording features a funk/soul song that consists of a passionate female vocal singing over groovy bass guitar, wide strings chords, low repetitive plucked strings melody, punchy snare layered with claps, soft kicks and shimmering cymbals. It sounds emotional, passionate and addictive.", "data_idx": 5064, "number": 2, "label": "pop"} +{"file_name": "test_08477.png", "caption": "The low quality recording features a funk/soul song that consists of a passionate female vocal singing over groovy bass guitar, wide strings chords, low repetitive plucked strings melody, punchy snare layered with claps, soft kicks and shimmering cymbals. It sounds emotional, passionate and addictive.", "data_idx": 5064, "number": 3, "label": "pop"} +{"file_name": "test_08478.png", "caption": "The low quality recording features a hydraulophone melody played alongside water leaking sound. The recording is wide, noisy and it sounds relaxing and calming.", "data_idx": 5065, "number": 0, "label": "classical"} +{"file_name": "test_08479.png", "caption": "The low quality recording features a hydraulophone melody played alongside water leaking sound. The recording is wide, noisy and it sounds relaxing and calming.", "data_idx": 5065, "number": 1, "label": "classical"} +{"file_name": "test_08480.png", "caption": "The low quality recording features a hydraulophone melody played alongside water leaking sound. The recording is wide, noisy and it sounds relaxing and calming.", "data_idx": 5065, "number": 2, "label": "classical"} +{"file_name": "test_08481.png", "caption": "The low quality recording features a hydraulophone melody played alongside water leaking sound. The recording is wide, noisy and it sounds relaxing and calming.", "data_idx": 5065, "number": 3, "label": "classical"} +{"file_name": "test_08482.png", "caption": "The low quality recording features a distant brass melody and loud impact, after which there are church bells sounds. It is noisy and in mono and it sounds like a compilation.", "data_idx": 5066, "number": 0, "label": "hiphop"} +{"file_name": "test_08483.png", "caption": "The low quality recording features a distant brass melody and loud impact, after which there are church bells sounds. It is noisy and in mono and it sounds like a compilation.", "data_idx": 5066, "number": 1, "label": "hiphop"} +{"file_name": "test_08484.png", "caption": "The low quality recording features a distant brass melody and loud impact, after which there are church bells sounds. It is noisy and in mono and it sounds like a compilation.", "data_idx": 5066, "number": 2, "label": "hiphop"} +{"file_name": "test_08485.png", "caption": "The low quality recording features a distant brass melody and loud impact, after which there are church bells sounds. It is noisy and in mono and it sounds like a compilation.", "data_idx": 5066, "number": 3, "label": "hiphop"} +{"file_name": "test_08486.png", "caption": "A sweet, melancholy sounding soft rock song with a male singer accompanied by acoustic guitar strumming, a cello counter melody, piano, simple electric bass, and a slow rock drum beat.", "data_idx": 5067, "number": 0, "label": "rock"} +{"file_name": "test_08487.png", "caption": "A sweet, melancholy sounding soft rock song with a male singer accompanied by acoustic guitar strumming, a cello counter melody, piano, simple electric bass, and a slow rock drum beat.", "data_idx": 5067, "number": 1, "label": "rock"} +{"file_name": "test_08488.png", "caption": "A sweet, melancholy sounding soft rock song with a male singer accompanied by acoustic guitar strumming, a cello counter melody, piano, simple electric bass, and a slow rock drum beat.", "data_idx": 5067, "number": 2, "label": "rock"} +{"file_name": "test_08489.png", "caption": "A sweet, melancholy sounding soft rock song with a male singer accompanied by acoustic guitar strumming, a cello counter melody, piano, simple electric bass, and a slow rock drum beat.", "data_idx": 5067, "number": 3, "label": "rock"} +{"file_name": "test_08490.png", "caption": "This song features a brass quintet. The bass notes are played on a tuba. The main melody is played on the trumpets. This is backed by the trombone and French horn. There are no other instruments in this song. There are no voices in this song. This song is an instrumental song with an epic feel. This song can be played when a victorious protagonist enters the city after a battle in a movie.", "data_idx": 5070, "number": 0, "label": "classical"} +{"file_name": "test_08491.png", "caption": "This song features a brass quintet. The bass notes are played on a tuba. The main melody is played on the trumpets. This is backed by the trombone and French horn. There are no other instruments in this song. There are no voices in this song. This song is an instrumental song with an epic feel. This song can be played when a victorious protagonist enters the city after a battle in a movie.", "data_idx": 5070, "number": 1, "label": "classical"} +{"file_name": "test_08492.png", "caption": "This song features a brass quintet. The bass notes are played on a tuba. The main melody is played on the trumpets. This is backed by the trombone and French horn. There are no other instruments in this song. There are no voices in this song. This song is an instrumental song with an epic feel. This song can be played when a victorious protagonist enters the city after a battle in a movie.", "data_idx": 5070, "number": 2, "label": "classical"} +{"file_name": "test_08493.png", "caption": "This song features a brass quintet. The bass notes are played on a tuba. The main melody is played on the trumpets. This is backed by the trombone and French horn. There are no other instruments in this song. There are no voices in this song. This song is an instrumental song with an epic feel. This song can be played when a victorious protagonist enters the city after a battle in a movie.", "data_idx": 5070, "number": 3, "label": "classical"} +{"file_name": "test_08494.png", "caption": "The low quality recording features a steel guitar melody, followed by accordion melody. There are some popping sounds and it sounds passionate, happy and joyful.", "data_idx": 5071, "number": 0, "label": "classical"} +{"file_name": "test_08495.png", "caption": "The low quality recording features a steel guitar melody, followed by accordion melody. There are some popping sounds and it sounds passionate, happy and joyful.", "data_idx": 5071, "number": 1, "label": "classical"} +{"file_name": "test_08496.png", "caption": "The low quality recording features a steel guitar melody, followed by accordion melody. There are some popping sounds and it sounds passionate, happy and joyful.", "data_idx": 5071, "number": 2, "label": "classical"} +{"file_name": "test_08497.png", "caption": "The low quality recording features a steel guitar melody, followed by accordion melody. There are some popping sounds and it sounds passionate, happy and joyful.", "data_idx": 5071, "number": 3, "label": "classical"} +{"file_name": "test_08498.png", "caption": "In this clip we have a man speaking Hebrew, followed by the sound of a high pitched traditional horn. In the background, there are unidentifiable noises.", "data_idx": 5073, "number": 0, "label": "blues"} +{"file_name": "test_08499.png", "caption": "In this clip we have a man speaking Hebrew, followed by the sound of a high pitched traditional horn. In the background, there are unidentifiable noises.", "data_idx": 5073, "number": 1, "label": "blues"} +{"file_name": "test_08500.png", "caption": "In this clip we have a man speaking Hebrew, followed by the sound of a high pitched traditional horn. In the background, there are unidentifiable noises.", "data_idx": 5073, "number": 2, "label": "blues"} +{"file_name": "test_08501.png", "caption": "In this clip we have a man speaking Hebrew, followed by the sound of a high pitched traditional horn. In the background, there are unidentifiable noises.", "data_idx": 5073, "number": 3, "label": "blues"} +{"file_name": "test_08502.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a tenor sax solo melody playing over mellow piano chords, sustained strings, groovy bass, snappy rimshots, shimmering hi hats and punchy kicks. It sounds emotional, passionate and soulful.", "data_idx": 5074, "number": 0, "label": "classical"} +{"file_name": "test_08503.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a tenor sax solo melody playing over mellow piano chords, sustained strings, groovy bass, snappy rimshots, shimmering hi hats and punchy kicks. It sounds emotional, passionate and soulful.", "data_idx": 5074, "number": 1, "label": "classical"} +{"file_name": "test_08504.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a tenor sax solo melody playing over mellow piano chords, sustained strings, groovy bass, snappy rimshots, shimmering hi hats and punchy kicks. It sounds emotional, passionate and soulful.", "data_idx": 5074, "number": 2, "label": "classical"} +{"file_name": "test_08505.png", "caption": "The low quality recording features a live performance of a jazz song that consists of a tenor sax solo melody playing over mellow piano chords, sustained strings, groovy bass, snappy rimshots, shimmering hi hats and punchy kicks. It sounds emotional, passionate and soulful.", "data_idx": 5074, "number": 3, "label": "classical"} +{"file_name": "test_08506.png", "caption": "This is an Azerbaijani folk music piece. It is an instrumental piece. The only instrument being played is a garmon which has a sound that resembles an accordion. There is a lively atmosphere in the recording. This piece can be played in the soundtrack of a documentary that takes place in the Caucasus region. It could also be used in the soundtrack of an Azerbaijani soap opera.", "data_idx": 5075, "number": 0, "label": "classical"} +{"file_name": "test_08507.png", "caption": "This is an Azerbaijani folk music piece. It is an instrumental piece. The only instrument being played is a garmon which has a sound that resembles an accordion. There is a lively atmosphere in the recording. This piece can be played in the soundtrack of a documentary that takes place in the Caucasus region. It could also be used in the soundtrack of an Azerbaijani soap opera.", "data_idx": 5075, "number": 1, "label": "classical"} +{"file_name": "test_08508.png", "caption": "This is an Azerbaijani folk music piece. It is an instrumental piece. The only instrument being played is a garmon which has a sound that resembles an accordion. There is a lively atmosphere in the recording. This piece can be played in the soundtrack of a documentary that takes place in the Caucasus region. It could also be used in the soundtrack of an Azerbaijani soap opera.", "data_idx": 5075, "number": 2, "label": "classical"} +{"file_name": "test_08509.png", "caption": "This is an Azerbaijani folk music piece. It is an instrumental piece. The only instrument being played is a garmon which has a sound that resembles an accordion. There is a lively atmosphere in the recording. This piece can be played in the soundtrack of a documentary that takes place in the Caucasus region. It could also be used in the soundtrack of an Azerbaijani soap opera.", "data_idx": 5075, "number": 3, "label": "classical"} +{"file_name": "test_08510.png", "caption": "This audio contains someone blowing a shofar horn with a lot of reverb and a long release time. Panned to the right side of the speakers you can hear water dripping. This song may be playing while doing something like qigong.", "data_idx": 5077, "number": 0, "label": "classical"} +{"file_name": "test_08511.png", "caption": "This audio contains someone blowing a shofar horn with a lot of reverb and a long release time. Panned to the right side of the speakers you can hear water dripping. This song may be playing while doing something like qigong.", "data_idx": 5077, "number": 1, "label": "classical"} +{"file_name": "test_08512.png", "caption": "This audio contains someone blowing a shofar horn with a lot of reverb and a long release time. Panned to the right side of the speakers you can hear water dripping. This song may be playing while doing something like qigong.", "data_idx": 5077, "number": 2, "label": "classical"} +{"file_name": "test_08513.png", "caption": "This audio contains someone blowing a shofar horn with a lot of reverb and a long release time. Panned to the right side of the speakers you can hear water dripping. This song may be playing while doing something like qigong.", "data_idx": 5077, "number": 3, "label": "classical"} +{"file_name": "test_08514.png", "caption": "This is an electropop/synth-pop music piece. It is an instrumental piece. There is a crunchy sounding electric guitar tune at the forefront. The rhythmic background consists of an aggressive acoustic drum beat. The atmosphere is hard-hitting. This piece could be playing in the soundtrack of a coming-of-age drama movie.", "data_idx": 5079, "number": 0, "label": "disco"} +{"file_name": "test_08515.png", "caption": "This is an electropop/synth-pop music piece. It is an instrumental piece. There is a crunchy sounding electric guitar tune at the forefront. The rhythmic background consists of an aggressive acoustic drum beat. The atmosphere is hard-hitting. This piece could be playing in the soundtrack of a coming-of-age drama movie.", "data_idx": 5079, "number": 1, "label": "disco"} +{"file_name": "test_08516.png", "caption": "This is an electropop/synth-pop music piece. It is an instrumental piece. There is a crunchy sounding electric guitar tune at the forefront. The rhythmic background consists of an aggressive acoustic drum beat. The atmosphere is hard-hitting. This piece could be playing in the soundtrack of a coming-of-age drama movie.", "data_idx": 5079, "number": 2, "label": "disco"} +{"file_name": "test_08517.png", "caption": "This is an electropop/synth-pop music piece. It is an instrumental piece. There is a crunchy sounding electric guitar tune at the forefront. The rhythmic background consists of an aggressive acoustic drum beat. The atmosphere is hard-hitting. This piece could be playing in the soundtrack of a coming-of-age drama movie.", "data_idx": 5079, "number": 3, "label": "disco"} +{"file_name": "test_08518.png", "caption": "The low quality recording features groovy wooden percussion. The recording is in mono, noisy and it sounds boomy.", "data_idx": 5080, "number": 0, "label": "jazz"} +{"file_name": "test_08519.png", "caption": "The low quality recording features groovy wooden percussion. The recording is in mono, noisy and it sounds boomy.", "data_idx": 5080, "number": 1, "label": "jazz"} +{"file_name": "test_08520.png", "caption": "The low quality recording features groovy wooden percussion. The recording is in mono, noisy and it sounds boomy.", "data_idx": 5080, "number": 2, "label": "jazz"} +{"file_name": "test_08521.png", "caption": "The low quality recording features groovy wooden percussion. The recording is in mono, noisy and it sounds boomy.", "data_idx": 5080, "number": 3, "label": "jazz"} +{"file_name": "test_08522.png", "caption": "This is the recording of a bell ringing lesson video. There is a set of three small church bells being played in various ways. There is a male voice speaking in an instructive manner on how to ring the bells. He is speaking in the Russian language. This recording can be sampled for use in beat-making. The bell sample could also fit well as a sound effect in a cartoon or a movie.", "data_idx": 5082, "number": 0, "label": "classical"} +{"file_name": "test_08523.png", "caption": "This is the recording of a bell ringing lesson video. There is a set of three small church bells being played in various ways. There is a male voice speaking in an instructive manner on how to ring the bells. He is speaking in the Russian language. This recording can be sampled for use in beat-making. The bell sample could also fit well as a sound effect in a cartoon or a movie.", "data_idx": 5082, "number": 1, "label": "classical"} +{"file_name": "test_08524.png", "caption": "This is the recording of a bell ringing lesson video. There is a set of three small church bells being played in various ways. There is a male voice speaking in an instructive manner on how to ring the bells. He is speaking in the Russian language. This recording can be sampled for use in beat-making. The bell sample could also fit well as a sound effect in a cartoon or a movie.", "data_idx": 5082, "number": 2, "label": "classical"} +{"file_name": "test_08525.png", "caption": "This is the recording of a bell ringing lesson video. There is a set of three small church bells being played in various ways. There is a male voice speaking in an instructive manner on how to ring the bells. He is speaking in the Russian language. This recording can be sampled for use in beat-making. The bell sample could also fit well as a sound effect in a cartoon or a movie.", "data_idx": 5082, "number": 3, "label": "classical"} +{"file_name": "test_08526.png", "caption": "This is a pop/disco music piece. There is a male vocalist singing melodically in the lead while the main tune is being played by the saxophone. In the rhythmic background, there is an electronic drum beat with percussive elements surrounding it. The atmosphere is energetic and danceable. This piece could be playing in the background at a dance club during a retro-themed night.", "data_idx": 5083, "number": 0, "label": "disco"} +{"file_name": "test_08527.png", "caption": "This is a pop/disco music piece. There is a male vocalist singing melodically in the lead while the main tune is being played by the saxophone. In the rhythmic background, there is an electronic drum beat with percussive elements surrounding it. The atmosphere is energetic and danceable. This piece could be playing in the background at a dance club during a retro-themed night.", "data_idx": 5083, "number": 1, "label": "disco"} +{"file_name": "test_08528.png", "caption": "This is a pop/disco music piece. There is a male vocalist singing melodically in the lead while the main tune is being played by the saxophone. In the rhythmic background, there is an electronic drum beat with percussive elements surrounding it. The atmosphere is energetic and danceable. This piece could be playing in the background at a dance club during a retro-themed night.", "data_idx": 5083, "number": 2, "label": "disco"} +{"file_name": "test_08529.png", "caption": "This is a pop/disco music piece. There is a male vocalist singing melodically in the lead while the main tune is being played by the saxophone. In the rhythmic background, there is an electronic drum beat with percussive elements surrounding it. The atmosphere is energetic and danceable. This piece could be playing in the background at a dance club during a retro-themed night.", "data_idx": 5083, "number": 3, "label": "disco"} +{"file_name": "test_08530.png", "caption": "The low quality recording features a kids song sung by harmonizing kids vocals over shimmering bells, claps, synth keys melody, groovy bass and shimmering hi hats in the right channel of the stereo image. It sounds fun, happy, addictive, thanks to that cadence, and like something kids would listen to.", "data_idx": 5084, "number": 0, "label": "hiphop"} +{"file_name": "test_08531.png", "caption": "The low quality recording features a kids song sung by harmonizing kids vocals over shimmering bells, claps, synth keys melody, groovy bass and shimmering hi hats in the right channel of the stereo image. It sounds fun, happy, addictive, thanks to that cadence, and like something kids would listen to.", "data_idx": 5084, "number": 1, "label": "hiphop"} +{"file_name": "test_08532.png", "caption": "The low quality recording features a kids song sung by harmonizing kids vocals over shimmering bells, claps, synth keys melody, groovy bass and shimmering hi hats in the right channel of the stereo image. It sounds fun, happy, addictive, thanks to that cadence, and like something kids would listen to.", "data_idx": 5084, "number": 2, "label": "hiphop"} +{"file_name": "test_08533.png", "caption": "The low quality recording features a kids song sung by harmonizing kids vocals over shimmering bells, claps, synth keys melody, groovy bass and shimmering hi hats in the right channel of the stereo image. It sounds fun, happy, addictive, thanks to that cadence, and like something kids would listen to.", "data_idx": 5084, "number": 3, "label": "hiphop"} +{"file_name": "test_08534.png", "caption": "The low quality recording features a suspenseful tone of didgeridoo. The recording is mono and noisy, as it was probably recorded with a phone.", "data_idx": 5085, "number": 0, "label": "metal"} +{"file_name": "test_08535.png", "caption": "The low quality recording features a suspenseful tone of didgeridoo. The recording is mono and noisy, as it was probably recorded with a phone.", "data_idx": 5085, "number": 1, "label": "metal"} +{"file_name": "test_08536.png", "caption": "This song is a simple instrumental. The tempo slows with the sound of clapping followed by a soft and mellow ukelele melody. This is a home video of a Ukelele instrumental.", "data_idx": 5087, "number": 0, "label": "hiphop"} +{"file_name": "test_08537.png", "caption": "This song is a simple instrumental. The tempo slows with the sound of clapping followed by a soft and mellow ukelele melody. This is a home video of a Ukelele instrumental.", "data_idx": 5087, "number": 1, "label": "hiphop"} +{"file_name": "test_08538.png", "caption": "This folk song features a variety of instruments. The main melody is played on a violin, flute and accordion. The double bass plays a running bass pattern. An acoustic guitar strums chords. A hammered dulcimer plays parts that give a percussive feel. There are no voices in this song. This is an instrumental song. This song can be played in a luxurious and lively brunch.", "data_idx": 5088, "number": 0, "label": "hiphop"} +{"file_name": "test_08539.png", "caption": "This folk song features a variety of instruments. The main melody is played on a violin, flute and accordion. The double bass plays a running bass pattern. An acoustic guitar strums chords. A hammered dulcimer plays parts that give a percussive feel. There are no voices in this song. This is an instrumental song. This song can be played in a luxurious and lively brunch.", "data_idx": 5088, "number": 1, "label": "hiphop"} +{"file_name": "test_08540.png", "caption": "This folk song features a variety of instruments. The main melody is played on a violin, flute and accordion. The double bass plays a running bass pattern. An acoustic guitar strums chords. A hammered dulcimer plays parts that give a percussive feel. There are no voices in this song. This is an instrumental song. This song can be played in a luxurious and lively brunch.", "data_idx": 5088, "number": 2, "label": "hiphop"} +{"file_name": "test_08541.png", "caption": "This folk song features a variety of instruments. The main melody is played on a violin, flute and accordion. The double bass plays a running bass pattern. An acoustic guitar strums chords. A hammered dulcimer plays parts that give a percussive feel. There are no voices in this song. This is an instrumental song. This song can be played in a luxurious and lively brunch.", "data_idx": 5088, "number": 3, "label": "hiphop"} +{"file_name": "test_08542.png", "caption": "The song is an instrumental. The song is in medium tempo with a harpist playing a beautiful cascade of notes while the orchestra watches. The song is exciting and passionate. The audio quality is poor.", "data_idx": 5090, "number": 0, "label": "classical"} +{"file_name": "test_08543.png", "caption": "The song is an instrumental. The song is in medium tempo with a harpist playing a beautiful cascade of notes while the orchestra watches. The song is exciting and passionate. The audio quality is poor.", "data_idx": 5090, "number": 1, "label": "classical"} +{"file_name": "test_08544.png", "caption": "The song is an instrumental. The song is in medium tempo with a harpist playing a beautiful cascade of notes while the orchestra watches. The song is exciting and passionate. The audio quality is poor.", "data_idx": 5090, "number": 2, "label": "classical"} +{"file_name": "test_08545.png", "caption": "The song is an instrumental. The song is in medium tempo with a harpist playing a beautiful cascade of notes while the orchestra watches. The song is exciting and passionate. The audio quality is poor.", "data_idx": 5090, "number": 3, "label": "classical"} +{"file_name": "test_08546.png", "caption": "The low quality recording features an accordion melody with some plastic tapping keys along the way. It sounds soulful and passionate and the recording is noisy.", "data_idx": 5092, "number": 0, "label": "classical"} +{"file_name": "test_08547.png", "caption": "The low quality recording features an accordion melody with some plastic tapping keys along the way. It sounds soulful and passionate and the recording is noisy.", "data_idx": 5092, "number": 1, "label": "classical"} +{"file_name": "test_08548.png", "caption": "The low quality recording features an accordion melody with some plastic tapping keys along the way. It sounds soulful and passionate and the recording is noisy.", "data_idx": 5092, "number": 2, "label": "classical"} +{"file_name": "test_08549.png", "caption": "The low quality recording features an accordion melody with some plastic tapping keys along the way. It sounds soulful and passionate and the recording is noisy.", "data_idx": 5092, "number": 3, "label": "classical"} +{"file_name": "test_08550.png", "caption": "The low quality recording features a groovy cajon percussion, electric guitar chords and groovy synth bass. It sounds groovy and funky.", "data_idx": 5098, "number": 0, "label": "reggae"} +{"file_name": "test_08551.png", "caption": "The low quality recording features a groovy cajon percussion, electric guitar chords and groovy synth bass. It sounds groovy and funky.", "data_idx": 5098, "number": 1, "label": "reggae"} +{"file_name": "test_08552.png", "caption": "The low quality recording features a groovy cajon percussion, electric guitar chords and groovy synth bass. It sounds groovy and funky.", "data_idx": 5098, "number": 2, "label": "reggae"} +{"file_name": "test_08553.png", "caption": "The low quality recording features a groovy cajon percussion, electric guitar chords and groovy synth bass. It sounds groovy and funky.", "data_idx": 5098, "number": 3, "label": "reggae"} +{"file_name": "test_08554.png", "caption": "The low quality recording features an afrobeats song that consists of a flat male vocal rapping over punchy 808 bass, strings melody, shimmering hi hats, claps and some snare rolls. It sounds addictive, bouncy and groovy thanks to that rhythm.", "data_idx": 5100, "number": 0, "label": "reggae"} +{"file_name": "test_08555.png", "caption": "The low quality recording features an afrobeats song that consists of a flat male vocal rapping over punchy 808 bass, strings melody, shimmering hi hats, claps and some snare rolls. It sounds addictive, bouncy and groovy thanks to that rhythm.", "data_idx": 5100, "number": 1, "label": "reggae"} +{"file_name": "test_08556.png", "caption": "The low quality recording features an afrobeats song that consists of a flat male vocal rapping over punchy 808 bass, strings melody, shimmering hi hats, claps and some snare rolls. It sounds addictive, bouncy and groovy thanks to that rhythm.", "data_idx": 5100, "number": 2, "label": "reggae"} +{"file_name": "test_08557.png", "caption": "The low quality recording features an afrobeats song that consists of a flat male vocal rapping over punchy 808 bass, strings melody, shimmering hi hats, claps and some snare rolls. It sounds addictive, bouncy and groovy thanks to that rhythm.", "data_idx": 5100, "number": 3, "label": "reggae"} +{"file_name": "test_08558.png", "caption": "This audio contains people playing percussive instruments in the background. In the foreground you can hear someone playing a flute in a higher pitch. The sound of the flute is overdriving the speakers of the recording completely. This recording is of very poor audio-quality. This song may be playing while celebrating.", "data_idx": 5103, "number": 0, "label": "classical"} +{"file_name": "test_08559.png", "caption": "This audio contains people playing percussive instruments in the background. In the foreground you can hear someone playing a flute in a higher pitch. The sound of the flute is overdriving the speakers of the recording completely. This recording is of very poor audio-quality. This song may be playing while celebrating.", "data_idx": 5103, "number": 1, "label": "classical"} +{"file_name": "test_08560.png", "caption": "This audio contains people playing percussive instruments in the background. In the foreground you can hear someone playing a flute in a higher pitch. The sound of the flute is overdriving the speakers of the recording completely. This recording is of very poor audio-quality. This song may be playing while celebrating.", "data_idx": 5103, "number": 2, "label": "classical"} +{"file_name": "test_08561.png", "caption": "This audio contains people playing percussive instruments in the background. In the foreground you can hear someone playing a flute in a higher pitch. The sound of the flute is overdriving the speakers of the recording completely. This recording is of very poor audio-quality. This song may be playing while celebrating.", "data_idx": 5103, "number": 3, "label": "classical"} +{"file_name": "test_08562.png", "caption": "A lot of very active church bells ringing together.", "data_idx": 5107, "number": 0, "label": "classical"} +{"file_name": "test_08563.png", "caption": "A lot of very active church bells ringing together.", "data_idx": 5107, "number": 1, "label": "classical"} +{"file_name": "test_08564.png", "caption": "A lot of very active church bells ringing together.", "data_idx": 5107, "number": 2, "label": "classical"} +{"file_name": "test_08565.png", "caption": "A lot of very active church bells ringing together.", "data_idx": 5107, "number": 3, "label": "classical"} +{"file_name": "test_08566.png", "caption": "This audio contains someone playing tao percussion with fast drumrolls. In the background you can hear other noises. This is an amateur recording. This song may be playing live at a traditional performance.", "data_idx": 5110, "number": 0, "label": "jazz"} +{"file_name": "test_08567.png", "caption": "This audio contains someone playing tao percussion with fast drumrolls. In the background you can hear other noises. This is an amateur recording. This song may be playing live at a traditional performance.", "data_idx": 5110, "number": 1, "label": "jazz"} +{"file_name": "test_08568.png", "caption": "This is an Oriental dance music piece. It is an instrumental piece. There is an oud and a new flute playing the melody. The rhythmic background is composed of percussive elements such as the def and the tambourine. The atmosphere is exotic and sensual. This piece could be used in the soundtrack of movies that take place in the Middle East region.", "data_idx": 5112, "number": 0, "label": "disco"} +{"file_name": "test_08569.png", "caption": "This is an Oriental dance music piece. It is an instrumental piece. There is an oud and a new flute playing the melody. The rhythmic background is composed of percussive elements such as the def and the tambourine. The atmosphere is exotic and sensual. This piece could be used in the soundtrack of movies that take place in the Middle East region.", "data_idx": 5112, "number": 1, "label": "disco"} +{"file_name": "test_08570.png", "caption": "This is an Oriental dance music piece. It is an instrumental piece. There is an oud and a new flute playing the melody. The rhythmic background is composed of percussive elements such as the def and the tambourine. The atmosphere is exotic and sensual. This piece could be used in the soundtrack of movies that take place in the Middle East region.", "data_idx": 5112, "number": 2, "label": "disco"} +{"file_name": "test_08571.png", "caption": "This is an Oriental dance music piece. It is an instrumental piece. There is an oud and a new flute playing the melody. The rhythmic background is composed of percussive elements such as the def and the tambourine. The atmosphere is exotic and sensual. This piece could be used in the soundtrack of movies that take place in the Middle East region.", "data_idx": 5112, "number": 3, "label": "disco"} +{"file_name": "test_08572.png", "caption": "This is a live performance of the Tibetan singing bowls. The performer is repeatedly striking the bowls with a small hammer and making them vibrate with resonant sound. These sounds create a calming, relaxing aura. This piece would make a perfect background track for a meditation video.", "data_idx": 5113, "number": 0, "label": "classical"} +{"file_name": "test_08573.png", "caption": "This is a live performance of the Tibetan singing bowls. The performer is repeatedly striking the bowls with a small hammer and making them vibrate with resonant sound. These sounds create a calming, relaxing aura. This piece would make a perfect background track for a meditation video.", "data_idx": 5113, "number": 1, "label": "classical"} +{"file_name": "test_08574.png", "caption": "This is a live performance of the Tibetan singing bowls. The performer is repeatedly striking the bowls with a small hammer and making them vibrate with resonant sound. These sounds create a calming, relaxing aura. This piece would make a perfect background track for a meditation video.", "data_idx": 5113, "number": 2, "label": "classical"} +{"file_name": "test_08575.png", "caption": "This is a live performance of the Tibetan singing bowls. The performer is repeatedly striking the bowls with a small hammer and making them vibrate with resonant sound. These sounds create a calming, relaxing aura. This piece would make a perfect background track for a meditation video.", "data_idx": 5113, "number": 3, "label": "classical"} +{"file_name": "test_08576.png", "caption": "The Electro song features repetitive echoing bells, simple piano chords, groovy bass and huge down sweep. It sounds exciting, chill and easygoing - like the drop is incoming.", "data_idx": 5114, "number": 0, "label": "rock"} +{"file_name": "test_08577.png", "caption": "The Electro song features repetitive echoing bells, simple piano chords, groovy bass and huge down sweep. It sounds exciting, chill and easygoing - like the drop is incoming.", "data_idx": 5114, "number": 1, "label": "rock"} +{"file_name": "test_08578.png", "caption": "The Electro song features repetitive echoing bells, simple piano chords, groovy bass and huge down sweep. It sounds exciting, chill and easygoing - like the drop is incoming.", "data_idx": 5114, "number": 2, "label": "rock"} +{"file_name": "test_08579.png", "caption": "The Electro song features repetitive echoing bells, simple piano chords, groovy bass and huge down sweep. It sounds exciting, chill and easygoing - like the drop is incoming.", "data_idx": 5114, "number": 3, "label": "rock"} +{"file_name": "test_08580.png", "caption": "harsh sounding drumline music with a screechy bagpipe, active bass drum, marching snare drum. The sound is loud and grating.", "data_idx": 5118, "number": 0, "label": "disco"} +{"file_name": "test_08581.png", "caption": "harsh sounding drumline music with a screechy bagpipe, active bass drum, marching snare drum. The sound is loud and grating.", "data_idx": 5118, "number": 1, "label": "disco"} +{"file_name": "test_08582.png", "caption": "harsh sounding drumline music with a screechy bagpipe, active bass drum, marching snare drum. The sound is loud and grating.", "data_idx": 5118, "number": 2, "label": "disco"} +{"file_name": "test_08583.png", "caption": "harsh sounding drumline music with a screechy bagpipe, active bass drum, marching snare drum. The sound is loud and grating.", "data_idx": 5118, "number": 3, "label": "disco"} +{"file_name": "test_08584.png", "caption": "This audio contains someone playing a tibetan bowl ringing in a high pitch. This may be playing during meditation.", "data_idx": 5120, "number": 0, "label": "classical"} +{"file_name": "test_08585.png", "caption": "This audio contains someone playing a tibetan bowl ringing in a high pitch. This may be playing during meditation.", "data_idx": 5120, "number": 1, "label": "classical"} +{"file_name": "test_08586.png", "caption": "This audio contains someone playing a tibetan bowl ringing in a high pitch. This may be playing during meditation.", "data_idx": 5120, "number": 2, "label": "classical"} +{"file_name": "test_08587.png", "caption": "This audio contains someone playing a tibetan bowl ringing in a high pitch. This may be playing during meditation.", "data_idx": 5120, "number": 3, "label": "classical"} +{"file_name": "test_08588.png", "caption": "The song is an instrumental. The tempo is fast , with a philharmonic orchestra consisting of string section, rhythm section and horns accompanying a virtuoso wooden xylophone playing this western classical hit. The song is energetic and exciting.", "data_idx": 5123, "number": 0, "label": "classical"} +{"file_name": "test_08589.png", "caption": "The song is an instrumental. The tempo is fast , with a philharmonic orchestra consisting of string section, rhythm section and horns accompanying a virtuoso wooden xylophone playing this western classical hit. The song is energetic and exciting.", "data_idx": 5123, "number": 1, "label": "classical"} +{"file_name": "test_08590.png", "caption": "The song is an instrumental. The tempo is fast , with a philharmonic orchestra consisting of string section, rhythm section and horns accompanying a virtuoso wooden xylophone playing this western classical hit. The song is energetic and exciting.", "data_idx": 5123, "number": 2, "label": "classical"} +{"file_name": "test_08591.png", "caption": "The song is an instrumental. The tempo is fast , with a philharmonic orchestra consisting of string section, rhythm section and horns accompanying a virtuoso wooden xylophone playing this western classical hit. The song is energetic and exciting.", "data_idx": 5123, "number": 3, "label": "classical"} +{"file_name": "test_08592.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings and flute melody. There are some chair crackling noises, as well as camera shuttering sounds. It sounds emotional and passionate, and the recording itself is noisy.", "data_idx": 5126, "number": 0, "label": "classical"} +{"file_name": "test_08593.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings and flute melody. There are some chair crackling noises, as well as camera shuttering sounds. It sounds emotional and passionate, and the recording itself is noisy.", "data_idx": 5126, "number": 1, "label": "classical"} +{"file_name": "test_08594.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings and flute melody. There are some chair crackling noises, as well as camera shuttering sounds. It sounds emotional and passionate, and the recording itself is noisy.", "data_idx": 5126, "number": 2, "label": "classical"} +{"file_name": "test_08595.png", "caption": "The low quality recording features a live performance of a classical song that consists of sustained strings and flute melody. There are some chair crackling noises, as well as camera shuttering sounds. It sounds emotional and passionate, and the recording itself is noisy.", "data_idx": 5126, "number": 3, "label": "classical"} +{"file_name": "test_08596.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals and followed by wooden percussion, short flute licks and mellow piano chords. It sounds addictive and passionate.", "data_idx": 5127, "number": 0, "label": "disco"} +{"file_name": "test_08597.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals and followed by wooden percussion, short flute licks and mellow piano chords. It sounds addictive and passionate.", "data_idx": 5127, "number": 1, "label": "disco"} +{"file_name": "test_08598.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals and followed by wooden percussion, short flute licks and mellow piano chords. It sounds addictive and passionate.", "data_idx": 5127, "number": 2, "label": "disco"} +{"file_name": "test_08599.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals and followed by wooden percussion, short flute licks and mellow piano chords. It sounds addictive and passionate.", "data_idx": 5127, "number": 3, "label": "disco"} +{"file_name": "test_08600.png", "caption": "The Industrial Rock song features a groovy bass, punchy snare, groovy kick pattern, shimmering cymbals, addictive electric guitar melody and arpeggiated synth keys melody playing. It sounds energetic and emotional - like something you would jump to at concerts.", "data_idx": 5128, "number": 0, "label": "metal"} +{"file_name": "test_08601.png", "caption": "The Industrial Rock song features a groovy bass, punchy snare, groovy kick pattern, shimmering cymbals, addictive electric guitar melody and arpeggiated synth keys melody playing. It sounds energetic and emotional - like something you would jump to at concerts.", "data_idx": 5128, "number": 1, "label": "metal"} +{"file_name": "test_08602.png", "caption": "The Industrial Rock song features a groovy bass, punchy snare, groovy kick pattern, shimmering cymbals, addictive electric guitar melody and arpeggiated synth keys melody playing. It sounds energetic and emotional - like something you would jump to at concerts.", "data_idx": 5128, "number": 2, "label": "metal"} +{"file_name": "test_08603.png", "caption": "The Industrial Rock song features a groovy bass, punchy snare, groovy kick pattern, shimmering cymbals, addictive electric guitar melody and arpeggiated synth keys melody playing. It sounds energetic and emotional - like something you would jump to at concerts.", "data_idx": 5128, "number": 3, "label": "metal"} +{"file_name": "test_08604.png", "caption": "This music is an Electronic instrumental. The tempo is fast with vigorous electronic and heavily synthesised music using DL mixer, turn table and drum machines.The Ustica is youthful, futuristic, contemporary, vigorous, groovy, psychedelic, trance, hypnotic ,boomy and pulsating. This music is an Electronica/Tech House.", "data_idx": 5129, "number": 0, "label": "hiphop"} +{"file_name": "test_08605.png", "caption": "This music is an Electronic instrumental. The tempo is fast with vigorous electronic and heavily synthesised music using DL mixer, turn table and drum machines.The Ustica is youthful, futuristic, contemporary, vigorous, groovy, psychedelic, trance, hypnotic ,boomy and pulsating. This music is an Electronica/Tech House.", "data_idx": 5129, "number": 1, "label": "hiphop"} +{"file_name": "test_08606.png", "caption": "This music is an Electronic instrumental. The tempo is fast with vigorous electronic and heavily synthesised music using DL mixer, turn table and drum machines.The Ustica is youthful, futuristic, contemporary, vigorous, groovy, psychedelic, trance, hypnotic ,boomy and pulsating. This music is an Electronica/Tech House.", "data_idx": 5129, "number": 2, "label": "hiphop"} +{"file_name": "test_08607.png", "caption": "This music is an Electronic instrumental. The tempo is fast with vigorous electronic and heavily synthesised music using DL mixer, turn table and drum machines.The Ustica is youthful, futuristic, contemporary, vigorous, groovy, psychedelic, trance, hypnotic ,boomy and pulsating. This music is an Electronica/Tech House.", "data_idx": 5129, "number": 3, "label": "hiphop"} +{"file_name": "test_08608.png", "caption": "This song features a male voice narrating a story in the beginning. This is followed by a drum roll in a marching beat style. A bass note is played which is the root note of the chord. An organ strikes a chord and plays it staccato style. A guitar also strikes a chord. There are no other instruments in this song. This song can be played in a movie trailer.", "data_idx": 5130, "number": 0, "label": "hiphop"} +{"file_name": "test_08609.png", "caption": "This song features a male voice narrating a story in the beginning. This is followed by a drum roll in a marching beat style. A bass note is played which is the root note of the chord. An organ strikes a chord and plays it staccato style. A guitar also strikes a chord. There are no other instruments in this song. This song can be played in a movie trailer.", "data_idx": 5130, "number": 1, "label": "hiphop"} +{"file_name": "test_08610.png", "caption": "This song features a male voice narrating a story in the beginning. This is followed by a drum roll in a marching beat style. A bass note is played which is the root note of the chord. An organ strikes a chord and plays it staccato style. A guitar also strikes a chord. There are no other instruments in this song. This song can be played in a movie trailer.", "data_idx": 5130, "number": 2, "label": "hiphop"} +{"file_name": "test_08611.png", "caption": "This song features a male voice narrating a story in the beginning. This is followed by a drum roll in a marching beat style. A bass note is played which is the root note of the chord. An organ strikes a chord and plays it staccato style. A guitar also strikes a chord. There are no other instruments in this song. This song can be played in a movie trailer.", "data_idx": 5130, "number": 3, "label": "hiphop"} +{"file_name": "test_08612.png", "caption": "This is the live performance of an indietronica music piece. The melody is being played by the electric guitars and the bass guitar. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is melancholic. This piece could be used in the soundtrack of a drama movie that takes place in a city setting.", "data_idx": 5131, "number": 0, "label": "classical"} +{"file_name": "test_08613.png", "caption": "This is the live performance of an indietronica music piece. The melody is being played by the electric guitars and the bass guitar. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is melancholic. This piece could be used in the soundtrack of a drama movie that takes place in a city setting.", "data_idx": 5131, "number": 1, "label": "classical"} +{"file_name": "test_08614.png", "caption": "This is the live performance of an indietronica music piece. The melody is being played by the electric guitars and the bass guitar. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is melancholic. This piece could be used in the soundtrack of a drama movie that takes place in a city setting.", "data_idx": 5131, "number": 2, "label": "classical"} +{"file_name": "test_08615.png", "caption": "This is the live performance of an indietronica music piece. The melody is being played by the electric guitars and the bass guitar. The rhythmic background consists of a fast tempo acoustic drum beat. The atmosphere is melancholic. This piece could be used in the soundtrack of a drama movie that takes place in a city setting.", "data_idx": 5131, "number": 3, "label": "classical"} +{"file_name": "test_08616.png", "caption": "Some big and bold percussion instruments, namely timpanis, are used in this piece and create a bold and magnetic atmosphere. There is an intricate piano melody that comes in after the rhythmic percussive intro. The song fits into the east asian part of the world.", "data_idx": 5133, "number": 0, "label": "rock"} +{"file_name": "test_08617.png", "caption": "Some big and bold percussion instruments, namely timpanis, are used in this piece and create a bold and magnetic atmosphere. There is an intricate piano melody that comes in after the rhythmic percussive intro. The song fits into the east asian part of the world.", "data_idx": 5133, "number": 1, "label": "rock"} +{"file_name": "test_08618.png", "caption": "Some big and bold percussion instruments, namely timpanis, are used in this piece and create a bold and magnetic atmosphere. There is an intricate piano melody that comes in after the rhythmic percussive intro. The song fits into the east asian part of the world.", "data_idx": 5133, "number": 2, "label": "rock"} +{"file_name": "test_08619.png", "caption": "Some big and bold percussion instruments, namely timpanis, are used in this piece and create a bold and magnetic atmosphere. There is an intricate piano melody that comes in after the rhythmic percussive intro. The song fits into the east asian part of the world.", "data_idx": 5133, "number": 3, "label": "rock"} +{"file_name": "test_08620.png", "caption": "This song contains someone playing blues on a clean e-guitar. Then a male voice starts singing calmly and with a mid ranged voice. This song may be playing in a road-movie.", "data_idx": 5134, "number": 0, "label": "reggae"} +{"file_name": "test_08621.png", "caption": "This song contains someone playing blues on a clean e-guitar. Then a male voice starts singing calmly and with a mid ranged voice. This song may be playing in a road-movie.", "data_idx": 5134, "number": 1, "label": "reggae"} +{"file_name": "test_08622.png", "caption": "This song contains someone playing blues on a clean e-guitar. Then a male voice starts singing calmly and with a mid ranged voice. This song may be playing in a road-movie.", "data_idx": 5134, "number": 2, "label": "reggae"} +{"file_name": "test_08623.png", "caption": "This song contains someone playing blues on a clean e-guitar. Then a male voice starts singing calmly and with a mid ranged voice. This song may be playing in a road-movie.", "data_idx": 5134, "number": 3, "label": "reggae"} +{"file_name": "test_08624.png", "caption": "This song is played on a harpsichord. The harpsichord plays the bass and treble notes. This is a classical composition. There are no other instruments in this song. There are no voices in this song. This song can be used when a member of royalty arrives at a palace.", "data_idx": 5135, "number": 0, "label": "classical"} +{"file_name": "test_08625.png", "caption": "This song is played on a harpsichord. The harpsichord plays the bass and treble notes. This is a classical composition. There are no other instruments in this song. There are no voices in this song. This song can be used when a member of royalty arrives at a palace.", "data_idx": 5135, "number": 1, "label": "classical"} +{"file_name": "test_08626.png", "caption": "This song is played on a harpsichord. The harpsichord plays the bass and treble notes. This is a classical composition. There are no other instruments in this song. There are no voices in this song. This song can be used when a member of royalty arrives at a palace.", "data_idx": 5135, "number": 2, "label": "classical"} +{"file_name": "test_08627.png", "caption": "This song is played on a harpsichord. The harpsichord plays the bass and treble notes. This is a classical composition. There are no other instruments in this song. There are no voices in this song. This song can be used when a member of royalty arrives at a palace.", "data_idx": 5135, "number": 3, "label": "classical"} +{"file_name": "test_08628.png", "caption": "This audio contains a brass band playing a slow melody. Some are playing a layer of a long chord in the mid to higher register. on top of that a trumpet is leading a melody than other trumpets are coming in giving a loud answer. This song may be played live, performed by part of an orchestra.", "data_idx": 5137, "number": 0, "label": "classical"} +{"file_name": "test_08629.png", "caption": "This audio contains a brass band playing a slow melody. Some are playing a layer of a long chord in the mid to higher register. on top of that a trumpet is leading a melody than other trumpets are coming in giving a loud answer. This song may be played live, performed by part of an orchestra.", "data_idx": 5137, "number": 1, "label": "classical"} +{"file_name": "test_08630.png", "caption": "This audio contains a brass band playing a slow melody. Some are playing a layer of a long chord in the mid to higher register. on top of that a trumpet is leading a melody than other trumpets are coming in giving a loud answer. This song may be played live, performed by part of an orchestra.", "data_idx": 5137, "number": 2, "label": "classical"} +{"file_name": "test_08631.png", "caption": "This audio contains a brass band playing a slow melody. Some are playing a layer of a long chord in the mid to higher register. on top of that a trumpet is leading a melody than other trumpets are coming in giving a loud answer. This song may be played live, performed by part of an orchestra.", "data_idx": 5137, "number": 3, "label": "classical"} +{"file_name": "test_08632.png", "caption": "This is a DJ performance piece. The DJ is scratching the turntable over a breakbeat sample. The constantly shifting electronic drums are in the rhythmic background. There is a beat repeat effect added on the beat in the background. The atmosphere is urban. This piece could be playing in the background of a basketball skills compilation video.", "data_idx": 5138, "number": 0, "label": "hiphop"} +{"file_name": "test_08633.png", "caption": "This is a DJ performance piece. The DJ is scratching the turntable over a breakbeat sample. The constantly shifting electronic drums are in the rhythmic background. There is a beat repeat effect added on the beat in the background. The atmosphere is urban. This piece could be playing in the background of a basketball skills compilation video.", "data_idx": 5138, "number": 1, "label": "hiphop"} +{"file_name": "test_08634.png", "caption": "This is a DJ performance piece. The DJ is scratching the turntable over a breakbeat sample. The constantly shifting electronic drums are in the rhythmic background. There is a beat repeat effect added on the beat in the background. The atmosphere is urban. This piece could be playing in the background of a basketball skills compilation video.", "data_idx": 5138, "number": 2, "label": "hiphop"} +{"file_name": "test_08635.png", "caption": "This is a DJ performance piece. The DJ is scratching the turntable over a breakbeat sample. The constantly shifting electronic drums are in the rhythmic background. There is a beat repeat effect added on the beat in the background. The atmosphere is urban. This piece could be playing in the background of a basketball skills compilation video.", "data_idx": 5138, "number": 3, "label": "hiphop"} +{"file_name": "test_08636.png", "caption": "This song features an electric guitar playing the main melody. The guitar plays three ascending chords. Each chord is strummed once at the beginning of the bar. The tremolo bar is used to give the sound a tremulous effect. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played in a guitar instruction video.", "data_idx": 5143, "number": 0, "label": "classical"} +{"file_name": "test_08637.png", "caption": "This song features an electric guitar playing the main melody. The guitar plays three ascending chords. Each chord is strummed once at the beginning of the bar. The tremolo bar is used to give the sound a tremulous effect. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played in a guitar instruction video.", "data_idx": 5143, "number": 1, "label": "classical"} +{"file_name": "test_08638.png", "caption": "This song features an electric guitar playing the main melody. The guitar plays three ascending chords. Each chord is strummed once at the beginning of the bar. The tremolo bar is used to give the sound a tremulous effect. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played in a guitar instruction video.", "data_idx": 5143, "number": 2, "label": "classical"} +{"file_name": "test_08639.png", "caption": "This song features an electric guitar playing the main melody. The guitar plays three ascending chords. Each chord is strummed once at the beginning of the bar. The tremolo bar is used to give the sound a tremulous effect. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be played in a guitar instruction video.", "data_idx": 5143, "number": 3, "label": "classical"} +{"file_name": "test_08640.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over offbeat, widely spread guitar chords, groovy bass, punchy kick hits, punchy snare hits layered with claps, bouncy wooden percussions and echoing brass melody. It gives off happy and fun vibes - as every reggae song should.", "data_idx": 5146, "number": 0, "label": "hiphop"} +{"file_name": "test_08641.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over offbeat, widely spread guitar chords, groovy bass, punchy kick hits, punchy snare hits layered with claps, bouncy wooden percussions and echoing brass melody. It gives off happy and fun vibes - as every reggae song should.", "data_idx": 5146, "number": 1, "label": "hiphop"} +{"file_name": "test_08642.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over offbeat, widely spread guitar chords, groovy bass, punchy kick hits, punchy snare hits layered with claps, bouncy wooden percussions and echoing brass melody. It gives off happy and fun vibes - as every reggae song should.", "data_idx": 5146, "number": 2, "label": "hiphop"} +{"file_name": "test_08643.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over offbeat, widely spread guitar chords, groovy bass, punchy kick hits, punchy snare hits layered with claps, bouncy wooden percussions and echoing brass melody. It gives off happy and fun vibes - as every reggae song should.", "data_idx": 5146, "number": 3, "label": "hiphop"} +{"file_name": "test_08644.png", "caption": "This song contains digital drums with an overdrive kick going together with a digital bass. Another synth sub bass is playing a melody. On top of that a lofi bitrate sound is playing a melody in the higher register. This song may be playing during a videogame.", "data_idx": 5149, "number": 0, "label": "reggae"} +{"file_name": "test_08645.png", "caption": "This song contains digital drums with an overdrive kick going together with a digital bass. Another synth sub bass is playing a melody. On top of that a lofi bitrate sound is playing a melody in the higher register. This song may be playing during a videogame.", "data_idx": 5149, "number": 1, "label": "reggae"} +{"file_name": "test_08646.png", "caption": "This song contains digital drums with an overdrive kick going together with a digital bass. Another synth sub bass is playing a melody. On top of that a lofi bitrate sound is playing a melody in the higher register. This song may be playing during a videogame.", "data_idx": 5149, "number": 2, "label": "reggae"} +{"file_name": "test_08647.png", "caption": "This song contains digital drums with an overdrive kick going together with a digital bass. Another synth sub bass is playing a melody. On top of that a lofi bitrate sound is playing a melody in the higher register. This song may be playing during a videogame.", "data_idx": 5149, "number": 3, "label": "reggae"} +{"file_name": "test_08648.png", "caption": "This symphonic song features an orchestra. At the beginning, a French horn plays a melody. This is followed by a harmony played by the string section and brass section. There is no percussion in this song. This song is uplifting. The mood of this song is suspenseful. This song can be played in a movie where a dangerous scene is taking place.", "data_idx": 5150, "number": 0, "label": "classical"} +{"file_name": "test_08649.png", "caption": "This symphonic song features an orchestra. At the beginning, a French horn plays a melody. This is followed by a harmony played by the string section and brass section. There is no percussion in this song. This song is uplifting. The mood of this song is suspenseful. This song can be played in a movie where a dangerous scene is taking place.", "data_idx": 5150, "number": 1, "label": "classical"} +{"file_name": "test_08650.png", "caption": "This symphonic song features an orchestra. At the beginning, a French horn plays a melody. This is followed by a harmony played by the string section and brass section. There is no percussion in this song. This song is uplifting. The mood of this song is suspenseful. This song can be played in a movie where a dangerous scene is taking place.", "data_idx": 5150, "number": 2, "label": "classical"} +{"file_name": "test_08651.png", "caption": "This symphonic song features an orchestra. At the beginning, a French horn plays a melody. This is followed by a harmony played by the string section and brass section. There is no percussion in this song. This song is uplifting. The mood of this song is suspenseful. This song can be played in a movie where a dangerous scene is taking place.", "data_idx": 5150, "number": 3, "label": "classical"} +{"file_name": "test_08652.png", "caption": "The low quality recording features a resonating bowl sound, followed by mellow metallic percussion. The recording is noisy and it sounds a bit harsh and disturbing.", "data_idx": 5152, "number": 0, "label": "jazz"} +{"file_name": "test_08653.png", "caption": "The low quality recording features a resonating bowl sound, followed by mellow metallic percussion. The recording is noisy and it sounds a bit harsh and disturbing.", "data_idx": 5152, "number": 1, "label": "jazz"} +{"file_name": "test_08654.png", "caption": "The low quality recording features a resonating bowl sound, followed by mellow metallic percussion. The recording is noisy and it sounds a bit harsh and disturbing.", "data_idx": 5152, "number": 2, "label": "jazz"} +{"file_name": "test_08655.png", "caption": "The low quality recording features a resonating bowl sound, followed by mellow metallic percussion. The recording is noisy and it sounds a bit harsh and disturbing.", "data_idx": 5152, "number": 3, "label": "jazz"} +{"file_name": "test_08656.png", "caption": "This audio contains people playing saxophones in all ranges and with a fast melody. This song may be playing as part of an orchestral performance.", "data_idx": 5153, "number": 0, "label": "classical"} +{"file_name": "test_08657.png", "caption": "This audio contains people playing saxophones in all ranges and with a fast melody. This song may be playing as part of an orchestral performance.", "data_idx": 5153, "number": 1, "label": "classical"} +{"file_name": "test_08658.png", "caption": "This audio contains people playing saxophones in all ranges and with a fast melody. This song may be playing as part of an orchestral performance.", "data_idx": 5153, "number": 2, "label": "classical"} +{"file_name": "test_08659.png", "caption": "This audio contains people playing saxophones in all ranges and with a fast melody. This song may be playing as part of an orchestral performance.", "data_idx": 5153, "number": 3, "label": "classical"} +{"file_name": "test_08660.png", "caption": "The low quality recording features a national anthem sung by harmonizing girls' vocals. It sounds passionate and emotional. The recording is noisy and in mono.", "data_idx": 5157, "number": 0, "label": "classical"} +{"file_name": "test_08661.png", "caption": "The low quality recording features a national anthem sung by harmonizing girls' vocals. It sounds passionate and emotional. The recording is noisy and in mono.", "data_idx": 5157, "number": 1, "label": "classical"} +{"file_name": "test_08662.png", "caption": "The low quality recording features a national anthem sung by harmonizing girls' vocals. It sounds passionate and emotional. The recording is noisy and in mono.", "data_idx": 5157, "number": 2, "label": "classical"} +{"file_name": "test_08663.png", "caption": "The low quality recording features a national anthem sung by harmonizing girls' vocals. It sounds passionate and emotional. The recording is noisy and in mono.", "data_idx": 5157, "number": 3, "label": "classical"} +{"file_name": "test_08664.png", "caption": "The music track is that of a band marching in the streets. The tempo is medium with a Band march, playing percussion in a steady rhythm accompanied by flutes playing in unison. The song has bad audio quality with ambient noises of people talking and other street noises.", "data_idx": 5158, "number": 0, "label": "disco"} +{"file_name": "test_08665.png", "caption": "The music track is that of a band marching in the streets. The tempo is medium with a Band march, playing percussion in a steady rhythm accompanied by flutes playing in unison. The song has bad audio quality with ambient noises of people talking and other street noises.", "data_idx": 5158, "number": 1, "label": "disco"} +{"file_name": "test_08666.png", "caption": "The music track is that of a band marching in the streets. The tempo is medium with a Band march, playing percussion in a steady rhythm accompanied by flutes playing in unison. The song has bad audio quality with ambient noises of people talking and other street noises.", "data_idx": 5158, "number": 2, "label": "disco"} +{"file_name": "test_08667.png", "caption": "The music track is that of a band marching in the streets. The tempo is medium with a Band march, playing percussion in a steady rhythm accompanied by flutes playing in unison. The song has bad audio quality with ambient noises of people talking and other street noises.", "data_idx": 5158, "number": 3, "label": "disco"} +{"file_name": "test_08668.png", "caption": "The low quality recording features a classical song that consists of an aggressive brass melody, punchy percussion hits, mellow low percussions and hollow flute melody playing over it. It sounds vintage, suspenseful, reverberant, intense and the recording is noisy.", "data_idx": 5160, "number": 0, "label": "hiphop"} +{"file_name": "test_08669.png", "caption": "The low quality recording features a classical song that consists of an aggressive brass melody, punchy percussion hits, mellow low percussions and hollow flute melody playing over it. It sounds vintage, suspenseful, reverberant, intense and the recording is noisy.", "data_idx": 5160, "number": 1, "label": "hiphop"} +{"file_name": "test_08670.png", "caption": "The low quality recording features a classical song that consists of an aggressive brass melody, punchy percussion hits, mellow low percussions and hollow flute melody playing over it. It sounds vintage, suspenseful, reverberant, intense and the recording is noisy.", "data_idx": 5160, "number": 2, "label": "hiphop"} +{"file_name": "test_08671.png", "caption": "The low quality recording features a classical song that consists of an aggressive brass melody, punchy percussion hits, mellow low percussions and hollow flute melody playing over it. It sounds vintage, suspenseful, reverberant, intense and the recording is noisy.", "data_idx": 5160, "number": 3, "label": "hiphop"} +{"file_name": "test_08672.png", "caption": "This is a Latin American dance song in the salsa style. We hear layers of upbeat, rhythmic percussion that's suitable for dancing. Maracas, bongos, and a groovy and complex bassline coupled with a melodic instrument make for a vibrant and fun party/dance song.", "data_idx": 5161, "number": 0, "label": "disco"} +{"file_name": "test_08673.png", "caption": "This is a Latin American dance song in the salsa style. We hear layers of upbeat, rhythmic percussion that's suitable for dancing. Maracas, bongos, and a groovy and complex bassline coupled with a melodic instrument make for a vibrant and fun party/dance song.", "data_idx": 5161, "number": 1, "label": "disco"} +{"file_name": "test_08674.png", "caption": "This is a Latin American dance song in the salsa style. We hear layers of upbeat, rhythmic percussion that's suitable for dancing. Maracas, bongos, and a groovy and complex bassline coupled with a melodic instrument make for a vibrant and fun party/dance song.", "data_idx": 5161, "number": 2, "label": "disco"} +{"file_name": "test_08675.png", "caption": "This is a Latin American dance song in the salsa style. We hear layers of upbeat, rhythmic percussion that's suitable for dancing. Maracas, bongos, and a groovy and complex bassline coupled with a melodic instrument make for a vibrant and fun party/dance song.", "data_idx": 5161, "number": 3, "label": "disco"} +{"file_name": "test_08676.png", "caption": "This audio contains a drum playing with a lot of toms. A distorted e-guitar is playing a solo melody. In the background panned to the right side of the speakers you can hear a keyboard playing minor chords in the higher mid-range. This song may be playing while sitting in your room dancing for yourself.", "data_idx": 5162, "number": 0, "label": "disco"} +{"file_name": "test_08677.png", "caption": "This audio contains a drum playing with a lot of toms. A distorted e-guitar is playing a solo melody. In the background panned to the right side of the speakers you can hear a keyboard playing minor chords in the higher mid-range. This song may be playing while sitting in your room dancing for yourself.", "data_idx": 5162, "number": 1, "label": "disco"} +{"file_name": "test_08678.png", "caption": "This audio contains a drum playing with a lot of toms. A distorted e-guitar is playing a solo melody. In the background panned to the right side of the speakers you can hear a keyboard playing minor chords in the higher mid-range. This song may be playing while sitting in your room dancing for yourself.", "data_idx": 5162, "number": 2, "label": "disco"} +{"file_name": "test_08679.png", "caption": "This audio contains a drum playing with a lot of toms. A distorted e-guitar is playing a solo melody. In the background panned to the right side of the speakers you can hear a keyboard playing minor chords in the higher mid-range. This song may be playing while sitting in your room dancing for yourself.", "data_idx": 5162, "number": 3, "label": "disco"} +{"file_name": "test_08680.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. An overdriven guitar plays chords with licks in between lines. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a movie scene when the protagonist is walking into a hotel prior to a fight scene.", "data_idx": 5165, "number": 0, "label": "blues"} +{"file_name": "test_08681.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. An overdriven guitar plays chords with licks in between lines. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a movie scene when the protagonist is walking into a hotel prior to a fight scene.", "data_idx": 5165, "number": 1, "label": "blues"} +{"file_name": "test_08682.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. An overdriven guitar plays chords with licks in between lines. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a movie scene when the protagonist is walking into a hotel prior to a fight scene.", "data_idx": 5165, "number": 2, "label": "blues"} +{"file_name": "test_08683.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. An overdriven guitar plays chords with licks in between lines. The bass plays the root notes of the chords. The mood of this song is happy. This song can be played in a movie scene when the protagonist is walking into a hotel prior to a fight scene.", "data_idx": 5165, "number": 3, "label": "blues"} +{"file_name": "test_08684.png", "caption": "This slow jazz song features a sliding melody played on the trombone. The accordion plays chords. The piano plays a repetitive lick in the background on the high registers. The contrabass plays the root notes of the chords and also plays percussion by striking the body of the instrument. After one bar, the instruments pause for two counts. After that, the accordion resumes playing. There are no voices in this song. This is an instrumental song. This song is seductive. This song can be played in a movie scene where a man is trying to seduce a woman at a bar.", "data_idx": 5166, "number": 0, "label": "classical"} +{"file_name": "test_08685.png", "caption": "This slow jazz song features a sliding melody played on the trombone. The accordion plays chords. The piano plays a repetitive lick in the background on the high registers. The contrabass plays the root notes of the chords and also plays percussion by striking the body of the instrument. After one bar, the instruments pause for two counts. After that, the accordion resumes playing. There are no voices in this song. This is an instrumental song. This song is seductive. This song can be played in a movie scene where a man is trying to seduce a woman at a bar.", "data_idx": 5166, "number": 1, "label": "classical"} +{"file_name": "test_08686.png", "caption": "This slow jazz song features a sliding melody played on the trombone. The accordion plays chords. The piano plays a repetitive lick in the background on the high registers. The contrabass plays the root notes of the chords and also plays percussion by striking the body of the instrument. After one bar, the instruments pause for two counts. After that, the accordion resumes playing. There are no voices in this song. This is an instrumental song. This song is seductive. This song can be played in a movie scene where a man is trying to seduce a woman at a bar.", "data_idx": 5166, "number": 2, "label": "classical"} +{"file_name": "test_08687.png", "caption": "This slow jazz song features a sliding melody played on the trombone. The accordion plays chords. The piano plays a repetitive lick in the background on the high registers. The contrabass plays the root notes of the chords and also plays percussion by striking the body of the instrument. After one bar, the instruments pause for two counts. After that, the accordion resumes playing. There are no voices in this song. This is an instrumental song. This song is seductive. This song can be played in a movie scene where a man is trying to seduce a woman at a bar.", "data_idx": 5166, "number": 3, "label": "classical"} +{"file_name": "test_08688.png", "caption": "This instrumental song features a tuba and a clarinet. The tuba plays the bass part of the song. The clarinet plays the high notes. This song does not have any voices. There is no percussion in this song. This song can be played in a comedy movie.", "data_idx": 5168, "number": 0, "label": "classical"} +{"file_name": "test_08689.png", "caption": "This instrumental song features a tuba and a clarinet. The tuba plays the bass part of the song. The clarinet plays the high notes. This song does not have any voices. There is no percussion in this song. This song can be played in a comedy movie.", "data_idx": 5168, "number": 1, "label": "classical"} +{"file_name": "test_08690.png", "caption": "This instrumental song features a tuba and a clarinet. The tuba plays the bass part of the song. The clarinet plays the high notes. This song does not have any voices. There is no percussion in this song. This song can be played in a comedy movie.", "data_idx": 5168, "number": 2, "label": "classical"} +{"file_name": "test_08691.png", "caption": "This instrumental song features a tuba and a clarinet. The tuba plays the bass part of the song. The clarinet plays the high notes. This song does not have any voices. There is no percussion in this song. This song can be played in a comedy movie.", "data_idx": 5168, "number": 3, "label": "classical"} +{"file_name": "test_08692.png", "caption": "This is an instrument review recording. There is a piano playing a sentimental tune while a male voice is narrating his experience with the instrument. From the parts where the voice is absent, there are tunes with a movie music feel to them. These lines could be sampled and added to the soundtrack of a movie.", "data_idx": 5169, "number": 0, "label": "country"} +{"file_name": "test_08693.png", "caption": "This is an instrument review recording. There is a piano playing a sentimental tune while a male voice is narrating his experience with the instrument. From the parts where the voice is absent, there are tunes with a movie music feel to them. These lines could be sampled and added to the soundtrack of a movie.", "data_idx": 5169, "number": 1, "label": "country"} +{"file_name": "test_08694.png", "caption": "This is an instrument review recording. There is a piano playing a sentimental tune while a male voice is narrating his experience with the instrument. From the parts where the voice is absent, there are tunes with a movie music feel to them. These lines could be sampled and added to the soundtrack of a movie.", "data_idx": 5169, "number": 2, "label": "country"} +{"file_name": "test_08695.png", "caption": "This is an instrument review recording. There is a piano playing a sentimental tune while a male voice is narrating his experience with the instrument. From the parts where the voice is absent, there are tunes with a movie music feel to them. These lines could be sampled and added to the soundtrack of a movie.", "data_idx": 5169, "number": 3, "label": "country"} +{"file_name": "test_08696.png", "caption": "This song features an electric guitar playing arpeggiated chords. There are open strings being played in the arpeggios. A chorus effect is added to the guitar sound. At the end of the song, one guitar chord is played. There are no voices in this song. This is an instrumental song. There are no other instruments in this song.", "data_idx": 5171, "number": 0, "label": "classical"} +{"file_name": "test_08697.png", "caption": "This song features an electric guitar playing arpeggiated chords. There are open strings being played in the arpeggios. A chorus effect is added to the guitar sound. At the end of the song, one guitar chord is played. There are no voices in this song. This is an instrumental song. There are no other instruments in this song.", "data_idx": 5171, "number": 1, "label": "classical"} +{"file_name": "test_08698.png", "caption": "This song features an electric guitar playing arpeggiated chords. There are open strings being played in the arpeggios. A chorus effect is added to the guitar sound. At the end of the song, one guitar chord is played. There are no voices in this song. This is an instrumental song. There are no other instruments in this song.", "data_idx": 5171, "number": 2, "label": "classical"} +{"file_name": "test_08699.png", "caption": "This song features an electric guitar playing arpeggiated chords. There are open strings being played in the arpeggios. A chorus effect is added to the guitar sound. At the end of the song, one guitar chord is played. There are no voices in this song. This is an instrumental song. There are no other instruments in this song.", "data_idx": 5171, "number": 3, "label": "classical"} +{"file_name": "test_08700.png", "caption": "This song is a male voice beatboxing with a child singing an upbeat, catchy vocal riff in a foreign language . The tempo is fast with an upbeat rhythm. The song is energetic, engaging and groovy.", "data_idx": 5174, "number": 0, "label": "disco"} +{"file_name": "test_08701.png", "caption": "This song is a male voice beatboxing with a child singing an upbeat, catchy vocal riff in a foreign language . The tempo is fast with an upbeat rhythm. The song is energetic, engaging and groovy.", "data_idx": 5174, "number": 1, "label": "disco"} +{"file_name": "test_08702.png", "caption": "The low quality recording features a flat male lead vocal, alongside harmonizing background vocals, singing over, staccato background vocals, groovy bass, wooden percussion, shimmering shakers and \"4 on the floor\" kick pattern. At the very end of the loop, there is a dark arpeggiated bell melody. Overall, it sounds happy and fun.", "data_idx": 5176, "number": 0, "label": "hiphop"} +{"file_name": "test_08703.png", "caption": "The low quality recording features a flat male lead vocal, alongside harmonizing background vocals, singing over, staccato background vocals, groovy bass, wooden percussion, shimmering shakers and \"4 on the floor\" kick pattern. At the very end of the loop, there is a dark arpeggiated bell melody. Overall, it sounds happy and fun.", "data_idx": 5176, "number": 1, "label": "hiphop"} +{"file_name": "test_08704.png", "caption": "The low quality recording features a ceramic bowl tone getting progressively louder, while there are some metallic ball impacts in the background. The recording is a bit noisy.", "data_idx": 5178, "number": 0, "label": "classical"} +{"file_name": "test_08705.png", "caption": "The low quality recording features a ceramic bowl tone getting progressively louder, while there are some metallic ball impacts in the background. The recording is a bit noisy.", "data_idx": 5178, "number": 1, "label": "classical"} +{"file_name": "test_08706.png", "caption": "The low quality recording features a ceramic bowl tone getting progressively louder, while there are some metallic ball impacts in the background. The recording is a bit noisy.", "data_idx": 5178, "number": 2, "label": "classical"} +{"file_name": "test_08707.png", "caption": "The low quality recording features a ceramic bowl tone getting progressively louder, while there are some metallic ball impacts in the background. The recording is a bit noisy.", "data_idx": 5178, "number": 3, "label": "classical"} +{"file_name": "test_08708.png", "caption": "This clip features a guitar song. An overdriven guitar is struck at the beginning. This is followed by an electric guitar strumming two chords once each. The chords are strummed with a light overdrive sound. There are no other instruments in this song. A male voice talks in a narrative tone at the end of the segment.", "data_idx": 5179, "number": 0, "label": "hiphop"} +{"file_name": "test_08709.png", "caption": "This clip features a guitar song. An overdriven guitar is struck at the beginning. This is followed by an electric guitar strumming two chords once each. The chords are strummed with a light overdrive sound. There are no other instruments in this song. A male voice talks in a narrative tone at the end of the segment.", "data_idx": 5179, "number": 1, "label": "hiphop"} +{"file_name": "test_08710.png", "caption": "This audio contains a lot of percussion such as shakers panned to both sides of the speakers. An organ is playing a melody panned to the left side and a digital trumpet/guitar sound is playing a melody panned to the right side of the speakers. A soft percussion sound is creating a bassline while male voices are singing as a choir and a main singer in the foreground. This song may be playing as a live performance in an african country.", "data_idx": 5180, "number": 0, "label": "reggae"} +{"file_name": "test_08711.png", "caption": "This audio contains a lot of percussion such as shakers panned to both sides of the speakers. An organ is playing a melody panned to the left side and a digital trumpet/guitar sound is playing a melody panned to the right side of the speakers. A soft percussion sound is creating a bassline while male voices are singing as a choir and a main singer in the foreground. This song may be playing as a live performance in an african country.", "data_idx": 5180, "number": 1, "label": "reggae"} +{"file_name": "test_08712.png", "caption": "This audio contains a lot of percussion such as shakers panned to both sides of the speakers. An organ is playing a melody panned to the left side and a digital trumpet/guitar sound is playing a melody panned to the right side of the speakers. A soft percussion sound is creating a bassline while male voices are singing as a choir and a main singer in the foreground. This song may be playing as a live performance in an african country.", "data_idx": 5180, "number": 2, "label": "reggae"} +{"file_name": "test_08713.png", "caption": "This audio contains a lot of percussion such as shakers panned to both sides of the speakers. An organ is playing a melody panned to the left side and a digital trumpet/guitar sound is playing a melody panned to the right side of the speakers. A soft percussion sound is creating a bassline while male voices are singing as a choir and a main singer in the foreground. This song may be playing as a live performance in an african country.", "data_idx": 5180, "number": 3, "label": "reggae"} +{"file_name": "test_08714.png", "caption": "The low quality recording features a mellow female vocal narrating over a wide soft dark synth pad. There is a constant buzzy noise in the background. It sounds suspenseful, calming and hypnotic.", "data_idx": 5182, "number": 0, "label": "rock"} +{"file_name": "test_08715.png", "caption": "The low quality recording features a mellow female vocal narrating over a wide soft dark synth pad. There is a constant buzzy noise in the background. It sounds suspenseful, calming and hypnotic.", "data_idx": 5182, "number": 1, "label": "rock"} +{"file_name": "test_08716.png", "caption": "The low quality recording features a mellow female vocal narrating over a wide soft dark synth pad. There is a constant buzzy noise in the background. It sounds suspenseful, calming and hypnotic.", "data_idx": 5182, "number": 2, "label": "rock"} +{"file_name": "test_08717.png", "caption": "The low quality recording features a mellow female vocal narrating over a wide soft dark synth pad. There is a constant buzzy noise in the background. It sounds suspenseful, calming and hypnotic.", "data_idx": 5182, "number": 3, "label": "rock"} +{"file_name": "test_08718.png", "caption": "This is a Somali pop music piece. There are multiple layers of the keyboard providing the melodic structure. The rhythmic structure is provided by an electronic drum beat. The atmosphere is energetic and danceable. This piece could be used in the soundtrack of a Somali sit-com as the opening theme.", "data_idx": 5183, "number": 0, "label": "reggae"} +{"file_name": "test_08719.png", "caption": "This is a Somali pop music piece. There are multiple layers of the keyboard providing the melodic structure. The rhythmic structure is provided by an electronic drum beat. The atmosphere is energetic and danceable. This piece could be used in the soundtrack of a Somali sit-com as the opening theme.", "data_idx": 5183, "number": 1, "label": "reggae"} +{"file_name": "test_08720.png", "caption": "This is a Somali pop music piece. There are multiple layers of the keyboard providing the melodic structure. The rhythmic structure is provided by an electronic drum beat. The atmosphere is energetic and danceable. This piece could be used in the soundtrack of a Somali sit-com as the opening theme.", "data_idx": 5183, "number": 2, "label": "reggae"} +{"file_name": "test_08721.png", "caption": "This is a Somali pop music piece. There are multiple layers of the keyboard providing the melodic structure. The rhythmic structure is provided by an electronic drum beat. The atmosphere is energetic and danceable. This piece could be used in the soundtrack of a Somali sit-com as the opening theme.", "data_idx": 5183, "number": 3, "label": "reggae"} +{"file_name": "test_08722.png", "caption": "This audio contains a string section playing long notes in the lower register and some strings are playing a dissonant melody that is creating more tension. This composition may be playing in a horror movie-scene.", "data_idx": 5184, "number": 0, "label": "jazz"} +{"file_name": "test_08723.png", "caption": "This audio contains a string section playing long notes in the lower register and some strings are playing a dissonant melody that is creating more tension. This composition may be playing in a horror movie-scene.", "data_idx": 5184, "number": 1, "label": "jazz"} +{"file_name": "test_08724.png", "caption": "This audio contains a string section playing long notes in the lower register and some strings are playing a dissonant melody that is creating more tension. This composition may be playing in a horror movie-scene.", "data_idx": 5184, "number": 2, "label": "jazz"} +{"file_name": "test_08725.png", "caption": "This audio contains a string section playing long notes in the lower register and some strings are playing a dissonant melody that is creating more tension. This composition may be playing in a horror movie-scene.", "data_idx": 5184, "number": 3, "label": "jazz"} +{"file_name": "test_08726.png", "caption": "This is a Christian gospel music. There is a male vocalist singing melodically. The melody is being played by the piano with a strings section accompaniment. The atmosphere is spiritual and sentimental. This piece could be playing in the background of Christian social media content.", "data_idx": 5186, "number": 0, "label": "country"} +{"file_name": "test_08727.png", "caption": "This is a Christian gospel music. There is a male vocalist singing melodically. The melody is being played by the piano with a strings section accompaniment. The atmosphere is spiritual and sentimental. This piece could be playing in the background of Christian social media content.", "data_idx": 5186, "number": 1, "label": "country"} +{"file_name": "test_08728.png", "caption": "This is a Christian gospel music. There is a male vocalist singing melodically. The melody is being played by the piano with a strings section accompaniment. The atmosphere is spiritual and sentimental. This piece could be playing in the background of Christian social media content.", "data_idx": 5186, "number": 2, "label": "country"} +{"file_name": "test_08729.png", "caption": "This is a Christian gospel music. There is a male vocalist singing melodically. The melody is being played by the piano with a strings section accompaniment. The atmosphere is spiritual and sentimental. This piece could be playing in the background of Christian social media content.", "data_idx": 5186, "number": 3, "label": "country"} +{"file_name": "test_08730.png", "caption": "This clip features a rhythm played on a tambourine. It starts off with a galloping rhythm which is sped up. At the end, the tambourine is not struck and only the jingles are allowed to ring. There are no other instruments in this song. There are no voices in this song. This song can be played in a folk gathering.", "data_idx": 5188, "number": 0, "label": "hiphop"} +{"file_name": "test_08731.png", "caption": "This clip features a rhythm played on a tambourine. It starts off with a galloping rhythm which is sped up. At the end, the tambourine is not struck and only the jingles are allowed to ring. There are no other instruments in this song. There are no voices in this song. This song can be played in a folk gathering.", "data_idx": 5188, "number": 1, "label": "hiphop"} +{"file_name": "test_08732.png", "caption": "This clip features a rhythm played on a tambourine. It starts off with a galloping rhythm which is sped up. At the end, the tambourine is not struck and only the jingles are allowed to ring. There are no other instruments in this song. There are no voices in this song. This song can be played in a folk gathering.", "data_idx": 5188, "number": 2, "label": "hiphop"} +{"file_name": "test_08733.png", "caption": "This clip features a rhythm played on a tambourine. It starts off with a galloping rhythm which is sped up. At the end, the tambourine is not struck and only the jingles are allowed to ring. There are no other instruments in this song. There are no voices in this song. This song can be played in a folk gathering.", "data_idx": 5188, "number": 3, "label": "hiphop"} +{"file_name": "test_08734.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by a tabla and dhol playing the percussion. A keyboard plays fills after the voice pauses. The other instruments are not audible due to the low audio quality. This song can be played at a Hindu religious gathering.", "data_idx": 5190, "number": 0, "label": "hiphop"} +{"file_name": "test_08735.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by a tabla and dhol playing the percussion. A keyboard plays fills after the voice pauses. The other instruments are not audible due to the low audio quality. This song can be played at a Hindu religious gathering.", "data_idx": 5190, "number": 1, "label": "hiphop"} +{"file_name": "test_08736.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by a tabla and dhol playing the percussion. A keyboard plays fills after the voice pauses. The other instruments are not audible due to the low audio quality. This song can be played at a Hindu religious gathering.", "data_idx": 5190, "number": 2, "label": "hiphop"} +{"file_name": "test_08737.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by a tabla and dhol playing the percussion. A keyboard plays fills after the voice pauses. The other instruments are not audible due to the low audio quality. This song can be played at a Hindu religious gathering.", "data_idx": 5190, "number": 3, "label": "hiphop"} +{"file_name": "test_08738.png", "caption": "The low quality recording features a live performance that consists of a theremin solo melody played over arpeggiated piano melody. It sounds sad, emotional and passionate, even though the recording is noisy and in mono.", "data_idx": 5191, "number": 0, "label": "classical"} +{"file_name": "test_08739.png", "caption": "The low quality recording features a live performance that consists of a theremin solo melody played over arpeggiated piano melody. It sounds sad, emotional and passionate, even though the recording is noisy and in mono.", "data_idx": 5191, "number": 1, "label": "classical"} +{"file_name": "test_08740.png", "caption": "The low quality recording features a live performance that consists of a theremin solo melody played over arpeggiated piano melody. It sounds sad, emotional and passionate, even though the recording is noisy and in mono.", "data_idx": 5191, "number": 2, "label": "classical"} +{"file_name": "test_08741.png", "caption": "The low quality recording features a live performance that consists of a theremin solo melody played over arpeggiated piano melody. It sounds sad, emotional and passionate, even though the recording is noisy and in mono.", "data_idx": 5191, "number": 3, "label": "classical"} +{"file_name": "test_08742.png", "caption": "The low quality recording features a bagpipe solo melody with some crowd noises in the background. The recording is noisy.", "data_idx": 5192, "number": 0, "label": "classical"} +{"file_name": "test_08743.png", "caption": "The low quality recording features a bagpipe solo melody with some crowd noises in the background. The recording is noisy.", "data_idx": 5192, "number": 1, "label": "classical"} +{"file_name": "test_08744.png", "caption": "The low quality recording features a bagpipe solo melody with some crowd noises in the background. The recording is noisy.", "data_idx": 5192, "number": 2, "label": "classical"} +{"file_name": "test_08745.png", "caption": "The low quality recording features a bagpipe solo melody with some crowd noises in the background. The recording is noisy.", "data_idx": 5192, "number": 3, "label": "classical"} diff --git a/data/test/metadata_0021.jsonl b/data/test/metadata_0021.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..803a7260e952b80d8b330d87e733bf82a055232d --- /dev/null +++ b/data/test/metadata_0021.jsonl @@ -0,0 +1,572 @@ +{"file_name": "test_08746.png", "caption": "The Recording features a live performance of a classical song played on harpsichord. It is emotional, passionate and a bit spooky, as it sounds like a vampire theme song.", "data_idx": 5201, "number": 0, "label": "jazz"} +{"file_name": "test_08747.png", "caption": "The Recording features a live performance of a classical song played on harpsichord. It is emotional, passionate and a bit spooky, as it sounds like a vampire theme song.", "data_idx": 5201, "number": 1, "label": "jazz"} +{"file_name": "test_08748.png", "caption": "The Recording features a live performance of a classical song played on harpsichord. It is emotional, passionate and a bit spooky, as it sounds like a vampire theme song.", "data_idx": 5201, "number": 2, "label": "jazz"} +{"file_name": "test_08749.png", "caption": "The Recording features a live performance of a classical song played on harpsichord. It is emotional, passionate and a bit spooky, as it sounds like a vampire theme song.", "data_idx": 5201, "number": 3, "label": "jazz"} +{"file_name": "test_08750.png", "caption": "Here we have a compilation of songs led by accordions. The first clip is more of a folk ballad with a cheery and uplifting tone to it, the second clip is an emotional ballad.", "data_idx": 5204, "number": 0, "label": "rock"} +{"file_name": "test_08751.png", "caption": "Here we have a compilation of songs led by accordions. The first clip is more of a folk ballad with a cheery and uplifting tone to it, the second clip is an emotional ballad.", "data_idx": 5204, "number": 1, "label": "rock"} +{"file_name": "test_08752.png", "caption": "Here we have a compilation of songs led by accordions. The first clip is more of a folk ballad with a cheery and uplifting tone to it, the second clip is an emotional ballad.", "data_idx": 5204, "number": 2, "label": "rock"} +{"file_name": "test_08753.png", "caption": "Here we have a compilation of songs led by accordions. The first clip is more of a folk ballad with a cheery and uplifting tone to it, the second clip is an emotional ballad.", "data_idx": 5204, "number": 3, "label": "rock"} +{"file_name": "test_08754.png", "caption": "The low quality recording features a live performance of a folk song that consists of a saxophone solo melody, accordion melody and acoustic rhythm guitar. It sounds passionate and soulful. The recording is mono and noisy.", "data_idx": 5208, "number": 0, "label": "classical"} +{"file_name": "test_08755.png", "caption": "The low quality recording features a live performance of a folk song that consists of a saxophone solo melody, accordion melody and acoustic rhythm guitar. It sounds passionate and soulful. The recording is mono and noisy.", "data_idx": 5208, "number": 1, "label": "classical"} +{"file_name": "test_08756.png", "caption": "The low quality recording features a live performance of a folk song that consists of a saxophone solo melody, accordion melody and acoustic rhythm guitar. It sounds passionate and soulful. The recording is mono and noisy.", "data_idx": 5208, "number": 2, "label": "classical"} +{"file_name": "test_08757.png", "caption": "The low quality recording features a live performance of a folk song that consists of a saxophone solo melody, accordion melody and acoustic rhythm guitar. It sounds passionate and soulful. The recording is mono and noisy.", "data_idx": 5208, "number": 3, "label": "classical"} +{"file_name": "test_08758.png", "caption": "A male vocalist sings this catchy Hip-Hop. The tempo is medium with an acoustic guitar riff, boomy bass drops, punchy drumming, digital beats and synthesiser arrangement with enthusiastic vocal backup. The song is youthful, buoyant, punchy, groovy, pulsating with a dance groove. This song is Contemporary Hip-Hop.", "data_idx": 5209, "number": 0, "label": "hiphop"} +{"file_name": "test_08759.png", "caption": "A male vocalist sings this catchy Hip-Hop. The tempo is medium with an acoustic guitar riff, boomy bass drops, punchy drumming, digital beats and synthesiser arrangement with enthusiastic vocal backup. The song is youthful, buoyant, punchy, groovy, pulsating with a dance groove. This song is Contemporary Hip-Hop.", "data_idx": 5209, "number": 1, "label": "hiphop"} +{"file_name": "test_08760.png", "caption": "A male vocalist sings this catchy Hip-Hop. The tempo is medium with an acoustic guitar riff, boomy bass drops, punchy drumming, digital beats and synthesiser arrangement with enthusiastic vocal backup. The song is youthful, buoyant, punchy, groovy, pulsating with a dance groove. This song is Contemporary Hip-Hop.", "data_idx": 5209, "number": 2, "label": "hiphop"} +{"file_name": "test_08761.png", "caption": "A male vocalist sings this catchy Hip-Hop. The tempo is medium with an acoustic guitar riff, boomy bass drops, punchy drumming, digital beats and synthesiser arrangement with enthusiastic vocal backup. The song is youthful, buoyant, punchy, groovy, pulsating with a dance groove. This song is Contemporary Hip-Hop.", "data_idx": 5209, "number": 3, "label": "hiphop"} +{"file_name": "test_08762.png", "caption": "This is a middle eastern song with a rapid and intricate accordion melody as the main basis. The song would be suitable as a backing track for a belly dancer. There's a traditional percussion instrument in the background.", "data_idx": 5211, "number": 0, "label": "disco"} +{"file_name": "test_08763.png", "caption": "This is a middle eastern song with a rapid and intricate accordion melody as the main basis. The song would be suitable as a backing track for a belly dancer. There's a traditional percussion instrument in the background.", "data_idx": 5211, "number": 1, "label": "disco"} +{"file_name": "test_08764.png", "caption": "This is a middle eastern song with a rapid and intricate accordion melody as the main basis. The song would be suitable as a backing track for a belly dancer. There's a traditional percussion instrument in the background.", "data_idx": 5211, "number": 2, "label": "disco"} +{"file_name": "test_08765.png", "caption": "This is a middle eastern song with a rapid and intricate accordion melody as the main basis. The song would be suitable as a backing track for a belly dancer. There's a traditional percussion instrument in the background.", "data_idx": 5211, "number": 3, "label": "disco"} +{"file_name": "test_08766.png", "caption": "The recording is of tubular bells being played live. The melody is descending and the melodic tone of the tubular bells is preceded by a slight transient.", "data_idx": 5213, "number": 0, "label": "classical"} +{"file_name": "test_08767.png", "caption": "The recording is of tubular bells being played live. The melody is descending and the melodic tone of the tubular bells is preceded by a slight transient.", "data_idx": 5213, "number": 1, "label": "classical"} +{"file_name": "test_08768.png", "caption": "The recording is of tubular bells being played live. The melody is descending and the melodic tone of the tubular bells is preceded by a slight transient.", "data_idx": 5213, "number": 2, "label": "classical"} +{"file_name": "test_08769.png", "caption": "The recording is of tubular bells being played live. The melody is descending and the melodic tone of the tubular bells is preceded by a slight transient.", "data_idx": 5213, "number": 3, "label": "classical"} +{"file_name": "test_08770.png", "caption": "This music is instrumental. The tempo is medium fast with an incessant droning of the didgeridoo, sound of a timer ticking and male vocals like a chant. The music is eerie, creepy, spooky, sinister, scary, hypnotic, trance like and fear inducing with resounding effect.", "data_idx": 5214, "number": 0, "label": "classical"} +{"file_name": "test_08771.png", "caption": "This music is instrumental. The tempo is medium fast with an incessant droning of the didgeridoo, sound of a timer ticking and male vocals like a chant. The music is eerie, creepy, spooky, sinister, scary, hypnotic, trance like and fear inducing with resounding effect.", "data_idx": 5214, "number": 1, "label": "classical"} +{"file_name": "test_08772.png", "caption": "This music is instrumental. The tempo is medium fast with an incessant droning of the didgeridoo, sound of a timer ticking and male vocals like a chant. The music is eerie, creepy, spooky, sinister, scary, hypnotic, trance like and fear inducing with resounding effect.", "data_idx": 5214, "number": 2, "label": "classical"} +{"file_name": "test_08773.png", "caption": "This music is instrumental. The tempo is medium fast with an incessant droning of the didgeridoo, sound of a timer ticking and male vocals like a chant. The music is eerie, creepy, spooky, sinister, scary, hypnotic, trance like and fear inducing with resounding effect.", "data_idx": 5214, "number": 3, "label": "classical"} +{"file_name": "test_08774.png", "caption": "A male and child sing in animated vocals. The song is medium tempo with western classical music influences, flute harmony, keyboard accompaniment, standing bass line and piano accompaniment. The song is positive and cheerful with an onus on children\u2019s education.", "data_idx": 5216, "number": 0, "label": "country"} +{"file_name": "test_08775.png", "caption": "A male and child sing in animated vocals. The song is medium tempo with western classical music influences, flute harmony, keyboard accompaniment, standing bass line and piano accompaniment. The song is positive and cheerful with an onus on children\u2019s education.", "data_idx": 5216, "number": 1, "label": "country"} +{"file_name": "test_08776.png", "caption": "A male and child sing in animated vocals. The song is medium tempo with western classical music influences, flute harmony, keyboard accompaniment, standing bass line and piano accompaniment. The song is positive and cheerful with an onus on children\u2019s education.", "data_idx": 5216, "number": 2, "label": "country"} +{"file_name": "test_08777.png", "caption": "A male and child sing in animated vocals. The song is medium tempo with western classical music influences, flute harmony, keyboard accompaniment, standing bass line and piano accompaniment. The song is positive and cheerful with an onus on children\u2019s education.", "data_idx": 5216, "number": 3, "label": "country"} +{"file_name": "test_08778.png", "caption": "virtuosic solo ukelele playing a chord melody in free time.", "data_idx": 5217, "number": 0, "label": "rock"} +{"file_name": "test_08779.png", "caption": "virtuosic solo ukelele playing a chord melody in free time.", "data_idx": 5217, "number": 1, "label": "rock"} +{"file_name": "test_08780.png", "caption": "virtuosic solo ukelele playing a chord melody in free time.", "data_idx": 5217, "number": 2, "label": "rock"} +{"file_name": "test_08781.png", "caption": "virtuosic solo ukelele playing a chord melody in free time.", "data_idx": 5217, "number": 3, "label": "rock"} +{"file_name": "test_08782.png", "caption": "This is an R&B/soul music piece. There is a female vocal singing at a high pitch joined by a male vocal singing at a medium pitch and a female choir backing. The beat has a repeating electric guitar tune. There is a groovy bass line. The rhythm is provided by an electronic drum beat. The atmosphere is emotional and grandiose. This piece could be playing in the background at a memorial event.", "data_idx": 5220, "number": 0, "label": "disco"} +{"file_name": "test_08783.png", "caption": "This is an R&B/soul music piece. There is a female vocal singing at a high pitch joined by a male vocal singing at a medium pitch and a female choir backing. The beat has a repeating electric guitar tune. There is a groovy bass line. The rhythm is provided by an electronic drum beat. The atmosphere is emotional and grandiose. This piece could be playing in the background at a memorial event.", "data_idx": 5220, "number": 1, "label": "disco"} +{"file_name": "test_08784.png", "caption": "This is an R&B/soul music piece. There is a female vocal singing at a high pitch joined by a male vocal singing at a medium pitch and a female choir backing. The beat has a repeating electric guitar tune. There is a groovy bass line. The rhythm is provided by an electronic drum beat. The atmosphere is emotional and grandiose. This piece could be playing in the background at a memorial event.", "data_idx": 5220, "number": 2, "label": "disco"} +{"file_name": "test_08785.png", "caption": "This is an R&B/soul music piece. There is a female vocal singing at a high pitch joined by a male vocal singing at a medium pitch and a female choir backing. The beat has a repeating electric guitar tune. There is a groovy bass line. The rhythm is provided by an electronic drum beat. The atmosphere is emotional and grandiose. This piece could be playing in the background at a memorial event.", "data_idx": 5220, "number": 3, "label": "disco"} +{"file_name": "test_08786.png", "caption": "This goth metal song features a male voice singing the main melody. The voice is deep. Toward the end, there are other male voices singing vocables. This is accompanied by heavy percussion using a five-beat common time pattern played on floor toms with a shuffle note each note creating a triplet feel. The distortion guitars play heavy descending chord riffs using palm muting technique. The bass guitar plays the root notes of the chords. At the background, there is an high pitched sound played on a synth that gives this song an eerie feel. This song can be played at the end credits of a horror movie.", "data_idx": 5221, "number": 0, "label": "metal"} +{"file_name": "test_08787.png", "caption": "This goth metal song features a male voice singing the main melody. The voice is deep. Toward the end, there are other male voices singing vocables. This is accompanied by heavy percussion using a five-beat common time pattern played on floor toms with a shuffle note each note creating a triplet feel. The distortion guitars play heavy descending chord riffs using palm muting technique. The bass guitar plays the root notes of the chords. At the background, there is an high pitched sound played on a synth that gives this song an eerie feel. This song can be played at the end credits of a horror movie.", "data_idx": 5221, "number": 1, "label": "metal"} +{"file_name": "test_08788.png", "caption": "This goth metal song features a male voice singing the main melody. The voice is deep. Toward the end, there are other male voices singing vocables. This is accompanied by heavy percussion using a five-beat common time pattern played on floor toms with a shuffle note each note creating a triplet feel. The distortion guitars play heavy descending chord riffs using palm muting technique. The bass guitar plays the root notes of the chords. At the background, there is an high pitched sound played on a synth that gives this song an eerie feel. This song can be played at the end credits of a horror movie.", "data_idx": 5221, "number": 2, "label": "metal"} +{"file_name": "test_08789.png", "caption": "This goth metal song features a male voice singing the main melody. The voice is deep. Toward the end, there are other male voices singing vocables. This is accompanied by heavy percussion using a five-beat common time pattern played on floor toms with a shuffle note each note creating a triplet feel. The distortion guitars play heavy descending chord riffs using palm muting technique. The bass guitar plays the root notes of the chords. At the background, there is an high pitched sound played on a synth that gives this song an eerie feel. This song can be played at the end credits of a horror movie.", "data_idx": 5221, "number": 3, "label": "metal"} +{"file_name": "test_08790.png", "caption": "This song features an electric guitar. The guitar starts off with a descending pentatonic run. A descending slide is played followed by a moderate tempo blues lick. There are no other instruments in this song. There is no voice in this song. This is an instrumental song with a blues mood. This song can be played as an instructional blues song.", "data_idx": 5222, "number": 0, "label": "jazz"} +{"file_name": "test_08791.png", "caption": "This song features an electric guitar. The guitar starts off with a descending pentatonic run. A descending slide is played followed by a moderate tempo blues lick. There are no other instruments in this song. There is no voice in this song. This is an instrumental song with a blues mood. This song can be played as an instructional blues song.", "data_idx": 5222, "number": 1, "label": "jazz"} +{"file_name": "test_08792.png", "caption": "This song features an electric guitar. The guitar starts off with a descending pentatonic run. A descending slide is played followed by a moderate tempo blues lick. There are no other instruments in this song. There is no voice in this song. This is an instrumental song with a blues mood. This song can be played as an instructional blues song.", "data_idx": 5222, "number": 2, "label": "jazz"} +{"file_name": "test_08793.png", "caption": "This song features an electric guitar. The guitar starts off with a descending pentatonic run. A descending slide is played followed by a moderate tempo blues lick. There are no other instruments in this song. There is no voice in this song. This is an instrumental song with a blues mood. This song can be played as an instructional blues song.", "data_idx": 5222, "number": 3, "label": "jazz"} +{"file_name": "test_08794.png", "caption": "This song contains someone playing a melody with a flute in a higher register. The flute sounds offkey. An e-guitar is fingerpicking two chords. In the background you can hear percussive instruments and an e-bass. A male voice is talking/shouting sounding as if he wants to motivate the listener. This song may be playing live in a big bar or during an event in a latin.american country.", "data_idx": 5223, "number": 0, "label": "blues"} +{"file_name": "test_08795.png", "caption": "This song contains someone playing a melody with a flute in a higher register. The flute sounds offkey. An e-guitar is fingerpicking two chords. In the background you can hear percussive instruments and an e-bass. A male voice is talking/shouting sounding as if he wants to motivate the listener. This song may be playing live in a big bar or during an event in a latin.american country.", "data_idx": 5223, "number": 1, "label": "blues"} +{"file_name": "test_08796.png", "caption": "This song contains someone playing a melody with a flute in a higher register. The flute sounds offkey. An e-guitar is fingerpicking two chords. In the background you can hear percussive instruments and an e-bass. A male voice is talking/shouting sounding as if he wants to motivate the listener. This song may be playing live in a big bar or during an event in a latin.american country.", "data_idx": 5223, "number": 2, "label": "blues"} +{"file_name": "test_08797.png", "caption": "This song contains someone playing a melody with a flute in a higher register. The flute sounds offkey. An e-guitar is fingerpicking two chords. In the background you can hear percussive instruments and an e-bass. A male voice is talking/shouting sounding as if he wants to motivate the listener. This song may be playing live in a big bar or during an event in a latin.american country.", "data_idx": 5223, "number": 3, "label": "blues"} +{"file_name": "test_08798.png", "caption": "This is the recording of video game gameplay. Initially, sounds of footsteps on wood can be heard. Then, a childish voice can be heard wailing. Afterwards, a tune starts playing on a small keyboard and a xylophone. It sounds generic and circus-like. Sounds from this recording can be sampled for use in beat-making.", "data_idx": 5225, "number": 0, "label": "hiphop"} +{"file_name": "test_08799.png", "caption": "This is the recording of video game gameplay. Initially, sounds of footsteps on wood can be heard. Then, a childish voice can be heard wailing. Afterwards, a tune starts playing on a small keyboard and a xylophone. It sounds generic and circus-like. Sounds from this recording can be sampled for use in beat-making.", "data_idx": 5225, "number": 1, "label": "hiphop"} +{"file_name": "test_08800.png", "caption": "This is the recording of video game gameplay. Initially, sounds of footsteps on wood can be heard. Then, a childish voice can be heard wailing. Afterwards, a tune starts playing on a small keyboard and a xylophone. It sounds generic and circus-like. Sounds from this recording can be sampled for use in beat-making.", "data_idx": 5225, "number": 2, "label": "hiphop"} +{"file_name": "test_08801.png", "caption": "This is the recording of video game gameplay. Initially, sounds of footsteps on wood can be heard. Then, a childish voice can be heard wailing. Afterwards, a tune starts playing on a small keyboard and a xylophone. It sounds generic and circus-like. Sounds from this recording can be sampled for use in beat-making.", "data_idx": 5225, "number": 3, "label": "hiphop"} +{"file_name": "test_08802.png", "caption": "The low quality recording features synchronized wooden percussion. It is noisy, in mono and it sounds upbeat.", "data_idx": 5226, "number": 0, "label": "classical"} +{"file_name": "test_08803.png", "caption": "The low quality recording features synchronized wooden percussion. It is noisy, in mono and it sounds upbeat.", "data_idx": 5226, "number": 1, "label": "classical"} +{"file_name": "test_08804.png", "caption": "The low quality recording features synchronized wooden percussion. It is noisy, in mono and it sounds upbeat.", "data_idx": 5226, "number": 2, "label": "classical"} +{"file_name": "test_08805.png", "caption": "The low quality recording features synchronized wooden percussion. It is noisy, in mono and it sounds upbeat.", "data_idx": 5226, "number": 3, "label": "classical"} +{"file_name": "test_08806.png", "caption": "This is a live performance classical music piece played by a chamber orchestra. It is in the style of a tarantella, which is a genre of Italian folk music. The strings section is playing the melody with a cello as the lead. The atmosphere is lively and elegant. It could be used in the soundtrack of a movie especially during a scene involving a pursuit, a face-off or a duel.", "data_idx": 5227, "number": 0, "label": "classical"} +{"file_name": "test_08807.png", "caption": "This is a live performance classical music piece played by a chamber orchestra. It is in the style of a tarantella, which is a genre of Italian folk music. The strings section is playing the melody with a cello as the lead. The atmosphere is lively and elegant. It could be used in the soundtrack of a movie especially during a scene involving a pursuit, a face-off or a duel.", "data_idx": 5227, "number": 1, "label": "classical"} +{"file_name": "test_08808.png", "caption": "This is a live performance classical music piece played by a chamber orchestra. It is in the style of a tarantella, which is a genre of Italian folk music. The strings section is playing the melody with a cello as the lead. The atmosphere is lively and elegant. It could be used in the soundtrack of a movie especially during a scene involving a pursuit, a face-off or a duel.", "data_idx": 5227, "number": 2, "label": "classical"} +{"file_name": "test_08809.png", "caption": "This is a live performance classical music piece played by a chamber orchestra. It is in the style of a tarantella, which is a genre of Italian folk music. The strings section is playing the melody with a cello as the lead. The atmosphere is lively and elegant. It could be used in the soundtrack of a movie especially during a scene involving a pursuit, a face-off or a duel.", "data_idx": 5227, "number": 3, "label": "classical"} +{"file_name": "test_08810.png", "caption": "A chic 80's pop/R&B song that is an influence on the synthpop of today. Features a male vocalist singing in falsetto, doubled vocals and lush vocal harmonies, a driving beat, low toms, a sharp electronic clap, synth pads and a steady synth bassline.", "data_idx": 5228, "number": 0, "label": "hiphop"} +{"file_name": "test_08811.png", "caption": "A chic 80's pop/R&B song that is an influence on the synthpop of today. Features a male vocalist singing in falsetto, doubled vocals and lush vocal harmonies, a driving beat, low toms, a sharp electronic clap, synth pads and a steady synth bassline.", "data_idx": 5228, "number": 1, "label": "hiphop"} +{"file_name": "test_08812.png", "caption": "A chic 80's pop/R&B song that is an influence on the synthpop of today. Features a male vocalist singing in falsetto, doubled vocals and lush vocal harmonies, a driving beat, low toms, a sharp electronic clap, synth pads and a steady synth bassline.", "data_idx": 5228, "number": 2, "label": "hiphop"} +{"file_name": "test_08813.png", "caption": "A chic 80's pop/R&B song that is an influence on the synthpop of today. Features a male vocalist singing in falsetto, doubled vocals and lush vocal harmonies, a driving beat, low toms, a sharp electronic clap, synth pads and a steady synth bassline.", "data_idx": 5228, "number": 3, "label": "hiphop"} +{"file_name": "test_08814.png", "caption": "This song features a synth playing the main melody. The synth plays a heavenly voice with a pad like backing. There are no other instruments in this song. There is no voice in this song. The mood of this song is relaxing. This song can be played in a meditation center.", "data_idx": 5229, "number": 0, "label": "jazz"} +{"file_name": "test_08815.png", "caption": "This song features a synth playing the main melody. The synth plays a heavenly voice with a pad like backing. There are no other instruments in this song. There is no voice in this song. The mood of this song is relaxing. This song can be played in a meditation center.", "data_idx": 5229, "number": 1, "label": "jazz"} +{"file_name": "test_08816.png", "caption": "This song features a synth playing the main melody. The synth plays a heavenly voice with a pad like backing. There are no other instruments in this song. There is no voice in this song. The mood of this song is relaxing. This song can be played in a meditation center.", "data_idx": 5229, "number": 2, "label": "jazz"} +{"file_name": "test_08817.png", "caption": "This song features a synth playing the main melody. The synth plays a heavenly voice with a pad like backing. There are no other instruments in this song. There is no voice in this song. The mood of this song is relaxing. This song can be played in a meditation center.", "data_idx": 5229, "number": 3, "label": "jazz"} +{"file_name": "test_08818.png", "caption": "This audio contains a huge amount of people playing a melody on the bagpipes while others are playing a kick sound on every beat. This song may be playing live during a big public event.", "data_idx": 5230, "number": 0, "label": "metal"} +{"file_name": "test_08819.png", "caption": "This audio contains a huge amount of people playing a melody on the bagpipes while others are playing a kick sound on every beat. This song may be playing live during a big public event.", "data_idx": 5230, "number": 1, "label": "metal"} +{"file_name": "test_08820.png", "caption": "This audio contains a huge amount of people playing a melody on the bagpipes while others are playing a kick sound on every beat. This song may be playing live during a big public event.", "data_idx": 5230, "number": 2, "label": "metal"} +{"file_name": "test_08821.png", "caption": "This audio contains a huge amount of people playing a melody on the bagpipes while others are playing a kick sound on every beat. This song may be playing live during a big public event.", "data_idx": 5230, "number": 3, "label": "metal"} +{"file_name": "test_08822.png", "caption": "The low quality recording features a bagpipe melody, drum rolls and some man shouting sound. The recording is in mono and it is a bit noisy, as it was recorded outdoors.", "data_idx": 5232, "number": 0, "label": "rock"} +{"file_name": "test_08823.png", "caption": "The low quality recording features a bagpipe melody, drum rolls and some man shouting sound. The recording is in mono and it is a bit noisy, as it was recorded outdoors.", "data_idx": 5232, "number": 1, "label": "rock"} +{"file_name": "test_08824.png", "caption": "The low quality recording features a bagpipe melody, drum rolls and some man shouting sound. The recording is in mono and it is a bit noisy, as it was recorded outdoors.", "data_idx": 5232, "number": 2, "label": "rock"} +{"file_name": "test_08825.png", "caption": "The low quality recording features a bagpipe melody, drum rolls and some man shouting sound. The recording is in mono and it is a bit noisy, as it was recorded outdoors.", "data_idx": 5232, "number": 3, "label": "rock"} +{"file_name": "test_08826.png", "caption": "This song contains a minor chord composition on a acoustic piano. The drums is playing a slow groove with lot of pauses and a snapping snare sound. On top of that a male voice is singing in a higher pitch sounding sad. Male backing vocals are providing harmonie and support. This song may be playing with headphones during a breakup with a partner.", "data_idx": 5234, "number": 0, "label": "country"} +{"file_name": "test_08827.png", "caption": "This song contains a minor chord composition on a acoustic piano. The drums is playing a slow groove with lot of pauses and a snapping snare sound. On top of that a male voice is singing in a higher pitch sounding sad. Male backing vocals are providing harmonie and support. This song may be playing with headphones during a breakup with a partner.", "data_idx": 5234, "number": 1, "label": "country"} +{"file_name": "test_08828.png", "caption": "This song contains a minor chord composition on a acoustic piano. The drums is playing a slow groove with lot of pauses and a snapping snare sound. On top of that a male voice is singing in a higher pitch sounding sad. Male backing vocals are providing harmonie and support. This song may be playing with headphones during a breakup with a partner.", "data_idx": 5234, "number": 2, "label": "country"} +{"file_name": "test_08829.png", "caption": "This song contains a minor chord composition on a acoustic piano. The drums is playing a slow groove with lot of pauses and a snapping snare sound. On top of that a male voice is singing in a higher pitch sounding sad. Male backing vocals are providing harmonie and support. This song may be playing with headphones during a breakup with a partner.", "data_idx": 5234, "number": 3, "label": "country"} +{"file_name": "test_08830.png", "caption": "The low quality recording features an electric guitar solo melody played with some sliding techniques. It sounds cool, passionate and the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 5236, "number": 0, "label": "blues"} +{"file_name": "test_08831.png", "caption": "The low quality recording features an electric guitar solo melody played with some sliding techniques. It sounds cool, passionate and the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 5236, "number": 1, "label": "blues"} +{"file_name": "test_08832.png", "caption": "The low quality recording features an electric guitar solo melody played with some sliding techniques. It sounds cool, passionate and the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 5236, "number": 2, "label": "blues"} +{"file_name": "test_08833.png", "caption": "The low quality recording features an electric guitar solo melody played with some sliding techniques. It sounds cool, passionate and the recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 5236, "number": 3, "label": "blues"} +{"file_name": "test_08834.png", "caption": "Cheery, upbeat Latin music featuring a lively male singer, busy percussion including hand percussion like bongos and congas as well as cowbell and more. String bass plays a syncopated tumbao rhythm while a brass section accompanies a trombone.", "data_idx": 5239, "number": 0, "label": "classical"} +{"file_name": "test_08835.png", "caption": "Cheery, upbeat Latin music featuring a lively male singer, busy percussion including hand percussion like bongos and congas as well as cowbell and more. String bass plays a syncopated tumbao rhythm while a brass section accompanies a trombone.", "data_idx": 5239, "number": 1, "label": "classical"} +{"file_name": "test_08836.png", "caption": "Cheery, upbeat Latin music featuring a lively male singer, busy percussion including hand percussion like bongos and congas as well as cowbell and more. String bass plays a syncopated tumbao rhythm while a brass section accompanies a trombone.", "data_idx": 5239, "number": 2, "label": "classical"} +{"file_name": "test_08837.png", "caption": "Cheery, upbeat Latin music featuring a lively male singer, busy percussion including hand percussion like bongos and congas as well as cowbell and more. String bass plays a syncopated tumbao rhythm while a brass section accompanies a trombone.", "data_idx": 5239, "number": 3, "label": "classical"} +{"file_name": "test_08838.png", "caption": "The Urban Latin song features a harmonizing male vocals singing over \"4 on the floor\" kick pattern, shimmering hi hats, syncopated snare hits layered with simple synth lead melody and buzzy synth bass. It sounds energetic and addictive, like something you would hear in clubs.", "data_idx": 5242, "number": 0, "label": "disco"} +{"file_name": "test_08839.png", "caption": "The Urban Latin song features a harmonizing male vocals singing over \"4 on the floor\" kick pattern, shimmering hi hats, syncopated snare hits layered with simple synth lead melody and buzzy synth bass. It sounds energetic and addictive, like something you would hear in clubs.", "data_idx": 5242, "number": 1, "label": "disco"} +{"file_name": "test_08840.png", "caption": "The Urban Latin song features a harmonizing male vocals singing over \"4 on the floor\" kick pattern, shimmering hi hats, syncopated snare hits layered with simple synth lead melody and buzzy synth bass. It sounds energetic and addictive, like something you would hear in clubs.", "data_idx": 5242, "number": 2, "label": "disco"} +{"file_name": "test_08841.png", "caption": "The Urban Latin song features a harmonizing male vocals singing over \"4 on the floor\" kick pattern, shimmering hi hats, syncopated snare hits layered with simple synth lead melody and buzzy synth bass. It sounds energetic and addictive, like something you would hear in clubs.", "data_idx": 5242, "number": 3, "label": "disco"} +{"file_name": "test_08842.png", "caption": "The low quality recording features a digital piano, funky chords played over punchy kick, fat snare and shimmering hi hats. The digital piano uses a wah pedal effect, which makes it sound funky and groovy.", "data_idx": 5247, "number": 0, "label": "hiphop"} +{"file_name": "test_08843.png", "caption": "The low quality recording features a digital piano, funky chords played over punchy kick, fat snare and shimmering hi hats. The digital piano uses a wah pedal effect, which makes it sound funky and groovy.", "data_idx": 5247, "number": 1, "label": "hiphop"} +{"file_name": "test_08844.png", "caption": "The low quality recording features a digital piano, funky chords played over punchy kick, fat snare and shimmering hi hats. The digital piano uses a wah pedal effect, which makes it sound funky and groovy.", "data_idx": 5247, "number": 2, "label": "hiphop"} +{"file_name": "test_08845.png", "caption": "The low quality recording features a digital piano, funky chords played over punchy kick, fat snare and shimmering hi hats. The digital piano uses a wah pedal effect, which makes it sound funky and groovy.", "data_idx": 5247, "number": 3, "label": "hiphop"} +{"file_name": "test_08846.png", "caption": "This audio contains drums playing a loud groove with cymbals and an e-guitar playing a melody in the lower key. Male voices are singing loud while sounding happy. Another male voice that appears to come from the crowd is singing along. This is an amateur recording. This song may be playing loud while celebrating with friends.", "data_idx": 5248, "number": 0, "label": "disco"} +{"file_name": "test_08847.png", "caption": "This audio contains drums playing a loud groove with cymbals and an e-guitar playing a melody in the lower key. Male voices are singing loud while sounding happy. Another male voice that appears to come from the crowd is singing along. This is an amateur recording. This song may be playing loud while celebrating with friends.", "data_idx": 5248, "number": 1, "label": "disco"} +{"file_name": "test_08848.png", "caption": "This audio contains drums playing a loud groove with cymbals and an e-guitar playing a melody in the lower key. Male voices are singing loud while sounding happy. Another male voice that appears to come from the crowd is singing along. This is an amateur recording. This song may be playing loud while celebrating with friends.", "data_idx": 5248, "number": 2, "label": "disco"} +{"file_name": "test_08849.png", "caption": "This audio contains drums playing a loud groove with cymbals and an e-guitar playing a melody in the lower key. Male voices are singing loud while sounding happy. Another male voice that appears to come from the crowd is singing along. This is an amateur recording. This song may be playing loud while celebrating with friends.", "data_idx": 5248, "number": 3, "label": "disco"} +{"file_name": "test_08850.png", "caption": "This is a latin music piece in the style of tango. It is an instrumental piece. The only instrument being played is an accordion. The accordion is playing a joyful tune. This piece could be playing in the background at an Iberian coffee shop.", "data_idx": 5249, "number": 0, "label": "classical"} +{"file_name": "test_08851.png", "caption": "This is a latin music piece in the style of tango. It is an instrumental piece. The only instrument being played is an accordion. The accordion is playing a joyful tune. This piece could be playing in the background at an Iberian coffee shop.", "data_idx": 5249, "number": 1, "label": "classical"} +{"file_name": "test_08852.png", "caption": "This is a latin music piece in the style of tango. It is an instrumental piece. The only instrument being played is an accordion. The accordion is playing a joyful tune. This piece could be playing in the background at an Iberian coffee shop.", "data_idx": 5249, "number": 2, "label": "classical"} +{"file_name": "test_08853.png", "caption": "This is a latin music piece in the style of tango. It is an instrumental piece. The only instrument being played is an accordion. The accordion is playing a joyful tune. This piece could be playing in the background at an Iberian coffee shop.", "data_idx": 5249, "number": 3, "label": "classical"} +{"file_name": "test_08854.png", "caption": "This song features a female voice singing the main melody. This is accompanied by a harp on which chords are being played. There are no other instruments in this song. This song can be played in a romantic movie. This is an amateur recording.", "data_idx": 5251, "number": 0, "label": "blues"} +{"file_name": "test_08855.png", "caption": "This song features a female voice singing the main melody. This is accompanied by a harp on which chords are being played. There are no other instruments in this song. This song can be played in a romantic movie. This is an amateur recording.", "data_idx": 5251, "number": 1, "label": "blues"} +{"file_name": "test_08856.png", "caption": "This song features a female voice singing the main melody. This is accompanied by a harp on which chords are being played. There are no other instruments in this song. This song can be played in a romantic movie. This is an amateur recording.", "data_idx": 5251, "number": 2, "label": "blues"} +{"file_name": "test_08857.png", "caption": "This song features a female voice singing the main melody. This is accompanied by a harp on which chords are being played. There are no other instruments in this song. This song can be played in a romantic movie. This is an amateur recording.", "data_idx": 5251, "number": 3, "label": "blues"} +{"file_name": "test_08858.png", "caption": "The low quality recording features a shimmering chime bell, breathy flute melody, mellow piano chords and sustained strings melody. It sounds easygoing, calming and emotional.", "data_idx": 5256, "number": 0, "label": "hiphop"} +{"file_name": "test_08859.png", "caption": "The low quality recording features a shimmering chime bell, breathy flute melody, mellow piano chords and sustained strings melody. It sounds easygoing, calming and emotional.", "data_idx": 5256, "number": 1, "label": "hiphop"} +{"file_name": "test_08860.png", "caption": "This music is an electric guitar instrumental. The tempo is slow with an electric guitar harmony and a subdued, incoherent background score. This music is classic Rock.", "data_idx": 5257, "number": 0, "label": "jazz"} +{"file_name": "test_08861.png", "caption": "This music is an electric guitar instrumental. The tempo is slow with an electric guitar harmony and a subdued, incoherent background score. This music is classic Rock.", "data_idx": 5257, "number": 1, "label": "jazz"} +{"file_name": "test_08862.png", "caption": "This techno song features a male voice singing the main melody. A female voice is heard singing vocables in the background. In the beginning of this clip, the voice is accompanied by a programmed percussion playing the kick at every count and the snare at alternate counts. A synth is playing the same melody as the main voice. A siren is playing in the background. After two bars of eight counts, the percussion plays a roll and the bass plays a groovy bassline. The synth plays a ring modulated sound. This song can be played in a club.", "data_idx": 5258, "number": 0, "label": "hiphop"} +{"file_name": "test_08863.png", "caption": "This techno song features a male voice singing the main melody. A female voice is heard singing vocables in the background. In the beginning of this clip, the voice is accompanied by a programmed percussion playing the kick at every count and the snare at alternate counts. A synth is playing the same melody as the main voice. A siren is playing in the background. After two bars of eight counts, the percussion plays a roll and the bass plays a groovy bassline. The synth plays a ring modulated sound. This song can be played in a club.", "data_idx": 5258, "number": 1, "label": "hiphop"} +{"file_name": "test_08864.png", "caption": "This techno song features a male voice singing the main melody. A female voice is heard singing vocables in the background. In the beginning of this clip, the voice is accompanied by a programmed percussion playing the kick at every count and the snare at alternate counts. A synth is playing the same melody as the main voice. A siren is playing in the background. After two bars of eight counts, the percussion plays a roll and the bass plays a groovy bassline. The synth plays a ring modulated sound. This song can be played in a club.", "data_idx": 5258, "number": 2, "label": "hiphop"} +{"file_name": "test_08865.png", "caption": "This techno song features a male voice singing the main melody. A female voice is heard singing vocables in the background. In the beginning of this clip, the voice is accompanied by a programmed percussion playing the kick at every count and the snare at alternate counts. A synth is playing the same melody as the main voice. A siren is playing in the background. After two bars of eight counts, the percussion plays a roll and the bass plays a groovy bassline. The synth plays a ring modulated sound. This song can be played in a club.", "data_idx": 5258, "number": 3, "label": "hiphop"} +{"file_name": "test_08866.png", "caption": "This is an Afro-cuban music piece in the style of rumba. It is a live performance. There is a male vocal and a choir singing in a joyful manner. The rhythmic background is composed of Afro-Cuban percussive elements such as the shekere and the conga. The atmosphere is lively and vibrant. This piece could be used as an accompaniment piece for a rumba dance course.", "data_idx": 5259, "number": 0, "label": "blues"} +{"file_name": "test_08867.png", "caption": "This is an Afro-cuban music piece in the style of rumba. It is a live performance. There is a male vocal and a choir singing in a joyful manner. The rhythmic background is composed of Afro-Cuban percussive elements such as the shekere and the conga. The atmosphere is lively and vibrant. This piece could be used as an accompaniment piece for a rumba dance course.", "data_idx": 5259, "number": 1, "label": "blues"} +{"file_name": "test_08868.png", "caption": "This is an Afro-cuban music piece in the style of rumba. It is a live performance. There is a male vocal and a choir singing in a joyful manner. The rhythmic background is composed of Afro-Cuban percussive elements such as the shekere and the conga. The atmosphere is lively and vibrant. This piece could be used as an accompaniment piece for a rumba dance course.", "data_idx": 5259, "number": 2, "label": "blues"} +{"file_name": "test_08869.png", "caption": "This is an Afro-cuban music piece in the style of rumba. It is a live performance. There is a male vocal and a choir singing in a joyful manner. The rhythmic background is composed of Afro-Cuban percussive elements such as the shekere and the conga. The atmosphere is lively and vibrant. This piece could be used as an accompaniment piece for a rumba dance course.", "data_idx": 5259, "number": 3, "label": "blues"} +{"file_name": "test_08870.png", "caption": "A male singer leads backup singers into a gospel song in vocal harmony. The tempo is medium with a groovy bass line , organ accompaniment, tambourine percussion, guitar strumming and keyboard accompaniment. The song is prayerful and spirited. The song has bad audio quality.", "data_idx": 5262, "number": 0, "label": "rock"} +{"file_name": "test_08871.png", "caption": "A male singer leads backup singers into a gospel song in vocal harmony. The tempo is medium with a groovy bass line , organ accompaniment, tambourine percussion, guitar strumming and keyboard accompaniment. The song is prayerful and spirited. The song has bad audio quality.", "data_idx": 5262, "number": 1, "label": "rock"} +{"file_name": "test_08872.png", "caption": "A male singer leads backup singers into a gospel song in vocal harmony. The tempo is medium with a groovy bass line , organ accompaniment, tambourine percussion, guitar strumming and keyboard accompaniment. The song is prayerful and spirited. The song has bad audio quality.", "data_idx": 5262, "number": 2, "label": "rock"} +{"file_name": "test_08873.png", "caption": "A male singer leads backup singers into a gospel song in vocal harmony. The tempo is medium with a groovy bass line , organ accompaniment, tambourine percussion, guitar strumming and keyboard accompaniment. The song is prayerful and spirited. The song has bad audio quality.", "data_idx": 5262, "number": 3, "label": "rock"} +{"file_name": "test_08874.png", "caption": "A man narrates a repair technique for a French horn. The song plays at medium tempo, with a brass section playing in an orchestra. The song is medium tempo and plays a soundtrack for the repair video.", "data_idx": 5264, "number": 0, "label": "blues"} +{"file_name": "test_08875.png", "caption": "A man narrates a repair technique for a French horn. The song plays at medium tempo, with a brass section playing in an orchestra. The song is medium tempo and plays a soundtrack for the repair video.", "data_idx": 5264, "number": 1, "label": "blues"} +{"file_name": "test_08876.png", "caption": "A man narrates a repair technique for a French horn. The song plays at medium tempo, with a brass section playing in an orchestra. The song is medium tempo and plays a soundtrack for the repair video.", "data_idx": 5264, "number": 2, "label": "blues"} +{"file_name": "test_08877.png", "caption": "A man narrates a repair technique for a French horn. The song plays at medium tempo, with a brass section playing in an orchestra. The song is medium tempo and plays a soundtrack for the repair video.", "data_idx": 5264, "number": 3, "label": "blues"} +{"file_name": "test_08878.png", "caption": "This is a movie music piece. Initially, sound effects related to the movie such as explosions and sirens can be heard. A male voice can be heard gasping. There is an orchestra made up of a brass section, a string section and a choir singing at a high pitch. The atmosphere is ominous. This piece could be used in the soundtrack of a horror movie.", "data_idx": 5265, "number": 0, "label": "metal"} +{"file_name": "test_08879.png", "caption": "This is a movie music piece. Initially, sound effects related to the movie such as explosions and sirens can be heard. A male voice can be heard gasping. There is an orchestra made up of a brass section, a string section and a choir singing at a high pitch. The atmosphere is ominous. This piece could be used in the soundtrack of a horror movie.", "data_idx": 5265, "number": 1, "label": "metal"} +{"file_name": "test_08880.png", "caption": "This is a movie music piece. Initially, sound effects related to the movie such as explosions and sirens can be heard. A male voice can be heard gasping. There is an orchestra made up of a brass section, a string section and a choir singing at a high pitch. The atmosphere is ominous. This piece could be used in the soundtrack of a horror movie.", "data_idx": 5265, "number": 2, "label": "metal"} +{"file_name": "test_08881.png", "caption": "This is a movie music piece. Initially, sound effects related to the movie such as explosions and sirens can be heard. A male voice can be heard gasping. There is an orchestra made up of a brass section, a string section and a choir singing at a high pitch. The atmosphere is ominous. This piece could be used in the soundtrack of a horror movie.", "data_idx": 5265, "number": 3, "label": "metal"} +{"file_name": "test_08882.png", "caption": "This audio contains a musical composition played by a big horn section and a lot of flutes. Someone is playing a simple and loud groove on the drums. In the background you can hear someone playing a marimba. This song may be playing live at a big sports event.", "data_idx": 5266, "number": 0, "label": "classical"} +{"file_name": "test_08883.png", "caption": "This audio contains a musical composition played by a big horn section and a lot of flutes. Someone is playing a simple and loud groove on the drums. In the background you can hear someone playing a marimba. This song may be playing live at a big sports event.", "data_idx": 5266, "number": 1, "label": "classical"} +{"file_name": "test_08884.png", "caption": "This audio contains a musical composition played by a big horn section and a lot of flutes. Someone is playing a simple and loud groove on the drums. In the background you can hear someone playing a marimba. This song may be playing live at a big sports event.", "data_idx": 5266, "number": 2, "label": "classical"} +{"file_name": "test_08885.png", "caption": "This audio contains a musical composition played by a big horn section and a lot of flutes. Someone is playing a simple and loud groove on the drums. In the background you can hear someone playing a marimba. This song may be playing live at a big sports event.", "data_idx": 5266, "number": 3, "label": "classical"} +{"file_name": "test_08886.png", "caption": "This song is a drum solo. The hi-hat is played in eighths on the one, two and four counts of the bar. This drum is playing a syncopated rhythm. On the third count, the snare is played. The cowbell is played five times in 2 bars of eight counts. There are no other instruments in this song. There are no voices in this song. This song can be played as an instruction for syncopated drumming patterns.", "data_idx": 5267, "number": 0, "label": "reggae"} +{"file_name": "test_08887.png", "caption": "This song is a drum solo. The hi-hat is played in eighths on the one, two and four counts of the bar. This drum is playing a syncopated rhythm. On the third count, the snare is played. The cowbell is played five times in 2 bars of eight counts. There are no other instruments in this song. There are no voices in this song. This song can be played as an instruction for syncopated drumming patterns.", "data_idx": 5267, "number": 1, "label": "reggae"} +{"file_name": "test_08888.png", "caption": "The low quality recording features a cover of a classical song that consists of a harpsichord melody. It sounds passionate and emotional.", "data_idx": 5268, "number": 0, "label": "classical"} +{"file_name": "test_08889.png", "caption": "The low quality recording features a cover of a classical song that consists of a harpsichord melody. It sounds passionate and emotional.", "data_idx": 5268, "number": 1, "label": "classical"} +{"file_name": "test_08890.png", "caption": "The low quality recording features a cover of a classical song that consists of a harpsichord melody. It sounds passionate and emotional.", "data_idx": 5268, "number": 2, "label": "classical"} +{"file_name": "test_08891.png", "caption": "The low quality recording features a cover of a classical song that consists of a harpsichord melody. It sounds passionate and emotional.", "data_idx": 5268, "number": 3, "label": "classical"} +{"file_name": "test_08892.png", "caption": "A synthesized string lead melody is accompanied by digital piano accompaniment and chimes. The tempo is slow and steady and the feeling is light and airy.", "data_idx": 5270, "number": 0, "label": "classical"} +{"file_name": "test_08893.png", "caption": "A synthesized string lead melody is accompanied by digital piano accompaniment and chimes. The tempo is slow and steady and the feeling is light and airy.", "data_idx": 5270, "number": 1, "label": "classical"} +{"file_name": "test_08894.png", "caption": "A synthesized string lead melody is accompanied by digital piano accompaniment and chimes. The tempo is slow and steady and the feeling is light and airy.", "data_idx": 5270, "number": 2, "label": "classical"} +{"file_name": "test_08895.png", "caption": "A synthesized string lead melody is accompanied by digital piano accompaniment and chimes. The tempo is slow and steady and the feeling is light and airy.", "data_idx": 5270, "number": 3, "label": "classical"} +{"file_name": "test_08896.png", "caption": "This song features an electric guitar playing arpeggiated chords. The guitar is playing with a flanger effect added to change the tone. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be used in an instructional video on an effects processor.", "data_idx": 5273, "number": 0, "label": "classical"} +{"file_name": "test_08897.png", "caption": "This song features an electric guitar playing arpeggiated chords. The guitar is playing with a flanger effect added to change the tone. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be used in an instructional video on an effects processor.", "data_idx": 5273, "number": 1, "label": "classical"} +{"file_name": "test_08898.png", "caption": "This song features an electric guitar playing arpeggiated chords. The guitar is playing with a flanger effect added to change the tone. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be used in an instructional video on an effects processor.", "data_idx": 5273, "number": 2, "label": "classical"} +{"file_name": "test_08899.png", "caption": "This song features an electric guitar playing arpeggiated chords. The guitar is playing with a flanger effect added to change the tone. There are no other instruments in this song. There are no voices in this song. This is an instrumental song. This song can be used in an instructional video on an effects processor.", "data_idx": 5273, "number": 3, "label": "classical"} +{"file_name": "test_08900.png", "caption": "Hand percussion accompanies a male singer and violin doubling a melody with a constant regular rhythm. Mood is hypnotic and trance inducing. Features additive rhythms and odd meters.", "data_idx": 5275, "number": 0, "label": "classical"} +{"file_name": "test_08901.png", "caption": "Hand percussion accompanies a male singer and violin doubling a melody with a constant regular rhythm. Mood is hypnotic and trance inducing. Features additive rhythms and odd meters.", "data_idx": 5275, "number": 1, "label": "classical"} +{"file_name": "test_08902.png", "caption": "Hand percussion accompanies a male singer and violin doubling a melody with a constant regular rhythm. Mood is hypnotic and trance inducing. Features additive rhythms and odd meters.", "data_idx": 5275, "number": 2, "label": "classical"} +{"file_name": "test_08903.png", "caption": "Hand percussion accompanies a male singer and violin doubling a melody with a constant regular rhythm. Mood is hypnotic and trance inducing. Features additive rhythms and odd meters.", "data_idx": 5275, "number": 3, "label": "classical"} +{"file_name": "test_08904.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in-between notes of alto saxophone. The recording is noisy and in mono.", "data_idx": 5278, "number": 0, "label": "reggae"} +{"file_name": "test_08905.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in-between notes of alto saxophone. The recording is noisy and in mono.", "data_idx": 5278, "number": 1, "label": "reggae"} +{"file_name": "test_08906.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in-between notes of alto saxophone. The recording is noisy and in mono.", "data_idx": 5278, "number": 2, "label": "reggae"} +{"file_name": "test_08907.png", "caption": "The low quality recording features a tutorial where a flat male vocal is talking in-between notes of alto saxophone. The recording is noisy and in mono.", "data_idx": 5278, "number": 3, "label": "reggae"} +{"file_name": "test_08908.png", "caption": "A male vocalist sings this upbeat Latin pop song. The tempo is fast with infectious drumming, groovy bass line,electric guitar, keyboard harmony, acoustic guitar, shakers,synthesiser arrangement and digital drumming. The song is youthful , energetic,enthusiastic, animated,fervent, pulsating, electrifying ,exciting,and buoyant. This song is a Latin Urbano.", "data_idx": 5284, "number": 0, "label": "hiphop"} +{"file_name": "test_08909.png", "caption": "A male vocalist sings this upbeat Latin pop song. The tempo is fast with infectious drumming, groovy bass line,electric guitar, keyboard harmony, acoustic guitar, shakers,synthesiser arrangement and digital drumming. The song is youthful , energetic,enthusiastic, animated,fervent, pulsating, electrifying ,exciting,and buoyant. This song is a Latin Urbano.", "data_idx": 5284, "number": 1, "label": "hiphop"} +{"file_name": "test_08910.png", "caption": "A male vocalist sings this upbeat Latin pop song. The tempo is fast with infectious drumming, groovy bass line,electric guitar, keyboard harmony, acoustic guitar, shakers,synthesiser arrangement and digital drumming. The song is youthful , energetic,enthusiastic, animated,fervent, pulsating, electrifying ,exciting,and buoyant. This song is a Latin Urbano.", "data_idx": 5284, "number": 2, "label": "hiphop"} +{"file_name": "test_08911.png", "caption": "A male vocalist sings this upbeat Latin pop song. The tempo is fast with infectious drumming, groovy bass line,electric guitar, keyboard harmony, acoustic guitar, shakers,synthesiser arrangement and digital drumming. The song is youthful , energetic,enthusiastic, animated,fervent, pulsating, electrifying ,exciting,and buoyant. This song is a Latin Urbano.", "data_idx": 5284, "number": 3, "label": "hiphop"} +{"file_name": "test_08912.png", "caption": "This low quality audio features a female voice singing the main melody. Other voices sing backing vocals in this song. Other instruments cannot be heard due to the low quality of audio.", "data_idx": 5285, "number": 0, "label": "pop"} +{"file_name": "test_08913.png", "caption": "This low quality audio features a female voice singing the main melody. Other voices sing backing vocals in this song. Other instruments cannot be heard due to the low quality of audio.", "data_idx": 5285, "number": 1, "label": "pop"} +{"file_name": "test_08914.png", "caption": "This low quality audio features a female voice singing the main melody. Other voices sing backing vocals in this song. Other instruments cannot be heard due to the low quality of audio.", "data_idx": 5285, "number": 2, "label": "pop"} +{"file_name": "test_08915.png", "caption": "This low quality audio features a female voice singing the main melody. Other voices sing backing vocals in this song. Other instruments cannot be heard due to the low quality of audio.", "data_idx": 5285, "number": 3, "label": "pop"} +{"file_name": "test_08916.png", "caption": "The Regional Mexican song features a passionate male vocal singing over repetitive acoustic guitar chord and groovy bass, after which there are shimmering shakers and accordion melody playing. It sounds passionate, emotional and soulful.", "data_idx": 5290, "number": 0, "label": "country"} +{"file_name": "test_08917.png", "caption": "The Regional Mexican song features a passionate male vocal singing over repetitive acoustic guitar chord and groovy bass, after which there are shimmering shakers and accordion melody playing. It sounds passionate, emotional and soulful.", "data_idx": 5290, "number": 1, "label": "country"} +{"file_name": "test_08918.png", "caption": "The Regional Mexican song features a passionate male vocal singing over repetitive acoustic guitar chord and groovy bass, after which there are shimmering shakers and accordion melody playing. It sounds passionate, emotional and soulful.", "data_idx": 5290, "number": 2, "label": "country"} +{"file_name": "test_08919.png", "caption": "The Regional Mexican song features a passionate male vocal singing over repetitive acoustic guitar chord and groovy bass, after which there are shimmering shakers and accordion melody playing. It sounds passionate, emotional and soulful.", "data_idx": 5290, "number": 3, "label": "country"} +{"file_name": "test_08920.png", "caption": "This funk song features trumpets playing the main melody. The bass plays the same melody on the lower octave. This is accompanied by percussion playing a simple beat. The beat is groovy. Guitars play a funky rhythm using muting technique and playing funk style chords. The trumpet starts off playing a descending sequence of four notes followed by an ascending sequence of three notes. In between lines, the trumpet plays on note in a staccato style. This song has a happy mood. This song can be played in a casino scene in a movie. There are no voices in this song.", "data_idx": 5292, "number": 0, "label": "reggae"} +{"file_name": "test_08921.png", "caption": "This funk song features trumpets playing the main melody. The bass plays the same melody on the lower octave. This is accompanied by percussion playing a simple beat. The beat is groovy. Guitars play a funky rhythm using muting technique and playing funk style chords. The trumpet starts off playing a descending sequence of four notes followed by an ascending sequence of three notes. In between lines, the trumpet plays on note in a staccato style. This song has a happy mood. This song can be played in a casino scene in a movie. There are no voices in this song.", "data_idx": 5292, "number": 1, "label": "reggae"} +{"file_name": "test_08922.png", "caption": "This funk song features trumpets playing the main melody. The bass plays the same melody on the lower octave. This is accompanied by percussion playing a simple beat. The beat is groovy. Guitars play a funky rhythm using muting technique and playing funk style chords. The trumpet starts off playing a descending sequence of four notes followed by an ascending sequence of three notes. In between lines, the trumpet plays on note in a staccato style. This song has a happy mood. This song can be played in a casino scene in a movie. There are no voices in this song.", "data_idx": 5292, "number": 2, "label": "reggae"} +{"file_name": "test_08923.png", "caption": "This funk song features trumpets playing the main melody. The bass plays the same melody on the lower octave. This is accompanied by percussion playing a simple beat. The beat is groovy. Guitars play a funky rhythm using muting technique and playing funk style chords. The trumpet starts off playing a descending sequence of four notes followed by an ascending sequence of three notes. In between lines, the trumpet plays on note in a staccato style. This song has a happy mood. This song can be played in a casino scene in a movie. There are no voices in this song.", "data_idx": 5292, "number": 3, "label": "reggae"} +{"file_name": "test_08924.png", "caption": "This is a French opera music piece. It is an instrumental piece. There are two harpsichords performing the piece. There is a medieval sound to the piece. It has a dramatic and grandiose feel. This piece could be used in the soundtrack of a movie or a TV series that takes place in the medieval era, especially during scenes of intrigue.", "data_idx": 5293, "number": 0, "label": "classical"} +{"file_name": "test_08925.png", "caption": "This is a French opera music piece. It is an instrumental piece. There are two harpsichords performing the piece. There is a medieval sound to the piece. It has a dramatic and grandiose feel. This piece could be used in the soundtrack of a movie or a TV series that takes place in the medieval era, especially during scenes of intrigue.", "data_idx": 5293, "number": 1, "label": "classical"} +{"file_name": "test_08926.png", "caption": "This is a French opera music piece. It is an instrumental piece. There are two harpsichords performing the piece. There is a medieval sound to the piece. It has a dramatic and grandiose feel. This piece could be used in the soundtrack of a movie or a TV series that takes place in the medieval era, especially during scenes of intrigue.", "data_idx": 5293, "number": 2, "label": "classical"} +{"file_name": "test_08927.png", "caption": "This is a French opera music piece. It is an instrumental piece. There are two harpsichords performing the piece. There is a medieval sound to the piece. It has a dramatic and grandiose feel. This piece could be used in the soundtrack of a movie or a TV series that takes place in the medieval era, especially during scenes of intrigue.", "data_idx": 5293, "number": 3, "label": "classical"} +{"file_name": "test_08928.png", "caption": "The song is a black metal band which features a heavily distorted, sustained guitar chord. The male voice is croaky, raspy, deep and fuzzy. There is a soft choral vocal in the background.", "data_idx": 5294, "number": 0, "label": "metal"} +{"file_name": "test_08929.png", "caption": "The song is a black metal band which features a heavily distorted, sustained guitar chord. The male voice is croaky, raspy, deep and fuzzy. There is a soft choral vocal in the background.", "data_idx": 5294, "number": 1, "label": "metal"} +{"file_name": "test_08930.png", "caption": "The song is a black metal band which features a heavily distorted, sustained guitar chord. The male voice is croaky, raspy, deep and fuzzy. There is a soft choral vocal in the background.", "data_idx": 5294, "number": 2, "label": "metal"} +{"file_name": "test_08931.png", "caption": "The song is a black metal band which features a heavily distorted, sustained guitar chord. The male voice is croaky, raspy, deep and fuzzy. There is a soft choral vocal in the background.", "data_idx": 5294, "number": 3, "label": "metal"} +{"file_name": "test_08932.png", "caption": "The low quality recording features an orchestral live performance of a classical song and it contains a wide french horn melody playing over a wide string melody. It sounds easygoing, passionate, dynamic and emotional.", "data_idx": 5297, "number": 0, "label": "classical"} +{"file_name": "test_08933.png", "caption": "The low quality recording features an orchestral live performance of a classical song and it contains a wide french horn melody playing over a wide string melody. It sounds easygoing, passionate, dynamic and emotional.", "data_idx": 5297, "number": 1, "label": "classical"} +{"file_name": "test_08934.png", "caption": "The low quality recording features an orchestral live performance of a classical song and it contains a wide french horn melody playing over a wide string melody. It sounds easygoing, passionate, dynamic and emotional.", "data_idx": 5297, "number": 2, "label": "classical"} +{"file_name": "test_08935.png", "caption": "The low quality recording features an orchestral live performance of a classical song and it contains a wide french horn melody playing over a wide string melody. It sounds easygoing, passionate, dynamic and emotional.", "data_idx": 5297, "number": 3, "label": "classical"} +{"file_name": "test_08936.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a simple beat which starts off with a drum roll. The bass plays the root notes of the chords. A synth plays chords in the background. This song has an upbeat mood. This song can be played in a club.", "data_idx": 5298, "number": 0, "label": "disco"} +{"file_name": "test_08937.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a simple beat which starts off with a drum roll. The bass plays the root notes of the chords. A synth plays chords in the background. This song has an upbeat mood. This song can be played in a club.", "data_idx": 5298, "number": 1, "label": "disco"} +{"file_name": "test_08938.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a simple beat which starts off with a drum roll. The bass plays the root notes of the chords. A synth plays chords in the background. This song has an upbeat mood. This song can be played in a club.", "data_idx": 5298, "number": 2, "label": "disco"} +{"file_name": "test_08939.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a simple beat which starts off with a drum roll. The bass plays the root notes of the chords. A synth plays chords in the background. This song has an upbeat mood. This song can be played in a club.", "data_idx": 5298, "number": 3, "label": "disco"} +{"file_name": "test_08940.png", "caption": "This is an R&B/disco funk music piece. There are multiple layers of a female vocalist singing melodically. The melody is being played by the electric guitar while the bass guitar is playing a groovy bass line. There is a funky acoustic drum beat in the background. The atmosphere is hip and the piece is very danceable. The piece could be playing for a 70s night at a dance club.", "data_idx": 5299, "number": 0, "label": "disco"} +{"file_name": "test_08941.png", "caption": "This is an R&B/disco funk music piece. There are multiple layers of a female vocalist singing melodically. The melody is being played by the electric guitar while the bass guitar is playing a groovy bass line. There is a funky acoustic drum beat in the background. The atmosphere is hip and the piece is very danceable. The piece could be playing for a 70s night at a dance club.", "data_idx": 5299, "number": 1, "label": "disco"} +{"file_name": "test_08942.png", "caption": "This is an R&B/disco funk music piece. There are multiple layers of a female vocalist singing melodically. The melody is being played by the electric guitar while the bass guitar is playing a groovy bass line. There is a funky acoustic drum beat in the background. The atmosphere is hip and the piece is very danceable. The piece could be playing for a 70s night at a dance club.", "data_idx": 5299, "number": 2, "label": "disco"} +{"file_name": "test_08943.png", "caption": "This is an R&B/disco funk music piece. There are multiple layers of a female vocalist singing melodically. The melody is being played by the electric guitar while the bass guitar is playing a groovy bass line. There is a funky acoustic drum beat in the background. The atmosphere is hip and the piece is very danceable. The piece could be playing for a 70s night at a dance club.", "data_idx": 5299, "number": 3, "label": "disco"} +{"file_name": "test_08944.png", "caption": "The low quality recording features a live performance of steel drums, followed by energetic drums in the background. It sounds exotic, passionate, energetic and the recording is noisy and in mono.", "data_idx": 5301, "number": 0, "label": "rock"} +{"file_name": "test_08945.png", "caption": "The low quality recording features a live performance of steel drums, followed by energetic drums in the background. It sounds exotic, passionate, energetic and the recording is noisy and in mono.", "data_idx": 5301, "number": 1, "label": "rock"} +{"file_name": "test_08946.png", "caption": "The low quality recording features a live performance of steel drums, followed by energetic drums in the background. It sounds exotic, passionate, energetic and the recording is noisy and in mono.", "data_idx": 5301, "number": 2, "label": "rock"} +{"file_name": "test_08947.png", "caption": "The low quality recording features a live performance of steel drums, followed by energetic drums in the background. It sounds exotic, passionate, energetic and the recording is noisy and in mono.", "data_idx": 5301, "number": 3, "label": "rock"} +{"file_name": "test_08948.png", "caption": "The low quality recording features a hip hop song that consists of a flat male vocal, alongside some background male vocals, rapping over punchy kick and snare hits, shimmering hi hats, funky electric guitar, brass melody, groovy synth keys melody and groovy bass. It sounds energetic, groovy and exciting.", "data_idx": 5303, "number": 0, "label": "hiphop"} +{"file_name": "test_08949.png", "caption": "The low quality recording features a hip hop song that consists of a flat male vocal, alongside some background male vocals, rapping over punchy kick and snare hits, shimmering hi hats, funky electric guitar, brass melody, groovy synth keys melody and groovy bass. It sounds energetic, groovy and exciting.", "data_idx": 5303, "number": 1, "label": "hiphop"} +{"file_name": "test_08950.png", "caption": "The low quality recording features a hip hop song that consists of a flat male vocal, alongside some background male vocals, rapping over punchy kick and snare hits, shimmering hi hats, funky electric guitar, brass melody, groovy synth keys melody and groovy bass. It sounds energetic, groovy and exciting.", "data_idx": 5303, "number": 2, "label": "hiphop"} +{"file_name": "test_08951.png", "caption": "The low quality recording features a hip hop song that consists of a flat male vocal, alongside some background male vocals, rapping over punchy kick and snare hits, shimmering hi hats, funky electric guitar, brass melody, groovy synth keys melody and groovy bass. It sounds energetic, groovy and exciting.", "data_idx": 5303, "number": 3, "label": "hiphop"} +{"file_name": "test_08952.png", "caption": "This song contains a male voice repeating the same melody in a loop while another male voice is singing on top in a higher register. An acoustic drum is holding a four on the floor groove with a kick on every beat. The e-bass and e-guitar are playing along to the loop, repeating themselves. This song may be playing at a live concert downtown.", "data_idx": 5304, "number": 0, "label": "metal"} +{"file_name": "test_08953.png", "caption": "This song contains a male voice repeating the same melody in a loop while another male voice is singing on top in a higher register. An acoustic drum is holding a four on the floor groove with a kick on every beat. The e-bass and e-guitar are playing along to the loop, repeating themselves. This song may be playing at a live concert downtown.", "data_idx": 5304, "number": 1, "label": "metal"} +{"file_name": "test_08954.png", "caption": "This is a hip-hop music piece. There is a male vocal rapping in the lead. The beat has a brass sample and a female voice sample. There is a strong bass sound. The rhythmic background is composed of a hip-hop electronic drum beat. There is an urban atmosphere. This piece could be playing in the soundtrack of a car street-racing video game.", "data_idx": 5305, "number": 0, "label": "hiphop"} +{"file_name": "test_08955.png", "caption": "This is a hip-hop music piece. There is a male vocal rapping in the lead. The beat has a brass sample and a female voice sample. There is a strong bass sound. The rhythmic background is composed of a hip-hop electronic drum beat. There is an urban atmosphere. This piece could be playing in the soundtrack of a car street-racing video game.", "data_idx": 5305, "number": 1, "label": "hiphop"} +{"file_name": "test_08956.png", "caption": "This is a hip-hop music piece. There is a male vocal rapping in the lead. The beat has a brass sample and a female voice sample. There is a strong bass sound. The rhythmic background is composed of a hip-hop electronic drum beat. There is an urban atmosphere. This piece could be playing in the soundtrack of a car street-racing video game.", "data_idx": 5305, "number": 2, "label": "hiphop"} +{"file_name": "test_08957.png", "caption": "This is a hip-hop music piece. There is a male vocal rapping in the lead. The beat has a brass sample and a female voice sample. There is a strong bass sound. The rhythmic background is composed of a hip-hop electronic drum beat. There is an urban atmosphere. This piece could be playing in the soundtrack of a car street-racing video game.", "data_idx": 5305, "number": 3, "label": "hiphop"} +{"file_name": "test_08958.png", "caption": "This symphonic song features a melody played on a cello. This is accompanied by violins playing in the background. It starts off as a slow tempo song. After a brief pause, the instruments play staccato notes at a faster tempo. There is no percussion in this song. There are no voices in this song. This is a classical instrumental piece. This song can be played in a luxury watch advertisement.", "data_idx": 5306, "number": 0, "label": "classical"} +{"file_name": "test_08959.png", "caption": "This symphonic song features a melody played on a cello. This is accompanied by violins playing in the background. It starts off as a slow tempo song. After a brief pause, the instruments play staccato notes at a faster tempo. There is no percussion in this song. There are no voices in this song. This is a classical instrumental piece. This song can be played in a luxury watch advertisement.", "data_idx": 5306, "number": 1, "label": "classical"} +{"file_name": "test_08960.png", "caption": "This symphonic song features a melody played on a cello. This is accompanied by violins playing in the background. It starts off as a slow tempo song. After a brief pause, the instruments play staccato notes at a faster tempo. There is no percussion in this song. There are no voices in this song. This is a classical instrumental piece. This song can be played in a luxury watch advertisement.", "data_idx": 5306, "number": 2, "label": "classical"} +{"file_name": "test_08961.png", "caption": "This symphonic song features a melody played on a cello. This is accompanied by violins playing in the background. It starts off as a slow tempo song. After a brief pause, the instruments play staccato notes at a faster tempo. There is no percussion in this song. There are no voices in this song. This is a classical instrumental piece. This song can be played in a luxury watch advertisement.", "data_idx": 5306, "number": 3, "label": "classical"} +{"file_name": "test_08962.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song. There is a crowd talking in the background. The recording sounds muffled, noisy and it is in mono.", "data_idx": 5307, "number": 0, "label": "disco"} +{"file_name": "test_08963.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song. There is a crowd talking in the background. The recording sounds muffled, noisy and it is in mono.", "data_idx": 5307, "number": 1, "label": "disco"} +{"file_name": "test_08964.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song. There is a crowd talking in the background. The recording sounds muffled, noisy and it is in mono.", "data_idx": 5307, "number": 2, "label": "disco"} +{"file_name": "test_08965.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song. There is a crowd talking in the background. The recording sounds muffled, noisy and it is in mono.", "data_idx": 5307, "number": 3, "label": "disco"} +{"file_name": "test_08966.png", "caption": "This music is instrumental. The tempo is fast with a groovy didgeridoo harmony with percussion accompaniment. The music is upbeat, catchy, funky, unconventional, engaging, punchy and fun. This music is a Didgeridoo instrumental.", "data_idx": 5309, "number": 0, "label": "reggae"} +{"file_name": "test_08967.png", "caption": "This music is instrumental. The tempo is fast with a groovy didgeridoo harmony with percussion accompaniment. The music is upbeat, catchy, funky, unconventional, engaging, punchy and fun. This music is a Didgeridoo instrumental.", "data_idx": 5309, "number": 1, "label": "reggae"} +{"file_name": "test_08968.png", "caption": "This music is instrumental. The tempo is fast with a groovy didgeridoo harmony with percussion accompaniment. The music is upbeat, catchy, funky, unconventional, engaging, punchy and fun. This music is a Didgeridoo instrumental.", "data_idx": 5309, "number": 2, "label": "reggae"} +{"file_name": "test_08969.png", "caption": "This music is instrumental. The tempo is fast with a groovy didgeridoo harmony with percussion accompaniment. The music is upbeat, catchy, funky, unconventional, engaging, punchy and fun. This music is a Didgeridoo instrumental.", "data_idx": 5309, "number": 3, "label": "reggae"} +{"file_name": "test_08970.png", "caption": "This is a sextet of french horn players. The piece sounds inspiring and uplifting and would be fitting for a movie soundtrack in a moment where the lead character has just accomplished something great or saved the day. It's an emotive and cinematic piece.", "data_idx": 5310, "number": 0, "label": "jazz"} +{"file_name": "test_08971.png", "caption": "This is a sextet of french horn players. The piece sounds inspiring and uplifting and would be fitting for a movie soundtrack in a moment where the lead character has just accomplished something great or saved the day. It's an emotive and cinematic piece.", "data_idx": 5310, "number": 1, "label": "jazz"} +{"file_name": "test_08972.png", "caption": "This is a sextet of french horn players. The piece sounds inspiring and uplifting and would be fitting for a movie soundtrack in a moment where the lead character has just accomplished something great or saved the day. It's an emotive and cinematic piece.", "data_idx": 5310, "number": 2, "label": "jazz"} +{"file_name": "test_08973.png", "caption": "This is a sextet of french horn players. The piece sounds inspiring and uplifting and would be fitting for a movie soundtrack in a moment where the lead character has just accomplished something great or saved the day. It's an emotive and cinematic piece.", "data_idx": 5310, "number": 3, "label": "jazz"} +{"file_name": "test_08974.png", "caption": "This is a percussion piece playing in the background of an advertorial video. It is an instrumental piece. There is a very simple conga beat playing and then a cymbal hit can be heard, only for the conga beat to keep on playing afterwards. There is a basic feel to it. It can be playing in the background of a tutorial or a review video. It could also be sampled for use in beat-making.", "data_idx": 5311, "number": 0, "label": "hiphop"} +{"file_name": "test_08975.png", "caption": "This is a percussion piece playing in the background of an advertorial video. It is an instrumental piece. There is a very simple conga beat playing and then a cymbal hit can be heard, only for the conga beat to keep on playing afterwards. There is a basic feel to it. It can be playing in the background of a tutorial or a review video. It could also be sampled for use in beat-making.", "data_idx": 5311, "number": 1, "label": "hiphop"} +{"file_name": "test_08976.png", "caption": "This is a percussion piece playing in the background of an advertorial video. It is an instrumental piece. There is a very simple conga beat playing and then a cymbal hit can be heard, only for the conga beat to keep on playing afterwards. There is a basic feel to it. It can be playing in the background of a tutorial or a review video. It could also be sampled for use in beat-making.", "data_idx": 5311, "number": 2, "label": "hiphop"} +{"file_name": "test_08977.png", "caption": "This is a percussion piece playing in the background of an advertorial video. It is an instrumental piece. There is a very simple conga beat playing and then a cymbal hit can be heard, only for the conga beat to keep on playing afterwards. There is a basic feel to it. It can be playing in the background of a tutorial or a review video. It could also be sampled for use in beat-making.", "data_idx": 5311, "number": 3, "label": "hiphop"} +{"file_name": "test_08978.png", "caption": "The low quality recording features a live performance of a gospel song that consists of harmonizing vocals singing over acoustic rhythm guitar, groovy bass guitar, shimmering hi hats and punchy toms. It gives off happy and fun vibes.", "data_idx": 5313, "number": 0, "label": "rock"} +{"file_name": "test_08979.png", "caption": "The low quality recording features a live performance of a gospel song that consists of harmonizing vocals singing over acoustic rhythm guitar, groovy bass guitar, shimmering hi hats and punchy toms. It gives off happy and fun vibes.", "data_idx": 5313, "number": 1, "label": "rock"} +{"file_name": "test_08980.png", "caption": "The low quality recording features a live performance of a gospel song that consists of harmonizing vocals singing over acoustic rhythm guitar, groovy bass guitar, shimmering hi hats and punchy toms. It gives off happy and fun vibes.", "data_idx": 5313, "number": 2, "label": "rock"} +{"file_name": "test_08981.png", "caption": "The low quality recording features a live performance of a gospel song that consists of harmonizing vocals singing over acoustic rhythm guitar, groovy bass guitar, shimmering hi hats and punchy toms. It gives off happy and fun vibes.", "data_idx": 5313, "number": 3, "label": "rock"} +{"file_name": "test_08982.png", "caption": "This audio contains someone playing a clean e-guitar melody that sounds soothing. This song may be playing at a little living room concert.", "data_idx": 5323, "number": 0, "label": "blues"} +{"file_name": "test_08983.png", "caption": "This audio contains someone playing a clean e-guitar melody that sounds soothing. This song may be playing at a little living room concert.", "data_idx": 5323, "number": 1, "label": "blues"} +{"file_name": "test_08984.png", "caption": "This audio contains someone playing a clean e-guitar melody that sounds soothing. This song may be playing at a little living room concert.", "data_idx": 5323, "number": 2, "label": "blues"} +{"file_name": "test_08985.png", "caption": "This audio contains someone playing a clean e-guitar melody that sounds soothing. This song may be playing at a little living room concert.", "data_idx": 5323, "number": 3, "label": "blues"} +{"file_name": "test_08986.png", "caption": "This is an east asian type of romantic ballad. The song has a relaxing, calm feeling to it and is aided by the ethereal sounds of the chinese flute. We hear ethnic drums like bongos, and constant hi-hat playing.", "data_idx": 5324, "number": 0, "label": "reggae"} +{"file_name": "test_08987.png", "caption": "This is an east asian type of romantic ballad. The song has a relaxing, calm feeling to it and is aided by the ethereal sounds of the chinese flute. We hear ethnic drums like bongos, and constant hi-hat playing.", "data_idx": 5324, "number": 1, "label": "reggae"} +{"file_name": "test_08988.png", "caption": "This is an east asian type of romantic ballad. The song has a relaxing, calm feeling to it and is aided by the ethereal sounds of the chinese flute. We hear ethnic drums like bongos, and constant hi-hat playing.", "data_idx": 5324, "number": 2, "label": "reggae"} +{"file_name": "test_08989.png", "caption": "This is an east asian type of romantic ballad. The song has a relaxing, calm feeling to it and is aided by the ethereal sounds of the chinese flute. We hear ethnic drums like bongos, and constant hi-hat playing.", "data_idx": 5324, "number": 3, "label": "reggae"} +{"file_name": "test_08990.png", "caption": "A male singer sings this beautiful melody. The tempo is fast with a guitar strumming rhythm, strong bass line, violin playing countermelody, steady drumming rhythm and a guitar playing accompaniment. The song is fresh, innocent and romantic with a lot of heart. The song is a modern love song.", "data_idx": 5326, "number": 0, "label": "country"} +{"file_name": "test_08991.png", "caption": "A male singer sings this beautiful melody. The tempo is fast with a guitar strumming rhythm, strong bass line, violin playing countermelody, steady drumming rhythm and a guitar playing accompaniment. The song is fresh, innocent and romantic with a lot of heart. The song is a modern love song.", "data_idx": 5326, "number": 1, "label": "country"} +{"file_name": "test_08992.png", "caption": "A male singer sings this beautiful melody. The tempo is fast with a guitar strumming rhythm, strong bass line, violin playing countermelody, steady drumming rhythm and a guitar playing accompaniment. The song is fresh, innocent and romantic with a lot of heart. The song is a modern love song.", "data_idx": 5326, "number": 2, "label": "country"} +{"file_name": "test_08993.png", "caption": "A male singer sings this beautiful melody. The tempo is fast with a guitar strumming rhythm, strong bass line, violin playing countermelody, steady drumming rhythm and a guitar playing accompaniment. The song is fresh, innocent and romantic with a lot of heart. The song is a modern love song.", "data_idx": 5326, "number": 3, "label": "country"} +{"file_name": "test_08994.png", "caption": "This is the live performance of a Romanian folk music piece. It is instrumental. There is an accordion playing the leading melody while the fiddle, acoustic guitar and the upright bass play in the background. There is a percussive element in the rhythmic background. The atmosphere is lively and joyful.", "data_idx": 5327, "number": 0, "label": "jazz"} +{"file_name": "test_08995.png", "caption": "This is the live performance of a Romanian folk music piece. It is instrumental. There is an accordion playing the leading melody while the fiddle, acoustic guitar and the upright bass play in the background. There is a percussive element in the rhythmic background. The atmosphere is lively and joyful.", "data_idx": 5327, "number": 1, "label": "jazz"} +{"file_name": "test_08996.png", "caption": "This is the live performance of a Romanian folk music piece. It is instrumental. There is an accordion playing the leading melody while the fiddle, acoustic guitar and the upright bass play in the background. There is a percussive element in the rhythmic background. The atmosphere is lively and joyful.", "data_idx": 5327, "number": 2, "label": "jazz"} +{"file_name": "test_08997.png", "caption": "This is the live performance of a Romanian folk music piece. It is instrumental. There is an accordion playing the leading melody while the fiddle, acoustic guitar and the upright bass play in the background. There is a percussive element in the rhythmic background. The atmosphere is lively and joyful.", "data_idx": 5327, "number": 3, "label": "jazz"} +{"file_name": "test_08998.png", "caption": "Someone is playing a Theremin on a very high pitch going up in pitch and with a lot of vibrato. This song may be playing at home while enjoying your instrument.", "data_idx": 5328, "number": 0, "label": "hiphop"} +{"file_name": "test_08999.png", "caption": "Someone is playing a Theremin on a very high pitch going up in pitch and with a lot of vibrato. This song may be playing at home while enjoying your instrument.", "data_idx": 5328, "number": 1, "label": "hiphop"} +{"file_name": "test_09000.png", "caption": "Someone is playing a Theremin on a very high pitch going up in pitch and with a lot of vibrato. This song may be playing at home while enjoying your instrument.", "data_idx": 5328, "number": 2, "label": "hiphop"} +{"file_name": "test_09001.png", "caption": "Someone is playing a Theremin on a very high pitch going up in pitch and with a lot of vibrato. This song may be playing at home while enjoying your instrument.", "data_idx": 5328, "number": 3, "label": "hiphop"} +{"file_name": "test_09002.png", "caption": "This audio contains someone playing a didgeridoo and a rattle sound. In the background you can hear birds chirping. This song may be played live by a busker.", "data_idx": 5330, "number": 0, "label": "rock"} +{"file_name": "test_09003.png", "caption": "This audio contains someone playing a didgeridoo and a rattle sound. In the background you can hear birds chirping. This song may be played live by a busker.", "data_idx": 5330, "number": 1, "label": "rock"} +{"file_name": "test_09004.png", "caption": "This is the live performance of an indie rock/post-punk piece. There is a male vocalist in the lead. The tune is being played by the electric guitar and the bass guitar while an electronic sound effect that resembles a laser is adding texture. There is a fast and slightly off-tempo acoustic drum beat playing in the rhythmic background. The atmosphere is energetic. The piece could be playing in the soundtrack of a teenage drama TV series.", "data_idx": 5331, "number": 0, "label": "metal"} +{"file_name": "test_09005.png", "caption": "This is the live performance of an indie rock/post-punk piece. There is a male vocalist in the lead. The tune is being played by the electric guitar and the bass guitar while an electronic sound effect that resembles a laser is adding texture. There is a fast and slightly off-tempo acoustic drum beat playing in the rhythmic background. The atmosphere is energetic. The piece could be playing in the soundtrack of a teenage drama TV series.", "data_idx": 5331, "number": 1, "label": "metal"} +{"file_name": "test_09006.png", "caption": "This is the live performance of an indie rock/post-punk piece. There is a male vocalist in the lead. The tune is being played by the electric guitar and the bass guitar while an electronic sound effect that resembles a laser is adding texture. There is a fast and slightly off-tempo acoustic drum beat playing in the rhythmic background. The atmosphere is energetic. The piece could be playing in the soundtrack of a teenage drama TV series.", "data_idx": 5331, "number": 2, "label": "metal"} +{"file_name": "test_09007.png", "caption": "This is the live performance of an indie rock/post-punk piece. There is a male vocalist in the lead. The tune is being played by the electric guitar and the bass guitar while an electronic sound effect that resembles a laser is adding texture. There is a fast and slightly off-tempo acoustic drum beat playing in the rhythmic background. The atmosphere is energetic. The piece could be playing in the soundtrack of a teenage drama TV series.", "data_idx": 5331, "number": 3, "label": "metal"} +{"file_name": "test_09008.png", "caption": "The low quality recording features a flat male vocal talking, after which there is an explosion sound effect, followed by resonating bells and loud percussive impact. The recording is noisy and in mono.", "data_idx": 5333, "number": 0, "label": "rock"} +{"file_name": "test_09009.png", "caption": "The low quality recording features a flat male vocal talking, after which there is an explosion sound effect, followed by resonating bells and loud percussive impact. The recording is noisy and in mono.", "data_idx": 5333, "number": 1, "label": "rock"} +{"file_name": "test_09010.png", "caption": "The low quality recording features a flat male vocal talking, after which there is an explosion sound effect, followed by resonating bells and loud percussive impact. The recording is noisy and in mono.", "data_idx": 5333, "number": 2, "label": "rock"} +{"file_name": "test_09011.png", "caption": "The low quality recording features a flat male vocal talking, after which there is an explosion sound effect, followed by resonating bells and loud percussive impact. The recording is noisy and in mono.", "data_idx": 5333, "number": 3, "label": "rock"} +{"file_name": "test_09012.png", "caption": "This song features a bass guitar playing a groovy lick at a high pitch. This is followed by a rock and roll pattern. This starts off on a high sequence. This is played for two bars followed by a sequence on a lower part of the bass. This song can be played in an instructional video for bass. There are no voices in this song. There are no other instruments in this song.", "data_idx": 5334, "number": 0, "label": "jazz"} +{"file_name": "test_09013.png", "caption": "This song features a bass guitar playing a groovy lick at a high pitch. This is followed by a rock and roll pattern. This starts off on a high sequence. This is played for two bars followed by a sequence on a lower part of the bass. This song can be played in an instructional video for bass. There are no voices in this song. There are no other instruments in this song.", "data_idx": 5334, "number": 1, "label": "jazz"} +{"file_name": "test_09014.png", "caption": "This song features a bass guitar playing a groovy lick at a high pitch. This is followed by a rock and roll pattern. This starts off on a high sequence. This is played for two bars followed by a sequence on a lower part of the bass. This song can be played in an instructional video for bass. There are no voices in this song. There are no other instruments in this song.", "data_idx": 5334, "number": 2, "label": "jazz"} +{"file_name": "test_09015.png", "caption": "This song features a bass guitar playing a groovy lick at a high pitch. This is followed by a rock and roll pattern. This starts off on a high sequence. This is played for two bars followed by a sequence on a lower part of the bass. This song can be played in an instructional video for bass. There are no voices in this song. There are no other instruments in this song.", "data_idx": 5334, "number": 3, "label": "jazz"} +{"file_name": "test_09016.png", "caption": "The low quality recording features synth strings in the left channel, synth keys melody, synth bells melody in the right channel of the stereo image, groovy bass, shimmering hi hats and mellow snare. It sounds digital, but it gives off happy and fun vibes.", "data_idx": 5335, "number": 0, "label": "jazz"} +{"file_name": "test_09017.png", "caption": "The low quality recording features synth strings in the left channel, synth keys melody, synth bells melody in the right channel of the stereo image, groovy bass, shimmering hi hats and mellow snare. It sounds digital, but it gives off happy and fun vibes.", "data_idx": 5335, "number": 1, "label": "jazz"} +{"file_name": "test_09018.png", "caption": "The low quality recording features synth strings in the left channel, synth keys melody, synth bells melody in the right channel of the stereo image, groovy bass, shimmering hi hats and mellow snare. It sounds digital, but it gives off happy and fun vibes.", "data_idx": 5335, "number": 2, "label": "jazz"} +{"file_name": "test_09019.png", "caption": "The low quality recording features synth strings in the left channel, synth keys melody, synth bells melody in the right channel of the stereo image, groovy bass, shimmering hi hats and mellow snare. It sounds digital, but it gives off happy and fun vibes.", "data_idx": 5335, "number": 3, "label": "jazz"} +{"file_name": "test_09020.png", "caption": "The low quality recording features a boomy wooden percussion one shot, after which a flat female vocal is talking. It sounds like some sort of tutorial and the recording is noisy and in mono.", "data_idx": 5336, "number": 0, "label": "hiphop"} +{"file_name": "test_09021.png", "caption": "The low quality recording features a boomy wooden percussion one shot, after which a flat female vocal is talking. It sounds like some sort of tutorial and the recording is noisy and in mono.", "data_idx": 5336, "number": 1, "label": "hiphop"} +{"file_name": "test_09022.png", "caption": "The low quality recording features a boomy wooden percussion one shot, after which a flat female vocal is talking. It sounds like some sort of tutorial and the recording is noisy and in mono.", "data_idx": 5336, "number": 2, "label": "hiphop"} +{"file_name": "test_09023.png", "caption": "The low quality recording features a boomy wooden percussion one shot, after which a flat female vocal is talking. It sounds like some sort of tutorial and the recording is noisy and in mono.", "data_idx": 5336, "number": 3, "label": "hiphop"} +{"file_name": "test_09024.png", "caption": "This is a tutorial on how to use the conga percussion instrument. The American tutor narrates his actions as he plays. There are two tones - the open tone is lower and the closed tone is higher pitched.", "data_idx": 5337, "number": 0, "label": "hiphop"} +{"file_name": "test_09025.png", "caption": "This is a tutorial on how to use the conga percussion instrument. The American tutor narrates his actions as he plays. There are two tones - the open tone is lower and the closed tone is higher pitched.", "data_idx": 5337, "number": 1, "label": "hiphop"} +{"file_name": "test_09026.png", "caption": "This is a tutorial on how to use the conga percussion instrument. The American tutor narrates his actions as he plays. There are two tones - the open tone is lower and the closed tone is higher pitched.", "data_idx": 5337, "number": 2, "label": "hiphop"} +{"file_name": "test_09027.png", "caption": "This is a tutorial on how to use the conga percussion instrument. The American tutor narrates his actions as he plays. There are two tones - the open tone is lower and the closed tone is higher pitched.", "data_idx": 5337, "number": 3, "label": "hiphop"} +{"file_name": "test_09028.png", "caption": "The song is an instrumental. The tempo is medium with an electric guitar playing a blues solo with an effects pedal and amplifier. The solo is heartfelt and has a lot of soul and spirit to it. The audio quality is bad.", "data_idx": 5338, "number": 0, "label": "jazz"} +{"file_name": "test_09029.png", "caption": "The song is an instrumental. The tempo is medium with an electric guitar playing a blues solo with an effects pedal and amplifier. The solo is heartfelt and has a lot of soul and spirit to it. The audio quality is bad.", "data_idx": 5338, "number": 1, "label": "jazz"} +{"file_name": "test_09030.png", "caption": "This is a harmonica cover of a soul music piece. The harmonica plays a groovy solo. In the melodic background, there is a keyboard and a bass guitar. The rhythm is provided by the acoustic drums. The atmosphere is uplifting. The song is in major key.", "data_idx": 5339, "number": 0, "label": "blues"} +{"file_name": "test_09031.png", "caption": "This is a harmonica cover of a soul music piece. The harmonica plays a groovy solo. In the melodic background, there is a keyboard and a bass guitar. The rhythm is provided by the acoustic drums. The atmosphere is uplifting. The song is in major key.", "data_idx": 5339, "number": 1, "label": "blues"} +{"file_name": "test_09032.png", "caption": "This is a harmonica cover of a soul music piece. The harmonica plays a groovy solo. In the melodic background, there is a keyboard and a bass guitar. The rhythm is provided by the acoustic drums. The atmosphere is uplifting. The song is in major key.", "data_idx": 5339, "number": 2, "label": "blues"} +{"file_name": "test_09033.png", "caption": "This is a harmonica cover of a soul music piece. The harmonica plays a groovy solo. In the melodic background, there is a keyboard and a bass guitar. The rhythm is provided by the acoustic drums. The atmosphere is uplifting. The song is in major key.", "data_idx": 5339, "number": 3, "label": "blues"} +{"file_name": "test_09034.png", "caption": "This amateur recording features a trumpet playing the main melody. The song starts with a string section playing a chord and fading away. The trumpet starts to play the melody. This is backed by a stringed instrument plucking chords. This sounds like a harp or an acoustic guitar. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 5340, "number": 0, "label": "classical"} +{"file_name": "test_09035.png", "caption": "This amateur recording features a trumpet playing the main melody. The song starts with a string section playing a chord and fading away. The trumpet starts to play the melody. This is backed by a stringed instrument plucking chords. This sounds like a harp or an acoustic guitar. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 5340, "number": 1, "label": "classical"} +{"file_name": "test_09036.png", "caption": "This amateur recording features a trumpet playing the main melody. The song starts with a string section playing a chord and fading away. The trumpet starts to play the melody. This is backed by a stringed instrument plucking chords. This sounds like a harp or an acoustic guitar. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 5340, "number": 2, "label": "classical"} +{"file_name": "test_09037.png", "caption": "This amateur recording features a trumpet playing the main melody. The song starts with a string section playing a chord and fading away. The trumpet starts to play the melody. This is backed by a stringed instrument plucking chords. This sounds like a harp or an acoustic guitar. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 5340, "number": 3, "label": "classical"} +{"file_name": "test_09038.png", "caption": "The low quality recording features a folk song that consists of flat male vocals, alongside harmonizing female vocals, singing over groovy bass, strings melody, shimmering hi hats, and \"4 on the floor\" kick pattern. It sounds energetic, happy and fun.", "data_idx": 5342, "number": 0, "label": "disco"} +{"file_name": "test_09039.png", "caption": "The low quality recording features a folk song that consists of flat male vocals, alongside harmonizing female vocals, singing over groovy bass, strings melody, shimmering hi hats, and \"4 on the floor\" kick pattern. It sounds energetic, happy and fun.", "data_idx": 5342, "number": 1, "label": "disco"} +{"file_name": "test_09040.png", "caption": "The low quality recording features a folk song that consists of flat male vocals, alongside harmonizing female vocals, singing over groovy bass, strings melody, shimmering hi hats, and \"4 on the floor\" kick pattern. It sounds energetic, happy and fun.", "data_idx": 5342, "number": 2, "label": "disco"} +{"file_name": "test_09041.png", "caption": "The low quality recording features a folk song that consists of flat male vocals, alongside harmonizing female vocals, singing over groovy bass, strings melody, shimmering hi hats, and \"4 on the floor\" kick pattern. It sounds energetic, happy and fun.", "data_idx": 5342, "number": 3, "label": "disco"} +{"file_name": "test_09042.png", "caption": "Groovy, funky world music with a male vocalist, deep bass, syncopated percussion and synthesizer chords and a clean electric guitar with a chorus effect.", "data_idx": 5346, "number": 0, "label": "reggae"} +{"file_name": "test_09043.png", "caption": "Groovy, funky world music with a male vocalist, deep bass, syncopated percussion and synthesizer chords and a clean electric guitar with a chorus effect.", "data_idx": 5346, "number": 1, "label": "reggae"} +{"file_name": "test_09044.png", "caption": "Groovy, funky world music with a male vocalist, deep bass, syncopated percussion and synthesizer chords and a clean electric guitar with a chorus effect.", "data_idx": 5346, "number": 2, "label": "reggae"} +{"file_name": "test_09045.png", "caption": "Groovy, funky world music with a male vocalist, deep bass, syncopated percussion and synthesizer chords and a clean electric guitar with a chorus effect.", "data_idx": 5346, "number": 3, "label": "reggae"} +{"file_name": "test_09046.png", "caption": "The low quality recording features an energetic drums solo that consists of punchy snare, tom and kick hits, alongside repetitive cowbell. There is a flat male vocal talking right before the solo. It sounds like a tutorial. The recording is noisy and in mono.", "data_idx": 5347, "number": 0, "label": "rock"} +{"file_name": "test_09047.png", "caption": "The low quality recording features an energetic drums solo that consists of punchy snare, tom and kick hits, alongside repetitive cowbell. There is a flat male vocal talking right before the solo. It sounds like a tutorial. The recording is noisy and in mono.", "data_idx": 5347, "number": 1, "label": "rock"} +{"file_name": "test_09048.png", "caption": "The Rock song features a shimmering hi hats, energetic crash cymbal, punchy kick and snare hits, groovy bass guitar and wide electric guitars melodies playing on top of them. It sounds energetic and exciting.", "data_idx": 5348, "number": 0, "label": "metal"} +{"file_name": "test_09049.png", "caption": "The Rock song features a shimmering hi hats, energetic crash cymbal, punchy kick and snare hits, groovy bass guitar and wide electric guitars melodies playing on top of them. It sounds energetic and exciting.", "data_idx": 5348, "number": 1, "label": "metal"} +{"file_name": "test_09050.png", "caption": "The Rock song features a shimmering hi hats, energetic crash cymbal, punchy kick and snare hits, groovy bass guitar and wide electric guitars melodies playing on top of them. It sounds energetic and exciting.", "data_idx": 5348, "number": 2, "label": "metal"} +{"file_name": "test_09051.png", "caption": "The Rock song features a shimmering hi hats, energetic crash cymbal, punchy kick and snare hits, groovy bass guitar and wide electric guitars melodies playing on top of them. It sounds energetic and exciting.", "data_idx": 5348, "number": 3, "label": "metal"} +{"file_name": "test_09052.png", "caption": "The song is an instrumental. The tempo is slow with a choir harmonising and creating ethereal chants, string section and a philharmonic orchestra harmony backing. The song is ethereal and magical. The song has poor audio quality.", "data_idx": 5350, "number": 0, "label": "classical"} +{"file_name": "test_09053.png", "caption": "The song is an instrumental. The tempo is slow with a choir harmonising and creating ethereal chants, string section and a philharmonic orchestra harmony backing. The song is ethereal and magical. The song has poor audio quality.", "data_idx": 5350, "number": 1, "label": "classical"} +{"file_name": "test_09054.png", "caption": "The song is an instrumental. The tempo is slow with a choir harmonising and creating ethereal chants, string section and a philharmonic orchestra harmony backing. The song is ethereal and magical. The song has poor audio quality.", "data_idx": 5350, "number": 2, "label": "classical"} +{"file_name": "test_09055.png", "caption": "The song is an instrumental. The tempo is slow with a choir harmonising and creating ethereal chants, string section and a philharmonic orchestra harmony backing. The song is ethereal and magical. The song has poor audio quality.", "data_idx": 5350, "number": 3, "label": "classical"} +{"file_name": "test_09056.png", "caption": "This is a Christian gospel music piece. There is a male vocalist singing passionately in the lead with a male choir that is at a relatively higher pitch than him singing in the back. The main melody is played by the keyboard and the electric guitar. There is a bass guitar that can be heard. The acoustic drums are playing an upbeat rhythm. The atmosphere is religious. This piece could be played at Christian religious events.", "data_idx": 5351, "number": 0, "label": "disco"} +{"file_name": "test_09057.png", "caption": "This is a Christian gospel music piece. There is a male vocalist singing passionately in the lead with a male choir that is at a relatively higher pitch than him singing in the back. The main melody is played by the keyboard and the electric guitar. There is a bass guitar that can be heard. The acoustic drums are playing an upbeat rhythm. The atmosphere is religious. This piece could be played at Christian religious events.", "data_idx": 5351, "number": 1, "label": "disco"} +{"file_name": "test_09058.png", "caption": "This is a Christian gospel music piece. There is a male vocalist singing passionately in the lead with a male choir that is at a relatively higher pitch than him singing in the back. The main melody is played by the keyboard and the electric guitar. There is a bass guitar that can be heard. The acoustic drums are playing an upbeat rhythm. The atmosphere is religious. This piece could be played at Christian religious events.", "data_idx": 5351, "number": 2, "label": "disco"} +{"file_name": "test_09059.png", "caption": "This is a Christian gospel music piece. There is a male vocalist singing passionately in the lead with a male choir that is at a relatively higher pitch than him singing in the back. The main melody is played by the keyboard and the electric guitar. There is a bass guitar that can be heard. The acoustic drums are playing an upbeat rhythm. The atmosphere is religious. This piece could be played at Christian religious events.", "data_idx": 5351, "number": 3, "label": "disco"} +{"file_name": "test_09060.png", "caption": "This music is a lively drum instrumental. The tempo is fast with an enthusiastic drum routine. It is loud, rhythmic, catchy and intense.", "data_idx": 5352, "number": 0, "label": "hiphop"} +{"file_name": "test_09061.png", "caption": "This music is a lively drum instrumental. The tempo is fast with an enthusiastic drum routine. It is loud, rhythmic, catchy and intense.", "data_idx": 5352, "number": 1, "label": "hiphop"} +{"file_name": "test_09062.png", "caption": "This song comes with a male voice singing in a higher key and strings playing the same melody in the background in the midrange. A timpani hit is playing along with the drums. This song may be playing in a latin country where someone is cleaning the house with open doors and windows listening to this song in a very loud volume.", "data_idx": 5353, "number": 0, "label": "rock"} +{"file_name": "test_09063.png", "caption": "This song comes with a male voice singing in a higher key and strings playing the same melody in the background in the midrange. A timpani hit is playing along with the drums. This song may be playing in a latin country where someone is cleaning the house with open doors and windows listening to this song in a very loud volume.", "data_idx": 5353, "number": 1, "label": "rock"} +{"file_name": "test_09064.png", "caption": "This song comes with a male voice singing in a higher key and strings playing the same melody in the background in the midrange. A timpani hit is playing along with the drums. This song may be playing in a latin country where someone is cleaning the house with open doors and windows listening to this song in a very loud volume.", "data_idx": 5353, "number": 2, "label": "rock"} +{"file_name": "test_09065.png", "caption": "This song comes with a male voice singing in a higher key and strings playing the same melody in the background in the midrange. A timpani hit is playing along with the drums. This song may be playing in a latin country where someone is cleaning the house with open doors and windows listening to this song in a very loud volume.", "data_idx": 5353, "number": 3, "label": "rock"} +{"file_name": "test_09066.png", "caption": "The low quality recording features a live performance of a traditional song that consists of leg tapping sounds, giving a rhythm to a bagpipe melody. There are some laughing sounds in the background. It sounds passionate and the recording is in mono and noisy.", "data_idx": 5354, "number": 0, "label": "classical"} +{"file_name": "test_09067.png", "caption": "The low quality recording features a live performance of a traditional song that consists of leg tapping sounds, giving a rhythm to a bagpipe melody. There are some laughing sounds in the background. It sounds passionate and the recording is in mono and noisy.", "data_idx": 5354, "number": 1, "label": "classical"} +{"file_name": "test_09068.png", "caption": "The low quality recording features a live performance of a traditional song that consists of leg tapping sounds, giving a rhythm to a bagpipe melody. There are some laughing sounds in the background. It sounds passionate and the recording is in mono and noisy.", "data_idx": 5354, "number": 2, "label": "classical"} +{"file_name": "test_09069.png", "caption": "The low quality recording features a live performance of a traditional song that consists of leg tapping sounds, giving a rhythm to a bagpipe melody. There are some laughing sounds in the background. It sounds passionate and the recording is in mono and noisy.", "data_idx": 5354, "number": 3, "label": "classical"} +{"file_name": "test_09070.png", "caption": "Thissong contains two acoustic guitars panned to both sides of the speakers finger picking a repeating melody. In the background a synth pad/drone is playing a continuous chord in the mid- to high range. A female voice is adding a vocal melody in a higher register along with different flute sounds repeating the same melody. The elements are spread across the sides of the speakers. A shaker is holding the rhythmic part with reverb. This song may be playing for a slow ecstatic dance.", "data_idx": 5356, "number": 0, "label": "classical"} +{"file_name": "test_09071.png", "caption": "Thissong contains two acoustic guitars panned to both sides of the speakers finger picking a repeating melody. In the background a synth pad/drone is playing a continuous chord in the mid- to high range. A female voice is adding a vocal melody in a higher register along with different flute sounds repeating the same melody. The elements are spread across the sides of the speakers. A shaker is holding the rhythmic part with reverb. This song may be playing for a slow ecstatic dance.", "data_idx": 5356, "number": 1, "label": "classical"} +{"file_name": "test_09072.png", "caption": "Thissong contains two acoustic guitars panned to both sides of the speakers finger picking a repeating melody. In the background a synth pad/drone is playing a continuous chord in the mid- to high range. A female voice is adding a vocal melody in a higher register along with different flute sounds repeating the same melody. The elements are spread across the sides of the speakers. A shaker is holding the rhythmic part with reverb. This song may be playing for a slow ecstatic dance.", "data_idx": 5356, "number": 2, "label": "classical"} +{"file_name": "test_09073.png", "caption": "Thissong contains two acoustic guitars panned to both sides of the speakers finger picking a repeating melody. In the background a synth pad/drone is playing a continuous chord in the mid- to high range. A female voice is adding a vocal melody in a higher register along with different flute sounds repeating the same melody. The elements are spread across the sides of the speakers. A shaker is holding the rhythmic part with reverb. This song may be playing for a slow ecstatic dance.", "data_idx": 5356, "number": 3, "label": "classical"} +{"file_name": "test_09074.png", "caption": "This is a comedy music piece. The male vocals are singing in a funny manner in the Hindi language. The rhythm is being played by percussive elements such as the tabla and the kanjira. The atmosphere is amusing. This piece could be used in the background of a comedy skit.", "data_idx": 5357, "number": 0, "label": "reggae"} +{"file_name": "test_09075.png", "caption": "This is a comedy music piece. The male vocals are singing in a funny manner in the Hindi language. The rhythm is being played by percussive elements such as the tabla and the kanjira. The atmosphere is amusing. This piece could be used in the background of a comedy skit.", "data_idx": 5357, "number": 1, "label": "reggae"} +{"file_name": "test_09076.png", "caption": "This is a comedy music piece. The male vocals are singing in a funny manner in the Hindi language. The rhythm is being played by percussive elements such as the tabla and the kanjira. The atmosphere is amusing. This piece could be used in the background of a comedy skit.", "data_idx": 5357, "number": 2, "label": "reggae"} +{"file_name": "test_09077.png", "caption": "This is a comedy music piece. The male vocals are singing in a funny manner in the Hindi language. The rhythm is being played by percussive elements such as the tabla and the kanjira. The atmosphere is amusing. This piece could be used in the background of a comedy skit.", "data_idx": 5357, "number": 3, "label": "reggae"} +{"file_name": "test_09078.png", "caption": "This music is instrumental. The tempo is fast with a spirited harpsichord, contrasting melancholic violin harmony, flute, cello , viola and piano accompaniment. The music is complex, syncopated , melancholic, wistful, anxious and restless. This music is a Western Classical Piece.", "data_idx": 5360, "number": 0, "label": "classical"} +{"file_name": "test_09079.png", "caption": "This music is instrumental. The tempo is fast with a spirited harpsichord, contrasting melancholic violin harmony, flute, cello , viola and piano accompaniment. The music is complex, syncopated , melancholic, wistful, anxious and restless. This music is a Western Classical Piece.", "data_idx": 5360, "number": 1, "label": "classical"} +{"file_name": "test_09080.png", "caption": "This music is instrumental. The tempo is fast with a spirited harpsichord, contrasting melancholic violin harmony, flute, cello , viola and piano accompaniment. The music is complex, syncopated , melancholic, wistful, anxious and restless. This music is a Western Classical Piece.", "data_idx": 5360, "number": 2, "label": "classical"} +{"file_name": "test_09081.png", "caption": "This music is instrumental. The tempo is fast with a spirited harpsichord, contrasting melancholic violin harmony, flute, cello , viola and piano accompaniment. The music is complex, syncopated , melancholic, wistful, anxious and restless. This music is a Western Classical Piece.", "data_idx": 5360, "number": 3, "label": "classical"} +{"file_name": "test_09082.png", "caption": "The low quality recording features a passionate accordion melody playing over a shimmering tambourine. It sounds joyful, happy and the recording is noisy and in mono.", "data_idx": 5367, "number": 0, "label": "classical"} +{"file_name": "test_09083.png", "caption": "The low quality recording features a passionate accordion melody playing over a shimmering tambourine. It sounds joyful, happy and the recording is noisy and in mono.", "data_idx": 5367, "number": 1, "label": "classical"} +{"file_name": "test_09084.png", "caption": "The low quality recording features a passionate accordion melody playing over a shimmering tambourine. It sounds joyful, happy and the recording is noisy and in mono.", "data_idx": 5367, "number": 2, "label": "classical"} +{"file_name": "test_09085.png", "caption": "The low quality recording features a passionate accordion melody playing over a shimmering tambourine. It sounds joyful, happy and the recording is noisy and in mono.", "data_idx": 5367, "number": 3, "label": "classical"} +{"file_name": "test_09086.png", "caption": "The low quality recording features an instrumental of a pop song that consists of an addictive synth lead melody, punchy \"4 on the floor\" kick pattern, shimmering hi hats, riser and groovy bass in the first half of the loop. In the second half of the loop there is a tinny, high pitched snaps and groovy piano melody playing. It sounds energetic, exciting and addictive.", "data_idx": 5368, "number": 0, "label": "reggae"} +{"file_name": "test_09087.png", "caption": "The low quality recording features an instrumental of a pop song that consists of an addictive synth lead melody, punchy \"4 on the floor\" kick pattern, shimmering hi hats, riser and groovy bass in the first half of the loop. In the second half of the loop there is a tinny, high pitched snaps and groovy piano melody playing. It sounds energetic, exciting and addictive.", "data_idx": 5368, "number": 1, "label": "reggae"} +{"file_name": "test_09088.png", "caption": "The low quality recording features an instrumental of a pop song that consists of an addictive synth lead melody, punchy \"4 on the floor\" kick pattern, shimmering hi hats, riser and groovy bass in the first half of the loop. In the second half of the loop there is a tinny, high pitched snaps and groovy piano melody playing. It sounds energetic, exciting and addictive.", "data_idx": 5368, "number": 2, "label": "reggae"} +{"file_name": "test_09089.png", "caption": "The low quality recording features an instrumental of a pop song that consists of an addictive synth lead melody, punchy \"4 on the floor\" kick pattern, shimmering hi hats, riser and groovy bass in the first half of the loop. In the second half of the loop there is a tinny, high pitched snaps and groovy piano melody playing. It sounds energetic, exciting and addictive.", "data_idx": 5368, "number": 3, "label": "reggae"} +{"file_name": "test_09090.png", "caption": "Heavily processed girl band with multiple female singers in a pop or R&B style, using autotune, vocal hocketing, and melisma with multiple synthesizers accompanying.", "data_idx": 5372, "number": 0, "label": "pop"} +{"file_name": "test_09091.png", "caption": "Heavily processed girl band with multiple female singers in a pop or R&B style, using autotune, vocal hocketing, and melisma with multiple synthesizers accompanying.", "data_idx": 5372, "number": 1, "label": "pop"} +{"file_name": "test_09092.png", "caption": "Heavily processed girl band with multiple female singers in a pop or R&B style, using autotune, vocal hocketing, and melisma with multiple synthesizers accompanying.", "data_idx": 5372, "number": 2, "label": "pop"} +{"file_name": "test_09093.png", "caption": "Heavily processed girl band with multiple female singers in a pop or R&B style, using autotune, vocal hocketing, and melisma with multiple synthesizers accompanying.", "data_idx": 5372, "number": 3, "label": "pop"} +{"file_name": "test_09094.png", "caption": "The low quality recording features a funk song that consists of crowd cheering and crowd singing over punchy kick and snare hits, shimmering hi hats, brass melody and groovy bass. There is a shimmering bell glissando that serves as a transition into the next section. Overall it sounds funky and groovy.", "data_idx": 5373, "number": 0, "label": "classical"} +{"file_name": "test_09095.png", "caption": "The low quality recording features a funk song that consists of crowd cheering and crowd singing over punchy kick and snare hits, shimmering hi hats, brass melody and groovy bass. There is a shimmering bell glissando that serves as a transition into the next section. Overall it sounds funky and groovy.", "data_idx": 5373, "number": 1, "label": "classical"} +{"file_name": "test_09096.png", "caption": "The low quality recording features a funk song that consists of crowd cheering and crowd singing over punchy kick and snare hits, shimmering hi hats, brass melody and groovy bass. There is a shimmering bell glissando that serves as a transition into the next section. Overall it sounds funky and groovy.", "data_idx": 5373, "number": 2, "label": "classical"} +{"file_name": "test_09097.png", "caption": "The low quality recording features a funk song that consists of crowd cheering and crowd singing over punchy kick and snare hits, shimmering hi hats, brass melody and groovy bass. There is a shimmering bell glissando that serves as a transition into the next section. Overall it sounds funky and groovy.", "data_idx": 5373, "number": 3, "label": "classical"} +{"file_name": "test_09098.png", "caption": "The low quality recording features a live performance of groovy hi hats, wide marimba melody, shimmering shakers and a punchy kick pattern. It sounds reverberant, probably because they performed in a medium size space, exotic and passionate.", "data_idx": 5376, "number": 0, "label": "blues"} +{"file_name": "test_09099.png", "caption": "The low quality recording features a live performance of groovy hi hats, wide marimba melody, shimmering shakers and a punchy kick pattern. It sounds reverberant, probably because they performed in a medium size space, exotic and passionate.", "data_idx": 5376, "number": 1, "label": "blues"} +{"file_name": "test_09100.png", "caption": "The low quality recording features a live performance of groovy hi hats, wide marimba melody, shimmering shakers and a punchy kick pattern. It sounds reverberant, probably because they performed in a medium size space, exotic and passionate.", "data_idx": 5376, "number": 2, "label": "blues"} +{"file_name": "test_09101.png", "caption": "The low quality recording features a live performance of groovy hi hats, wide marimba melody, shimmering shakers and a punchy kick pattern. It sounds reverberant, probably because they performed in a medium size space, exotic and passionate.", "data_idx": 5376, "number": 3, "label": "blues"} +{"file_name": "test_09102.png", "caption": "The song is an instrumental. The song is medium with a DJ creating scratchy tones by scratching vinyl on a turntable. The DJ creates an eerie and syncopated rhythm. The audio is bad quality.", "data_idx": 5377, "number": 0, "label": "reggae"} +{"file_name": "test_09103.png", "caption": "The song is an instrumental. The song is medium with a DJ creating scratchy tones by scratching vinyl on a turntable. The DJ creates an eerie and syncopated rhythm. The audio is bad quality.", "data_idx": 5377, "number": 1, "label": "reggae"} +{"file_name": "test_09104.png", "caption": "The song is an instrumental. The song is medium with a DJ creating scratchy tones by scratching vinyl on a turntable. The DJ creates an eerie and syncopated rhythm. The audio is bad quality.", "data_idx": 5377, "number": 2, "label": "reggae"} +{"file_name": "test_09105.png", "caption": "The song is an instrumental. The song is medium with a DJ creating scratchy tones by scratching vinyl on a turntable. The DJ creates an eerie and syncopated rhythm. The audio is bad quality.", "data_idx": 5377, "number": 3, "label": "reggae"} +{"file_name": "test_09106.png", "caption": "The low quality recording features a classical song that consists of a mellow french horn melody playing over wide strings. It is a bit noisy and it sounds passionate, easygoing and like something you would hear as a background music for old movies.", "data_idx": 5379, "number": 0, "label": "classical"} +{"file_name": "test_09107.png", "caption": "The low quality recording features a classical song that consists of a mellow french horn melody playing over wide strings. It is a bit noisy and it sounds passionate, easygoing and like something you would hear as a background music for old movies.", "data_idx": 5379, "number": 1, "label": "classical"} +{"file_name": "test_09108.png", "caption": "The low quality recording features a classical song that consists of a mellow french horn melody playing over wide strings. It is a bit noisy and it sounds passionate, easygoing and like something you would hear as a background music for old movies.", "data_idx": 5379, "number": 2, "label": "classical"} +{"file_name": "test_09109.png", "caption": "The low quality recording features a classical song that consists of a mellow french horn melody playing over wide strings. It is a bit noisy and it sounds passionate, easygoing and like something you would hear as a background music for old movies.", "data_idx": 5379, "number": 3, "label": "classical"} +{"file_name": "test_09110.png", "caption": "This is a live performance of a classical music piece from the baroque era. The piece is being performed on a harpsichord. There is a medieval sound to the piece. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie moments before a face-off or a battle.", "data_idx": 5380, "number": 0, "label": "classical"} +{"file_name": "test_09111.png", "caption": "This is a live performance of a classical music piece from the baroque era. The piece is being performed on a harpsichord. There is a medieval sound to the piece. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie moments before a face-off or a battle.", "data_idx": 5380, "number": 1, "label": "classical"} +{"file_name": "test_09112.png", "caption": "This is a live performance of a classical music piece from the baroque era. The piece is being performed on a harpsichord. There is a medieval sound to the piece. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie moments before a face-off or a battle.", "data_idx": 5380, "number": 2, "label": "classical"} +{"file_name": "test_09113.png", "caption": "This is a live performance of a classical music piece from the baroque era. The piece is being performed on a harpsichord. There is a medieval sound to the piece. The atmosphere is dramatic. This piece could be used in the soundtrack of a historical drama movie moments before a face-off or a battle.", "data_idx": 5380, "number": 3, "label": "classical"} +{"file_name": "test_09114.png", "caption": "Someone is playing a simple repeating melody on a zitar along with a small harp. A flute is playing the same melody in the higher mid-range. A male voice is singing along. Someone is playing tabla. This song sounds calm and repetitive. This song may be playing live at a local performance place.", "data_idx": 5382, "number": 0, "label": "reggae"} +{"file_name": "test_09115.png", "caption": "Someone is playing a simple repeating melody on a zitar along with a small harp. A flute is playing the same melody in the higher mid-range. A male voice is singing along. Someone is playing tabla. This song sounds calm and repetitive. This song may be playing live at a local performance place.", "data_idx": 5382, "number": 1, "label": "reggae"} +{"file_name": "test_09116.png", "caption": "Someone is playing a simple repeating melody on a zitar along with a small harp. A flute is playing the same melody in the higher mid-range. A male voice is singing along. Someone is playing tabla. This song sounds calm and repetitive. This song may be playing live at a local performance place.", "data_idx": 5382, "number": 2, "label": "reggae"} +{"file_name": "test_09117.png", "caption": "Someone is playing a simple repeating melody on a zitar along with a small harp. A flute is playing the same melody in the higher mid-range. A male voice is singing along. Someone is playing tabla. This song sounds calm and repetitive. This song may be playing live at a local performance place.", "data_idx": 5382, "number": 3, "label": "reggae"} +{"file_name": "test_09118.png", "caption": "This instrumental song features a harp being played. This song is in compound time of 6/8. The bass note is played on the first count of the bar. The high part plays four descending notes followed by two ascending notes in each bar. On the fourth bar, the strings are tapped on the second half of the bar to give a percussive effect. Then the melody continues. There are no other instruments in this song. There are no voices in this song. This is an amateur recording. This song can be played in a dreamy sequence in a movie.", "data_idx": 5387, "number": 0, "label": "classical"} +{"file_name": "test_09119.png", "caption": "This instrumental song features a harp being played. This song is in compound time of 6/8. The bass note is played on the first count of the bar. The high part plays four descending notes followed by two ascending notes in each bar. On the fourth bar, the strings are tapped on the second half of the bar to give a percussive effect. Then the melody continues. There are no other instruments in this song. There are no voices in this song. This is an amateur recording. This song can be played in a dreamy sequence in a movie.", "data_idx": 5387, "number": 1, "label": "classical"} +{"file_name": "test_09120.png", "caption": "The low quality recording features a bagpipe melody, layered with an electric guitar lick and followed by punchy kick hits. In the background there are some crowd talking noises and claps. It sounds exciting and the recording is noisy and in mono.", "data_idx": 5389, "number": 0, "label": "rock"} +{"file_name": "test_09121.png", "caption": "The low quality recording features a bagpipe melody, layered with an electric guitar lick and followed by punchy kick hits. In the background there are some crowd talking noises and claps. It sounds exciting and the recording is noisy and in mono.", "data_idx": 5389, "number": 1, "label": "rock"} +{"file_name": "test_09122.png", "caption": "The low quality recording features a bagpipe melody, layered with an electric guitar lick and followed by punchy kick hits. In the background there are some crowd talking noises and claps. It sounds exciting and the recording is noisy and in mono.", "data_idx": 5389, "number": 2, "label": "rock"} +{"file_name": "test_09123.png", "caption": "The low quality recording features a bagpipe melody, layered with an electric guitar lick and followed by punchy kick hits. In the background there are some crowd talking noises and claps. It sounds exciting and the recording is noisy and in mono.", "data_idx": 5389, "number": 3, "label": "rock"} +{"file_name": "test_09124.png", "caption": "The low quality recording features an electric guitar melody played with a distortion pedal effect that changes its preset in the second half of the recording. The recording is mono and noisy.", "data_idx": 5390, "number": 0, "label": "jazz"} +{"file_name": "test_09125.png", "caption": "The low quality recording features an electric guitar melody played with a distortion pedal effect that changes its preset in the second half of the recording. The recording is mono and noisy.", "data_idx": 5390, "number": 1, "label": "jazz"} +{"file_name": "test_09126.png", "caption": "The low quality recording features an electric guitar melody played with a distortion pedal effect that changes its preset in the second half of the recording. The recording is mono and noisy.", "data_idx": 5390, "number": 2, "label": "jazz"} +{"file_name": "test_09127.png", "caption": "The low quality recording features an electric guitar melody played with a distortion pedal effect that changes its preset in the second half of the recording. The recording is mono and noisy.", "data_idx": 5390, "number": 3, "label": "jazz"} +{"file_name": "test_09128.png", "caption": "The song is an instrumental. The tempo is medium with a horn player playing a traditional animal horn in a single long note which fades out. The song is poignant and emotional. The audio quality is poor.", "data_idx": 5391, "number": 0, "label": "jazz"} +{"file_name": "test_09129.png", "caption": "The song is an instrumental. The tempo is medium with a horn player playing a traditional animal horn in a single long note which fades out. The song is poignant and emotional. The audio quality is poor.", "data_idx": 5391, "number": 1, "label": "jazz"} +{"file_name": "test_09130.png", "caption": "The song is an instrumental. The tempo is medium with a horn player playing a traditional animal horn in a single long note which fades out. The song is poignant and emotional. The audio quality is poor.", "data_idx": 5391, "number": 2, "label": "jazz"} +{"file_name": "test_09131.png", "caption": "The song is an instrumental. The tempo is medium with a horn player playing a traditional animal horn in a single long note which fades out. The song is poignant and emotional. The audio quality is poor.", "data_idx": 5391, "number": 3, "label": "jazz"} +{"file_name": "test_09132.png", "caption": "The low quality recording features a wide synth pad chord, followed by quiet buzzy sound. It sounds calming and relaxing - like something you would listen to in a yoga session.", "data_idx": 5394, "number": 0, "label": "jazz"} +{"file_name": "test_09133.png", "caption": "The low quality recording features a wide synth pad chord, followed by quiet buzzy sound. It sounds calming and relaxing - like something you would listen to in a yoga session.", "data_idx": 5394, "number": 1, "label": "jazz"} +{"file_name": "test_09134.png", "caption": "The low quality recording features a wide synth pad chord, followed by quiet buzzy sound. It sounds calming and relaxing - like something you would listen to in a yoga session.", "data_idx": 5394, "number": 2, "label": "jazz"} +{"file_name": "test_09135.png", "caption": "The low quality recording features a wide synth pad chord, followed by quiet buzzy sound. It sounds calming and relaxing - like something you would listen to in a yoga session.", "data_idx": 5394, "number": 3, "label": "jazz"} +{"file_name": "test_09136.png", "caption": "The low quality recording features an ambient song that contains a flat male vocal softly talking over mellow strings and soft sea waves sounds. It sounds relaxing and calming - like something you would hear at a yoga session.", "data_idx": 5395, "number": 0, "label": "rock"} +{"file_name": "test_09137.png", "caption": "The low quality recording features an ambient song that contains a flat male vocal softly talking over mellow strings and soft sea waves sounds. It sounds relaxing and calming - like something you would hear at a yoga session.", "data_idx": 5395, "number": 1, "label": "rock"} +{"file_name": "test_09138.png", "caption": "The low quality recording features an ambient song that contains a flat male vocal softly talking over mellow strings and soft sea waves sounds. It sounds relaxing and calming - like something you would hear at a yoga session.", "data_idx": 5395, "number": 2, "label": "rock"} +{"file_name": "test_09139.png", "caption": "The low quality recording features an ambient song that contains a flat male vocal softly talking over mellow strings and soft sea waves sounds. It sounds relaxing and calming - like something you would hear at a yoga session.", "data_idx": 5395, "number": 3, "label": "rock"} +{"file_name": "test_09140.png", "caption": "This audio contains someone playing a high pitch melody on a bagpipe. This song may be playing during a traditional live performance.", "data_idx": 5396, "number": 0, "label": "classical"} +{"file_name": "test_09141.png", "caption": "This audio contains someone playing a high pitch melody on a bagpipe. This song may be playing during a traditional live performance.", "data_idx": 5396, "number": 1, "label": "classical"} +{"file_name": "test_09142.png", "caption": "THis song contains a piano playing a major chord progression in the midrange with the left hand playing bass notes creating a simple bassline. An acoustic drum is playing a constant groove without any big changes. A male voice is singing in a higher register getting backing vocals from another male voice. In the background you can hear the crowd cheering. It mostly sounds like female voices. This song may be playing at a live concert.", "data_idx": 5397, "number": 0, "label": "reggae"} +{"file_name": "test_09143.png", "caption": "THis song contains a piano playing a major chord progression in the midrange with the left hand playing bass notes creating a simple bassline. An acoustic drum is playing a constant groove without any big changes. A male voice is singing in a higher register getting backing vocals from another male voice. In the background you can hear the crowd cheering. It mostly sounds like female voices. This song may be playing at a live concert.", "data_idx": 5397, "number": 1, "label": "reggae"} +{"file_name": "test_09144.png", "caption": "THis song contains a piano playing a major chord progression in the midrange with the left hand playing bass notes creating a simple bassline. An acoustic drum is playing a constant groove without any big changes. A male voice is singing in a higher register getting backing vocals from another male voice. In the background you can hear the crowd cheering. It mostly sounds like female voices. This song may be playing at a live concert.", "data_idx": 5397, "number": 2, "label": "reggae"} +{"file_name": "test_09145.png", "caption": "THis song contains a piano playing a major chord progression in the midrange with the left hand playing bass notes creating a simple bassline. An acoustic drum is playing a constant groove without any big changes. A male voice is singing in a higher register getting backing vocals from another male voice. In the background you can hear the crowd cheering. It mostly sounds like female voices. This song may be playing at a live concert.", "data_idx": 5397, "number": 3, "label": "reggae"} +{"file_name": "test_09146.png", "caption": "This audio contains someone playing a fast paced drum groove with a lot of double hits on the kick and tom. The drumming stops and then a male voice starts talking. This may be used for a drum tutorial video.", "data_idx": 5400, "number": 0, "label": "hiphop"} +{"file_name": "test_09147.png", "caption": "This audio contains someone playing a fast paced drum groove with a lot of double hits on the kick and tom. The drumming stops and then a male voice starts talking. This may be used for a drum tutorial video.", "data_idx": 5400, "number": 1, "label": "hiphop"} +{"file_name": "test_09148.png", "caption": "This audio contains someone playing a fast paced drum groove with a lot of double hits on the kick and tom. The drumming stops and then a male voice starts talking. This may be used for a drum tutorial video.", "data_idx": 5400, "number": 2, "label": "hiphop"} +{"file_name": "test_09149.png", "caption": "This audio contains someone playing a fast paced drum groove with a lot of double hits on the kick and tom. The drumming stops and then a male voice starts talking. This may be used for a drum tutorial video.", "data_idx": 5400, "number": 3, "label": "hiphop"} +{"file_name": "test_09150.png", "caption": "This is a street performance by a drum & pipe band. In the beginning, there is a female voice talking. Then, she starts playing the Scottish bagpipes in a joyful manner. A male voice shouts at the crowd to get them into mood and the crowd starts cheering. The atmosphere is vibrant. This piece could be used in the soundtrack of a historical drama movie that takes place in Scotland.", "data_idx": 5403, "number": 0, "label": "classical"} +{"file_name": "test_09151.png", "caption": "This is a street performance by a drum & pipe band. In the beginning, there is a female voice talking. Then, she starts playing the Scottish bagpipes in a joyful manner. A male voice shouts at the crowd to get them into mood and the crowd starts cheering. The atmosphere is vibrant. This piece could be used in the soundtrack of a historical drama movie that takes place in Scotland.", "data_idx": 5403, "number": 1, "label": "classical"} +{"file_name": "test_09152.png", "caption": "This song contains acoustic drums playing along with a bass creating a folksong atmosphere along with an accordion like sounding instrument. A piano and guitar are playing a melody along with an accordion -like instrument taking the main melody from the instruments. Female voices are singing at a higher pitch. This song is in poor audio-quality. This song may be playing live at a church.", "data_idx": 5404, "number": 0, "label": "disco"} +{"file_name": "test_09153.png", "caption": "This song contains acoustic drums playing along with a bass creating a folksong atmosphere along with an accordion like sounding instrument. A piano and guitar are playing a melody along with an accordion -like instrument taking the main melody from the instruments. Female voices are singing at a higher pitch. This song is in poor audio-quality. This song may be playing live at a church.", "data_idx": 5404, "number": 1, "label": "disco"} +{"file_name": "test_09154.png", "caption": "This song contains acoustic drums playing along with a bass creating a folksong atmosphere along with an accordion like sounding instrument. A piano and guitar are playing a melody along with an accordion -like instrument taking the main melody from the instruments. Female voices are singing at a higher pitch. This song is in poor audio-quality. This song may be playing live at a church.", "data_idx": 5404, "number": 2, "label": "disco"} +{"file_name": "test_09155.png", "caption": "This song contains acoustic drums playing along with a bass creating a folksong atmosphere along with an accordion like sounding instrument. A piano and guitar are playing a melody along with an accordion -like instrument taking the main melody from the instruments. Female voices are singing at a higher pitch. This song is in poor audio-quality. This song may be playing live at a church.", "data_idx": 5404, "number": 3, "label": "disco"} +{"file_name": "test_09156.png", "caption": "The low quality recording features a rock song that consists of a flat male vocal, alongside background male vocals, singing over shimmering hi hats, groovy bass, punchy kick and snare hits and electric guitar melodies. It sounds energetic and emotional.", "data_idx": 5407, "number": 0, "label": "metal"} +{"file_name": "test_09157.png", "caption": "The low quality recording features a rock song that consists of a flat male vocal, alongside background male vocals, singing over shimmering hi hats, groovy bass, punchy kick and snare hits and electric guitar melodies. It sounds energetic and emotional.", "data_idx": 5407, "number": 1, "label": "metal"} +{"file_name": "test_09158.png", "caption": "The low quality recording features a rock song that consists of a flat male vocal, alongside background male vocals, singing over shimmering hi hats, groovy bass, punchy kick and snare hits and electric guitar melodies. It sounds energetic and emotional.", "data_idx": 5407, "number": 2, "label": "metal"} +{"file_name": "test_09159.png", "caption": "The low quality recording features a rock song that consists of a flat male vocal, alongside background male vocals, singing over shimmering hi hats, groovy bass, punchy kick and snare hits and electric guitar melodies. It sounds energetic and emotional.", "data_idx": 5407, "number": 3, "label": "metal"} +{"file_name": "test_09160.png", "caption": "The low quality recording features a string melody playing over smooth double bass, mellow piano chords and short violin melody. It sounds passionate, emotional and joyful.", "data_idx": 5411, "number": 0, "label": "country"} +{"file_name": "test_09161.png", "caption": "The low quality recording features a string melody playing over smooth double bass, mellow piano chords and short violin melody. It sounds passionate, emotional and joyful.", "data_idx": 5411, "number": 1, "label": "country"} +{"file_name": "test_09162.png", "caption": "The low quality recording features a string melody playing over smooth double bass, mellow piano chords and short violin melody. It sounds passionate, emotional and joyful.", "data_idx": 5411, "number": 2, "label": "country"} +{"file_name": "test_09163.png", "caption": "The low quality recording features a string melody playing over smooth double bass, mellow piano chords and short violin melody. It sounds passionate, emotional and joyful.", "data_idx": 5411, "number": 3, "label": "country"} +{"file_name": "test_09164.png", "caption": "The low quality recording features a didgeridoo melody playing outdoors. There are also some crowd chattering, water fountains and birds chirping sounds. The recording is noisy, as it was probably recorded with a phone.", "data_idx": 5415, "number": 0, "label": "classical"} +{"file_name": "test_09165.png", "caption": "The low quality recording features a didgeridoo melody playing outdoors. There are also some crowd chattering, water fountains and birds chirping sounds. The recording is noisy, as it was probably recorded with a phone.", "data_idx": 5415, "number": 1, "label": "classical"} +{"file_name": "test_09166.png", "caption": "This Middle eastern folk song features a male singer singing the main melody. This is accompanied by percussion playing a simple beat. A stringed instrument plays the backing melody. A shaker plays in an eight note pattern. This song can be played at a village fair.", "data_idx": 5416, "number": 0, "label": "metal"} +{"file_name": "test_09167.png", "caption": "This Middle eastern folk song features a male singer singing the main melody. This is accompanied by percussion playing a simple beat. A stringed instrument plays the backing melody. A shaker plays in an eight note pattern. This song can be played at a village fair.", "data_idx": 5416, "number": 1, "label": "metal"} +{"file_name": "test_09168.png", "caption": "This Middle eastern folk song features a male singer singing the main melody. This is accompanied by percussion playing a simple beat. A stringed instrument plays the backing melody. A shaker plays in an eight note pattern. This song can be played at a village fair.", "data_idx": 5416, "number": 2, "label": "metal"} +{"file_name": "test_09169.png", "caption": "This Middle eastern folk song features a male singer singing the main melody. This is accompanied by percussion playing a simple beat. A stringed instrument plays the backing melody. A shaker plays in an eight note pattern. This song can be played at a village fair.", "data_idx": 5416, "number": 3, "label": "metal"} +{"file_name": "test_09170.png", "caption": "This music is a percussive instrumental. The tempo is fast with a beatboxing rhythm. The beat is a vigorous, rapid, youthful, energetic, enthusiastic imitation of the drum machine. The audio quality is inferior so the music is muffled.", "data_idx": 5418, "number": 0, "label": "classical"} +{"file_name": "test_09171.png", "caption": "This music is a percussive instrumental. The tempo is fast with a beatboxing rhythm. The beat is a vigorous, rapid, youthful, energetic, enthusiastic imitation of the drum machine. The audio quality is inferior so the music is muffled.", "data_idx": 5418, "number": 1, "label": "classical"} +{"file_name": "test_09172.png", "caption": "This music is a percussive instrumental. The tempo is fast with a beatboxing rhythm. The beat is a vigorous, rapid, youthful, energetic, enthusiastic imitation of the drum machine. The audio quality is inferior so the music is muffled.", "data_idx": 5418, "number": 2, "label": "classical"} +{"file_name": "test_09173.png", "caption": "This music is a percussive instrumental. The tempo is fast with a beatboxing rhythm. The beat is a vigorous, rapid, youthful, energetic, enthusiastic imitation of the drum machine. The audio quality is inferior so the music is muffled.", "data_idx": 5418, "number": 3, "label": "classical"} +{"file_name": "test_09174.png", "caption": "This rock song features a female voice singing at a comfortable pitch. The song starts off with the voice singing vocables. This is accompanied by the overdriven guitar playing one chord three times followed by a second chord three times which is higher in pitch than the first chord. The percussion plays a role at that time. The voice continues to sing a phrase. One guitar harmonic note keeps ringing during this part. The overdriven guitar plays a descending chord pattern. The bass plays the root notes of the guitar. The percussion plays a simple beat in common time. This song can be played in a detective movie.", "data_idx": 5419, "number": 0, "label": "rock"} +{"file_name": "test_09175.png", "caption": "This rock song features a female voice singing at a comfortable pitch. The song starts off with the voice singing vocables. This is accompanied by the overdriven guitar playing one chord three times followed by a second chord three times which is higher in pitch than the first chord. The percussion plays a role at that time. The voice continues to sing a phrase. One guitar harmonic note keeps ringing during this part. The overdriven guitar plays a descending chord pattern. The bass plays the root notes of the guitar. The percussion plays a simple beat in common time. This song can be played in a detective movie.", "data_idx": 5419, "number": 1, "label": "rock"} +{"file_name": "test_09176.png", "caption": "This rock song features a female voice singing at a comfortable pitch. The song starts off with the voice singing vocables. This is accompanied by the overdriven guitar playing one chord three times followed by a second chord three times which is higher in pitch than the first chord. The percussion plays a role at that time. The voice continues to sing a phrase. One guitar harmonic note keeps ringing during this part. The overdriven guitar plays a descending chord pattern. The bass plays the root notes of the guitar. The percussion plays a simple beat in common time. This song can be played in a detective movie.", "data_idx": 5419, "number": 2, "label": "rock"} +{"file_name": "test_09177.png", "caption": "This rock song features a female voice singing at a comfortable pitch. The song starts off with the voice singing vocables. This is accompanied by the overdriven guitar playing one chord three times followed by a second chord three times which is higher in pitch than the first chord. The percussion plays a role at that time. The voice continues to sing a phrase. One guitar harmonic note keeps ringing during this part. The overdriven guitar plays a descending chord pattern. The bass plays the root notes of the guitar. The percussion plays a simple beat in common time. This song can be played in a detective movie.", "data_idx": 5419, "number": 3, "label": "rock"} +{"file_name": "test_09178.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a strong, emphatic and funky riff. There are male and female voices in a foreign language superimposed on the audio. This clip is an electronic guitar demo or lesson.", "data_idx": 5422, "number": 0, "label": "hiphop"} +{"file_name": "test_09179.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a strong, emphatic and funky riff. There are male and female voices in a foreign language superimposed on the audio. This clip is an electronic guitar demo or lesson.", "data_idx": 5422, "number": 1, "label": "hiphop"} +{"file_name": "test_09180.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a strong, emphatic and funky riff. There are male and female voices in a foreign language superimposed on the audio. This clip is an electronic guitar demo or lesson.", "data_idx": 5422, "number": 2, "label": "hiphop"} +{"file_name": "test_09181.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a strong, emphatic and funky riff. There are male and female voices in a foreign language superimposed on the audio. This clip is an electronic guitar demo or lesson.", "data_idx": 5422, "number": 3, "label": "hiphop"} +{"file_name": "test_09182.png", "caption": "The song is of a classical style and features an intricate piano phrase alongside some passionate violin playing. The song has a certain intensity and build-up to it.", "data_idx": 5426, "number": 0, "label": "classical"} +{"file_name": "test_09183.png", "caption": "The song is of a classical style and features an intricate piano phrase alongside some passionate violin playing. The song has a certain intensity and build-up to it.", "data_idx": 5426, "number": 1, "label": "classical"} +{"file_name": "test_09184.png", "caption": "The song is of a classical style and features an intricate piano phrase alongside some passionate violin playing. The song has a certain intensity and build-up to it.", "data_idx": 5426, "number": 2, "label": "classical"} +{"file_name": "test_09185.png", "caption": "The song is of a classical style and features an intricate piano phrase alongside some passionate violin playing. The song has a certain intensity and build-up to it.", "data_idx": 5426, "number": 3, "label": "classical"} +{"file_name": "test_09186.png", "caption": "This Scottish folk song features bagpipes playing the main melody. This is accompanied by an accordion playing the same melody in harmony. A Scottish tenor drum plays a marching beat. A bass drum plays strokes on the count. A tambourine plays a beat in the background. This song can be played in a Scottish folk programme.", "data_idx": 5428, "number": 0, "label": "classical"} +{"file_name": "test_09187.png", "caption": "This Scottish folk song features bagpipes playing the main melody. This is accompanied by an accordion playing the same melody in harmony. A Scottish tenor drum plays a marching beat. A bass drum plays strokes on the count. A tambourine plays a beat in the background. This song can be played in a Scottish folk programme.", "data_idx": 5428, "number": 1, "label": "classical"} +{"file_name": "test_09188.png", "caption": "This Scottish folk song features bagpipes playing the main melody. This is accompanied by an accordion playing the same melody in harmony. A Scottish tenor drum plays a marching beat. A bass drum plays strokes on the count. A tambourine plays a beat in the background. This song can be played in a Scottish folk programme.", "data_idx": 5428, "number": 2, "label": "classical"} +{"file_name": "test_09189.png", "caption": "This Scottish folk song features bagpipes playing the main melody. This is accompanied by an accordion playing the same melody in harmony. A Scottish tenor drum plays a marching beat. A bass drum plays strokes on the count. A tambourine plays a beat in the background. This song can be played in a Scottish folk programme.", "data_idx": 5428, "number": 3, "label": "classical"} +{"file_name": "test_09190.png", "caption": "These are sounds coming from a cartoon. Two boys are having a conversation in the Korean language. There is a spring sound effect that can be heard repeatedly. In the background, a generic orchestra piece is playing. The trumpet and the flute take turns in playing the main melody while other brass instruments and a snare drum accompanies them.", "data_idx": 5430, "number": 0, "label": "reggae"} +{"file_name": "test_09191.png", "caption": "These are sounds coming from a cartoon. Two boys are having a conversation in the Korean language. There is a spring sound effect that can be heard repeatedly. In the background, a generic orchestra piece is playing. The trumpet and the flute take turns in playing the main melody while other brass instruments and a snare drum accompanies them.", "data_idx": 5430, "number": 1, "label": "reggae"} +{"file_name": "test_09192.png", "caption": "These are sounds coming from a cartoon. Two boys are having a conversation in the Korean language. There is a spring sound effect that can be heard repeatedly. In the background, a generic orchestra piece is playing. The trumpet and the flute take turns in playing the main melody while other brass instruments and a snare drum accompanies them.", "data_idx": 5430, "number": 2, "label": "reggae"} +{"file_name": "test_09193.png", "caption": "These are sounds coming from a cartoon. Two boys are having a conversation in the Korean language. There is a spring sound effect that can be heard repeatedly. In the background, a generic orchestra piece is playing. The trumpet and the flute take turns in playing the main melody while other brass instruments and a snare drum accompanies them.", "data_idx": 5430, "number": 3, "label": "reggae"} +{"file_name": "test_09194.png", "caption": "This audio contains acoustic drums playing a groove with a lot of cymbal hits. An e-bass is holding the groove while a distorted e-guitar is playing a solo in a higher register. In the background you can hear another e-guitar playing something like an arpeggio melody in the mid-range. This song may be playing in the rehearsal band room practicing drumming to a backing song.", "data_idx": 5432, "number": 0, "label": "metal"} +{"file_name": "test_09195.png", "caption": "This audio contains acoustic drums playing a groove with a lot of cymbal hits. An e-bass is holding the groove while a distorted e-guitar is playing a solo in a higher register. In the background you can hear another e-guitar playing something like an arpeggio melody in the mid-range. This song may be playing in the rehearsal band room practicing drumming to a backing song.", "data_idx": 5432, "number": 1, "label": "metal"} +{"file_name": "test_09196.png", "caption": "The low quality recording features a live performance with an electro song playing in the background and crowd cheering sounds. The song consists of a \"4 on the floor\" kick pattern, addictive synth bass melody, punchy snare and shimmering hi-hats. It sounds energetic and the recording is noisy as it was probably recorded with a phone.", "data_idx": 5433, "number": 0, "label": "metal"} +{"file_name": "test_09197.png", "caption": "The low quality recording features a live performance with an electro song playing in the background and crowd cheering sounds. The song consists of a \"4 on the floor\" kick pattern, addictive synth bass melody, punchy snare and shimmering hi-hats. It sounds energetic and the recording is noisy as it was probably recorded with a phone.", "data_idx": 5433, "number": 1, "label": "metal"} +{"file_name": "test_09198.png", "caption": "The low quality recording features a live performance with an electro song playing in the background and crowd cheering sounds. The song consists of a \"4 on the floor\" kick pattern, addictive synth bass melody, punchy snare and shimmering hi-hats. It sounds energetic and the recording is noisy as it was probably recorded with a phone.", "data_idx": 5433, "number": 2, "label": "metal"} +{"file_name": "test_09199.png", "caption": "The low quality recording features a live performance with an electro song playing in the background and crowd cheering sounds. The song consists of a \"4 on the floor\" kick pattern, addictive synth bass melody, punchy snare and shimmering hi-hats. It sounds energetic and the recording is noisy as it was probably recorded with a phone.", "data_idx": 5433, "number": 3, "label": "metal"} +{"file_name": "test_09200.png", "caption": "This is a country/western swing music piece. There is a male vocalist singing melodically in the lead with a story-telling attitude. The main tune is being played by the electric guitar with a bass guitar backing. The rhythm is being played by the acoustic drums. The atmosphere is easygoing. This piece could be playing in the background at an American roadside diner.", "data_idx": 5436, "number": 0, "label": "blues"} +{"file_name": "test_09201.png", "caption": "This is a country/western swing music piece. There is a male vocalist singing melodically in the lead with a story-telling attitude. The main tune is being played by the electric guitar with a bass guitar backing. The rhythm is being played by the acoustic drums. The atmosphere is easygoing. This piece could be playing in the background at an American roadside diner.", "data_idx": 5436, "number": 1, "label": "blues"} +{"file_name": "test_09202.png", "caption": "This is a country/western swing music piece. There is a male vocalist singing melodically in the lead with a story-telling attitude. The main tune is being played by the electric guitar with a bass guitar backing. The rhythm is being played by the acoustic drums. The atmosphere is easygoing. This piece could be playing in the background at an American roadside diner.", "data_idx": 5436, "number": 2, "label": "blues"} +{"file_name": "test_09203.png", "caption": "This is a country/western swing music piece. There is a male vocalist singing melodically in the lead with a story-telling attitude. The main tune is being played by the electric guitar with a bass guitar backing. The rhythm is being played by the acoustic drums. The atmosphere is easygoing. This piece could be playing in the background at an American roadside diner.", "data_idx": 5436, "number": 3, "label": "blues"} +{"file_name": "test_09204.png", "caption": "A female vocalist sings this pop song. The tempo is fast with a lively piano accompaniment, funky bass lines, violin harmony, synthesiser and electronic arrangements and punchy drumming. The song is youthful, romantic, warm, simple and groovy. This song is an Electro Pop/ Dance pop.", "data_idx": 5437, "number": 0, "label": "disco"} +{"file_name": "test_09205.png", "caption": "A female vocalist sings this pop song. The tempo is fast with a lively piano accompaniment, funky bass lines, violin harmony, synthesiser and electronic arrangements and punchy drumming. The song is youthful, romantic, warm, simple and groovy. This song is an Electro Pop/ Dance pop.", "data_idx": 5437, "number": 1, "label": "disco"} +{"file_name": "test_09206.png", "caption": "A female vocalist sings this pop song. The tempo is fast with a lively piano accompaniment, funky bass lines, violin harmony, synthesiser and electronic arrangements and punchy drumming. The song is youthful, romantic, warm, simple and groovy. This song is an Electro Pop/ Dance pop.", "data_idx": 5437, "number": 2, "label": "disco"} +{"file_name": "test_09207.png", "caption": "A female vocalist sings this pop song. The tempo is fast with a lively piano accompaniment, funky bass lines, violin harmony, synthesiser and electronic arrangements and punchy drumming. The song is youthful, romantic, warm, simple and groovy. This song is an Electro Pop/ Dance pop.", "data_idx": 5437, "number": 3, "label": "disco"} +{"file_name": "test_09208.png", "caption": "The low quality recording features a funk song that consists of a groovy bass, shimmering hi hats, punchy snare, claps and wide arpeggiated synth strings melody. It sounds groovy, funky and addictive.", "data_idx": 5438, "number": 0, "label": "reggae"} +{"file_name": "test_09209.png", "caption": "The low quality recording features a funk song that consists of a groovy bass, shimmering hi hats, punchy snare, claps and wide arpeggiated synth strings melody. It sounds groovy, funky and addictive.", "data_idx": 5438, "number": 1, "label": "reggae"} +{"file_name": "test_09210.png", "caption": "The low quality recording features a funk song that consists of a groovy bass, shimmering hi hats, punchy snare, claps and wide arpeggiated synth strings melody. It sounds groovy, funky and addictive.", "data_idx": 5438, "number": 2, "label": "reggae"} +{"file_name": "test_09211.png", "caption": "The low quality recording features a funk song that consists of a groovy bass, shimmering hi hats, punchy snare, claps and wide arpeggiated synth strings melody. It sounds groovy, funky and addictive.", "data_idx": 5438, "number": 3, "label": "reggae"} +{"file_name": "test_09212.png", "caption": "This is a pop R&B song in Portuguese. The song has a cheerful and fun effect to it, and the four on the floor style helps in creating the feeling of dancing. The singers are a man and woman with smooth vocals, singing a duet - harmonically.", "data_idx": 5442, "number": 0, "label": "disco"} +{"file_name": "test_09213.png", "caption": "This is a pop R&B song in Portuguese. The song has a cheerful and fun effect to it, and the four on the floor style helps in creating the feeling of dancing. The singers are a man and woman with smooth vocals, singing a duet - harmonically.", "data_idx": 5442, "number": 1, "label": "disco"} +{"file_name": "test_09214.png", "caption": "This is a pop R&B song in Portuguese. The song has a cheerful and fun effect to it, and the four on the floor style helps in creating the feeling of dancing. The singers are a man and woman with smooth vocals, singing a duet - harmonically.", "data_idx": 5442, "number": 2, "label": "disco"} +{"file_name": "test_09215.png", "caption": "This is a pop R&B song in Portuguese. The song has a cheerful and fun effect to it, and the four on the floor style helps in creating the feeling of dancing. The singers are a man and woman with smooth vocals, singing a duet - harmonically.", "data_idx": 5442, "number": 3, "label": "disco"} +{"file_name": "test_09216.png", "caption": "The song is an instrumental. The tempo is medium with a cellist playing a virtuoso solo accompanied by a string section harmony, flutes in harmony and a loud banging timpani. The song is spirited and passionate with poor audio quality. The song is a western classical piece.", "data_idx": 5444, "number": 0, "label": "classical"} +{"file_name": "test_09217.png", "caption": "The song is an instrumental. The tempo is medium with a cellist playing a virtuoso solo accompanied by a string section harmony, flutes in harmony and a loud banging timpani. The song is spirited and passionate with poor audio quality. The song is a western classical piece.", "data_idx": 5444, "number": 1, "label": "classical"} +{"file_name": "test_09218.png", "caption": "The song is an instrumental. The tempo is medium with a cellist playing a virtuoso solo accompanied by a string section harmony, flutes in harmony and a loud banging timpani. The song is spirited and passionate with poor audio quality. The song is a western classical piece.", "data_idx": 5444, "number": 2, "label": "classical"} +{"file_name": "test_09219.png", "caption": "The song is an instrumental. The tempo is medium with a cellist playing a virtuoso solo accompanied by a string section harmony, flutes in harmony and a loud banging timpani. The song is spirited and passionate with poor audio quality. The song is a western classical piece.", "data_idx": 5444, "number": 3, "label": "classical"} +{"file_name": "test_09220.png", "caption": "This is a techno song that's layered with a cacophony of sound effects like robotic sounds, fuzzy sounds, and sounds of whirring machinery. The bassline is rapid, played in 16th notes throughout the song. The beat pattern is four on the floor.", "data_idx": 5445, "number": 0, "label": "metal"} +{"file_name": "test_09221.png", "caption": "This is a techno song that's layered with a cacophony of sound effects like robotic sounds, fuzzy sounds, and sounds of whirring machinery. The bassline is rapid, played in 16th notes throughout the song. The beat pattern is four on the floor.", "data_idx": 5445, "number": 1, "label": "metal"} +{"file_name": "test_09222.png", "caption": "This is a techno song that's layered with a cacophony of sound effects like robotic sounds, fuzzy sounds, and sounds of whirring machinery. The bassline is rapid, played in 16th notes throughout the song. The beat pattern is four on the floor.", "data_idx": 5445, "number": 2, "label": "metal"} +{"file_name": "test_09223.png", "caption": "This is a techno song that's layered with a cacophony of sound effects like robotic sounds, fuzzy sounds, and sounds of whirring machinery. The bassline is rapid, played in 16th notes throughout the song. The beat pattern is four on the floor.", "data_idx": 5445, "number": 3, "label": "metal"} +{"file_name": "test_09224.png", "caption": "This fingerstyle guitar song features a guitar playing at a slow tempo. The bass notes are also played by the same guitar. The picking pattern involves a percussive style of guitar playing. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. This song has a romantic feel. This song can be played in a luxury hotel lobby.", "data_idx": 5446, "number": 0, "label": "blues"} +{"file_name": "test_09225.png", "caption": "This fingerstyle guitar song features a guitar playing at a slow tempo. The bass notes are also played by the same guitar. The picking pattern involves a percussive style of guitar playing. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. This song has a romantic feel. This song can be played in a luxury hotel lobby.", "data_idx": 5446, "number": 1, "label": "blues"} +{"file_name": "test_09226.png", "caption": "This fingerstyle guitar song features a guitar playing at a slow tempo. The bass notes are also played by the same guitar. The picking pattern involves a percussive style of guitar playing. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. This song has a romantic feel. This song can be played in a luxury hotel lobby.", "data_idx": 5446, "number": 2, "label": "blues"} +{"file_name": "test_09227.png", "caption": "This fingerstyle guitar song features a guitar playing at a slow tempo. The bass notes are also played by the same guitar. The picking pattern involves a percussive style of guitar playing. There are no other instruments in this song. This is an instrumental song. There are no voices in this song. This song has a romantic feel. This song can be played in a luxury hotel lobby.", "data_idx": 5446, "number": 3, "label": "blues"} +{"file_name": "test_09228.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive elements, sustained suspenseful strings melody and passionate male vocal singing over it. It sounds passionate, mystical, soulful and suspenseful, even though the recording is a bit noisy and in mono.", "data_idx": 5448, "number": 0, "label": "rock"} +{"file_name": "test_09229.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive elements, sustained suspenseful strings melody and passionate male vocal singing over it. It sounds passionate, mystical, soulful and suspenseful, even though the recording is a bit noisy and in mono.", "data_idx": 5448, "number": 1, "label": "rock"} +{"file_name": "test_09230.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive elements, sustained suspenseful strings melody and passionate male vocal singing over it. It sounds passionate, mystical, soulful and suspenseful, even though the recording is a bit noisy and in mono.", "data_idx": 5448, "number": 2, "label": "rock"} +{"file_name": "test_09231.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive elements, sustained suspenseful strings melody and passionate male vocal singing over it. It sounds passionate, mystical, soulful and suspenseful, even though the recording is a bit noisy and in mono.", "data_idx": 5448, "number": 3, "label": "rock"} +{"file_name": "test_09232.png", "caption": "The Disco song features a passionate male vocal, alongside harmonizing background vocals, singing over sustained strings melody, piano melody, brass melody, punchy kick and snare hits, shimmering hi hats and some claps. It sounds funky, addictive and passionate - like something you would hear in clubs during the 70s.", "data_idx": 5450, "number": 0, "label": "disco"} +{"file_name": "test_09233.png", "caption": "The Disco song features a passionate male vocal, alongside harmonizing background vocals, singing over sustained strings melody, piano melody, brass melody, punchy kick and snare hits, shimmering hi hats and some claps. It sounds funky, addictive and passionate - like something you would hear in clubs during the 70s.", "data_idx": 5450, "number": 1, "label": "disco"} +{"file_name": "test_09234.png", "caption": "The Disco song features a passionate male vocal, alongside harmonizing background vocals, singing over sustained strings melody, piano melody, brass melody, punchy kick and snare hits, shimmering hi hats and some claps. It sounds funky, addictive and passionate - like something you would hear in clubs during the 70s.", "data_idx": 5450, "number": 2, "label": "disco"} +{"file_name": "test_09235.png", "caption": "The Disco song features a passionate male vocal, alongside harmonizing background vocals, singing over sustained strings melody, piano melody, brass melody, punchy kick and snare hits, shimmering hi hats and some claps. It sounds funky, addictive and passionate - like something you would hear in clubs during the 70s.", "data_idx": 5450, "number": 3, "label": "disco"} +{"file_name": "test_09236.png", "caption": "The Rock song features harmonizing male vocals singing over punchy kick and snare hits, energetic open hats, wide electric guitar chords and distorted bass guitar. It sounds energetic and exciting.", "data_idx": 5453, "number": 0, "label": "metal"} +{"file_name": "test_09237.png", "caption": "The Rock song features harmonizing male vocals singing over punchy kick and snare hits, energetic open hats, wide electric guitar chords and distorted bass guitar. It sounds energetic and exciting.", "data_idx": 5453, "number": 1, "label": "metal"} +{"file_name": "test_09238.png", "caption": "The Rock song features harmonizing male vocals singing over punchy kick and snare hits, energetic open hats, wide electric guitar chords and distorted bass guitar. It sounds energetic and exciting.", "data_idx": 5453, "number": 2, "label": "metal"} +{"file_name": "test_09239.png", "caption": "The Rock song features harmonizing male vocals singing over punchy kick and snare hits, energetic open hats, wide electric guitar chords and distorted bass guitar. It sounds energetic and exciting.", "data_idx": 5453, "number": 3, "label": "metal"} +{"file_name": "test_09240.png", "caption": "This is an instrumental movie music piece used in the background of a short film. There is a gentle melody being played by the strings and the piano. The atmosphere is eerie and enigmatic. This piece could suit well in the soundtrack of a mystery video game or a movie.", "data_idx": 5454, "number": 0, "label": "classical"} +{"file_name": "test_09241.png", "caption": "This is an instrumental movie music piece used in the background of a short film. There is a gentle melody being played by the strings and the piano. The atmosphere is eerie and enigmatic. This piece could suit well in the soundtrack of a mystery video game or a movie.", "data_idx": 5454, "number": 1, "label": "classical"} +{"file_name": "test_09242.png", "caption": "This is an instrumental movie music piece used in the background of a short film. There is a gentle melody being played by the strings and the piano. The atmosphere is eerie and enigmatic. This piece could suit well in the soundtrack of a mystery video game or a movie.", "data_idx": 5454, "number": 2, "label": "classical"} +{"file_name": "test_09243.png", "caption": "This is an instrumental movie music piece used in the background of a short film. There is a gentle melody being played by the strings and the piano. The atmosphere is eerie and enigmatic. This piece could suit well in the soundtrack of a mystery video game or a movie.", "data_idx": 5454, "number": 3, "label": "classical"} +{"file_name": "test_09244.png", "caption": "This recording has been done live in a room with speakers. It features a DJ scratching the desks live to create these squeaky scratching sound effects. The song is a mellow hip hop song featuring a relaxed drum beat and bassline.", "data_idx": 5459, "number": 0, "label": "blues"} +{"file_name": "test_09245.png", "caption": "This recording has been done live in a room with speakers. It features a DJ scratching the desks live to create these squeaky scratching sound effects. The song is a mellow hip hop song featuring a relaxed drum beat and bassline.", "data_idx": 5459, "number": 1, "label": "blues"} +{"file_name": "test_09246.png", "caption": "The low quality recording features a hollow male talking over a traditional strings melody, while there are sounds of people talking and some wooden impacts in the background. The recording is noisy and the volume of the song slowly goes up, as the male vocal stops talking.", "data_idx": 5461, "number": 0, "label": "classical"} +{"file_name": "test_09247.png", "caption": "The low quality recording features a hollow male talking over a traditional strings melody, while there are sounds of people talking and some wooden impacts in the background. The recording is noisy and the volume of the song slowly goes up, as the male vocal stops talking.", "data_idx": 5461, "number": 1, "label": "classical"} +{"file_name": "test_09248.png", "caption": "The low quality recording features a hollow male talking over a traditional strings melody, while there are sounds of people talking and some wooden impacts in the background. The recording is noisy and the volume of the song slowly goes up, as the male vocal stops talking.", "data_idx": 5461, "number": 2, "label": "classical"} +{"file_name": "test_09249.png", "caption": "The low quality recording features a hollow male talking over a traditional strings melody, while there are sounds of people talking and some wooden impacts in the background. The recording is noisy and the volume of the song slowly goes up, as the male vocal stops talking.", "data_idx": 5461, "number": 3, "label": "classical"} +{"file_name": "test_09250.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a scratching vinyl sound - sort of like a tutorial on how to scratch a vinyl. The recording is mono and noisy.", "data_idx": 5466, "number": 0, "label": "hiphop"} +{"file_name": "test_09251.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a scratching vinyl sound - sort of like a tutorial on how to scratch a vinyl. The recording is mono and noisy.", "data_idx": 5466, "number": 1, "label": "hiphop"} +{"file_name": "test_09252.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a scratching vinyl sound - sort of like a tutorial on how to scratch a vinyl. The recording is mono and noisy.", "data_idx": 5466, "number": 2, "label": "hiphop"} +{"file_name": "test_09253.png", "caption": "The low quality recording features a flat male vocal talking, after which there is a scratching vinyl sound - sort of like a tutorial on how to scratch a vinyl. The recording is mono and noisy.", "data_idx": 5466, "number": 3, "label": "hiphop"} +{"file_name": "test_09254.png", "caption": "A female vocalist sings this beautiful pop melody. The tempo is medium fast with rhythmic acoustic guitar, keyboard harmony, electric guitar melody, straight drumming;steady bass and tambourine beats. The song is mellow, sweet, passionate,emotional, youthful, romantic, simple and tender. This song is a hit Indonesian Pop.", "data_idx": 5479, "number": 0, "label": "pop"} +{"file_name": "test_09255.png", "caption": "A female vocalist sings this beautiful pop melody. The tempo is medium fast with rhythmic acoustic guitar, keyboard harmony, electric guitar melody, straight drumming;steady bass and tambourine beats. The song is mellow, sweet, passionate,emotional, youthful, romantic, simple and tender. This song is a hit Indonesian Pop.", "data_idx": 5479, "number": 1, "label": "pop"} +{"file_name": "test_09256.png", "caption": "A female vocalist sings this beautiful pop melody. The tempo is medium fast with rhythmic acoustic guitar, keyboard harmony, electric guitar melody, straight drumming;steady bass and tambourine beats. The song is mellow, sweet, passionate,emotional, youthful, romantic, simple and tender. This song is a hit Indonesian Pop.", "data_idx": 5479, "number": 2, "label": "pop"} +{"file_name": "test_09257.png", "caption": "A female vocalist sings this beautiful pop melody. The tempo is medium fast with rhythmic acoustic guitar, keyboard harmony, electric guitar melody, straight drumming;steady bass and tambourine beats. The song is mellow, sweet, passionate,emotional, youthful, romantic, simple and tender. This song is a hit Indonesian Pop.", "data_idx": 5479, "number": 3, "label": "pop"} +{"file_name": "test_09258.png", "caption": "This audio contains a male voice singing in a higher pitch along to acoustic drums with an e-bass playing a melody. The e-guitar also follows that bassline. Another e-guitar is strumming chords in a higher key in the background. This song may be playing in a music video telling a story.", "data_idx": 5480, "number": 0, "label": "rock"} +{"file_name": "test_09259.png", "caption": "This audio contains a male voice singing in a higher pitch along to acoustic drums with an e-bass playing a melody. The e-guitar also follows that bassline. Another e-guitar is strumming chords in a higher key in the background. This song may be playing in a music video telling a story.", "data_idx": 5480, "number": 1, "label": "rock"} +{"file_name": "test_09260.png", "caption": "This audio contains a male voice singing in a higher pitch along to acoustic drums with an e-bass playing a melody. The e-guitar also follows that bassline. Another e-guitar is strumming chords in a higher key in the background. This song may be playing in a music video telling a story.", "data_idx": 5480, "number": 2, "label": "rock"} +{"file_name": "test_09261.png", "caption": "This audio contains a male voice singing in a higher pitch along to acoustic drums with an e-bass playing a melody. The e-guitar also follows that bassline. Another e-guitar is strumming chords in a higher key in the background. This song may be playing in a music video telling a story.", "data_idx": 5480, "number": 3, "label": "rock"} +{"file_name": "test_09262.png", "caption": "This is the live performance of a Nepali folk music piece. It is an instrumental piece. There is a bansuri performing the melodic structure of the piece while the tabla joins briefly as the rhythm. The atmosphere is vibrant and dreamy. This piece could be used during scenery shots in the soundtrack of an adventure movie that takes place in the Himalayas.", "data_idx": 5483, "number": 0, "label": "classical"} +{"file_name": "test_09263.png", "caption": "This is the live performance of a Nepali folk music piece. It is an instrumental piece. There is a bansuri performing the melodic structure of the piece while the tabla joins briefly as the rhythm. The atmosphere is vibrant and dreamy. This piece could be used during scenery shots in the soundtrack of an adventure movie that takes place in the Himalayas.", "data_idx": 5483, "number": 1, "label": "classical"} +{"file_name": "test_09264.png", "caption": "This is the live performance of a Nepali folk music piece. It is an instrumental piece. There is a bansuri performing the melodic structure of the piece while the tabla joins briefly as the rhythm. The atmosphere is vibrant and dreamy. This piece could be used during scenery shots in the soundtrack of an adventure movie that takes place in the Himalayas.", "data_idx": 5483, "number": 2, "label": "classical"} +{"file_name": "test_09265.png", "caption": "This is the live performance of a Nepali folk music piece. It is an instrumental piece. There is a bansuri performing the melodic structure of the piece while the tabla joins briefly as the rhythm. The atmosphere is vibrant and dreamy. This piece could be used during scenery shots in the soundtrack of an adventure movie that takes place in the Himalayas.", "data_idx": 5483, "number": 3, "label": "classical"} +{"file_name": "test_09266.png", "caption": "The low quality recording features a kids song that features a shimmering bell melody, mellow cowbell and girl vocals singing over it. The recording is in mono and noisy - the audio is really crackling. It sounds fun and happy, like something that kids would listen to.", "data_idx": 5484, "number": 0, "label": "reggae"} +{"file_name": "test_09267.png", "caption": "The low quality recording features a kids song that features a shimmering bell melody, mellow cowbell and girl vocals singing over it. The recording is in mono and noisy - the audio is really crackling. It sounds fun and happy, like something that kids would listen to.", "data_idx": 5484, "number": 1, "label": "reggae"} +{"file_name": "test_09268.png", "caption": "The low quality recording features a kids song that features a shimmering bell melody, mellow cowbell and girl vocals singing over it. The recording is in mono and noisy - the audio is really crackling. It sounds fun and happy, like something that kids would listen to.", "data_idx": 5484, "number": 2, "label": "reggae"} +{"file_name": "test_09269.png", "caption": "The low quality recording features a kids song that features a shimmering bell melody, mellow cowbell and girl vocals singing over it. The recording is in mono and noisy - the audio is really crackling. It sounds fun and happy, like something that kids would listen to.", "data_idx": 5484, "number": 3, "label": "reggae"} +{"file_name": "test_09270.png", "caption": "This music is instrumental. The tempo is medium with a beautiful piano harmony. The music starts softly and builds up to a beautiful melody. It is mellow, romantic, warm, cheerful and pleasant. This is a Piano Instrumental.", "data_idx": 5488, "number": 0, "label": "classical"} +{"file_name": "test_09271.png", "caption": "This music is instrumental. The tempo is medium with a beautiful piano harmony. The music starts softly and builds up to a beautiful melody. It is mellow, romantic, warm, cheerful and pleasant. This is a Piano Instrumental.", "data_idx": 5488, "number": 1, "label": "classical"} +{"file_name": "test_09272.png", "caption": "This music is instrumental. The tempo is medium with a beautiful piano harmony. The music starts softly and builds up to a beautiful melody. It is mellow, romantic, warm, cheerful and pleasant. This is a Piano Instrumental.", "data_idx": 5488, "number": 2, "label": "classical"} +{"file_name": "test_09273.png", "caption": "This music is instrumental. The tempo is medium with a beautiful piano harmony. The music starts softly and builds up to a beautiful melody. It is mellow, romantic, warm, cheerful and pleasant. This is a Piano Instrumental.", "data_idx": 5488, "number": 3, "label": "classical"} +{"file_name": "test_09274.png", "caption": "This is a Carnatic classical music piece. It is being performed live. There is a male vocalist singing in a versatile manner. The melody is being played by a Carnatic violin line. The rhythmic background is composed of the tabla percussion. The atmosphere is vibrant and the instrumentation is complex. This piece can be an educational example of a Carnatic music piece to be taught in music schools.", "data_idx": 5490, "number": 0, "label": "country"} +{"file_name": "test_09275.png", "caption": "This is a Carnatic classical music piece. It is being performed live. There is a male vocalist singing in a versatile manner. The melody is being played by a Carnatic violin line. The rhythmic background is composed of the tabla percussion. The atmosphere is vibrant and the instrumentation is complex. This piece can be an educational example of a Carnatic music piece to be taught in music schools.", "data_idx": 5490, "number": 1, "label": "country"} +{"file_name": "test_09276.png", "caption": "This is a Carnatic classical music piece. It is being performed live. There is a male vocalist singing in a versatile manner. The melody is being played by a Carnatic violin line. The rhythmic background is composed of the tabla percussion. The atmosphere is vibrant and the instrumentation is complex. This piece can be an educational example of a Carnatic music piece to be taught in music schools.", "data_idx": 5490, "number": 2, "label": "country"} +{"file_name": "test_09277.png", "caption": "This is a Carnatic classical music piece. It is being performed live. There is a male vocalist singing in a versatile manner. The melody is being played by a Carnatic violin line. The rhythmic background is composed of the tabla percussion. The atmosphere is vibrant and the instrumentation is complex. This piece can be an educational example of a Carnatic music piece to be taught in music schools.", "data_idx": 5490, "number": 3, "label": "country"} +{"file_name": "test_09278.png", "caption": "The low quality recording features a cover of a rock song played on bass guitar over electric guitar arpeggiated melody played on playback in the background. The recording is noisy, in mono, as it was probably recorded on a phone, and it sounds emotional and passionate.", "data_idx": 5491, "number": 0, "label": "hiphop"} +{"file_name": "test_09279.png", "caption": "The low quality recording features a cover of a rock song played on bass guitar over electric guitar arpeggiated melody played on playback in the background. The recording is noisy, in mono, as it was probably recorded on a phone, and it sounds emotional and passionate.", "data_idx": 5491, "number": 1, "label": "hiphop"} +{"file_name": "test_09280.png", "caption": "This is a piece from a musical. The piano is playing a repetitive tune. There is a male vocalist singing melodically. There is a playful atmosphere to the piece. This piece could be playing in the background during activities for kids.", "data_idx": 5493, "number": 0, "label": "hiphop"} +{"file_name": "test_09281.png", "caption": "This is a piece from a musical. The piano is playing a repetitive tune. There is a male vocalist singing melodically. There is a playful atmosphere to the piece. This piece could be playing in the background during activities for kids.", "data_idx": 5493, "number": 1, "label": "hiphop"} +{"file_name": "test_09282.png", "caption": "The low quality recording features a live performance that consists of harmonizing female vocals singing over mellow piano and groovy trombone melody. There are some shoe tapping sounds from performers. It sounds fun, happy, joyful and the recording is in mono and noisy.", "data_idx": 5496, "number": 0, "label": "classical"} +{"file_name": "test_09283.png", "caption": "The low quality recording features a live performance that consists of harmonizing female vocals singing over mellow piano and groovy trombone melody. There are some shoe tapping sounds from performers. It sounds fun, happy, joyful and the recording is in mono and noisy.", "data_idx": 5496, "number": 1, "label": "classical"} +{"file_name": "test_09284.png", "caption": "The low quality recording features a live performance that consists of harmonizing female vocals singing over mellow piano and groovy trombone melody. There are some shoe tapping sounds from performers. It sounds fun, happy, joyful and the recording is in mono and noisy.", "data_idx": 5496, "number": 2, "label": "classical"} +{"file_name": "test_09285.png", "caption": "The low quality recording features a live performance that consists of harmonizing female vocals singing over mellow piano and groovy trombone melody. There are some shoe tapping sounds from performers. It sounds fun, happy, joyful and the recording is in mono and noisy.", "data_idx": 5496, "number": 3, "label": "classical"} +{"file_name": "test_09286.png", "caption": "Dub reggae music featuring a drum fill, female vocal sample with effects, a smooth sine wave synth melody in the background, percussion and guitar. The mood is smooth and easy.", "data_idx": 5497, "number": 0, "label": "hiphop"} +{"file_name": "test_09287.png", "caption": "Dub reggae music featuring a drum fill, female vocal sample with effects, a smooth sine wave synth melody in the background, percussion and guitar. The mood is smooth and easy.", "data_idx": 5497, "number": 1, "label": "hiphop"} +{"file_name": "test_09288.png", "caption": "This is a calming and soothing piece played on the piano. It could be classified as a ballad. It is gentle and tranquil - there are mostly high notes being played.", "data_idx": 5498, "number": 0, "label": "classical"} +{"file_name": "test_09289.png", "caption": "This is a calming and soothing piece played on the piano. It could be classified as a ballad. It is gentle and tranquil - there are mostly high notes being played.", "data_idx": 5498, "number": 1, "label": "classical"} +{"file_name": "test_09290.png", "caption": "This is a K-pop music piece performed by a boy band. Initially, a male vocalist is singing in a rap-like manner. Then, it switches to another male vocal that is singing more melodically. The melody is being played by a crisp synth sound. The rhythmic background consists of an energetic electronic drum beat. There is a danceable feel to it. This piece could be playing at Korean nightclubs and dance clubs.", "data_idx": 5500, "number": 0, "label": "hiphop"} +{"file_name": "test_09291.png", "caption": "This is a K-pop music piece performed by a boy band. Initially, a male vocalist is singing in a rap-like manner. Then, it switches to another male vocal that is singing more melodically. The melody is being played by a crisp synth sound. The rhythmic background consists of an energetic electronic drum beat. There is a danceable feel to it. This piece could be playing at Korean nightclubs and dance clubs.", "data_idx": 5500, "number": 1, "label": "hiphop"} +{"file_name": "test_09292.png", "caption": "This is a K-pop music piece performed by a boy band. Initially, a male vocalist is singing in a rap-like manner. Then, it switches to another male vocal that is singing more melodically. The melody is being played by a crisp synth sound. The rhythmic background consists of an energetic electronic drum beat. There is a danceable feel to it. This piece could be playing at Korean nightclubs and dance clubs.", "data_idx": 5500, "number": 2, "label": "hiphop"} +{"file_name": "test_09293.png", "caption": "This is a K-pop music piece performed by a boy band. Initially, a male vocalist is singing in a rap-like manner. Then, it switches to another male vocal that is singing more melodically. The melody is being played by a crisp synth sound. The rhythmic background consists of an energetic electronic drum beat. There is a danceable feel to it. This piece could be playing at Korean nightclubs and dance clubs.", "data_idx": 5500, "number": 3, "label": "hiphop"} +{"file_name": "test_09294.png", "caption": "The low quality recording features a passionate male vocal singing over sustained strings chords, wide electric guitar arpeggiated melody and smooth bass. It sounds easygoing, passionate and chill.", "data_idx": 5503, "number": 0, "label": "rock"} +{"file_name": "test_09295.png", "caption": "The low quality recording features a passionate male vocal singing over sustained strings chords, wide electric guitar arpeggiated melody and smooth bass. It sounds easygoing, passionate and chill.", "data_idx": 5503, "number": 1, "label": "rock"} +{"file_name": "test_09296.png", "caption": "The low quality recording features a passionate male vocal singing over sustained strings chords, wide electric guitar arpeggiated melody and smooth bass. It sounds easygoing, passionate and chill.", "data_idx": 5503, "number": 2, "label": "rock"} +{"file_name": "test_09297.png", "caption": "The low quality recording features a passionate male vocal singing over sustained strings chords, wide electric guitar arpeggiated melody and smooth bass. It sounds easygoing, passionate and chill.", "data_idx": 5503, "number": 3, "label": "rock"} +{"file_name": "test_09298.png", "caption": "This waltz song features accordions playing in harmony. Male voices sing the main melody. The voices sing in harmony. When the voices start to sing, the accordions play the same melody as the voices. The bass is played on a tuba. An acoustic guitar strums chords. A tambourine plays the part of the percussion. There are trumpets and clarinets playing in this song. This is a folk song. The mood of this song is happy.", "data_idx": 5505, "number": 0, "label": "hiphop"} +{"file_name": "test_09299.png", "caption": "This waltz song features accordions playing in harmony. Male voices sing the main melody. The voices sing in harmony. When the voices start to sing, the accordions play the same melody as the voices. The bass is played on a tuba. An acoustic guitar strums chords. A tambourine plays the part of the percussion. There are trumpets and clarinets playing in this song. This is a folk song. The mood of this song is happy.", "data_idx": 5505, "number": 1, "label": "hiphop"} +{"file_name": "test_09300.png", "caption": "The low quality recording features a widely spread resonating bowl tones. It sounds calming and relaxing, like something you would hear in a yoga session.", "data_idx": 5506, "number": 0, "label": "classical"} +{"file_name": "test_09301.png", "caption": "The low quality recording features a widely spread resonating bowl tones. It sounds calming and relaxing, like something you would hear in a yoga session.", "data_idx": 5506, "number": 1, "label": "classical"} +{"file_name": "test_09302.png", "caption": "The low quality recording features a widely spread resonating bowl tones. It sounds calming and relaxing, like something you would hear in a yoga session.", "data_idx": 5506, "number": 2, "label": "classical"} +{"file_name": "test_09303.png", "caption": "The low quality recording features a widely spread resonating bowl tones. It sounds calming and relaxing, like something you would hear in a yoga session.", "data_idx": 5506, "number": 3, "label": "classical"} +{"file_name": "test_09304.png", "caption": "This is a hard rock clip with a metallic electric guitar riff that follows the melody of the lead vocal. Percussively, there is a four on the floor drum beat that is loud and thumping. The lead vocalist has a croaky and gritty voice.", "data_idx": 5508, "number": 0, "label": "hiphop"} +{"file_name": "test_09305.png", "caption": "This is a hard rock clip with a metallic electric guitar riff that follows the melody of the lead vocal. Percussively, there is a four on the floor drum beat that is loud and thumping. The lead vocalist has a croaky and gritty voice.", "data_idx": 5508, "number": 1, "label": "hiphop"} +{"file_name": "test_09306.png", "caption": "This is a hard rock clip with a metallic electric guitar riff that follows the melody of the lead vocal. Percussively, there is a four on the floor drum beat that is loud and thumping. The lead vocalist has a croaky and gritty voice.", "data_idx": 5508, "number": 2, "label": "hiphop"} +{"file_name": "test_09307.png", "caption": "This is a hard rock clip with a metallic electric guitar riff that follows the melody of the lead vocal. Percussively, there is a four on the floor drum beat that is loud and thumping. The lead vocalist has a croaky and gritty voice.", "data_idx": 5508, "number": 3, "label": "hiphop"} +{"file_name": "test_09308.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a bass driven beat in common time. A synth plays chords in the background. The bass plays the root notes of the chords. There is a whistling sound played on a synth at the beginning of the song. This song has a happy tone. This song can be played in a club.", "data_idx": 5509, "number": 0, "label": "reggae"} +{"file_name": "test_09309.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a bass driven beat in common time. A synth plays chords in the background. The bass plays the root notes of the chords. There is a whistling sound played on a synth at the beginning of the song. This song has a happy tone. This song can be played in a club.", "data_idx": 5509, "number": 1, "label": "reggae"} +{"file_name": "test_09310.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a bass driven beat in common time. A synth plays chords in the background. The bass plays the root notes of the chords. There is a whistling sound played on a synth at the beginning of the song. This song has a happy tone. This song can be played in a club.", "data_idx": 5509, "number": 2, "label": "reggae"} +{"file_name": "test_09311.png", "caption": "This dance song features a female voice singing the main melody. This is accompanied by programmed percussion playing a bass driven beat in common time. A synth plays chords in the background. The bass plays the root notes of the chords. There is a whistling sound played on a synth at the beginning of the song. This song has a happy tone. This song can be played in a club.", "data_idx": 5509, "number": 3, "label": "reggae"} +{"file_name": "test_09312.png", "caption": "The song is an instrumental. The tempo is medium with traditional horn instruments playing, tambourine percussion, keyboard harmony and cymbal crashes. The song is devotional and spirited. The song has a bad audio quality with ambient crowd noises.", "data_idx": 5511, "number": 0, "label": "classical"} +{"file_name": "test_09313.png", "caption": "The song is an instrumental. The tempo is medium with traditional horn instruments playing, tambourine percussion, keyboard harmony and cymbal crashes. The song is devotional and spirited. The song has a bad audio quality with ambient crowd noises.", "data_idx": 5511, "number": 1, "label": "classical"} +{"file_name": "test_09314.png", "caption": "The song is an instrumental. The tempo is medium with traditional horn instruments playing, tambourine percussion, keyboard harmony and cymbal crashes. The song is devotional and spirited. The song has a bad audio quality with ambient crowd noises.", "data_idx": 5511, "number": 2, "label": "classical"} +{"file_name": "test_09315.png", "caption": "The song is an instrumental. The tempo is medium with traditional horn instruments playing, tambourine percussion, keyboard harmony and cymbal crashes. The song is devotional and spirited. The song has a bad audio quality with ambient crowd noises.", "data_idx": 5511, "number": 3, "label": "classical"} +{"file_name": "test_09316.png", "caption": "This amateur recording features the sound of two different cycle bells. The first bell is a single striking sound. The second bell has the sound of ringing. This audio clip features ambient noise as well. There are no musical instruments in this clip. There are no voices in this clip.", "data_idx": 5512, "number": 0, "label": "hiphop"} +{"file_name": "test_09317.png", "caption": "This amateur recording features the sound of two different cycle bells. The first bell is a single striking sound. The second bell has the sound of ringing. This audio clip features ambient noise as well. There are no musical instruments in this clip. There are no voices in this clip.", "data_idx": 5512, "number": 1, "label": "hiphop"} diff --git a/data/test/test_0005.zip b/data/test/test_0005.zip new file mode 100644 index 0000000000000000000000000000000000000000..76ec23c9c3645544bb74a9083e62306946c78f46 --- /dev/null +++ b/data/test/test_0005.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1539aa68c808ccbcb004260fdb3da655f3bbc8eee023a940030276bf22f50d5e +size 74353414 diff --git a/data/test/test_0006.zip b/data/test/test_0006.zip new file mode 100644 index 0000000000000000000000000000000000000000..a5bc2fb7e4c0f78b85e5473ee81e7d19c256882a --- /dev/null +++ b/data/test/test_0006.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0c13db058af5f47df44cb404af02628b54deb8eb9a471b54a12ee8cc61ea11 +size 37484003 diff --git a/data/test/test_0007.zip b/data/test/test_0007.zip new file mode 100644 index 0000000000000000000000000000000000000000..35f6d3c29878a10221dab4e90dad415f4a27d8d5 --- /dev/null +++ b/data/test/test_0007.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b9ff313898a94ec1ae9e53db18a279b43c84670fb5bc02e4f032e03bb7c3b6 +size 34210880 diff --git a/data/test/test_0008.zip b/data/test/test_0008.zip new file mode 100644 index 0000000000000000000000000000000000000000..ce5dc30b2cdfd79a4732b2a4722a06e4b9b93d64 --- /dev/null +++ b/data/test/test_0008.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0aacc6ba9729330ab485dea19c805b415d0ceac849519074589f2daecae5ad8 +size 41155429 diff --git a/data/test/test_0009.zip b/data/test/test_0009.zip new file mode 100644 index 0000000000000000000000000000000000000000..5d6cffcd8b668f6540542c0177c5a19224718321 --- /dev/null +++ b/data/test/test_0009.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfea32c648323ee4e49e3f6d1c5278e10dddb77ee4d923c594911f49ca84369 +size 31324986 diff --git a/data/test/test_0010.zip b/data/test/test_0010.zip new file mode 100644 index 0000000000000000000000000000000000000000..eef616816c11e7909a6bf1da1a0576dd601970f4 --- /dev/null +++ b/data/test/test_0010.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c69d274169047b8f366af3d353fcd9a452503e312483403e810ae0da488335 +size 31324986 diff --git a/data/test/test_0011.zip b/data/test/test_0011.zip new file mode 100644 index 0000000000000000000000000000000000000000..c27338d71b008c515a6ce0b7b9d612bb6c3a392d --- /dev/null +++ b/data/test/test_0011.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762da27c32b2b000703edd0a8b5edca8dd5dbec68ed06319f6254333a8e8dad0 +size 38007883 diff --git a/data/test/test_0012.zip b/data/test/test_0012.zip new file mode 100644 index 0000000000000000000000000000000000000000..18c2ada7951214194491ee2733c02e01e3ae258f --- /dev/null +++ b/data/test/test_0012.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10a195ad768908f365dd05b25fb74070c4f6e852afe5b230fa42d481201d0d7 +size 45046391 diff --git a/data/test/test_0013.zip b/data/test/test_0013.zip new file mode 100644 index 0000000000000000000000000000000000000000..17334f2823f72ce644984cbd22babd5005f374d0 --- /dev/null +++ b/data/test/test_0013.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03e9120ea7c0533b10037382cfc0e354a3eab73d5eb9328fdb0b92d78f5b287 +size 34731000 diff --git a/data/test/test_0014.zip b/data/test/test_0014.zip new file mode 100644 index 0000000000000000000000000000000000000000..fa0e294f700733591216679870eaeda6990ac83a --- /dev/null +++ b/data/test/test_0014.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10596a1fc01f601293ede2527833be3eecc1f3e5ae29ff42a1b6dbba807ac094 +size 34023077 diff --git a/data/test/test_0015.zip b/data/test/test_0015.zip new file mode 100644 index 0000000000000000000000000000000000000000..ec30caefca315c743eca56f207bb3d4276a6008b --- /dev/null +++ b/data/test/test_0015.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afe079007f0a95f5063f4969c1cb82e03e83d11d93d8d8710b60e5256240f4d +size 38458202 diff --git a/data/test/test_0016.zip b/data/test/test_0016.zip new file mode 100644 index 0000000000000000000000000000000000000000..2e2408a6d741981d5b5d52cea88271014d14ce00 --- /dev/null +++ b/data/test/test_0016.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09dccc8404043a13c276a943a4e8caae4eb52ad1a895a628f075ba160df774a9 +size 39240930 diff --git a/data/test/test_0017.zip b/data/test/test_0017.zip new file mode 100644 index 0000000000000000000000000000000000000000..6820b8b1dbb09c78ce6cac590033306c41237fa4 --- /dev/null +++ b/data/test/test_0017.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7da1e2daca2dc5a3a29b1503a725cd32a9d8898dc6078c33ee0e2fd5acf92c +size 44973307 diff --git a/data/test/test_0018.zip b/data/test/test_0018.zip new file mode 100644 index 0000000000000000000000000000000000000000..f5875ae6528b7f37badda0c7800e8badec1c6cd7 --- /dev/null +++ b/data/test/test_0018.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6139ebb0fd5bec1cf1a35f1854cb9c52135c038706dec31c01982f6124845f8b +size 44639983 diff --git a/data/test/test_0019.zip b/data/test/test_0019.zip new file mode 100644 index 0000000000000000000000000000000000000000..e259ef5bb789fbaafa73adec2edc6250010381bd --- /dev/null +++ b/data/test/test_0019.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d308fea5139b2b0b507368688d83949f3f10e657606725c2e2ee1fd581db97 +size 38335932 diff --git a/data/test/test_0020.zip b/data/test/test_0020.zip new file mode 100644 index 0000000000000000000000000000000000000000..202c644b98cc68404e24b0e48a11f6c53de4836a --- /dev/null +++ b/data/test/test_0020.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483d0eb1b6da4930300d731a3ea75f6daf5256fddceb2d53edf29e377d71474e +size 45066606 diff --git a/data/test/test_0021.zip b/data/test/test_0021.zip new file mode 100644 index 0000000000000000000000000000000000000000..11298d33ba297645f85df611bdfce616ac8f9e7e --- /dev/null +++ b/data/test/test_0021.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9056fecd66b7a61205739162d8b100c2eb81bb8e1713f0075db396a61e2d2f80 +size 65583226 diff --git a/data/train/metadata_0005.jsonl b/data/train/metadata_0005.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b6d747d5744b5001d0b41075349b2fe8e398b969 --- /dev/null +++ b/data/train/metadata_0005.jsonl @@ -0,0 +1,772 @@ +{"file_name": "train_02968.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over groovy bass, simple hi hats and punchy snare. There are some loud stuttering low frequency audio crackly noises in the recording, which makes it a bit uncomfortable to listen. It sounds groovy and chill regardless.", "data_idx": 1601, "number": 0, "label": "reggae"} +{"file_name": "train_02969.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over groovy bass, simple hi hats and punchy snare. There are some loud stuttering low frequency audio crackly noises in the recording, which makes it a bit uncomfortable to listen. It sounds groovy and chill regardless.", "data_idx": 1601, "number": 1, "label": "reggae"} +{"file_name": "train_02970.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over groovy bass, simple hi hats and punchy snare. There are some loud stuttering low frequency audio crackly noises in the recording, which makes it a bit uncomfortable to listen. It sounds groovy and chill regardless.", "data_idx": 1601, "number": 2, "label": "reggae"} +{"file_name": "train_02971.png", "caption": "The low quality recording features a reggae song that consists of passionate male vocal singing over groovy bass, simple hi hats and punchy snare. There are some loud stuttering low frequency audio crackly noises in the recording, which makes it a bit uncomfortable to listen. It sounds groovy and chill regardless.", "data_idx": 1601, "number": 3, "label": "reggae"} +{"file_name": "train_02972.png", "caption": "The low quality recording features a live performance of a punk song that consists of screaming female vocal singing over a muffled instrumental. It sounds energetic, harsh, crushed, loud and the recording is noisy and in mono.", "data_idx": 1602, "number": 0, "label": "classical"} +{"file_name": "train_02973.png", "caption": "The low quality recording features a live performance of a punk song that consists of screaming female vocal singing over a muffled instrumental. It sounds energetic, harsh, crushed, loud and the recording is noisy and in mono.", "data_idx": 1602, "number": 1, "label": "classical"} +{"file_name": "train_02974.png", "caption": "The low quality recording features a live performance of a punk song that consists of screaming female vocal singing over a muffled instrumental. It sounds energetic, harsh, crushed, loud and the recording is noisy and in mono.", "data_idx": 1602, "number": 2, "label": "classical"} +{"file_name": "train_02975.png", "caption": "The low quality recording features a live performance of a punk song that consists of screaming female vocal singing over a muffled instrumental. It sounds energetic, harsh, crushed, loud and the recording is noisy and in mono.", "data_idx": 1602, "number": 3, "label": "classical"} +{"file_name": "train_02976.png", "caption": "This is a bluegrass music piece performance. Iconic to the American folk songs, it involves a rapidly played banjo solo. The atmosphere of the piece is cozy and positive. This piece could be used in rural social media content or in a comedy show taking place in rural USA.", "data_idx": 1603, "number": 0, "label": "classical"} +{"file_name": "train_02977.png", "caption": "This is a bluegrass music piece performance. Iconic to the American folk songs, it involves a rapidly played banjo solo. The atmosphere of the piece is cozy and positive. This piece could be used in rural social media content or in a comedy show taking place in rural USA.", "data_idx": 1603, "number": 1, "label": "classical"} +{"file_name": "train_02978.png", "caption": "This is a bluegrass music piece performance. Iconic to the American folk songs, it involves a rapidly played banjo solo. The atmosphere of the piece is cozy and positive. This piece could be used in rural social media content or in a comedy show taking place in rural USA.", "data_idx": 1603, "number": 2, "label": "classical"} +{"file_name": "train_02979.png", "caption": "This is a bluegrass music piece performance. Iconic to the American folk songs, it involves a rapidly played banjo solo. The atmosphere of the piece is cozy and positive. This piece could be used in rural social media content or in a comedy show taking place in rural USA.", "data_idx": 1603, "number": 3, "label": "classical"} +{"file_name": "train_02980.png", "caption": "This music is instrumental. The tempo is slow with atmospheric keyboard, melodic piano, amplified organ and sound of rain falling and water flowing. The music is peaceful, soothing, meditative, ethereal, pensive,reflective, celestial and calming.", "data_idx": 1604, "number": 0, "label": "classical"} +{"file_name": "train_02981.png", "caption": "This music is instrumental. The tempo is slow with atmospheric keyboard, melodic piano, amplified organ and sound of rain falling and water flowing. The music is peaceful, soothing, meditative, ethereal, pensive,reflective, celestial and calming.", "data_idx": 1604, "number": 1, "label": "classical"} +{"file_name": "train_02982.png", "caption": "This music is instrumental. The tempo is slow with atmospheric keyboard, melodic piano, amplified organ and sound of rain falling and water flowing. The music is peaceful, soothing, meditative, ethereal, pensive,reflective, celestial and calming.", "data_idx": 1604, "number": 2, "label": "classical"} +{"file_name": "train_02983.png", "caption": "This music is instrumental. The tempo is slow with atmospheric keyboard, melodic piano, amplified organ and sound of rain falling and water flowing. The music is peaceful, soothing, meditative, ethereal, pensive,reflective, celestial and calming.", "data_idx": 1604, "number": 3, "label": "classical"} +{"file_name": "train_02984.png", "caption": "The low quality recording features a hip hop song being scratched by the DJ. The song features a filtered flat male vocal, punchy snare, bouncy kick, widely spread shimmering cymbals, groovy bass and arpeggiated electric guitar melody. It sounds bouncy and groovy, as the DJ is probably practicing his scratching skills.", "data_idx": 1605, "number": 0, "label": "hiphop"} +{"file_name": "train_02985.png", "caption": "The low quality recording features a hip hop song being scratched by the DJ. The song features a filtered flat male vocal, punchy snare, bouncy kick, widely spread shimmering cymbals, groovy bass and arpeggiated electric guitar melody. It sounds bouncy and groovy, as the DJ is probably practicing his scratching skills.", "data_idx": 1605, "number": 1, "label": "hiphop"} +{"file_name": "train_02986.png", "caption": "The low quality recording features a hip hop song being scratched by the DJ. The song features a filtered flat male vocal, punchy snare, bouncy kick, widely spread shimmering cymbals, groovy bass and arpeggiated electric guitar melody. It sounds bouncy and groovy, as the DJ is probably practicing his scratching skills.", "data_idx": 1605, "number": 2, "label": "hiphop"} +{"file_name": "train_02987.png", "caption": "The low quality recording features a hip hop song being scratched by the DJ. The song features a filtered flat male vocal, punchy snare, bouncy kick, widely spread shimmering cymbals, groovy bass and arpeggiated electric guitar melody. It sounds bouncy and groovy, as the DJ is probably practicing his scratching skills.", "data_idx": 1605, "number": 3, "label": "hiphop"} +{"file_name": "train_02988.png", "caption": "This blues guitar song features a resonator guitar. Fingerstyle guitar is being played. The melody is a blues style guitar. There are no other instruments in this song. There are no voices in this song. This song can be played in a bar.", "data_idx": 1607, "number": 0, "label": "blues"} +{"file_name": "train_02989.png", "caption": "This blues guitar song features a resonator guitar. Fingerstyle guitar is being played. The melody is a blues style guitar. There are no other instruments in this song. There are no voices in this song. This song can be played in a bar.", "data_idx": 1607, "number": 1, "label": "blues"} +{"file_name": "train_02990.png", "caption": "This blues guitar song features a resonator guitar. Fingerstyle guitar is being played. The melody is a blues style guitar. There are no other instruments in this song. There are no voices in this song. This song can be played in a bar.", "data_idx": 1607, "number": 2, "label": "blues"} +{"file_name": "train_02991.png", "caption": "This blues guitar song features a resonator guitar. Fingerstyle guitar is being played. The melody is a blues style guitar. There are no other instruments in this song. There are no voices in this song. This song can be played in a bar.", "data_idx": 1607, "number": 3, "label": "blues"} +{"file_name": "train_02992.png", "caption": "Male singer sings this cool Latin melody. The song is medium tempo with various Latin percussion instruments and a brass band playing percussively in harmony. The song is energetic and has a cool dance rhythm. The audio quality of the song is average.", "data_idx": 1610, "number": 0, "label": "disco"} +{"file_name": "train_02993.png", "caption": "Male singer sings this cool Latin melody. The song is medium tempo with various Latin percussion instruments and a brass band playing percussively in harmony. The song is energetic and has a cool dance rhythm. The audio quality of the song is average.", "data_idx": 1610, "number": 1, "label": "disco"} +{"file_name": "train_02994.png", "caption": "Male singer sings this cool Latin melody. The song is medium tempo with various Latin percussion instruments and a brass band playing percussively in harmony. The song is energetic and has a cool dance rhythm. The audio quality of the song is average.", "data_idx": 1610, "number": 2, "label": "disco"} +{"file_name": "train_02995.png", "caption": "Male singer sings this cool Latin melody. The song is medium tempo with various Latin percussion instruments and a brass band playing percussively in harmony. The song is energetic and has a cool dance rhythm. The audio quality of the song is average.", "data_idx": 1610, "number": 3, "label": "disco"} +{"file_name": "train_02996.png", "caption": "The music features for the most part an instrumental but almost at the end of the excerpt a male voice starts to yodel. Up to that point the melody is being played by a marimba, then trumpets and horns, possibly trombones too. A tuba is holding the beat pulsation in the low register. At the end of the excerpt a harp can be heard.", "data_idx": 1611, "number": 0, "label": "classical"} +{"file_name": "train_02997.png", "caption": "The music features for the most part an instrumental but almost at the end of the excerpt a male voice starts to yodel. Up to that point the melody is being played by a marimba, then trumpets and horns, possibly trombones too. A tuba is holding the beat pulsation in the low register. At the end of the excerpt a harp can be heard.", "data_idx": 1611, "number": 1, "label": "classical"} +{"file_name": "train_02998.png", "caption": "The music features for the most part an instrumental but almost at the end of the excerpt a male voice starts to yodel. Up to that point the melody is being played by a marimba, then trumpets and horns, possibly trombones too. A tuba is holding the beat pulsation in the low register. At the end of the excerpt a harp can be heard.", "data_idx": 1611, "number": 2, "label": "classical"} +{"file_name": "train_02999.png", "caption": "The music features for the most part an instrumental but almost at the end of the excerpt a male voice starts to yodel. Up to that point the melody is being played by a marimba, then trumpets and horns, possibly trombones too. A tuba is holding the beat pulsation in the low register. At the end of the excerpt a harp can be heard.", "data_idx": 1611, "number": 3, "label": "classical"} +{"file_name": "train_03000.png", "caption": "The low quality recording features a rock song that consists of throaty male vocal singing over widely spread arpeggiated electric guitar melody, smooth bass guitar, punchy snare, shimmering hi hats and soft kick hits. It sounds thin, distorted and messy, since the frequencies are clashing.", "data_idx": 1614, "number": 0, "label": "rock"} +{"file_name": "train_03001.png", "caption": "The low quality recording features a rock song that consists of throaty male vocal singing over widely spread arpeggiated electric guitar melody, smooth bass guitar, punchy snare, shimmering hi hats and soft kick hits. It sounds thin, distorted and messy, since the frequencies are clashing.", "data_idx": 1614, "number": 1, "label": "rock"} +{"file_name": "train_03002.png", "caption": "The low quality recording features a rock song that consists of throaty male vocal singing over widely spread arpeggiated electric guitar melody, smooth bass guitar, punchy snare, shimmering hi hats and soft kick hits. It sounds thin, distorted and messy, since the frequencies are clashing.", "data_idx": 1614, "number": 2, "label": "rock"} +{"file_name": "train_03003.png", "caption": "The low quality recording features a rock song that consists of throaty male vocal singing over widely spread arpeggiated electric guitar melody, smooth bass guitar, punchy snare, shimmering hi hats and soft kick hits. It sounds thin, distorted and messy, since the frequencies are clashing.", "data_idx": 1614, "number": 3, "label": "rock"} +{"file_name": "train_03004.png", "caption": "The Drum & Bass song features a shimmering hi hats, punchy snare and kick hits, manic repetitive synth lead melody and synth pad swell. It sounds energetic, aggressive and upbeat - like something you would hear in clubs during the 00s.", "data_idx": 1616, "number": 0, "label": "pop"} +{"file_name": "train_03005.png", "caption": "The Drum & Bass song features a shimmering hi hats, punchy snare and kick hits, manic repetitive synth lead melody and synth pad swell. It sounds energetic, aggressive and upbeat - like something you would hear in clubs during the 00s.", "data_idx": 1616, "number": 1, "label": "pop"} +{"file_name": "train_03006.png", "caption": "The Drum & Bass song features a shimmering hi hats, punchy snare and kick hits, manic repetitive synth lead melody and synth pad swell. It sounds energetic, aggressive and upbeat - like something you would hear in clubs during the 00s.", "data_idx": 1616, "number": 2, "label": "pop"} +{"file_name": "train_03007.png", "caption": "The Drum & Bass song features a shimmering hi hats, punchy snare and kick hits, manic repetitive synth lead melody and synth pad swell. It sounds energetic, aggressive and upbeat - like something you would hear in clubs during the 00s.", "data_idx": 1616, "number": 3, "label": "pop"} +{"file_name": "train_03008.png", "caption": "This music is an energetic instrumental. The tempo is fast with a regional string instrument playing the lead with hand percussion like a small hand drum, tambourine and shaker beats. The music is lively, cheerful, happy, youthful, buoyant, enthusiastic, sunny and celebratory with a peppy dance groove. This music is Folk dance music.", "data_idx": 1619, "number": 0, "label": "blues"} +{"file_name": "train_03009.png", "caption": "This music is an energetic instrumental. The tempo is fast with a regional string instrument playing the lead with hand percussion like a small hand drum, tambourine and shaker beats. The music is lively, cheerful, happy, youthful, buoyant, enthusiastic, sunny and celebratory with a peppy dance groove. This music is Folk dance music.", "data_idx": 1619, "number": 1, "label": "blues"} +{"file_name": "train_03010.png", "caption": "This music is an energetic instrumental. The tempo is fast with a regional string instrument playing the lead with hand percussion like a small hand drum, tambourine and shaker beats. The music is lively, cheerful, happy, youthful, buoyant, enthusiastic, sunny and celebratory with a peppy dance groove. This music is Folk dance music.", "data_idx": 1619, "number": 2, "label": "blues"} +{"file_name": "train_03011.png", "caption": "This music is an energetic instrumental. The tempo is fast with a regional string instrument playing the lead with hand percussion like a small hand drum, tambourine and shaker beats. The music is lively, cheerful, happy, youthful, buoyant, enthusiastic, sunny and celebratory with a peppy dance groove. This music is Folk dance music.", "data_idx": 1619, "number": 3, "label": "blues"} +{"file_name": "train_03012.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with guitar strumming rhythm, steady drumming rhythm, keyboard accompaniment and a percussive bass line. The song is romantic with a cool dance groove. The audio quality is poor.", "data_idx": 1622, "number": 0, "label": "rock"} +{"file_name": "train_03013.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with guitar strumming rhythm, steady drumming rhythm, keyboard accompaniment and a percussive bass line. The song is romantic with a cool dance groove. The audio quality is poor.", "data_idx": 1622, "number": 1, "label": "rock"} +{"file_name": "train_03014.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with guitar strumming rhythm, steady drumming rhythm, keyboard accompaniment and a percussive bass line. The song is romantic with a cool dance groove. The audio quality is poor.", "data_idx": 1622, "number": 2, "label": "rock"} +{"file_name": "train_03015.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with guitar strumming rhythm, steady drumming rhythm, keyboard accompaniment and a percussive bass line. The song is romantic with a cool dance groove. The audio quality is poor.", "data_idx": 1622, "number": 3, "label": "rock"} +{"file_name": "train_03016.png", "caption": "A male vocalist sings this high spirited Portugal song. The tempo is fast with keyboard harmony, punchy drumming, groovy bass lines, animated trumpets, backed with harmonica, party whistles, lively vocalisation and vocal backup, tambourine beats and congas. This song is a sonic treat with a plethora of instruments in perfect sync and harmony. It is happy, joyful and merry with a dance groove.", "data_idx": 1623, "number": 0, "label": "disco"} +{"file_name": "train_03017.png", "caption": "A male vocalist sings this high spirited Portugal song. The tempo is fast with keyboard harmony, punchy drumming, groovy bass lines, animated trumpets, backed with harmonica, party whistles, lively vocalisation and vocal backup, tambourine beats and congas. This song is a sonic treat with a plethora of instruments in perfect sync and harmony. It is happy, joyful and merry with a dance groove.", "data_idx": 1623, "number": 1, "label": "disco"} +{"file_name": "train_03018.png", "caption": "A male vocalist sings this high spirited Portugal song. The tempo is fast with keyboard harmony, punchy drumming, groovy bass lines, animated trumpets, backed with harmonica, party whistles, lively vocalisation and vocal backup, tambourine beats and congas. This song is a sonic treat with a plethora of instruments in perfect sync and harmony. It is happy, joyful and merry with a dance groove.", "data_idx": 1623, "number": 2, "label": "disco"} +{"file_name": "train_03019.png", "caption": "A male vocalist sings this high spirited Portugal song. The tempo is fast with keyboard harmony, punchy drumming, groovy bass lines, animated trumpets, backed with harmonica, party whistles, lively vocalisation and vocal backup, tambourine beats and congas. This song is a sonic treat with a plethora of instruments in perfect sync and harmony. It is happy, joyful and merry with a dance groove.", "data_idx": 1623, "number": 3, "label": "disco"} +{"file_name": "train_03020.png", "caption": "A synthbass is playing a soft line along with a piano playing a melody while a noise riser sound is slowly rising up creating tension. The female voice sings a melody on top of that. This song may be playing while running with headphones.", "data_idx": 1624, "number": 0, "label": "rock"} +{"file_name": "train_03021.png", "caption": "A synthbass is playing a soft line along with a piano playing a melody while a noise riser sound is slowly rising up creating tension. The female voice sings a melody on top of that. This song may be playing while running with headphones.", "data_idx": 1624, "number": 1, "label": "rock"} +{"file_name": "train_03022.png", "caption": "A synthbass is playing a soft line along with a piano playing a melody while a noise riser sound is slowly rising up creating tension. The female voice sings a melody on top of that. This song may be playing while running with headphones.", "data_idx": 1624, "number": 2, "label": "rock"} +{"file_name": "train_03023.png", "caption": "A synthbass is playing a soft line along with a piano playing a melody while a noise riser sound is slowly rising up creating tension. The female voice sings a melody on top of that. This song may be playing while running with headphones.", "data_idx": 1624, "number": 3, "label": "rock"} +{"file_name": "train_03024.png", "caption": "The low quality recording features an old video game song that consists of sustained synth strings melody, mellow percussions, groovy, thin bass and synth pad chords. The recording is very noisy and the stereo image is unbalanced as it is leaning towards the left channel. It sounds a bit glitchy and slightly detuned too.", "data_idx": 1625, "number": 0, "label": "classical"} +{"file_name": "train_03025.png", "caption": "The low quality recording features an old video game song that consists of sustained synth strings melody, mellow percussions, groovy, thin bass and synth pad chords. The recording is very noisy and the stereo image is unbalanced as it is leaning towards the left channel. It sounds a bit glitchy and slightly detuned too.", "data_idx": 1625, "number": 1, "label": "classical"} +{"file_name": "train_03026.png", "caption": "This song has a catchy synthesizer bassline that is repeating. The electronic drums are playing a four on the floor techno groove with some tambourines and some processed crash sounds. The elements are gently panned to the left and right side of the speakers. The male voice is rapping over the instrumental while a low pitched vocal sample melody is singing a melody and some pieces of that are also panned to the left and right side of the speakers along with some reverb and light delay. This song may be playing in a club or a beach party.", "data_idx": 1626, "number": 0, "label": "hiphop"} +{"file_name": "train_03027.png", "caption": "This song has a catchy synthesizer bassline that is repeating. The electronic drums are playing a four on the floor techno groove with some tambourines and some processed crash sounds. The elements are gently panned to the left and right side of the speakers. The male voice is rapping over the instrumental while a low pitched vocal sample melody is singing a melody and some pieces of that are also panned to the left and right side of the speakers along with some reverb and light delay. This song may be playing in a club or a beach party.", "data_idx": 1626, "number": 1, "label": "hiphop"} +{"file_name": "train_03028.png", "caption": "This song has a catchy synthesizer bassline that is repeating. The electronic drums are playing a four on the floor techno groove with some tambourines and some processed crash sounds. The elements are gently panned to the left and right side of the speakers. The male voice is rapping over the instrumental while a low pitched vocal sample melody is singing a melody and some pieces of that are also panned to the left and right side of the speakers along with some reverb and light delay. This song may be playing in a club or a beach party.", "data_idx": 1626, "number": 2, "label": "hiphop"} +{"file_name": "train_03029.png", "caption": "This song has a catchy synthesizer bassline that is repeating. The electronic drums are playing a four on the floor techno groove with some tambourines and some processed crash sounds. The elements are gently panned to the left and right side of the speakers. The male voice is rapping over the instrumental while a low pitched vocal sample melody is singing a melody and some pieces of that are also panned to the left and right side of the speakers along with some reverb and light delay. This song may be playing in a club or a beach party.", "data_idx": 1626, "number": 3, "label": "hiphop"} +{"file_name": "train_03030.png", "caption": "A male vocalist sings this animated song. The tempo is medium with vocal emphasis, a bright ukelele harmony, groovy bass guitar, rhythmic acoustic guitar and piano accompaniment. The song is emphatic, passionate, jealous, emotional, sentimental and story telling. The song has an orchestral vibe.", "data_idx": 1628, "number": 0, "label": "blues"} +{"file_name": "train_03031.png", "caption": "A male vocalist sings this animated song. The tempo is medium with vocal emphasis, a bright ukelele harmony, groovy bass guitar, rhythmic acoustic guitar and piano accompaniment. The song is emphatic, passionate, jealous, emotional, sentimental and story telling. The song has an orchestral vibe.", "data_idx": 1628, "number": 1, "label": "blues"} +{"file_name": "train_03032.png", "caption": "A male vocalist sings this animated song. The tempo is medium with vocal emphasis, a bright ukelele harmony, groovy bass guitar, rhythmic acoustic guitar and piano accompaniment. The song is emphatic, passionate, jealous, emotional, sentimental and story telling. The song has an orchestral vibe.", "data_idx": 1628, "number": 2, "label": "blues"} +{"file_name": "train_03033.png", "caption": "A male vocalist sings this animated song. The tempo is medium with vocal emphasis, a bright ukelele harmony, groovy bass guitar, rhythmic acoustic guitar and piano accompaniment. The song is emphatic, passionate, jealous, emotional, sentimental and story telling. The song has an orchestral vibe.", "data_idx": 1628, "number": 3, "label": "blues"} +{"file_name": "train_03034.png", "caption": "The instrumental music features a harp playing a combination of melody and accompaniment. In the background one can hear a synth pad providing harmony throughout the music excerpt. The message of the song seems romantic and the atmosphere is calming.", "data_idx": 1635, "number": 0, "label": "classical"} +{"file_name": "train_03035.png", "caption": "The instrumental music features a harp playing a combination of melody and accompaniment. In the background one can hear a synth pad providing harmony throughout the music excerpt. The message of the song seems romantic and the atmosphere is calming.", "data_idx": 1635, "number": 1, "label": "classical"} +{"file_name": "train_03036.png", "caption": "The instrumental music features a harp playing a combination of melody and accompaniment. In the background one can hear a synth pad providing harmony throughout the music excerpt. The message of the song seems romantic and the atmosphere is calming.", "data_idx": 1635, "number": 2, "label": "classical"} +{"file_name": "train_03037.png", "caption": "The instrumental music features a harp playing a combination of melody and accompaniment. In the background one can hear a synth pad providing harmony throughout the music excerpt. The message of the song seems romantic and the atmosphere is calming.", "data_idx": 1635, "number": 3, "label": "classical"} +{"file_name": "train_03038.png", "caption": "This is a gear showcase jam recording. The only instrument being played is an electric guitar with heavy distortion. There is a hard-hitting guitar solo. The sound is crunchy. There is a raw atmosphere to this recording. This piece could be used in advertisements as a jingle. It could also be sampled to be used in beat-making.", "data_idx": 1636, "number": 0, "label": "blues"} +{"file_name": "train_03039.png", "caption": "This is a gear showcase jam recording. The only instrument being played is an electric guitar with heavy distortion. There is a hard-hitting guitar solo. The sound is crunchy. There is a raw atmosphere to this recording. This piece could be used in advertisements as a jingle. It could also be sampled to be used in beat-making.", "data_idx": 1636, "number": 1, "label": "blues"} +{"file_name": "train_03040.png", "caption": "This is a gear showcase jam recording. The only instrument being played is an electric guitar with heavy distortion. There is a hard-hitting guitar solo. The sound is crunchy. There is a raw atmosphere to this recording. This piece could be used in advertisements as a jingle. It could also be sampled to be used in beat-making.", "data_idx": 1636, "number": 2, "label": "blues"} +{"file_name": "train_03041.png", "caption": "This is a gear showcase jam recording. The only instrument being played is an electric guitar with heavy distortion. There is a hard-hitting guitar solo. The sound is crunchy. There is a raw atmosphere to this recording. This piece could be used in advertisements as a jingle. It could also be sampled to be used in beat-making.", "data_idx": 1636, "number": 3, "label": "blues"} +{"file_name": "train_03042.png", "caption": "The low quality recording features an arpeggiated steel acoustic guitar playing alongside acoustic rhythm guitar chord progression. The recording is noisy and in mono and it sounds like a cartoon song.", "data_idx": 1639, "number": 0, "label": "blues"} +{"file_name": "train_03043.png", "caption": "The low quality recording features an arpeggiated steel acoustic guitar playing alongside acoustic rhythm guitar chord progression. The recording is noisy and in mono and it sounds like a cartoon song.", "data_idx": 1639, "number": 1, "label": "blues"} +{"file_name": "train_03044.png", "caption": "The low quality recording features an arpeggiated steel acoustic guitar playing alongside acoustic rhythm guitar chord progression. The recording is noisy and in mono and it sounds like a cartoon song.", "data_idx": 1639, "number": 2, "label": "blues"} +{"file_name": "train_03045.png", "caption": "The low quality recording features an arpeggiated steel acoustic guitar playing alongside acoustic rhythm guitar chord progression. The recording is noisy and in mono and it sounds like a cartoon song.", "data_idx": 1639, "number": 3, "label": "blues"} +{"file_name": "train_03046.png", "caption": "This audio clip features sounds of whales. A synth plays fills in the background. There are no voices and no percussion. This clip can be used in a dreamy movie sequence.", "data_idx": 1642, "number": 0, "label": "classical"} +{"file_name": "train_03047.png", "caption": "This audio clip features sounds of whales. A synth plays fills in the background. There are no voices and no percussion. This clip can be used in a dreamy movie sequence.", "data_idx": 1642, "number": 1, "label": "classical"} +{"file_name": "train_03048.png", "caption": "This audio clip features sounds of whales. A synth plays fills in the background. There are no voices and no percussion. This clip can be used in a dreamy movie sequence.", "data_idx": 1642, "number": 2, "label": "classical"} +{"file_name": "train_03049.png", "caption": "This audio clip features sounds of whales. A synth plays fills in the background. There are no voices and no percussion. This clip can be used in a dreamy movie sequence.", "data_idx": 1642, "number": 3, "label": "classical"} +{"file_name": "train_03050.png", "caption": "This is an instrumental progressive rock piece. There is an electric guitar playing an arpeggio in the melodic background while another is playing a solo as the lead. A simple 4/4 rock beat is with electronic drum sounds. The atmosphere has a trippy, psychedelic feeling to it. This piece could be used in the trip/nightmare sequences of retro themed horror movies.", "data_idx": 1644, "number": 0, "label": "blues"} +{"file_name": "train_03051.png", "caption": "This is an instrumental progressive rock piece. There is an electric guitar playing an arpeggio in the melodic background while another is playing a solo as the lead. A simple 4/4 rock beat is with electronic drum sounds. The atmosphere has a trippy, psychedelic feeling to it. This piece could be used in the trip/nightmare sequences of retro themed horror movies.", "data_idx": 1644, "number": 1, "label": "blues"} +{"file_name": "train_03052.png", "caption": "This is an instrumental progressive rock piece. There is an electric guitar playing an arpeggio in the melodic background while another is playing a solo as the lead. A simple 4/4 rock beat is with electronic drum sounds. The atmosphere has a trippy, psychedelic feeling to it. This piece could be used in the trip/nightmare sequences of retro themed horror movies.", "data_idx": 1644, "number": 2, "label": "blues"} +{"file_name": "train_03053.png", "caption": "This is an instrumental progressive rock piece. There is an electric guitar playing an arpeggio in the melodic background while another is playing a solo as the lead. A simple 4/4 rock beat is with electronic drum sounds. The atmosphere has a trippy, psychedelic feeling to it. This piece could be used in the trip/nightmare sequences of retro themed horror movies.", "data_idx": 1644, "number": 3, "label": "blues"} +{"file_name": "train_03054.png", "caption": "This audio clip features a recording from a movie sequence. There are sounds of bombs blasting. There is the sound of a machine gun firing. The sound of a man grunting as if he is escaping from the firing gun. In the background, there is the sound of a bass playing one note in a repetitive sequence. A simple percussion plays in the background and a wind instrument plays a note.", "data_idx": 1649, "number": 0, "label": "hiphop"} +{"file_name": "train_03055.png", "caption": "This audio clip features a recording from a movie sequence. There are sounds of bombs blasting. There is the sound of a machine gun firing. The sound of a man grunting as if he is escaping from the firing gun. In the background, there is the sound of a bass playing one note in a repetitive sequence. A simple percussion plays in the background and a wind instrument plays a note.", "data_idx": 1649, "number": 1, "label": "hiphop"} +{"file_name": "train_03056.png", "caption": "The song is an instrumental. The tempo is medium with a heavily doctored guitar playing lead with strong rock drumming. The song is highly distorted with hissing and crackling audio. The audio quality is very poor and the song is a tv show tune.", "data_idx": 1650, "number": 0, "label": "metal"} +{"file_name": "train_03057.png", "caption": "The song is an instrumental. The tempo is medium with a heavily doctored guitar playing lead with strong rock drumming. The song is highly distorted with hissing and crackling audio. The audio quality is very poor and the song is a tv show tune.", "data_idx": 1650, "number": 1, "label": "metal"} +{"file_name": "train_03058.png", "caption": "The song is an instrumental. The tempo is medium with a heavily doctored guitar playing lead with strong rock drumming. The song is highly distorted with hissing and crackling audio. The audio quality is very poor and the song is a tv show tune.", "data_idx": 1650, "number": 2, "label": "metal"} +{"file_name": "train_03059.png", "caption": "The song is an instrumental. The tempo is medium with a heavily doctored guitar playing lead with strong rock drumming. The song is highly distorted with hissing and crackling audio. The audio quality is very poor and the song is a tv show tune.", "data_idx": 1650, "number": 3, "label": "metal"} +{"file_name": "train_03060.png", "caption": "This is the recording of a DJ performance. In the rhythmic background, the electronic drums are playing a simple yet groovy beat. The DJ is scratching the turntable rapidly over this track. The piece is danceable. It has a dirty mix. Parts of this piece can be used as turntable samples for a beat. It could also be used in the soundtrack of a show with a big city setting.", "data_idx": 1651, "number": 0, "label": "hiphop"} +{"file_name": "train_03061.png", "caption": "This is the recording of a DJ performance. In the rhythmic background, the electronic drums are playing a simple yet groovy beat. The DJ is scratching the turntable rapidly over this track. The piece is danceable. It has a dirty mix. Parts of this piece can be used as turntable samples for a beat. It could also be used in the soundtrack of a show with a big city setting.", "data_idx": 1651, "number": 1, "label": "hiphop"} +{"file_name": "train_03062.png", "caption": "The Hip Hop song features a passionate female vocal singing and flat male vocal rapping over piano chords, punchy kick and snare hits, repetitive synth hits and sustained strings melody. At the end of the first section there is an echoing effect on vocals. It sounds energetic and addictive, even though the audio cuts out in the middle of the chorus, straight to the verse.", "data_idx": 1652, "number": 0, "label": "hiphop"} +{"file_name": "train_03063.png", "caption": "The Hip Hop song features a passionate female vocal singing and flat male vocal rapping over piano chords, punchy kick and snare hits, repetitive synth hits and sustained strings melody. At the end of the first section there is an echoing effect on vocals. It sounds energetic and addictive, even though the audio cuts out in the middle of the chorus, straight to the verse.", "data_idx": 1652, "number": 1, "label": "hiphop"} +{"file_name": "train_03064.png", "caption": "The Hip Hop song features a passionate female vocal singing and flat male vocal rapping over piano chords, punchy kick and snare hits, repetitive synth hits and sustained strings melody. At the end of the first section there is an echoing effect on vocals. It sounds energetic and addictive, even though the audio cuts out in the middle of the chorus, straight to the verse.", "data_idx": 1652, "number": 2, "label": "hiphop"} +{"file_name": "train_03065.png", "caption": "The Hip Hop song features a passionate female vocal singing and flat male vocal rapping over piano chords, punchy kick and snare hits, repetitive synth hits and sustained strings melody. At the end of the first section there is an echoing effect on vocals. It sounds energetic and addictive, even though the audio cuts out in the middle of the chorus, straight to the verse.", "data_idx": 1652, "number": 3, "label": "hiphop"} +{"file_name": "train_03066.png", "caption": "The Ambient song features a mellow piano melody and soft synth pad chords. It sounds relaxing, calming and hypnotic - like something you would listen to while doing yoga.", "data_idx": 1653, "number": 0, "label": "classical"} +{"file_name": "train_03067.png", "caption": "The Ambient song features a mellow piano melody and soft synth pad chords. It sounds relaxing, calming and hypnotic - like something you would listen to while doing yoga.", "data_idx": 1653, "number": 1, "label": "classical"} +{"file_name": "train_03068.png", "caption": "The Ambient song features a mellow piano melody and soft synth pad chords. It sounds relaxing, calming and hypnotic - like something you would listen to while doing yoga.", "data_idx": 1653, "number": 2, "label": "classical"} +{"file_name": "train_03069.png", "caption": "The Ambient song features a mellow piano melody and soft synth pad chords. It sounds relaxing, calming and hypnotic - like something you would listen to while doing yoga.", "data_idx": 1653, "number": 3, "label": "classical"} +{"file_name": "train_03070.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over simple electric guitar chords. The recording is noisy and it has some seat crackling noises in it. It sounds sad and emotional though.", "data_idx": 1654, "number": 0, "label": "blues"} +{"file_name": "train_03071.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over simple electric guitar chords. The recording is noisy and it has some seat crackling noises in it. It sounds sad and emotional though.", "data_idx": 1654, "number": 1, "label": "blues"} +{"file_name": "train_03072.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over simple electric guitar chords. The recording is noisy and it has some seat crackling noises in it. It sounds sad and emotional though.", "data_idx": 1654, "number": 2, "label": "blues"} +{"file_name": "train_03073.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over simple electric guitar chords. The recording is noisy and it has some seat crackling noises in it. It sounds sad and emotional though.", "data_idx": 1654, "number": 3, "label": "blues"} +{"file_name": "train_03074.png", "caption": "The low quality recording features a very interactive live performance of a gospel song that consists of crowd harmonized singing and clapping, alongside passionate male vocals and shimmering hi hats which gives it a subtle rhythm. It sounds passionate, energetic and soulful.", "data_idx": 1658, "number": 0, "label": "classical"} +{"file_name": "train_03075.png", "caption": "The low quality recording features a very interactive live performance of a gospel song that consists of crowd harmonized singing and clapping, alongside passionate male vocals and shimmering hi hats which gives it a subtle rhythm. It sounds passionate, energetic and soulful.", "data_idx": 1658, "number": 1, "label": "classical"} +{"file_name": "train_03076.png", "caption": "The low quality recording features a very interactive live performance of a gospel song that consists of crowd harmonized singing and clapping, alongside passionate male vocals and shimmering hi hats which gives it a subtle rhythm. It sounds passionate, energetic and soulful.", "data_idx": 1658, "number": 2, "label": "classical"} +{"file_name": "train_03077.png", "caption": "The low quality recording features a very interactive live performance of a gospel song that consists of crowd harmonized singing and clapping, alongside passionate male vocals and shimmering hi hats which gives it a subtle rhythm. It sounds passionate, energetic and soulful.", "data_idx": 1658, "number": 3, "label": "classical"} +{"file_name": "train_03078.png", "caption": "The clip is of traditional eastern sounds that would be found in India. We hear notes being played on a sitar, as well as an acoustic guitar. There's also a sustained buzzing instrument in the background which creates a relaxed atmosphere.", "data_idx": 1660, "number": 0, "label": "classical"} +{"file_name": "train_03079.png", "caption": "The clip is of traditional eastern sounds that would be found in India. We hear notes being played on a sitar, as well as an acoustic guitar. There's also a sustained buzzing instrument in the background which creates a relaxed atmosphere.", "data_idx": 1660, "number": 1, "label": "classical"} +{"file_name": "train_03080.png", "caption": "The clip is of traditional eastern sounds that would be found in India. We hear notes being played on a sitar, as well as an acoustic guitar. There's also a sustained buzzing instrument in the background which creates a relaxed atmosphere.", "data_idx": 1660, "number": 2, "label": "classical"} +{"file_name": "train_03081.png", "caption": "The clip is of traditional eastern sounds that would be found in India. We hear notes being played on a sitar, as well as an acoustic guitar. There's also a sustained buzzing instrument in the background which creates a relaxed atmosphere.", "data_idx": 1660, "number": 3, "label": "classical"} +{"file_name": "train_03082.png", "caption": "A female vocalist sings this song. There are two separate tracks where the vocalists sing very low notes in the former and high notes in the latter with ukelele accompaniment. The voice is controlled and melodious but the tracks are unrelated.", "data_idx": 1662, "number": 0, "label": "classical"} +{"file_name": "train_03083.png", "caption": "A female vocalist sings this song. There are two separate tracks where the vocalists sing very low notes in the former and high notes in the latter with ukelele accompaniment. The voice is controlled and melodious but the tracks are unrelated.", "data_idx": 1662, "number": 1, "label": "classical"} +{"file_name": "train_03084.png", "caption": "A female vocalist sings this song. There are two separate tracks where the vocalists sing very low notes in the former and high notes in the latter with ukelele accompaniment. The voice is controlled and melodious but the tracks are unrelated.", "data_idx": 1662, "number": 2, "label": "classical"} +{"file_name": "train_03085.png", "caption": "A female vocalist sings this song. There are two separate tracks where the vocalists sing very low notes in the former and high notes in the latter with ukelele accompaniment. The voice is controlled and melodious but the tracks are unrelated.", "data_idx": 1662, "number": 3, "label": "classical"} +{"file_name": "train_03086.png", "caption": "The drums sound complex and fast paced going into the direction of drum&bass. Full of hihat and snare hits. Barely noticeable a synthetic bass is playing along with the drums giving this song a ragga feeling. A very simple synthesizer pad is playing a high pitched melody. The male voice sounds lower and energetic. This recording is of poor audio quality. This song may be playing at a dancing event or while working out.", "data_idx": 1666, "number": 0, "label": "disco"} +{"file_name": "train_03087.png", "caption": "The drums sound complex and fast paced going into the direction of drum&bass. Full of hihat and snare hits. Barely noticeable a synthetic bass is playing along with the drums giving this song a ragga feeling. A very simple synthesizer pad is playing a high pitched melody. The male voice sounds lower and energetic. This recording is of poor audio quality. This song may be playing at a dancing event or while working out.", "data_idx": 1666, "number": 1, "label": "disco"} +{"file_name": "train_03088.png", "caption": "The drums sound complex and fast paced going into the direction of drum&bass. Full of hihat and snare hits. Barely noticeable a synthetic bass is playing along with the drums giving this song a ragga feeling. A very simple synthesizer pad is playing a high pitched melody. The male voice sounds lower and energetic. This recording is of poor audio quality. This song may be playing at a dancing event or while working out.", "data_idx": 1666, "number": 2, "label": "disco"} +{"file_name": "train_03089.png", "caption": "The drums sound complex and fast paced going into the direction of drum&bass. Full of hihat and snare hits. Barely noticeable a synthetic bass is playing along with the drums giving this song a ragga feeling. A very simple synthesizer pad is playing a high pitched melody. The male voice sounds lower and energetic. This recording is of poor audio quality. This song may be playing at a dancing event or while working out.", "data_idx": 1666, "number": 3, "label": "disco"} +{"file_name": "train_03090.png", "caption": "An acoustic drum is playing a fast groove with a kick-hit on every beat. The snare hit is full of reverb and panned to the right side of the speaker. A loud e-bass is playing a melody along with a clean e-guitar. A piano is playing a chord progression also adding a rhythmic element to the song. The male voice is singing in the mid range and gets support from backing voices that are barely noticeable. This song may be playing at a headshop.", "data_idx": 1668, "number": 0, "label": "reggae"} +{"file_name": "train_03091.png", "caption": "An acoustic drum is playing a fast groove with a kick-hit on every beat. The snare hit is full of reverb and panned to the right side of the speaker. A loud e-bass is playing a melody along with a clean e-guitar. A piano is playing a chord progression also adding a rhythmic element to the song. The male voice is singing in the mid range and gets support from backing voices that are barely noticeable. This song may be playing at a headshop.", "data_idx": 1668, "number": 1, "label": "reggae"} +{"file_name": "train_03092.png", "caption": "An acoustic drum is playing a fast groove with a kick-hit on every beat. The snare hit is full of reverb and panned to the right side of the speaker. A loud e-bass is playing a melody along with a clean e-guitar. A piano is playing a chord progression also adding a rhythmic element to the song. The male voice is singing in the mid range and gets support from backing voices that are barely noticeable. This song may be playing at a headshop.", "data_idx": 1668, "number": 2, "label": "reggae"} +{"file_name": "train_03093.png", "caption": "An acoustic drum is playing a fast groove with a kick-hit on every beat. The snare hit is full of reverb and panned to the right side of the speaker. A loud e-bass is playing a melody along with a clean e-guitar. A piano is playing a chord progression also adding a rhythmic element to the song. The male voice is singing in the mid range and gets support from backing voices that are barely noticeable. This song may be playing at a headshop.", "data_idx": 1668, "number": 3, "label": "reggae"} +{"file_name": "train_03094.png", "caption": "The low quality recording features a live performance of an alternative/indie song and it consists of flat female vocal singing over synth keys and arpeggiated electric guitar melody. There are also some crowd noises in the background. It sounds thin, but also emotional and like something you would want to sing along.", "data_idx": 1669, "number": 0, "label": "classical"} +{"file_name": "train_03095.png", "caption": "The low quality recording features a live performance of an alternative/indie song and it consists of flat female vocal singing over synth keys and arpeggiated electric guitar melody. There are also some crowd noises in the background. It sounds thin, but also emotional and like something you would want to sing along.", "data_idx": 1669, "number": 1, "label": "classical"} +{"file_name": "train_03096.png", "caption": "The low quality recording features a live performance of an alternative/indie song and it consists of flat female vocal singing over synth keys and arpeggiated electric guitar melody. There are also some crowd noises in the background. It sounds thin, but also emotional and like something you would want to sing along.", "data_idx": 1669, "number": 2, "label": "classical"} +{"file_name": "train_03097.png", "caption": "The low quality recording features a live performance of an alternative/indie song and it consists of flat female vocal singing over synth keys and arpeggiated electric guitar melody. There are also some crowd noises in the background. It sounds thin, but also emotional and like something you would want to sing along.", "data_idx": 1669, "number": 3, "label": "classical"} +{"file_name": "train_03098.png", "caption": "This is an Algerian folk music, also known as Rai. There is a male vocalist singing in a chant-like manner. There is a flute playing the main melody while the rhythm is being provided by several percussive elements. There is a lively feel to it. This piece could be used in the opening shots of a movie taking place in North Africa. It could also be in the soundtrack of a desert-themed video game.", "data_idx": 1671, "number": 0, "label": "disco"} +{"file_name": "train_03099.png", "caption": "This is an Algerian folk music, also known as Rai. There is a male vocalist singing in a chant-like manner. There is a flute playing the main melody while the rhythm is being provided by several percussive elements. There is a lively feel to it. This piece could be used in the opening shots of a movie taking place in North Africa. It could also be in the soundtrack of a desert-themed video game.", "data_idx": 1671, "number": 1, "label": "disco"} +{"file_name": "train_03100.png", "caption": "This is an Algerian folk music, also known as Rai. There is a male vocalist singing in a chant-like manner. There is a flute playing the main melody while the rhythm is being provided by several percussive elements. There is a lively feel to it. This piece could be used in the opening shots of a movie taking place in North Africa. It could also be in the soundtrack of a desert-themed video game.", "data_idx": 1671, "number": 2, "label": "disco"} +{"file_name": "train_03101.png", "caption": "This is an Algerian folk music, also known as Rai. There is a male vocalist singing in a chant-like manner. There is a flute playing the main melody while the rhythm is being provided by several percussive elements. There is a lively feel to it. This piece could be used in the opening shots of a movie taking place in North Africa. It could also be in the soundtrack of a desert-themed video game.", "data_idx": 1671, "number": 3, "label": "disco"} +{"file_name": "train_03102.png", "caption": "The excerpt features fighting sounds in the foreground, even fire sounds. In the background a tense music is being played by horns and accompanied by strings. It sounds as if the audio recording is of someone playing a game.", "data_idx": 1674, "number": 0, "label": "metal"} +{"file_name": "train_03103.png", "caption": "The excerpt features fighting sounds in the foreground, even fire sounds. In the background a tense music is being played by horns and accompanied by strings. It sounds as if the audio recording is of someone playing a game.", "data_idx": 1674, "number": 1, "label": "metal"} +{"file_name": "train_03104.png", "caption": "The music features a male voice singing a descending melody that repeats. The instrumental consists of a drum kit that's playing a light rhythm, a double bass that's playing a repeating descending melody and an electric guitar that's strumming chords once per beat. The quality of the audio recording is not so good which leads me to believe this is an amateur recording and not something professional.", "data_idx": 1675, "number": 0, "label": "blues"} +{"file_name": "train_03105.png", "caption": "The music features a male voice singing a descending melody that repeats. The instrumental consists of a drum kit that's playing a light rhythm, a double bass that's playing a repeating descending melody and an electric guitar that's strumming chords once per beat. The quality of the audio recording is not so good which leads me to believe this is an amateur recording and not something professional.", "data_idx": 1675, "number": 1, "label": "blues"} +{"file_name": "train_03106.png", "caption": "This song contains a string section playing a soft rising melody with key changes then an upright bass comes in being played with a bow and long strokes. An acoustic piano panned to the right side of the speakers is playing a melody along to the female voice singing. This song may be playing in a dramatic scene of a Disney movie.", "data_idx": 1677, "number": 0, "label": "country"} +{"file_name": "train_03107.png", "caption": "This song contains a string section playing a soft rising melody with key changes then an upright bass comes in being played with a bow and long strokes. An acoustic piano panned to the right side of the speakers is playing a melody along to the female voice singing. This song may be playing in a dramatic scene of a Disney movie.", "data_idx": 1677, "number": 1, "label": "country"} +{"file_name": "train_03108.png", "caption": "This song contains a string section playing a soft rising melody with key changes then an upright bass comes in being played with a bow and long strokes. An acoustic piano panned to the right side of the speakers is playing a melody along to the female voice singing. This song may be playing in a dramatic scene of a Disney movie.", "data_idx": 1677, "number": 2, "label": "country"} +{"file_name": "train_03109.png", "caption": "This song contains a string section playing a soft rising melody with key changes then an upright bass comes in being played with a bow and long strokes. An acoustic piano panned to the right side of the speakers is playing a melody along to the female voice singing. This song may be playing in a dramatic scene of a Disney movie.", "data_idx": 1677, "number": 3, "label": "country"} +{"file_name": "train_03110.png", "caption": "The Acid Folk song features a flat female vocal singing over repetitive bass guitar, wide arpeggiated acoustic guitar melody and banjo guitar melody. It sounds vintage, warm, easygoing and like it came out of a western movie.", "data_idx": 1678, "number": 0, "label": "rock"} +{"file_name": "train_03111.png", "caption": "The Acid Folk song features a flat female vocal singing over repetitive bass guitar, wide arpeggiated acoustic guitar melody and banjo guitar melody. It sounds vintage, warm, easygoing and like it came out of a western movie.", "data_idx": 1678, "number": 1, "label": "rock"} +{"file_name": "train_03112.png", "caption": "The Acid Folk song features a flat female vocal singing over repetitive bass guitar, wide arpeggiated acoustic guitar melody and banjo guitar melody. It sounds vintage, warm, easygoing and like it came out of a western movie.", "data_idx": 1678, "number": 2, "label": "rock"} +{"file_name": "train_03113.png", "caption": "The Acid Folk song features a flat female vocal singing over repetitive bass guitar, wide arpeggiated acoustic guitar melody and banjo guitar melody. It sounds vintage, warm, easygoing and like it came out of a western movie.", "data_idx": 1678, "number": 3, "label": "rock"} +{"file_name": "train_03114.png", "caption": "A digital drum is playing a four on the floor groove with a kick on every beat. Other percussive sound samples have been used to spice it up and give it a little bit more dance feeling along with a funky bassline. Cowbell sounds are panned to the left and right side of the speakers. A noise/riser sound is creating a little atmosphere before fading out. A piano is playing a chord progression adding a little bit more harmony. This song may be playing at a beachbar.", "data_idx": 1679, "number": 0, "label": "hiphop"} +{"file_name": "train_03115.png", "caption": "A digital drum is playing a four on the floor groove with a kick on every beat. Other percussive sound samples have been used to spice it up and give it a little bit more dance feeling along with a funky bassline. Cowbell sounds are panned to the left and right side of the speakers. A noise/riser sound is creating a little atmosphere before fading out. A piano is playing a chord progression adding a little bit more harmony. This song may be playing at a beachbar.", "data_idx": 1679, "number": 1, "label": "hiphop"} +{"file_name": "train_03116.png", "caption": "A digital drum is playing a four on the floor groove with a kick on every beat. Other percussive sound samples have been used to spice it up and give it a little bit more dance feeling along with a funky bassline. Cowbell sounds are panned to the left and right side of the speakers. A noise/riser sound is creating a little atmosphere before fading out. A piano is playing a chord progression adding a little bit more harmony. This song may be playing at a beachbar.", "data_idx": 1679, "number": 2, "label": "hiphop"} +{"file_name": "train_03117.png", "caption": "A digital drum is playing a four on the floor groove with a kick on every beat. Other percussive sound samples have been used to spice it up and give it a little bit more dance feeling along with a funky bassline. Cowbell sounds are panned to the left and right side of the speakers. A noise/riser sound is creating a little atmosphere before fading out. A piano is playing a chord progression adding a little bit more harmony. This song may be playing at a beachbar.", "data_idx": 1679, "number": 3, "label": "hiphop"} +{"file_name": "train_03118.png", "caption": "A string section is playing tritones and dissonant notes to create tension. Then a synth pad takes over together with a digital choir sound playing a drone sound while strong and loud timpani hits are creating a shocking atmosphere along with some fast paced percussion. This song may be playing in a dark, dramatic and chasing movie-scene.", "data_idx": 1681, "number": 0, "label": "classical"} +{"file_name": "train_03119.png", "caption": "A string section is playing tritones and dissonant notes to create tension. Then a synth pad takes over together with a digital choir sound playing a drone sound while strong and loud timpani hits are creating a shocking atmosphere along with some fast paced percussion. This song may be playing in a dark, dramatic and chasing movie-scene.", "data_idx": 1681, "number": 1, "label": "classical"} +{"file_name": "train_03120.png", "caption": "A string section is playing tritones and dissonant notes to create tension. Then a synth pad takes over together with a digital choir sound playing a drone sound while strong and loud timpani hits are creating a shocking atmosphere along with some fast paced percussion. This song may be playing in a dark, dramatic and chasing movie-scene.", "data_idx": 1681, "number": 2, "label": "classical"} +{"file_name": "train_03121.png", "caption": "A string section is playing tritones and dissonant notes to create tension. Then a synth pad takes over together with a digital choir sound playing a drone sound while strong and loud timpani hits are creating a shocking atmosphere along with some fast paced percussion. This song may be playing in a dark, dramatic and chasing movie-scene.", "data_idx": 1681, "number": 3, "label": "classical"} +{"file_name": "train_03122.png", "caption": "A male vocalist sings this perky song. The tempo is medium fast with an animated trumpet harmony, intense drumming, keyboard accompaniment and punchy bass lines. The vocals are energetic, vivacious, spirited, lively, rhythmic speech. The song is a Latin Urbano.", "data_idx": 1683, "number": 0, "label": "hiphop"} +{"file_name": "train_03123.png", "caption": "A male vocalist sings this perky song. The tempo is medium fast with an animated trumpet harmony, intense drumming, keyboard accompaniment and punchy bass lines. The vocals are energetic, vivacious, spirited, lively, rhythmic speech. The song is a Latin Urbano.", "data_idx": 1683, "number": 1, "label": "hiphop"} +{"file_name": "train_03124.png", "caption": "A male vocalist sings this perky song. The tempo is medium fast with an animated trumpet harmony, intense drumming, keyboard accompaniment and punchy bass lines. The vocals are energetic, vivacious, spirited, lively, rhythmic speech. The song is a Latin Urbano.", "data_idx": 1683, "number": 2, "label": "hiphop"} +{"file_name": "train_03125.png", "caption": "A male vocalist sings this perky song. The tempo is medium fast with an animated trumpet harmony, intense drumming, keyboard accompaniment and punchy bass lines. The vocals are energetic, vivacious, spirited, lively, rhythmic speech. The song is a Latin Urbano.", "data_idx": 1683, "number": 3, "label": "hiphop"} +{"file_name": "train_03126.png", "caption": "This song contains a digital beat with a soft and deep kick with other percussive sounds and a mallet instrument playing a melody. In the foreground you can hear water running down and other noises than a voice starts to appear along with a short melody of strings and horns playing as if there was an achievement. This song may be playing in a desktop video game.", "data_idx": 1687, "number": 0, "label": "hiphop"} +{"file_name": "train_03127.png", "caption": "This song contains a digital beat with a soft and deep kick with other percussive sounds and a mallet instrument playing a melody. In the foreground you can hear water running down and other noises than a voice starts to appear along with a short melody of strings and horns playing as if there was an achievement. This song may be playing in a desktop video game.", "data_idx": 1687, "number": 1, "label": "hiphop"} +{"file_name": "train_03128.png", "caption": "This song contains a digital beat with a soft and deep kick with other percussive sounds and a mallet instrument playing a melody. In the foreground you can hear water running down and other noises than a voice starts to appear along with a short melody of strings and horns playing as if there was an achievement. This song may be playing in a desktop video game.", "data_idx": 1687, "number": 2, "label": "hiphop"} +{"file_name": "train_03129.png", "caption": "This song contains a digital beat with a soft and deep kick with other percussive sounds and a mallet instrument playing a melody. In the foreground you can hear water running down and other noises than a voice starts to appear along with a short melody of strings and horns playing as if there was an achievement. This song may be playing in a desktop video game.", "data_idx": 1687, "number": 3, "label": "hiphop"} +{"file_name": "train_03130.png", "caption": "This pop song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat. At the end of the first bar, the percussion pauses and a piano strikes one chord when the voice reaches her high pitch. The percussion resumes playing the simple beat. The bass follows the root notes of the chords. The piano plays chords in the background. A string section plays notes in the background filling the musicscape. This song has a romantic theme. This song can be played in a romantic movie.", "data_idx": 1688, "number": 0, "label": "pop"} +{"file_name": "train_03131.png", "caption": "This pop song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat. At the end of the first bar, the percussion pauses and a piano strikes one chord when the voice reaches her high pitch. The percussion resumes playing the simple beat. The bass follows the root notes of the chords. The piano plays chords in the background. A string section plays notes in the background filling the musicscape. This song has a romantic theme. This song can be played in a romantic movie.", "data_idx": 1688, "number": 1, "label": "pop"} +{"file_name": "train_03132.png", "caption": "This pop song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat. At the end of the first bar, the percussion pauses and a piano strikes one chord when the voice reaches her high pitch. The percussion resumes playing the simple beat. The bass follows the root notes of the chords. The piano plays chords in the background. A string section plays notes in the background filling the musicscape. This song has a romantic theme. This song can be played in a romantic movie.", "data_idx": 1688, "number": 2, "label": "pop"} +{"file_name": "train_03133.png", "caption": "This pop song features a female voice singing the main melody. This is accompanied by percussion playing a simple beat. At the end of the first bar, the percussion pauses and a piano strikes one chord when the voice reaches her high pitch. The percussion resumes playing the simple beat. The bass follows the root notes of the chords. The piano plays chords in the background. A string section plays notes in the background filling the musicscape. This song has a romantic theme. This song can be played in a romantic movie.", "data_idx": 1688, "number": 3, "label": "pop"} +{"file_name": "train_03134.png", "caption": "Someone is playing an acoustic guitar ending his phrase. In the background you can hear high pitched noises. This song may be playing at home practicing guitar.", "data_idx": 1689, "number": 0, "label": "classical"} +{"file_name": "train_03135.png", "caption": "Someone is playing an acoustic guitar ending his phrase. In the background you can hear high pitched noises. This song may be playing at home practicing guitar.", "data_idx": 1689, "number": 1, "label": "classical"} +{"file_name": "train_03136.png", "caption": "Someone is playing an acoustic guitar ending his phrase. In the background you can hear high pitched noises. This song may be playing at home practicing guitar.", "data_idx": 1689, "number": 2, "label": "classical"} +{"file_name": "train_03137.png", "caption": "Someone is playing an acoustic guitar ending his phrase. In the background you can hear high pitched noises. This song may be playing at home practicing guitar.", "data_idx": 1689, "number": 3, "label": "classical"} +{"file_name": "train_03138.png", "caption": "The music is instrumental. There are ambient sounds like door banging sounds, eerie squeaks, church bells ringing and string section harmony. The song is a video game soundtrack.", "data_idx": 1690, "number": 0, "label": "hiphop"} +{"file_name": "train_03139.png", "caption": "The music is instrumental. There are ambient sounds like door banging sounds, eerie squeaks, church bells ringing and string section harmony. The song is a video game soundtrack.", "data_idx": 1690, "number": 1, "label": "hiphop"} +{"file_name": "train_03140.png", "caption": "The music is instrumental. There are ambient sounds like door banging sounds, eerie squeaks, church bells ringing and string section harmony. The song is a video game soundtrack.", "data_idx": 1690, "number": 2, "label": "hiphop"} +{"file_name": "train_03141.png", "caption": "The music is instrumental. There are ambient sounds like door banging sounds, eerie squeaks, church bells ringing and string section harmony. The song is a video game soundtrack.", "data_idx": 1690, "number": 3, "label": "hiphop"} +{"file_name": "train_03142.png", "caption": "This is an ambience track that features a burning flame sound effect. The atmosphere is scary and horror-like. You could hear this track as a background on a halloween event.", "data_idx": 1696, "number": 0, "label": "metal"} +{"file_name": "train_03143.png", "caption": "This is an ambience track that features a burning flame sound effect. The atmosphere is scary and horror-like. You could hear this track as a background on a halloween event.", "data_idx": 1696, "number": 1, "label": "metal"} +{"file_name": "train_03144.png", "caption": "This is an ambience track that features a burning flame sound effect. The atmosphere is scary and horror-like. You could hear this track as a background on a halloween event.", "data_idx": 1696, "number": 2, "label": "metal"} +{"file_name": "train_03145.png", "caption": "This is an ambience track that features a burning flame sound effect. The atmosphere is scary and horror-like. You could hear this track as a background on a halloween event.", "data_idx": 1696, "number": 3, "label": "metal"} +{"file_name": "train_03146.png", "caption": "This music is instrumental. The tempo is slow with a theremin solo lead. There is no accompaniment. The music has sharp, high notes with the thereminist playing an electronic syncopated harmony.", "data_idx": 1697, "number": 0, "label": "hiphop"} +{"file_name": "train_03147.png", "caption": "This music is instrumental. The tempo is slow with a theremin solo lead. There is no accompaniment. The music has sharp, high notes with the thereminist playing an electronic syncopated harmony.", "data_idx": 1697, "number": 1, "label": "hiphop"} +{"file_name": "train_03148.png", "caption": "This music is instrumental. The tempo is slow with a theremin solo lead. There is no accompaniment. The music has sharp, high notes with the thereminist playing an electronic syncopated harmony.", "data_idx": 1697, "number": 2, "label": "hiphop"} +{"file_name": "train_03149.png", "caption": "This music is instrumental. The tempo is slow with a theremin solo lead. There is no accompaniment. The music has sharp, high notes with the thereminist playing an electronic syncopated harmony.", "data_idx": 1697, "number": 3, "label": "hiphop"} +{"file_name": "train_03150.png", "caption": "The low quality recording features a live performance sung by harmonizing mixed vocals and followed by acoustic rhythm guitar and shimmering shaker. In the second part, a hollow male vocal continues to sing over shaker and acoustic guitar. It sounds thin, but fun, happy and emotional - it was probably recorded with a phone or camera microphone.", "data_idx": 1699, "number": 0, "label": "reggae"} +{"file_name": "train_03151.png", "caption": "The low quality recording features a live performance sung by harmonizing mixed vocals and followed by acoustic rhythm guitar and shimmering shaker. In the second part, a hollow male vocal continues to sing over shaker and acoustic guitar. It sounds thin, but fun, happy and emotional - it was probably recorded with a phone or camera microphone.", "data_idx": 1699, "number": 1, "label": "reggae"} +{"file_name": "train_03152.png", "caption": "The low quality recording features a live performance sung by harmonizing mixed vocals and followed by acoustic rhythm guitar and shimmering shaker. In the second part, a hollow male vocal continues to sing over shaker and acoustic guitar. It sounds thin, but fun, happy and emotional - it was probably recorded with a phone or camera microphone.", "data_idx": 1699, "number": 2, "label": "reggae"} +{"file_name": "train_03153.png", "caption": "The low quality recording features a live performance sung by harmonizing mixed vocals and followed by acoustic rhythm guitar and shimmering shaker. In the second part, a hollow male vocal continues to sing over shaker and acoustic guitar. It sounds thin, but fun, happy and emotional - it was probably recorded with a phone or camera microphone.", "data_idx": 1699, "number": 3, "label": "reggae"} +{"file_name": "train_03154.png", "caption": "This is an isolated vocal track of a rock opera piece. There are no instruments. A passionate male vocalist is singing melodically in the lead. There is a choir in the background providing medium-to-high pitched back vocals. There is an uplifting atmosphere. This piece could be used in remixes. Vocal samples can be lifted for DJ sets or beat-making.", "data_idx": 1700, "number": 0, "label": "hiphop"} +{"file_name": "train_03155.png", "caption": "This is an isolated vocal track of a rock opera piece. There are no instruments. A passionate male vocalist is singing melodically in the lead. There is a choir in the background providing medium-to-high pitched back vocals. There is an uplifting atmosphere. This piece could be used in remixes. Vocal samples can be lifted for DJ sets or beat-making.", "data_idx": 1700, "number": 1, "label": "hiphop"} +{"file_name": "train_03156.png", "caption": "This is an isolated vocal track of a rock opera piece. There are no instruments. A passionate male vocalist is singing melodically in the lead. There is a choir in the background providing medium-to-high pitched back vocals. There is an uplifting atmosphere. This piece could be used in remixes. Vocal samples can be lifted for DJ sets or beat-making.", "data_idx": 1700, "number": 2, "label": "hiphop"} +{"file_name": "train_03157.png", "caption": "This is an isolated vocal track of a rock opera piece. There are no instruments. A passionate male vocalist is singing melodically in the lead. There is a choir in the background providing medium-to-high pitched back vocals. There is an uplifting atmosphere. This piece could be used in remixes. Vocal samples can be lifted for DJ sets or beat-making.", "data_idx": 1700, "number": 3, "label": "hiphop"} +{"file_name": "train_03158.png", "caption": "This is an instrumental electric guitar jam meant to showcase an echo delay pedal. The guitar using the pedal is merely strumming the chords while there is another electric guitar in the background playing the melody. There is also a bass guitar playing a simple bass line. In the rhythmic background there is a chill rock beat played by the acoustic drums. There is a calm and chill atmosphere in this piece. It could be used as the loading screen music in a video game.", "data_idx": 1702, "number": 0, "label": "reggae"} +{"file_name": "train_03159.png", "caption": "This is an instrumental electric guitar jam meant to showcase an echo delay pedal. The guitar using the pedal is merely strumming the chords while there is another electric guitar in the background playing the melody. There is also a bass guitar playing a simple bass line. In the rhythmic background there is a chill rock beat played by the acoustic drums. There is a calm and chill atmosphere in this piece. It could be used as the loading screen music in a video game.", "data_idx": 1702, "number": 1, "label": "reggae"} +{"file_name": "train_03160.png", "caption": "This is an instrumental electric guitar jam meant to showcase an echo delay pedal. The guitar using the pedal is merely strumming the chords while there is another electric guitar in the background playing the melody. There is also a bass guitar playing a simple bass line. In the rhythmic background there is a chill rock beat played by the acoustic drums. There is a calm and chill atmosphere in this piece. It could be used as the loading screen music in a video game.", "data_idx": 1702, "number": 2, "label": "reggae"} +{"file_name": "train_03161.png", "caption": "This is an instrumental electric guitar jam meant to showcase an echo delay pedal. The guitar using the pedal is merely strumming the chords while there is another electric guitar in the background playing the melody. There is also a bass guitar playing a simple bass line. In the rhythmic background there is a chill rock beat played by the acoustic drums. There is a calm and chill atmosphere in this piece. It could be used as the loading screen music in a video game.", "data_idx": 1702, "number": 3, "label": "reggae"} +{"file_name": "train_03162.png", "caption": "The song is an instrumental. The song is slow tempo with eerie sounds created by an effects module playing chords. The song is eerie and haunting . The audio quality is very poor.", "data_idx": 1703, "number": 0, "label": "classical"} +{"file_name": "train_03163.png", "caption": "The song is an instrumental. The song is slow tempo with eerie sounds created by an effects module playing chords. The song is eerie and haunting . The audio quality is very poor.", "data_idx": 1703, "number": 1, "label": "classical"} +{"file_name": "train_03164.png", "caption": "The song is an instrumental. The song is slow tempo with eerie sounds created by an effects module playing chords. The song is eerie and haunting . The audio quality is very poor.", "data_idx": 1703, "number": 2, "label": "classical"} +{"file_name": "train_03165.png", "caption": "The song is an instrumental. The song is slow tempo with eerie sounds created by an effects module playing chords. The song is eerie and haunting . The audio quality is very poor.", "data_idx": 1703, "number": 3, "label": "classical"} +{"file_name": "train_03166.png", "caption": "The music excerpt features a bass guitar that plays with the string slapping technique. This passage sounds as if it's meant to show some practicing exercises.", "data_idx": 1705, "number": 0, "label": "blues"} +{"file_name": "train_03167.png", "caption": "The music excerpt features a bass guitar that plays with the string slapping technique. This passage sounds as if it's meant to show some practicing exercises.", "data_idx": 1705, "number": 1, "label": "blues"} +{"file_name": "train_03168.png", "caption": "The music excerpt features a bass guitar that plays with the string slapping technique. This passage sounds as if it's meant to show some practicing exercises.", "data_idx": 1705, "number": 2, "label": "blues"} +{"file_name": "train_03169.png", "caption": "The music excerpt features a bass guitar that plays with the string slapping technique. This passage sounds as if it's meant to show some practicing exercises.", "data_idx": 1705, "number": 3, "label": "blues"} +{"file_name": "train_03170.png", "caption": "The low quality recording features a compilation of pop songs. The first song features an echoing female vocal sining, alongside wide harmonizing female vocals, over arpeggiated solo electric guitar melody, sustained strings progression, smooth bass, soft kick hits, punchy snare, simple hi hats and shimmering open hat. At the very end of the loop, there is a short snippet of the second song that consists of flat female vocals singing over claps, synth keys melody and punchy kick. It sounds emotional and passionate, even though the mix is bad.", "data_idx": 1706, "number": 0, "label": "hiphop"} +{"file_name": "train_03171.png", "caption": "The low quality recording features a compilation of pop songs. The first song features an echoing female vocal sining, alongside wide harmonizing female vocals, over arpeggiated solo electric guitar melody, sustained strings progression, smooth bass, soft kick hits, punchy snare, simple hi hats and shimmering open hat. At the very end of the loop, there is a short snippet of the second song that consists of flat female vocals singing over claps, synth keys melody and punchy kick. It sounds emotional and passionate, even though the mix is bad.", "data_idx": 1706, "number": 1, "label": "hiphop"} +{"file_name": "train_03172.png", "caption": "The low quality recording features a compilation of pop songs. The first song features an echoing female vocal sining, alongside wide harmonizing female vocals, over arpeggiated solo electric guitar melody, sustained strings progression, smooth bass, soft kick hits, punchy snare, simple hi hats and shimmering open hat. At the very end of the loop, there is a short snippet of the second song that consists of flat female vocals singing over claps, synth keys melody and punchy kick. It sounds emotional and passionate, even though the mix is bad.", "data_idx": 1706, "number": 2, "label": "hiphop"} +{"file_name": "train_03173.png", "caption": "The low quality recording features a compilation of pop songs. The first song features an echoing female vocal sining, alongside wide harmonizing female vocals, over arpeggiated solo electric guitar melody, sustained strings progression, smooth bass, soft kick hits, punchy snare, simple hi hats and shimmering open hat. At the very end of the loop, there is a short snippet of the second song that consists of flat female vocals singing over claps, synth keys melody and punchy kick. It sounds emotional and passionate, even though the mix is bad.", "data_idx": 1706, "number": 3, "label": "hiphop"} +{"file_name": "train_03174.png", "caption": "This is a thrilling orchestral piece that feels epic, suspenseful and intense. There are string instruments like violins and cellos, and timpani for percussion. There is one over-bearing vibrational sound that overwhelms the whole arrangement - it is played once and rings for three seconds.", "data_idx": 1708, "number": 0, "label": "reggae"} +{"file_name": "train_03175.png", "caption": "This is a thrilling orchestral piece that feels epic, suspenseful and intense. There are string instruments like violins and cellos, and timpani for percussion. There is one over-bearing vibrational sound that overwhelms the whole arrangement - it is played once and rings for three seconds.", "data_idx": 1708, "number": 1, "label": "reggae"} +{"file_name": "train_03176.png", "caption": "This is a thrilling orchestral piece that feels epic, suspenseful and intense. There are string instruments like violins and cellos, and timpani for percussion. There is one over-bearing vibrational sound that overwhelms the whole arrangement - it is played once and rings for three seconds.", "data_idx": 1708, "number": 2, "label": "reggae"} +{"file_name": "train_03177.png", "caption": "This is a thrilling orchestral piece that feels epic, suspenseful and intense. There are string instruments like violins and cellos, and timpani for percussion. There is one over-bearing vibrational sound that overwhelms the whole arrangement - it is played once and rings for three seconds.", "data_idx": 1708, "number": 3, "label": "reggae"} +{"file_name": "train_03178.png", "caption": "An acoustic piano is playing a sad melody while two women are singing as a duo taking turns. Their voices have some reverb and in the background you can hear the crowd cheering. This song may be playing live on stage.", "data_idx": 1709, "number": 0, "label": "disco"} +{"file_name": "train_03179.png", "caption": "An acoustic piano is playing a sad melody while two women are singing as a duo taking turns. Their voices have some reverb and in the background you can hear the crowd cheering. This song may be playing live on stage.", "data_idx": 1709, "number": 1, "label": "disco"} +{"file_name": "train_03180.png", "caption": "An acoustic piano is playing a sad melody while two women are singing as a duo taking turns. Their voices have some reverb and in the background you can hear the crowd cheering. This song may be playing live on stage.", "data_idx": 1709, "number": 2, "label": "disco"} +{"file_name": "train_03181.png", "caption": "An acoustic piano is playing a sad melody while two women are singing as a duo taking turns. Their voices have some reverb and in the background you can hear the crowd cheering. This song may be playing live on stage.", "data_idx": 1709, "number": 3, "label": "disco"} +{"file_name": "train_03182.png", "caption": "The low quality recording features a live performance that's barely audible and it consists of sustained strings and a choir. It sounds crushed, distorted and very noisy, as it was recorded with a broken microphone.", "data_idx": 1711, "number": 0, "label": "classical"} +{"file_name": "train_03183.png", "caption": "The low quality recording features a live performance that's barely audible and it consists of sustained strings and a choir. It sounds crushed, distorted and very noisy, as it was recorded with a broken microphone.", "data_idx": 1711, "number": 1, "label": "classical"} +{"file_name": "train_03184.png", "caption": "The low quality recording features a live performance that's barely audible and it consists of sustained strings and a choir. It sounds crushed, distorted and very noisy, as it was recorded with a broken microphone.", "data_idx": 1711, "number": 2, "label": "classical"} +{"file_name": "train_03185.png", "caption": "The low quality recording features a live performance that's barely audible and it consists of sustained strings and a choir. It sounds crushed, distorted and very noisy, as it was recorded with a broken microphone.", "data_idx": 1711, "number": 3, "label": "classical"} +{"file_name": "train_03186.png", "caption": "The low quality recording features a classical music played by orchestra that consists of staccato string melody, woodwinds melody, staccato brass melody and solo, low tuba melody. The recording is a bit noisy and it sounds like background music for old movies.", "data_idx": 1712, "number": 0, "label": "jazz"} +{"file_name": "train_03187.png", "caption": "The low quality recording features a classical music played by orchestra that consists of staccato string melody, woodwinds melody, staccato brass melody and solo, low tuba melody. The recording is a bit noisy and it sounds like background music for old movies.", "data_idx": 1712, "number": 1, "label": "jazz"} +{"file_name": "train_03188.png", "caption": "The low quality recording features a classical music played by orchestra that consists of staccato string melody, woodwinds melody, staccato brass melody and solo, low tuba melody. The recording is a bit noisy and it sounds like background music for old movies.", "data_idx": 1712, "number": 2, "label": "jazz"} +{"file_name": "train_03189.png", "caption": "The low quality recording features a classical music played by orchestra that consists of staccato string melody, woodwinds melody, staccato brass melody and solo, low tuba melody. The recording is a bit noisy and it sounds like background music for old movies.", "data_idx": 1712, "number": 3, "label": "jazz"} +{"file_name": "train_03190.png", "caption": "This hip-hop song features programmed percussion playing a hip-hop beat. The bass follows the root notes of the chords. Synth strings play chords. The sound of an object being thrown can be heard. The sound of shattering glass is also heard. This song appears in a game.", "data_idx": 1713, "number": 0, "label": "reggae"} +{"file_name": "train_03191.png", "caption": "This hip-hop song features programmed percussion playing a hip-hop beat. The bass follows the root notes of the chords. Synth strings play chords. The sound of an object being thrown can be heard. The sound of shattering glass is also heard. This song appears in a game.", "data_idx": 1713, "number": 1, "label": "reggae"} +{"file_name": "train_03192.png", "caption": "This hip-hop song features programmed percussion playing a hip-hop beat. The bass follows the root notes of the chords. Synth strings play chords. The sound of an object being thrown can be heard. The sound of shattering glass is also heard. This song appears in a game.", "data_idx": 1713, "number": 2, "label": "reggae"} +{"file_name": "train_03193.png", "caption": "This hip-hop song features programmed percussion playing a hip-hop beat. The bass follows the root notes of the chords. Synth strings play chords. The sound of an object being thrown can be heard. The sound of shattering glass is also heard. This song appears in a game.", "data_idx": 1713, "number": 3, "label": "reggae"} +{"file_name": "train_03194.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside background male ad libs, rapping over boomy bass, punchy kick, slap snare, shimmering hi hats, tinny percussive elements and weird, funny and repetitive percussion. It sounds groovy and boomy, but also muddy and poorly mixed.", "data_idx": 1715, "number": 0, "label": "hiphop"} +{"file_name": "train_03195.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside background male ad libs, rapping over boomy bass, punchy kick, slap snare, shimmering hi hats, tinny percussive elements and weird, funny and repetitive percussion. It sounds groovy and boomy, but also muddy and poorly mixed.", "data_idx": 1715, "number": 1, "label": "hiphop"} +{"file_name": "train_03196.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside background male ad libs, rapping over boomy bass, punchy kick, slap snare, shimmering hi hats, tinny percussive elements and weird, funny and repetitive percussion. It sounds groovy and boomy, but also muddy and poorly mixed.", "data_idx": 1715, "number": 2, "label": "hiphop"} +{"file_name": "train_03197.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals, alongside background male ad libs, rapping over boomy bass, punchy kick, slap snare, shimmering hi hats, tinny percussive elements and weird, funny and repetitive percussion. It sounds groovy and boomy, but also muddy and poorly mixed.", "data_idx": 1715, "number": 3, "label": "hiphop"} +{"file_name": "train_03198.png", "caption": "This live recording features an instrumental song. This Regional Mexican song features an accordion playing the main melody. This is accompanied by an acoustic guitar strumming chords. A double bass plays the bass notes. A tambourine acts as the percussion. This song is in an upbeat mood. The song can be played at the entrance of a carnival.", "data_idx": 1716, "number": 0, "label": "blues"} +{"file_name": "train_03199.png", "caption": "This live recording features an instrumental song. This Regional Mexican song features an accordion playing the main melody. This is accompanied by an acoustic guitar strumming chords. A double bass plays the bass notes. A tambourine acts as the percussion. This song is in an upbeat mood. The song can be played at the entrance of a carnival.", "data_idx": 1716, "number": 1, "label": "blues"} +{"file_name": "train_03200.png", "caption": "This live recording features an instrumental song. This Regional Mexican song features an accordion playing the main melody. This is accompanied by an acoustic guitar strumming chords. A double bass plays the bass notes. A tambourine acts as the percussion. This song is in an upbeat mood. The song can be played at the entrance of a carnival.", "data_idx": 1716, "number": 2, "label": "blues"} +{"file_name": "train_03201.png", "caption": "This live recording features an instrumental song. This Regional Mexican song features an accordion playing the main melody. This is accompanied by an acoustic guitar strumming chords. A double bass plays the bass notes. A tambourine acts as the percussion. This song is in an upbeat mood. The song can be played at the entrance of a carnival.", "data_idx": 1716, "number": 3, "label": "blues"} +{"file_name": "train_03202.png", "caption": "This instrumental contains a digital piano playing a beautiful melody that sounds a little bit like standing in the rain on a summer day. The electronic drums sound without dynamics but with a strong kick that gets supported by the bassline. A snare hit stands in the foreground. A hi-hat fills the space in between and gets surrounded by stringsounds playing a minimalist melody with a lot of reverb on it. A short snappy pluck sound is also playing a melody. barely noticeable. This song may be playing in a chapter of a video game.", "data_idx": 1718, "number": 0, "label": "pop"} +{"file_name": "train_03203.png", "caption": "This instrumental contains a digital piano playing a beautiful melody that sounds a little bit like standing in the rain on a summer day. The electronic drums sound without dynamics but with a strong kick that gets supported by the bassline. A snare hit stands in the foreground. A hi-hat fills the space in between and gets surrounded by stringsounds playing a minimalist melody with a lot of reverb on it. A short snappy pluck sound is also playing a melody. barely noticeable. This song may be playing in a chapter of a video game.", "data_idx": 1718, "number": 1, "label": "pop"} +{"file_name": "train_03204.png", "caption": "This is a rock and roll music piece. There is a male vocal singer singing as the lead while other back vocals sing rhythmic back vocals at a higher pitch than the lead. An electric guitar is playing a simple and repeated tune while there is a bass guitar in the background. The acoustic drums are playing a basic 4/4 rock beat with claps simultaneous with the snare hits. There is an easygoing atmosphere in this piece. It could be playing in the background of a rock bar. This piece could also work well in sports venues.", "data_idx": 1719, "number": 0, "label": "disco"} +{"file_name": "train_03205.png", "caption": "This is a rock and roll music piece. There is a male vocal singer singing as the lead while other back vocals sing rhythmic back vocals at a higher pitch than the lead. An electric guitar is playing a simple and repeated tune while there is a bass guitar in the background. The acoustic drums are playing a basic 4/4 rock beat with claps simultaneous with the snare hits. There is an easygoing atmosphere in this piece. It could be playing in the background of a rock bar. This piece could also work well in sports venues.", "data_idx": 1719, "number": 1, "label": "disco"} +{"file_name": "train_03206.png", "caption": "This is a rock and roll music piece. There is a male vocal singer singing as the lead while other back vocals sing rhythmic back vocals at a higher pitch than the lead. An electric guitar is playing a simple and repeated tune while there is a bass guitar in the background. The acoustic drums are playing a basic 4/4 rock beat with claps simultaneous with the snare hits. There is an easygoing atmosphere in this piece. It could be playing in the background of a rock bar. This piece could also work well in sports venues.", "data_idx": 1719, "number": 2, "label": "disco"} +{"file_name": "train_03207.png", "caption": "This is a rock and roll music piece. There is a male vocal singer singing as the lead while other back vocals sing rhythmic back vocals at a higher pitch than the lead. An electric guitar is playing a simple and repeated tune while there is a bass guitar in the background. The acoustic drums are playing a basic 4/4 rock beat with claps simultaneous with the snare hits. There is an easygoing atmosphere in this piece. It could be playing in the background of a rock bar. This piece could also work well in sports venues.", "data_idx": 1719, "number": 3, "label": "disco"} +{"file_name": "train_03208.png", "caption": "The Alternative/Indie song features a passionate female vocalist singing over an arpeggiated electric guitar melody. It sounds passionate, emotional, heartfelt and sad.", "data_idx": 1720, "number": 0, "label": "hiphop"} +{"file_name": "train_03209.png", "caption": "The Alternative/Indie song features a passionate female vocalist singing over an arpeggiated electric guitar melody. It sounds passionate, emotional, heartfelt and sad.", "data_idx": 1720, "number": 1, "label": "hiphop"} +{"file_name": "train_03210.png", "caption": "The Alternative/Indie song features a passionate female vocalist singing over an arpeggiated electric guitar melody. It sounds passionate, emotional, heartfelt and sad.", "data_idx": 1720, "number": 2, "label": "hiphop"} +{"file_name": "train_03211.png", "caption": "The Alternative/Indie song features a passionate female vocalist singing over an arpeggiated electric guitar melody. It sounds passionate, emotional, heartfelt and sad.", "data_idx": 1720, "number": 3, "label": "hiphop"} +{"file_name": "train_03212.png", "caption": "The Soft Rock song features a soulful male vocal melody over widely spread acoustic rhythm guitar, arpeggiated electric guitar melody and smooth bass. At the end of the loop there is a short snippet of the drop that consists of energetic drums and solo electric guitar melody. Right before the drop, the drums are slowly fading into the drop. Overall it sounds passionate, soulful, emotional and energetic.", "data_idx": 1721, "number": 0, "label": "rock"} +{"file_name": "train_03213.png", "caption": "The Soft Rock song features a soulful male vocal melody over widely spread acoustic rhythm guitar, arpeggiated electric guitar melody and smooth bass. At the end of the loop there is a short snippet of the drop that consists of energetic drums and solo electric guitar melody. Right before the drop, the drums are slowly fading into the drop. Overall it sounds passionate, soulful, emotional and energetic.", "data_idx": 1721, "number": 1, "label": "rock"} +{"file_name": "train_03214.png", "caption": "The Soft Rock song features a soulful male vocal melody over widely spread acoustic rhythm guitar, arpeggiated electric guitar melody and smooth bass. At the end of the loop there is a short snippet of the drop that consists of energetic drums and solo electric guitar melody. Right before the drop, the drums are slowly fading into the drop. Overall it sounds passionate, soulful, emotional and energetic.", "data_idx": 1721, "number": 2, "label": "rock"} +{"file_name": "train_03215.png", "caption": "The Soft Rock song features a soulful male vocal melody over widely spread acoustic rhythm guitar, arpeggiated electric guitar melody and smooth bass. At the end of the loop there is a short snippet of the drop that consists of energetic drums and solo electric guitar melody. Right before the drop, the drums are slowly fading into the drop. Overall it sounds passionate, soulful, emotional and energetic.", "data_idx": 1721, "number": 3, "label": "rock"} +{"file_name": "train_03216.png", "caption": "This is a pop music piece performed acoustically. The male and female vocals take turns singing melodically as a duet. The simple melody is being played by a ukulele. The aura of the song is very calm and easygoing. It could be used in the soundtrack of a teenage drama. The music could be playing in the background at a coffee house.", "data_idx": 1723, "number": 0, "label": "blues"} +{"file_name": "train_03217.png", "caption": "This is a pop music piece performed acoustically. The male and female vocals take turns singing melodically as a duet. The simple melody is being played by a ukulele. The aura of the song is very calm and easygoing. It could be used in the soundtrack of a teenage drama. The music could be playing in the background at a coffee house.", "data_idx": 1723, "number": 1, "label": "blues"} +{"file_name": "train_03218.png", "caption": "This is a pop music piece performed acoustically. The male and female vocals take turns singing melodically as a duet. The simple melody is being played by a ukulele. The aura of the song is very calm and easygoing. It could be used in the soundtrack of a teenage drama. The music could be playing in the background at a coffee house.", "data_idx": 1723, "number": 2, "label": "blues"} +{"file_name": "train_03219.png", "caption": "This is a pop music piece performed acoustically. The male and female vocals take turns singing melodically as a duet. The simple melody is being played by a ukulele. The aura of the song is very calm and easygoing. It could be used in the soundtrack of a teenage drama. The music could be playing in the background at a coffee house.", "data_idx": 1723, "number": 3, "label": "blues"} +{"file_name": "train_03220.png", "caption": "The song is instrumental. The tempo is medium with timpani\u2019s playing in a marching rhythm with room echoes. The song is energetic and has a sense of duty like a battle march. The song is an interactive game play soundtrack.", "data_idx": 1725, "number": 0, "label": "classical"} +{"file_name": "train_03221.png", "caption": "The song is instrumental. The tempo is medium with timpani\u2019s playing in a marching rhythm with room echoes. The song is energetic and has a sense of duty like a battle march. The song is an interactive game play soundtrack.", "data_idx": 1725, "number": 1, "label": "classical"} +{"file_name": "train_03222.png", "caption": "The song is an instrumental with sounds of a woman screaming and running with huffing and puffing sounds. A chainsaw buzzes ominously , with a string section playing a scary and tense accompaniment along with a cello building the tension with a poignant harmony. The music is a horror movie soundtrack or an ad jingle. The song audio quality is very poor.", "data_idx": 1731, "number": 0, "label": "metal"} +{"file_name": "train_03223.png", "caption": "The song is an instrumental with sounds of a woman screaming and running with huffing and puffing sounds. A chainsaw buzzes ominously , with a string section playing a scary and tense accompaniment along with a cello building the tension with a poignant harmony. The music is a horror movie soundtrack or an ad jingle. The song audio quality is very poor.", "data_idx": 1731, "number": 1, "label": "metal"} +{"file_name": "train_03224.png", "caption": "The song is an instrumental with sounds of a woman screaming and running with huffing and puffing sounds. A chainsaw buzzes ominously , with a string section playing a scary and tense accompaniment along with a cello building the tension with a poignant harmony. The music is a horror movie soundtrack or an ad jingle. The song audio quality is very poor.", "data_idx": 1731, "number": 2, "label": "metal"} +{"file_name": "train_03225.png", "caption": "The song is an instrumental with sounds of a woman screaming and running with huffing and puffing sounds. A chainsaw buzzes ominously , with a string section playing a scary and tense accompaniment along with a cello building the tension with a poignant harmony. The music is a horror movie soundtrack or an ad jingle. The song audio quality is very poor.", "data_idx": 1731, "number": 3, "label": "metal"} +{"file_name": "train_03226.png", "caption": "someone is strumming a melody on a banjo along with some chords. In the background you can hear people talking. This is an amateur recording. This song may be playing outside at a bonfire surrounded by friends and family.", "data_idx": 1732, "number": 0, "label": "blues"} +{"file_name": "train_03227.png", "caption": "someone is strumming a melody on a banjo along with some chords. In the background you can hear people talking. This is an amateur recording. This song may be playing outside at a bonfire surrounded by friends and family.", "data_idx": 1732, "number": 1, "label": "blues"} +{"file_name": "train_03228.png", "caption": "someone is strumming a melody on a banjo along with some chords. In the background you can hear people talking. This is an amateur recording. This song may be playing outside at a bonfire surrounded by friends and family.", "data_idx": 1732, "number": 2, "label": "blues"} +{"file_name": "train_03229.png", "caption": "someone is strumming a melody on a banjo along with some chords. In the background you can hear people talking. This is an amateur recording. This song may be playing outside at a bonfire surrounded by friends and family.", "data_idx": 1732, "number": 3, "label": "blues"} +{"file_name": "train_03230.png", "caption": "The low quality recording features an instrumental cover that consists exotic steel pan melody, punchy kick hits layered with claps, groovy piano chord progression and groovy bass. It is in mono and it sounds a bit harsh, but energetic, tropical and exotic.", "data_idx": 1733, "number": 0, "label": "reggae"} +{"file_name": "train_03231.png", "caption": "The low quality recording features an instrumental cover that consists exotic steel pan melody, punchy kick hits layered with claps, groovy piano chord progression and groovy bass. It is in mono and it sounds a bit harsh, but energetic, tropical and exotic.", "data_idx": 1733, "number": 1, "label": "reggae"} +{"file_name": "train_03232.png", "caption": "The low quality recording features an instrumental cover that consists exotic steel pan melody, punchy kick hits layered with claps, groovy piano chord progression and groovy bass. It is in mono and it sounds a bit harsh, but energetic, tropical and exotic.", "data_idx": 1733, "number": 2, "label": "reggae"} +{"file_name": "train_03233.png", "caption": "The low quality recording features an instrumental cover that consists exotic steel pan melody, punchy kick hits layered with claps, groovy piano chord progression and groovy bass. It is in mono and it sounds a bit harsh, but energetic, tropical and exotic.", "data_idx": 1733, "number": 3, "label": "reggae"} +{"file_name": "train_03234.png", "caption": "The song is an instrumental. The tempo is medium with a strong drumming rhythm, keyboard harmony, string synth harmony, guitar lead and a bass guitar shadowing the melody line in harmony. The song has rock music influences with a sense of mystery and adventure. The song is a soundtrack for an adventure sports documentary.", "data_idx": 1734, "number": 0, "label": "disco"} +{"file_name": "train_03235.png", "caption": "The song is an instrumental. The tempo is medium with a strong drumming rhythm, keyboard harmony, string synth harmony, guitar lead and a bass guitar shadowing the melody line in harmony. The song has rock music influences with a sense of mystery and adventure. The song is a soundtrack for an adventure sports documentary.", "data_idx": 1734, "number": 1, "label": "disco"} +{"file_name": "train_03236.png", "caption": "The song is an instrumental. The tempo is medium with a strong drumming rhythm, keyboard harmony, string synth harmony, guitar lead and a bass guitar shadowing the melody line in harmony. The song has rock music influences with a sense of mystery and adventure. The song is a soundtrack for an adventure sports documentary.", "data_idx": 1734, "number": 2, "label": "disco"} +{"file_name": "train_03237.png", "caption": "The song is an instrumental. The tempo is medium with a strong drumming rhythm, keyboard harmony, string synth harmony, guitar lead and a bass guitar shadowing the melody line in harmony. The song has rock music influences with a sense of mystery and adventure. The song is a soundtrack for an adventure sports documentary.", "data_idx": 1734, "number": 3, "label": "disco"} +{"file_name": "train_03238.png", "caption": "An acoustic drum is playing a straight groove while an e-bass is playing a bassline that reminds of reggae. This feeling gets enhanced by a e-guitar strumming a short rhythmic chord on the offbeat giving the song its typical reggae vibe. On top of that, someone is playing a melody on a steeldrums. This song may be playing at beachbar.", "data_idx": 1736, "number": 0, "label": "reggae"} +{"file_name": "train_03239.png", "caption": "An acoustic drum is playing a straight groove while an e-bass is playing a bassline that reminds of reggae. This feeling gets enhanced by a e-guitar strumming a short rhythmic chord on the offbeat giving the song its typical reggae vibe. On top of that, someone is playing a melody on a steeldrums. This song may be playing at beachbar.", "data_idx": 1736, "number": 1, "label": "reggae"} +{"file_name": "train_03240.png", "caption": "An acoustic drum is playing a straight groove while an e-bass is playing a bassline that reminds of reggae. This feeling gets enhanced by a e-guitar strumming a short rhythmic chord on the offbeat giving the song its typical reggae vibe. On top of that, someone is playing a melody on a steeldrums. This song may be playing at beachbar.", "data_idx": 1736, "number": 2, "label": "reggae"} +{"file_name": "train_03241.png", "caption": "An acoustic drum is playing a straight groove while an e-bass is playing a bassline that reminds of reggae. This feeling gets enhanced by a e-guitar strumming a short rhythmic chord on the offbeat giving the song its typical reggae vibe. On top of that, someone is playing a melody on a steeldrums. This song may be playing at beachbar.", "data_idx": 1736, "number": 3, "label": "reggae"} +{"file_name": "train_03242.png", "caption": "Sounds like happy instrumental karaoke music featuring synthesized horns and a simple chord progression. There is a mallet percussion instrument playing rolls and following a pentatonic melody. Drums playing a simple beat.", "data_idx": 1737, "number": 0, "label": "blues"} +{"file_name": "train_03243.png", "caption": "Sounds like happy instrumental karaoke music featuring synthesized horns and a simple chord progression. There is a mallet percussion instrument playing rolls and following a pentatonic melody. Drums playing a simple beat.", "data_idx": 1737, "number": 1, "label": "blues"} +{"file_name": "train_03244.png", "caption": "Sounds like happy instrumental karaoke music featuring synthesized horns and a simple chord progression. There is a mallet percussion instrument playing rolls and following a pentatonic melody. Drums playing a simple beat.", "data_idx": 1737, "number": 2, "label": "blues"} +{"file_name": "train_03245.png", "caption": "Sounds like happy instrumental karaoke music featuring synthesized horns and a simple chord progression. There is a mallet percussion instrument playing rolls and following a pentatonic melody. Drums playing a simple beat.", "data_idx": 1737, "number": 3, "label": "blues"} +{"file_name": "train_03246.png", "caption": "The low quality recording features a traditional song that consists of a shimmering tambourine, sizzling triangle, wide sustained strings melody, lead strings melody and wooden percussive elements. It sounds passionate, emotional, happy and fun, like something you would hear at weddings in the East.", "data_idx": 1738, "number": 0, "label": "classical"} +{"file_name": "train_03247.png", "caption": "The low quality recording features a traditional song that consists of a shimmering tambourine, sizzling triangle, wide sustained strings melody, lead strings melody and wooden percussive elements. It sounds passionate, emotional, happy and fun, like something you would hear at weddings in the East.", "data_idx": 1738, "number": 1, "label": "classical"} +{"file_name": "train_03248.png", "caption": "The low quality recording features a traditional song that consists of a shimmering tambourine, sizzling triangle, wide sustained strings melody, lead strings melody and wooden percussive elements. It sounds passionate, emotional, happy and fun, like something you would hear at weddings in the East.", "data_idx": 1738, "number": 2, "label": "classical"} +{"file_name": "train_03249.png", "caption": "The low quality recording features a traditional song that consists of a shimmering tambourine, sizzling triangle, wide sustained strings melody, lead strings melody and wooden percussive elements. It sounds passionate, emotional, happy and fun, like something you would hear at weddings in the East.", "data_idx": 1738, "number": 3, "label": "classical"} +{"file_name": "train_03250.png", "caption": "This is a home recording. The guitar in this recording is being played off-pitch and no real chords are being played. The singer is a child who sings in falsetto.", "data_idx": 1741, "number": 0, "label": "hiphop"} +{"file_name": "train_03251.png", "caption": "This is a home recording. The guitar in this recording is being played off-pitch and no real chords are being played. The singer is a child who sings in falsetto.", "data_idx": 1741, "number": 1, "label": "hiphop"} +{"file_name": "train_03252.png", "caption": "The low quality recording features a reverberant background electro music that consists of claps, \"4 on the floor\" kick pattern and addictive violin melody. It is in mono and it sounds like it was recorded with a phone in a medium size room, as the music is playing through a speaker.", "data_idx": 1742, "number": 0, "label": "disco"} +{"file_name": "train_03253.png", "caption": "The low quality recording features a reverberant background electro music that consists of claps, \"4 on the floor\" kick pattern and addictive violin melody. It is in mono and it sounds like it was recorded with a phone in a medium size room, as the music is playing through a speaker.", "data_idx": 1742, "number": 1, "label": "disco"} +{"file_name": "train_03254.png", "caption": "The low quality recording features a reverberant background electro music that consists of claps, \"4 on the floor\" kick pattern and addictive violin melody. It is in mono and it sounds like it was recorded with a phone in a medium size room, as the music is playing through a speaker.", "data_idx": 1742, "number": 2, "label": "disco"} +{"file_name": "train_03255.png", "caption": "The low quality recording features a reverberant background electro music that consists of claps, \"4 on the floor\" kick pattern and addictive violin melody. It is in mono and it sounds like it was recorded with a phone in a medium size room, as the music is playing through a speaker.", "data_idx": 1742, "number": 3, "label": "disco"} +{"file_name": "train_03256.png", "caption": "This music is instrumental . The tempo is fast with a burst of harmonious instrumentation. The music is orchestral with animated trumpets, melodious violin symphony, enthusiastic drumming, piano accompaniment and male vocalisation in the background. The music is bright, lively, powerful, commanding, fluent, gripping ,compelling and a delight to the ears.", "data_idx": 1743, "number": 0, "label": "rock"} +{"file_name": "train_03257.png", "caption": "This music is instrumental . The tempo is fast with a burst of harmonious instrumentation. The music is orchestral with animated trumpets, melodious violin symphony, enthusiastic drumming, piano accompaniment and male vocalisation in the background. The music is bright, lively, powerful, commanding, fluent, gripping ,compelling and a delight to the ears.", "data_idx": 1743, "number": 1, "label": "rock"} +{"file_name": "train_03258.png", "caption": "This music is instrumental . The tempo is fast with a burst of harmonious instrumentation. The music is orchestral with animated trumpets, melodious violin symphony, enthusiastic drumming, piano accompaniment and male vocalisation in the background. The music is bright, lively, powerful, commanding, fluent, gripping ,compelling and a delight to the ears.", "data_idx": 1743, "number": 2, "label": "rock"} +{"file_name": "train_03259.png", "caption": "This music is instrumental . The tempo is fast with a burst of harmonious instrumentation. The music is orchestral with animated trumpets, melodious violin symphony, enthusiastic drumming, piano accompaniment and male vocalisation in the background. The music is bright, lively, powerful, commanding, fluent, gripping ,compelling and a delight to the ears.", "data_idx": 1743, "number": 3, "label": "rock"} +{"file_name": "train_03260.png", "caption": "This hard rock song features a male voice singing the main melody. The song starts with a distortion guitar playing a riff. The percussion plays a simple beat in common time. Once the voice starts singing, the guitars play power chords using down strokes. The bass follows the root notes of the chords. The mood of this song is happy. This song can be played in a car chase sequence in a movie.", "data_idx": 1744, "number": 0, "label": "metal"} +{"file_name": "train_03261.png", "caption": "This hard rock song features a male voice singing the main melody. The song starts with a distortion guitar playing a riff. The percussion plays a simple beat in common time. Once the voice starts singing, the guitars play power chords using down strokes. The bass follows the root notes of the chords. The mood of this song is happy. This song can be played in a car chase sequence in a movie.", "data_idx": 1744, "number": 1, "label": "metal"} +{"file_name": "train_03262.png", "caption": "This hard rock song features a male voice singing the main melody. The song starts with a distortion guitar playing a riff. The percussion plays a simple beat in common time. Once the voice starts singing, the guitars play power chords using down strokes. The bass follows the root notes of the chords. The mood of this song is happy. This song can be played in a car chase sequence in a movie.", "data_idx": 1744, "number": 2, "label": "metal"} +{"file_name": "train_03263.png", "caption": "This hard rock song features a male voice singing the main melody. The song starts with a distortion guitar playing a riff. The percussion plays a simple beat in common time. Once the voice starts singing, the guitars play power chords using down strokes. The bass follows the root notes of the chords. The mood of this song is happy. This song can be played in a car chase sequence in a movie.", "data_idx": 1744, "number": 3, "label": "metal"} +{"file_name": "train_03264.png", "caption": "This music is a percussion instrumental. The tempo is medium fast with the drummer playing a groovy beat on the bass drum. The effect is low pitched loud, booming, resounding vibrato. There is no other instrument in this clip, so this could either be a tutorial or an introduction to a song.", "data_idx": 1745, "number": 0, "label": "hiphop"} +{"file_name": "train_03265.png", "caption": "This music is a percussion instrumental. The tempo is medium fast with the drummer playing a groovy beat on the bass drum. The effect is low pitched loud, booming, resounding vibrato. There is no other instrument in this clip, so this could either be a tutorial or an introduction to a song.", "data_idx": 1745, "number": 1, "label": "hiphop"} +{"file_name": "train_03266.png", "caption": "This music is a percussion instrumental. The tempo is medium fast with the drummer playing a groovy beat on the bass drum. The effect is low pitched loud, booming, resounding vibrato. There is no other instrument in this clip, so this could either be a tutorial or an introduction to a song.", "data_idx": 1745, "number": 2, "label": "hiphop"} +{"file_name": "train_03267.png", "caption": "This music is a percussion instrumental. The tempo is medium fast with the drummer playing a groovy beat on the bass drum. The effect is low pitched loud, booming, resounding vibrato. There is no other instrument in this clip, so this could either be a tutorial or an introduction to a song.", "data_idx": 1745, "number": 3, "label": "hiphop"} +{"file_name": "train_03268.png", "caption": "This is a video game theme cover. The theme belongs to the Super Mario franchise. The main theme is being played on an analog sounding small keyboard. There is an added rhythmic background of beatboxing in this version. The atmosphere is playful. This piece could be used in the background of arcade gaming social media content.", "data_idx": 1747, "number": 0, "label": "blues"} +{"file_name": "train_03269.png", "caption": "This is a video game theme cover. The theme belongs to the Super Mario franchise. The main theme is being played on an analog sounding small keyboard. There is an added rhythmic background of beatboxing in this version. The atmosphere is playful. This piece could be used in the background of arcade gaming social media content.", "data_idx": 1747, "number": 1, "label": "blues"} +{"file_name": "train_03270.png", "caption": "This is a video game theme cover. The theme belongs to the Super Mario franchise. The main theme is being played on an analog sounding small keyboard. There is an added rhythmic background of beatboxing in this version. The atmosphere is playful. This piece could be used in the background of arcade gaming social media content.", "data_idx": 1747, "number": 2, "label": "blues"} +{"file_name": "train_03271.png", "caption": "This is a video game theme cover. The theme belongs to the Super Mario franchise. The main theme is being played on an analog sounding small keyboard. There is an added rhythmic background of beatboxing in this version. The atmosphere is playful. This piece could be used in the background of arcade gaming social media content.", "data_idx": 1747, "number": 3, "label": "blues"} +{"file_name": "train_03272.png", "caption": "The audio contains someone playing an acoustic guitar while a female voice is singing. The performance sounds calming but there is a loud buzzing in the recording disturbing the atmosphere. This is an amateur recording. This song may be jamming at home.", "data_idx": 1748, "number": 0, "label": "jazz"} +{"file_name": "train_03273.png", "caption": "The audio contains someone playing an acoustic guitar while a female voice is singing. The performance sounds calming but there is a loud buzzing in the recording disturbing the atmosphere. This is an amateur recording. This song may be jamming at home.", "data_idx": 1748, "number": 1, "label": "jazz"} +{"file_name": "train_03274.png", "caption": "The audio contains someone playing an acoustic guitar while a female voice is singing. The performance sounds calming but there is a loud buzzing in the recording disturbing the atmosphere. This is an amateur recording. This song may be jamming at home.", "data_idx": 1748, "number": 2, "label": "jazz"} +{"file_name": "train_03275.png", "caption": "The audio contains someone playing an acoustic guitar while a female voice is singing. The performance sounds calming but there is a loud buzzing in the recording disturbing the atmosphere. This is an amateur recording. This song may be jamming at home.", "data_idx": 1748, "number": 3, "label": "jazz"} +{"file_name": "train_03276.png", "caption": "The low quality recording features a harmonized kids' vocals singing over a muffled flute melody. The recording is very noisy and it is in mono, but regardless it sounds happy and fun.", "data_idx": 1749, "number": 0, "label": "classical"} +{"file_name": "train_03277.png", "caption": "The low quality recording features a harmonized kids' vocals singing over a muffled flute melody. The recording is very noisy and it is in mono, but regardless it sounds happy and fun.", "data_idx": 1749, "number": 1, "label": "classical"} +{"file_name": "train_03278.png", "caption": "The low quality recording features a harmonized kids' vocals singing over a muffled flute melody. The recording is very noisy and it is in mono, but regardless it sounds happy and fun.", "data_idx": 1749, "number": 2, "label": "classical"} +{"file_name": "train_03279.png", "caption": "The low quality recording features a harmonized kids' vocals singing over a muffled flute melody. The recording is very noisy and it is in mono, but regardless it sounds happy and fun.", "data_idx": 1749, "number": 3, "label": "classical"} +{"file_name": "train_03280.png", "caption": "The low quality recording features a live performance of a reggae song that consists of shimmering cymbals, addictive brass melody and muffled male vocal singing over it. It is noisy and in mono, and it sounds thin, harsh, muddy, messy and energetic.", "data_idx": 1751, "number": 0, "label": "classical"} +{"file_name": "train_03281.png", "caption": "The low quality recording features a live performance of a reggae song that consists of shimmering cymbals, addictive brass melody and muffled male vocal singing over it. It is noisy and in mono, and it sounds thin, harsh, muddy, messy and energetic.", "data_idx": 1751, "number": 1, "label": "classical"} +{"file_name": "train_03282.png", "caption": "This is an instrumental showcase jam. A clean sounding electric guitar solo is being played. The track has an easygoing aura to it. Parts of this jam can be picked and lifted to be used as clean guitar samples for a beat. It could also be used in advertisement jingles.", "data_idx": 1752, "number": 0, "label": "jazz"} +{"file_name": "train_03283.png", "caption": "This is an instrumental showcase jam. A clean sounding electric guitar solo is being played. The track has an easygoing aura to it. Parts of this jam can be picked and lifted to be used as clean guitar samples for a beat. It could also be used in advertisement jingles.", "data_idx": 1752, "number": 1, "label": "jazz"} +{"file_name": "train_03284.png", "caption": "This is an instrumental showcase jam. A clean sounding electric guitar solo is being played. The track has an easygoing aura to it. Parts of this jam can be picked and lifted to be used as clean guitar samples for a beat. It could also be used in advertisement jingles.", "data_idx": 1752, "number": 2, "label": "jazz"} +{"file_name": "train_03285.png", "caption": "This is an instrumental showcase jam. A clean sounding electric guitar solo is being played. The track has an easygoing aura to it. Parts of this jam can be picked and lifted to be used as clean guitar samples for a beat. It could also be used in advertisement jingles.", "data_idx": 1752, "number": 3, "label": "jazz"} +{"file_name": "train_03286.png", "caption": "The low quality recording features a live performance of a spooky glass melody. The recording is very noisy, as there are crowd chattering noises in the background.", "data_idx": 1753, "number": 0, "label": "classical"} +{"file_name": "train_03287.png", "caption": "The low quality recording features a live performance of a spooky glass melody. The recording is very noisy, as there are crowd chattering noises in the background.", "data_idx": 1753, "number": 1, "label": "classical"} +{"file_name": "train_03288.png", "caption": "The low quality recording features a live performance of a spooky glass melody. The recording is very noisy, as there are crowd chattering noises in the background.", "data_idx": 1753, "number": 2, "label": "classical"} +{"file_name": "train_03289.png", "caption": "The low quality recording features a live performance of a spooky glass melody. The recording is very noisy, as there are crowd chattering noises in the background.", "data_idx": 1753, "number": 3, "label": "classical"} +{"file_name": "train_03290.png", "caption": "A female vocalist sings this mellow song. The tempo is slow with a subtle electric guitar accompaniment. The audio quality is inferior making it difficult to hear the song well. There is another track superimposed over the song which has sound so footsteps, metal being dragged, crickets, cricket chirping, breeze and some rustling. This is an audio of a song being played outdoors.", "data_idx": 1755, "number": 0, "label": "jazz"} +{"file_name": "train_03291.png", "caption": "A female vocalist sings this mellow song. The tempo is slow with a subtle electric guitar accompaniment. The audio quality is inferior making it difficult to hear the song well. There is another track superimposed over the song which has sound so footsteps, metal being dragged, crickets, cricket chirping, breeze and some rustling. This is an audio of a song being played outdoors.", "data_idx": 1755, "number": 1, "label": "jazz"} +{"file_name": "train_03292.png", "caption": "A female vocalist sings this mellow song. The tempo is slow with a subtle electric guitar accompaniment. The audio quality is inferior making it difficult to hear the song well. There is another track superimposed over the song which has sound so footsteps, metal being dragged, crickets, cricket chirping, breeze and some rustling. This is an audio of a song being played outdoors.", "data_idx": 1755, "number": 2, "label": "jazz"} +{"file_name": "train_03293.png", "caption": "A female vocalist sings this mellow song. The tempo is slow with a subtle electric guitar accompaniment. The audio quality is inferior making it difficult to hear the song well. There is another track superimposed over the song which has sound so footsteps, metal being dragged, crickets, cricket chirping, breeze and some rustling. This is an audio of a song being played outdoors.", "data_idx": 1755, "number": 3, "label": "jazz"} +{"file_name": "train_03294.png", "caption": "The low quality recording features a live performance of a folk song that consists of flat female vocals, harmonizing low male vocals, muffled drums, some wooden percussive elements, groovy bass and short strings licks. It sounds energetic and groovy, but the drums are really poorly recorded.", "data_idx": 1756, "number": 0, "label": "blues"} +{"file_name": "train_03295.png", "caption": "The low quality recording features a live performance of a folk song that consists of flat female vocals, harmonizing low male vocals, muffled drums, some wooden percussive elements, groovy bass and short strings licks. It sounds energetic and groovy, but the drums are really poorly recorded.", "data_idx": 1756, "number": 1, "label": "blues"} +{"file_name": "train_03296.png", "caption": "The low quality recording features a live performance of a folk song that consists of flat female vocals, harmonizing low male vocals, muffled drums, some wooden percussive elements, groovy bass and short strings licks. It sounds energetic and groovy, but the drums are really poorly recorded.", "data_idx": 1756, "number": 2, "label": "blues"} +{"file_name": "train_03297.png", "caption": "The low quality recording features a live performance of a folk song that consists of flat female vocals, harmonizing low male vocals, muffled drums, some wooden percussive elements, groovy bass and short strings licks. It sounds energetic and groovy, but the drums are really poorly recorded.", "data_idx": 1756, "number": 3, "label": "blues"} +{"file_name": "train_03298.png", "caption": "A female vocalist sings this rather vigorous country song. The tempo is fast with vocalisation. The vocalist is yodelling vigorously and rhythmically to the accompaniment of an animated banjo, fiddle, resonator and mandolin harmony, vibrant drumming and.", "data_idx": 1759, "number": 0, "label": "pop"} +{"file_name": "train_03299.png", "caption": "A female vocalist sings this rather vigorous country song. The tempo is fast with vocalisation. The vocalist is yodelling vigorously and rhythmically to the accompaniment of an animated banjo, fiddle, resonator and mandolin harmony, vibrant drumming and.", "data_idx": 1759, "number": 1, "label": "pop"} +{"file_name": "train_03300.png", "caption": "The low quality recording features a rock song that consists of electric guitar chords, being played in a video game by plastic guitar, which makes plastic tapping noises. There are also some crowd cheering noises and the recording is very noisy overall.", "data_idx": 1760, "number": 0, "label": "classical"} +{"file_name": "train_03301.png", "caption": "The low quality recording features a rock song that consists of electric guitar chords, being played in a video game by plastic guitar, which makes plastic tapping noises. There are also some crowd cheering noises and the recording is very noisy overall.", "data_idx": 1760, "number": 1, "label": "classical"} +{"file_name": "train_03302.png", "caption": "The low quality recording features a rock song that consists of electric guitar chords, being played in a video game by plastic guitar, which makes plastic tapping noises. There are also some crowd cheering noises and the recording is very noisy overall.", "data_idx": 1760, "number": 2, "label": "classical"} +{"file_name": "train_03303.png", "caption": "The low quality recording features a rock song that consists of electric guitar chords, being played in a video game by plastic guitar, which makes plastic tapping noises. There are also some crowd cheering noises and the recording is very noisy overall.", "data_idx": 1760, "number": 3, "label": "classical"} +{"file_name": "train_03304.png", "caption": "This is a drum & bass music piece. There is a female vocal sample that is being played repetitively. The main theme is being played by a keyboard while there is a strong bass in the background. The rhythmic background consists of a very fast tempo electronic drum beat. The atmosphere is modern. This piece could be played at nightclubs, at drum & bass events and in DJ sets. It could also work well in the soundtrack of a futuristic movie or a car racing video game.", "data_idx": 1761, "number": 0, "label": "pop"} +{"file_name": "train_03305.png", "caption": "This is a drum & bass music piece. There is a female vocal sample that is being played repetitively. The main theme is being played by a keyboard while there is a strong bass in the background. The rhythmic background consists of a very fast tempo electronic drum beat. The atmosphere is modern. This piece could be played at nightclubs, at drum & bass events and in DJ sets. It could also work well in the soundtrack of a futuristic movie or a car racing video game.", "data_idx": 1761, "number": 1, "label": "pop"} +{"file_name": "train_03306.png", "caption": "This is a drum & bass music piece. There is a female vocal sample that is being played repetitively. The main theme is being played by a keyboard while there is a strong bass in the background. The rhythmic background consists of a very fast tempo electronic drum beat. The atmosphere is modern. This piece could be played at nightclubs, at drum & bass events and in DJ sets. It could also work well in the soundtrack of a futuristic movie or a car racing video game.", "data_idx": 1761, "number": 2, "label": "pop"} +{"file_name": "train_03307.png", "caption": "This is a drum & bass music piece. There is a female vocal sample that is being played repetitively. The main theme is being played by a keyboard while there is a strong bass in the background. The rhythmic background consists of a very fast tempo electronic drum beat. The atmosphere is modern. This piece could be played at nightclubs, at drum & bass events and in DJ sets. It could also work well in the soundtrack of a futuristic movie or a car racing video game.", "data_idx": 1761, "number": 3, "label": "pop"} +{"file_name": "train_03308.png", "caption": "The low quality recording features a repetitive synth bass melody played on a modulated synthesizer, followed by bouncy snare. The recording is very noisy, in mono, with some chair squeaking and phone grip noises.", "data_idx": 1762, "number": 0, "label": "jazz"} +{"file_name": "train_03309.png", "caption": "The low quality recording features a repetitive synth bass melody played on a modulated synthesizer, followed by bouncy snare. The recording is very noisy, in mono, with some chair squeaking and phone grip noises.", "data_idx": 1762, "number": 1, "label": "jazz"} +{"file_name": "train_03310.png", "caption": "A male vocalist sings this HIp-hop. The tempo is medium with subdued keyboard accompaniment, slick drumming, boomy bass drops, synthesised arrangements and vocal backup. The song is youthful; enthusiastic, passionate, insistent, repetitive, groovy,rhythmic chanting with a dance groove. This song is Contemporary Hip-Hop/Rap.", "data_idx": 1763, "number": 0, "label": "reggae"} +{"file_name": "train_03311.png", "caption": "A male vocalist sings this HIp-hop. The tempo is medium with subdued keyboard accompaniment, slick drumming, boomy bass drops, synthesised arrangements and vocal backup. The song is youthful; enthusiastic, passionate, insistent, repetitive, groovy,rhythmic chanting with a dance groove. This song is Contemporary Hip-Hop/Rap.", "data_idx": 1763, "number": 1, "label": "reggae"} +{"file_name": "train_03312.png", "caption": "A male vocalist sings this HIp-hop. The tempo is medium with subdued keyboard accompaniment, slick drumming, boomy bass drops, synthesised arrangements and vocal backup. The song is youthful; enthusiastic, passionate, insistent, repetitive, groovy,rhythmic chanting with a dance groove. This song is Contemporary Hip-Hop/Rap.", "data_idx": 1763, "number": 2, "label": "reggae"} +{"file_name": "train_03313.png", "caption": "A male vocalist sings this HIp-hop. The tempo is medium with subdued keyboard accompaniment, slick drumming, boomy bass drops, synthesised arrangements and vocal backup. The song is youthful; enthusiastic, passionate, insistent, repetitive, groovy,rhythmic chanting with a dance groove. This song is Contemporary Hip-Hop/Rap.", "data_idx": 1763, "number": 3, "label": "reggae"} +{"file_name": "train_03314.png", "caption": "This recording is full of atmospheric sounds that are modulated rising and falling in pitch with liquid klick noises, white noise and a lot of reverb. These sounds are probably created with a synthesizer. A pad sound is playing long notes in the mid range while a soft subbass is underlining the strings. This composition may be playing in an underwater scene in a movie.", "data_idx": 1764, "number": 0, "label": "hiphop"} +{"file_name": "train_03315.png", "caption": "This recording is full of atmospheric sounds that are modulated rising and falling in pitch with liquid klick noises, white noise and a lot of reverb. These sounds are probably created with a synthesizer. A pad sound is playing long notes in the mid range while a soft subbass is underlining the strings. This composition may be playing in an underwater scene in a movie.", "data_idx": 1764, "number": 1, "label": "hiphop"} +{"file_name": "train_03316.png", "caption": "This recording is full of atmospheric sounds that are modulated rising and falling in pitch with liquid klick noises, white noise and a lot of reverb. These sounds are probably created with a synthesizer. A pad sound is playing long notes in the mid range while a soft subbass is underlining the strings. This composition may be playing in an underwater scene in a movie.", "data_idx": 1764, "number": 2, "label": "hiphop"} +{"file_name": "train_03317.png", "caption": "This recording is full of atmospheric sounds that are modulated rising and falling in pitch with liquid klick noises, white noise and a lot of reverb. These sounds are probably created with a synthesizer. A pad sound is playing long notes in the mid range while a soft subbass is underlining the strings. This composition may be playing in an underwater scene in a movie.", "data_idx": 1764, "number": 3, "label": "hiphop"} +{"file_name": "train_03318.png", "caption": "The song is an instrumental. The song is medium tempo with a percussionist playing a delightful melody on the steel drums with a steady drum rhythm and a percussive bass line. The song is cheerful and has a life message of being happy. The song audio quality is poor.", "data_idx": 1769, "number": 0, "label": "blues"} +{"file_name": "train_03319.png", "caption": "The song is an instrumental. The song is medium tempo with a percussionist playing a delightful melody on the steel drums with a steady drum rhythm and a percussive bass line. The song is cheerful and has a life message of being happy. The song audio quality is poor.", "data_idx": 1769, "number": 1, "label": "blues"} +{"file_name": "train_03320.png", "caption": "The low quality recording features a live performance of a country song played by ukulele orchestra, smooth double bass and sung by fruity male vocals. It is uptempo and it sounds energetic, even without drums, and passionate.", "data_idx": 1770, "number": 0, "label": "blues"} +{"file_name": "train_03321.png", "caption": "The low quality recording features a live performance of a country song played by ukulele orchestra, smooth double bass and sung by fruity male vocals. It is uptempo and it sounds energetic, even without drums, and passionate.", "data_idx": 1770, "number": 1, "label": "blues"} +{"file_name": "train_03322.png", "caption": "The low quality recording features a live performance of a country song played by ukulele orchestra, smooth double bass and sung by fruity male vocals. It is uptempo and it sounds energetic, even without drums, and passionate.", "data_idx": 1770, "number": 2, "label": "blues"} +{"file_name": "train_03323.png", "caption": "The low quality recording features a live performance of a country song played by ukulele orchestra, smooth double bass and sung by fruity male vocals. It is uptempo and it sounds energetic, even without drums, and passionate.", "data_idx": 1770, "number": 3, "label": "blues"} +{"file_name": "train_03324.png", "caption": "The low quality recording features a covered song with arpeggiated banjo melody and flat female vocal that is occasionally out of tune. The recording is noisy and in mono, as if it was recorded with a phone, but it is also emotional, regardless of the voice crack.", "data_idx": 1771, "number": 0, "label": "classical"} +{"file_name": "train_03325.png", "caption": "The low quality recording features a covered song with arpeggiated banjo melody and flat female vocal that is occasionally out of tune. The recording is noisy and in mono, as if it was recorded with a phone, but it is also emotional, regardless of the voice crack.", "data_idx": 1771, "number": 1, "label": "classical"} +{"file_name": "train_03326.png", "caption": "The low quality recording features a covered song with arpeggiated banjo melody and flat female vocal that is occasionally out of tune. The recording is noisy and in mono, as if it was recorded with a phone, but it is also emotional, regardless of the voice crack.", "data_idx": 1771, "number": 2, "label": "classical"} +{"file_name": "train_03327.png", "caption": "The low quality recording features a covered song with arpeggiated banjo melody and flat female vocal that is occasionally out of tune. The recording is noisy and in mono, as if it was recorded with a phone, but it is also emotional, regardless of the voice crack.", "data_idx": 1771, "number": 3, "label": "classical"} +{"file_name": "train_03328.png", "caption": "Professionally recorded music featuring an intimate female vocal, delicate piano, and orchestral string accompaniment. The tempo is slow, the production is high fidelity and the mood is an introspective one. Would be perfect in an animated kids movie.", "data_idx": 1772, "number": 0, "label": "pop"} +{"file_name": "train_03329.png", "caption": "Professionally recorded music featuring an intimate female vocal, delicate piano, and orchestral string accompaniment. The tempo is slow, the production is high fidelity and the mood is an introspective one. Would be perfect in an animated kids movie.", "data_idx": 1772, "number": 1, "label": "pop"} +{"file_name": "train_03330.png", "caption": "Professionally recorded music featuring an intimate female vocal, delicate piano, and orchestral string accompaniment. The tempo is slow, the production is high fidelity and the mood is an introspective one. Would be perfect in an animated kids movie.", "data_idx": 1772, "number": 2, "label": "pop"} +{"file_name": "train_03331.png", "caption": "Professionally recorded music featuring an intimate female vocal, delicate piano, and orchestral string accompaniment. The tempo is slow, the production is high fidelity and the mood is an introspective one. Would be perfect in an animated kids movie.", "data_idx": 1772, "number": 3, "label": "pop"} +{"file_name": "train_03332.png", "caption": "This is a pop funk piece used as a jingle for an ad. There is a male vocalist singing melodically while the electric guitar is playing a catchy tune with the bass guitar playing a groovy bass line. A normal tempo acoustic drum beat provides the rhythmic background. There are a couple of sound effects in the end. The piece has an easygoing atmosphere. It is the perfect match for a jingle. It could also be used in DJ sets or remixes.", "data_idx": 1774, "number": 0, "label": "hiphop"} +{"file_name": "train_03333.png", "caption": "This is a pop funk piece used as a jingle for an ad. There is a male vocalist singing melodically while the electric guitar is playing a catchy tune with the bass guitar playing a groovy bass line. A normal tempo acoustic drum beat provides the rhythmic background. There are a couple of sound effects in the end. The piece has an easygoing atmosphere. It is the perfect match for a jingle. It could also be used in DJ sets or remixes.", "data_idx": 1774, "number": 1, "label": "hiphop"} +{"file_name": "train_03334.png", "caption": "This is a pop funk piece used as a jingle for an ad. There is a male vocalist singing melodically while the electric guitar is playing a catchy tune with the bass guitar playing a groovy bass line. A normal tempo acoustic drum beat provides the rhythmic background. There are a couple of sound effects in the end. The piece has an easygoing atmosphere. It is the perfect match for a jingle. It could also be used in DJ sets or remixes.", "data_idx": 1774, "number": 2, "label": "hiphop"} +{"file_name": "train_03335.png", "caption": "This is a pop funk piece used as a jingle for an ad. There is a male vocalist singing melodically while the electric guitar is playing a catchy tune with the bass guitar playing a groovy bass line. A normal tempo acoustic drum beat provides the rhythmic background. There are a couple of sound effects in the end. The piece has an easygoing atmosphere. It is the perfect match for a jingle. It could also be used in DJ sets or remixes.", "data_idx": 1774, "number": 3, "label": "hiphop"} +{"file_name": "train_03336.png", "caption": "The low quality recording features an electro song that consists of a reverberant \"4 on the floor\" kick pattern, followed by suspenseful synth stabs. At the very end of the loop there is a short riser, after which comes the snippet of a filtered synth bass. It sounds thin, as it was poorly mixed.", "data_idx": 1775, "number": 0, "label": "disco"} +{"file_name": "train_03337.png", "caption": "The low quality recording features an electro song that consists of a reverberant \"4 on the floor\" kick pattern, followed by suspenseful synth stabs. At the very end of the loop there is a short riser, after which comes the snippet of a filtered synth bass. It sounds thin, as it was poorly mixed.", "data_idx": 1775, "number": 1, "label": "disco"} +{"file_name": "train_03338.png", "caption": "The low quality recording features an electro song that consists of a reverberant \"4 on the floor\" kick pattern, followed by suspenseful synth stabs. At the very end of the loop there is a short riser, after which comes the snippet of a filtered synth bass. It sounds thin, as it was poorly mixed.", "data_idx": 1775, "number": 2, "label": "disco"} +{"file_name": "train_03339.png", "caption": "The low quality recording features an electro song that consists of a reverberant \"4 on the floor\" kick pattern, followed by suspenseful synth stabs. At the very end of the loop there is a short riser, after which comes the snippet of a filtered synth bass. It sounds thin, as it was poorly mixed.", "data_idx": 1775, "number": 3, "label": "disco"} +{"file_name": "train_03340.png", "caption": "Someone is playing a ukulele. The piece sounds calming as someone is picking the strings: At the beginning of the song you can hear some white noise. This is an amateur recording but the quality is not bad. This song may be playing a documentary showing landscapes in slow motion.", "data_idx": 1776, "number": 0, "label": "hiphop"} +{"file_name": "train_03341.png", "caption": "Someone is playing a ukulele. The piece sounds calming as someone is picking the strings: At the beginning of the song you can hear some white noise. This is an amateur recording but the quality is not bad. This song may be playing a documentary showing landscapes in slow motion.", "data_idx": 1776, "number": 1, "label": "hiphop"} +{"file_name": "train_03342.png", "caption": "A drum is playing a four on the floor groove with a kick on every beat along to a bassline and a tambourine. Two e-guitars are strumming funky sounding chords. Male singers are singing a melody together in the mid-range. This song may be playing live at a local event.", "data_idx": 1779, "number": 0, "label": "disco"} +{"file_name": "train_03343.png", "caption": "A drum is playing a four on the floor groove with a kick on every beat along to a bassline and a tambourine. Two e-guitars are strumming funky sounding chords. Male singers are singing a melody together in the mid-range. This song may be playing live at a local event.", "data_idx": 1779, "number": 1, "label": "disco"} +{"file_name": "train_03344.png", "caption": "A drum is playing a four on the floor groove with a kick on every beat along to a bassline and a tambourine. Two e-guitars are strumming funky sounding chords. Male singers are singing a melody together in the mid-range. This song may be playing live at a local event.", "data_idx": 1779, "number": 2, "label": "disco"} +{"file_name": "train_03345.png", "caption": "A drum is playing a four on the floor groove with a kick on every beat along to a bassline and a tambourine. Two e-guitars are strumming funky sounding chords. Male singers are singing a melody together in the mid-range. This song may be playing live at a local event.", "data_idx": 1779, "number": 3, "label": "disco"} +{"file_name": "train_03346.png", "caption": "The low quality recording features a live performance of a pop song and it consists of flat female and male vocal rapping over \"4 on the floor\" kick pattern and electric guitar melody. There are some crowd clapping and cheering noises in the background. It sounds exciting and energetic.", "data_idx": 1781, "number": 0, "label": "disco"} +{"file_name": "train_03347.png", "caption": "The low quality recording features a live performance of a pop song and it consists of flat female and male vocal rapping over \"4 on the floor\" kick pattern and electric guitar melody. There are some crowd clapping and cheering noises in the background. It sounds exciting and energetic.", "data_idx": 1781, "number": 1, "label": "disco"} +{"file_name": "train_03348.png", "caption": "The low quality recording features a live performance of a pop song and it consists of flat female and male vocal rapping over \"4 on the floor\" kick pattern and electric guitar melody. There are some crowd clapping and cheering noises in the background. It sounds exciting and energetic.", "data_idx": 1781, "number": 2, "label": "disco"} +{"file_name": "train_03349.png", "caption": "The low quality recording features a live performance of a pop song and it consists of flat female and male vocal rapping over \"4 on the floor\" kick pattern and electric guitar melody. There are some crowd clapping and cheering noises in the background. It sounds exciting and energetic.", "data_idx": 1781, "number": 3, "label": "disco"} +{"file_name": "train_03350.png", "caption": "The song is an instrumental. The song is medium tempo with ambient room noises, like a volume knob turned up, a guitar being plugged in and the rhythmic strumming of an amplified distortion guitar. The song is energetic and passionate. The song is an introduction to a rock song.", "data_idx": 1782, "number": 0, "label": "hiphop"} +{"file_name": "train_03351.png", "caption": "The song is an instrumental. The song is medium tempo with ambient room noises, like a volume knob turned up, a guitar being plugged in and the rhythmic strumming of an amplified distortion guitar. The song is energetic and passionate. The song is an introduction to a rock song.", "data_idx": 1782, "number": 1, "label": "hiphop"} +{"file_name": "train_03352.png", "caption": "The song is an instrumental. The song is medium tempo with ambient room noises, like a volume knob turned up, a guitar being plugged in and the rhythmic strumming of an amplified distortion guitar. The song is energetic and passionate. The song is an introduction to a rock song.", "data_idx": 1782, "number": 2, "label": "hiphop"} +{"file_name": "train_03353.png", "caption": "The song is an instrumental. The song is medium tempo with ambient room noises, like a volume knob turned up, a guitar being plugged in and the rhythmic strumming of an amplified distortion guitar. The song is energetic and passionate. The song is an introduction to a rock song.", "data_idx": 1782, "number": 3, "label": "hiphop"} +{"file_name": "train_03354.png", "caption": "A female vocalist sings this enthusiastic song. The tempo is fast with keyboard harmony, infectious drumming, turntable effects, digital drumming, electronic music arrangements, boomy bass lines, vocal backup, vocalisation and synthesiser articulation. The song is passionate, emotional, powerful, impactful, engaging and inspiring with a punchy and youthful dance groove. This song is a powerful Synth Pop.", "data_idx": 1783, "number": 0, "label": "pop"} +{"file_name": "train_03355.png", "caption": "A female vocalist sings this enthusiastic song. The tempo is fast with keyboard harmony, infectious drumming, turntable effects, digital drumming, electronic music arrangements, boomy bass lines, vocal backup, vocalisation and synthesiser articulation. The song is passionate, emotional, powerful, impactful, engaging and inspiring with a punchy and youthful dance groove. This song is a powerful Synth Pop.", "data_idx": 1783, "number": 1, "label": "pop"} +{"file_name": "train_03356.png", "caption": "A female vocalist sings this enthusiastic song. The tempo is fast with keyboard harmony, infectious drumming, turntable effects, digital drumming, electronic music arrangements, boomy bass lines, vocal backup, vocalisation and synthesiser articulation. The song is passionate, emotional, powerful, impactful, engaging and inspiring with a punchy and youthful dance groove. This song is a powerful Synth Pop.", "data_idx": 1783, "number": 2, "label": "pop"} +{"file_name": "train_03357.png", "caption": "A female vocalist sings this enthusiastic song. The tempo is fast with keyboard harmony, infectious drumming, turntable effects, digital drumming, electronic music arrangements, boomy bass lines, vocal backup, vocalisation and synthesiser articulation. The song is passionate, emotional, powerful, impactful, engaging and inspiring with a punchy and youthful dance groove. This song is a powerful Synth Pop.", "data_idx": 1783, "number": 3, "label": "pop"} +{"file_name": "train_03358.png", "caption": "The Blues/Pop song features groovy hi hats, punchy snare and kick hits, tinny snare rolls in-between snare hits, addictive brass melody and smooth bass at the very end of the loop. It sounds a bit repetitive, but still addictive and energetic.", "data_idx": 1784, "number": 0, "label": "disco"} +{"file_name": "train_03359.png", "caption": "The Blues/Pop song features groovy hi hats, punchy snare and kick hits, tinny snare rolls in-between snare hits, addictive brass melody and smooth bass at the very end of the loop. It sounds a bit repetitive, but still addictive and energetic.", "data_idx": 1784, "number": 1, "label": "disco"} +{"file_name": "train_03360.png", "caption": "The Blues/Pop song features groovy hi hats, punchy snare and kick hits, tinny snare rolls in-between snare hits, addictive brass melody and smooth bass at the very end of the loop. It sounds a bit repetitive, but still addictive and energetic.", "data_idx": 1784, "number": 2, "label": "disco"} +{"file_name": "train_03361.png", "caption": "The Blues/Pop song features groovy hi hats, punchy snare and kick hits, tinny snare rolls in-between snare hits, addictive brass melody and smooth bass at the very end of the loop. It sounds a bit repetitive, but still addictive and energetic.", "data_idx": 1784, "number": 3, "label": "disco"} +{"file_name": "train_03362.png", "caption": "The low quality recording features a house song that contains echoing male vocal singing over shimmering hi hats, bouncy claps, \"4 on the floor\" kick pattern and repetitive synth lead melody. It sounds energetic and groovy.", "data_idx": 1786, "number": 0, "label": "hiphop"} +{"file_name": "train_03363.png", "caption": "The low quality recording features a house song that contains echoing male vocal singing over shimmering hi hats, bouncy claps, \"4 on the floor\" kick pattern and repetitive synth lead melody. It sounds energetic and groovy.", "data_idx": 1786, "number": 1, "label": "hiphop"} +{"file_name": "train_03364.png", "caption": "The low quality recording features a house song that contains echoing male vocal singing over shimmering hi hats, bouncy claps, \"4 on the floor\" kick pattern and repetitive synth lead melody. It sounds energetic and groovy.", "data_idx": 1786, "number": 2, "label": "hiphop"} +{"file_name": "train_03365.png", "caption": "The low quality recording features a house song that contains echoing male vocal singing over shimmering hi hats, bouncy claps, \"4 on the floor\" kick pattern and repetitive synth lead melody. It sounds energetic and groovy.", "data_idx": 1786, "number": 3, "label": "hiphop"} +{"file_name": "train_03366.png", "caption": "This is an Egyptian music piece. There is a heavy use of percussion in the rhythmic background with the accompaniment of occasional claps. Medium-pitched strings are leading the melody. The male vocals are chanting rhythmically while the female vocal is singing in a soothing manner that creates a contrast in between the two elements. There is an adventurous, suspense-filled feeling. This piece could be used in a mystery/thriller video game. It could also be used in a movie that takes place in the Middle East.", "data_idx": 1790, "number": 0, "label": "disco"} +{"file_name": "train_03367.png", "caption": "This is an Egyptian music piece. There is a heavy use of percussion in the rhythmic background with the accompaniment of occasional claps. Medium-pitched strings are leading the melody. The male vocals are chanting rhythmically while the female vocal is singing in a soothing manner that creates a contrast in between the two elements. There is an adventurous, suspense-filled feeling. This piece could be used in a mystery/thriller video game. It could also be used in a movie that takes place in the Middle East.", "data_idx": 1790, "number": 1, "label": "disco"} +{"file_name": "train_03368.png", "caption": "The song is instrumental. The tempo is fast with a beautifully played hand pan arrangement by a soloist. The song is ethereal and innocent in its beauty. The audio quality is average.", "data_idx": 1791, "number": 0, "label": "disco"} +{"file_name": "train_03369.png", "caption": "The song is instrumental. The tempo is fast with a beautifully played hand pan arrangement by a soloist. The song is ethereal and innocent in its beauty. The audio quality is average.", "data_idx": 1791, "number": 1, "label": "disco"} +{"file_name": "train_03370.png", "caption": "The song is instrumental. The tempo is fast with a beautifully played hand pan arrangement by a soloist. The song is ethereal and innocent in its beauty. The audio quality is average.", "data_idx": 1791, "number": 2, "label": "disco"} +{"file_name": "train_03371.png", "caption": "The song is instrumental. The tempo is fast with a beautifully played hand pan arrangement by a soloist. The song is ethereal and innocent in its beauty. The audio quality is average.", "data_idx": 1791, "number": 3, "label": "disco"} +{"file_name": "train_03372.png", "caption": "An acoustic drum is playing a jazzy groove on the ride along with a bassline while an e-guitar is playing jazz chords with a lot of changes together with an acoustic piano rendering phrases with an uplifting melody. The singer's voice sounds low and romantic. This song may be playing while dancing with a partner.", "data_idx": 1792, "number": 0, "label": "rock"} +{"file_name": "train_03373.png", "caption": "An acoustic drum is playing a jazzy groove on the ride along with a bassline while an e-guitar is playing jazz chords with a lot of changes together with an acoustic piano rendering phrases with an uplifting melody. The singer's voice sounds low and romantic. This song may be playing while dancing with a partner.", "data_idx": 1792, "number": 1, "label": "rock"} +{"file_name": "train_03374.png", "caption": "An acoustic drum is playing a jazzy groove on the ride along with a bassline while an e-guitar is playing jazz chords with a lot of changes together with an acoustic piano rendering phrases with an uplifting melody. The singer's voice sounds low and romantic. This song may be playing while dancing with a partner.", "data_idx": 1792, "number": 2, "label": "rock"} +{"file_name": "train_03375.png", "caption": "An acoustic drum is playing a jazzy groove on the ride along with a bassline while an e-guitar is playing jazz chords with a lot of changes together with an acoustic piano rendering phrases with an uplifting melody. The singer's voice sounds low and romantic. This song may be playing while dancing with a partner.", "data_idx": 1792, "number": 3, "label": "rock"} +{"file_name": "train_03376.png", "caption": "An electro swing, or swing house track featuring a four on the floor kick pattern, acoustic jazz piano sample playing a classic rhythm changes chord progression, a female blues singer, synthesizer risers, ambient bell sounds, a walking synth bassline and a snare on backbeat. Would be fitting music for a modern day speakeasy.", "data_idx": 1793, "number": 0, "label": "reggae"} +{"file_name": "train_03377.png", "caption": "An electro swing, or swing house track featuring a four on the floor kick pattern, acoustic jazz piano sample playing a classic rhythm changes chord progression, a female blues singer, synthesizer risers, ambient bell sounds, a walking synth bassline and a snare on backbeat. Would be fitting music for a modern day speakeasy.", "data_idx": 1793, "number": 1, "label": "reggae"} +{"file_name": "train_03378.png", "caption": "An electro swing, or swing house track featuring a four on the floor kick pattern, acoustic jazz piano sample playing a classic rhythm changes chord progression, a female blues singer, synthesizer risers, ambient bell sounds, a walking synth bassline and a snare on backbeat. Would be fitting music for a modern day speakeasy.", "data_idx": 1793, "number": 2, "label": "reggae"} +{"file_name": "train_03379.png", "caption": "An electro swing, or swing house track featuring a four on the floor kick pattern, acoustic jazz piano sample playing a classic rhythm changes chord progression, a female blues singer, synthesizer risers, ambient bell sounds, a walking synth bassline and a snare on backbeat. Would be fitting music for a modern day speakeasy.", "data_idx": 1793, "number": 3, "label": "reggae"} +{"file_name": "train_03380.png", "caption": "This music is instrumental. The tempo is medium fast with a melodious keyboard harmony, steady drumming, groovy bass, synthesiser arrangements , electronically articulated sounds and tambourine beats . The melody is harmonious, pleasant, uncomplicated and well layered. This music is Synth Pop.", "data_idx": 1795, "number": 0, "label": "reggae"} +{"file_name": "train_03381.png", "caption": "This music is instrumental. The tempo is medium fast with a melodious keyboard harmony, steady drumming, groovy bass, synthesiser arrangements , electronically articulated sounds and tambourine beats . The melody is harmonious, pleasant, uncomplicated and well layered. This music is Synth Pop.", "data_idx": 1795, "number": 1, "label": "reggae"} +{"file_name": "train_03382.png", "caption": "This music is instrumental. The tempo is medium fast with a melodious keyboard harmony, steady drumming, groovy bass, synthesiser arrangements , electronically articulated sounds and tambourine beats . The melody is harmonious, pleasant, uncomplicated and well layered. This music is Synth Pop.", "data_idx": 1795, "number": 2, "label": "reggae"} +{"file_name": "train_03383.png", "caption": "This music is instrumental. The tempo is medium fast with a melodious keyboard harmony, steady drumming, groovy bass, synthesiser arrangements , electronically articulated sounds and tambourine beats . The melody is harmonious, pleasant, uncomplicated and well layered. This music is Synth Pop.", "data_idx": 1795, "number": 3, "label": "reggae"} +{"file_name": "train_03384.png", "caption": "The low quality recording features a flat male vocal singing over crowd cheering sound, punchy kick, shimmering cymbals, groovy accordion melody, acoustic rhythm guitar chords and smooth bass guitar. There is a short toms roll before the bass drops. It sounds fun and happy.", "data_idx": 1796, "number": 0, "label": "rock"} +{"file_name": "train_03385.png", "caption": "The low quality recording features a flat male vocal singing over crowd cheering sound, punchy kick, shimmering cymbals, groovy accordion melody, acoustic rhythm guitar chords and smooth bass guitar. There is a short toms roll before the bass drops. It sounds fun and happy.", "data_idx": 1796, "number": 1, "label": "rock"} +{"file_name": "train_03386.png", "caption": "The low quality recording features a flat male vocal singing over crowd cheering sound, punchy kick, shimmering cymbals, groovy accordion melody, acoustic rhythm guitar chords and smooth bass guitar. There is a short toms roll before the bass drops. It sounds fun and happy.", "data_idx": 1796, "number": 2, "label": "rock"} +{"file_name": "train_03387.png", "caption": "The low quality recording features a flat male vocal singing over crowd cheering sound, punchy kick, shimmering cymbals, groovy accordion melody, acoustic rhythm guitar chords and smooth bass guitar. There is a short toms roll before the bass drops. It sounds fun and happy.", "data_idx": 1796, "number": 3, "label": "rock"} +{"file_name": "train_03388.png", "caption": "The Classical song features a dynamic arrangement of energetic orchestra drums, woodwinds, arpeggiated strings melody and shimmering brass melody. It sounds cinematic and epic - like a background movie soundtrack.", "data_idx": 1799, "number": 0, "label": "classical"} +{"file_name": "train_03389.png", "caption": "The Classical song features a dynamic arrangement of energetic orchestra drums, woodwinds, arpeggiated strings melody and shimmering brass melody. It sounds cinematic and epic - like a background movie soundtrack.", "data_idx": 1799, "number": 1, "label": "classical"} +{"file_name": "train_03390.png", "caption": "The Classical song features a dynamic arrangement of energetic orchestra drums, woodwinds, arpeggiated strings melody and shimmering brass melody. It sounds cinematic and epic - like a background movie soundtrack.", "data_idx": 1799, "number": 2, "label": "classical"} +{"file_name": "train_03391.png", "caption": "The Classical song features a dynamic arrangement of energetic orchestra drums, woodwinds, arpeggiated strings melody and shimmering brass melody. It sounds cinematic and epic - like a background movie soundtrack.", "data_idx": 1799, "number": 3, "label": "classical"} +{"file_name": "train_03392.png", "caption": "The low quality recording features a hip hop song that consists bright, widely spread steel guitar melody, tinny muffled percussive elements, shimmering triangle, reverberant flute melody, claps, soft kick hits, mellow synth pad and groovy bass that glues everything together. It sounds kind of dull, but groovy, energetic and tropical - thanks to those flute and guitar melodies.", "data_idx": 1802, "number": 0, "label": "disco"} +{"file_name": "train_03393.png", "caption": "The low quality recording features a hip hop song that consists bright, widely spread steel guitar melody, tinny muffled percussive elements, shimmering triangle, reverberant flute melody, claps, soft kick hits, mellow synth pad and groovy bass that glues everything together. It sounds kind of dull, but groovy, energetic and tropical - thanks to those flute and guitar melodies.", "data_idx": 1802, "number": 1, "label": "disco"} +{"file_name": "train_03394.png", "caption": "The low quality recording features a hip hop song that consists bright, widely spread steel guitar melody, tinny muffled percussive elements, shimmering triangle, reverberant flute melody, claps, soft kick hits, mellow synth pad and groovy bass that glues everything together. It sounds kind of dull, but groovy, energetic and tropical - thanks to those flute and guitar melodies.", "data_idx": 1802, "number": 2, "label": "disco"} +{"file_name": "train_03395.png", "caption": "The low quality recording features a hip hop song that consists bright, widely spread steel guitar melody, tinny muffled percussive elements, shimmering triangle, reverberant flute melody, claps, soft kick hits, mellow synth pad and groovy bass that glues everything together. It sounds kind of dull, but groovy, energetic and tropical - thanks to those flute and guitar melodies.", "data_idx": 1802, "number": 3, "label": "disco"} +{"file_name": "train_03396.png", "caption": "The low quality recording a boomy steel guitar being aggressively strummed. The recording is noisy, reverberant and it sounds muddy, but regardless, the melody is addictive.", "data_idx": 1805, "number": 0, "label": "hiphop"} +{"file_name": "train_03397.png", "caption": "The low quality recording a boomy steel guitar being aggressively strummed. The recording is noisy, reverberant and it sounds muddy, but regardless, the melody is addictive.", "data_idx": 1805, "number": 1, "label": "hiphop"} +{"file_name": "train_03398.png", "caption": "The low quality recording features a musical played on a small device that reproduces mono sound. The song consists of energetic drums, brass section and passionate female vocal singing on top of it. It sounds noisy, muffled and thin, as it was probably recorded with a poor quality microphone.", "data_idx": 1807, "number": 0, "label": "classical"} +{"file_name": "train_03399.png", "caption": "The low quality recording features a musical played on a small device that reproduces mono sound. The song consists of energetic drums, brass section and passionate female vocal singing on top of it. It sounds noisy, muffled and thin, as it was probably recorded with a poor quality microphone.", "data_idx": 1807, "number": 1, "label": "classical"} +{"file_name": "train_03400.png", "caption": "The low quality recording features a musical played on a small device that reproduces mono sound. The song consists of energetic drums, brass section and passionate female vocal singing on top of it. It sounds noisy, muffled and thin, as it was probably recorded with a poor quality microphone.", "data_idx": 1807, "number": 2, "label": "classical"} +{"file_name": "train_03401.png", "caption": "The low quality recording features a musical played on a small device that reproduces mono sound. The song consists of energetic drums, brass section and passionate female vocal singing on top of it. It sounds noisy, muffled and thin, as it was probably recorded with a poor quality microphone.", "data_idx": 1807, "number": 3, "label": "classical"} +{"file_name": "train_03402.png", "caption": "This audio recording features a crickets sound effect, sea waves sound effect and mellow synth pad chords in the background, followed by shimmering tambourine and muffled snare. At the very end of the first section of the loop, there is a short filter modulation riser, after which there is silence. At the very end of the loop there is a soft white noise down sweep. It sounds very relaxing and calming, especially because of the pad and sound effects.", "data_idx": 1808, "number": 0, "label": "hiphop"} +{"file_name": "train_03403.png", "caption": "This audio recording features a crickets sound effect, sea waves sound effect and mellow synth pad chords in the background, followed by shimmering tambourine and muffled snare. At the very end of the first section of the loop, there is a short filter modulation riser, after which there is silence. At the very end of the loop there is a soft white noise down sweep. It sounds very relaxing and calming, especially because of the pad and sound effects.", "data_idx": 1808, "number": 1, "label": "hiphop"} +{"file_name": "train_03404.png", "caption": "This audio recording features a crickets sound effect, sea waves sound effect and mellow synth pad chords in the background, followed by shimmering tambourine and muffled snare. At the very end of the first section of the loop, there is a short filter modulation riser, after which there is silence. At the very end of the loop there is a soft white noise down sweep. It sounds very relaxing and calming, especially because of the pad and sound effects.", "data_idx": 1808, "number": 2, "label": "hiphop"} +{"file_name": "train_03405.png", "caption": "This audio recording features a crickets sound effect, sea waves sound effect and mellow synth pad chords in the background, followed by shimmering tambourine and muffled snare. At the very end of the first section of the loop, there is a short filter modulation riser, after which there is silence. At the very end of the loop there is a soft white noise down sweep. It sounds very relaxing and calming, especially because of the pad and sound effects.", "data_idx": 1808, "number": 3, "label": "hiphop"} +{"file_name": "train_03406.png", "caption": "This is an amateur recording of a hard rock piece. An electric guitar solo is being played over a backing track that has a rhythm guitar, a bass guitar, a keyboard and acoustic drums playing in it. The sound resembles an 80s feel. It is a raw recording, so the mix is a bit muddy.", "data_idx": 1809, "number": 0, "label": "blues"} +{"file_name": "train_03407.png", "caption": "This is an amateur recording of a hard rock piece. An electric guitar solo is being played over a backing track that has a rhythm guitar, a bass guitar, a keyboard and acoustic drums playing in it. The sound resembles an 80s feel. It is a raw recording, so the mix is a bit muddy.", "data_idx": 1809, "number": 1, "label": "blues"} +{"file_name": "train_03408.png", "caption": "This song contains three guitars playing chords, and two melodies while one of the guitars stands out to be playing the main melody. The guitars are panned to the left and the right side of the speakers. An e-bass is playing a walking line that repeats itself. Different percussive instruments are panned to the left and right side of the speakers. There are some noises of doors opening and closing that I think do not belong to the musical composition and they sound in the foreground. This song may be playing in a house in the countryside.", "data_idx": 1813, "number": 0, "label": "reggae"} +{"file_name": "train_03409.png", "caption": "This song contains three guitars playing chords, and two melodies while one of the guitars stands out to be playing the main melody. The guitars are panned to the left and the right side of the speakers. An e-bass is playing a walking line that repeats itself. Different percussive instruments are panned to the left and right side of the speakers. There are some noises of doors opening and closing that I think do not belong to the musical composition and they sound in the foreground. This song may be playing in a house in the countryside.", "data_idx": 1813, "number": 1, "label": "reggae"} +{"file_name": "train_03410.png", "caption": "This song contains three guitars playing chords, and two melodies while one of the guitars stands out to be playing the main melody. The guitars are panned to the left and the right side of the speakers. An e-bass is playing a walking line that repeats itself. Different percussive instruments are panned to the left and right side of the speakers. There are some noises of doors opening and closing that I think do not belong to the musical composition and they sound in the foreground. This song may be playing in a house in the countryside.", "data_idx": 1813, "number": 2, "label": "reggae"} +{"file_name": "train_03411.png", "caption": "This song contains three guitars playing chords, and two melodies while one of the guitars stands out to be playing the main melody. The guitars are panned to the left and the right side of the speakers. An e-bass is playing a walking line that repeats itself. Different percussive instruments are panned to the left and right side of the speakers. There are some noises of doors opening and closing that I think do not belong to the musical composition and they sound in the foreground. This song may be playing in a house in the countryside.", "data_idx": 1813, "number": 3, "label": "reggae"} +{"file_name": "train_03412.png", "caption": "The low quality recording features a lullaby that consists of mellow girl vocal singing over staccato string melody in the left channel and plucked strings melody in the right channel of the stereo image. There are muffled, barely audible, muffled snare rolls in the background. The recording is noisy and reverberant, and it sounds soft, emotional and mellow.", "data_idx": 1814, "number": 0, "label": "pop"} +{"file_name": "train_03413.png", "caption": "The low quality recording features a lullaby that consists of mellow girl vocal singing over staccato string melody in the left channel and plucked strings melody in the right channel of the stereo image. There are muffled, barely audible, muffled snare rolls in the background. The recording is noisy and reverberant, and it sounds soft, emotional and mellow.", "data_idx": 1814, "number": 1, "label": "pop"} +{"file_name": "train_03414.png", "caption": "The low quality recording features a lullaby that consists of mellow girl vocal singing over staccato string melody in the left channel and plucked strings melody in the right channel of the stereo image. There are muffled, barely audible, muffled snare rolls in the background. The recording is noisy and reverberant, and it sounds soft, emotional and mellow.", "data_idx": 1814, "number": 2, "label": "pop"} +{"file_name": "train_03415.png", "caption": "The low quality recording features a lullaby that consists of mellow girl vocal singing over staccato string melody in the left channel and plucked strings melody in the right channel of the stereo image. There are muffled, barely audible, muffled snare rolls in the background. The recording is noisy and reverberant, and it sounds soft, emotional and mellow.", "data_idx": 1814, "number": 3, "label": "pop"} +{"file_name": "train_03416.png", "caption": "The low quality recording features a groovy orchestra percussions, sustained strings melody and shimmering hi hats. In the second half of the loop, there is a wind sound effect, followed by loud metallic impact. It sounds glorious, epic, uplifting and like a sync sound for a video game.", "data_idx": 1815, "number": 0, "label": "classical"} +{"file_name": "train_03417.png", "caption": "The low quality recording features a groovy orchestra percussions, sustained strings melody and shimmering hi hats. In the second half of the loop, there is a wind sound effect, followed by loud metallic impact. It sounds glorious, epic, uplifting and like a sync sound for a video game.", "data_idx": 1815, "number": 1, "label": "classical"} +{"file_name": "train_03418.png", "caption": "The low quality recording features a groovy orchestra percussions, sustained strings melody and shimmering hi hats. In the second half of the loop, there is a wind sound effect, followed by loud metallic impact. It sounds glorious, epic, uplifting and like a sync sound for a video game.", "data_idx": 1815, "number": 2, "label": "classical"} +{"file_name": "train_03419.png", "caption": "The low quality recording features a groovy orchestra percussions, sustained strings melody and shimmering hi hats. In the second half of the loop, there is a wind sound effect, followed by loud metallic impact. It sounds glorious, epic, uplifting and like a sync sound for a video game.", "data_idx": 1815, "number": 3, "label": "classical"} +{"file_name": "train_03420.png", "caption": "A female opera singer sings this soprano melody. The tempo is slow with an ethereal violin symphony accompaniment. The song is mellifluous , soft, enchanting, enigmatic, mystical, ethereal,celestial and dreamy. This is a Classic Opera.", "data_idx": 1817, "number": 0, "label": "classical"} +{"file_name": "train_03421.png", "caption": "A female opera singer sings this soprano melody. The tempo is slow with an ethereal violin symphony accompaniment. The song is mellifluous , soft, enchanting, enigmatic, mystical, ethereal,celestial and dreamy. This is a Classic Opera.", "data_idx": 1817, "number": 1, "label": "classical"} +{"file_name": "train_03422.png", "caption": "A female opera singer sings this soprano melody. The tempo is slow with an ethereal violin symphony accompaniment. The song is mellifluous , soft, enchanting, enigmatic, mystical, ethereal,celestial and dreamy. This is a Classic Opera.", "data_idx": 1817, "number": 2, "label": "classical"} +{"file_name": "train_03423.png", "caption": "A female opera singer sings this soprano melody. The tempo is slow with an ethereal violin symphony accompaniment. The song is mellifluous , soft, enchanting, enigmatic, mystical, ethereal,celestial and dreamy. This is a Classic Opera.", "data_idx": 1817, "number": 3, "label": "classical"} +{"file_name": "train_03424.png", "caption": "This song features a pedal steel guitar playing the main melody. This starts off with a slide to a high register followed by plucking low register strings. This is accompanied by percussion playing a simple beat in common time. An acoustic guitar strums chords in the background. The bass guitar plays the root notes of the chords. This song is at a slow tempo. There are no voices in this song. This is an instrumental song with a Country feel. This song can be played in a coffee shop.", "data_idx": 1819, "number": 0, "label": "blues"} +{"file_name": "train_03425.png", "caption": "This song features a pedal steel guitar playing the main melody. This starts off with a slide to a high register followed by plucking low register strings. This is accompanied by percussion playing a simple beat in common time. An acoustic guitar strums chords in the background. The bass guitar plays the root notes of the chords. This song is at a slow tempo. There are no voices in this song. This is an instrumental song with a Country feel. This song can be played in a coffee shop.", "data_idx": 1819, "number": 1, "label": "blues"} +{"file_name": "train_03426.png", "caption": "This song features a pedal steel guitar playing the main melody. This starts off with a slide to a high register followed by plucking low register strings. This is accompanied by percussion playing a simple beat in common time. An acoustic guitar strums chords in the background. The bass guitar plays the root notes of the chords. This song is at a slow tempo. There are no voices in this song. This is an instrumental song with a Country feel. This song can be played in a coffee shop.", "data_idx": 1819, "number": 2, "label": "blues"} +{"file_name": "train_03427.png", "caption": "This song features a pedal steel guitar playing the main melody. This starts off with a slide to a high register followed by plucking low register strings. This is accompanied by percussion playing a simple beat in common time. An acoustic guitar strums chords in the background. The bass guitar plays the root notes of the chords. This song is at a slow tempo. There are no voices in this song. This is an instrumental song with a Country feel. This song can be played in a coffee shop.", "data_idx": 1819, "number": 3, "label": "blues"} +{"file_name": "train_03428.png", "caption": "This is the recording of an ice cream truck jingle. Engine sounds from the truck can be heard in the recording. It has an analog sounding high-pitch synth playing a cute melody in the major key. The atmosphere is happy and childlike. This piece could be used to lift samples from. It could also be added to the soundtrack of children's movies and TV shows. Another good use would be in the soundtrack of video games of the arcade genre.", "data_idx": 1824, "number": 0, "label": "hiphop"} +{"file_name": "train_03429.png", "caption": "This is the recording of an ice cream truck jingle. Engine sounds from the truck can be heard in the recording. It has an analog sounding high-pitch synth playing a cute melody in the major key. The atmosphere is happy and childlike. This piece could be used to lift samples from. It could also be added to the soundtrack of children's movies and TV shows. Another good use would be in the soundtrack of video games of the arcade genre.", "data_idx": 1824, "number": 1, "label": "hiphop"} +{"file_name": "train_03430.png", "caption": "The female voice is singing lightly sad-sounding. Backing voices are supporting her in some phrases while strings are playing long notes that are panned to the left and right side of the speakers. A piano is playing ballad sounding chords and a melody underlined by the e-bass. This song may be playing in a soul musical.", "data_idx": 1825, "number": 0, "label": "disco"} +{"file_name": "train_03431.png", "caption": "The female voice is singing lightly sad-sounding. Backing voices are supporting her in some phrases while strings are playing long notes that are panned to the left and right side of the speakers. A piano is playing ballad sounding chords and a melody underlined by the e-bass. This song may be playing in a soul musical.", "data_idx": 1825, "number": 1, "label": "disco"} +{"file_name": "train_03432.png", "caption": "The female voice is singing lightly sad-sounding. Backing voices are supporting her in some phrases while strings are playing long notes that are panned to the left and right side of the speakers. A piano is playing ballad sounding chords and a melody underlined by the e-bass. This song may be playing in a soul musical.", "data_idx": 1825, "number": 2, "label": "disco"} +{"file_name": "train_03433.png", "caption": "The female voice is singing lightly sad-sounding. Backing voices are supporting her in some phrases while strings are playing long notes that are panned to the left and right side of the speakers. A piano is playing ballad sounding chords and a melody underlined by the e-bass. This song may be playing in a soul musical.", "data_idx": 1825, "number": 3, "label": "disco"} +{"file_name": "train_03434.png", "caption": "Someone is splaying a series of bell sounds and a big gong hit that rings out for a long time. Wild percussive hits are being played for a moment. Then a traditional string instrument takes over playing a single long note with a bow and a lot of vibrato. This is an amateur recording and of poor audio-quality. This song may be playing in a traditional festival.", "data_idx": 1826, "number": 0, "label": "jazz"} +{"file_name": "train_03435.png", "caption": "Someone is splaying a series of bell sounds and a big gong hit that rings out for a long time. Wild percussive hits are being played for a moment. Then a traditional string instrument takes over playing a single long note with a bow and a lot of vibrato. This is an amateur recording and of poor audio-quality. This song may be playing in a traditional festival.", "data_idx": 1826, "number": 1, "label": "jazz"} +{"file_name": "train_03436.png", "caption": "Someone is playing a song through speakers. The song contains digital drums with strong loud rhythmic hits rising up in pitch and a kick on every beat. A guitar-like sound is playing an arpeggio melody with other string instruments. This is an amateur recording and of poor sound-quality. This song may be playing at a rave party.", "data_idx": 1830, "number": 0, "label": "disco"} +{"file_name": "train_03437.png", "caption": "Someone is playing a song through speakers. The song contains digital drums with strong loud rhythmic hits rising up in pitch and a kick on every beat. A guitar-like sound is playing an arpeggio melody with other string instruments. This is an amateur recording and of poor sound-quality. This song may be playing at a rave party.", "data_idx": 1830, "number": 1, "label": "disco"} +{"file_name": "train_03438.png", "caption": "The song is instrumental. The song is medium tempo with traditional percussion instruments , bongos, piano accompaniment and groovy bass line. The song is improvisational and energetic. The song is jazz fusion and has poor audio quality.", "data_idx": 1833, "number": 0, "label": "rock"} +{"file_name": "train_03439.png", "caption": "The song is instrumental. The song is medium tempo with traditional percussion instruments , bongos, piano accompaniment and groovy bass line. The song is improvisational and energetic. The song is jazz fusion and has poor audio quality.", "data_idx": 1833, "number": 1, "label": "rock"} +{"file_name": "train_03440.png", "caption": "The song is instrumental. The song is medium tempo with traditional percussion instruments , bongos, piano accompaniment and groovy bass line. The song is improvisational and energetic. The song is jazz fusion and has poor audio quality.", "data_idx": 1833, "number": 2, "label": "rock"} +{"file_name": "train_03441.png", "caption": "The song is instrumental. The song is medium tempo with traditional percussion instruments , bongos, piano accompaniment and groovy bass line. The song is improvisational and energetic. The song is jazz fusion and has poor audio quality.", "data_idx": 1833, "number": 3, "label": "rock"} +{"file_name": "train_03442.png", "caption": "This is the background track of a challenge video. Many sound effects can be heard in procession such as the blood pulse, a metallic impact and clock ticking. Then the piece starts playing with loud synth bass and an electronic drum beat. The aura of the track is unnerving and violent which was the reaction expected in the challenge. Some parts of this track can be used to lift samples for a beat.", "data_idx": 1837, "number": 0, "label": "metal"} +{"file_name": "train_03443.png", "caption": "This is the background track of a challenge video. Many sound effects can be heard in procession such as the blood pulse, a metallic impact and clock ticking. Then the piece starts playing with loud synth bass and an electronic drum beat. The aura of the track is unnerving and violent which was the reaction expected in the challenge. Some parts of this track can be used to lift samples for a beat.", "data_idx": 1837, "number": 1, "label": "metal"} +{"file_name": "train_03444.png", "caption": "The song is an instrumental. The tempo is medium and sometimes glitch out if time, with a banjo being played by a beginner. The song is amateurish in quality and not pleasant. The song audio quality is very poor.", "data_idx": 1838, "number": 0, "label": "classical"} +{"file_name": "train_03445.png", "caption": "The song is an instrumental. The tempo is medium and sometimes glitch out if time, with a banjo being played by a beginner. The song is amateurish in quality and not pleasant. The song audio quality is very poor.", "data_idx": 1838, "number": 1, "label": "classical"} +{"file_name": "train_03446.png", "caption": "The song is an instrumental. The tempo is medium and sometimes glitch out if time, with a banjo being played by a beginner. The song is amateurish in quality and not pleasant. The song audio quality is very poor.", "data_idx": 1838, "number": 2, "label": "classical"} +{"file_name": "train_03447.png", "caption": "The song is an instrumental. The tempo is medium and sometimes glitch out if time, with a banjo being played by a beginner. The song is amateurish in quality and not pleasant. The song audio quality is very poor.", "data_idx": 1838, "number": 3, "label": "classical"} +{"file_name": "train_03448.png", "caption": "This music is an instrumental, the tempo is medium slow with an insistent keyboard /amplified organ harmony, gentle electric guitar lead and ambient nature sounds in the background. The music is soft, mellow , soothing, pensive, meditative, reflective, nostalgic and poignant with the chirping of birds, sound of waves and gentle breeze.", "data_idx": 1841, "number": 0, "label": "classical"} +{"file_name": "train_03449.png", "caption": "This music is an instrumental, the tempo is medium slow with an insistent keyboard /amplified organ harmony, gentle electric guitar lead and ambient nature sounds in the background. The music is soft, mellow , soothing, pensive, meditative, reflective, nostalgic and poignant with the chirping of birds, sound of waves and gentle breeze.", "data_idx": 1841, "number": 1, "label": "classical"} +{"file_name": "train_03450.png", "caption": "This music is an instrumental, the tempo is medium slow with an insistent keyboard /amplified organ harmony, gentle electric guitar lead and ambient nature sounds in the background. The music is soft, mellow , soothing, pensive, meditative, reflective, nostalgic and poignant with the chirping of birds, sound of waves and gentle breeze.", "data_idx": 1841, "number": 2, "label": "classical"} +{"file_name": "train_03451.png", "caption": "This music is an instrumental, the tempo is medium slow with an insistent keyboard /amplified organ harmony, gentle electric guitar lead and ambient nature sounds in the background. The music is soft, mellow , soothing, pensive, meditative, reflective, nostalgic and poignant with the chirping of birds, sound of waves and gentle breeze.", "data_idx": 1841, "number": 3, "label": "classical"} +{"file_name": "train_03452.png", "caption": "This indie rock song features a piano playing the main melody. This is accompanied by percussion playing a simple beat. It seems like the hi-hat is substituted by the tambourine. A distortion guitar plays power chords. The bass follows the root notes of the chords. There are no voices in this song. The song is upbeat and the mood is happy. This song can be used in the end credits of a romantic movie.", "data_idx": 1842, "number": 0, "label": "rock"} +{"file_name": "train_03453.png", "caption": "This indie rock song features a piano playing the main melody. This is accompanied by percussion playing a simple beat. It seems like the hi-hat is substituted by the tambourine. A distortion guitar plays power chords. The bass follows the root notes of the chords. There are no voices in this song. The song is upbeat and the mood is happy. This song can be used in the end credits of a romantic movie.", "data_idx": 1842, "number": 1, "label": "rock"} +{"file_name": "train_03454.png", "caption": "This indie rock song features a piano playing the main melody. This is accompanied by percussion playing a simple beat. It seems like the hi-hat is substituted by the tambourine. A distortion guitar plays power chords. The bass follows the root notes of the chords. There are no voices in this song. The song is upbeat and the mood is happy. This song can be used in the end credits of a romantic movie.", "data_idx": 1842, "number": 2, "label": "rock"} +{"file_name": "train_03455.png", "caption": "This indie rock song features a piano playing the main melody. This is accompanied by percussion playing a simple beat. It seems like the hi-hat is substituted by the tambourine. A distortion guitar plays power chords. The bass follows the root notes of the chords. There are no voices in this song. The song is upbeat and the mood is happy. This song can be used in the end credits of a romantic movie.", "data_idx": 1842, "number": 3, "label": "rock"} +{"file_name": "train_03456.png", "caption": "A female singer sings this jazz scat improvisation. The song is medium fast tempo with jazz drumming, Latin percussion, steady bass line and a piano accompaniment. The song is energetic and highly improvisational. The song is a live jazz performance with ambient room noises and other disturbances.", "data_idx": 1844, "number": 0, "label": "classical"} +{"file_name": "train_03457.png", "caption": "A female singer sings this jazz scat improvisation. The song is medium fast tempo with jazz drumming, Latin percussion, steady bass line and a piano accompaniment. The song is energetic and highly improvisational. The song is a live jazz performance with ambient room noises and other disturbances.", "data_idx": 1844, "number": 1, "label": "classical"} +{"file_name": "train_03458.png", "caption": "A female singer sings this jazz scat improvisation. The song is medium fast tempo with jazz drumming, Latin percussion, steady bass line and a piano accompaniment. The song is energetic and highly improvisational. The song is a live jazz performance with ambient room noises and other disturbances.", "data_idx": 1844, "number": 2, "label": "classical"} +{"file_name": "train_03459.png", "caption": "A female singer sings this jazz scat improvisation. The song is medium fast tempo with jazz drumming, Latin percussion, steady bass line and a piano accompaniment. The song is energetic and highly improvisational. The song is a live jazz performance with ambient room noises and other disturbances.", "data_idx": 1844, "number": 3, "label": "classical"} +{"file_name": "train_03460.png", "caption": "Someone is playing shakers before the acoustic drums come in with a loud fill and a groove with a lot of crash hits. Someone is playing chords on an e-guitar along with a synth plug melody with a lot of reverb. Another e-guitar is playing a melody on top. This song may be playing at a live festival.", "data_idx": 1849, "number": 0, "label": "rock"} +{"file_name": "train_03461.png", "caption": "Someone is playing shakers before the acoustic drums come in with a loud fill and a groove with a lot of crash hits. Someone is playing chords on an e-guitar along with a synth plug melody with a lot of reverb. Another e-guitar is playing a melody on top. This song may be playing at a live festival.", "data_idx": 1849, "number": 1, "label": "rock"} +{"file_name": "train_03462.png", "caption": "Someone is playing shakers before the acoustic drums come in with a loud fill and a groove with a lot of crash hits. Someone is playing chords on an e-guitar along with a synth plug melody with a lot of reverb. Another e-guitar is playing a melody on top. This song may be playing at a live festival.", "data_idx": 1849, "number": 2, "label": "rock"} +{"file_name": "train_03463.png", "caption": "Someone is playing shakers before the acoustic drums come in with a loud fill and a groove with a lot of crash hits. Someone is playing chords on an e-guitar along with a synth plug melody with a lot of reverb. Another e-guitar is playing a melody on top. This song may be playing at a live festival.", "data_idx": 1849, "number": 3, "label": "rock"} +{"file_name": "train_03464.png", "caption": "Swift intellectual music featuring interlocking piano and acoustic guitar arpeggios, a pizzicato string melody, a fast, driving hi-hat, and typing sounds. Good for a presentation on a new technology.", "data_idx": 1850, "number": 0, "label": "reggae"} +{"file_name": "train_03465.png", "caption": "Swift intellectual music featuring interlocking piano and acoustic guitar arpeggios, a pizzicato string melody, a fast, driving hi-hat, and typing sounds. Good for a presentation on a new technology.", "data_idx": 1850, "number": 1, "label": "reggae"} +{"file_name": "train_03466.png", "caption": "Swift intellectual music featuring interlocking piano and acoustic guitar arpeggios, a pizzicato string melody, a fast, driving hi-hat, and typing sounds. Good for a presentation on a new technology.", "data_idx": 1850, "number": 2, "label": "reggae"} +{"file_name": "train_03467.png", "caption": "Swift intellectual music featuring interlocking piano and acoustic guitar arpeggios, a pizzicato string melody, a fast, driving hi-hat, and typing sounds. Good for a presentation on a new technology.", "data_idx": 1850, "number": 3, "label": "reggae"} +{"file_name": "train_03468.png", "caption": "This is an instrumental piece. An electric guitar is playing the melody while another is playing secondary riffs. There is a granular synth holding notes at a high pitch. The overarching atmosphere of this piece is suspenseful. It feels like something big is about to happen that will break the intentionally superficial calmness. This piece would suit perfectly during suspense scenes in a movie soundtrack.", "data_idx": 1851, "number": 0, "label": "hiphop"} +{"file_name": "train_03469.png", "caption": "This is an instrumental piece. An electric guitar is playing the melody while another is playing secondary riffs. There is a granular synth holding notes at a high pitch. The overarching atmosphere of this piece is suspenseful. It feels like something big is about to happen that will break the intentionally superficial calmness. This piece would suit perfectly during suspense scenes in a movie soundtrack.", "data_idx": 1851, "number": 1, "label": "hiphop"} +{"file_name": "train_03470.png", "caption": "This is an instrumental piece. An electric guitar is playing the melody while another is playing secondary riffs. There is a granular synth holding notes at a high pitch. The overarching atmosphere of this piece is suspenseful. It feels like something big is about to happen that will break the intentionally superficial calmness. This piece would suit perfectly during suspense scenes in a movie soundtrack.", "data_idx": 1851, "number": 2, "label": "hiphop"} +{"file_name": "train_03471.png", "caption": "This is an instrumental piece. An electric guitar is playing the melody while another is playing secondary riffs. There is a granular synth holding notes at a high pitch. The overarching atmosphere of this piece is suspenseful. It feels like something big is about to happen that will break the intentionally superficial calmness. This piece would suit perfectly during suspense scenes in a movie soundtrack.", "data_idx": 1851, "number": 3, "label": "hiphop"} +{"file_name": "train_03472.png", "caption": "This music is instrumental. The tempo is medium with a peppy keyboard harmony, groovy bass line, slick drumming and synthesiser arrangements with a hissing or whooshing sound in the background. The song is catchy, groovy, trippy, trance and youthful.", "data_idx": 1852, "number": 0, "label": "reggae"} +{"file_name": "train_03473.png", "caption": "This music is instrumental. The tempo is medium with a peppy keyboard harmony, groovy bass line, slick drumming and synthesiser arrangements with a hissing or whooshing sound in the background. The song is catchy, groovy, trippy, trance and youthful.", "data_idx": 1852, "number": 1, "label": "reggae"} +{"file_name": "train_03474.png", "caption": "This music is instrumental. The tempo is medium with a peppy keyboard harmony, groovy bass line, slick drumming and synthesiser arrangements with a hissing or whooshing sound in the background. The song is catchy, groovy, trippy, trance and youthful.", "data_idx": 1852, "number": 2, "label": "reggae"} +{"file_name": "train_03475.png", "caption": "This music is instrumental. The tempo is medium with a peppy keyboard harmony, groovy bass line, slick drumming and synthesiser arrangements with a hissing or whooshing sound in the background. The song is catchy, groovy, trippy, trance and youthful.", "data_idx": 1852, "number": 3, "label": "reggae"} +{"file_name": "train_03476.png", "caption": "The music is an instrumental gameplay track. The track has sounds of growling monsters, church bells playing, a female crying in pain, chains being pulled, splashing noises, electrical spark buzzes and other disturbances. The music has very poor audio quality.", "data_idx": 1854, "number": 0, "label": "rock"} +{"file_name": "train_03477.png", "caption": "The music is an instrumental gameplay track. The track has sounds of growling monsters, church bells playing, a female crying in pain, chains being pulled, splashing noises, electrical spark buzzes and other disturbances. The music has very poor audio quality.", "data_idx": 1854, "number": 1, "label": "rock"} +{"file_name": "train_03478.png", "caption": "The music is an instrumental gameplay track. The track has sounds of growling monsters, church bells playing, a female crying in pain, chains being pulled, splashing noises, electrical spark buzzes and other disturbances. The music has very poor audio quality.", "data_idx": 1854, "number": 2, "label": "rock"} +{"file_name": "train_03479.png", "caption": "The music is an instrumental gameplay track. The track has sounds of growling monsters, church bells playing, a female crying in pain, chains being pulled, splashing noises, electrical spark buzzes and other disturbances. The music has very poor audio quality.", "data_idx": 1854, "number": 3, "label": "rock"} +{"file_name": "train_03480.png", "caption": "Someone is playing an e-bass along to a backing track that contains a male voice singing with backing vocals that are panned to the left and right side of the speakers. An acoustic drum set is holding a groove along. The bass is almost completely panned to the left side of the speakers.This song may be playing at a dance-competition. This is an amateur recording but of decent quality.", "data_idx": 1855, "number": 0, "label": "metal"} +{"file_name": "train_03481.png", "caption": "Someone is playing an e-bass along to a backing track that contains a male voice singing with backing vocals that are panned to the left and right side of the speakers. An acoustic drum set is holding a groove along. The bass is almost completely panned to the left side of the speakers.This song may be playing at a dance-competition. This is an amateur recording but of decent quality.", "data_idx": 1855, "number": 1, "label": "metal"} +{"file_name": "train_03482.png", "caption": "Someone is playing an e-bass along to a backing track that contains a male voice singing with backing vocals that are panned to the left and right side of the speakers. An acoustic drum set is holding a groove along. The bass is almost completely panned to the left side of the speakers.This song may be playing at a dance-competition. This is an amateur recording but of decent quality.", "data_idx": 1855, "number": 2, "label": "metal"} +{"file_name": "train_03483.png", "caption": "Someone is playing an e-bass along to a backing track that contains a male voice singing with backing vocals that are panned to the left and right side of the speakers. An acoustic drum set is holding a groove along. The bass is almost completely panned to the left side of the speakers.This song may be playing at a dance-competition. This is an amateur recording but of decent quality.", "data_idx": 1855, "number": 3, "label": "metal"} +{"file_name": "train_03484.png", "caption": "A male singer sings cheerful yodelling vocals. The song is fast tempo, with a steady drumming rhythm, groovy bass line, guitar accompaniment and piano playing enthusiastically. The song is cheerful and thoroughly entertaining. The song is a modern pop tune with yodelling to express happiness and free spirit.", "data_idx": 1856, "number": 0, "label": "hiphop"} +{"file_name": "train_03485.png", "caption": "A male singer sings cheerful yodelling vocals. The song is fast tempo, with a steady drumming rhythm, groovy bass line, guitar accompaniment and piano playing enthusiastically. The song is cheerful and thoroughly entertaining. The song is a modern pop tune with yodelling to express happiness and free spirit.", "data_idx": 1856, "number": 1, "label": "hiphop"} +{"file_name": "train_03486.png", "caption": "Someone is playing an e-guitar melody and licks. This is an amateur recording. This song may be playing at home practicing e-guitar.", "data_idx": 1857, "number": 0, "label": "blues"} +{"file_name": "train_03487.png", "caption": "Someone is playing an e-guitar melody and licks. This is an amateur recording. This song may be playing at home practicing e-guitar.", "data_idx": 1857, "number": 1, "label": "blues"} +{"file_name": "train_03488.png", "caption": "Someone is playing an e-guitar melody and licks. This is an amateur recording. This song may be playing at home practicing e-guitar.", "data_idx": 1857, "number": 2, "label": "blues"} +{"file_name": "train_03489.png", "caption": "Someone is playing an e-guitar melody and licks. This is an amateur recording. This song may be playing at home practicing e-guitar.", "data_idx": 1857, "number": 3, "label": "blues"} +{"file_name": "train_03490.png", "caption": "A female vocalist sings this perky pop. The tempo is medium with rhythmic acoustic guitar , groovy bass lines, keyboard accompaniment and enthusiastic drumming. The song is simple, dulcet, fresh, peppy, youthful, vibrant and punchy with sounds of crowd hooting and cheering and talking. This song is a Pop song.", "data_idx": 1858, "number": 0, "label": "pop"} +{"file_name": "train_03491.png", "caption": "A female vocalist sings this perky pop. The tempo is medium with rhythmic acoustic guitar , groovy bass lines, keyboard accompaniment and enthusiastic drumming. The song is simple, dulcet, fresh, peppy, youthful, vibrant and punchy with sounds of crowd hooting and cheering and talking. This song is a Pop song.", "data_idx": 1858, "number": 1, "label": "pop"} +{"file_name": "train_03492.png", "caption": "A female vocalist sings this perky pop. The tempo is medium with rhythmic acoustic guitar , groovy bass lines, keyboard accompaniment and enthusiastic drumming. The song is simple, dulcet, fresh, peppy, youthful, vibrant and punchy with sounds of crowd hooting and cheering and talking. This song is a Pop song.", "data_idx": 1858, "number": 2, "label": "pop"} +{"file_name": "train_03493.png", "caption": "A female vocalist sings this perky pop. The tempo is medium with rhythmic acoustic guitar , groovy bass lines, keyboard accompaniment and enthusiastic drumming. The song is simple, dulcet, fresh, peppy, youthful, vibrant and punchy with sounds of crowd hooting and cheering and talking. This song is a Pop song.", "data_idx": 1858, "number": 3, "label": "pop"} +{"file_name": "train_03494.png", "caption": "This is a tropical, Caribbean style song which has a melody that is played on a steel drum. The song has a very relaxing feel, which makes you feel as if you are on an island somewhere in paradise. The bassline is intricate and the percussion is laid-back.", "data_idx": 1859, "number": 0, "label": "blues"} +{"file_name": "train_03495.png", "caption": "This is a tropical, Caribbean style song which has a melody that is played on a steel drum. The song has a very relaxing feel, which makes you feel as if you are on an island somewhere in paradise. The bassline is intricate and the percussion is laid-back.", "data_idx": 1859, "number": 1, "label": "blues"} +{"file_name": "train_03496.png", "caption": "This is a tropical, Caribbean style song which has a melody that is played on a steel drum. The song has a very relaxing feel, which makes you feel as if you are on an island somewhere in paradise. The bassline is intricate and the percussion is laid-back.", "data_idx": 1859, "number": 2, "label": "blues"} +{"file_name": "train_03497.png", "caption": "This is a tropical, Caribbean style song which has a melody that is played on a steel drum. The song has a very relaxing feel, which makes you feel as if you are on an island somewhere in paradise. The bassline is intricate and the percussion is laid-back.", "data_idx": 1859, "number": 3, "label": "blues"} +{"file_name": "train_03498.png", "caption": "The low quality recording features a breathy, echoing flute melody over resonating arpeggiated piano melody. It is very noisy, in mono and it sounds very muddy as the frequencies in the lower register are clashing with each other.", "data_idx": 1861, "number": 0, "label": "classical"} +{"file_name": "train_03499.png", "caption": "The low quality recording features a breathy, echoing flute melody over resonating arpeggiated piano melody. It is very noisy, in mono and it sounds very muddy as the frequencies in the lower register are clashing with each other.", "data_idx": 1861, "number": 1, "label": "classical"} +{"file_name": "train_03500.png", "caption": "The low quality recording features a breathy, echoing flute melody over resonating arpeggiated piano melody. It is very noisy, in mono and it sounds very muddy as the frequencies in the lower register are clashing with each other.", "data_idx": 1861, "number": 2, "label": "classical"} +{"file_name": "train_03501.png", "caption": "The low quality recording features a breathy, echoing flute melody over resonating arpeggiated piano melody. It is very noisy, in mono and it sounds very muddy as the frequencies in the lower register are clashing with each other.", "data_idx": 1861, "number": 3, "label": "classical"} +{"file_name": "train_03502.png", "caption": "This is an acoustic cover of a pop music piece. There is a boy singing melodically. The chords are being played on the ukulele. The atmosphere of the original piece is emotional, but the characteristics of the ukulele create a chill atmosphere. The piece is in medium tempo. This rendition of the piece could be used in the soundtrack of a high school drama movie/TV series. It could also be playing in the background of a coffee shop.", "data_idx": 1864, "number": 0, "label": "pop"} +{"file_name": "train_03503.png", "caption": "This is an acoustic cover of a pop music piece. There is a boy singing melodically. The chords are being played on the ukulele. The atmosphere of the original piece is emotional, but the characteristics of the ukulele create a chill atmosphere. The piece is in medium tempo. This rendition of the piece could be used in the soundtrack of a high school drama movie/TV series. It could also be playing in the background of a coffee shop.", "data_idx": 1864, "number": 1, "label": "pop"} +{"file_name": "train_03504.png", "caption": "This is an acoustic cover of a pop music piece. There is a boy singing melodically. The chords are being played on the ukulele. The atmosphere of the original piece is emotional, but the characteristics of the ukulele create a chill atmosphere. The piece is in medium tempo. This rendition of the piece could be used in the soundtrack of a high school drama movie/TV series. It could also be playing in the background of a coffee shop.", "data_idx": 1864, "number": 2, "label": "pop"} +{"file_name": "train_03505.png", "caption": "This is an acoustic cover of a pop music piece. There is a boy singing melodically. The chords are being played on the ukulele. The atmosphere of the original piece is emotional, but the characteristics of the ukulele create a chill atmosphere. The piece is in medium tempo. This rendition of the piece could be used in the soundtrack of a high school drama movie/TV series. It could also be playing in the background of a coffee shop.", "data_idx": 1864, "number": 3, "label": "pop"} +{"file_name": "train_03506.png", "caption": "The low quality recording features suspenseful strings and arpeggiated harp playing in the background while haunting boy vocal songs on top of it. At one point the vocal distorts a little bit, making the recording low quality. It sounds intense and suspenseful - like something you would hear in thriller movies.", "data_idx": 1865, "number": 0, "label": "classical"} +{"file_name": "train_03507.png", "caption": "The low quality recording features suspenseful strings and arpeggiated harp playing in the background while haunting boy vocal songs on top of it. At one point the vocal distorts a little bit, making the recording low quality. It sounds intense and suspenseful - like something you would hear in thriller movies.", "data_idx": 1865, "number": 1, "label": "classical"} +{"file_name": "train_03508.png", "caption": "The low quality recording features suspenseful strings and arpeggiated harp playing in the background while haunting boy vocal songs on top of it. At one point the vocal distorts a little bit, making the recording low quality. It sounds intense and suspenseful - like something you would hear in thriller movies.", "data_idx": 1865, "number": 2, "label": "classical"} +{"file_name": "train_03509.png", "caption": "The low quality recording features suspenseful strings and arpeggiated harp playing in the background while haunting boy vocal songs on top of it. At one point the vocal distorts a little bit, making the recording low quality. It sounds intense and suspenseful - like something you would hear in thriller movies.", "data_idx": 1865, "number": 3, "label": "classical"} +{"file_name": "train_03510.png", "caption": "This song is an electric guitar instrumental. The tempo is medium with two amplified guitars playing the lead and harmony respectively with steady drumming. The music is a simple, rhythmic, smooth and engaging Rock instrumental;", "data_idx": 1867, "number": 0, "label": "metal"} +{"file_name": "train_03511.png", "caption": "This song is an electric guitar instrumental. The tempo is medium with two amplified guitars playing the lead and harmony respectively with steady drumming. The music is a simple, rhythmic, smooth and engaging Rock instrumental;", "data_idx": 1867, "number": 1, "label": "metal"} +{"file_name": "train_03512.png", "caption": "This song is an electric guitar instrumental. The tempo is medium with two amplified guitars playing the lead and harmony respectively with steady drumming. The music is a simple, rhythmic, smooth and engaging Rock instrumental;", "data_idx": 1867, "number": 2, "label": "metal"} +{"file_name": "train_03513.png", "caption": "This song is an electric guitar instrumental. The tempo is medium with two amplified guitars playing the lead and harmony respectively with steady drumming. The music is a simple, rhythmic, smooth and engaging Rock instrumental;", "data_idx": 1867, "number": 3, "label": "metal"} +{"file_name": "train_03514.png", "caption": "The song is an instrumental. The song is slow tempo with a fiddler plays a rhythmic melody accompanied by a guitar accompaniment and other percussive instruments. The song is spirited and energetic. The song has country or Celtic influences. The song has average quality audio.", "data_idx": 1868, "number": 0, "label": "classical"} +{"file_name": "train_03515.png", "caption": "The song is an instrumental. The song is slow tempo with a fiddler plays a rhythmic melody accompanied by a guitar accompaniment and other percussive instruments. The song is spirited and energetic. The song has country or Celtic influences. The song has average quality audio.", "data_idx": 1868, "number": 1, "label": "classical"} +{"file_name": "train_03516.png", "caption": "The song is an instrumental. The song is slow tempo with a fiddler plays a rhythmic melody accompanied by a guitar accompaniment and other percussive instruments. The song is spirited and energetic. The song has country or Celtic influences. The song has average quality audio.", "data_idx": 1868, "number": 2, "label": "classical"} +{"file_name": "train_03517.png", "caption": "The song is an instrumental. The song is slow tempo with a fiddler plays a rhythmic melody accompanied by a guitar accompaniment and other percussive instruments. The song is spirited and energetic. The song has country or Celtic influences. The song has average quality audio.", "data_idx": 1868, "number": 3, "label": "classical"} +{"file_name": "train_03518.png", "caption": "The Rock instrumental features a passionate electric guitar solo melody played over punchy kick and snare hits, shimmering hi hats, groovy bass guitar, wooden bouncy percussion and electric guitar, mellow feedback, located in the left channel of the stereo image. It sounds groovy, addictive and passionate, thanks to that solo melody.", "data_idx": 1869, "number": 0, "label": "rock"} +{"file_name": "train_03519.png", "caption": "The Rock instrumental features a passionate electric guitar solo melody played over punchy kick and snare hits, shimmering hi hats, groovy bass guitar, wooden bouncy percussion and electric guitar, mellow feedback, located in the left channel of the stereo image. It sounds groovy, addictive and passionate, thanks to that solo melody.", "data_idx": 1869, "number": 1, "label": "rock"} +{"file_name": "train_03520.png", "caption": "The Rock instrumental features a passionate electric guitar solo melody played over punchy kick and snare hits, shimmering hi hats, groovy bass guitar, wooden bouncy percussion and electric guitar, mellow feedback, located in the left channel of the stereo image. It sounds groovy, addictive and passionate, thanks to that solo melody.", "data_idx": 1869, "number": 2, "label": "rock"} +{"file_name": "train_03521.png", "caption": "The Rock instrumental features a passionate electric guitar solo melody played over punchy kick and snare hits, shimmering hi hats, groovy bass guitar, wooden bouncy percussion and electric guitar, mellow feedback, located in the left channel of the stereo image. It sounds groovy, addictive and passionate, thanks to that solo melody.", "data_idx": 1869, "number": 3, "label": "rock"} +{"file_name": "train_03522.png", "caption": "This music clip is an Orchestral piece. There is a trumpet playing a lively solo to the accompaniment of an animated, vigorous Violin symphony and a church bell at the end. The music is lively, spirited, vivacious, happy and cheerful with the violins, cello and viola adding a happy, cheerful vibe to this Classical Instrumental.", "data_idx": 1870, "number": 0, "label": "classical"} +{"file_name": "train_03523.png", "caption": "This music clip is an Orchestral piece. There is a trumpet playing a lively solo to the accompaniment of an animated, vigorous Violin symphony and a church bell at the end. The music is lively, spirited, vivacious, happy and cheerful with the violins, cello and viola adding a happy, cheerful vibe to this Classical Instrumental.", "data_idx": 1870, "number": 1, "label": "classical"} +{"file_name": "train_03524.png", "caption": "This music clip is an Orchestral piece. There is a trumpet playing a lively solo to the accompaniment of an animated, vigorous Violin symphony and a church bell at the end. The music is lively, spirited, vivacious, happy and cheerful with the violins, cello and viola adding a happy, cheerful vibe to this Classical Instrumental.", "data_idx": 1870, "number": 2, "label": "classical"} +{"file_name": "train_03525.png", "caption": "This music clip is an Orchestral piece. There is a trumpet playing a lively solo to the accompaniment of an animated, vigorous Violin symphony and a church bell at the end. The music is lively, spirited, vivacious, happy and cheerful with the violins, cello and viola adding a happy, cheerful vibe to this Classical Instrumental.", "data_idx": 1870, "number": 3, "label": "classical"} +{"file_name": "train_03526.png", "caption": "This is a DJ performance. The background track has a male singing upfront with a mellow guitar tune and groovy latin drums with Caribbean influences overall. The DJ plays a male vocal sample and sound effects over this track. The atmosphere is danceable. It is a low-resolution recording.", "data_idx": 1872, "number": 0, "label": "hiphop"} +{"file_name": "train_03527.png", "caption": "This is a DJ performance. The background track has a male singing upfront with a mellow guitar tune and groovy latin drums with Caribbean influences overall. The DJ plays a male vocal sample and sound effects over this track. The atmosphere is danceable. It is a low-resolution recording.", "data_idx": 1872, "number": 1, "label": "hiphop"} +{"file_name": "train_03528.png", "caption": "This is a DJ performance. The background track has a male singing upfront with a mellow guitar tune and groovy latin drums with Caribbean influences overall. The DJ plays a male vocal sample and sound effects over this track. The atmosphere is danceable. It is a low-resolution recording.", "data_idx": 1872, "number": 2, "label": "hiphop"} +{"file_name": "train_03529.png", "caption": "This is a DJ performance. The background track has a male singing upfront with a mellow guitar tune and groovy latin drums with Caribbean influences overall. The DJ plays a male vocal sample and sound effects over this track. The atmosphere is danceable. It is a low-resolution recording.", "data_idx": 1872, "number": 3, "label": "hiphop"} +{"file_name": "train_03530.png", "caption": "An acoustic drumset plays a rock groove along with a bassline building the foundation of the song. Someone is playing a solo melody on an e-guitar. This recording is of poor quality. This song may be playing at a live concert.", "data_idx": 1875, "number": 0, "label": "classical"} +{"file_name": "train_03531.png", "caption": "An acoustic drumset plays a rock groove along with a bassline building the foundation of the song. Someone is playing a solo melody on an e-guitar. This recording is of poor quality. This song may be playing at a live concert.", "data_idx": 1875, "number": 1, "label": "classical"} +{"file_name": "train_03532.png", "caption": "An acoustic drumset plays a rock groove along with a bassline building the foundation of the song. Someone is playing a solo melody on an e-guitar. This recording is of poor quality. This song may be playing at a live concert.", "data_idx": 1875, "number": 2, "label": "classical"} +{"file_name": "train_03533.png", "caption": "An acoustic drumset plays a rock groove along with a bassline building the foundation of the song. Someone is playing a solo melody on an e-guitar. This recording is of poor quality. This song may be playing at a live concert.", "data_idx": 1875, "number": 3, "label": "classical"} +{"file_name": "train_03534.png", "caption": "This is a traditional middle eastern type of song with traditional singing that involves vocal modulation. The percussion is simple and encourages dancing. The three men sing in unison and there's an intermittent chant. They repeat the same phrase like a refrain.", "data_idx": 1879, "number": 0, "label": "disco"} +{"file_name": "train_03535.png", "caption": "This is a traditional middle eastern type of song with traditional singing that involves vocal modulation. The percussion is simple and encourages dancing. The three men sing in unison and there's an intermittent chant. They repeat the same phrase like a refrain.", "data_idx": 1879, "number": 1, "label": "disco"} +{"file_name": "train_03536.png", "caption": "This is a traditional middle eastern type of song with traditional singing that involves vocal modulation. The percussion is simple and encourages dancing. The three men sing in unison and there's an intermittent chant. They repeat the same phrase like a refrain.", "data_idx": 1879, "number": 2, "label": "disco"} +{"file_name": "train_03537.png", "caption": "This is a traditional middle eastern type of song with traditional singing that involves vocal modulation. The percussion is simple and encourages dancing. The three men sing in unison and there's an intermittent chant. They repeat the same phrase like a refrain.", "data_idx": 1879, "number": 3, "label": "disco"} +{"file_name": "train_03538.png", "caption": "An acoustic drum is playing a reggae groove with a rim shot as a snare sound and shakers/tambourine in the background. An e-bass is playing a bassline accompanied by a clean e-guitar playing the same melody. A piano is playing short chords on the backbeat. Male voices are singing, sounding relaxed and joyful. This song may be playing at a reggae festival.", "data_idx": 1880, "number": 0, "label": "reggae"} +{"file_name": "train_03539.png", "caption": "An acoustic drum is playing a reggae groove with a rim shot as a snare sound and shakers/tambourine in the background. An e-bass is playing a bassline accompanied by a clean e-guitar playing the same melody. A piano is playing short chords on the backbeat. Male voices are singing, sounding relaxed and joyful. This song may be playing at a reggae festival.", "data_idx": 1880, "number": 1, "label": "reggae"} +{"file_name": "train_03540.png", "caption": "A male vocalist sings this passionate rap. The tempo is medium with keyboard harmony, slick drumming, funky bass lines , sound of chimes and synthesiser arrangements. The song is emotional, passionate, emphatic, persuasive, youthful, impactful and rhythmic chanting. The song is a contemporary Hip-Hop/RAo.", "data_idx": 1882, "number": 0, "label": "hiphop"} +{"file_name": "train_03541.png", "caption": "A male vocalist sings this passionate rap. The tempo is medium with keyboard harmony, slick drumming, funky bass lines , sound of chimes and synthesiser arrangements. The song is emotional, passionate, emphatic, persuasive, youthful, impactful and rhythmic chanting. The song is a contemporary Hip-Hop/RAo.", "data_idx": 1882, "number": 1, "label": "hiphop"} +{"file_name": "train_03542.png", "caption": "A male vocalist sings this passionate rap. The tempo is medium with keyboard harmony, slick drumming, funky bass lines , sound of chimes and synthesiser arrangements. The song is emotional, passionate, emphatic, persuasive, youthful, impactful and rhythmic chanting. The song is a contemporary Hip-Hop/RAo.", "data_idx": 1882, "number": 2, "label": "hiphop"} +{"file_name": "train_03543.png", "caption": "A male vocalist sings this passionate rap. The tempo is medium with keyboard harmony, slick drumming, funky bass lines , sound of chimes and synthesiser arrangements. The song is emotional, passionate, emphatic, persuasive, youthful, impactful and rhythmic chanting. The song is a contemporary Hip-Hop/RAo.", "data_idx": 1882, "number": 3, "label": "hiphop"} +{"file_name": "train_03544.png", "caption": "This music is video game background music. The tempo is fast with aggressive synth articulation and electronic sounds like shooting and crashing . There is also a superimposed sound of a toy pig grunting incessantly with a man talking in the background.", "data_idx": 1883, "number": 0, "label": "hiphop"} +{"file_name": "train_03545.png", "caption": "This music is video game background music. The tempo is fast with aggressive synth articulation and electronic sounds like shooting and crashing . There is also a superimposed sound of a toy pig grunting incessantly with a man talking in the background.", "data_idx": 1883, "number": 1, "label": "hiphop"} +{"file_name": "train_03546.png", "caption": "This is a drum & bass piece. Fast-paced electronic drums and electronic percussion are laying the rhythmic foundation of the piece. There is a constantly revolving synth bass sound while a gentle ambient synth can be heard adding texture. The piece is danceable. It could be played at nightclubs and also could prove useful for DJ setlists.", "data_idx": 1884, "number": 0, "label": "reggae"} +{"file_name": "train_03547.png", "caption": "This is a drum & bass piece. Fast-paced electronic drums and electronic percussion are laying the rhythmic foundation of the piece. There is a constantly revolving synth bass sound while a gentle ambient synth can be heard adding texture. The piece is danceable. It could be played at nightclubs and also could prove useful for DJ setlists.", "data_idx": 1884, "number": 1, "label": "reggae"} +{"file_name": "train_03548.png", "caption": "This is a drum & bass piece. Fast-paced electronic drums and electronic percussion are laying the rhythmic foundation of the piece. There is a constantly revolving synth bass sound while a gentle ambient synth can be heard adding texture. The piece is danceable. It could be played at nightclubs and also could prove useful for DJ setlists.", "data_idx": 1884, "number": 2, "label": "reggae"} +{"file_name": "train_03549.png", "caption": "This is a drum & bass piece. Fast-paced electronic drums and electronic percussion are laying the rhythmic foundation of the piece. There is a constantly revolving synth bass sound while a gentle ambient synth can be heard adding texture. The piece is danceable. It could be played at nightclubs and also could prove useful for DJ setlists.", "data_idx": 1884, "number": 3, "label": "reggae"} +{"file_name": "train_03550.png", "caption": "The low quality recording features a background sound ambience and atmosphere of a video game that consists of clothes movement, loud wind, exhale, background industrial impacts, metallic impact and wooden impact sound effects. It sounds like an action act, judging by the exhale and some metallic and wooden impacts.", "data_idx": 1891, "number": 0, "label": "classical"} +{"file_name": "train_03551.png", "caption": "The low quality recording features a background sound ambience and atmosphere of a video game that consists of clothes movement, loud wind, exhale, background industrial impacts, metallic impact and wooden impact sound effects. It sounds like an action act, judging by the exhale and some metallic and wooden impacts.", "data_idx": 1891, "number": 1, "label": "classical"} +{"file_name": "train_03552.png", "caption": "This is an electronic music piece. There is a high-pitched synth and stabbing strings in the melodic structure. An occasional vocal sample can be heard adding a haunting texture. There is a loud electronic drum beat in the rhythmic background. The atmosphere is unnerving and filled with terror. This piece could be used in a horror movie or a horror video game.", "data_idx": 1892, "number": 0, "label": "hiphop"} +{"file_name": "train_03553.png", "caption": "This is an electronic music piece. There is a high-pitched synth and stabbing strings in the melodic structure. An occasional vocal sample can be heard adding a haunting texture. There is a loud electronic drum beat in the rhythmic background. The atmosphere is unnerving and filled with terror. This piece could be used in a horror movie or a horror video game.", "data_idx": 1892, "number": 1, "label": "hiphop"} +{"file_name": "train_03554.png", "caption": "This is an electronic music piece. There is a high-pitched synth and stabbing strings in the melodic structure. An occasional vocal sample can be heard adding a haunting texture. There is a loud electronic drum beat in the rhythmic background. The atmosphere is unnerving and filled with terror. This piece could be used in a horror movie or a horror video game.", "data_idx": 1892, "number": 2, "label": "hiphop"} +{"file_name": "train_03555.png", "caption": "This is an electronic music piece. There is a high-pitched synth and stabbing strings in the melodic structure. An occasional vocal sample can be heard adding a haunting texture. There is a loud electronic drum beat in the rhythmic background. The atmosphere is unnerving and filled with terror. This piece could be used in a horror movie or a horror video game.", "data_idx": 1892, "number": 3, "label": "hiphop"} +{"file_name": "train_03556.png", "caption": "The song sounds epic and is fully orchestrated with a string section; brass section; a male choir in the background, fast timpani hits and strings playing a melody. When the song stops, a door knocking sound can be heard along with a short video-game music sequence that does not belong to the previous song. The first song may be playing in a movie trailer.", "data_idx": 1894, "number": 0, "label": "hiphop"} +{"file_name": "train_03557.png", "caption": "The song sounds epic and is fully orchestrated with a string section; brass section; a male choir in the background, fast timpani hits and strings playing a melody. When the song stops, a door knocking sound can be heard along with a short video-game music sequence that does not belong to the previous song. The first song may be playing in a movie trailer.", "data_idx": 1894, "number": 1, "label": "hiphop"} +{"file_name": "train_03558.png", "caption": "The song sounds epic and is fully orchestrated with a string section; brass section; a male choir in the background, fast timpani hits and strings playing a melody. When the song stops, a door knocking sound can be heard along with a short video-game music sequence that does not belong to the previous song. The first song may be playing in a movie trailer.", "data_idx": 1894, "number": 2, "label": "hiphop"} +{"file_name": "train_03559.png", "caption": "The song sounds epic and is fully orchestrated with a string section; brass section; a male choir in the background, fast timpani hits and strings playing a melody. When the song stops, a door knocking sound can be heard along with a short video-game music sequence that does not belong to the previous song. The first song may be playing in a movie trailer.", "data_idx": 1894, "number": 3, "label": "hiphop"} +{"file_name": "train_03560.png", "caption": "This song is sung by a female choir and then a single male voice along with the melody of an e-piano. In the background someone is playing lower tuned percussion and some chimes and wooden sounds. This song may be playing at a band rehearsal.", "data_idx": 1898, "number": 0, "label": "rock"} +{"file_name": "train_03561.png", "caption": "This song is sung by a female choir and then a single male voice along with the melody of an e-piano. In the background someone is playing lower tuned percussion and some chimes and wooden sounds. This song may be playing at a band rehearsal.", "data_idx": 1898, "number": 1, "label": "rock"} +{"file_name": "train_03562.png", "caption": "The low quality recording features an electro song that consists of acid aggressive synth melody, repetitive synth lead melody, boomy 808 bass, claps and shimmering hi-hats. There is a sizzling riser in the first section of the loop. It sounds energetic and like something you would hear in an underground club.", "data_idx": 1899, "number": 0, "label": "hiphop"} +{"file_name": "train_03563.png", "caption": "The low quality recording features an electro song that consists of acid aggressive synth melody, repetitive synth lead melody, boomy 808 bass, claps and shimmering hi-hats. There is a sizzling riser in the first section of the loop. It sounds energetic and like something you would hear in an underground club.", "data_idx": 1899, "number": 1, "label": "hiphop"} +{"file_name": "train_03564.png", "caption": "The low quality recording features an electro song that consists of acid aggressive synth melody, repetitive synth lead melody, boomy 808 bass, claps and shimmering hi-hats. There is a sizzling riser in the first section of the loop. It sounds energetic and like something you would hear in an underground club.", "data_idx": 1899, "number": 2, "label": "hiphop"} +{"file_name": "train_03565.png", "caption": "The low quality recording features an electro song that consists of acid aggressive synth melody, repetitive synth lead melody, boomy 808 bass, claps and shimmering hi-hats. There is a sizzling riser in the first section of the loop. It sounds energetic and like something you would hear in an underground club.", "data_idx": 1899, "number": 3, "label": "hiphop"} +{"file_name": "train_03566.png", "caption": "This track features a cacophony of burping and farting sounds which are used in an instrumental manner to make up a Christmas jingle. There's a bell in the background and the sound of sleds and wings flapping.", "data_idx": 1902, "number": 0, "label": "hiphop"} +{"file_name": "train_03567.png", "caption": "This track features a cacophony of burping and farting sounds which are used in an instrumental manner to make up a Christmas jingle. There's a bell in the background and the sound of sleds and wings flapping.", "data_idx": 1902, "number": 1, "label": "hiphop"} +{"file_name": "train_03568.png", "caption": "EDM music with a four on the floor kick pattern holding down the dance beat. The vocalist is female and there are female fans screaming in the background. Overall, the music is low fidelity, as there is a fast sweeping resonant filter affecting the full mix and muffling it.", "data_idx": 1904, "number": 0, "label": "reggae"} +{"file_name": "train_03569.png", "caption": "EDM music with a four on the floor kick pattern holding down the dance beat. The vocalist is female and there are female fans screaming in the background. Overall, the music is low fidelity, as there is a fast sweeping resonant filter affecting the full mix and muffling it.", "data_idx": 1904, "number": 1, "label": "reggae"} +{"file_name": "train_03570.png", "caption": "EDM music with a four on the floor kick pattern holding down the dance beat. The vocalist is female and there are female fans screaming in the background. Overall, the music is low fidelity, as there is a fast sweeping resonant filter affecting the full mix and muffling it.", "data_idx": 1904, "number": 2, "label": "reggae"} +{"file_name": "train_03571.png", "caption": "EDM music with a four on the floor kick pattern holding down the dance beat. The vocalist is female and there are female fans screaming in the background. Overall, the music is low fidelity, as there is a fast sweeping resonant filter affecting the full mix and muffling it.", "data_idx": 1904, "number": 3, "label": "reggae"} +{"file_name": "train_03572.png", "caption": "This clip is an amateur recording with very muffled audio. The song sounds like a lively chant, with women giggling, people talking and a booming , echoing voice that sounds like an announcement.", "data_idx": 1906, "number": 0, "label": "rock"} +{"file_name": "train_03573.png", "caption": "This clip is an amateur recording with very muffled audio. The song sounds like a lively chant, with women giggling, people talking and a booming , echoing voice that sounds like an announcement.", "data_idx": 1906, "number": 1, "label": "rock"} +{"file_name": "train_03574.png", "caption": "This clip is an amateur recording with very muffled audio. The song sounds like a lively chant, with women giggling, people talking and a booming , echoing voice that sounds like an announcement.", "data_idx": 1906, "number": 2, "label": "rock"} +{"file_name": "train_03575.png", "caption": "This clip is an amateur recording with very muffled audio. The song sounds like a lively chant, with women giggling, people talking and a booming , echoing voice that sounds like an announcement.", "data_idx": 1906, "number": 3, "label": "rock"} +{"file_name": "train_03576.png", "caption": "The low quality recording features a live performance of a metal song and it consists of screaming male vocal singing over energetic, muffled instrumental. The recording is crushed, loud, distorted and mono - everything that the metal live performance should be.", "data_idx": 1907, "number": 0, "label": "classical"} +{"file_name": "train_03577.png", "caption": "The low quality recording features a live performance of a metal song and it consists of screaming male vocal singing over energetic, muffled instrumental. The recording is crushed, loud, distorted and mono - everything that the metal live performance should be.", "data_idx": 1907, "number": 1, "label": "classical"} +{"file_name": "train_03578.png", "caption": "This clip features a percussion based song with no other instruments. The focus is on the kick drum and snare with minimal use of cymbals. Hand claps are played along with the snare. The percussion beat is random. Sounds of snipping are played. Crunchy sounds are played in this clip. There is the sound of sizzling in this clip.", "data_idx": 1908, "number": 0, "label": "hiphop"} +{"file_name": "train_03579.png", "caption": "This clip features a percussion based song with no other instruments. The focus is on the kick drum and snare with minimal use of cymbals. Hand claps are played along with the snare. The percussion beat is random. Sounds of snipping are played. Crunchy sounds are played in this clip. There is the sound of sizzling in this clip.", "data_idx": 1908, "number": 1, "label": "hiphop"} +{"file_name": "train_03580.png", "caption": "This clip features the sound of an alarm clock. A female voice is also featured. The voice is irritated at the sound of the alarm. The device is being hit in an attempt to silence it. Only at the beginning of the clip, there is the sound of music fading away. There are no other instruments featured in this clip. The quality of audio is low.", "data_idx": 1911, "number": 0, "label": "hiphop"} +{"file_name": "train_03581.png", "caption": "This clip features the sound of an alarm clock. A female voice is also featured. The voice is irritated at the sound of the alarm. The device is being hit in an attempt to silence it. Only at the beginning of the clip, there is the sound of music fading away. There are no other instruments featured in this clip. The quality of audio is low.", "data_idx": 1911, "number": 1, "label": "hiphop"} +{"file_name": "train_03582.png", "caption": "A e-guitar with a chorus effect is playing a simple, repeating chord progression while another guitar is playing a bassline over it that sounds more like a countermelody. On top of that, slightly panned to the right side of the speakers, a xylophone is playing single notes with a lot of reverb. This song sounds repetitive and relaxing and soft. This song may be playing with earphones waiting for the bus.", "data_idx": 1912, "number": 0, "label": "blues"} +{"file_name": "train_03583.png", "caption": "A e-guitar with a chorus effect is playing a simple, repeating chord progression while another guitar is playing a bassline over it that sounds more like a countermelody. On top of that, slightly panned to the right side of the speakers, a xylophone is playing single notes with a lot of reverb. This song sounds repetitive and relaxing and soft. This song may be playing with earphones waiting for the bus.", "data_idx": 1912, "number": 1, "label": "blues"} +{"file_name": "train_03584.png", "caption": "A e-guitar with a chorus effect is playing a simple, repeating chord progression while another guitar is playing a bassline over it that sounds more like a countermelody. On top of that, slightly panned to the right side of the speakers, a xylophone is playing single notes with a lot of reverb. This song sounds repetitive and relaxing and soft. This song may be playing with earphones waiting for the bus.", "data_idx": 1912, "number": 2, "label": "blues"} +{"file_name": "train_03585.png", "caption": "A e-guitar with a chorus effect is playing a simple, repeating chord progression while another guitar is playing a bassline over it that sounds more like a countermelody. On top of that, slightly panned to the right side of the speakers, a xylophone is playing single notes with a lot of reverb. This song sounds repetitive and relaxing and soft. This song may be playing with earphones waiting for the bus.", "data_idx": 1912, "number": 3, "label": "blues"} +{"file_name": "train_03586.png", "caption": "An acoustic drum is played together with an e-bass. They both repeat the same pattern. The ride is panned to the right side of the speakers. Three e-guitars are playing. One is strumming the same chords as the bassline while another one is being strummed with a mute technique playing a reggae rhythm. The third guitar is playing a solo melody on top and is panned to the right side of the speakers. This song may be playing at a bar.", "data_idx": 1913, "number": 0, "label": "rock"} +{"file_name": "train_03587.png", "caption": "An acoustic drum is played together with an e-bass. They both repeat the same pattern. The ride is panned to the right side of the speakers. Three e-guitars are playing. One is strumming the same chords as the bassline while another one is being strummed with a mute technique playing a reggae rhythm. The third guitar is playing a solo melody on top and is panned to the right side of the speakers. This song may be playing at a bar.", "data_idx": 1913, "number": 1, "label": "rock"} +{"file_name": "train_03588.png", "caption": "An acoustic drum is played together with an e-bass. They both repeat the same pattern. The ride is panned to the right side of the speakers. Three e-guitars are playing. One is strumming the same chords as the bassline while another one is being strummed with a mute technique playing a reggae rhythm. The third guitar is playing a solo melody on top and is panned to the right side of the speakers. This song may be playing at a bar.", "data_idx": 1913, "number": 2, "label": "rock"} +{"file_name": "train_03589.png", "caption": "An acoustic drum is played together with an e-bass. They both repeat the same pattern. The ride is panned to the right side of the speakers. Three e-guitars are playing. One is strumming the same chords as the bassline while another one is being strummed with a mute technique playing a reggae rhythm. The third guitar is playing a solo melody on top and is panned to the right side of the speakers. This song may be playing at a bar.", "data_idx": 1913, "number": 3, "label": "rock"} +{"file_name": "train_03590.png", "caption": "The low quality recording features a manically arpeggiated electric guitar melody and rock playback instrumental playing in the background. The recording is very noisy and it was recorded in mono - probably with a phone.", "data_idx": 1914, "number": 0, "label": "metal"} +{"file_name": "train_03591.png", "caption": "The low quality recording features a manically arpeggiated electric guitar melody and rock playback instrumental playing in the background. The recording is very noisy and it was recorded in mono - probably with a phone.", "data_idx": 1914, "number": 1, "label": "metal"} +{"file_name": "train_03592.png", "caption": "The low quality recording features a manically arpeggiated electric guitar melody and rock playback instrumental playing in the background. The recording is very noisy and it was recorded in mono - probably with a phone.", "data_idx": 1914, "number": 2, "label": "metal"} +{"file_name": "train_03593.png", "caption": "The low quality recording features a manically arpeggiated electric guitar melody and rock playback instrumental playing in the background. The recording is very noisy and it was recorded in mono - probably with a phone.", "data_idx": 1914, "number": 3, "label": "metal"} +{"file_name": "train_03594.png", "caption": "This is a house music piece. It has a fuzzy synth lead playing the main melody while there is a medium-to-high pitch pad playing an arpeggio. There is a fuzzy synth bass in the background. A loud electronic drum beat provides the rhythmic background. There is a constant crowd cheering effect giving the impression of the piece being performed live. The atmosphere is energetic. This piece can be played at nightclubs and EDM venues.", "data_idx": 1915, "number": 0, "label": "disco"} +{"file_name": "train_03595.png", "caption": "This is a house music piece. It has a fuzzy synth lead playing the main melody while there is a medium-to-high pitch pad playing an arpeggio. There is a fuzzy synth bass in the background. A loud electronic drum beat provides the rhythmic background. There is a constant crowd cheering effect giving the impression of the piece being performed live. The atmosphere is energetic. This piece can be played at nightclubs and EDM venues.", "data_idx": 1915, "number": 1, "label": "disco"} +{"file_name": "train_03596.png", "caption": "This is a house music piece. It has a fuzzy synth lead playing the main melody while there is a medium-to-high pitch pad playing an arpeggio. There is a fuzzy synth bass in the background. A loud electronic drum beat provides the rhythmic background. There is a constant crowd cheering effect giving the impression of the piece being performed live. The atmosphere is energetic. This piece can be played at nightclubs and EDM venues.", "data_idx": 1915, "number": 2, "label": "disco"} +{"file_name": "train_03597.png", "caption": "This is a house music piece. It has a fuzzy synth lead playing the main melody while there is a medium-to-high pitch pad playing an arpeggio. There is a fuzzy synth bass in the background. A loud electronic drum beat provides the rhythmic background. There is a constant crowd cheering effect giving the impression of the piece being performed live. The atmosphere is energetic. This piece can be played at nightclubs and EDM venues.", "data_idx": 1915, "number": 3, "label": "disco"} +{"file_name": "train_03598.png", "caption": "Electronic dance music features a repeating melody played by an electronic sound. The beat of the music is being driven by a kick drum played on every beat, a hi-hat played four times every beat and some sampled claps played on beats two and four. In the background one can hear an altered female voice singing a short melody. Another electronic/synth sound can be heard in the background having sparse interventions. The music is meant to be danced to.", "data_idx": 1922, "number": 0, "label": "metal"} +{"file_name": "train_03599.png", "caption": "Electronic dance music features a repeating melody played by an electronic sound. The beat of the music is being driven by a kick drum played on every beat, a hi-hat played four times every beat and some sampled claps played on beats two and four. In the background one can hear an altered female voice singing a short melody. Another electronic/synth sound can be heard in the background having sparse interventions. The music is meant to be danced to.", "data_idx": 1922, "number": 1, "label": "metal"} +{"file_name": "train_03600.png", "caption": "This song contains a bass-melody repeating itself like an arpeggio. On top of that you can hear a digital string sound in the mid range playing a simple melody along with short female choir sequences that also sound digital. In the background you can hear explosions that do not belong to the song itself. This is an amateur recording and of poor audio-quality. This song may be playing in an arcade/action game.", "data_idx": 1924, "number": 0, "label": "hiphop"} +{"file_name": "train_03601.png", "caption": "This song contains a bass-melody repeating itself like an arpeggio. On top of that you can hear a digital string sound in the mid range playing a simple melody along with short female choir sequences that also sound digital. In the background you can hear explosions that do not belong to the song itself. This is an amateur recording and of poor audio-quality. This song may be playing in an arcade/action game.", "data_idx": 1924, "number": 1, "label": "hiphop"} +{"file_name": "train_03602.png", "caption": "This song contains a bass-melody repeating itself like an arpeggio. On top of that you can hear a digital string sound in the mid range playing a simple melody along with short female choir sequences that also sound digital. In the background you can hear explosions that do not belong to the song itself. This is an amateur recording and of poor audio-quality. This song may be playing in an arcade/action game.", "data_idx": 1924, "number": 2, "label": "hiphop"} +{"file_name": "train_03603.png", "caption": "This song contains a bass-melody repeating itself like an arpeggio. On top of that you can hear a digital string sound in the mid range playing a simple melody along with short female choir sequences that also sound digital. In the background you can hear explosions that do not belong to the song itself. This is an amateur recording and of poor audio-quality. This song may be playing in an arcade/action game.", "data_idx": 1924, "number": 3, "label": "hiphop"} +{"file_name": "train_03604.png", "caption": "This is a medieval sounding music piece. There is a virtual harp playing the main melody while strings are holding the root notes of the tune. The use of these sounds induces a story-telling atmosphere similar to a bard's song. This piece would suit well with historical/adventure movies or video games. It could also be used in the background at a theater play.", "data_idx": 1927, "number": 0, "label": "classical"} +{"file_name": "train_03605.png", "caption": "This is a medieval sounding music piece. There is a virtual harp playing the main melody while strings are holding the root notes of the tune. The use of these sounds induces a story-telling atmosphere similar to a bard's song. This piece would suit well with historical/adventure movies or video games. It could also be used in the background at a theater play.", "data_idx": 1927, "number": 1, "label": "classical"} +{"file_name": "train_03606.png", "caption": "This is a medieval sounding music piece. There is a virtual harp playing the main melody while strings are holding the root notes of the tune. The use of these sounds induces a story-telling atmosphere similar to a bard's song. This piece would suit well with historical/adventure movies or video games. It could also be used in the background at a theater play.", "data_idx": 1927, "number": 2, "label": "classical"} +{"file_name": "train_03607.png", "caption": "This is a medieval sounding music piece. There is a virtual harp playing the main melody while strings are holding the root notes of the tune. The use of these sounds induces a story-telling atmosphere similar to a bard's song. This piece would suit well with historical/adventure movies or video games. It could also be used in the background at a theater play.", "data_idx": 1927, "number": 3, "label": "classical"} +{"file_name": "train_03608.png", "caption": "This song contains e-guitars playing melodies and rhythmic strumming that are spread to both sides of the speakers. A male voice is singing a melancholic melody in a higher key sitting in the middle of the track. This song may be playing while walking through the park while listening to this song with headphones.", "data_idx": 1929, "number": 0, "label": "rock"} +{"file_name": "train_03609.png", "caption": "This song contains e-guitars playing melodies and rhythmic strumming that are spread to both sides of the speakers. A male voice is singing a melancholic melody in a higher key sitting in the middle of the track. This song may be playing while walking through the park while listening to this song with headphones.", "data_idx": 1929, "number": 1, "label": "rock"} +{"file_name": "train_03610.png", "caption": "This song contains e-guitars playing melodies and rhythmic strumming that are spread to both sides of the speakers. A male voice is singing a melancholic melody in a higher key sitting in the middle of the track. This song may be playing while walking through the park while listening to this song with headphones.", "data_idx": 1929, "number": 2, "label": "rock"} +{"file_name": "train_03611.png", "caption": "This song contains e-guitars playing melodies and rhythmic strumming that are spread to both sides of the speakers. A male voice is singing a melancholic melody in a higher key sitting in the middle of the track. This song may be playing while walking through the park while listening to this song with headphones.", "data_idx": 1929, "number": 3, "label": "rock"} +{"file_name": "train_03612.png", "caption": "The low quality recording features a drawers opening sound effects followed by a background orchestra music. The recording is extremely noisy, as it was probably recorded with a poor quality microphone or a phone.", "data_idx": 1930, "number": 0, "label": "hiphop"} +{"file_name": "train_03613.png", "caption": "The low quality recording features a drawers opening sound effects followed by a background orchestra music. The recording is extremely noisy, as it was probably recorded with a poor quality microphone or a phone.", "data_idx": 1930, "number": 1, "label": "hiphop"} +{"file_name": "train_03614.png", "caption": "The low quality recording features a drawers opening sound effects followed by a background orchestra music. The recording is extremely noisy, as it was probably recorded with a poor quality microphone or a phone.", "data_idx": 1930, "number": 2, "label": "hiphop"} +{"file_name": "train_03615.png", "caption": "The low quality recording features a drawers opening sound effects followed by a background orchestra music. The recording is extremely noisy, as it was probably recorded with a poor quality microphone or a phone.", "data_idx": 1930, "number": 3, "label": "hiphop"} +{"file_name": "train_03616.png", "caption": "The low quality recording features a DJ scratching effect at the beginning of the loop, after which a synth wave song drops. The song consists of groovy synth bass, percussive tinny elements, shimmering hi-hats, punchy snare and kick hits, soft crash cymbals and wide simple bells melody. It sounds energetic and judging by the arrangement, it's a background song for some kind of video.", "data_idx": 1934, "number": 0, "label": "hiphop"} +{"file_name": "train_03617.png", "caption": "The low quality recording features a DJ scratching effect at the beginning of the loop, after which a synth wave song drops. The song consists of groovy synth bass, percussive tinny elements, shimmering hi-hats, punchy snare and kick hits, soft crash cymbals and wide simple bells melody. It sounds energetic and judging by the arrangement, it's a background song for some kind of video.", "data_idx": 1934, "number": 1, "label": "hiphop"} +{"file_name": "train_03618.png", "caption": "A male vocalist sings a lively hip hop. The tempo is fast with energetic drumming, groovy bass lines and keyboard accompaniment with female backup vocals. The song is incoherent and muffled with a loud scratching like sound dominating the audio. The audio is chaotic, confusing, incoherent and unpleasant to the ears.", "data_idx": 1935, "number": 0, "label": "blues"} +{"file_name": "train_03619.png", "caption": "A male vocalist sings a lively hip hop. The tempo is fast with energetic drumming, groovy bass lines and keyboard accompaniment with female backup vocals. The song is incoherent and muffled with a loud scratching like sound dominating the audio. The audio is chaotic, confusing, incoherent and unpleasant to the ears.", "data_idx": 1935, "number": 1, "label": "blues"} +{"file_name": "train_03620.png", "caption": "A male vocalist sings a lively hip hop. The tempo is fast with energetic drumming, groovy bass lines and keyboard accompaniment with female backup vocals. The song is incoherent and muffled with a loud scratching like sound dominating the audio. The audio is chaotic, confusing, incoherent and unpleasant to the ears.", "data_idx": 1935, "number": 2, "label": "blues"} +{"file_name": "train_03621.png", "caption": "A male vocalist sings a lively hip hop. The tempo is fast with energetic drumming, groovy bass lines and keyboard accompaniment with female backup vocals. The song is incoherent and muffled with a loud scratching like sound dominating the audio. The audio is chaotic, confusing, incoherent and unpleasant to the ears.", "data_idx": 1935, "number": 3, "label": "blues"} +{"file_name": "train_03622.png", "caption": "The low quality recording features a live performance of a metal song and it consists of energetic male vocal singing over energetic drums, distorted bass guitar and electric guitar riff. It sounds crushed, energetic, distorted and noisy, as it was probably recorded with a phone.", "data_idx": 1936, "number": 0, "label": "metal"} +{"file_name": "train_03623.png", "caption": "The low quality recording features a live performance of a metal song and it consists of energetic male vocal singing over energetic drums, distorted bass guitar and electric guitar riff. It sounds crushed, energetic, distorted and noisy, as it was probably recorded with a phone.", "data_idx": 1936, "number": 1, "label": "metal"} +{"file_name": "train_03624.png", "caption": "The low quality recording features a live performance of a metal song and it consists of energetic male vocal singing over energetic drums, distorted bass guitar and electric guitar riff. It sounds crushed, energetic, distorted and noisy, as it was probably recorded with a phone.", "data_idx": 1936, "number": 2, "label": "metal"} +{"file_name": "train_03625.png", "caption": "The low quality recording features a live performance of a metal song and it consists of energetic male vocal singing over energetic drums, distorted bass guitar and electric guitar riff. It sounds crushed, energetic, distorted and noisy, as it was probably recorded with a phone.", "data_idx": 1936, "number": 3, "label": "metal"} +{"file_name": "train_03626.png", "caption": "This is a house music piece with Brazilian elements. There is a male vocal that starts by shouting and then starts repeating the same word over and over. In the rhythmic background, there is a repetitive electronic drum beat with a very strong low end. It is a very loud piece. This music could be used in nightclubs and sports venues.", "data_idx": 1937, "number": 0, "label": "hiphop"} +{"file_name": "train_03627.png", "caption": "This is a house music piece with Brazilian elements. There is a male vocal that starts by shouting and then starts repeating the same word over and over. In the rhythmic background, there is a repetitive electronic drum beat with a very strong low end. It is a very loud piece. This music could be used in nightclubs and sports venues.", "data_idx": 1937, "number": 1, "label": "hiphop"} +{"file_name": "train_03628.png", "caption": "This is a house music piece with Brazilian elements. There is a male vocal that starts by shouting and then starts repeating the same word over and over. In the rhythmic background, there is a repetitive electronic drum beat with a very strong low end. It is a very loud piece. This music could be used in nightclubs and sports venues.", "data_idx": 1937, "number": 2, "label": "hiphop"} +{"file_name": "train_03629.png", "caption": "This is a house music piece with Brazilian elements. There is a male vocal that starts by shouting and then starts repeating the same word over and over. In the rhythmic background, there is a repetitive electronic drum beat with a very strong low end. It is a very loud piece. This music could be used in nightclubs and sports venues.", "data_idx": 1937, "number": 3, "label": "hiphop"} +{"file_name": "train_03630.png", "caption": "An almost clean e-guitar is playing a gentle melody in a minor chord that is repeating itself. This song may be played at a backing track to practice along.", "data_idx": 1942, "number": 0, "label": "jazz"} +{"file_name": "train_03631.png", "caption": "An almost clean e-guitar is playing a gentle melody in a minor chord that is repeating itself. This song may be played at a backing track to practice along.", "data_idx": 1942, "number": 1, "label": "jazz"} +{"file_name": "train_03632.png", "caption": "This is an afrobeat music piece. The melody is being played by a vibrant orchestra of brass sections with a saxophone lead, a keyboard, an electric guitar and a bass guitar. In the rhythmic background, there is an afrobeat acoustic drum beat played with numerous percussion instruments. The atmosphere is playful. The piece could be used in the soundtrack of an action-filled movie or TV series. It could also be used in the soundtrack of an action video game.", "data_idx": 1943, "number": 0, "label": "jazz"} +{"file_name": "train_03633.png", "caption": "This is an afrobeat music piece. The melody is being played by a vibrant orchestra of brass sections with a saxophone lead, a keyboard, an electric guitar and a bass guitar. In the rhythmic background, there is an afrobeat acoustic drum beat played with numerous percussion instruments. The atmosphere is playful. The piece could be used in the soundtrack of an action-filled movie or TV series. It could also be used in the soundtrack of an action video game.", "data_idx": 1943, "number": 1, "label": "jazz"} +{"file_name": "train_03634.png", "caption": "This is an afrobeat music piece. The melody is being played by a vibrant orchestra of brass sections with a saxophone lead, a keyboard, an electric guitar and a bass guitar. In the rhythmic background, there is an afrobeat acoustic drum beat played with numerous percussion instruments. The atmosphere is playful. The piece could be used in the soundtrack of an action-filled movie or TV series. It could also be used in the soundtrack of an action video game.", "data_idx": 1943, "number": 2, "label": "jazz"} +{"file_name": "train_03635.png", "caption": "This is an afrobeat music piece. The melody is being played by a vibrant orchestra of brass sections with a saxophone lead, a keyboard, an electric guitar and a bass guitar. In the rhythmic background, there is an afrobeat acoustic drum beat played with numerous percussion instruments. The atmosphere is playful. The piece could be used in the soundtrack of an action-filled movie or TV series. It could also be used in the soundtrack of an action video game.", "data_idx": 1943, "number": 3, "label": "jazz"} +{"file_name": "train_03636.png", "caption": "This clip is an instrumental. The tempo is medium with an electric guitar solo lead. There are no other instruments used. There is an interaction between two men in the interval . The music is powerful, loud and skilled and the speech indicates that this is probably a tutorial on how to play the guitar or an interview.", "data_idx": 1945, "number": 0, "label": "hiphop"} +{"file_name": "train_03637.png", "caption": "This clip is an instrumental. The tempo is medium with an electric guitar solo lead. There are no other instruments used. There is an interaction between two men in the interval . The music is powerful, loud and skilled and the speech indicates that this is probably a tutorial on how to play the guitar or an interview.", "data_idx": 1945, "number": 1, "label": "hiphop"} +{"file_name": "train_03638.png", "caption": "This clip is an instrumental. The tempo is medium with an electric guitar solo lead. There are no other instruments used. There is an interaction between two men in the interval . The music is powerful, loud and skilled and the speech indicates that this is probably a tutorial on how to play the guitar or an interview.", "data_idx": 1945, "number": 2, "label": "hiphop"} +{"file_name": "train_03639.png", "caption": "This clip is an instrumental. The tempo is medium with an electric guitar solo lead. There are no other instruments used. There is an interaction between two men in the interval . The music is powerful, loud and skilled and the speech indicates that this is probably a tutorial on how to play the guitar or an interview.", "data_idx": 1945, "number": 3, "label": "hiphop"} +{"file_name": "train_03640.png", "caption": "The song is an instrumental. The song is medium tempo with a loud horn playing sonorously, ambient wind noise, thunder rolling, birds chirping and a harpsichord playing rhythmically . The song is scary and eerie. The song is an instrumental soundtrack for a spooky film.", "data_idx": 1948, "number": 0, "label": "classical"} +{"file_name": "train_03641.png", "caption": "The song is an instrumental. The song is medium tempo with a loud horn playing sonorously, ambient wind noise, thunder rolling, birds chirping and a harpsichord playing rhythmically . The song is scary and eerie. The song is an instrumental soundtrack for a spooky film.", "data_idx": 1948, "number": 1, "label": "classical"} +{"file_name": "train_03642.png", "caption": "The song is an instrumental. The song is medium tempo with a loud horn playing sonorously, ambient wind noise, thunder rolling, birds chirping and a harpsichord playing rhythmically . The song is scary and eerie. The song is an instrumental soundtrack for a spooky film.", "data_idx": 1948, "number": 2, "label": "classical"} +{"file_name": "train_03643.png", "caption": "The song is an instrumental. The song is medium tempo with a loud horn playing sonorously, ambient wind noise, thunder rolling, birds chirping and a harpsichord playing rhythmically . The song is scary and eerie. The song is an instrumental soundtrack for a spooky film.", "data_idx": 1948, "number": 3, "label": "classical"} +{"file_name": "train_03644.png", "caption": "This song is an instrumental. The tempo is fast with vigorous drumming, thumping bass lines and keyboard arrangement with sounds of an ambulance or police van, menacing voices, grunting, incoherent vocal riff and whooshing sound of wind. This song is aggressive, vigorous, energetic trippy, trance like with the syncopated music giving it a eerie, sinister, creepy vibe. This song is a Hard Rock/Goth Rock.", "data_idx": 1949, "number": 0, "label": "disco"} +{"file_name": "train_03645.png", "caption": "This song is an instrumental. The tempo is fast with vigorous drumming, thumping bass lines and keyboard arrangement with sounds of an ambulance or police van, menacing voices, grunting, incoherent vocal riff and whooshing sound of wind. This song is aggressive, vigorous, energetic trippy, trance like with the syncopated music giving it a eerie, sinister, creepy vibe. This song is a Hard Rock/Goth Rock.", "data_idx": 1949, "number": 1, "label": "disco"} +{"file_name": "train_03646.png", "caption": "This song is an instrumental. The tempo is fast with vigorous drumming, thumping bass lines and keyboard arrangement with sounds of an ambulance or police van, menacing voices, grunting, incoherent vocal riff and whooshing sound of wind. This song is aggressive, vigorous, energetic trippy, trance like with the syncopated music giving it a eerie, sinister, creepy vibe. This song is a Hard Rock/Goth Rock.", "data_idx": 1949, "number": 2, "label": "disco"} +{"file_name": "train_03647.png", "caption": "This song is an instrumental. The tempo is fast with vigorous drumming, thumping bass lines and keyboard arrangement with sounds of an ambulance or police van, menacing voices, grunting, incoherent vocal riff and whooshing sound of wind. This song is aggressive, vigorous, energetic trippy, trance like with the syncopated music giving it a eerie, sinister, creepy vibe. This song is a Hard Rock/Goth Rock.", "data_idx": 1949, "number": 3, "label": "disco"} +{"file_name": "train_03648.png", "caption": "The low quality recording features a jazz song that consists of groovy soft drums, smooth bass and saxophone solo, over which there is shoe tapping. It sounds like it is a live performance and like something you would watch in a theatre. It is a bit noisy and in mono.", "data_idx": 1952, "number": 0, "label": "blues"} +{"file_name": "train_03649.png", "caption": "The low quality recording features a jazz song that consists of groovy soft drums, smooth bass and saxophone solo, over which there is shoe tapping. It sounds like it is a live performance and like something you would watch in a theatre. It is a bit noisy and in mono.", "data_idx": 1952, "number": 1, "label": "blues"} +{"file_name": "train_03650.png", "caption": "The low quality recording features a jazz song that consists of groovy soft drums, smooth bass and saxophone solo, over which there is shoe tapping. It sounds like it is a live performance and like something you would watch in a theatre. It is a bit noisy and in mono.", "data_idx": 1952, "number": 2, "label": "blues"} +{"file_name": "train_03651.png", "caption": "The low quality recording features a jazz song that consists of groovy soft drums, smooth bass and saxophone solo, over which there is shoe tapping. It sounds like it is a live performance and like something you would watch in a theatre. It is a bit noisy and in mono.", "data_idx": 1952, "number": 3, "label": "blues"} +{"file_name": "train_03652.png", "caption": "A fiery, passionate flamenco duet between a nylon string guitar player and a clapping dancer. The guitar playing is virtuosic, employing flamenco strumming and fast scales. The rhythms are complex and additive.", "data_idx": 1954, "number": 0, "label": "blues"} +{"file_name": "train_03653.png", "caption": "A fiery, passionate flamenco duet between a nylon string guitar player and a clapping dancer. The guitar playing is virtuosic, employing flamenco strumming and fast scales. The rhythms are complex and additive.", "data_idx": 1954, "number": 1, "label": "blues"} +{"file_name": "train_03654.png", "caption": "A fiery, passionate flamenco duet between a nylon string guitar player and a clapping dancer. The guitar playing is virtuosic, employing flamenco strumming and fast scales. The rhythms are complex and additive.", "data_idx": 1954, "number": 2, "label": "blues"} +{"file_name": "train_03655.png", "caption": "A fiery, passionate flamenco duet between a nylon string guitar player and a clapping dancer. The guitar playing is virtuosic, employing flamenco strumming and fast scales. The rhythms are complex and additive.", "data_idx": 1954, "number": 3, "label": "blues"} +{"file_name": "train_03656.png", "caption": "An accordion is playing short notes on the offbeat along with soft snare hits being played with brushes. A bass is playing straight, changing the note on every beat. Another accordion is answering the yodeling male voice with a short melody. The male voice is loud, clear and sings a melody in the higher register. A guitar-like instrument is strumming chords in the higher register. The instruments are panned to the left and right side of the speakers. This song may be playing at a concert in the countryside.", "data_idx": 1955, "number": 0, "label": "classical"} +{"file_name": "train_03657.png", "caption": "An accordion is playing short notes on the offbeat along with soft snare hits being played with brushes. A bass is playing straight, changing the note on every beat. Another accordion is answering the yodeling male voice with a short melody. The male voice is loud, clear and sings a melody in the higher register. A guitar-like instrument is strumming chords in the higher register. The instruments are panned to the left and right side of the speakers. This song may be playing at a concert in the countryside.", "data_idx": 1955, "number": 1, "label": "classical"} +{"file_name": "train_03658.png", "caption": "An accordion is playing short notes on the offbeat along with soft snare hits being played with brushes. A bass is playing straight, changing the note on every beat. Another accordion is answering the yodeling male voice with a short melody. The male voice is loud, clear and sings a melody in the higher register. A guitar-like instrument is strumming chords in the higher register. The instruments are panned to the left and right side of the speakers. This song may be playing at a concert in the countryside.", "data_idx": 1955, "number": 2, "label": "classical"} +{"file_name": "train_03659.png", "caption": "An accordion is playing short notes on the offbeat along with soft snare hits being played with brushes. A bass is playing straight, changing the note on every beat. Another accordion is answering the yodeling male voice with a short melody. The male voice is loud, clear and sings a melody in the higher register. A guitar-like instrument is strumming chords in the higher register. The instruments are panned to the left and right side of the speakers. This song may be playing at a concert in the countryside.", "data_idx": 1955, "number": 3, "label": "classical"} +{"file_name": "train_03660.png", "caption": "This is an instrumental rock music jam. The only instrument is a clean-sounding electric guitar playing an arpeggio with an added echo effect. The atmosphere is calming. Although the recording quality is a bit low, this piece could be playing in the background of a rock bar after a decent mix is applied.", "data_idx": 1957, "number": 0, "label": "classical"} +{"file_name": "train_03661.png", "caption": "This is an instrumental rock music jam. The only instrument is a clean-sounding electric guitar playing an arpeggio with an added echo effect. The atmosphere is calming. Although the recording quality is a bit low, this piece could be playing in the background of a rock bar after a decent mix is applied.", "data_idx": 1957, "number": 1, "label": "classical"} +{"file_name": "train_03662.png", "caption": "This is an instrumental rock music jam. The only instrument is a clean-sounding electric guitar playing an arpeggio with an added echo effect. The atmosphere is calming. Although the recording quality is a bit low, this piece could be playing in the background of a rock bar after a decent mix is applied.", "data_idx": 1957, "number": 2, "label": "classical"} +{"file_name": "train_03663.png", "caption": "This is an instrumental rock music jam. The only instrument is a clean-sounding electric guitar playing an arpeggio with an added echo effect. The atmosphere is calming. Although the recording quality is a bit low, this piece could be playing in the background of a rock bar after a decent mix is applied.", "data_idx": 1957, "number": 3, "label": "classical"} +{"file_name": "train_03664.png", "caption": "This instrumental song features a distortion guitar playing a guitar solo. The guitar starts playing an ascending pattern followed by a sweep picking lick. This is followed by an alternate picking pattern. The ending of this solo consists of a sweep picking lick using string skipping technique. There are no other instruments in this song. There is no voice in this song.", "data_idx": 1958, "number": 0, "label": "classical"} +{"file_name": "train_03665.png", "caption": "This instrumental song features a distortion guitar playing a guitar solo. The guitar starts playing an ascending pattern followed by a sweep picking lick. This is followed by an alternate picking pattern. The ending of this solo consists of a sweep picking lick using string skipping technique. There are no other instruments in this song. There is no voice in this song.", "data_idx": 1958, "number": 1, "label": "classical"} +{"file_name": "train_03666.png", "caption": "This instrumental song features a distortion guitar playing a guitar solo. The guitar starts playing an ascending pattern followed by a sweep picking lick. This is followed by an alternate picking pattern. The ending of this solo consists of a sweep picking lick using string skipping technique. There are no other instruments in this song. There is no voice in this song.", "data_idx": 1958, "number": 2, "label": "classical"} +{"file_name": "train_03667.png", "caption": "This instrumental song features a distortion guitar playing a guitar solo. The guitar starts playing an ascending pattern followed by a sweep picking lick. This is followed by an alternate picking pattern. The ending of this solo consists of a sweep picking lick using string skipping technique. There are no other instruments in this song. There is no voice in this song.", "data_idx": 1958, "number": 3, "label": "classical"} +{"file_name": "train_03668.png", "caption": "This audio contains environmental noises as ocean waves sounds; seabirds singing; a train passing by and a synth pad playing a short rising sound. This song may be playing in an advertisement.", "data_idx": 1960, "number": 0, "label": "hiphop"} +{"file_name": "train_03669.png", "caption": "This audio contains environmental noises as ocean waves sounds; seabirds singing; a train passing by and a synth pad playing a short rising sound. This song may be playing in an advertisement.", "data_idx": 1960, "number": 1, "label": "hiphop"} +{"file_name": "train_03670.png", "caption": "This is a yodeling music piece. There is a female vocalist that is singing happily in the lead. The melody is provided by medium and high pitch woodwinds. In the background, the bass line is played by an upright bass while the rhythm is provided by an acoustic drum. The atmosphere is very lively. This piece could be used in the soundtrack of a comedy movie or a children's show.", "data_idx": 1961, "number": 0, "label": "pop"} +{"file_name": "train_03671.png", "caption": "This is a yodeling music piece. There is a female vocalist that is singing happily in the lead. The melody is provided by medium and high pitch woodwinds. In the background, the bass line is played by an upright bass while the rhythm is provided by an acoustic drum. The atmosphere is very lively. This piece could be used in the soundtrack of a comedy movie or a children's show.", "data_idx": 1961, "number": 1, "label": "pop"} +{"file_name": "train_03672.png", "caption": "This is a yodeling music piece. There is a female vocalist that is singing happily in the lead. The melody is provided by medium and high pitch woodwinds. In the background, the bass line is played by an upright bass while the rhythm is provided by an acoustic drum. The atmosphere is very lively. This piece could be used in the soundtrack of a comedy movie or a children's show.", "data_idx": 1961, "number": 2, "label": "pop"} +{"file_name": "train_03673.png", "caption": "This is a yodeling music piece. There is a female vocalist that is singing happily in the lead. The melody is provided by medium and high pitch woodwinds. In the background, the bass line is played by an upright bass while the rhythm is provided by an acoustic drum. The atmosphere is very lively. This piece could be used in the soundtrack of a comedy movie or a children's show.", "data_idx": 1961, "number": 3, "label": "pop"} +{"file_name": "train_03674.png", "caption": "This song has a typical trap-beat with a very overdriven kick/bassline. A synthesizer key sound is playing a melody that repeats itself an octave higher. The male rapper sounds aggressive and is almost shouting along with ad-lips. This song may be playing while working out.", "data_idx": 1963, "number": 0, "label": "hiphop"} +{"file_name": "train_03675.png", "caption": "This song has a typical trap-beat with a very overdriven kick/bassline. A synthesizer key sound is playing a melody that repeats itself an octave higher. The male rapper sounds aggressive and is almost shouting along with ad-lips. This song may be playing while working out.", "data_idx": 1963, "number": 1, "label": "hiphop"} +{"file_name": "train_03676.png", "caption": "This song has a typical trap-beat with a very overdriven kick/bassline. A synthesizer key sound is playing a melody that repeats itself an octave higher. The male rapper sounds aggressive and is almost shouting along with ad-lips. This song may be playing while working out.", "data_idx": 1963, "number": 2, "label": "hiphop"} +{"file_name": "train_03677.png", "caption": "This song has a typical trap-beat with a very overdriven kick/bassline. A synthesizer key sound is playing a melody that repeats itself an octave higher. The male rapper sounds aggressive and is almost shouting along with ad-lips. This song may be playing while working out.", "data_idx": 1963, "number": 3, "label": "hiphop"} +{"file_name": "train_03678.png", "caption": "A female vocalist sings this energetic song. The tempo is fast with furiously energetic drumming, intense electric guitar, groovy bass lines, keyboard harmony, vocal backup and synthesiser arrangements. The song is passionate, spirited,youthful, buoyant, punchy, energetic and animated. The audio is muddy and incoherent. This song is Pop Rock.", "data_idx": 1965, "number": 0, "label": "metal"} +{"file_name": "train_03679.png", "caption": "A female vocalist sings this energetic song. The tempo is fast with furiously energetic drumming, intense electric guitar, groovy bass lines, keyboard harmony, vocal backup and synthesiser arrangements. The song is passionate, spirited,youthful, buoyant, punchy, energetic and animated. The audio is muddy and incoherent. This song is Pop Rock.", "data_idx": 1965, "number": 1, "label": "metal"} +{"file_name": "train_03680.png", "caption": "A female vocalist sings this energetic song. The tempo is fast with furiously energetic drumming, intense electric guitar, groovy bass lines, keyboard harmony, vocal backup and synthesiser arrangements. The song is passionate, spirited,youthful, buoyant, punchy, energetic and animated. The audio is muddy and incoherent. This song is Pop Rock.", "data_idx": 1965, "number": 2, "label": "metal"} +{"file_name": "train_03681.png", "caption": "A female vocalist sings this energetic song. The tempo is fast with furiously energetic drumming, intense electric guitar, groovy bass lines, keyboard harmony, vocal backup and synthesiser arrangements. The song is passionate, spirited,youthful, buoyant, punchy, energetic and animated. The audio is muddy and incoherent. This song is Pop Rock.", "data_idx": 1965, "number": 3, "label": "metal"} +{"file_name": "train_03682.png", "caption": "This is a classical, uptempo salsa song full of percussive instruments playing the rhythm. An e-bass is playing underlining the percussion. While the brass instruments are playing a catchy melody along with the male backing singers. Then the male higher range singer takes over and responds to the backing vocals. This song may be playing in a salsa bar or latin festival.", "data_idx": 1966, "number": 0, "label": "metal"} +{"file_name": "train_03683.png", "caption": "This is a classical, uptempo salsa song full of percussive instruments playing the rhythm. An e-bass is playing underlining the percussion. While the brass instruments are playing a catchy melody along with the male backing singers. Then the male higher range singer takes over and responds to the backing vocals. This song may be playing in a salsa bar or latin festival.", "data_idx": 1966, "number": 1, "label": "metal"} +{"file_name": "train_03684.png", "caption": "This is a classical, uptempo salsa song full of percussive instruments playing the rhythm. An e-bass is playing underlining the percussion. While the brass instruments are playing a catchy melody along with the male backing singers. Then the male higher range singer takes over and responds to the backing vocals. This song may be playing in a salsa bar or latin festival.", "data_idx": 1966, "number": 2, "label": "metal"} +{"file_name": "train_03685.png", "caption": "This is a classical, uptempo salsa song full of percussive instruments playing the rhythm. An e-bass is playing underlining the percussion. While the brass instruments are playing a catchy melody along with the male backing singers. Then the male higher range singer takes over and responds to the backing vocals. This song may be playing in a salsa bar or latin festival.", "data_idx": 1966, "number": 3, "label": "metal"} +{"file_name": "train_03686.png", "caption": "The low quality recording features a kids song played through a toy and it consists of childish vocal singing over groovy piano chords and funky guitar melody. It is noisy, in mono and it sounds happy, fun, but also thin, messy, muffled and crushed.", "data_idx": 1968, "number": 0, "label": "jazz"} +{"file_name": "train_03687.png", "caption": "The low quality recording features a kids song played through a toy and it consists of childish vocal singing over groovy piano chords and funky guitar melody. It is noisy, in mono and it sounds happy, fun, but also thin, messy, muffled and crushed.", "data_idx": 1968, "number": 1, "label": "jazz"} +{"file_name": "train_03688.png", "caption": "This music is an electric guitar solo. The tempo is medium with a haunting and lilting electric guitar riff.The music is minimalist with no accompaniment. It is youthful, energetic, passionate , melodic and pensive.", "data_idx": 1969, "number": 0, "label": "classical"} +{"file_name": "train_03689.png", "caption": "This music is an electric guitar solo. The tempo is medium with a haunting and lilting electric guitar riff.The music is minimalist with no accompaniment. It is youthful, energetic, passionate , melodic and pensive.", "data_idx": 1969, "number": 1, "label": "classical"} +{"file_name": "train_03690.png", "caption": "This music is an electric guitar solo. The tempo is medium with a haunting and lilting electric guitar riff.The music is minimalist with no accompaniment. It is youthful, energetic, passionate , melodic and pensive.", "data_idx": 1969, "number": 2, "label": "classical"} +{"file_name": "train_03691.png", "caption": "This music is an electric guitar solo. The tempo is medium with a haunting and lilting electric guitar riff.The music is minimalist with no accompaniment. It is youthful, energetic, passionate , melodic and pensive.", "data_idx": 1969, "number": 3, "label": "classical"} +{"file_name": "train_03692.png", "caption": "A male and female news reporter engage in a funny vocal banter. The background music is in medium tempo with harmonium accompaniment and subtle percussive rhythm with sudden percussion hits. The vocal dialogue is funny and engaging. The audio quality is overall very poor with painfully high gains.", "data_idx": 1970, "number": 0, "label": "hiphop"} +{"file_name": "train_03693.png", "caption": "A male and female news reporter engage in a funny vocal banter. The background music is in medium tempo with harmonium accompaniment and subtle percussive rhythm with sudden percussion hits. The vocal dialogue is funny and engaging. The audio quality is overall very poor with painfully high gains.", "data_idx": 1970, "number": 1, "label": "hiphop"} +{"file_name": "train_03694.png", "caption": "A male and female news reporter engage in a funny vocal banter. The background music is in medium tempo with harmonium accompaniment and subtle percussive rhythm with sudden percussion hits. The vocal dialogue is funny and engaging. The audio quality is overall very poor with painfully high gains.", "data_idx": 1970, "number": 2, "label": "hiphop"} +{"file_name": "train_03695.png", "caption": "A male and female news reporter engage in a funny vocal banter. The background music is in medium tempo with harmonium accompaniment and subtle percussive rhythm with sudden percussion hits. The vocal dialogue is funny and engaging. The audio quality is overall very poor with painfully high gains.", "data_idx": 1970, "number": 3, "label": "hiphop"} +{"file_name": "train_03696.png", "caption": "The song is an instrumental. The song is medium tempo with various percussion hits, groovy bass line, steady drumming rhythm and keyboard playing beep tones. The song is experimental and groovy. The song is modern electronic dance music with a poor audio quality recording.", "data_idx": 1973, "number": 0, "label": "hiphop"} +{"file_name": "train_03697.png", "caption": "The song is an instrumental. The song is medium tempo with various percussion hits, groovy bass line, steady drumming rhythm and keyboard playing beep tones. The song is experimental and groovy. The song is modern electronic dance music with a poor audio quality recording.", "data_idx": 1973, "number": 1, "label": "hiphop"} +{"file_name": "train_03698.png", "caption": "The song is an instrumental. The song is medium tempo with various percussion hits, groovy bass line, steady drumming rhythm and keyboard playing beep tones. The song is experimental and groovy. The song is modern electronic dance music with a poor audio quality recording.", "data_idx": 1973, "number": 2, "label": "hiphop"} +{"file_name": "train_03699.png", "caption": "The song is an instrumental. The song is medium tempo with various percussion hits, groovy bass line, steady drumming rhythm and keyboard playing beep tones. The song is experimental and groovy. The song is modern electronic dance music with a poor audio quality recording.", "data_idx": 1973, "number": 3, "label": "hiphop"} +{"file_name": "train_03700.png", "caption": "A male vocalist sings this enthusiastic Rock. The tempo is fast and upbeat with a vigorous electric guitar lead and harmony, hard hitting drums and amplified keyboard. The music is an energetic, boisterous, youthful, enthusiastic, engaging, pulsating and electrifying Hard Rock.", "data_idx": 1974, "number": 0, "label": "metal"} +{"file_name": "train_03701.png", "caption": "A male vocalist sings this enthusiastic Rock. The tempo is fast and upbeat with a vigorous electric guitar lead and harmony, hard hitting drums and amplified keyboard. The music is an energetic, boisterous, youthful, enthusiastic, engaging, pulsating and electrifying Hard Rock.", "data_idx": 1974, "number": 1, "label": "metal"} +{"file_name": "train_03702.png", "caption": "A male vocalist sings this enthusiastic Rock. The tempo is fast and upbeat with a vigorous electric guitar lead and harmony, hard hitting drums and amplified keyboard. The music is an energetic, boisterous, youthful, enthusiastic, engaging, pulsating and electrifying Hard Rock.", "data_idx": 1974, "number": 2, "label": "metal"} +{"file_name": "train_03703.png", "caption": "A male vocalist sings this enthusiastic Rock. The tempo is fast and upbeat with a vigorous electric guitar lead and harmony, hard hitting drums and amplified keyboard. The music is an energetic, boisterous, youthful, enthusiastic, engaging, pulsating and electrifying Hard Rock.", "data_idx": 1974, "number": 3, "label": "metal"} +{"file_name": "train_03704.png", "caption": "This recording is full of environmental sounds. Birds singing, wind going, someone walking through water and water-dripping sounds. At the end a strongly reverbed kalimba starts playing a melody.\nThe whole thing sounds relaxing and would fit good into a documentary or a meditation session guided by sounds of nature.", "data_idx": 1975, "number": 0, "label": "hiphop"} +{"file_name": "train_03705.png", "caption": "This recording is full of environmental sounds. Birds singing, wind going, someone walking through water and water-dripping sounds. At the end a strongly reverbed kalimba starts playing a melody.\nThe whole thing sounds relaxing and would fit good into a documentary or a meditation session guided by sounds of nature.", "data_idx": 1975, "number": 1, "label": "hiphop"} +{"file_name": "train_03706.png", "caption": "The track features a Christmas song with no vocals. The melody is very simple and it's played by a Schoenhut Piano that's accompanied by subtle strings. The atmosphere is positive and very Christmas-like.", "data_idx": 1977, "number": 0, "label": "hiphop"} +{"file_name": "train_03707.png", "caption": "The track features a Christmas song with no vocals. The melody is very simple and it's played by a Schoenhut Piano that's accompanied by subtle strings. The atmosphere is positive and very Christmas-like.", "data_idx": 1977, "number": 1, "label": "hiphop"} +{"file_name": "train_03708.png", "caption": "The track features a Christmas song with no vocals. The melody is very simple and it's played by a Schoenhut Piano that's accompanied by subtle strings. The atmosphere is positive and very Christmas-like.", "data_idx": 1977, "number": 2, "label": "hiphop"} +{"file_name": "train_03709.png", "caption": "The track features a Christmas song with no vocals. The melody is very simple and it's played by a Schoenhut Piano that's accompanied by subtle strings. The atmosphere is positive and very Christmas-like.", "data_idx": 1977, "number": 3, "label": "hiphop"} +{"file_name": "train_03710.png", "caption": "This is a live performance of a recital. A loud accordion is holding the melodic background as the clarinet performs a solo on top of it. There is also a now (Romanian pan flute) being played. A male voice starts speaking on the recording possibly retelling a story or a poem. There is a tragic atmosphere. This piece could be used in the soundtracks of drama movies or TV series with an Eastern European/Balkan setting.", "data_idx": 1979, "number": 0, "label": "classical"} +{"file_name": "train_03711.png", "caption": "This is a live performance of a recital. A loud accordion is holding the melodic background as the clarinet performs a solo on top of it. There is also a now (Romanian pan flute) being played. A male voice starts speaking on the recording possibly retelling a story or a poem. There is a tragic atmosphere. This piece could be used in the soundtracks of drama movies or TV series with an Eastern European/Balkan setting.", "data_idx": 1979, "number": 1, "label": "classical"} +{"file_name": "train_03712.png", "caption": "This is a live performance of a recital. A loud accordion is holding the melodic background as the clarinet performs a solo on top of it. There is also a now (Romanian pan flute) being played. A male voice starts speaking on the recording possibly retelling a story or a poem. There is a tragic atmosphere. This piece could be used in the soundtracks of drama movies or TV series with an Eastern European/Balkan setting.", "data_idx": 1979, "number": 2, "label": "classical"} +{"file_name": "train_03713.png", "caption": "This is a live performance of a recital. A loud accordion is holding the melodic background as the clarinet performs a solo on top of it. There is also a now (Romanian pan flute) being played. A male voice starts speaking on the recording possibly retelling a story or a poem. There is a tragic atmosphere. This piece could be used in the soundtracks of drama movies or TV series with an Eastern European/Balkan setting.", "data_idx": 1979, "number": 3, "label": "classical"} +{"file_name": "train_03714.png", "caption": "This song contains an acoustic drum playing a kick and snare together on every beat along with a tambourine shaker. An e-bass is playing a distorted bassline. Two e-guitars are playing a modified melody on top of that. A female and male voice are singing together creating harmony. This song may be playing in a live concert.", "data_idx": 1981, "number": 0, "label": "metal"} +{"file_name": "train_03715.png", "caption": "This song contains an acoustic drum playing a kick and snare together on every beat along with a tambourine shaker. An e-bass is playing a distorted bassline. Two e-guitars are playing a modified melody on top of that. A female and male voice are singing together creating harmony. This song may be playing in a live concert.", "data_idx": 1981, "number": 1, "label": "metal"} +{"file_name": "train_03716.png", "caption": "This song contains an acoustic drum playing a kick and snare together on every beat along with a tambourine shaker. An e-bass is playing a distorted bassline. Two e-guitars are playing a modified melody on top of that. A female and male voice are singing together creating harmony. This song may be playing in a live concert.", "data_idx": 1981, "number": 2, "label": "metal"} +{"file_name": "train_03717.png", "caption": "This song contains an acoustic drum playing a kick and snare together on every beat along with a tambourine shaker. An e-bass is playing a distorted bassline. Two e-guitars are playing a modified melody on top of that. A female and male voice are singing together creating harmony. This song may be playing in a live concert.", "data_idx": 1981, "number": 3, "label": "metal"} +{"file_name": "train_03718.png", "caption": "This rock and roll song features a male voice singing the main melody. There is a female and male backing voice singing in harmony. This is accompanied by percussion playing a simple beat in common time. The bass plays a 12 bar blues lick. The organ fills in between lines. The mood of this song is happy. The quality of audio is low. This song can be played at a celebration party.", "data_idx": 1984, "number": 0, "label": "disco"} +{"file_name": "train_03719.png", "caption": "This rock and roll song features a male voice singing the main melody. There is a female and male backing voice singing in harmony. This is accompanied by percussion playing a simple beat in common time. The bass plays a 12 bar blues lick. The organ fills in between lines. The mood of this song is happy. The quality of audio is low. This song can be played at a celebration party.", "data_idx": 1984, "number": 1, "label": "disco"} +{"file_name": "train_03720.png", "caption": "This rock and roll song features a male voice singing the main melody. There is a female and male backing voice singing in harmony. This is accompanied by percussion playing a simple beat in common time. The bass plays a 12 bar blues lick. The organ fills in between lines. The mood of this song is happy. The quality of audio is low. This song can be played at a celebration party.", "data_idx": 1984, "number": 2, "label": "disco"} +{"file_name": "train_03721.png", "caption": "This rock and roll song features a male voice singing the main melody. There is a female and male backing voice singing in harmony. This is accompanied by percussion playing a simple beat in common time. The bass plays a 12 bar blues lick. The organ fills in between lines. The mood of this song is happy. The quality of audio is low. This song can be played at a celebration party.", "data_idx": 1984, "number": 3, "label": "disco"} +{"file_name": "train_03722.png", "caption": "The song is an instrumental song. The song is medium tempo with a marching drum rhythm, string section harmony, brass instruments playing and a horn section playing various harmonies. The song is exciting and adventurous in nature. The song is a movie soundtrack, and the audio quality is quite poor.", "data_idx": 1985, "number": 0, "label": "classical"} +{"file_name": "train_03723.png", "caption": "The song is an instrumental song. The song is medium tempo with a marching drum rhythm, string section harmony, brass instruments playing and a horn section playing various harmonies. The song is exciting and adventurous in nature. The song is a movie soundtrack, and the audio quality is quite poor.", "data_idx": 1985, "number": 1, "label": "classical"} +{"file_name": "train_03724.png", "caption": "The song is an instrumental song. The song is medium tempo with a marching drum rhythm, string section harmony, brass instruments playing and a horn section playing various harmonies. The song is exciting and adventurous in nature. The song is a movie soundtrack, and the audio quality is quite poor.", "data_idx": 1985, "number": 2, "label": "classical"} +{"file_name": "train_03725.png", "caption": "The song is an instrumental song. The song is medium tempo with a marching drum rhythm, string section harmony, brass instruments playing and a horn section playing various harmonies. The song is exciting and adventurous in nature. The song is a movie soundtrack, and the audio quality is quite poor.", "data_idx": 1985, "number": 3, "label": "classical"} +{"file_name": "train_03726.png", "caption": "A male singer sings this rap vocals with backup singers in harmony. The song is medium tempo with typing and beeping tones, followed by steady drumming rhythm, groovy bass and keyboard harmony. The song is energetic and exciting. The song has a home video intro followed by a rap song.", "data_idx": 1987, "number": 0, "label": "hiphop"} +{"file_name": "train_03727.png", "caption": "A male singer sings this rap vocals with backup singers in harmony. The song is medium tempo with typing and beeping tones, followed by steady drumming rhythm, groovy bass and keyboard harmony. The song is energetic and exciting. The song has a home video intro followed by a rap song.", "data_idx": 1987, "number": 1, "label": "hiphop"} +{"file_name": "train_03728.png", "caption": "The Electro song loop features a build up section that consists of intense siren sound effect, synth bass swell, arpeggiated synth melody, punchy kick layered with synth stabs, snare rolls and some claps. It sounds suspenseful, intense and exciting.", "data_idx": 1988, "number": 0, "label": "disco"} +{"file_name": "train_03729.png", "caption": "The Electro song loop features a build up section that consists of intense siren sound effect, synth bass swell, arpeggiated synth melody, punchy kick layered with synth stabs, snare rolls and some claps. It sounds suspenseful, intense and exciting.", "data_idx": 1988, "number": 1, "label": "disco"} +{"file_name": "train_03730.png", "caption": "The Electro song loop features a build up section that consists of intense siren sound effect, synth bass swell, arpeggiated synth melody, punchy kick layered with synth stabs, snare rolls and some claps. It sounds suspenseful, intense and exciting.", "data_idx": 1988, "number": 2, "label": "disco"} +{"file_name": "train_03731.png", "caption": "The Electro song loop features a build up section that consists of intense siren sound effect, synth bass swell, arpeggiated synth melody, punchy kick layered with synth stabs, snare rolls and some claps. It sounds suspenseful, intense and exciting.", "data_idx": 1988, "number": 3, "label": "disco"} +{"file_name": "train_03732.png", "caption": "Someone is playing a fast paced melody running up and down a scale. This is an amateur recording. This song may be playing soundcheck with a band.", "data_idx": 1989, "number": 0, "label": "blues"} +{"file_name": "train_03733.png", "caption": "Someone is playing a fast paced melody running up and down a scale. This is an amateur recording. This song may be playing soundcheck with a band.", "data_idx": 1989, "number": 1, "label": "blues"} +{"file_name": "train_03734.png", "caption": "Someone is playing a fast paced melody running up and down a scale. This is an amateur recording. This song may be playing soundcheck with a band.", "data_idx": 1989, "number": 2, "label": "blues"} +{"file_name": "train_03735.png", "caption": "Someone is playing a fast paced melody running up and down a scale. This is an amateur recording. This song may be playing soundcheck with a band.", "data_idx": 1989, "number": 3, "label": "blues"} +{"file_name": "train_03736.png", "caption": "This music is an Electronic instrumental. The tempo is fast with synthesiser arrangements. It has an incessant, burgeoning rhythm. The music is youthful , captivating, psychedelic, trippy, groovy, trance EDM/Synth Pop.", "data_idx": 1992, "number": 0, "label": "hiphop"} +{"file_name": "train_03737.png", "caption": "This music is an Electronic instrumental. The tempo is fast with synthesiser arrangements. It has an incessant, burgeoning rhythm. The music is youthful , captivating, psychedelic, trippy, groovy, trance EDM/Synth Pop.", "data_idx": 1992, "number": 1, "label": "hiphop"} +{"file_name": "train_03738.png", "caption": "This music is an Electronic instrumental. The tempo is fast with synthesiser arrangements. It has an incessant, burgeoning rhythm. The music is youthful , captivating, psychedelic, trippy, groovy, trance EDM/Synth Pop.", "data_idx": 1992, "number": 2, "label": "hiphop"} +{"file_name": "train_03739.png", "caption": "This music is an Electronic instrumental. The tempo is fast with synthesiser arrangements. It has an incessant, burgeoning rhythm. The music is youthful , captivating, psychedelic, trippy, groovy, trance EDM/Synth Pop.", "data_idx": 1992, "number": 3, "label": "hiphop"} diff --git a/data/train/metadata_0006.jsonl b/data/train/metadata_0006.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..50452322384ef60bb756a6edc9cadbf19e44121c --- /dev/null +++ b/data/train/metadata_0006.jsonl @@ -0,0 +1,378 @@ +{"file_name": "train_03740.png", "caption": "The music features no vocals and the main melody is made with a theremin. The sound is wobbly and quirky. In the background there are subtle strings that contrast the main melody by sustaining chords. This is a song you could hear in a movie about aliens.", "data_idx": 2000, "number": 0, "label": "country"} +{"file_name": "train_03741.png", "caption": "The music features no vocals and the main melody is made with a theremin. The sound is wobbly and quirky. In the background there are subtle strings that contrast the main melody by sustaining chords. This is a song you could hear in a movie about aliens.", "data_idx": 2000, "number": 1, "label": "country"} +{"file_name": "train_03742.png", "caption": "The music features no vocals and the main melody is made with a theremin. The sound is wobbly and quirky. In the background there are subtle strings that contrast the main melody by sustaining chords. This is a song you could hear in a movie about aliens.", "data_idx": 2000, "number": 2, "label": "country"} +{"file_name": "train_03743.png", "caption": "The music features no vocals and the main melody is made with a theremin. The sound is wobbly and quirky. In the background there are subtle strings that contrast the main melody by sustaining chords. This is a song you could hear in a movie about aliens.", "data_idx": 2000, "number": 3, "label": "country"} +{"file_name": "train_03744.png", "caption": "This is an instrumental electronic music piece. It has a high-pitched synth bass playing in a dissonant manner as the lead. The background consists of an ambient synth that is constantly switching between two chords and electronic percussion that keeps on reverberating. The dissonance and the character of the sounds create a very eerie atmosphere that is the perfect fit for a dystopian video-game soundtrack.", "data_idx": 2001, "number": 0, "label": "blues"} +{"file_name": "train_03745.png", "caption": "This is an instrumental electronic music piece. It has a high-pitched synth bass playing in a dissonant manner as the lead. The background consists of an ambient synth that is constantly switching between two chords and electronic percussion that keeps on reverberating. The dissonance and the character of the sounds create a very eerie atmosphere that is the perfect fit for a dystopian video-game soundtrack.", "data_idx": 2001, "number": 1, "label": "blues"} +{"file_name": "train_03746.png", "caption": "This music clip is a bass electric guitar instrumental. The tempo is medium fast with the guitarist playing an enthusiastic riff after giving instructions. No other instruments are used and the talking at the beginning of the audio clip indicates that this is a tutorial or instructional video.", "data_idx": 2002, "number": 0, "label": "jazz"} +{"file_name": "train_03747.png", "caption": "This music clip is a bass electric guitar instrumental. The tempo is medium fast with the guitarist playing an enthusiastic riff after giving instructions. No other instruments are used and the talking at the beginning of the audio clip indicates that this is a tutorial or instructional video.", "data_idx": 2002, "number": 1, "label": "jazz"} +{"file_name": "train_03748.png", "caption": "This music clip is a bass electric guitar instrumental. The tempo is medium fast with the guitarist playing an enthusiastic riff after giving instructions. No other instruments are used and the talking at the beginning of the audio clip indicates that this is a tutorial or instructional video.", "data_idx": 2002, "number": 2, "label": "jazz"} +{"file_name": "train_03749.png", "caption": "This music clip is a bass electric guitar instrumental. The tempo is medium fast with the guitarist playing an enthusiastic riff after giving instructions. No other instruments are used and the talking at the beginning of the audio clip indicates that this is a tutorial or instructional video.", "data_idx": 2002, "number": 3, "label": "jazz"} +{"file_name": "train_03750.png", "caption": "This is a punk rock piece that is being sung by children. The main vocal is a boy singing in a shouting manner while slightly straying off-key. There is an electric guitar and acoustic drums in the backing track of a song. The piece is clearly targeted for children. Therefore, it would fit perfectly in a play date or birthday party for little kids. The music is also suitable for an advertisement jingle that is targeted at kids.", "data_idx": 2003, "number": 0, "label": "pop"} +{"file_name": "train_03751.png", "caption": "This is a punk rock piece that is being sung by children. The main vocal is a boy singing in a shouting manner while slightly straying off-key. There is an electric guitar and acoustic drums in the backing track of a song. The piece is clearly targeted for children. Therefore, it would fit perfectly in a play date or birthday party for little kids. The music is also suitable for an advertisement jingle that is targeted at kids.", "data_idx": 2003, "number": 1, "label": "pop"} +{"file_name": "train_03752.png", "caption": "This is a punk rock piece that is being sung by children. The main vocal is a boy singing in a shouting manner while slightly straying off-key. There is an electric guitar and acoustic drums in the backing track of a song. The piece is clearly targeted for children. Therefore, it would fit perfectly in a play date or birthday party for little kids. The music is also suitable for an advertisement jingle that is targeted at kids.", "data_idx": 2003, "number": 2, "label": "pop"} +{"file_name": "train_03753.png", "caption": "This is a punk rock piece that is being sung by children. The main vocal is a boy singing in a shouting manner while slightly straying off-key. There is an electric guitar and acoustic drums in the backing track of a song. The piece is clearly targeted for children. Therefore, it would fit perfectly in a play date or birthday party for little kids. The music is also suitable for an advertisement jingle that is targeted at kids.", "data_idx": 2003, "number": 3, "label": "pop"} +{"file_name": "train_03754.png", "caption": "The low quality recording features a jazzy song that consists of shimmering hi hats, repetitive cowbell, snappy rimshots and smooth bass in the right channel, short brass stabs and groovy piano chords in the left channel of the stereo image and electric guitar solo melody in the middle. The stereo image of the song is a bit unbalanced, due to the spreadness of low frequency sounds throughout the stereo image. It sounds easygoing and percussive.", "data_idx": 2004, "number": 0, "label": "blues"} +{"file_name": "train_03755.png", "caption": "The low quality recording features a jazzy song that consists of shimmering hi hats, repetitive cowbell, snappy rimshots and smooth bass in the right channel, short brass stabs and groovy piano chords in the left channel of the stereo image and electric guitar solo melody in the middle. The stereo image of the song is a bit unbalanced, due to the spreadness of low frequency sounds throughout the stereo image. It sounds easygoing and percussive.", "data_idx": 2004, "number": 1, "label": "blues"} +{"file_name": "train_03756.png", "caption": "A male vocalist sings this high energy Rock song. The tempo is fast with enthusiastic and skilled bass guitar lines, intense, hard hitting drums, groovy electric guitar accompaniment and rhythmic keyboard. The song is youthful, animated, spirited, animated,vigorous, incredibly vital and vivacious. This song is Hard Rock/ Progressive metal.", "data_idx": 2005, "number": 0, "label": "metal"} +{"file_name": "train_03757.png", "caption": "A male vocalist sings this high energy Rock song. The tempo is fast with enthusiastic and skilled bass guitar lines, intense, hard hitting drums, groovy electric guitar accompaniment and rhythmic keyboard. The song is youthful, animated, spirited, animated,vigorous, incredibly vital and vivacious. This song is Hard Rock/ Progressive metal.", "data_idx": 2005, "number": 1, "label": "metal"} +{"file_name": "train_03758.png", "caption": "A male vocalist sings this high energy Rock song. The tempo is fast with enthusiastic and skilled bass guitar lines, intense, hard hitting drums, groovy electric guitar accompaniment and rhythmic keyboard. The song is youthful, animated, spirited, animated,vigorous, incredibly vital and vivacious. This song is Hard Rock/ Progressive metal.", "data_idx": 2005, "number": 2, "label": "metal"} +{"file_name": "train_03759.png", "caption": "A male vocalist sings this high energy Rock song. The tempo is fast with enthusiastic and skilled bass guitar lines, intense, hard hitting drums, groovy electric guitar accompaniment and rhythmic keyboard. The song is youthful, animated, spirited, animated,vigorous, incredibly vital and vivacious. This song is Hard Rock/ Progressive metal.", "data_idx": 2005, "number": 3, "label": "metal"} +{"file_name": "train_03760.png", "caption": "The excerpt starts off with 3 bass drum beats after which an explosion and a crumbling sound can be heard. After this, downward sliding strings or a similar instrument in timbre can be heard creating a sort of scary effect. In the background wind sounds can be heard throughout.", "data_idx": 2006, "number": 0, "label": "hiphop"} +{"file_name": "train_03761.png", "caption": "The excerpt starts off with 3 bass drum beats after which an explosion and a crumbling sound can be heard. After this, downward sliding strings or a similar instrument in timbre can be heard creating a sort of scary effect. In the background wind sounds can be heard throughout.", "data_idx": 2006, "number": 1, "label": "hiphop"} +{"file_name": "train_03762.png", "caption": "This music is instrumental. The tempo is fast with synthesiser and electronic arrangements and a boomy bass.There are sounds of shooting, beeps, bombing, blasts and sirens in the background identical to a Video game music. The audio quality is inferior so the music is loud, jarring and unpleasant to the ears. The music is aggressive, boisterous, destructive and chaotic.", "data_idx": 2007, "number": 0, "label": "hiphop"} +{"file_name": "train_03763.png", "caption": "This music is instrumental. The tempo is fast with synthesiser and electronic arrangements and a boomy bass.There are sounds of shooting, beeps, bombing, blasts and sirens in the background identical to a Video game music. The audio quality is inferior so the music is loud, jarring and unpleasant to the ears. The music is aggressive, boisterous, destructive and chaotic.", "data_idx": 2007, "number": 1, "label": "hiphop"} +{"file_name": "train_03764.png", "caption": "This music is instrumental. The tempo is fast with synthesiser and electronic arrangements and a boomy bass.There are sounds of shooting, beeps, bombing, blasts and sirens in the background identical to a Video game music. The audio quality is inferior so the music is loud, jarring and unpleasant to the ears. The music is aggressive, boisterous, destructive and chaotic.", "data_idx": 2007, "number": 2, "label": "hiphop"} +{"file_name": "train_03765.png", "caption": "This music is instrumental. The tempo is fast with synthesiser and electronic arrangements and a boomy bass.There are sounds of shooting, beeps, bombing, blasts and sirens in the background identical to a Video game music. The audio quality is inferior so the music is loud, jarring and unpleasant to the ears. The music is aggressive, boisterous, destructive and chaotic.", "data_idx": 2007, "number": 3, "label": "hiphop"} +{"file_name": "train_03766.png", "caption": "This is a Jewish gospel music piece. There is a male vocalist singing melodically in the Hebrew language. A strings section is playing the melody with the acoustic guitar and the bass guitar in the backing. In the rhythmic background, the acoustic drums are playing a simple 4/4 beat. The atmosphere of this piece is religious/devotional. It could be used in Jewish religious events or related social media content.", "data_idx": 2009, "number": 0, "label": "rock"} +{"file_name": "train_03767.png", "caption": "This is a Jewish gospel music piece. There is a male vocalist singing melodically in the Hebrew language. A strings section is playing the melody with the acoustic guitar and the bass guitar in the backing. In the rhythmic background, the acoustic drums are playing a simple 4/4 beat. The atmosphere of this piece is religious/devotional. It could be used in Jewish religious events or related social media content.", "data_idx": 2009, "number": 1, "label": "rock"} +{"file_name": "train_03768.png", "caption": "This is a Jewish gospel music piece. There is a male vocalist singing melodically in the Hebrew language. A strings section is playing the melody with the acoustic guitar and the bass guitar in the backing. In the rhythmic background, the acoustic drums are playing a simple 4/4 beat. The atmosphere of this piece is religious/devotional. It could be used in Jewish religious events or related social media content.", "data_idx": 2009, "number": 2, "label": "rock"} +{"file_name": "train_03769.png", "caption": "This is a Jewish gospel music piece. There is a male vocalist singing melodically in the Hebrew language. A strings section is playing the melody with the acoustic guitar and the bass guitar in the backing. In the rhythmic background, the acoustic drums are playing a simple 4/4 beat. The atmosphere of this piece is religious/devotional. It could be used in Jewish religious events or related social media content.", "data_idx": 2009, "number": 3, "label": "rock"} +{"file_name": "train_03770.png", "caption": "The low quality recording features a kids song that consists of chiptune vocal singing over acoustic rhythm guitar. The recording is noisy, in mono and it sounds fun and happy, like something kids listen to.", "data_idx": 2013, "number": 0, "label": "country"} +{"file_name": "train_03771.png", "caption": "The low quality recording features a kids song that consists of chiptune vocal singing over acoustic rhythm guitar. The recording is noisy, in mono and it sounds fun and happy, like something kids listen to.", "data_idx": 2013, "number": 1, "label": "country"} +{"file_name": "train_03772.png", "caption": "The low quality recording features a kids song that consists of chiptune vocal singing over acoustic rhythm guitar. The recording is noisy, in mono and it sounds fun and happy, like something kids listen to.", "data_idx": 2013, "number": 2, "label": "country"} +{"file_name": "train_03773.png", "caption": "The low quality recording features a kids song that consists of chiptune vocal singing over acoustic rhythm guitar. The recording is noisy, in mono and it sounds fun and happy, like something kids listen to.", "data_idx": 2013, "number": 3, "label": "country"} +{"file_name": "train_03774.png", "caption": "A male vocalist sings this pop song. The tempo is medium with keyboard accompaniment ,steady drumming, groovy bass, congas and bongos percussion and acoustic guitar accompaniment with vocal backup. The sound quality of the audio is inferior and there is the sound of chatter in the background .The song is fresh, simple, breezy, romantic, passionate, sentimental and youthful with a dance groove. This song is Regional Pop.", "data_idx": 2014, "number": 0, "label": "rock"} +{"file_name": "train_03775.png", "caption": "A male vocalist sings this pop song. The tempo is medium with keyboard accompaniment ,steady drumming, groovy bass, congas and bongos percussion and acoustic guitar accompaniment with vocal backup. The sound quality of the audio is inferior and there is the sound of chatter in the background .The song is fresh, simple, breezy, romantic, passionate, sentimental and youthful with a dance groove. This song is Regional Pop.", "data_idx": 2014, "number": 1, "label": "rock"} +{"file_name": "train_03776.png", "caption": "A male vocalist sings this pop song. The tempo is medium with keyboard accompaniment ,steady drumming, groovy bass, congas and bongos percussion and acoustic guitar accompaniment with vocal backup. The sound quality of the audio is inferior and there is the sound of chatter in the background .The song is fresh, simple, breezy, romantic, passionate, sentimental and youthful with a dance groove. This song is Regional Pop.", "data_idx": 2014, "number": 2, "label": "rock"} +{"file_name": "train_03777.png", "caption": "A male vocalist sings this pop song. The tempo is medium with keyboard accompaniment ,steady drumming, groovy bass, congas and bongos percussion and acoustic guitar accompaniment with vocal backup. The sound quality of the audio is inferior and there is the sound of chatter in the background .The song is fresh, simple, breezy, romantic, passionate, sentimental and youthful with a dance groove. This song is Regional Pop.", "data_idx": 2014, "number": 3, "label": "rock"} +{"file_name": "train_03778.png", "caption": "The Electro House song features sustained organ keys, chords, filtered drums, punchy kick hits layered with energetic crash and addictive synth lead melody. Right before the drop, there is a short snare roll. It sounds energetic, intense and exciting, as the song is preparing to drop.", "data_idx": 2017, "number": 0, "label": "metal"} +{"file_name": "train_03779.png", "caption": "The Electro House song features sustained organ keys, chords, filtered drums, punchy kick hits layered with energetic crash and addictive synth lead melody. Right before the drop, there is a short snare roll. It sounds energetic, intense and exciting, as the song is preparing to drop.", "data_idx": 2017, "number": 1, "label": "metal"} +{"file_name": "train_03780.png", "caption": "The Electro House song features sustained organ keys, chords, filtered drums, punchy kick hits layered with energetic crash and addictive synth lead melody. Right before the drop, there is a short snare roll. It sounds energetic, intense and exciting, as the song is preparing to drop.", "data_idx": 2017, "number": 2, "label": "metal"} +{"file_name": "train_03781.png", "caption": "The Electro House song features sustained organ keys, chords, filtered drums, punchy kick hits layered with energetic crash and addictive synth lead melody. Right before the drop, there is a short snare roll. It sounds energetic, intense and exciting, as the song is preparing to drop.", "data_idx": 2017, "number": 3, "label": "metal"} +{"file_name": "train_03782.png", "caption": "Two e-guitars are playing a melody with a little bit of reverb. The e-guitars sound clean. This is an amateur recording. This song may be jamming out with friends.", "data_idx": 2018, "number": 0, "label": "blues"} +{"file_name": "train_03783.png", "caption": "Two e-guitars are playing a melody with a little bit of reverb. The e-guitars sound clean. This is an amateur recording. This song may be jamming out with friends.", "data_idx": 2018, "number": 1, "label": "blues"} +{"file_name": "train_03784.png", "caption": "Two e-guitars are playing a melody with a little bit of reverb. The e-guitars sound clean. This is an amateur recording. This song may be jamming out with friends.", "data_idx": 2018, "number": 2, "label": "blues"} +{"file_name": "train_03785.png", "caption": "Two e-guitars are playing a melody with a little bit of reverb. The e-guitars sound clean. This is an amateur recording. This song may be jamming out with friends.", "data_idx": 2018, "number": 3, "label": "blues"} +{"file_name": "train_03786.png", "caption": "This music is instrumental. The tempo is fast with a Didgeridoo harmony. There is minimal instrumentation with low, incessant droning bass notes. The music is intense, enthralling, powerful, velvety, blunt , meditative,hypnotic and trance like.", "data_idx": 2021, "number": 0, "label": "hiphop"} +{"file_name": "train_03787.png", "caption": "This music is instrumental. The tempo is fast with a Didgeridoo harmony. There is minimal instrumentation with low, incessant droning bass notes. The music is intense, enthralling, powerful, velvety, blunt , meditative,hypnotic and trance like.", "data_idx": 2021, "number": 1, "label": "hiphop"} +{"file_name": "train_03788.png", "caption": "This music is instrumental. The tempo is fast with a Didgeridoo harmony. There is minimal instrumentation with low, incessant droning bass notes. The music is intense, enthralling, powerful, velvety, blunt , meditative,hypnotic and trance like.", "data_idx": 2021, "number": 2, "label": "hiphop"} +{"file_name": "train_03789.png", "caption": "This music is instrumental. The tempo is fast with a Didgeridoo harmony. There is minimal instrumentation with low, incessant droning bass notes. The music is intense, enthralling, powerful, velvety, blunt , meditative,hypnotic and trance like.", "data_idx": 2021, "number": 3, "label": "hiphop"} +{"file_name": "train_03790.png", "caption": "Due to the sound quality and background cheering it can be assumed that this is a phone recorded audiofile. A male loud voice is singing a gospel song through a microphone that is overdriving through the speakers: He is accompanied by a tambourine, clapping and cheering from people while acoustic drums are backing him up. In the background you can hear an e-bass playing some licks as fill-ins. This song could be played in a gospel church or a disney movie.", "data_idx": 2023, "number": 0, "label": "rock"} +{"file_name": "train_03791.png", "caption": "Due to the sound quality and background cheering it can be assumed that this is a phone recorded audiofile. A male loud voice is singing a gospel song through a microphone that is overdriving through the speakers: He is accompanied by a tambourine, clapping and cheering from people while acoustic drums are backing him up. In the background you can hear an e-bass playing some licks as fill-ins. This song could be played in a gospel church or a disney movie.", "data_idx": 2023, "number": 1, "label": "rock"} +{"file_name": "train_03792.png", "caption": "Due to the sound quality and background cheering it can be assumed that this is a phone recorded audiofile. A male loud voice is singing a gospel song through a microphone that is overdriving through the speakers: He is accompanied by a tambourine, clapping and cheering from people while acoustic drums are backing him up. In the background you can hear an e-bass playing some licks as fill-ins. This song could be played in a gospel church or a disney movie.", "data_idx": 2023, "number": 2, "label": "rock"} +{"file_name": "train_03793.png", "caption": "Due to the sound quality and background cheering it can be assumed that this is a phone recorded audiofile. A male loud voice is singing a gospel song through a microphone that is overdriving through the speakers: He is accompanied by a tambourine, clapping and cheering from people while acoustic drums are backing him up. In the background you can hear an e-bass playing some licks as fill-ins. This song could be played in a gospel church or a disney movie.", "data_idx": 2023, "number": 3, "label": "rock"} +{"file_name": "train_03794.png", "caption": "This song is a mellow Christian hymn in a foreign language. The tempo is slow with soft piano, rhythmic acoustic guitar, steady drumming and keyboard harmony. The music is minimalist and the song is a prayerful, melodious, devotional, emotional and thankful Gospel Song/Hymn.", "data_idx": 2024, "number": 0, "label": "country"} +{"file_name": "train_03795.png", "caption": "This song is a mellow Christian hymn in a foreign language. The tempo is slow with soft piano, rhythmic acoustic guitar, steady drumming and keyboard harmony. The music is minimalist and the song is a prayerful, melodious, devotional, emotional and thankful Gospel Song/Hymn.", "data_idx": 2024, "number": 1, "label": "country"} +{"file_name": "train_03796.png", "caption": "This song is a mellow Christian hymn in a foreign language. The tempo is slow with soft piano, rhythmic acoustic guitar, steady drumming and keyboard harmony. The music is minimalist and the song is a prayerful, melodious, devotional, emotional and thankful Gospel Song/Hymn.", "data_idx": 2024, "number": 2, "label": "country"} +{"file_name": "train_03797.png", "caption": "This song is a mellow Christian hymn in a foreign language. The tempo is slow with soft piano, rhythmic acoustic guitar, steady drumming and keyboard harmony. The music is minimalist and the song is a prayerful, melodious, devotional, emotional and thankful Gospel Song/Hymn.", "data_idx": 2024, "number": 3, "label": "country"} +{"file_name": "train_03798.png", "caption": "This is a very poor quality recording of an electronic music piece played in the background of a dance video. There is an irritatingly high-pitched synth playing a repetitive melody while an electronic drum beat is in the rhythmic background. If an aggressive high-end cutoff was applied, samples could be lifted from this piece to be used in a beat.", "data_idx": 2025, "number": 0, "label": "hiphop"} +{"file_name": "train_03799.png", "caption": "This is a very poor quality recording of an electronic music piece played in the background of a dance video. There is an irritatingly high-pitched synth playing a repetitive melody while an electronic drum beat is in the rhythmic background. If an aggressive high-end cutoff was applied, samples could be lifted from this piece to be used in a beat.", "data_idx": 2025, "number": 1, "label": "hiphop"} +{"file_name": "train_03800.png", "caption": "A female vocalist sings this Hindi Bhajan. The tempo is slow with a harmonium accompaniment and tabla rhythm. The song is mellow, soft, devotional, inspiring,insightful, emotional and persuasive. This song is a Hindi Devotional Bhajan.", "data_idx": 2028, "number": 0, "label": "disco"} +{"file_name": "train_03801.png", "caption": "A female vocalist sings this Hindi Bhajan. The tempo is slow with a harmonium accompaniment and tabla rhythm. The song is mellow, soft, devotional, inspiring,insightful, emotional and persuasive. This song is a Hindi Devotional Bhajan.", "data_idx": 2028, "number": 1, "label": "disco"} +{"file_name": "train_03802.png", "caption": "A female vocalist sings this Hindi Bhajan. The tempo is slow with a harmonium accompaniment and tabla rhythm. The song is mellow, soft, devotional, inspiring,insightful, emotional and persuasive. This song is a Hindi Devotional Bhajan.", "data_idx": 2028, "number": 2, "label": "disco"} +{"file_name": "train_03803.png", "caption": "A female vocalist sings this Hindi Bhajan. The tempo is slow with a harmonium accompaniment and tabla rhythm. The song is mellow, soft, devotional, inspiring,insightful, emotional and persuasive. This song is a Hindi Devotional Bhajan.", "data_idx": 2028, "number": 3, "label": "disco"} +{"file_name": "train_03804.png", "caption": "This song is an instrumental. The tempo is slow. The musician is playing the Happy Birthday song very deliberately.", "data_idx": 2032, "number": 0, "label": "metal"} +{"file_name": "train_03805.png", "caption": "This song is an instrumental. The tempo is slow. The musician is playing the Happy Birthday song very deliberately.", "data_idx": 2032, "number": 1, "label": "metal"} +{"file_name": "train_03806.png", "caption": "This song is an instrumental. The tempo is slow. The musician is playing the Happy Birthday song very deliberately.", "data_idx": 2032, "number": 2, "label": "metal"} +{"file_name": "train_03807.png", "caption": "This song is an instrumental. The tempo is slow. The musician is playing the Happy Birthday song very deliberately.", "data_idx": 2032, "number": 3, "label": "metal"} +{"file_name": "train_03808.png", "caption": "This ambient song features a female voice using a delay effect so that the words are repeated. This is accompanied by a cymbal played on every beat. No other percussion is played. The bass plays the root note of the chord. There are multiple synth layers in the background. One layer of synth plays a haunting sound which sounds like a string section in the background. Another layer of synth plays a high pitched ring modulated sound toward the end of the track. This song can be used in a gym or workout video.", "data_idx": 2033, "number": 0, "label": "reggae"} +{"file_name": "train_03809.png", "caption": "This ambient song features a female voice using a delay effect so that the words are repeated. This is accompanied by a cymbal played on every beat. No other percussion is played. The bass plays the root note of the chord. There are multiple synth layers in the background. One layer of synth plays a haunting sound which sounds like a string section in the background. Another layer of synth plays a high pitched ring modulated sound toward the end of the track. This song can be used in a gym or workout video.", "data_idx": 2033, "number": 1, "label": "reggae"} +{"file_name": "train_03810.png", "caption": "This ambient song features a female voice using a delay effect so that the words are repeated. This is accompanied by a cymbal played on every beat. No other percussion is played. The bass plays the root note of the chord. There are multiple synth layers in the background. One layer of synth plays a haunting sound which sounds like a string section in the background. Another layer of synth plays a high pitched ring modulated sound toward the end of the track. This song can be used in a gym or workout video.", "data_idx": 2033, "number": 2, "label": "reggae"} +{"file_name": "train_03811.png", "caption": "This ambient song features a female voice using a delay effect so that the words are repeated. This is accompanied by a cymbal played on every beat. No other percussion is played. The bass plays the root note of the chord. There are multiple synth layers in the background. One layer of synth plays a haunting sound which sounds like a string section in the background. Another layer of synth plays a high pitched ring modulated sound toward the end of the track. This song can be used in a gym or workout video.", "data_idx": 2033, "number": 3, "label": "reggae"} +{"file_name": "train_03812.png", "caption": "The instrumental music features a marimba playing a simple melody in unison with another similar instrument and a xylophone accompanying them with fast repeating notes. A tambourine is playing once every beat. A drummer plays a repeating rhythm and drives the rhythm forward.", "data_idx": 2034, "number": 0, "label": "classical"} +{"file_name": "train_03813.png", "caption": "The instrumental music features a marimba playing a simple melody in unison with another similar instrument and a xylophone accompanying them with fast repeating notes. A tambourine is playing once every beat. A drummer plays a repeating rhythm and drives the rhythm forward.", "data_idx": 2034, "number": 1, "label": "classical"} +{"file_name": "train_03814.png", "caption": "The instrumental music features a marimba playing a simple melody in unison with another similar instrument and a xylophone accompanying them with fast repeating notes. A tambourine is playing once every beat. A drummer plays a repeating rhythm and drives the rhythm forward.", "data_idx": 2034, "number": 2, "label": "classical"} +{"file_name": "train_03815.png", "caption": "The instrumental music features a marimba playing a simple melody in unison with another similar instrument and a xylophone accompanying them with fast repeating notes. A tambourine is playing once every beat. A drummer plays a repeating rhythm and drives the rhythm forward.", "data_idx": 2034, "number": 3, "label": "classical"} +{"file_name": "train_03816.png", "caption": "This music is an Electronic instrumental. The tempo is fast with punchy, synthesised music and thumping drum beats on the drum machine. The music is youthful, energetic, enthusiastic,loud, buoyant, punchy, pulsating and electrifying. The sound quality is of inferior quality and there is a bit of static.", "data_idx": 2037, "number": 0, "label": "hiphop"} +{"file_name": "train_03817.png", "caption": "This music is an Electronic instrumental. The tempo is fast with punchy, synthesised music and thumping drum beats on the drum machine. The music is youthful, energetic, enthusiastic,loud, buoyant, punchy, pulsating and electrifying. The sound quality is of inferior quality and there is a bit of static.", "data_idx": 2037, "number": 1, "label": "hiphop"} +{"file_name": "train_03818.png", "caption": "This music is an Electronic instrumental. The tempo is fast with punchy, synthesised music and thumping drum beats on the drum machine. The music is youthful, energetic, enthusiastic,loud, buoyant, punchy, pulsating and electrifying. The sound quality is of inferior quality and there is a bit of static.", "data_idx": 2037, "number": 2, "label": "hiphop"} +{"file_name": "train_03819.png", "caption": "This music is an Electronic instrumental. The tempo is fast with punchy, synthesised music and thumping drum beats on the drum machine. The music is youthful, energetic, enthusiastic,loud, buoyant, punchy, pulsating and electrifying. The sound quality is of inferior quality and there is a bit of static.", "data_idx": 2037, "number": 3, "label": "hiphop"} +{"file_name": "train_03820.png", "caption": "A male vocalist sings this energetic rock song. The song is fast tempo with emphatic drumming, groovy bass lines, funky electric guitar feedback and keyboard accompaniment, with animated, high pitched backup. The song is youthful, energetic,spirited, intense, psychedelic and passionate. This song is Hard Rock.", "data_idx": 2038, "number": 0, "label": "metal"} +{"file_name": "train_03821.png", "caption": "A male vocalist sings this energetic rock song. The song is fast tempo with emphatic drumming, groovy bass lines, funky electric guitar feedback and keyboard accompaniment, with animated, high pitched backup. The song is youthful, energetic,spirited, intense, psychedelic and passionate. This song is Hard Rock.", "data_idx": 2038, "number": 1, "label": "metal"} +{"file_name": "train_03822.png", "caption": "A male vocalist sings this energetic rock song. The song is fast tempo with emphatic drumming, groovy bass lines, funky electric guitar feedback and keyboard accompaniment, with animated, high pitched backup. The song is youthful, energetic,spirited, intense, psychedelic and passionate. This song is Hard Rock.", "data_idx": 2038, "number": 2, "label": "metal"} +{"file_name": "train_03823.png", "caption": "A male vocalist sings this energetic rock song. The song is fast tempo with emphatic drumming, groovy bass lines, funky electric guitar feedback and keyboard accompaniment, with animated, high pitched backup. The song is youthful, energetic,spirited, intense, psychedelic and passionate. This song is Hard Rock.", "data_idx": 2038, "number": 3, "label": "metal"} +{"file_name": "train_03824.png", "caption": "The low quality recording features an electro song that consists of percussive elements, echoing hi hats, shimmering shakers, cowbell, claps and repetitive percussive bass loop. At the end of the loop, there are snare rolls and risers layered together, building up tension for the drop. It sounds exciting and suspenseful.", "data_idx": 2039, "number": 0, "label": "hiphop"} +{"file_name": "train_03825.png", "caption": "The low quality recording features an electro song that consists of percussive elements, echoing hi hats, shimmering shakers, cowbell, claps and repetitive percussive bass loop. At the end of the loop, there are snare rolls and risers layered together, building up tension for the drop. It sounds exciting and suspenseful.", "data_idx": 2039, "number": 1, "label": "hiphop"} +{"file_name": "train_03826.png", "caption": "This game music is an orchestral song with no lyrics. It starts off with low pitched instruments playing an eerie melody. A percussion instrument plays in the background. After the first four counts, a hissing sound is played. This song has no voices. This is a slow tempo song. It can be used in the game lobby of a game involving wizards.", "data_idx": 2040, "number": 0, "label": "classical"} +{"file_name": "train_03827.png", "caption": "This game music is an orchestral song with no lyrics. It starts off with low pitched instruments playing an eerie melody. A percussion instrument plays in the background. After the first four counts, a hissing sound is played. This song has no voices. This is a slow tempo song. It can be used in the game lobby of a game involving wizards.", "data_idx": 2040, "number": 1, "label": "classical"} +{"file_name": "train_03828.png", "caption": "This game music is an orchestral song with no lyrics. It starts off with low pitched instruments playing an eerie melody. A percussion instrument plays in the background. After the first four counts, a hissing sound is played. This song has no voices. This is a slow tempo song. It can be used in the game lobby of a game involving wizards.", "data_idx": 2040, "number": 2, "label": "classical"} +{"file_name": "train_03829.png", "caption": "This game music is an orchestral song with no lyrics. It starts off with low pitched instruments playing an eerie melody. A percussion instrument plays in the background. After the first four counts, a hissing sound is played. This song has no voices. This is a slow tempo song. It can be used in the game lobby of a game involving wizards.", "data_idx": 2040, "number": 3, "label": "classical"} +{"file_name": "train_03830.png", "caption": "Tuned bell-sounds are playing a melody walking down and up a scale along with some loud digital beeping noises also playing a melody. This song may be playing as an annoying doorbell.", "data_idx": 2043, "number": 0, "label": "classical"} +{"file_name": "train_03831.png", "caption": "Tuned bell-sounds are playing a melody walking down and up a scale along with some loud digital beeping noises also playing a melody. This song may be playing as an annoying doorbell.", "data_idx": 2043, "number": 1, "label": "classical"} +{"file_name": "train_03832.png", "caption": "Tuned bell-sounds are playing a melody walking down and up a scale along with some loud digital beeping noises also playing a melody. This song may be playing as an annoying doorbell.", "data_idx": 2043, "number": 2, "label": "classical"} +{"file_name": "train_03833.png", "caption": "Tuned bell-sounds are playing a melody walking down and up a scale along with some loud digital beeping noises also playing a melody. This song may be playing as an annoying doorbell.", "data_idx": 2043, "number": 3, "label": "classical"} +{"file_name": "train_03834.png", "caption": "The low quality recording features a pop song that consists of groovy piano chords, harmonizing background vocals, punchy kick and snare hits, shimmering shakers, groovy bass and muffled female vocals singing over it. It sounds energetic, happy, fun and addictive - like something you would hear on a radio.", "data_idx": 2044, "number": 0, "label": "pop"} +{"file_name": "train_03835.png", "caption": "The low quality recording features a pop song that consists of groovy piano chords, harmonizing background vocals, punchy kick and snare hits, shimmering shakers, groovy bass and muffled female vocals singing over it. It sounds energetic, happy, fun and addictive - like something you would hear on a radio.", "data_idx": 2044, "number": 1, "label": "pop"} +{"file_name": "train_03836.png", "caption": "The low quality recording features a pop song that consists of groovy piano chords, harmonizing background vocals, punchy kick and snare hits, shimmering shakers, groovy bass and muffled female vocals singing over it. It sounds energetic, happy, fun and addictive - like something you would hear on a radio.", "data_idx": 2044, "number": 2, "label": "pop"} +{"file_name": "train_03837.png", "caption": "The low quality recording features a pop song that consists of groovy piano chords, harmonizing background vocals, punchy kick and snare hits, shimmering shakers, groovy bass and muffled female vocals singing over it. It sounds energetic, happy, fun and addictive - like something you would hear on a radio.", "data_idx": 2044, "number": 3, "label": "pop"} +{"file_name": "train_03838.png", "caption": "This is a hardcore rave music piece. There is a female vocalist singing melodically. The high-pitched synth is playing the main theme while an ambient synth with medium-pitched characteristics is playing in the background. A very loud and fast-paced electronic drum beat carries the rhythmic background. The atmosphere is very energetic. This piece could be used in an anime or a video game. It could also be used in DJ sets at rave venues.", "data_idx": 2045, "number": 0, "label": "disco"} +{"file_name": "train_03839.png", "caption": "This is a hardcore rave music piece. There is a female vocalist singing melodically. The high-pitched synth is playing the main theme while an ambient synth with medium-pitched characteristics is playing in the background. A very loud and fast-paced electronic drum beat carries the rhythmic background. The atmosphere is very energetic. This piece could be used in an anime or a video game. It could also be used in DJ sets at rave venues.", "data_idx": 2045, "number": 1, "label": "disco"} +{"file_name": "train_03840.png", "caption": "This is a hardcore rave music piece. There is a female vocalist singing melodically. The high-pitched synth is playing the main theme while an ambient synth with medium-pitched characteristics is playing in the background. A very loud and fast-paced electronic drum beat carries the rhythmic background. The atmosphere is very energetic. This piece could be used in an anime or a video game. It could also be used in DJ sets at rave venues.", "data_idx": 2045, "number": 2, "label": "disco"} +{"file_name": "train_03841.png", "caption": "This is a hardcore rave music piece. There is a female vocalist singing melodically. The high-pitched synth is playing the main theme while an ambient synth with medium-pitched characteristics is playing in the background. A very loud and fast-paced electronic drum beat carries the rhythmic background. The atmosphere is very energetic. This piece could be used in an anime or a video game. It could also be used in DJ sets at rave venues.", "data_idx": 2045, "number": 3, "label": "disco"} +{"file_name": "train_03842.png", "caption": "This heavy metal song features a male voice singing at a distance in the background. Distortion guitars play a riff and end with a power chord. This is accompanied by percussion playing an aggressive metal beat. The bass follows the rhythm guitar for the beginning of the song and later plays licks while the notes of the distortion guitars are sustained. The mood of this song is aggressive. This song can be played on the entrance of a WWE star into the arena.", "data_idx": 2046, "number": 0, "label": "metal"} +{"file_name": "train_03843.png", "caption": "This heavy metal song features a male voice singing at a distance in the background. Distortion guitars play a riff and end with a power chord. This is accompanied by percussion playing an aggressive metal beat. The bass follows the rhythm guitar for the beginning of the song and later plays licks while the notes of the distortion guitars are sustained. The mood of this song is aggressive. This song can be played on the entrance of a WWE star into the arena.", "data_idx": 2046, "number": 1, "label": "metal"} +{"file_name": "train_03844.png", "caption": "This heavy metal song features a male voice singing at a distance in the background. Distortion guitars play a riff and end with a power chord. This is accompanied by percussion playing an aggressive metal beat. The bass follows the rhythm guitar for the beginning of the song and later plays licks while the notes of the distortion guitars are sustained. The mood of this song is aggressive. This song can be played on the entrance of a WWE star into the arena.", "data_idx": 2046, "number": 2, "label": "metal"} +{"file_name": "train_03845.png", "caption": "This heavy metal song features a male voice singing at a distance in the background. Distortion guitars play a riff and end with a power chord. This is accompanied by percussion playing an aggressive metal beat. The bass follows the rhythm guitar for the beginning of the song and later plays licks while the notes of the distortion guitars are sustained. The mood of this song is aggressive. This song can be played on the entrance of a WWE star into the arena.", "data_idx": 2046, "number": 3, "label": "metal"} +{"file_name": "train_03846.png", "caption": "Two viola/cello like instruments being played with a bow and a lot of tremolo. It sounds like they are complaining and crying, full of pain. They both are playing a melody as they are talking to each other. A low basslike drumhit/kick with a long release is hitting one single note. You can hear some white noise in this recording. This song may be playing in a sad and disturbing scene of a retro movie.", "data_idx": 2048, "number": 0, "label": "classical"} +{"file_name": "train_03847.png", "caption": "Two viola/cello like instruments being played with a bow and a lot of tremolo. It sounds like they are complaining and crying, full of pain. They both are playing a melody as they are talking to each other. A low basslike drumhit/kick with a long release is hitting one single note. You can hear some white noise in this recording. This song may be playing in a sad and disturbing scene of a retro movie.", "data_idx": 2048, "number": 1, "label": "classical"} +{"file_name": "train_03848.png", "caption": "Two viola/cello like instruments being played with a bow and a lot of tremolo. It sounds like they are complaining and crying, full of pain. They both are playing a melody as they are talking to each other. A low basslike drumhit/kick with a long release is hitting one single note. You can hear some white noise in this recording. This song may be playing in a sad and disturbing scene of a retro movie.", "data_idx": 2048, "number": 2, "label": "classical"} +{"file_name": "train_03849.png", "caption": "Two viola/cello like instruments being played with a bow and a lot of tremolo. It sounds like they are complaining and crying, full of pain. They both are playing a melody as they are talking to each other. A low basslike drumhit/kick with a long release is hitting one single note. You can hear some white noise in this recording. This song may be playing in a sad and disturbing scene of a retro movie.", "data_idx": 2048, "number": 3, "label": "classical"} +{"file_name": "train_03850.png", "caption": "This is an instrumental kids song. There is a xylophone and a music box playing a cute and cheerful melody. The atmosphere of the piece is cozy and relaxing. This piece could be used as a backing track for a nursery rhyme. It could be used in the soundtrack of a movie targeted at children.", "data_idx": 2049, "number": 0, "label": "hiphop"} +{"file_name": "train_03851.png", "caption": "This is an instrumental kids song. There is a xylophone and a music box playing a cute and cheerful melody. The atmosphere of the piece is cozy and relaxing. This piece could be used as a backing track for a nursery rhyme. It could be used in the soundtrack of a movie targeted at children.", "data_idx": 2049, "number": 1, "label": "hiphop"} +{"file_name": "train_03852.png", "caption": "This is an instrumental kids song. There is a xylophone and a music box playing a cute and cheerful melody. The atmosphere of the piece is cozy and relaxing. This piece could be used as a backing track for a nursery rhyme. It could be used in the soundtrack of a movie targeted at children.", "data_idx": 2049, "number": 2, "label": "hiphop"} +{"file_name": "train_03853.png", "caption": "This is an instrumental kids song. There is a xylophone and a music box playing a cute and cheerful melody. The atmosphere of the piece is cozy and relaxing. This piece could be used as a backing track for a nursery rhyme. It could be used in the soundtrack of a movie targeted at children.", "data_idx": 2049, "number": 3, "label": "hiphop"} +{"file_name": "train_03854.png", "caption": "The low quality recording features a hip hop song that consists of harmonizing male vocals, alongside background male vocals in the left channel and rough, repetitive male vocals in the right channel of the stereo image, singing over addictive synth lead melody, straight synth piano chords, boomy 808 bass and snaps. Right before the bass drops, there is a short snare roll. It sounds groovy and addictive, like something you would hear in clubs a lot.", "data_idx": 2050, "number": 0, "label": "hiphop"} +{"file_name": "train_03855.png", "caption": "The low quality recording features a hip hop song that consists of harmonizing male vocals, alongside background male vocals in the left channel and rough, repetitive male vocals in the right channel of the stereo image, singing over addictive synth lead melody, straight synth piano chords, boomy 808 bass and snaps. Right before the bass drops, there is a short snare roll. It sounds groovy and addictive, like something you would hear in clubs a lot.", "data_idx": 2050, "number": 1, "label": "hiphop"} +{"file_name": "train_03856.png", "caption": "The low quality recording features a hip hop song that consists of harmonizing male vocals, alongside background male vocals in the left channel and rough, repetitive male vocals in the right channel of the stereo image, singing over addictive synth lead melody, straight synth piano chords, boomy 808 bass and snaps. Right before the bass drops, there is a short snare roll. It sounds groovy and addictive, like something you would hear in clubs a lot.", "data_idx": 2050, "number": 2, "label": "hiphop"} +{"file_name": "train_03857.png", "caption": "The low quality recording features a hip hop song that consists of harmonizing male vocals, alongside background male vocals in the left channel and rough, repetitive male vocals in the right channel of the stereo image, singing over addictive synth lead melody, straight synth piano chords, boomy 808 bass and snaps. Right before the bass drops, there is a short snare roll. It sounds groovy and addictive, like something you would hear in clubs a lot.", "data_idx": 2050, "number": 3, "label": "hiphop"} +{"file_name": "train_03858.png", "caption": "This clip is an instrumental. The tempo is slow. The music is a single, loud , resounding electric guitar riff that ends abruptly and after a pause is followed by a muffled, fast melody. The music is tense, suspenseful, sinister, anticipatory and thrilling.", "data_idx": 2051, "number": 0, "label": "hiphop"} +{"file_name": "train_03859.png", "caption": "This clip is an instrumental. The tempo is slow. The music is a single, loud , resounding electric guitar riff that ends abruptly and after a pause is followed by a muffled, fast melody. The music is tense, suspenseful, sinister, anticipatory and thrilling.", "data_idx": 2051, "number": 1, "label": "hiphop"} +{"file_name": "train_03860.png", "caption": "This clip is an instrumental. The tempo is slow. The music is a single, loud , resounding electric guitar riff that ends abruptly and after a pause is followed by a muffled, fast melody. The music is tense, suspenseful, sinister, anticipatory and thrilling.", "data_idx": 2051, "number": 2, "label": "hiphop"} +{"file_name": "train_03861.png", "caption": "This clip is an instrumental. The tempo is slow. The music is a single, loud , resounding electric guitar riff that ends abruptly and after a pause is followed by a muffled, fast melody. The music is tense, suspenseful, sinister, anticipatory and thrilling.", "data_idx": 2051, "number": 3, "label": "hiphop"} +{"file_name": "train_03862.png", "caption": "This is a swing jazz music performance. The main melody is being played by trumpets while the brass section as a whole provides the melodic background. There is an upright bass playing an eighth-note walking bass line. The acoustic drums are playing a swing jazz beat in the rhythmic background. There is a smooth and vibrant atmosphere to the piece. It could be playing in the soundtrack of a video game. This piece could also be used in the soundtracks of historical drama pieces.", "data_idx": 2052, "number": 0, "label": "jazz"} +{"file_name": "train_03863.png", "caption": "This is a swing jazz music performance. The main melody is being played by trumpets while the brass section as a whole provides the melodic background. There is an upright bass playing an eighth-note walking bass line. The acoustic drums are playing a swing jazz beat in the rhythmic background. There is a smooth and vibrant atmosphere to the piece. It could be playing in the soundtrack of a video game. This piece could also be used in the soundtracks of historical drama pieces.", "data_idx": 2052, "number": 1, "label": "jazz"} +{"file_name": "train_03864.png", "caption": "This is a swing jazz music performance. The main melody is being played by trumpets while the brass section as a whole provides the melodic background. There is an upright bass playing an eighth-note walking bass line. The acoustic drums are playing a swing jazz beat in the rhythmic background. There is a smooth and vibrant atmosphere to the piece. It could be playing in the soundtrack of a video game. This piece could also be used in the soundtracks of historical drama pieces.", "data_idx": 2052, "number": 2, "label": "jazz"} +{"file_name": "train_03865.png", "caption": "This is a swing jazz music performance. The main melody is being played by trumpets while the brass section as a whole provides the melodic background. There is an upright bass playing an eighth-note walking bass line. The acoustic drums are playing a swing jazz beat in the rhythmic background. There is a smooth and vibrant atmosphere to the piece. It could be playing in the soundtrack of a video game. This piece could also be used in the soundtracks of historical drama pieces.", "data_idx": 2052, "number": 3, "label": "jazz"} +{"file_name": "train_03866.png", "caption": "This is Electronic Dance music. The tempo is fast with synthesiser arrangements, punchy Digital drum rhythm, electronic sounds and a recurring, catchy vocal riff with the sound of talking in the background.The music is obscure as it is an amateur recording . It is buoyant, youthful, energetic, enthusiastic, and pulsating with a dance groove.", "data_idx": 2053, "number": 0, "label": "classical"} +{"file_name": "train_03867.png", "caption": "This is Electronic Dance music. The tempo is fast with synthesiser arrangements, punchy Digital drum rhythm, electronic sounds and a recurring, catchy vocal riff with the sound of talking in the background.The music is obscure as it is an amateur recording . It is buoyant, youthful, energetic, enthusiastic, and pulsating with a dance groove.", "data_idx": 2053, "number": 1, "label": "classical"} +{"file_name": "train_03868.png", "caption": "This is Electronic Dance music. The tempo is fast with synthesiser arrangements, punchy Digital drum rhythm, electronic sounds and a recurring, catchy vocal riff with the sound of talking in the background.The music is obscure as it is an amateur recording . It is buoyant, youthful, energetic, enthusiastic, and pulsating with a dance groove.", "data_idx": 2053, "number": 2, "label": "classical"} +{"file_name": "train_03869.png", "caption": "This is Electronic Dance music. The tempo is fast with synthesiser arrangements, punchy Digital drum rhythm, electronic sounds and a recurring, catchy vocal riff with the sound of talking in the background.The music is obscure as it is an amateur recording . It is buoyant, youthful, energetic, enthusiastic, and pulsating with a dance groove.", "data_idx": 2053, "number": 3, "label": "classical"} +{"file_name": "train_03870.png", "caption": "The low quality recording features a live performance of mellow arpeggiated piano melody playing in the background and theremin sad lead melody playing on top of it. It sounds emotional, sad, muffled and dull, as the recording is lacking some high frequencies.", "data_idx": 2058, "number": 0, "label": "classical"} +{"file_name": "train_03871.png", "caption": "The low quality recording features a live performance of mellow arpeggiated piano melody playing in the background and theremin sad lead melody playing on top of it. It sounds emotional, sad, muffled and dull, as the recording is lacking some high frequencies.", "data_idx": 2058, "number": 1, "label": "classical"} +{"file_name": "train_03872.png", "caption": "The low quality recording features a live performance of mellow arpeggiated piano melody playing in the background and theremin sad lead melody playing on top of it. It sounds emotional, sad, muffled and dull, as the recording is lacking some high frequencies.", "data_idx": 2058, "number": 2, "label": "classical"} +{"file_name": "train_03873.png", "caption": "The low quality recording features a live performance of mellow arpeggiated piano melody playing in the background and theremin sad lead melody playing on top of it. It sounds emotional, sad, muffled and dull, as the recording is lacking some high frequencies.", "data_idx": 2058, "number": 3, "label": "classical"} +{"file_name": "train_03874.png", "caption": "The track is of a baby crying incessantly being consoled by a song being played on a phone. The song is medium tempo with a male singer singing to Bollywood music. The audio quality is extremely poor.", "data_idx": 2059, "number": 0, "label": "jazz"} +{"file_name": "train_03875.png", "caption": "The track is of a baby crying incessantly being consoled by a song being played on a phone. The song is medium tempo with a male singer singing to Bollywood music. The audio quality is extremely poor.", "data_idx": 2059, "number": 1, "label": "jazz"} +{"file_name": "train_03876.png", "caption": "The track is of a baby crying incessantly being consoled by a song being played on a phone. The song is medium tempo with a male singer singing to Bollywood music. The audio quality is extremely poor.", "data_idx": 2059, "number": 2, "label": "jazz"} +{"file_name": "train_03877.png", "caption": "The track is of a baby crying incessantly being consoled by a song being played on a phone. The song is medium tempo with a male singer singing to Bollywood music. The audio quality is extremely poor.", "data_idx": 2059, "number": 3, "label": "jazz"} +{"file_name": "train_03878.png", "caption": "This is a pop-rap/dance-rap piece. There is a male vocal rapping joined by the occasional samples of other rappers. The electronic drums and the electronic percussion are providing the rhythmic background. There is a strong 808-style syncopated bass. The atmosphere has a groovy feeling to it. This song could be used in nightclubs and sports venues.", "data_idx": 2062, "number": 0, "label": "reggae"} +{"file_name": "train_03879.png", "caption": "This is a pop-rap/dance-rap piece. There is a male vocal rapping joined by the occasional samples of other rappers. The electronic drums and the electronic percussion are providing the rhythmic background. There is a strong 808-style syncopated bass. The atmosphere has a groovy feeling to it. This song could be used in nightclubs and sports venues.", "data_idx": 2062, "number": 1, "label": "reggae"} +{"file_name": "train_03880.png", "caption": "This is a pop-rap/dance-rap piece. There is a male vocal rapping joined by the occasional samples of other rappers. The electronic drums and the electronic percussion are providing the rhythmic background. There is a strong 808-style syncopated bass. The atmosphere has a groovy feeling to it. This song could be used in nightclubs and sports venues.", "data_idx": 2062, "number": 2, "label": "reggae"} +{"file_name": "train_03881.png", "caption": "This is a pop-rap/dance-rap piece. There is a male vocal rapping joined by the occasional samples of other rappers. The electronic drums and the electronic percussion are providing the rhythmic background. There is a strong 808-style syncopated bass. The atmosphere has a groovy feeling to it. This song could be used in nightclubs and sports venues.", "data_idx": 2062, "number": 3, "label": "reggae"} +{"file_name": "train_03882.png", "caption": "This children's song features a male voice singing the main melody. Other voices sing vocables in harmony in the beginning and after the lyrics are sung. This is accompanied by percussion playing a fast beat. The bass plays the root notes of the chords. A synth plays an ascending lick with the vocables in the beginning. When the words are sung, the synth plays the same melody as the main voice. This is a moderate tempo song. The mood of this song is happy. This song can be sung in a children's action movie.", "data_idx": 2064, "number": 0, "label": "hiphop"} +{"file_name": "train_03883.png", "caption": "This children's song features a male voice singing the main melody. Other voices sing vocables in harmony in the beginning and after the lyrics are sung. This is accompanied by percussion playing a fast beat. The bass plays the root notes of the chords. A synth plays an ascending lick with the vocables in the beginning. When the words are sung, the synth plays the same melody as the main voice. This is a moderate tempo song. The mood of this song is happy. This song can be sung in a children's action movie.", "data_idx": 2064, "number": 1, "label": "hiphop"} +{"file_name": "train_03884.png", "caption": "This children's song features a male voice singing the main melody. Other voices sing vocables in harmony in the beginning and after the lyrics are sung. This is accompanied by percussion playing a fast beat. The bass plays the root notes of the chords. A synth plays an ascending lick with the vocables in the beginning. When the words are sung, the synth plays the same melody as the main voice. This is a moderate tempo song. The mood of this song is happy. This song can be sung in a children's action movie.", "data_idx": 2064, "number": 2, "label": "hiphop"} +{"file_name": "train_03885.png", "caption": "This children's song features a male voice singing the main melody. Other voices sing vocables in harmony in the beginning and after the lyrics are sung. This is accompanied by percussion playing a fast beat. The bass plays the root notes of the chords. A synth plays an ascending lick with the vocables in the beginning. When the words are sung, the synth plays the same melody as the main voice. This is a moderate tempo song. The mood of this song is happy. This song can be sung in a children's action movie.", "data_idx": 2064, "number": 3, "label": "hiphop"} +{"file_name": "train_03886.png", "caption": "The low quality recording features a cover of a children's song and it consists of an emotional girl vocal singing over acoustic rhythm guitar located in the right channel of the stereo image, which makes the stereo image unbalanced. The recording is a bit noisy and It sounds fun, happy, emotional and innocent.", "data_idx": 2065, "number": 0, "label": "rock"} +{"file_name": "train_03887.png", "caption": "The low quality recording features a cover of a children's song and it consists of an emotional girl vocal singing over acoustic rhythm guitar located in the right channel of the stereo image, which makes the stereo image unbalanced. The recording is a bit noisy and It sounds fun, happy, emotional and innocent.", "data_idx": 2065, "number": 1, "label": "rock"} +{"file_name": "train_03888.png", "caption": "The low quality recording features a cover of a children's song and it consists of an emotional girl vocal singing over acoustic rhythm guitar located in the right channel of the stereo image, which makes the stereo image unbalanced. The recording is a bit noisy and It sounds fun, happy, emotional and innocent.", "data_idx": 2065, "number": 2, "label": "rock"} +{"file_name": "train_03889.png", "caption": "The low quality recording features a cover of a children's song and it consists of an emotional girl vocal singing over acoustic rhythm guitar located in the right channel of the stereo image, which makes the stereo image unbalanced. The recording is a bit noisy and It sounds fun, happy, emotional and innocent.", "data_idx": 2065, "number": 3, "label": "rock"} +{"file_name": "train_03890.png", "caption": "This is the opening jingle of a TV show that is in the style of a mashup. There is a male voice speaking and then burping. There is a melodic pad playing at random occasions. A female vocalist can be heard singing with a keyboard melody and an electronic drum beat very briefly. Then the male voice and the pad returns. There is a chaotic atmosphere. Separate samples from this piece could be used in both beat-making and DJ sets/remixes.", "data_idx": 2067, "number": 0, "label": "hiphop"} +{"file_name": "train_03891.png", "caption": "This is the opening jingle of a TV show that is in the style of a mashup. There is a male voice speaking and then burping. There is a melodic pad playing at random occasions. A female vocalist can be heard singing with a keyboard melody and an electronic drum beat very briefly. Then the male voice and the pad returns. There is a chaotic atmosphere. Separate samples from this piece could be used in both beat-making and DJ sets/remixes.", "data_idx": 2067, "number": 1, "label": "hiphop"} +{"file_name": "train_03892.png", "caption": "A mid-tempo two chord vamp on a roots rock song. The music is instrumental, featuring a strummed acoustic guitar, drum set, electric guitar, and pedal steel. The feeling is melancholic.", "data_idx": 2068, "number": 0, "label": "rock"} +{"file_name": "train_03893.png", "caption": "A mid-tempo two chord vamp on a roots rock song. The music is instrumental, featuring a strummed acoustic guitar, drum set, electric guitar, and pedal steel. The feeling is melancholic.", "data_idx": 2068, "number": 1, "label": "rock"} +{"file_name": "train_03894.png", "caption": "A mid-tempo two chord vamp on a roots rock song. The music is instrumental, featuring a strummed acoustic guitar, drum set, electric guitar, and pedal steel. The feeling is melancholic.", "data_idx": 2068, "number": 2, "label": "rock"} +{"file_name": "train_03895.png", "caption": "A mid-tempo two chord vamp on a roots rock song. The music is instrumental, featuring a strummed acoustic guitar, drum set, electric guitar, and pedal steel. The feeling is melancholic.", "data_idx": 2068, "number": 3, "label": "rock"} +{"file_name": "train_03896.png", "caption": "A drum is playing a groove with a strong snare sound. An e-guitar is strumming short funky chords on the offbeat creating a reggae style rhythm. A male backing voice is shouting in the same offbeat. An e-bass is playing a soft funky bassline while a male voice sings in the mid range. A trumpet is adding a short melody on top spicing up the good vibes. This song may be playing in a car racing video-game.", "data_idx": 2070, "number": 0, "label": "hiphop"} +{"file_name": "train_03897.png", "caption": "A drum is playing a groove with a strong snare sound. An e-guitar is strumming short funky chords on the offbeat creating a reggae style rhythm. A male backing voice is shouting in the same offbeat. An e-bass is playing a soft funky bassline while a male voice sings in the mid range. A trumpet is adding a short melody on top spicing up the good vibes. This song may be playing in a car racing video-game.", "data_idx": 2070, "number": 1, "label": "hiphop"} +{"file_name": "train_03898.png", "caption": "A drum is playing a groove with a strong snare sound. An e-guitar is strumming short funky chords on the offbeat creating a reggae style rhythm. A male backing voice is shouting in the same offbeat. An e-bass is playing a soft funky bassline while a male voice sings in the mid range. A trumpet is adding a short melody on top spicing up the good vibes. This song may be playing in a car racing video-game.", "data_idx": 2070, "number": 2, "label": "hiphop"} +{"file_name": "train_03899.png", "caption": "A drum is playing a groove with a strong snare sound. An e-guitar is strumming short funky chords on the offbeat creating a reggae style rhythm. A male backing voice is shouting in the same offbeat. An e-bass is playing a soft funky bassline while a male voice sings in the mid range. A trumpet is adding a short melody on top spicing up the good vibes. This song may be playing in a car racing video-game.", "data_idx": 2070, "number": 3, "label": "hiphop"} +{"file_name": "train_03900.png", "caption": "A male vocalist sings this animated and upbeat pop song. The song starts with a slow tempo with male vocals and soft but emphatic piano accompaniment and cello drone, and a whirring sound like a camera rolling. Post this the song picks up to an upbeat tempo with hard hitting drumming, cymbal rides, upbeat synthesiser harmony and electronic instruments. The song is a ,vibrant, spirited, bouncy, punchy, vivacious, youthful Electronic Dance music/Synth Pop.", "data_idx": 2075, "number": 0, "label": "disco"} +{"file_name": "train_03901.png", "caption": "A male vocalist sings this animated and upbeat pop song. The song starts with a slow tempo with male vocals and soft but emphatic piano accompaniment and cello drone, and a whirring sound like a camera rolling. Post this the song picks up to an upbeat tempo with hard hitting drumming, cymbal rides, upbeat synthesiser harmony and electronic instruments. The song is a ,vibrant, spirited, bouncy, punchy, vivacious, youthful Electronic Dance music/Synth Pop.", "data_idx": 2075, "number": 1, "label": "disco"} +{"file_name": "train_03902.png", "caption": "A male vocalist sings this animated and upbeat pop song. The song starts with a slow tempo with male vocals and soft but emphatic piano accompaniment and cello drone, and a whirring sound like a camera rolling. Post this the song picks up to an upbeat tempo with hard hitting drumming, cymbal rides, upbeat synthesiser harmony and electronic instruments. The song is a ,vibrant, spirited, bouncy, punchy, vivacious, youthful Electronic Dance music/Synth Pop.", "data_idx": 2075, "number": 2, "label": "disco"} +{"file_name": "train_03903.png", "caption": "A male vocalist sings this animated and upbeat pop song. The song starts with a slow tempo with male vocals and soft but emphatic piano accompaniment and cello drone, and a whirring sound like a camera rolling. Post this the song picks up to an upbeat tempo with hard hitting drumming, cymbal rides, upbeat synthesiser harmony and electronic instruments. The song is a ,vibrant, spirited, bouncy, punchy, vivacious, youthful Electronic Dance music/Synth Pop.", "data_idx": 2075, "number": 3, "label": "disco"} +{"file_name": "train_03904.png", "caption": "A Vibraphone and a marimba are playing a composition with a lot of reverb. This is an amateur recording. This song may be playing at a school concert.", "data_idx": 2078, "number": 0, "label": "classical"} +{"file_name": "train_03905.png", "caption": "A Vibraphone and a marimba are playing a composition with a lot of reverb. This is an amateur recording. This song may be playing at a school concert.", "data_idx": 2078, "number": 1, "label": "classical"} +{"file_name": "train_03906.png", "caption": "A Vibraphone and a marimba are playing a composition with a lot of reverb. This is an amateur recording. This song may be playing at a school concert.", "data_idx": 2078, "number": 2, "label": "classical"} +{"file_name": "train_03907.png", "caption": "A Vibraphone and a marimba are playing a composition with a lot of reverb. This is an amateur recording. This song may be playing at a school concert.", "data_idx": 2078, "number": 3, "label": "classical"} +{"file_name": "train_03908.png", "caption": "The song feels funky and soulful. There's a rumbling funky bassline, and an electric guitar playing intermittent licks. The drumming sticks on the hi-hats for the feeling of a build-up;. The female vocalist has a powerful, soulful voice.", "data_idx": 2079, "number": 0, "label": "disco"} +{"file_name": "train_03909.png", "caption": "The song feels funky and soulful. There's a rumbling funky bassline, and an electric guitar playing intermittent licks. The drumming sticks on the hi-hats for the feeling of a build-up;. The female vocalist has a powerful, soulful voice.", "data_idx": 2079, "number": 1, "label": "disco"} +{"file_name": "train_03910.png", "caption": "The song feels funky and soulful. There's a rumbling funky bassline, and an electric guitar playing intermittent licks. The drumming sticks on the hi-hats for the feeling of a build-up;. The female vocalist has a powerful, soulful voice.", "data_idx": 2079, "number": 2, "label": "disco"} +{"file_name": "train_03911.png", "caption": "The song feels funky and soulful. There's a rumbling funky bassline, and an electric guitar playing intermittent licks. The drumming sticks on the hi-hats for the feeling of a build-up;. The female vocalist has a powerful, soulful voice.", "data_idx": 2079, "number": 3, "label": "disco"} +{"file_name": "train_03912.png", "caption": "Someone is playing bongos or congas holding a simple groove while someone is playing a shaker here and there. Someone is playing a didgeridoo. The whole recording is full of a little reverb and the percussion is panned to the left and right side of the speakers. This song may be playing while meditating or doing slow movements as dancing.", "data_idx": 2081, "number": 0, "label": "reggae"} +{"file_name": "train_03913.png", "caption": "Someone is playing bongos or congas holding a simple groove while someone is playing a shaker here and there. Someone is playing a didgeridoo. The whole recording is full of a little reverb and the percussion is panned to the left and right side of the speakers. This song may be playing while meditating or doing slow movements as dancing.", "data_idx": 2081, "number": 1, "label": "reggae"} +{"file_name": "train_03914.png", "caption": "Someone is playing bongos or congas holding a simple groove while someone is playing a shaker here and there. Someone is playing a didgeridoo. The whole recording is full of a little reverb and the percussion is panned to the left and right side of the speakers. This song may be playing while meditating or doing slow movements as dancing.", "data_idx": 2081, "number": 2, "label": "reggae"} +{"file_name": "train_03915.png", "caption": "Someone is playing bongos or congas holding a simple groove while someone is playing a shaker here and there. Someone is playing a didgeridoo. The whole recording is full of a little reverb and the percussion is panned to the left and right side of the speakers. This song may be playing while meditating or doing slow movements as dancing.", "data_idx": 2081, "number": 3, "label": "reggae"} +{"file_name": "train_03916.png", "caption": "Percussions and tablas are playing a steady rhythm while a female voice sings a sad sounding melody in a high pitched voice. String instruments are playing along with the melody while others are adding a short melody at the end of a musical phrase. This song may be playing in a Hindi-movie.", "data_idx": 2083, "number": 0, "label": "jazz"} +{"file_name": "train_03917.png", "caption": "Percussions and tablas are playing a steady rhythm while a female voice sings a sad sounding melody in a high pitched voice. String instruments are playing along with the melody while others are adding a short melody at the end of a musical phrase. This song may be playing in a Hindi-movie.", "data_idx": 2083, "number": 1, "label": "jazz"} +{"file_name": "train_03918.png", "caption": "Percussions and tablas are playing a steady rhythm while a female voice sings a sad sounding melody in a high pitched voice. String instruments are playing along with the melody while others are adding a short melody at the end of a musical phrase. This song may be playing in a Hindi-movie.", "data_idx": 2083, "number": 2, "label": "jazz"} +{"file_name": "train_03919.png", "caption": "Percussions and tablas are playing a steady rhythm while a female voice sings a sad sounding melody in a high pitched voice. String instruments are playing along with the melody while others are adding a short melody at the end of a musical phrase. This song may be playing in a Hindi-movie.", "data_idx": 2083, "number": 3, "label": "jazz"} +{"file_name": "train_03920.png", "caption": "This clip features low quality audio. This clip is of a male voice singing the main melody. The voice is emotional. This is accompanied by a piano playing chords. There are no other instruments in this song. The theme of this song is romantic.", "data_idx": 2084, "number": 0, "label": "classical"} +{"file_name": "train_03921.png", "caption": "This clip features low quality audio. This clip is of a male voice singing the main melody. The voice is emotional. This is accompanied by a piano playing chords. There are no other instruments in this song. The theme of this song is romantic.", "data_idx": 2084, "number": 1, "label": "classical"} +{"file_name": "train_03922.png", "caption": "This clip features low quality audio. This clip is of a male voice singing the main melody. The voice is emotional. This is accompanied by a piano playing chords. There are no other instruments in this song. The theme of this song is romantic.", "data_idx": 2084, "number": 2, "label": "classical"} +{"file_name": "train_03923.png", "caption": "This clip features low quality audio. This clip is of a male voice singing the main melody. The voice is emotional. This is accompanied by a piano playing chords. There are no other instruments in this song. The theme of this song is romantic.", "data_idx": 2084, "number": 3, "label": "classical"} +{"file_name": "train_03924.png", "caption": "The song is an instrumental. The tempo is medium with a slick drumming rhythm and a DJ creating cool melodies by scratching and manipulating spinning music discs. The song is energetic and has a dance groove. The song is electronic dance music with poor audio quality and is at home.", "data_idx": 2086, "number": 0, "label": "blues"} +{"file_name": "train_03925.png", "caption": "The song is an instrumental. The tempo is medium with a slick drumming rhythm and a DJ creating cool melodies by scratching and manipulating spinning music discs. The song is energetic and has a dance groove. The song is electronic dance music with poor audio quality and is at home.", "data_idx": 2086, "number": 1, "label": "blues"} +{"file_name": "train_03926.png", "caption": "The song is an instrumental. The tempo is medium with a slick drumming rhythm and a DJ creating cool melodies by scratching and manipulating spinning music discs. The song is energetic and has a dance groove. The song is electronic dance music with poor audio quality and is at home.", "data_idx": 2086, "number": 2, "label": "blues"} +{"file_name": "train_03927.png", "caption": "The song is an instrumental. The tempo is medium with a slick drumming rhythm and a DJ creating cool melodies by scratching and manipulating spinning music discs. The song is energetic and has a dance groove. The song is electronic dance music with poor audio quality and is at home.", "data_idx": 2086, "number": 3, "label": "blues"} +{"file_name": "train_03928.png", "caption": "This song is an electronic instrumental. It is medium tempo with a recurring vocal riff, steady drumming, table turner arrangement and distorted sounds like metal scratching. The audio is muffled, making it difficult to hear the finer elements of the song.The repetitive beats and rhythm give it a trippy, psychedelic and trance vibe.", "data_idx": 2089, "number": 0, "label": "disco"} +{"file_name": "train_03929.png", "caption": "This song is an electronic instrumental. It is medium tempo with a recurring vocal riff, steady drumming, table turner arrangement and distorted sounds like metal scratching. The audio is muffled, making it difficult to hear the finer elements of the song.The repetitive beats and rhythm give it a trippy, psychedelic and trance vibe.", "data_idx": 2089, "number": 1, "label": "disco"} +{"file_name": "train_03930.png", "caption": "This song is an electronic instrumental. It is medium tempo with a recurring vocal riff, steady drumming, table turner arrangement and distorted sounds like metal scratching. The audio is muffled, making it difficult to hear the finer elements of the song.The repetitive beats and rhythm give it a trippy, psychedelic and trance vibe.", "data_idx": 2089, "number": 2, "label": "disco"} +{"file_name": "train_03931.png", "caption": "This song is an electronic instrumental. It is medium tempo with a recurring vocal riff, steady drumming, table turner arrangement and distorted sounds like metal scratching. The audio is muffled, making it difficult to hear the finer elements of the song.The repetitive beats and rhythm give it a trippy, psychedelic and trance vibe.", "data_idx": 2089, "number": 3, "label": "disco"} +{"file_name": "train_03932.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing lead and rhythm with differences ranging from echo tones to distorted high gains. The song is a guitar reverb pedal test or demonstration. The audio quality is poor with high gains.", "data_idx": 2090, "number": 0, "label": "classical"} +{"file_name": "train_03933.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing lead and rhythm with differences ranging from echo tones to distorted high gains. The song is a guitar reverb pedal test or demonstration. The audio quality is poor with high gains.", "data_idx": 2090, "number": 1, "label": "classical"} +{"file_name": "train_03934.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing lead and rhythm with differences ranging from echo tones to distorted high gains. The song is a guitar reverb pedal test or demonstration. The audio quality is poor with high gains.", "data_idx": 2090, "number": 2, "label": "classical"} +{"file_name": "train_03935.png", "caption": "The song is an instrumental. The tempo is medium with a guitar playing lead and rhythm with differences ranging from echo tones to distorted high gains. The song is a guitar reverb pedal test or demonstration. The audio quality is poor with high gains.", "data_idx": 2090, "number": 3, "label": "classical"} +{"file_name": "train_03936.png", "caption": "This is a classical music piece with its main tune played on the theremin instrument. At the same time, a piano plays the chords in the background. It is a unique instrumental piece with a bizarre atmosphere. It could take place in the soundtrack of an art movie.", "data_idx": 2091, "number": 0, "label": "classical"} +{"file_name": "train_03937.png", "caption": "This is a classical music piece with its main tune played on the theremin instrument. At the same time, a piano plays the chords in the background. It is a unique instrumental piece with a bizarre atmosphere. It could take place in the soundtrack of an art movie.", "data_idx": 2091, "number": 1, "label": "classical"} +{"file_name": "train_03938.png", "caption": "This is a classical music piece with its main tune played on the theremin instrument. At the same time, a piano plays the chords in the background. It is a unique instrumental piece with a bizarre atmosphere. It could take place in the soundtrack of an art movie.", "data_idx": 2091, "number": 2, "label": "classical"} +{"file_name": "train_03939.png", "caption": "This is a classical music piece with its main tune played on the theremin instrument. At the same time, a piano plays the chords in the background. It is a unique instrumental piece with a bizarre atmosphere. It could take place in the soundtrack of an art movie.", "data_idx": 2091, "number": 3, "label": "classical"} +{"file_name": "train_03940.png", "caption": "A male sings this resounding chant. The tempo is slow with no instrumentation. The chants are musical verses, meditative choral harmony.it is prayerful, calming, pensive, sacred, prayerful and soulful.", "data_idx": 2093, "number": 0, "label": "blues"} +{"file_name": "train_03941.png", "caption": "A male sings this resounding chant. The tempo is slow with no instrumentation. The chants are musical verses, meditative choral harmony.it is prayerful, calming, pensive, sacred, prayerful and soulful.", "data_idx": 2093, "number": 1, "label": "blues"} +{"file_name": "train_03942.png", "caption": "A male sings this resounding chant. The tempo is slow with no instrumentation. The chants are musical verses, meditative choral harmony.it is prayerful, calming, pensive, sacred, prayerful and soulful.", "data_idx": 2093, "number": 2, "label": "blues"} +{"file_name": "train_03943.png", "caption": "A male sings this resounding chant. The tempo is slow with no instrumentation. The chants are musical verses, meditative choral harmony.it is prayerful, calming, pensive, sacred, prayerful and soulful.", "data_idx": 2093, "number": 3, "label": "blues"} +{"file_name": "train_03944.png", "caption": "This is an instrumental jam. The only instrument being played is a clean sounding electric guitar. The guitar solo has simple, groovy tunes played in an improvised manner. The atmosphere is easygoing. Parts of this recording could be sampled to be used in beat-making.", "data_idx": 2099, "number": 0, "label": "classical"} +{"file_name": "train_03945.png", "caption": "This is an instrumental jam. The only instrument being played is a clean sounding electric guitar. The guitar solo has simple, groovy tunes played in an improvised manner. The atmosphere is easygoing. Parts of this recording could be sampled to be used in beat-making.", "data_idx": 2099, "number": 1, "label": "classical"} +{"file_name": "train_03946.png", "caption": "This is an instrumental jam. The only instrument being played is a clean sounding electric guitar. The guitar solo has simple, groovy tunes played in an improvised manner. The atmosphere is easygoing. Parts of this recording could be sampled to be used in beat-making.", "data_idx": 2099, "number": 2, "label": "classical"} +{"file_name": "train_03947.png", "caption": "This is an instrumental jam. The only instrument being played is a clean sounding electric guitar. The guitar solo has simple, groovy tunes played in an improvised manner. The atmosphere is easygoing. Parts of this recording could be sampled to be used in beat-making.", "data_idx": 2099, "number": 3, "label": "classical"} +{"file_name": "train_03948.png", "caption": "An acoustic drum is playing a faster groove along with a bassline and a harmonica playing a chord on the offbeat and in a lower key. A e-guitar is playing a melody in the mid range. There are some background noises that remind me of someone brushing his/her teeth. This song may be playing live at a bar.", "data_idx": 2100, "number": 0, "label": "blues"} +{"file_name": "train_03949.png", "caption": "An acoustic drum is playing a faster groove along with a bassline and a harmonica playing a chord on the offbeat and in a lower key. A e-guitar is playing a melody in the mid range. There are some background noises that remind me of someone brushing his/her teeth. This song may be playing live at a bar.", "data_idx": 2100, "number": 1, "label": "blues"} +{"file_name": "train_03950.png", "caption": "An acoustic drum is playing a faster groove along with a bassline and a harmonica playing a chord on the offbeat and in a lower key. A e-guitar is playing a melody in the mid range. There are some background noises that remind me of someone brushing his/her teeth. This song may be playing live at a bar.", "data_idx": 2100, "number": 2, "label": "blues"} +{"file_name": "train_03951.png", "caption": "An acoustic drum is playing a faster groove along with a bassline and a harmonica playing a chord on the offbeat and in a lower key. A e-guitar is playing a melody in the mid range. There are some background noises that remind me of someone brushing his/her teeth. This song may be playing live at a bar.", "data_idx": 2100, "number": 3, "label": "blues"} +{"file_name": "train_03952.png", "caption": "This song is an instrumental. The tempo is medium fast with dissonant rhythm on the drum machine with no vocals. This song is a pop instrumental with drums.", "data_idx": 2106, "number": 0, "label": "hiphop"} +{"file_name": "train_03953.png", "caption": "This song is an instrumental. The tempo is medium fast with dissonant rhythm on the drum machine with no vocals. This song is a pop instrumental with drums.", "data_idx": 2106, "number": 1, "label": "hiphop"} +{"file_name": "train_03954.png", "caption": "This song is an instrumental. The tempo is medium fast with dissonant rhythm on the drum machine with no vocals. This song is a pop instrumental with drums.", "data_idx": 2106, "number": 2, "label": "hiphop"} +{"file_name": "train_03955.png", "caption": "This song is an instrumental. The tempo is medium fast with dissonant rhythm on the drum machine with no vocals. This song is a pop instrumental with drums.", "data_idx": 2106, "number": 3, "label": "hiphop"} +{"file_name": "train_03956.png", "caption": "This song is full of a digital key/pad sound taking a lot of space with a harmonic melody slightly panned to the right side of the speakers. The drums are a simple kick and clapping snare sound. Accompanied by a digital one note hit on the kick. A male doubled and panned voice is singing as backing vocals when a male mid ranged voice starts rapping. This song may be playing during a relaxing car ride with friends.", "data_idx": 2108, "number": 0, "label": "hiphop"} +{"file_name": "train_03957.png", "caption": "This song is full of a digital key/pad sound taking a lot of space with a harmonic melody slightly panned to the right side of the speakers. The drums are a simple kick and clapping snare sound. Accompanied by a digital one note hit on the kick. A male doubled and panned voice is singing as backing vocals when a male mid ranged voice starts rapping. This song may be playing during a relaxing car ride with friends.", "data_idx": 2108, "number": 1, "label": "hiphop"} +{"file_name": "train_03958.png", "caption": "This song is full of a digital key/pad sound taking a lot of space with a harmonic melody slightly panned to the right side of the speakers. The drums are a simple kick and clapping snare sound. Accompanied by a digital one note hit on the kick. A male doubled and panned voice is singing as backing vocals when a male mid ranged voice starts rapping. This song may be playing during a relaxing car ride with friends.", "data_idx": 2108, "number": 2, "label": "hiphop"} +{"file_name": "train_03959.png", "caption": "This song is full of a digital key/pad sound taking a lot of space with a harmonic melody slightly panned to the right side of the speakers. The drums are a simple kick and clapping snare sound. Accompanied by a digital one note hit on the kick. A male doubled and panned voice is singing as backing vocals when a male mid ranged voice starts rapping. This song may be playing during a relaxing car ride with friends.", "data_idx": 2108, "number": 3, "label": "hiphop"} +{"file_name": "train_03960.png", "caption": "A female singer sings this soulful melody. The song is slow tempo with a guitar playing a subtle bass line and no other instrumentation. The song is romantic and emotional. The song is soul music with jazz and black gospel influences. The audio quality is poor as it is recorded casually at home.", "data_idx": 2111, "number": 0, "label": "blues"} +{"file_name": "train_03961.png", "caption": "A female singer sings this soulful melody. The song is slow tempo with a guitar playing a subtle bass line and no other instrumentation. The song is romantic and emotional. The song is soul music with jazz and black gospel influences. The audio quality is poor as it is recorded casually at home.", "data_idx": 2111, "number": 1, "label": "blues"} +{"file_name": "train_03962.png", "caption": "A female singer sings this soulful melody. The song is slow tempo with a guitar playing a subtle bass line and no other instrumentation. The song is romantic and emotional. The song is soul music with jazz and black gospel influences. The audio quality is poor as it is recorded casually at home.", "data_idx": 2111, "number": 2, "label": "blues"} +{"file_name": "train_03963.png", "caption": "A female singer sings this soulful melody. The song is slow tempo with a guitar playing a subtle bass line and no other instrumentation. The song is romantic and emotional. The song is soul music with jazz and black gospel influences. The audio quality is poor as it is recorded casually at home.", "data_idx": 2111, "number": 3, "label": "blues"} +{"file_name": "train_03964.png", "caption": "The low quality recording features a weird arrangement of low growly sounds, alarm sound effects and wide synth pad progression. It sounds weird and spacey, almost like outer space communication.", "data_idx": 2112, "number": 0, "label": "classical"} +{"file_name": "train_03965.png", "caption": "The low quality recording features a weird arrangement of low growly sounds, alarm sound effects and wide synth pad progression. It sounds weird and spacey, almost like outer space communication.", "data_idx": 2112, "number": 1, "label": "classical"} +{"file_name": "train_03966.png", "caption": "This song is an instrumental song. There are no voices. An accordion plays in a waltz beat. The main melody starts off later when a marimba plays high pitched notes. Other accordions join and play in harmony in the background. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be used in a retro scene of a movie involving a happy couple.", "data_idx": 2115, "number": 0, "label": "blues"} +{"file_name": "train_03967.png", "caption": "This song is an instrumental song. There are no voices. An accordion plays in a waltz beat. The main melody starts off later when a marimba plays high pitched notes. Other accordions join and play in harmony in the background. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be used in a retro scene of a movie involving a happy couple.", "data_idx": 2115, "number": 1, "label": "blues"} +{"file_name": "train_03968.png", "caption": "This song is an instrumental song. There are no voices. An accordion plays in a waltz beat. The main melody starts off later when a marimba plays high pitched notes. Other accordions join and play in harmony in the background. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be used in a retro scene of a movie involving a happy couple.", "data_idx": 2115, "number": 2, "label": "blues"} +{"file_name": "train_03969.png", "caption": "This song is an instrumental song. There are no voices. An accordion plays in a waltz beat. The main melody starts off later when a marimba plays high pitched notes. Other accordions join and play in harmony in the background. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be used in a retro scene of a movie involving a happy couple.", "data_idx": 2115, "number": 3, "label": "blues"} +{"file_name": "train_03970.png", "caption": "A male vocalist sings this melodic jazz/blues. The tempo is medium fast with a piano accompaniment, groovy bass lines, infectious drumming and guitar accompaniment. There is a sound of syncopated ukulele and another string instrument playing over the song. The song is melodic and ambient but the superimposed strings melody is making it chaotic, busy, confusing and confusing.", "data_idx": 2116, "number": 0, "label": "blues"} +{"file_name": "train_03971.png", "caption": "A male vocalist sings this melodic jazz/blues. The tempo is medium fast with a piano accompaniment, groovy bass lines, infectious drumming and guitar accompaniment. There is a sound of syncopated ukulele and another string instrument playing over the song. The song is melodic and ambient but the superimposed strings melody is making it chaotic, busy, confusing and confusing.", "data_idx": 2116, "number": 1, "label": "blues"} +{"file_name": "train_03972.png", "caption": "A male vocalist sings this melodic jazz/blues. The tempo is medium fast with a piano accompaniment, groovy bass lines, infectious drumming and guitar accompaniment. There is a sound of syncopated ukulele and another string instrument playing over the song. The song is melodic and ambient but the superimposed strings melody is making it chaotic, busy, confusing and confusing.", "data_idx": 2116, "number": 2, "label": "blues"} +{"file_name": "train_03973.png", "caption": "A male vocalist sings this melodic jazz/blues. The tempo is medium fast with a piano accompaniment, groovy bass lines, infectious drumming and guitar accompaniment. There is a sound of syncopated ukulele and another string instrument playing over the song. The song is melodic and ambient but the superimposed strings melody is making it chaotic, busy, confusing and confusing.", "data_idx": 2116, "number": 3, "label": "blues"} +{"file_name": "train_03974.png", "caption": "A female singer sings this eerie melody. The song is medium tempo with a rolling bells keyboard harmony, and other ambient echo tones and harp tones. The song is haunting and unsettling. The audio quality is very poor and not enjoyable.", "data_idx": 2118, "number": 0, "label": "rock"} +{"file_name": "train_03975.png", "caption": "A female singer sings this eerie melody. The song is medium tempo with a rolling bells keyboard harmony, and other ambient echo tones and harp tones. The song is haunting and unsettling. The audio quality is very poor and not enjoyable.", "data_idx": 2118, "number": 1, "label": "rock"} +{"file_name": "train_03976.png", "caption": "A female singer sings this eerie melody. The song is medium tempo with a rolling bells keyboard harmony, and other ambient echo tones and harp tones. The song is haunting and unsettling. The audio quality is very poor and not enjoyable.", "data_idx": 2118, "number": 2, "label": "rock"} +{"file_name": "train_03977.png", "caption": "A female singer sings this eerie melody. The song is medium tempo with a rolling bells keyboard harmony, and other ambient echo tones and harp tones. The song is haunting and unsettling. The audio quality is very poor and not enjoyable.", "data_idx": 2118, "number": 3, "label": "rock"} +{"file_name": "train_03978.png", "caption": "This music is a lively instrumental using a maracas. The tempo is fast with a bongos accompaniment . The music is a duel between the two hand percussion. It is lively, vigorous and vibrant.", "data_idx": 2119, "number": 0, "label": "hiphop"} +{"file_name": "train_03979.png", "caption": "This music is a lively instrumental using a maracas. The tempo is fast with a bongos accompaniment . The music is a duel between the two hand percussion. It is lively, vigorous and vibrant.", "data_idx": 2119, "number": 1, "label": "hiphop"} +{"file_name": "train_03980.png", "caption": "This music is a lively instrumental using a maracas. The tempo is fast with a bongos accompaniment . The music is a duel between the two hand percussion. It is lively, vigorous and vibrant.", "data_idx": 2119, "number": 2, "label": "hiphop"} +{"file_name": "train_03981.png", "caption": "This music is a lively instrumental using a maracas. The tempo is fast with a bongos accompaniment . The music is a duel between the two hand percussion. It is lively, vigorous and vibrant.", "data_idx": 2119, "number": 3, "label": "hiphop"} +{"file_name": "train_03982.png", "caption": "Melancholic Instrumental music with wide panned acoustic guitars strumming, glockenspiel or bells following the chord progression, and a syncopated electric bass guitar over a slow rock beat that fades into simple steady solo piano.", "data_idx": 2121, "number": 0, "label": "jazz"} +{"file_name": "train_03983.png", "caption": "Melancholic Instrumental music with wide panned acoustic guitars strumming, glockenspiel or bells following the chord progression, and a syncopated electric bass guitar over a slow rock beat that fades into simple steady solo piano.", "data_idx": 2121, "number": 1, "label": "jazz"} +{"file_name": "train_03984.png", "caption": "Melancholic Instrumental music with wide panned acoustic guitars strumming, glockenspiel or bells following the chord progression, and a syncopated electric bass guitar over a slow rock beat that fades into simple steady solo piano.", "data_idx": 2121, "number": 2, "label": "jazz"} +{"file_name": "train_03985.png", "caption": "Melancholic Instrumental music with wide panned acoustic guitars strumming, glockenspiel or bells following the chord progression, and a syncopated electric bass guitar over a slow rock beat that fades into simple steady solo piano.", "data_idx": 2121, "number": 3, "label": "jazz"} +{"file_name": "train_03986.png", "caption": "The song is an instrumental. The song is medium tempo with a loud crash tone which undulates percussively and fades. The song is of poor audio quality and probably faded with a lot of humming noise.", "data_idx": 2122, "number": 0, "label": "classical"} +{"file_name": "train_03987.png", "caption": "The song is an instrumental. The song is medium tempo with a loud crash tone which undulates percussively and fades. The song is of poor audio quality and probably faded with a lot of humming noise.", "data_idx": 2122, "number": 1, "label": "classical"} +{"file_name": "train_03988.png", "caption": "The low quality recording features a fruity male vocal humming. In the first half of the loop, there is a lot of reverb on it, which progressively disappears. The recording is a bit noisy.", "data_idx": 2123, "number": 0, "label": "blues"} +{"file_name": "train_03989.png", "caption": "The low quality recording features a fruity male vocal humming. In the first half of the loop, there is a lot of reverb on it, which progressively disappears. The recording is a bit noisy.", "data_idx": 2123, "number": 1, "label": "blues"} +{"file_name": "train_03990.png", "caption": "The low quality recording features a fruity male vocal humming. In the first half of the loop, there is a lot of reverb on it, which progressively disappears. The recording is a bit noisy.", "data_idx": 2123, "number": 2, "label": "blues"} +{"file_name": "train_03991.png", "caption": "The low quality recording features a fruity male vocal humming. In the first half of the loop, there is a lot of reverb on it, which progressively disappears. The recording is a bit noisy.", "data_idx": 2123, "number": 3, "label": "blues"} +{"file_name": "train_03992.png", "caption": "The music excerpt starts off with a Latin band with instruments such as trombones, trumpets, upright bass, flute and latin percussion instruments. After a few seconds the band stops and a female voice starts to sing a voice that starts in the high register and moves to the low one. Right between these two moments one can hear claps coming from a crowd of people. Towards the ending of the excerpt the voice finishes singing the melody and the band starts again.", "data_idx": 2125, "number": 0, "label": "classical"} +{"file_name": "train_03993.png", "caption": "The music excerpt starts off with a Latin band with instruments such as trombones, trumpets, upright bass, flute and latin percussion instruments. After a few seconds the band stops and a female voice starts to sing a voice that starts in the high register and moves to the low one. Right between these two moments one can hear claps coming from a crowd of people. Towards the ending of the excerpt the voice finishes singing the melody and the band starts again.", "data_idx": 2125, "number": 1, "label": "classical"} +{"file_name": "train_03994.png", "caption": "The music excerpt starts off with a Latin band with instruments such as trombones, trumpets, upright bass, flute and latin percussion instruments. After a few seconds the band stops and a female voice starts to sing a voice that starts in the high register and moves to the low one. Right between these two moments one can hear claps coming from a crowd of people. Towards the ending of the excerpt the voice finishes singing the melody and the band starts again.", "data_idx": 2125, "number": 2, "label": "classical"} +{"file_name": "train_03995.png", "caption": "The music excerpt starts off with a Latin band with instruments such as trombones, trumpets, upright bass, flute and latin percussion instruments. After a few seconds the band stops and a female voice starts to sing a voice that starts in the high register and moves to the low one. Right between these two moments one can hear claps coming from a crowd of people. Towards the ending of the excerpt the voice finishes singing the melody and the band starts again.", "data_idx": 2125, "number": 3, "label": "classical"} +{"file_name": "train_03996.png", "caption": "This folk song features a choir singing the main melody. This is backed by percussion playing a simple beat in common time. A tambourine plays a continuous beat. The bass is played on a tuba. The tuba plays the root and fifth notes of the chords. At the beginning, a trumpet and accordion play a melody in harmony. The accordion continues to play chords in staccato while the choir sings the melody. The mood of this song is happy. This song can be played in a party where there is a large gathering.", "data_idx": 2129, "number": 0, "label": "disco"} +{"file_name": "train_03997.png", "caption": "This folk song features a choir singing the main melody. This is backed by percussion playing a simple beat in common time. A tambourine plays a continuous beat. The bass is played on a tuba. The tuba plays the root and fifth notes of the chords. At the beginning, a trumpet and accordion play a melody in harmony. The accordion continues to play chords in staccato while the choir sings the melody. The mood of this song is happy. This song can be played in a party where there is a large gathering.", "data_idx": 2129, "number": 1, "label": "disco"} +{"file_name": "train_03998.png", "caption": "This folk song features a choir singing the main melody. This is backed by percussion playing a simple beat in common time. A tambourine plays a continuous beat. The bass is played on a tuba. The tuba plays the root and fifth notes of the chords. At the beginning, a trumpet and accordion play a melody in harmony. The accordion continues to play chords in staccato while the choir sings the melody. The mood of this song is happy. This song can be played in a party where there is a large gathering.", "data_idx": 2129, "number": 2, "label": "disco"} +{"file_name": "train_03999.png", "caption": "This folk song features a choir singing the main melody. This is backed by percussion playing a simple beat in common time. A tambourine plays a continuous beat. The bass is played on a tuba. The tuba plays the root and fifth notes of the chords. At the beginning, a trumpet and accordion play a melody in harmony. The accordion continues to play chords in staccato while the choir sings the melody. The mood of this song is happy. This song can be played in a party where there is a large gathering.", "data_idx": 2129, "number": 3, "label": "disco"} +{"file_name": "train_04000.png", "caption": "This music is a calm Chinese instrumental melody. The tempo is slow with use of traditional chinese string instruments like the Guzheng and Pipa harmony accompanied with violin symphony and chimes. The music is soft, mellow, melancholic, meditative, dreamy, healing and ethereal.", "data_idx": 2132, "number": 0, "label": "classical"} +{"file_name": "train_04001.png", "caption": "This music is a calm Chinese instrumental melody. The tempo is slow with use of traditional chinese string instruments like the Guzheng and Pipa harmony accompanied with violin symphony and chimes. The music is soft, mellow, melancholic, meditative, dreamy, healing and ethereal.", "data_idx": 2132, "number": 1, "label": "classical"} +{"file_name": "train_04002.png", "caption": "This music is a calm Chinese instrumental melody. The tempo is slow with use of traditional chinese string instruments like the Guzheng and Pipa harmony accompanied with violin symphony and chimes. The music is soft, mellow, melancholic, meditative, dreamy, healing and ethereal.", "data_idx": 2132, "number": 2, "label": "classical"} +{"file_name": "train_04003.png", "caption": "This music is a calm Chinese instrumental melody. The tempo is slow with use of traditional chinese string instruments like the Guzheng and Pipa harmony accompanied with violin symphony and chimes. The music is soft, mellow, melancholic, meditative, dreamy, healing and ethereal.", "data_idx": 2132, "number": 3, "label": "classical"} +{"file_name": "train_04004.png", "caption": "The song is an instrumental. The tempo is slow with a lion playing an emotional solo, string section harmony, strong drumming rhythm and a steady bass line. The song is emotional and inspiring. The audio quality is poor.", "data_idx": 2134, "number": 0, "label": "jazz"} +{"file_name": "train_04005.png", "caption": "The song is an instrumental. The tempo is slow with a lion playing an emotional solo, string section harmony, strong drumming rhythm and a steady bass line. The song is emotional and inspiring. The audio quality is poor.", "data_idx": 2134, "number": 1, "label": "jazz"} +{"file_name": "train_04006.png", "caption": "The song is an instrumental. The tempo is slow with a lion playing an emotional solo, string section harmony, strong drumming rhythm and a steady bass line. The song is emotional and inspiring. The audio quality is poor.", "data_idx": 2134, "number": 2, "label": "jazz"} +{"file_name": "train_04007.png", "caption": "The song is an instrumental. The tempo is slow with a lion playing an emotional solo, string section harmony, strong drumming rhythm and a steady bass line. The song is emotional and inspiring. The audio quality is poor.", "data_idx": 2134, "number": 3, "label": "jazz"} +{"file_name": "train_04008.png", "caption": "The low quality recording features a soul song sung by passionate female vocalists over mellow piano chords, smooth bass, shimmering cymbals and punchy kick and snare hits. There are some crowd chattering sounds. It sounds emotional, passionate and heartfelt.", "data_idx": 2137, "number": 0, "label": "country"} +{"file_name": "train_04009.png", "caption": "The low quality recording features a soul song sung by passionate female vocalists over mellow piano chords, smooth bass, shimmering cymbals and punchy kick and snare hits. There are some crowd chattering sounds. It sounds emotional, passionate and heartfelt.", "data_idx": 2137, "number": 1, "label": "country"} +{"file_name": "train_04010.png", "caption": "The low quality recording features a soul song sung by passionate female vocalists over mellow piano chords, smooth bass, shimmering cymbals and punchy kick and snare hits. There are some crowd chattering sounds. It sounds emotional, passionate and heartfelt.", "data_idx": 2137, "number": 2, "label": "country"} +{"file_name": "train_04011.png", "caption": "The low quality recording features a soul song sung by passionate female vocalists over mellow piano chords, smooth bass, shimmering cymbals and punchy kick and snare hits. There are some crowd chattering sounds. It sounds emotional, passionate and heartfelt.", "data_idx": 2137, "number": 3, "label": "country"} +{"file_name": "train_04012.png", "caption": "The low quality recording features a bossa nova cover of a rock song and it consists of soft female vocals, alongside wide harmonizing vocals, singing over shimmering cymbals, snappy rimshots, funky electric guitar chords, smooth bass and mellow synth keys melody. It sounds jazzy and easygoing, like something you would hear as a live performance in a high end restaurant or jazz club.", "data_idx": 2138, "number": 0, "label": "rock"} +{"file_name": "train_04013.png", "caption": "The low quality recording features a bossa nova cover of a rock song and it consists of soft female vocals, alongside wide harmonizing vocals, singing over shimmering cymbals, snappy rimshots, funky electric guitar chords, smooth bass and mellow synth keys melody. It sounds jazzy and easygoing, like something you would hear as a live performance in a high end restaurant or jazz club.", "data_idx": 2138, "number": 1, "label": "rock"} +{"file_name": "train_04014.png", "caption": "The low quality recording features a bossa nova cover of a rock song and it consists of soft female vocals, alongside wide harmonizing vocals, singing over shimmering cymbals, snappy rimshots, funky electric guitar chords, smooth bass and mellow synth keys melody. It sounds jazzy and easygoing, like something you would hear as a live performance in a high end restaurant or jazz club.", "data_idx": 2138, "number": 2, "label": "rock"} +{"file_name": "train_04015.png", "caption": "The low quality recording features a bossa nova cover of a rock song and it consists of soft female vocals, alongside wide harmonizing vocals, singing over shimmering cymbals, snappy rimshots, funky electric guitar chords, smooth bass and mellow synth keys melody. It sounds jazzy and easygoing, like something you would hear as a live performance in a high end restaurant or jazz club.", "data_idx": 2138, "number": 3, "label": "rock"} +{"file_name": "train_04016.png", "caption": "This is a Valentine's ballad. The male vocalist is singing gently in the Thai language. There is an acoustic guitar, a piano and a flute playing the melody interchangeably. There is a simple acoustic drum beat in the rhythmic background. The atmosphere of this piece is romantic. It could be used in romantic social media content in Thailand. It could also be used in romantic movies and TV shows that take place in Thailand.", "data_idx": 2141, "number": 0, "label": "country"} +{"file_name": "train_04017.png", "caption": "This is a Valentine's ballad. The male vocalist is singing gently in the Thai language. There is an acoustic guitar, a piano and a flute playing the melody interchangeably. There is a simple acoustic drum beat in the rhythmic background. The atmosphere of this piece is romantic. It could be used in romantic social media content in Thailand. It could also be used in romantic movies and TV shows that take place in Thailand.", "data_idx": 2141, "number": 1, "label": "country"} +{"file_name": "train_04018.png", "caption": "This is a Valentine's ballad. The male vocalist is singing gently in the Thai language. There is an acoustic guitar, a piano and a flute playing the melody interchangeably. There is a simple acoustic drum beat in the rhythmic background. The atmosphere of this piece is romantic. It could be used in romantic social media content in Thailand. It could also be used in romantic movies and TV shows that take place in Thailand.", "data_idx": 2141, "number": 2, "label": "country"} +{"file_name": "train_04019.png", "caption": "This is a Valentine's ballad. The male vocalist is singing gently in the Thai language. There is an acoustic guitar, a piano and a flute playing the melody interchangeably. There is a simple acoustic drum beat in the rhythmic background. The atmosphere of this piece is romantic. It could be used in romantic social media content in Thailand. It could also be used in romantic movies and TV shows that take place in Thailand.", "data_idx": 2141, "number": 3, "label": "country"} +{"file_name": "train_04020.png", "caption": "A male singer sings this exciting melody. The song is medium fast tempo with a groovy bass line, latin percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is exciting and fun. The song is a modern Latin pop dance hit.", "data_idx": 2143, "number": 0, "label": "disco"} +{"file_name": "train_04021.png", "caption": "A male singer sings this exciting melody. The song is medium fast tempo with a groovy bass line, latin percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is exciting and fun. The song is a modern Latin pop dance hit.", "data_idx": 2143, "number": 1, "label": "disco"} +{"file_name": "train_04022.png", "caption": "A male singer sings this exciting melody. The song is medium fast tempo with a groovy bass line, latin percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is exciting and fun. The song is a modern Latin pop dance hit.", "data_idx": 2143, "number": 2, "label": "disco"} +{"file_name": "train_04023.png", "caption": "A male singer sings this exciting melody. The song is medium fast tempo with a groovy bass line, latin percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is exciting and fun. The song is a modern Latin pop dance hit.", "data_idx": 2143, "number": 3, "label": "disco"} +{"file_name": "train_04024.png", "caption": "The Swing song features an echoing male vocal singing over smooth double bass, offbeat soft piano chords and widely spread sustained strings melody. It sounds easygoing, relaxing, smooth, warm and euphoric as it reminds of Christmas.", "data_idx": 2144, "number": 0, "label": "country"} +{"file_name": "train_04025.png", "caption": "The Swing song features an echoing male vocal singing over smooth double bass, offbeat soft piano chords and widely spread sustained strings melody. It sounds easygoing, relaxing, smooth, warm and euphoric as it reminds of Christmas.", "data_idx": 2144, "number": 1, "label": "country"} +{"file_name": "train_04026.png", "caption": "The Swing song features an echoing male vocal singing over smooth double bass, offbeat soft piano chords and widely spread sustained strings melody. It sounds easygoing, relaxing, smooth, warm and euphoric as it reminds of Christmas.", "data_idx": 2144, "number": 2, "label": "country"} +{"file_name": "train_04027.png", "caption": "The Swing song features an echoing male vocal singing over smooth double bass, offbeat soft piano chords and widely spread sustained strings melody. It sounds easygoing, relaxing, smooth, warm and euphoric as it reminds of Christmas.", "data_idx": 2144, "number": 3, "label": "country"} +{"file_name": "train_04028.png", "caption": "The low quality recording features a buzzy vibrating sound while a rock song on a radio, or some other device that can reproduce music, in the background is playing. The recording is very noisy and it sounds like it was recorded with a phone.", "data_idx": 2146, "number": 0, "label": "rock"} +{"file_name": "train_04029.png", "caption": "The low quality recording features a buzzy vibrating sound while a rock song on a radio, or some other device that can reproduce music, in the background is playing. The recording is very noisy and it sounds like it was recorded with a phone.", "data_idx": 2146, "number": 1, "label": "rock"} +{"file_name": "train_04030.png", "caption": "The low quality recording features a buzzy vibrating sound while a rock song on a radio, or some other device that can reproduce music, in the background is playing. The recording is very noisy and it sounds like it was recorded with a phone.", "data_idx": 2146, "number": 2, "label": "rock"} +{"file_name": "train_04031.png", "caption": "The low quality recording features a buzzy vibrating sound while a rock song on a radio, or some other device that can reproduce music, in the background is playing. The recording is very noisy and it sounds like it was recorded with a phone.", "data_idx": 2146, "number": 3, "label": "rock"} +{"file_name": "train_04032.png", "caption": "The instrumental music features three instruments and no voice. The bass guitar and electric guitar play the same melody in unison. The drums play a repeating but not simple rhythm. I can hear influences ranging from funk to rock so I would say that the music comes closest to the fusion genre.", "data_idx": 2149, "number": 0, "label": "disco"} +{"file_name": "train_04033.png", "caption": "The instrumental music features three instruments and no voice. The bass guitar and electric guitar play the same melody in unison. The drums play a repeating but not simple rhythm. I can hear influences ranging from funk to rock so I would say that the music comes closest to the fusion genre.", "data_idx": 2149, "number": 1, "label": "disco"} +{"file_name": "train_04034.png", "caption": "The instrumental music features three instruments and no voice. The bass guitar and electric guitar play the same melody in unison. The drums play a repeating but not simple rhythm. I can hear influences ranging from funk to rock so I would say that the music comes closest to the fusion genre.", "data_idx": 2149, "number": 2, "label": "disco"} +{"file_name": "train_04035.png", "caption": "The instrumental music features three instruments and no voice. The bass guitar and electric guitar play the same melody in unison. The drums play a repeating but not simple rhythm. I can hear influences ranging from funk to rock so I would say that the music comes closest to the fusion genre.", "data_idx": 2149, "number": 3, "label": "disco"} +{"file_name": "train_04036.png", "caption": "The song is an instrumental. The tempo is medium with a bamboo didgeridoo being played percussively with no other instrumentation. The tone is deep and meditative in nature. The song is a demo play with poor audio quality.", "data_idx": 2150, "number": 0, "label": "classical"} +{"file_name": "train_04037.png", "caption": "The song is an instrumental. The tempo is medium with a bamboo didgeridoo being played percussively with no other instrumentation. The tone is deep and meditative in nature. The song is a demo play with poor audio quality.", "data_idx": 2150, "number": 1, "label": "classical"} +{"file_name": "train_04038.png", "caption": "The song is an instrumental. The tempo is medium with a bamboo didgeridoo being played percussively with no other instrumentation. The tone is deep and meditative in nature. The song is a demo play with poor audio quality.", "data_idx": 2150, "number": 2, "label": "classical"} +{"file_name": "train_04039.png", "caption": "The song is an instrumental. The tempo is medium with a bamboo didgeridoo being played percussively with no other instrumentation. The tone is deep and meditative in nature. The song is a demo play with poor audio quality.", "data_idx": 2150, "number": 3, "label": "classical"} +{"file_name": "train_04040.png", "caption": "Full band playing a complex arrangement, possibly south asian or middle eastern. The music features odd meters and polyrhythmic full band melodies played by electric bass guitar, synthesizer, flute, and a female vocalist singing an eastern scale with female background harmonies. The drum ensemble is thunderous and fiery with percussion from finger cymbals and tambourine.", "data_idx": 2154, "number": 0, "label": "disco"} +{"file_name": "train_04041.png", "caption": "Full band playing a complex arrangement, possibly south asian or middle eastern. The music features odd meters and polyrhythmic full band melodies played by electric bass guitar, synthesizer, flute, and a female vocalist singing an eastern scale with female background harmonies. The drum ensemble is thunderous and fiery with percussion from finger cymbals and tambourine.", "data_idx": 2154, "number": 1, "label": "disco"} +{"file_name": "train_04042.png", "caption": "Full band playing a complex arrangement, possibly south asian or middle eastern. The music features odd meters and polyrhythmic full band melodies played by electric bass guitar, synthesizer, flute, and a female vocalist singing an eastern scale with female background harmonies. The drum ensemble is thunderous and fiery with percussion from finger cymbals and tambourine.", "data_idx": 2154, "number": 2, "label": "disco"} +{"file_name": "train_04043.png", "caption": "Full band playing a complex arrangement, possibly south asian or middle eastern. The music features odd meters and polyrhythmic full band melodies played by electric bass guitar, synthesizer, flute, and a female vocalist singing an eastern scale with female background harmonies. The drum ensemble is thunderous and fiery with percussion from finger cymbals and tambourine.", "data_idx": 2154, "number": 3, "label": "disco"} +{"file_name": "train_04044.png", "caption": "This is the recording of a lesson video. There is male voice talking in an instructive manner. The only musical element in the background is a repeated electronic kick drum pattern that is being modified.", "data_idx": 2155, "number": 0, "label": "hiphop"} +{"file_name": "train_04045.png", "caption": "This is the recording of a lesson video. There is male voice talking in an instructive manner. The only musical element in the background is a repeated electronic kick drum pattern that is being modified.", "data_idx": 2155, "number": 1, "label": "hiphop"} +{"file_name": "train_04046.png", "caption": "This instrumental song features an electric guitar. This guitar plays chords using open strings. The chords are played in a descending pattern initially. This is followed by the strings being plucked at the end of the song. This song has the characteristics of a Scottish folk song. There is the added reverb effect on the guitar sound. There are no other instruments in this song. This song can be played in a highway drive scene of a movie.", "data_idx": 2157, "number": 0, "label": "blues"} +{"file_name": "train_04047.png", "caption": "This instrumental song features an electric guitar. This guitar plays chords using open strings. The chords are played in a descending pattern initially. This is followed by the strings being plucked at the end of the song. This song has the characteristics of a Scottish folk song. There is the added reverb effect on the guitar sound. There are no other instruments in this song. This song can be played in a highway drive scene of a movie.", "data_idx": 2157, "number": 1, "label": "blues"} +{"file_name": "train_04048.png", "caption": "This instrumental song features an electric guitar. This guitar plays chords using open strings. The chords are played in a descending pattern initially. This is followed by the strings being plucked at the end of the song. This song has the characteristics of a Scottish folk song. There is the added reverb effect on the guitar sound. There are no other instruments in this song. This song can be played in a highway drive scene of a movie.", "data_idx": 2157, "number": 2, "label": "blues"} +{"file_name": "train_04049.png", "caption": "This instrumental song features an electric guitar. This guitar plays chords using open strings. The chords are played in a descending pattern initially. This is followed by the strings being plucked at the end of the song. This song has the characteristics of a Scottish folk song. There is the added reverb effect on the guitar sound. There are no other instruments in this song. This song can be played in a highway drive scene of a movie.", "data_idx": 2157, "number": 3, "label": "blues"} +{"file_name": "train_04050.png", "caption": "This music is an Electronic dance instrumental. The tempo is medium fast with punchy drum beats and groovy electronic arrangements.The music is buoyant, energetic, electric, pulsating, youthful and vigorous. The thumpy, rhythmic bass and drumming gives it a groovy dance beat.", "data_idx": 2159, "number": 0, "label": "hiphop"} +{"file_name": "train_04051.png", "caption": "This music is an Electronic dance instrumental. The tempo is medium fast with punchy drum beats and groovy electronic arrangements.The music is buoyant, energetic, electric, pulsating, youthful and vigorous. The thumpy, rhythmic bass and drumming gives it a groovy dance beat.", "data_idx": 2159, "number": 1, "label": "hiphop"} +{"file_name": "train_04052.png", "caption": "The music excerpt features a big band playing. The trumpets play a repeating melody, and thus, stand out the most. Throughout this passage one can hear sounds made by the shoes of tap dancers. The quality of the audio recording is not so good and this leads me to believe it was recorded at a live tap dancing show.", "data_idx": 2160, "number": 0, "label": "classical"} +{"file_name": "train_04053.png", "caption": "The music excerpt features a big band playing. The trumpets play a repeating melody, and thus, stand out the most. Throughout this passage one can hear sounds made by the shoes of tap dancers. The quality of the audio recording is not so good and this leads me to believe it was recorded at a live tap dancing show.", "data_idx": 2160, "number": 1, "label": "classical"} +{"file_name": "train_04054.png", "caption": "The music excerpt features a big band playing. The trumpets play a repeating melody, and thus, stand out the most. Throughout this passage one can hear sounds made by the shoes of tap dancers. The quality of the audio recording is not so good and this leads me to believe it was recorded at a live tap dancing show.", "data_idx": 2160, "number": 2, "label": "classical"} +{"file_name": "train_04055.png", "caption": "The music excerpt features a big band playing. The trumpets play a repeating melody, and thus, stand out the most. Throughout this passage one can hear sounds made by the shoes of tap dancers. The quality of the audio recording is not so good and this leads me to believe it was recorded at a live tap dancing show.", "data_idx": 2160, "number": 3, "label": "classical"} +{"file_name": "train_04056.png", "caption": "The song is an instrumental movie soundtrack. The song is medium tempo with a choral section changing, trumpet playing melody and drums playing in a march rhythm. The song is majestic like a funeral march. The song is a movie soundtrack with a poor audio quality issue.", "data_idx": 2162, "number": 0, "label": "classical"} +{"file_name": "train_04057.png", "caption": "The song is an instrumental movie soundtrack. The song is medium tempo with a choral section changing, trumpet playing melody and drums playing in a march rhythm. The song is majestic like a funeral march. The song is a movie soundtrack with a poor audio quality issue.", "data_idx": 2162, "number": 1, "label": "classical"} +{"file_name": "train_04058.png", "caption": "The song is an instrumental movie soundtrack. The song is medium tempo with a choral section changing, trumpet playing melody and drums playing in a march rhythm. The song is majestic like a funeral march. The song is a movie soundtrack with a poor audio quality issue.", "data_idx": 2162, "number": 2, "label": "classical"} +{"file_name": "train_04059.png", "caption": "The song is an instrumental movie soundtrack. The song is medium tempo with a choral section changing, trumpet playing melody and drums playing in a march rhythm. The song is majestic like a funeral march. The song is a movie soundtrack with a poor audio quality issue.", "data_idx": 2162, "number": 3, "label": "classical"} +{"file_name": "train_04060.png", "caption": "This is an opening theme for a TV series. It is an instrumental piece. The main theme is being played by a loud brass section. There is a groovy synth bass line playing. The rhythmic background consists of a strong electronic drum beat. The atmosphere is energetic. This piece could be used in lifting samples for beat-making.", "data_idx": 2163, "number": 0, "label": "metal"} +{"file_name": "train_04061.png", "caption": "This is an opening theme for a TV series. It is an instrumental piece. The main theme is being played by a loud brass section. There is a groovy synth bass line playing. The rhythmic background consists of a strong electronic drum beat. The atmosphere is energetic. This piece could be used in lifting samples for beat-making.", "data_idx": 2163, "number": 1, "label": "metal"} +{"file_name": "train_04062.png", "caption": "This is an opening theme for a TV series. It is an instrumental piece. The main theme is being played by a loud brass section. There is a groovy synth bass line playing. The rhythmic background consists of a strong electronic drum beat. The atmosphere is energetic. This piece could be used in lifting samples for beat-making.", "data_idx": 2163, "number": 2, "label": "metal"} +{"file_name": "train_04063.png", "caption": "This is an opening theme for a TV series. It is an instrumental piece. The main theme is being played by a loud brass section. There is a groovy synth bass line playing. The rhythmic background consists of a strong electronic drum beat. The atmosphere is energetic. This piece could be used in lifting samples for beat-making.", "data_idx": 2163, "number": 3, "label": "metal"} +{"file_name": "train_04064.png", "caption": "A female vocalist sings this emotional song. The tempo is slow with guitar accompaniment and vocal backup. The song is soft, mellow, emotional and sentimental in a foreign language that sounds like a lullaby.This is a Pop Folk song.", "data_idx": 2164, "number": 0, "label": "blues"} +{"file_name": "train_04065.png", "caption": "A female vocalist sings this emotional song. The tempo is slow with guitar accompaniment and vocal backup. The song is soft, mellow, emotional and sentimental in a foreign language that sounds like a lullaby.This is a Pop Folk song.", "data_idx": 2164, "number": 1, "label": "blues"} +{"file_name": "train_04066.png", "caption": "A female vocalist sings this emotional song. The tempo is slow with guitar accompaniment and vocal backup. The song is soft, mellow, emotional and sentimental in a foreign language that sounds like a lullaby.This is a Pop Folk song.", "data_idx": 2164, "number": 2, "label": "blues"} +{"file_name": "train_04067.png", "caption": "A female vocalist sings this emotional song. The tempo is slow with guitar accompaniment and vocal backup. The song is soft, mellow, emotional and sentimental in a foreign language that sounds like a lullaby.This is a Pop Folk song.", "data_idx": 2164, "number": 3, "label": "blues"} +{"file_name": "train_04068.png", "caption": "This song is a classical flamenco mixed with a HipHop groove drums playing a digital set along with a cowbell sound. A piano is playing a salsa melody in the low to high range. A trumpet sample is playing a short melody every fourth beat. A male voice is singing in a higher pitch along with backing vocals spread across both sides of the speakers. Then another male voice takes over rapping over the instrumental. This song may be playing with a speaker sitting on the bike cruising.", "data_idx": 2165, "number": 0, "label": "reggae"} +{"file_name": "train_04069.png", "caption": "This song is a classical flamenco mixed with a HipHop groove drums playing a digital set along with a cowbell sound. A piano is playing a salsa melody in the low to high range. A trumpet sample is playing a short melody every fourth beat. A male voice is singing in a higher pitch along with backing vocals spread across both sides of the speakers. Then another male voice takes over rapping over the instrumental. This song may be playing with a speaker sitting on the bike cruising.", "data_idx": 2165, "number": 1, "label": "reggae"} +{"file_name": "train_04070.png", "caption": "This song is a classical flamenco mixed with a HipHop groove drums playing a digital set along with a cowbell sound. A piano is playing a salsa melody in the low to high range. A trumpet sample is playing a short melody every fourth beat. A male voice is singing in a higher pitch along with backing vocals spread across both sides of the speakers. Then another male voice takes over rapping over the instrumental. This song may be playing with a speaker sitting on the bike cruising.", "data_idx": 2165, "number": 2, "label": "reggae"} +{"file_name": "train_04071.png", "caption": "This song is a classical flamenco mixed with a HipHop groove drums playing a digital set along with a cowbell sound. A piano is playing a salsa melody in the low to high range. A trumpet sample is playing a short melody every fourth beat. A male voice is singing in a higher pitch along with backing vocals spread across both sides of the speakers. Then another male voice takes over rapping over the instrumental. This song may be playing with a speaker sitting on the bike cruising.", "data_idx": 2165, "number": 3, "label": "reggae"} +{"file_name": "train_04072.png", "caption": "Someone is playing a melody on an e-guitar with a tremolo effect. This song may be playing at home practicing guitar.", "data_idx": 2166, "number": 0, "label": "jazz"} +{"file_name": "train_04073.png", "caption": "Someone is playing a melody on an e-guitar with a tremolo effect. This song may be playing at home practicing guitar.", "data_idx": 2166, "number": 1, "label": "jazz"} +{"file_name": "train_04074.png", "caption": "Someone is playing a melody on an e-guitar with a tremolo effect. This song may be playing at home practicing guitar.", "data_idx": 2166, "number": 2, "label": "jazz"} +{"file_name": "train_04075.png", "caption": "Someone is playing a melody on an e-guitar with a tremolo effect. This song may be playing at home practicing guitar.", "data_idx": 2166, "number": 3, "label": "jazz"} +{"file_name": "train_04076.png", "caption": "This amateur recording features a male voice singing the main melody. This is accompanied by a banjo being strummed in a country rhythm. This song is sung at a moderate tempo. This song has a patriotic feel. There are no other instruments in this song apart from the tenor banjo. This song can be played in a patriotic American movie.", "data_idx": 2167, "number": 0, "label": "rock"} +{"file_name": "train_04077.png", "caption": "This amateur recording features a male voice singing the main melody. This is accompanied by a banjo being strummed in a country rhythm. This song is sung at a moderate tempo. This song has a patriotic feel. There are no other instruments in this song apart from the tenor banjo. This song can be played in a patriotic American movie.", "data_idx": 2167, "number": 1, "label": "rock"} +{"file_name": "train_04078.png", "caption": "This amateur recording features a male voice singing the main melody. This is accompanied by a banjo being strummed in a country rhythm. This song is sung at a moderate tempo. This song has a patriotic feel. There are no other instruments in this song apart from the tenor banjo. This song can be played in a patriotic American movie.", "data_idx": 2167, "number": 2, "label": "rock"} +{"file_name": "train_04079.png", "caption": "This amateur recording features a male voice singing the main melody. This is accompanied by a banjo being strummed in a country rhythm. This song is sung at a moderate tempo. This song has a patriotic feel. There are no other instruments in this song apart from the tenor banjo. This song can be played in a patriotic American movie.", "data_idx": 2167, "number": 3, "label": "rock"} +{"file_name": "train_04080.png", "caption": "This is an amateur music video of a male musician playing a mellow harmony on the banjo with another amateur musician accompanying him on the acoustic guitar. This song has a simple melody but the recording is loud and sharp.", "data_idx": 2171, "number": 0, "label": "classical"} +{"file_name": "train_04081.png", "caption": "This is an amateur music video of a male musician playing a mellow harmony on the banjo with another amateur musician accompanying him on the acoustic guitar. This song has a simple melody but the recording is loud and sharp.", "data_idx": 2171, "number": 1, "label": "classical"} +{"file_name": "train_04082.png", "caption": "This is an amateur music video of a male musician playing a mellow harmony on the banjo with another amateur musician accompanying him on the acoustic guitar. This song has a simple melody but the recording is loud and sharp.", "data_idx": 2171, "number": 2, "label": "classical"} +{"file_name": "train_04083.png", "caption": "This is an amateur music video of a male musician playing a mellow harmony on the banjo with another amateur musician accompanying him on the acoustic guitar. This song has a simple melody but the recording is loud and sharp.", "data_idx": 2171, "number": 3, "label": "classical"} +{"file_name": "train_04084.png", "caption": "This is a jingle piece in the background of a tech comparison video. There are various sound effects such as clock ticking and a camera shutter. The electric guitar is playing the same chord repeatedly with electronic drum hits to create an aura of tension. This piece can be used in advertisement jingles. It could also be used in the soundtrack of reality competition programs.", "data_idx": 2174, "number": 0, "label": "hiphop"} +{"file_name": "train_04085.png", "caption": "This is a jingle piece in the background of a tech comparison video. There are various sound effects such as clock ticking and a camera shutter. The electric guitar is playing the same chord repeatedly with electronic drum hits to create an aura of tension. This piece can be used in advertisement jingles. It could also be used in the soundtrack of reality competition programs.", "data_idx": 2174, "number": 1, "label": "hiphop"} +{"file_name": "train_04086.png", "caption": "This is a jingle piece in the background of a tech comparison video. There are various sound effects such as clock ticking and a camera shutter. The electric guitar is playing the same chord repeatedly with electronic drum hits to create an aura of tension. This piece can be used in advertisement jingles. It could also be used in the soundtrack of reality competition programs.", "data_idx": 2174, "number": 2, "label": "hiphop"} +{"file_name": "train_04087.png", "caption": "This is a jingle piece in the background of a tech comparison video. There are various sound effects such as clock ticking and a camera shutter. The electric guitar is playing the same chord repeatedly with electronic drum hits to create an aura of tension. This piece can be used in advertisement jingles. It could also be used in the soundtrack of reality competition programs.", "data_idx": 2174, "number": 3, "label": "hiphop"} +{"file_name": "train_04088.png", "caption": "The drums and the e-bass are creating a reggae groove together with the e-guitar that is playing on the offbeat and with a lot of ping pong delay that is jumping back and forth on both sides of the speakers. The male voice is singing and a shaker is playing panned to the right side of the speakers. This song may be playing at an alternative vegan restaurant with an outside terrace.", "data_idx": 2175, "number": 0, "label": "reggae"} +{"file_name": "train_04089.png", "caption": "The drums and the e-bass are creating a reggae groove together with the e-guitar that is playing on the offbeat and with a lot of ping pong delay that is jumping back and forth on both sides of the speakers. The male voice is singing and a shaker is playing panned to the right side of the speakers. This song may be playing at an alternative vegan restaurant with an outside terrace.", "data_idx": 2175, "number": 1, "label": "reggae"} +{"file_name": "train_04090.png", "caption": "The drums and the e-bass are creating a reggae groove together with the e-guitar that is playing on the offbeat and with a lot of ping pong delay that is jumping back and forth on both sides of the speakers. The male voice is singing and a shaker is playing panned to the right side of the speakers. This song may be playing at an alternative vegan restaurant with an outside terrace.", "data_idx": 2175, "number": 2, "label": "reggae"} +{"file_name": "train_04091.png", "caption": "The drums and the e-bass are creating a reggae groove together with the e-guitar that is playing on the offbeat and with a lot of ping pong delay that is jumping back and forth on both sides of the speakers. The male voice is singing and a shaker is playing panned to the right side of the speakers. This song may be playing at an alternative vegan restaurant with an outside terrace.", "data_idx": 2175, "number": 3, "label": "reggae"} +{"file_name": "train_04092.png", "caption": "This is a Christian gospel piece. A male vocalist who is probably a preacher is chanting as the lead while a church choir sings melodically. The piece is being sung in an African language. The atmosphere is peaceful and hopeful. This piece could be used in religious social media content.", "data_idx": 2179, "number": 0, "label": "blues"} +{"file_name": "train_04093.png", "caption": "This is a Christian gospel piece. A male vocalist who is probably a preacher is chanting as the lead while a church choir sings melodically. The piece is being sung in an African language. The atmosphere is peaceful and hopeful. This piece could be used in religious social media content.", "data_idx": 2179, "number": 1, "label": "blues"} +{"file_name": "train_04094.png", "caption": "This is a Christian gospel piece. A male vocalist who is probably a preacher is chanting as the lead while a church choir sings melodically. The piece is being sung in an African language. The atmosphere is peaceful and hopeful. This piece could be used in religious social media content.", "data_idx": 2179, "number": 2, "label": "blues"} +{"file_name": "train_04095.png", "caption": "This is a Christian gospel piece. A male vocalist who is probably a preacher is chanting as the lead while a church choir sings melodically. The piece is being sung in an African language. The atmosphere is peaceful and hopeful. This piece could be used in religious social media content.", "data_idx": 2179, "number": 3, "label": "blues"} +{"file_name": "train_04096.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an amplified guitar lead harmony and synthesiser articulation. The music is not very clear as the recording quality is inferior, but the harmony is catchy, spirited and youthful.", "data_idx": 2182, "number": 0, "label": "reggae"} +{"file_name": "train_04097.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an amplified guitar lead harmony and synthesiser articulation. The music is not very clear as the recording quality is inferior, but the harmony is catchy, spirited and youthful.", "data_idx": 2182, "number": 1, "label": "reggae"} +{"file_name": "train_04098.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an amplified guitar lead harmony and synthesiser articulation. The music is not very clear as the recording quality is inferior, but the harmony is catchy, spirited and youthful.", "data_idx": 2182, "number": 2, "label": "reggae"} +{"file_name": "train_04099.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an amplified guitar lead harmony and synthesiser articulation. The music is not very clear as the recording quality is inferior, but the harmony is catchy, spirited and youthful.", "data_idx": 2182, "number": 3, "label": "reggae"} +{"file_name": "train_04100.png", "caption": "This swing music is an instrumental piece. It starts off with the trumpets playing high pitched notes in harmony. The percussion starts to play with an intro roll. A wind instrument swell is played after the intro percussion roll. A wind instrument plays a repetitive lick after this followed by a piano playing chords at higher octaves in the spaces between the wind instrument licks. The bass plays the same lick on a lower octave. There are no voices in this song. This song can be played in a retro movie dance scene.", "data_idx": 2183, "number": 0, "label": "hiphop"} +{"file_name": "train_04101.png", "caption": "This swing music is an instrumental piece. It starts off with the trumpets playing high pitched notes in harmony. The percussion starts to play with an intro roll. A wind instrument swell is played after the intro percussion roll. A wind instrument plays a repetitive lick after this followed by a piano playing chords at higher octaves in the spaces between the wind instrument licks. The bass plays the same lick on a lower octave. There are no voices in this song. This song can be played in a retro movie dance scene.", "data_idx": 2183, "number": 1, "label": "hiphop"} +{"file_name": "train_04102.png", "caption": "This is an instrumental power metal piece. There is an electric guitar playing the melody with the accompaniment of a keyboard. There is an acoustic drum beat in the rhythmic background. There is an aggressive atmosphere. This piece could be used in the soundtrack of an action video game.", "data_idx": 2184, "number": 0, "label": "hiphop"} +{"file_name": "train_04103.png", "caption": "This is an instrumental power metal piece. There is an electric guitar playing the melody with the accompaniment of a keyboard. There is an acoustic drum beat in the rhythmic background. There is an aggressive atmosphere. This piece could be used in the soundtrack of an action video game.", "data_idx": 2184, "number": 1, "label": "hiphop"} +{"file_name": "train_04104.png", "caption": "This is an instrumental power metal piece. There is an electric guitar playing the melody with the accompaniment of a keyboard. There is an acoustic drum beat in the rhythmic background. There is an aggressive atmosphere. This piece could be used in the soundtrack of an action video game.", "data_idx": 2184, "number": 2, "label": "hiphop"} +{"file_name": "train_04105.png", "caption": "This is an instrumental power metal piece. There is an electric guitar playing the melody with the accompaniment of a keyboard. There is an acoustic drum beat in the rhythmic background. There is an aggressive atmosphere. This piece could be used in the soundtrack of an action video game.", "data_idx": 2184, "number": 3, "label": "hiphop"} +{"file_name": "train_04106.png", "caption": "Someone is playing an indian bansuri with reverb along with a shrutibox. A keyboard is playing a soft bell sounding melody on top along with some strings. This is an amateur recording. This music may be playing at a live concert.", "data_idx": 2186, "number": 0, "label": "classical"} +{"file_name": "train_04107.png", "caption": "Someone is playing an indian bansuri with reverb along with a shrutibox. A keyboard is playing a soft bell sounding melody on top along with some strings. This is an amateur recording. This music may be playing at a live concert.", "data_idx": 2186, "number": 1, "label": "classical"} +{"file_name": "train_04108.png", "caption": "Someone is playing an indian bansuri with reverb along with a shrutibox. A keyboard is playing a soft bell sounding melody on top along with some strings. This is an amateur recording. This music may be playing at a live concert.", "data_idx": 2186, "number": 2, "label": "classical"} +{"file_name": "train_04109.png", "caption": "Someone is playing an indian bansuri with reverb along with a shrutibox. A keyboard is playing a soft bell sounding melody on top along with some strings. This is an amateur recording. This music may be playing at a live concert.", "data_idx": 2186, "number": 3, "label": "classical"} +{"file_name": "train_04110.png", "caption": "This is a classical orchestral piece. The melody played on the trumpets feels like a prelude to an important, impressive moment. This music would suit any momentous occasion - like the countdown to a rocket launch.", "data_idx": 2189, "number": 0, "label": "hiphop"} +{"file_name": "train_04111.png", "caption": "This is a classical orchestral piece. The melody played on the trumpets feels like a prelude to an important, impressive moment. This music would suit any momentous occasion - like the countdown to a rocket launch.", "data_idx": 2189, "number": 1, "label": "hiphop"} +{"file_name": "train_04112.png", "caption": "This is a classical orchestral piece. The melody played on the trumpets feels like a prelude to an important, impressive moment. This music would suit any momentous occasion - like the countdown to a rocket launch.", "data_idx": 2189, "number": 2, "label": "hiphop"} +{"file_name": "train_04113.png", "caption": "This is a classical orchestral piece. The melody played on the trumpets feels like a prelude to an important, impressive moment. This music would suit any momentous occasion - like the countdown to a rocket launch.", "data_idx": 2189, "number": 3, "label": "hiphop"} +{"file_name": "train_04114.png", "caption": "The music features a female voice singing a melody. An acoustic guitar accompanies the singer with strummed chords in a fast tempo. In the background one can hear castanets playing fast. The lower quality of the recording leads me to believe this is an older recording.", "data_idx": 2193, "number": 0, "label": "disco"} +{"file_name": "train_04115.png", "caption": "The music features a female voice singing a melody. An acoustic guitar accompanies the singer with strummed chords in a fast tempo. In the background one can hear castanets playing fast. The lower quality of the recording leads me to believe this is an older recording.", "data_idx": 2193, "number": 1, "label": "disco"} +{"file_name": "train_04116.png", "caption": "The music features a female voice singing a melody. An acoustic guitar accompanies the singer with strummed chords in a fast tempo. In the background one can hear castanets playing fast. The lower quality of the recording leads me to believe this is an older recording.", "data_idx": 2193, "number": 2, "label": "disco"} +{"file_name": "train_04117.png", "caption": "The music features a female voice singing a melody. An acoustic guitar accompanies the singer with strummed chords in a fast tempo. In the background one can hear castanets playing fast. The lower quality of the recording leads me to believe this is an older recording.", "data_idx": 2193, "number": 3, "label": "disco"} diff --git a/data/train/metadata_0007.jsonl b/data/train/metadata_0007.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..cd8aa8efc727b8e7707a7ff164e73d720216d128 --- /dev/null +++ b/data/train/metadata_0007.jsonl @@ -0,0 +1,418 @@ +{"file_name": "train_04118.png", "caption": "The Latin Music features a \"4 on the floor\" punchy kick pattern, shimmering shakers, groovy bass that glues everything together, staccato brass melody and repetitive flat male vocal singing over it. The song is gradually speeding up, bringing the energy up along with it. It gives off happy and fun vibes as it sounds like something you would want to dance to.", "data_idx": 2200, "number": 0, "label": "reggae"} +{"file_name": "train_04119.png", "caption": "The Latin Music features a \"4 on the floor\" punchy kick pattern, shimmering shakers, groovy bass that glues everything together, staccato brass melody and repetitive flat male vocal singing over it. The song is gradually speeding up, bringing the energy up along with it. It gives off happy and fun vibes as it sounds like something you would want to dance to.", "data_idx": 2200, "number": 1, "label": "reggae"} +{"file_name": "train_04120.png", "caption": "The Latin Music features a \"4 on the floor\" punchy kick pattern, shimmering shakers, groovy bass that glues everything together, staccato brass melody and repetitive flat male vocal singing over it. The song is gradually speeding up, bringing the energy up along with it. It gives off happy and fun vibes as it sounds like something you would want to dance to.", "data_idx": 2200, "number": 2, "label": "reggae"} +{"file_name": "train_04121.png", "caption": "The Latin Music features a \"4 on the floor\" punchy kick pattern, shimmering shakers, groovy bass that glues everything together, staccato brass melody and repetitive flat male vocal singing over it. The song is gradually speeding up, bringing the energy up along with it. It gives off happy and fun vibes as it sounds like something you would want to dance to.", "data_idx": 2200, "number": 3, "label": "reggae"} +{"file_name": "train_04122.png", "caption": "The Rock song instrumental features a mellow synth pad with flanger effect on, and straight piano chords playing in the beginning. In the second part of the loop, there is an electric guitar solo melody layered with synth pad melody and electric guitar power chords layered with powerful bass guitar and energetic crash cymbal. It sounds energetic and powerful, even though it starts softly.", "data_idx": 2202, "number": 0, "label": "classical"} +{"file_name": "train_04123.png", "caption": "The Rock song instrumental features a mellow synth pad with flanger effect on, and straight piano chords playing in the beginning. In the second part of the loop, there is an electric guitar solo melody layered with synth pad melody and electric guitar power chords layered with powerful bass guitar and energetic crash cymbal. It sounds energetic and powerful, even though it starts softly.", "data_idx": 2202, "number": 1, "label": "classical"} +{"file_name": "train_04124.png", "caption": "The Rock song instrumental features a mellow synth pad with flanger effect on, and straight piano chords playing in the beginning. In the second part of the loop, there is an electric guitar solo melody layered with synth pad melody and electric guitar power chords layered with powerful bass guitar and energetic crash cymbal. It sounds energetic and powerful, even though it starts softly.", "data_idx": 2202, "number": 2, "label": "classical"} +{"file_name": "train_04125.png", "caption": "The Rock song instrumental features a mellow synth pad with flanger effect on, and straight piano chords playing in the beginning. In the second part of the loop, there is an electric guitar solo melody layered with synth pad melody and electric guitar power chords layered with powerful bass guitar and energetic crash cymbal. It sounds energetic and powerful, even though it starts softly.", "data_idx": 2202, "number": 3, "label": "classical"} +{"file_name": "train_04126.png", "caption": "This is an electroclash piece. There is a male vocalist singing in the lead with hollering samples in the background. An electric guitar is playing the main theme repeatedly. The bass guitar is playing a groovy bass line. In the rhythmic background, there is an upbeat acoustic drum beat. The piece is groovy and danceable. It could be playing in the background at a sports bar or a rock bar. The music would also suit well with sports venues.", "data_idx": 2205, "number": 0, "label": "rock"} +{"file_name": "train_04127.png", "caption": "This is an electroclash piece. There is a male vocalist singing in the lead with hollering samples in the background. An electric guitar is playing the main theme repeatedly. The bass guitar is playing a groovy bass line. In the rhythmic background, there is an upbeat acoustic drum beat. The piece is groovy and danceable. It could be playing in the background at a sports bar or a rock bar. The music would also suit well with sports venues.", "data_idx": 2205, "number": 1, "label": "rock"} +{"file_name": "train_04128.png", "caption": "This is an electroclash piece. There is a male vocalist singing in the lead with hollering samples in the background. An electric guitar is playing the main theme repeatedly. The bass guitar is playing a groovy bass line. In the rhythmic background, there is an upbeat acoustic drum beat. The piece is groovy and danceable. It could be playing in the background at a sports bar or a rock bar. The music would also suit well with sports venues.", "data_idx": 2205, "number": 2, "label": "rock"} +{"file_name": "train_04129.png", "caption": "This is an electroclash piece. There is a male vocalist singing in the lead with hollering samples in the background. An electric guitar is playing the main theme repeatedly. The bass guitar is playing a groovy bass line. In the rhythmic background, there is an upbeat acoustic drum beat. The piece is groovy and danceable. It could be playing in the background at a sports bar or a rock bar. The music would also suit well with sports venues.", "data_idx": 2205, "number": 3, "label": "rock"} +{"file_name": "train_04130.png", "caption": "The Acoustic song features an arpeggiated acoustic melody, wide synth pad chords, soft bass guitar, mellow synth keys melody, soft percussive drums loop and mellow female vocal singing on top. It sounds very relaxing and calming - almost like you can do yoga to it.", "data_idx": 2206, "number": 0, "label": "country"} +{"file_name": "train_04131.png", "caption": "The Acoustic song features an arpeggiated acoustic melody, wide synth pad chords, soft bass guitar, mellow synth keys melody, soft percussive drums loop and mellow female vocal singing on top. It sounds very relaxing and calming - almost like you can do yoga to it.", "data_idx": 2206, "number": 1, "label": "country"} +{"file_name": "train_04132.png", "caption": "The Acoustic song features an arpeggiated acoustic melody, wide synth pad chords, soft bass guitar, mellow synth keys melody, soft percussive drums loop and mellow female vocal singing on top. It sounds very relaxing and calming - almost like you can do yoga to it.", "data_idx": 2206, "number": 2, "label": "country"} +{"file_name": "train_04133.png", "caption": "The Acoustic song features an arpeggiated acoustic melody, wide synth pad chords, soft bass guitar, mellow synth keys melody, soft percussive drums loop and mellow female vocal singing on top. It sounds very relaxing and calming - almost like you can do yoga to it.", "data_idx": 2206, "number": 3, "label": "country"} +{"file_name": "train_04134.png", "caption": "An orchestra is playing a piece full of mallets playing a part of the melody, along with strings, flutes and oboes playing the main melody. Timpani hits and cymbals are setting accents to give the composition its power. In the background you can hear a whistle blowing sound and other noise that seem not to belong to the music. This song may be playing in an adventure movie-scene with little insects.", "data_idx": 2208, "number": 0, "label": "classical"} +{"file_name": "train_04135.png", "caption": "An orchestra is playing a piece full of mallets playing a part of the melody, along with strings, flutes and oboes playing the main melody. Timpani hits and cymbals are setting accents to give the composition its power. In the background you can hear a whistle blowing sound and other noise that seem not to belong to the music. This song may be playing in an adventure movie-scene with little insects.", "data_idx": 2208, "number": 1, "label": "classical"} +{"file_name": "train_04136.png", "caption": "An orchestra is playing a piece full of mallets playing a part of the melody, along with strings, flutes and oboes playing the main melody. Timpani hits and cymbals are setting accents to give the composition its power. In the background you can hear a whistle blowing sound and other noise that seem not to belong to the music. This song may be playing in an adventure movie-scene with little insects.", "data_idx": 2208, "number": 2, "label": "classical"} +{"file_name": "train_04137.png", "caption": "An orchestra is playing a piece full of mallets playing a part of the melody, along with strings, flutes and oboes playing the main melody. Timpani hits and cymbals are setting accents to give the composition its power. In the background you can hear a whistle blowing sound and other noise that seem not to belong to the music. This song may be playing in an adventure movie-scene with little insects.", "data_idx": 2208, "number": 3, "label": "classical"} +{"file_name": "train_04138.png", "caption": "The low quality recording features a commercial music that consists punchy kick, claps, shimmering hi hats, short brass hit layered with short sustained synth lead note, groovy synth bass that sounds like a siren, reverberant percussive elements and crowd chant at the end of the loop. It sounds energetic and groovy.", "data_idx": 2210, "number": 0, "label": "hiphop"} +{"file_name": "train_04139.png", "caption": "The low quality recording features a commercial music that consists punchy kick, claps, shimmering hi hats, short brass hit layered with short sustained synth lead note, groovy synth bass that sounds like a siren, reverberant percussive elements and crowd chant at the end of the loop. It sounds energetic and groovy.", "data_idx": 2210, "number": 1, "label": "hiphop"} +{"file_name": "train_04140.png", "caption": "The low quality recording features a commercial music that consists punchy kick, claps, shimmering hi hats, short brass hit layered with short sustained synth lead note, groovy synth bass that sounds like a siren, reverberant percussive elements and crowd chant at the end of the loop. It sounds energetic and groovy.", "data_idx": 2210, "number": 2, "label": "hiphop"} +{"file_name": "train_04141.png", "caption": "The low quality recording features a commercial music that consists punchy kick, claps, shimmering hi hats, short brass hit layered with short sustained synth lead note, groovy synth bass that sounds like a siren, reverberant percussive elements and crowd chant at the end of the loop. It sounds energetic and groovy.", "data_idx": 2210, "number": 3, "label": "hiphop"} +{"file_name": "train_04142.png", "caption": "This is an 80s electronic music piece. The rhythmic background consists of a disco electronic drum beat with frequent tom fills. There is a keyboard playing the main tune while a bass and an evolving synth are in the background. The atmosphere of this piece is groovy. This piece could be used at retro-themed nightclubs and parties. It could also be used in the soundtrack of an 80s movie or a TV show.", "data_idx": 2211, "number": 0, "label": "hiphop"} +{"file_name": "train_04143.png", "caption": "This is an 80s electronic music piece. The rhythmic background consists of a disco electronic drum beat with frequent tom fills. There is a keyboard playing the main tune while a bass and an evolving synth are in the background. The atmosphere of this piece is groovy. This piece could be used at retro-themed nightclubs and parties. It could also be used in the soundtrack of an 80s movie or a TV show.", "data_idx": 2211, "number": 1, "label": "hiphop"} +{"file_name": "train_04144.png", "caption": "This is an 80s electronic music piece. The rhythmic background consists of a disco electronic drum beat with frequent tom fills. There is a keyboard playing the main tune while a bass and an evolving synth are in the background. The atmosphere of this piece is groovy. This piece could be used at retro-themed nightclubs and parties. It could also be used in the soundtrack of an 80s movie or a TV show.", "data_idx": 2211, "number": 2, "label": "hiphop"} +{"file_name": "train_04145.png", "caption": "This is an 80s electronic music piece. The rhythmic background consists of a disco electronic drum beat with frequent tom fills. There is a keyboard playing the main tune while a bass and an evolving synth are in the background. The atmosphere of this piece is groovy. This piece could be used at retro-themed nightclubs and parties. It could also be used in the soundtrack of an 80s movie or a TV show.", "data_idx": 2211, "number": 3, "label": "hiphop"} +{"file_name": "train_04146.png", "caption": "This is an amateur recording of a live rock music performance. There is a female vocalist singing in the lead. The electric guitar is playing the main melody with a bass guitar in the background. There is a fast-paced and loud acoustic drum beat in the rhythmic background. The atmosphere is loud and rebellious.", "data_idx": 2212, "number": 0, "label": "pop"} +{"file_name": "train_04147.png", "caption": "This is an amateur recording of a live rock music performance. There is a female vocalist singing in the lead. The electric guitar is playing the main melody with a bass guitar in the background. There is a fast-paced and loud acoustic drum beat in the rhythmic background. The atmosphere is loud and rebellious.", "data_idx": 2212, "number": 1, "label": "pop"} +{"file_name": "train_04148.png", "caption": "The low quality recording features a live performance of arpeggiated acoustic guitar melody and passionate male vocal singing over it. There are some people chattering and traffic sound effects, probably because it was recorded outside. The recording is noisy, but it sounds emotional regardless.", "data_idx": 2213, "number": 0, "label": "rock"} +{"file_name": "train_04149.png", "caption": "The low quality recording features a live performance of arpeggiated acoustic guitar melody and passionate male vocal singing over it. There are some people chattering and traffic sound effects, probably because it was recorded outside. The recording is noisy, but it sounds emotional regardless.", "data_idx": 2213, "number": 1, "label": "rock"} +{"file_name": "train_04150.png", "caption": "The low quality recording features a live performance of arpeggiated acoustic guitar melody and passionate male vocal singing over it. There are some people chattering and traffic sound effects, probably because it was recorded outside. The recording is noisy, but it sounds emotional regardless.", "data_idx": 2213, "number": 2, "label": "rock"} +{"file_name": "train_04151.png", "caption": "The low quality recording features a live performance of arpeggiated acoustic guitar melody and passionate male vocal singing over it. There are some people chattering and traffic sound effects, probably because it was recorded outside. The recording is noisy, but it sounds emotional regardless.", "data_idx": 2213, "number": 3, "label": "rock"} +{"file_name": "train_04152.png", "caption": "This is a comedy music piece. There is a male vocalist at the forefront singing half-heartedly with tongue-in-cheek mannerisms. There is a keyboard playing the main theme joined by an electric guitar. There is a bass guitar in the background. An acoustic drum beat provides the rhythm. There is a sarcastic atmosphere in the piece. This piece could be used in the background of funny videos.", "data_idx": 2215, "number": 0, "label": "country"} +{"file_name": "train_04153.png", "caption": "This is a comedy music piece. There is a male vocalist at the forefront singing half-heartedly with tongue-in-cheek mannerisms. There is a keyboard playing the main theme joined by an electric guitar. There is a bass guitar in the background. An acoustic drum beat provides the rhythm. There is a sarcastic atmosphere in the piece. This piece could be used in the background of funny videos.", "data_idx": 2215, "number": 1, "label": "country"} +{"file_name": "train_04154.png", "caption": "This is a comedy music piece. There is a male vocalist at the forefront singing half-heartedly with tongue-in-cheek mannerisms. There is a keyboard playing the main theme joined by an electric guitar. There is a bass guitar in the background. An acoustic drum beat provides the rhythm. There is a sarcastic atmosphere in the piece. This piece could be used in the background of funny videos.", "data_idx": 2215, "number": 2, "label": "country"} +{"file_name": "train_04155.png", "caption": "This is a comedy music piece. There is a male vocalist at the forefront singing half-heartedly with tongue-in-cheek mannerisms. There is a keyboard playing the main theme joined by an electric guitar. There is a bass guitar in the background. An acoustic drum beat provides the rhythm. There is a sarcastic atmosphere in the piece. This piece could be used in the background of funny videos.", "data_idx": 2215, "number": 3, "label": "country"} +{"file_name": "train_04156.png", "caption": "This song has a traditional Mexican mariachi sound. It is fun, vibrant and energetic and is led by rhythmic and melodic playing on the Mexican Vihuela. The maracas add an element of rhythmic percussion. There are sounds of laughter in the background.", "data_idx": 2216, "number": 0, "label": "classical"} +{"file_name": "train_04157.png", "caption": "This song has a traditional Mexican mariachi sound. It is fun, vibrant and energetic and is led by rhythmic and melodic playing on the Mexican Vihuela. The maracas add an element of rhythmic percussion. There are sounds of laughter in the background.", "data_idx": 2216, "number": 1, "label": "classical"} +{"file_name": "train_04158.png", "caption": "This song has a traditional Mexican mariachi sound. It is fun, vibrant and energetic and is led by rhythmic and melodic playing on the Mexican Vihuela. The maracas add an element of rhythmic percussion. There are sounds of laughter in the background.", "data_idx": 2216, "number": 2, "label": "classical"} +{"file_name": "train_04159.png", "caption": "This song has a traditional Mexican mariachi sound. It is fun, vibrant and energetic and is led by rhythmic and melodic playing on the Mexican Vihuela. The maracas add an element of rhythmic percussion. There are sounds of laughter in the background.", "data_idx": 2216, "number": 3, "label": "classical"} +{"file_name": "train_04160.png", "caption": "This is an Arabian folk music piece. It is meant to be an accompaniment to a folk dance. There is an oud playing the melody while a tambourine is playing as the rhythmic background. This is an amateur recording of a live performance. The atmosphere is playful. This could be playing in the background at a Middle Eastern cuisine restaurant or at a hookah place.", "data_idx": 2218, "number": 0, "label": "reggae"} +{"file_name": "train_04161.png", "caption": "This is an Arabian folk music piece. It is meant to be an accompaniment to a folk dance. There is an oud playing the melody while a tambourine is playing as the rhythmic background. This is an amateur recording of a live performance. The atmosphere is playful. This could be playing in the background at a Middle Eastern cuisine restaurant or at a hookah place.", "data_idx": 2218, "number": 1, "label": "reggae"} +{"file_name": "train_04162.png", "caption": "This is an Arabian folk music piece. It is meant to be an accompaniment to a folk dance. There is an oud playing the melody while a tambourine is playing as the rhythmic background. This is an amateur recording of a live performance. The atmosphere is playful. This could be playing in the background at a Middle Eastern cuisine restaurant or at a hookah place.", "data_idx": 2218, "number": 2, "label": "reggae"} +{"file_name": "train_04163.png", "caption": "This is an Arabian folk music piece. It is meant to be an accompaniment to a folk dance. There is an oud playing the melody while a tambourine is playing as the rhythmic background. This is an amateur recording of a live performance. The atmosphere is playful. This could be playing in the background at a Middle Eastern cuisine restaurant or at a hookah place.", "data_idx": 2218, "number": 3, "label": "reggae"} +{"file_name": "train_04164.png", "caption": "The song is an instrumental. The tempo is medium with subtle jazz drumming, keyboard accompaniment, groovy bass line and an electric guitar playing lead. The song is relaxing and groovy. The song is a live jazz instrumental performance with poor audio quality.", "data_idx": 2220, "number": 0, "label": "jazz"} +{"file_name": "train_04165.png", "caption": "The song is an instrumental. The tempo is medium with subtle jazz drumming, keyboard accompaniment, groovy bass line and an electric guitar playing lead. The song is relaxing and groovy. The song is a live jazz instrumental performance with poor audio quality.", "data_idx": 2220, "number": 1, "label": "jazz"} +{"file_name": "train_04166.png", "caption": "The song is an instrumental. The tempo is medium with subtle jazz drumming, keyboard accompaniment, groovy bass line and an electric guitar playing lead. The song is relaxing and groovy. The song is a live jazz instrumental performance with poor audio quality.", "data_idx": 2220, "number": 2, "label": "jazz"} +{"file_name": "train_04167.png", "caption": "The song is an instrumental. The tempo is medium with subtle jazz drumming, keyboard accompaniment, groovy bass line and an electric guitar playing lead. The song is relaxing and groovy. The song is a live jazz instrumental performance with poor audio quality.", "data_idx": 2220, "number": 3, "label": "jazz"} +{"file_name": "train_04168.png", "caption": "The song is an instrumental piece. The song is medium tempo with a casual piano accompaniment which is cheerful and jittery in style, along with violent sounds of a crash, crushing tones, metal clanging and rubber twisting sounds. The song is cheerful and at the same time has violent tones of injury and accident superimposed in it. The song is a background effect for an animated show which is violent in nature.", "data_idx": 2223, "number": 0, "label": "jazz"} +{"file_name": "train_04169.png", "caption": "The song is an instrumental piece. The song is medium tempo with a casual piano accompaniment which is cheerful and jittery in style, along with violent sounds of a crash, crushing tones, metal clanging and rubber twisting sounds. The song is cheerful and at the same time has violent tones of injury and accident superimposed in it. The song is a background effect for an animated show which is violent in nature.", "data_idx": 2223, "number": 1, "label": "jazz"} +{"file_name": "train_04170.png", "caption": "The song is an instrumental piece. The song is medium tempo with a casual piano accompaniment which is cheerful and jittery in style, along with violent sounds of a crash, crushing tones, metal clanging and rubber twisting sounds. The song is cheerful and at the same time has violent tones of injury and accident superimposed in it. The song is a background effect for an animated show which is violent in nature.", "data_idx": 2223, "number": 2, "label": "jazz"} +{"file_name": "train_04171.png", "caption": "The song is an instrumental piece. The song is medium tempo with a casual piano accompaniment which is cheerful and jittery in style, along with violent sounds of a crash, crushing tones, metal clanging and rubber twisting sounds. The song is cheerful and at the same time has violent tones of injury and accident superimposed in it. The song is a background effect for an animated show which is violent in nature.", "data_idx": 2223, "number": 3, "label": "jazz"} +{"file_name": "train_04172.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing lead and distorted guitar rhythm, along with groovy bass line and rock drumming rhythm. The song is exciting and spirited. The song is a classic rock instrumental with poor quality audio.", "data_idx": 2225, "number": 0, "label": "rock"} +{"file_name": "train_04173.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing lead and distorted guitar rhythm, along with groovy bass line and rock drumming rhythm. The song is exciting and spirited. The song is a classic rock instrumental with poor quality audio.", "data_idx": 2225, "number": 1, "label": "rock"} +{"file_name": "train_04174.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing lead and distorted guitar rhythm, along with groovy bass line and rock drumming rhythm. The song is exciting and spirited. The song is a classic rock instrumental with poor quality audio.", "data_idx": 2225, "number": 2, "label": "rock"} +{"file_name": "train_04175.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing lead and distorted guitar rhythm, along with groovy bass line and rock drumming rhythm. The song is exciting and spirited. The song is a classic rock instrumental with poor quality audio.", "data_idx": 2225, "number": 3, "label": "rock"} +{"file_name": "train_04176.png", "caption": "The low quality recording features a live performance of a rock song that consists of aggressive electric guitar chord progression, punchy snare, simple kick pattern, shimmering hi hats, energetic crash cymbal and a groovy bass guitar. At the very beginning the sound is gated, leaving only the distant, reverberant guitar chords and punchy snare hits audible. There is also a short snare roll, right before the drop. This instrumental is very energetic and exciting.", "data_idx": 2226, "number": 0, "label": "metal"} +{"file_name": "train_04177.png", "caption": "The low quality recording features a live performance of a rock song that consists of aggressive electric guitar chord progression, punchy snare, simple kick pattern, shimmering hi hats, energetic crash cymbal and a groovy bass guitar. At the very beginning the sound is gated, leaving only the distant, reverberant guitar chords and punchy snare hits audible. There is also a short snare roll, right before the drop. This instrumental is very energetic and exciting.", "data_idx": 2226, "number": 1, "label": "metal"} +{"file_name": "train_04178.png", "caption": "The low quality recording features a live performance of a rock song that consists of aggressive electric guitar chord progression, punchy snare, simple kick pattern, shimmering hi hats, energetic crash cymbal and a groovy bass guitar. At the very beginning the sound is gated, leaving only the distant, reverberant guitar chords and punchy snare hits audible. There is also a short snare roll, right before the drop. This instrumental is very energetic and exciting.", "data_idx": 2226, "number": 2, "label": "metal"} +{"file_name": "train_04179.png", "caption": "The low quality recording features a live performance of a rock song that consists of aggressive electric guitar chord progression, punchy snare, simple kick pattern, shimmering hi hats, energetic crash cymbal and a groovy bass guitar. At the very beginning the sound is gated, leaving only the distant, reverberant guitar chords and punchy snare hits audible. There is also a short snare roll, right before the drop. This instrumental is very energetic and exciting.", "data_idx": 2226, "number": 3, "label": "metal"} +{"file_name": "train_04180.png", "caption": "The low quality recording features a live performance including resonating bass, energetic drums and strings melody. The recording is in a terrible condition, as the bass is resonating much and the sound is overall muffled and muddy. There are some cheering and clapping sounds from a crowd. The listener can barely hear the instruments, as it sounds chaotic. It was definitely recorded with a phone.", "data_idx": 2228, "number": 0, "label": "metal"} +{"file_name": "train_04181.png", "caption": "The low quality recording features a live performance including resonating bass, energetic drums and strings melody. The recording is in a terrible condition, as the bass is resonating much and the sound is overall muffled and muddy. There are some cheering and clapping sounds from a crowd. The listener can barely hear the instruments, as it sounds chaotic. It was definitely recorded with a phone.", "data_idx": 2228, "number": 1, "label": "metal"} +{"file_name": "train_04182.png", "caption": "The low quality recording features a live performance including resonating bass, energetic drums and strings melody. The recording is in a terrible condition, as the bass is resonating much and the sound is overall muffled and muddy. There are some cheering and clapping sounds from a crowd. The listener can barely hear the instruments, as it sounds chaotic. It was definitely recorded with a phone.", "data_idx": 2228, "number": 2, "label": "metal"} +{"file_name": "train_04183.png", "caption": "The low quality recording features a live performance including resonating bass, energetic drums and strings melody. The recording is in a terrible condition, as the bass is resonating much and the sound is overall muffled and muddy. There are some cheering and clapping sounds from a crowd. The listener can barely hear the instruments, as it sounds chaotic. It was definitely recorded with a phone.", "data_idx": 2228, "number": 3, "label": "metal"} +{"file_name": "train_04184.png", "caption": "A xylophone or another bell sounding metal instrument is playing a melody that sounds like a lullaby. Someone is burping loud and with full force. Then you can hear a high pitched voice laughing. These sounds don't seem to belong to the music. This song may be playing in a cartoon sequence.", "data_idx": 2230, "number": 0, "label": "hiphop"} +{"file_name": "train_04185.png", "caption": "A xylophone or another bell sounding metal instrument is playing a melody that sounds like a lullaby. Someone is burping loud and with full force. Then you can hear a high pitched voice laughing. These sounds don't seem to belong to the music. This song may be playing in a cartoon sequence.", "data_idx": 2230, "number": 1, "label": "hiphop"} +{"file_name": "train_04186.png", "caption": "The low quality recording features a reverberant male vocal yodeling over acoustic rhythm guitar and smooth double bass, both located in the right channel of the stereo image. It sounds passionate, fun and happy - like something you would try to sing to when you are in a good mood.", "data_idx": 2231, "number": 0, "label": "blues"} +{"file_name": "train_04187.png", "caption": "The low quality recording features a reverberant male vocal yodeling over acoustic rhythm guitar and smooth double bass, both located in the right channel of the stereo image. It sounds passionate, fun and happy - like something you would try to sing to when you are in a good mood.", "data_idx": 2231, "number": 1, "label": "blues"} +{"file_name": "train_04188.png", "caption": "The low quality recording features a reverberant male vocal yodeling over acoustic rhythm guitar and smooth double bass, both located in the right channel of the stereo image. It sounds passionate, fun and happy - like something you would try to sing to when you are in a good mood.", "data_idx": 2231, "number": 2, "label": "blues"} +{"file_name": "train_04189.png", "caption": "The low quality recording features a reverberant male vocal yodeling over acoustic rhythm guitar and smooth double bass, both located in the right channel of the stereo image. It sounds passionate, fun and happy - like something you would try to sing to when you are in a good mood.", "data_idx": 2231, "number": 3, "label": "blues"} +{"file_name": "train_04190.png", "caption": "An acoustic drum is playing a faster groove along with a walking bassline. An accordion is playing a melody on top of another instrument supported with short rhythmic chords on the offbeat. Male voice samples are used to create a simple melody. This song may be playing in a funny video. This is an amateur recording.", "data_idx": 2232, "number": 0, "label": "blues"} +{"file_name": "train_04191.png", "caption": "An acoustic drum is playing a faster groove along with a walking bassline. An accordion is playing a melody on top of another instrument supported with short rhythmic chords on the offbeat. Male voice samples are used to create a simple melody. This song may be playing in a funny video. This is an amateur recording.", "data_idx": 2232, "number": 1, "label": "blues"} +{"file_name": "train_04192.png", "caption": "An acoustic drum is playing a faster groove along with a walking bassline. An accordion is playing a melody on top of another instrument supported with short rhythmic chords on the offbeat. Male voice samples are used to create a simple melody. This song may be playing in a funny video. This is an amateur recording.", "data_idx": 2232, "number": 2, "label": "blues"} +{"file_name": "train_04193.png", "caption": "An acoustic drum is playing a faster groove along with a walking bassline. An accordion is playing a melody on top of another instrument supported with short rhythmic chords on the offbeat. Male voice samples are used to create a simple melody. This song may be playing in a funny video. This is an amateur recording.", "data_idx": 2232, "number": 3, "label": "blues"} +{"file_name": "train_04194.png", "caption": "The low quality recording features an acoustic guitar tuning tutorial. The recording is in mono and very noisy.", "data_idx": 2236, "number": 0, "label": "blues"} +{"file_name": "train_04195.png", "caption": "The low quality recording features an acoustic guitar tuning tutorial. The recording is in mono and very noisy.", "data_idx": 2236, "number": 1, "label": "blues"} +{"file_name": "train_04196.png", "caption": "The low quality recording features an acoustic guitar tuning tutorial. The recording is in mono and very noisy.", "data_idx": 2236, "number": 2, "label": "blues"} +{"file_name": "train_04197.png", "caption": "The low quality recording features an acoustic guitar tuning tutorial. The recording is in mono and very noisy.", "data_idx": 2236, "number": 3, "label": "blues"} +{"file_name": "train_04198.png", "caption": "A male vocalist sings this aggressive song. The tempo is medium fast with electronic music; vigorous drumming, cymbal ride; synthesiser arrangements, distorted menacing vocals and electronic music. The song is angry, aggressive, sinister, menacing, spine-chilling and chaotic. This song is a Goth Rock/Hard Metal song.", "data_idx": 2237, "number": 0, "label": "disco"} +{"file_name": "train_04199.png", "caption": "A male vocalist sings this aggressive song. The tempo is medium fast with electronic music; vigorous drumming, cymbal ride; synthesiser arrangements, distorted menacing vocals and electronic music. The song is angry, aggressive, sinister, menacing, spine-chilling and chaotic. This song is a Goth Rock/Hard Metal song.", "data_idx": 2237, "number": 1, "label": "disco"} +{"file_name": "train_04200.png", "caption": "A male vocalist sings this aggressive song. The tempo is medium fast with electronic music; vigorous drumming, cymbal ride; synthesiser arrangements, distorted menacing vocals and electronic music. The song is angry, aggressive, sinister, menacing, spine-chilling and chaotic. This song is a Goth Rock/Hard Metal song.", "data_idx": 2237, "number": 2, "label": "disco"} +{"file_name": "train_04201.png", "caption": "A male vocalist sings this aggressive song. The tempo is medium fast with electronic music; vigorous drumming, cymbal ride; synthesiser arrangements, distorted menacing vocals and electronic music. The song is angry, aggressive, sinister, menacing, spine-chilling and chaotic. This song is a Goth Rock/Hard Metal song.", "data_idx": 2237, "number": 3, "label": "disco"} +{"file_name": "train_04202.png", "caption": "This is the recording of a jazz improvisation performance. It is in an instrumental piece performed with a keyboard that utilizes a classical piano sound. The chords are being played gently which creates a calming atmosphere. Due to various chords and lines being played in this performance, parts of it could be lifted to be used as piano samples for a beat. It could also be playing in the background of a restaurant or a jazz bar.", "data_idx": 2239, "number": 0, "label": "classical"} +{"file_name": "train_04203.png", "caption": "This is the recording of a jazz improvisation performance. It is in an instrumental piece performed with a keyboard that utilizes a classical piano sound. The chords are being played gently which creates a calming atmosphere. Due to various chords and lines being played in this performance, parts of it could be lifted to be used as piano samples for a beat. It could also be playing in the background of a restaurant or a jazz bar.", "data_idx": 2239, "number": 1, "label": "classical"} +{"file_name": "train_04204.png", "caption": "This is the recording of a jazz improvisation performance. It is in an instrumental piece performed with a keyboard that utilizes a classical piano sound. The chords are being played gently which creates a calming atmosphere. Due to various chords and lines being played in this performance, parts of it could be lifted to be used as piano samples for a beat. It could also be playing in the background of a restaurant or a jazz bar.", "data_idx": 2239, "number": 2, "label": "classical"} +{"file_name": "train_04205.png", "caption": "This is the recording of a jazz improvisation performance. It is in an instrumental piece performed with a keyboard that utilizes a classical piano sound. The chords are being played gently which creates a calming atmosphere. Due to various chords and lines being played in this performance, parts of it could be lifted to be used as piano samples for a beat. It could also be playing in the background of a restaurant or a jazz bar.", "data_idx": 2239, "number": 3, "label": "classical"} +{"file_name": "train_04206.png", "caption": "This is an instrumental rock piece which is a jingle for an ad. There is a clean electric guitar and a high-pitched keyboard playing the main melody. There is a mild bass guitar in the background supporting the melody. In the rhythmic background, there is a rock beat being played by the acoustic drums. A zipper sound effect can be heard synchronized with the ad. The atmosphere is very generic and calm. It is most suitable as an ad jingle or music behind a tutorial video.", "data_idx": 2240, "number": 0, "label": "rock"} +{"file_name": "train_04207.png", "caption": "This is an instrumental rock piece which is a jingle for an ad. There is a clean electric guitar and a high-pitched keyboard playing the main melody. There is a mild bass guitar in the background supporting the melody. In the rhythmic background, there is a rock beat being played by the acoustic drums. A zipper sound effect can be heard synchronized with the ad. The atmosphere is very generic and calm. It is most suitable as an ad jingle or music behind a tutorial video.", "data_idx": 2240, "number": 1, "label": "rock"} +{"file_name": "train_04208.png", "caption": "This is an instrumental rock piece which is a jingle for an ad. There is a clean electric guitar and a high-pitched keyboard playing the main melody. There is a mild bass guitar in the background supporting the melody. In the rhythmic background, there is a rock beat being played by the acoustic drums. A zipper sound effect can be heard synchronized with the ad. The atmosphere is very generic and calm. It is most suitable as an ad jingle or music behind a tutorial video.", "data_idx": 2240, "number": 2, "label": "rock"} +{"file_name": "train_04209.png", "caption": "This is an instrumental rock piece which is a jingle for an ad. There is a clean electric guitar and a high-pitched keyboard playing the main melody. There is a mild bass guitar in the background supporting the melody. In the rhythmic background, there is a rock beat being played by the acoustic drums. A zipper sound effect can be heard synchronized with the ad. The atmosphere is very generic and calm. It is most suitable as an ad jingle or music behind a tutorial video.", "data_idx": 2240, "number": 3, "label": "rock"} +{"file_name": "train_04210.png", "caption": "This is an amateur DJ set performance with a turntable scratched over an electronic music piece with eurobeat characteristics. The track has a repeating fuzzy bass with a repeating loud electronic drum as the rhythmic background. There is an android voice singing the same words over and over.", "data_idx": 2241, "number": 0, "label": "metal"} +{"file_name": "train_04211.png", "caption": "This is an amateur DJ set performance with a turntable scratched over an electronic music piece with eurobeat characteristics. The track has a repeating fuzzy bass with a repeating loud electronic drum as the rhythmic background. There is an android voice singing the same words over and over.", "data_idx": 2241, "number": 1, "label": "metal"} +{"file_name": "train_04212.png", "caption": "This is an amateur DJ set performance with a turntable scratched over an electronic music piece with eurobeat characteristics. The track has a repeating fuzzy bass with a repeating loud electronic drum as the rhythmic background. There is an android voice singing the same words over and over.", "data_idx": 2241, "number": 2, "label": "metal"} +{"file_name": "train_04213.png", "caption": "This is an amateur DJ set performance with a turntable scratched over an electronic music piece with eurobeat characteristics. The track has a repeating fuzzy bass with a repeating loud electronic drum as the rhythmic background. There is an android voice singing the same words over and over.", "data_idx": 2241, "number": 3, "label": "metal"} +{"file_name": "train_04214.png", "caption": "This song is an instrumental. The tempo is medium with melodious synthesiser arrangement , steady drumming and funky bass in contrast to a dissonant gun firing like sound;. The mismatched rhythm is unpleasant to the ears and disturbs the harmonic vibe of the song.", "data_idx": 2242, "number": 0, "label": "hiphop"} +{"file_name": "train_04215.png", "caption": "This song is an instrumental. The tempo is medium with melodious synthesiser arrangement , steady drumming and funky bass in contrast to a dissonant gun firing like sound;. The mismatched rhythm is unpleasant to the ears and disturbs the harmonic vibe of the song.", "data_idx": 2242, "number": 1, "label": "hiphop"} +{"file_name": "train_04216.png", "caption": "This song is an instrumental. The tempo is medium with melodious synthesiser arrangement , steady drumming and funky bass in contrast to a dissonant gun firing like sound;. The mismatched rhythm is unpleasant to the ears and disturbs the harmonic vibe of the song.", "data_idx": 2242, "number": 2, "label": "hiphop"} +{"file_name": "train_04217.png", "caption": "This song is an instrumental. The tempo is medium with melodious synthesiser arrangement , steady drumming and funky bass in contrast to a dissonant gun firing like sound;. The mismatched rhythm is unpleasant to the ears and disturbs the harmonic vibe of the song.", "data_idx": 2242, "number": 3, "label": "hiphop"} +{"file_name": "train_04218.png", "caption": "Strings are playing a soft chord melody along to a a sitar supporting the male and female voice singing together. A digital soft and round kick drum sound is holding the rhythm together with another guitar-like sounding instrument. The instruments are spread across the two sides of the speakers. This song may be playing in a meditation group singing along.", "data_idx": 2243, "number": 0, "label": "pop"} +{"file_name": "train_04219.png", "caption": "Strings are playing a soft chord melody along to a a sitar supporting the male and female voice singing together. A digital soft and round kick drum sound is holding the rhythm together with another guitar-like sounding instrument. The instruments are spread across the two sides of the speakers. This song may be playing in a meditation group singing along.", "data_idx": 2243, "number": 1, "label": "pop"} +{"file_name": "train_04220.png", "caption": "Strings are playing a soft chord melody along to a a sitar supporting the male and female voice singing together. A digital soft and round kick drum sound is holding the rhythm together with another guitar-like sounding instrument. The instruments are spread across the two sides of the speakers. This song may be playing in a meditation group singing along.", "data_idx": 2243, "number": 2, "label": "pop"} +{"file_name": "train_04221.png", "caption": "Strings are playing a soft chord melody along to a a sitar supporting the male and female voice singing together. A digital soft and round kick drum sound is holding the rhythm together with another guitar-like sounding instrument. The instruments are spread across the two sides of the speakers. This song may be playing in a meditation group singing along.", "data_idx": 2243, "number": 3, "label": "pop"} +{"file_name": "train_04222.png", "caption": "This audio clip features a female voice singing the main melody. The quality of the audio recording is low. The voice is accompanied by Latin style percussion. Male voices sing backing vocals. This is a dance song at a moderate tempo. The sound of a camera shutter is played at the beginning and end of the clip. Other musical instruments are barely audible due to the low quality of audio recording.", "data_idx": 2248, "number": 0, "label": "hiphop"} +{"file_name": "train_04223.png", "caption": "This audio clip features a female voice singing the main melody. The quality of the audio recording is low. The voice is accompanied by Latin style percussion. Male voices sing backing vocals. This is a dance song at a moderate tempo. The sound of a camera shutter is played at the beginning and end of the clip. Other musical instruments are barely audible due to the low quality of audio recording.", "data_idx": 2248, "number": 1, "label": "hiphop"} +{"file_name": "train_04224.png", "caption": "This audio clip features a female voice singing the main melody. The quality of the audio recording is low. The voice is accompanied by Latin style percussion. Male voices sing backing vocals. This is a dance song at a moderate tempo. The sound of a camera shutter is played at the beginning and end of the clip. Other musical instruments are barely audible due to the low quality of audio recording.", "data_idx": 2248, "number": 2, "label": "hiphop"} +{"file_name": "train_04225.png", "caption": "This audio clip features a female voice singing the main melody. The quality of the audio recording is low. The voice is accompanied by Latin style percussion. Male voices sing backing vocals. This is a dance song at a moderate tempo. The sound of a camera shutter is played at the beginning and end of the clip. Other musical instruments are barely audible due to the low quality of audio recording.", "data_idx": 2248, "number": 3, "label": "hiphop"} +{"file_name": "train_04226.png", "caption": "The low quality recording features a dance hall rhythm Christmas song that consists of flat male vocals, alongside high pitched male vocals at the very beginning, singing over syncopated snare, plucked sitar melody, \"4 on the floor\" kick pattern and simple bass. It sounds fun and happy, like something kids would listen to.", "data_idx": 2252, "number": 0, "label": "hiphop"} +{"file_name": "train_04227.png", "caption": "The low quality recording features a dance hall rhythm Christmas song that consists of flat male vocals, alongside high pitched male vocals at the very beginning, singing over syncopated snare, plucked sitar melody, \"4 on the floor\" kick pattern and simple bass. It sounds fun and happy, like something kids would listen to.", "data_idx": 2252, "number": 1, "label": "hiphop"} +{"file_name": "train_04228.png", "caption": "The low quality recording features a dance hall rhythm Christmas song that consists of flat male vocals, alongside high pitched male vocals at the very beginning, singing over syncopated snare, plucked sitar melody, \"4 on the floor\" kick pattern and simple bass. It sounds fun and happy, like something kids would listen to.", "data_idx": 2252, "number": 2, "label": "hiphop"} +{"file_name": "train_04229.png", "caption": "The low quality recording features a dance hall rhythm Christmas song that consists of flat male vocals, alongside high pitched male vocals at the very beginning, singing over syncopated snare, plucked sitar melody, \"4 on the floor\" kick pattern and simple bass. It sounds fun and happy, like something kids would listen to.", "data_idx": 2252, "number": 3, "label": "hiphop"} +{"file_name": "train_04230.png", "caption": "A male singer sings this emotional melody with a female backup singer singing chanting tones. The song is slow tempo with a guitar strumming gently and no other instrumentation. The song is emotional and romantic. The song is beautiful and lilting.", "data_idx": 2253, "number": 0, "label": "rock"} +{"file_name": "train_04231.png", "caption": "A male singer sings this emotional melody with a female backup singer singing chanting tones. The song is slow tempo with a guitar strumming gently and no other instrumentation. The song is emotional and romantic. The song is beautiful and lilting.", "data_idx": 2253, "number": 1, "label": "rock"} +{"file_name": "train_04232.png", "caption": "A male singer sings this emotional melody with a female backup singer singing chanting tones. The song is slow tempo with a guitar strumming gently and no other instrumentation. The song is emotional and romantic. The song is beautiful and lilting.", "data_idx": 2253, "number": 2, "label": "rock"} +{"file_name": "train_04233.png", "caption": "A male singer sings this emotional melody with a female backup singer singing chanting tones. The song is slow tempo with a guitar strumming gently and no other instrumentation. The song is emotional and romantic. The song is beautiful and lilting.", "data_idx": 2253, "number": 3, "label": "rock"} +{"file_name": "train_04234.png", "caption": "The low quality, noisy recording features a male throaty vocals singing and some footsteps sound effects. In the background, some dog is barking. The whole sound is panned to the left channel of the stereo image, thus the unbalanced stereo image and it sounds like a sound from TV was recorded.", "data_idx": 2254, "number": 0, "label": "classical"} +{"file_name": "train_04235.png", "caption": "The low quality, noisy recording features a male throaty vocals singing and some footsteps sound effects. In the background, some dog is barking. The whole sound is panned to the left channel of the stereo image, thus the unbalanced stereo image and it sounds like a sound from TV was recorded.", "data_idx": 2254, "number": 1, "label": "classical"} +{"file_name": "train_04236.png", "caption": "The low quality, noisy recording features a male throaty vocals singing and some footsteps sound effects. In the background, some dog is barking. The whole sound is panned to the left channel of the stereo image, thus the unbalanced stereo image and it sounds like a sound from TV was recorded.", "data_idx": 2254, "number": 2, "label": "classical"} +{"file_name": "train_04237.png", "caption": "The low quality, noisy recording features a male throaty vocals singing and some footsteps sound effects. In the background, some dog is barking. The whole sound is panned to the left channel of the stereo image, thus the unbalanced stereo image and it sounds like a sound from TV was recorded.", "data_idx": 2254, "number": 3, "label": "classical"} +{"file_name": "train_04238.png", "caption": "This is an amateur recording of a young girl singing over a pop music piece in the background. The piece has a female vocal singing melodically while the electric guitar and the bass guitar play in the background. The rhythmic background consists of a very basic 4/4 rock drum beat.", "data_idx": 2255, "number": 0, "label": "classical"} +{"file_name": "train_04239.png", "caption": "This is an amateur recording of a young girl singing over a pop music piece in the background. The piece has a female vocal singing melodically while the electric guitar and the bass guitar play in the background. The rhythmic background consists of a very basic 4/4 rock drum beat.", "data_idx": 2255, "number": 1, "label": "classical"} +{"file_name": "train_04240.png", "caption": "This is an amateur recording of a young girl singing over a pop music piece in the background. The piece has a female vocal singing melodically while the electric guitar and the bass guitar play in the background. The rhythmic background consists of a very basic 4/4 rock drum beat.", "data_idx": 2255, "number": 2, "label": "classical"} +{"file_name": "train_04241.png", "caption": "This is an amateur recording of a young girl singing over a pop music piece in the background. The piece has a female vocal singing melodically while the electric guitar and the bass guitar play in the background. The rhythmic background consists of a very basic 4/4 rock drum beat.", "data_idx": 2255, "number": 3, "label": "classical"} +{"file_name": "train_04242.png", "caption": "Very sounds like an old out of tune mechanical music making machine with harpsichord and recorder sounds. Very dissonant and atonal.", "data_idx": 2256, "number": 0, "label": "hiphop"} +{"file_name": "train_04243.png", "caption": "Very sounds like an old out of tune mechanical music making machine with harpsichord and recorder sounds. Very dissonant and atonal.", "data_idx": 2256, "number": 1, "label": "hiphop"} +{"file_name": "train_04244.png", "caption": "Very sounds like an old out of tune mechanical music making machine with harpsichord and recorder sounds. Very dissonant and atonal.", "data_idx": 2256, "number": 2, "label": "hiphop"} +{"file_name": "train_04245.png", "caption": "Very sounds like an old out of tune mechanical music making machine with harpsichord and recorder sounds. Very dissonant and atonal.", "data_idx": 2256, "number": 3, "label": "hiphop"} +{"file_name": "train_04246.png", "caption": "This rocksteady song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass is played on a double bass in a rock and roll style progression. A trumpet plays a fill at the end when the voice pauses. There are other instruments being played, but the quality of recording is low and the instruments are not heard clearly. The mood of the song is happy.", "data_idx": 2257, "number": 0, "label": "blues"} +{"file_name": "train_04247.png", "caption": "This rocksteady song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass is played on a double bass in a rock and roll style progression. A trumpet plays a fill at the end when the voice pauses. There are other instruments being played, but the quality of recording is low and the instruments are not heard clearly. The mood of the song is happy.", "data_idx": 2257, "number": 1, "label": "blues"} +{"file_name": "train_04248.png", "caption": "This rocksteady song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass is played on a double bass in a rock and roll style progression. A trumpet plays a fill at the end when the voice pauses. There are other instruments being played, but the quality of recording is low and the instruments are not heard clearly. The mood of the song is happy.", "data_idx": 2257, "number": 2, "label": "blues"} +{"file_name": "train_04249.png", "caption": "This rocksteady song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. The bass is played on a double bass in a rock and roll style progression. A trumpet plays a fill at the end when the voice pauses. There are other instruments being played, but the quality of recording is low and the instruments are not heard clearly. The mood of the song is happy.", "data_idx": 2257, "number": 3, "label": "blues"} +{"file_name": "train_04250.png", "caption": "The song is an instrumental. The song is medium tempo with a slick drumming rhythm, grunge keyboard tones, overdriven synth tones and string pad section. The song is groovy and exciting. The audio quality is poor in general.", "data_idx": 2261, "number": 0, "label": "hiphop"} +{"file_name": "train_04251.png", "caption": "The song is an instrumental. The song is medium tempo with a slick drumming rhythm, grunge keyboard tones, overdriven synth tones and string pad section. The song is groovy and exciting. The audio quality is poor in general.", "data_idx": 2261, "number": 1, "label": "hiphop"} +{"file_name": "train_04252.png", "caption": "The song is an instrumental. The song is medium tempo with a slick drumming rhythm, grunge keyboard tones, overdriven synth tones and string pad section. The song is groovy and exciting. The audio quality is poor in general.", "data_idx": 2261, "number": 2, "label": "hiphop"} +{"file_name": "train_04253.png", "caption": "The song is an instrumental. The song is medium tempo with a slick drumming rhythm, grunge keyboard tones, overdriven synth tones and string pad section. The song is groovy and exciting. The audio quality is poor in general.", "data_idx": 2261, "number": 3, "label": "hiphop"} +{"file_name": "train_04254.png", "caption": "happy music featuring a solo acoustic strummed guitar playing open chords, quiet male singing, and a bird chirping in the background.", "data_idx": 2262, "number": 0, "label": "blues"} +{"file_name": "train_04255.png", "caption": "happy music featuring a solo acoustic strummed guitar playing open chords, quiet male singing, and a bird chirping in the background.", "data_idx": 2262, "number": 1, "label": "blues"} +{"file_name": "train_04256.png", "caption": "happy music featuring a solo acoustic strummed guitar playing open chords, quiet male singing, and a bird chirping in the background.", "data_idx": 2262, "number": 2, "label": "blues"} +{"file_name": "train_04257.png", "caption": "happy music featuring a solo acoustic strummed guitar playing open chords, quiet male singing, and a bird chirping in the background.", "data_idx": 2262, "number": 3, "label": "blues"} +{"file_name": "train_04258.png", "caption": "A female singer sings this beautiful melody. The song is medium tempo with no instrumentation but just the vocal echoes from the singer's vocals. The song is devotional and prayer-like in nature. The song is a Christmas hymn being sung by a Celtic singer. The audio quality is very muted and poor.", "data_idx": 2265, "number": 0, "label": "jazz"} +{"file_name": "train_04259.png", "caption": "A female singer sings this beautiful melody. The song is medium tempo with no instrumentation but just the vocal echoes from the singer's vocals. The song is devotional and prayer-like in nature. The song is a Christmas hymn being sung by a Celtic singer. The audio quality is very muted and poor.", "data_idx": 2265, "number": 1, "label": "jazz"} +{"file_name": "train_04260.png", "caption": "A female singer sings this beautiful melody. The song is medium tempo with no instrumentation but just the vocal echoes from the singer's vocals. The song is devotional and prayer-like in nature. The song is a Christmas hymn being sung by a Celtic singer. The audio quality is very muted and poor.", "data_idx": 2265, "number": 2, "label": "jazz"} +{"file_name": "train_04261.png", "caption": "A female singer sings this beautiful melody. The song is medium tempo with no instrumentation but just the vocal echoes from the singer's vocals. The song is devotional and prayer-like in nature. The song is a Christmas hymn being sung by a Celtic singer. The audio quality is very muted and poor.", "data_idx": 2265, "number": 3, "label": "jazz"} +{"file_name": "train_04262.png", "caption": "A female vocalist sings this enchanting song.the tempo is slow with this clip opening with the vocalist almost ending the sentence. The singer is accompanied by mesmerising Violin symphony and piano accompaniment . This song is a live performance as it is sung with an orchestra and there is the sound of people talking. The song is enchanting, ethereal, captivating, soothing and celestial.", "data_idx": 2266, "number": 0, "label": "pop"} +{"file_name": "train_04263.png", "caption": "A female vocalist sings this enchanting song.the tempo is slow with this clip opening with the vocalist almost ending the sentence. The singer is accompanied by mesmerising Violin symphony and piano accompaniment . This song is a live performance as it is sung with an orchestra and there is the sound of people talking. The song is enchanting, ethereal, captivating, soothing and celestial.", "data_idx": 2266, "number": 1, "label": "pop"} +{"file_name": "train_04264.png", "caption": "A female vocalist sings this enchanting song.the tempo is slow with this clip opening with the vocalist almost ending the sentence. The singer is accompanied by mesmerising Violin symphony and piano accompaniment . This song is a live performance as it is sung with an orchestra and there is the sound of people talking. The song is enchanting, ethereal, captivating, soothing and celestial.", "data_idx": 2266, "number": 2, "label": "pop"} +{"file_name": "train_04265.png", "caption": "A female vocalist sings this enchanting song.the tempo is slow with this clip opening with the vocalist almost ending the sentence. The singer is accompanied by mesmerising Violin symphony and piano accompaniment . This song is a live performance as it is sung with an orchestra and there is the sound of people talking. The song is enchanting, ethereal, captivating, soothing and celestial.", "data_idx": 2266, "number": 3, "label": "pop"} +{"file_name": "train_04266.png", "caption": "The low quality recording features a kids song that had stretched audio, caused by digital compression, and it consists of chiptune vocal singing over groovy piano chords. Other elements of the instrumental are barely audible. The sound is almost crushed, but it still sounds happy and fun.", "data_idx": 2268, "number": 0, "label": "pop"} +{"file_name": "train_04267.png", "caption": "The low quality recording features a kids song that had stretched audio, caused by digital compression, and it consists of chiptune vocal singing over groovy piano chords. Other elements of the instrumental are barely audible. The sound is almost crushed, but it still sounds happy and fun.", "data_idx": 2268, "number": 1, "label": "pop"} +{"file_name": "train_04268.png", "caption": "The low quality recording features a kids song that had stretched audio, caused by digital compression, and it consists of chiptune vocal singing over groovy piano chords. Other elements of the instrumental are barely audible. The sound is almost crushed, but it still sounds happy and fun.", "data_idx": 2268, "number": 2, "label": "pop"} +{"file_name": "train_04269.png", "caption": "The low quality recording features a kids song that had stretched audio, caused by digital compression, and it consists of chiptune vocal singing over groovy piano chords. Other elements of the instrumental are barely audible. The sound is almost crushed, but it still sounds happy and fun.", "data_idx": 2268, "number": 3, "label": "pop"} +{"file_name": "train_04270.png", "caption": "A male singer sings this pop melody with animated vocals making annoying sounds. The song is medium tempo with backup vocals singing harmony, keyboard accompaniment, percussive a bass line and strong drumming rhythm. The song is a background track for an animated tv show. The audio quality is very poor.", "data_idx": 2269, "number": 0, "label": "country"} +{"file_name": "train_04271.png", "caption": "A male singer sings this pop melody with animated vocals making annoying sounds. The song is medium tempo with backup vocals singing harmony, keyboard accompaniment, percussive a bass line and strong drumming rhythm. The song is a background track for an animated tv show. The audio quality is very poor.", "data_idx": 2269, "number": 1, "label": "country"} +{"file_name": "train_04272.png", "caption": "A male singer sings this pop melody with animated vocals making annoying sounds. The song is medium tempo with backup vocals singing harmony, keyboard accompaniment, percussive a bass line and strong drumming rhythm. The song is a background track for an animated tv show. The audio quality is very poor.", "data_idx": 2269, "number": 2, "label": "country"} +{"file_name": "train_04273.png", "caption": "A male singer sings this pop melody with animated vocals making annoying sounds. The song is medium tempo with backup vocals singing harmony, keyboard accompaniment, percussive a bass line and strong drumming rhythm. The song is a background track for an animated tv show. The audio quality is very poor.", "data_idx": 2269, "number": 3, "label": "country"} +{"file_name": "train_04274.png", "caption": "A digital drum is playing a groove with different little elements panned to the left and right side of the speakers. Little sprinkles of plucked digital synth sounds are playing melodies along with a keyboard playing soft chords. The female voice is singing being backed by a voice full of effects. Then padsounds come in serving as strings playing a slow chord progression. This song may be playing at the mall.", "data_idx": 2273, "number": 0, "label": "disco"} +{"file_name": "train_04275.png", "caption": "A digital drum is playing a groove with different little elements panned to the left and right side of the speakers. Little sprinkles of plucked digital synth sounds are playing melodies along with a keyboard playing soft chords. The female voice is singing being backed by a voice full of effects. Then padsounds come in serving as strings playing a slow chord progression. This song may be playing at the mall.", "data_idx": 2273, "number": 1, "label": "disco"} +{"file_name": "train_04276.png", "caption": "A digital drum is playing a groove with different little elements panned to the left and right side of the speakers. Little sprinkles of plucked digital synth sounds are playing melodies along with a keyboard playing soft chords. The female voice is singing being backed by a voice full of effects. Then padsounds come in serving as strings playing a slow chord progression. This song may be playing at the mall.", "data_idx": 2273, "number": 2, "label": "disco"} +{"file_name": "train_04277.png", "caption": "A digital drum is playing a groove with different little elements panned to the left and right side of the speakers. Little sprinkles of plucked digital synth sounds are playing melodies along with a keyboard playing soft chords. The female voice is singing being backed by a voice full of effects. Then padsounds come in serving as strings playing a slow chord progression. This song may be playing at the mall.", "data_idx": 2273, "number": 3, "label": "disco"} +{"file_name": "train_04278.png", "caption": "The hip-hop music features a male voice singing repetitive short bits of melody. The music excerpt contains a strong beat rhythm which drives the pulsation of the music. A synth sound is playing a repeating melody throughout the passage. The music sounds as if it was recorded by a phone from a playing speaker.", "data_idx": 2274, "number": 0, "label": "disco"} +{"file_name": "train_04279.png", "caption": "The hip-hop music features a male voice singing repetitive short bits of melody. The music excerpt contains a strong beat rhythm which drives the pulsation of the music. A synth sound is playing a repeating melody throughout the passage. The music sounds as if it was recorded by a phone from a playing speaker.", "data_idx": 2274, "number": 1, "label": "disco"} +{"file_name": "train_04280.png", "caption": "The hip-hop music features a male voice singing repetitive short bits of melody. The music excerpt contains a strong beat rhythm which drives the pulsation of the music. A synth sound is playing a repeating melody throughout the passage. The music sounds as if it was recorded by a phone from a playing speaker.", "data_idx": 2274, "number": 2, "label": "disco"} +{"file_name": "train_04281.png", "caption": "The hip-hop music features a male voice singing repetitive short bits of melody. The music excerpt contains a strong beat rhythm which drives the pulsation of the music. A synth sound is playing a repeating melody throughout the passage. The music sounds as if it was recorded by a phone from a playing speaker.", "data_idx": 2274, "number": 3, "label": "disco"} +{"file_name": "train_04282.png", "caption": "A female singer sings soft pop songs. The tempo is medium fast with electronically arranged music, electric guitar harmony, digital drum beats, and melodious vocal backup. The song is simple, soft, emotional, upbeat, catchy, with a dance groove. This song is an Electro Pop song.", "data_idx": 2278, "number": 0, "label": "disco"} +{"file_name": "train_04283.png", "caption": "A female singer sings soft pop songs. The tempo is medium fast with electronically arranged music, electric guitar harmony, digital drum beats, and melodious vocal backup. The song is simple, soft, emotional, upbeat, catchy, with a dance groove. This song is an Electro Pop song.", "data_idx": 2278, "number": 1, "label": "disco"} +{"file_name": "train_04284.png", "caption": "A female singer sings soft pop songs. The tempo is medium fast with electronically arranged music, electric guitar harmony, digital drum beats, and melodious vocal backup. The song is simple, soft, emotional, upbeat, catchy, with a dance groove. This song is an Electro Pop song.", "data_idx": 2278, "number": 2, "label": "disco"} +{"file_name": "train_04285.png", "caption": "A female singer sings soft pop songs. The tempo is medium fast with electronically arranged music, electric guitar harmony, digital drum beats, and melodious vocal backup. The song is simple, soft, emotional, upbeat, catchy, with a dance groove. This song is an Electro Pop song.", "data_idx": 2278, "number": 3, "label": "disco"} +{"file_name": "train_04286.png", "caption": "A male vocalist sings this soft melody. The song is medium tempo, with violin harmony, steady drumming, straight bass lines, acoustic guitar and keyboard accompaniment with vocal backup. The song is in a foreign language. It is slow, and has a mellow, soft, emotional , sentimental and romantic vibe. This is a regional Pop song.", "data_idx": 2280, "number": 0, "label": "country"} +{"file_name": "train_04287.png", "caption": "A male vocalist sings this soft melody. The song is medium tempo, with violin harmony, steady drumming, straight bass lines, acoustic guitar and keyboard accompaniment with vocal backup. The song is in a foreign language. It is slow, and has a mellow, soft, emotional , sentimental and romantic vibe. This is a regional Pop song.", "data_idx": 2280, "number": 1, "label": "country"} +{"file_name": "train_04288.png", "caption": "A male vocalist sings this soft melody. The song is medium tempo, with violin harmony, steady drumming, straight bass lines, acoustic guitar and keyboard accompaniment with vocal backup. The song is in a foreign language. It is slow, and has a mellow, soft, emotional , sentimental and romantic vibe. This is a regional Pop song.", "data_idx": 2280, "number": 2, "label": "country"} +{"file_name": "train_04289.png", "caption": "A male vocalist sings this soft melody. The song is medium tempo, with violin harmony, steady drumming, straight bass lines, acoustic guitar and keyboard accompaniment with vocal backup. The song is in a foreign language. It is slow, and has a mellow, soft, emotional , sentimental and romantic vibe. This is a regional Pop song.", "data_idx": 2280, "number": 3, "label": "country"} +{"file_name": "train_04290.png", "caption": "A male vocalist sings this spirited song. The song is medium tempo with energetic electric guitar lead, enthusiastic electric bass guitar , hard hitting drums and keyboard harmony. The vocals are passionate, youthful,energetic, vociferous, powerful and loud . This song is Hard Rock/Metal.", "data_idx": 2281, "number": 0, "label": "metal"} +{"file_name": "train_04291.png", "caption": "A male vocalist sings this spirited song. The song is medium tempo with energetic electric guitar lead, enthusiastic electric bass guitar , hard hitting drums and keyboard harmony. The vocals are passionate, youthful,energetic, vociferous, powerful and loud . This song is Hard Rock/Metal.", "data_idx": 2281, "number": 1, "label": "metal"} +{"file_name": "train_04292.png", "caption": "A male vocalist sings this spirited song. The song is medium tempo with energetic electric guitar lead, enthusiastic electric bass guitar , hard hitting drums and keyboard harmony. The vocals are passionate, youthful,energetic, vociferous, powerful and loud . This song is Hard Rock/Metal.", "data_idx": 2281, "number": 2, "label": "metal"} +{"file_name": "train_04293.png", "caption": "A male vocalist sings this spirited song. The song is medium tempo with energetic electric guitar lead, enthusiastic electric bass guitar , hard hitting drums and keyboard harmony. The vocals are passionate, youthful,energetic, vociferous, powerful and loud . This song is Hard Rock/Metal.", "data_idx": 2281, "number": 3, "label": "metal"} +{"file_name": "train_04294.png", "caption": "To male voices are singing a melody. Someone is playing acoustic drums together with a djembe. A ukulele is being strummed on the offbeat along with a piano playing the same chords. This is an amateur recording. This song may be playing live at a small festival.", "data_idx": 2282, "number": 0, "label": "blues"} +{"file_name": "train_04295.png", "caption": "To male voices are singing a melody. Someone is playing acoustic drums together with a djembe. A ukulele is being strummed on the offbeat along with a piano playing the same chords. This is an amateur recording. This song may be playing live at a small festival.", "data_idx": 2282, "number": 1, "label": "blues"} +{"file_name": "train_04296.png", "caption": "This is a pop music piece being played through a reverberation amp. There is a male and a female vocalist singing melodically. A clean sounding electric guitar is playing a simple tune while a keyboard is holding the chords and a bass guitar is playing in the background. The rhythmic background is provided by a medium tempo electronic drum beat that has characteristics resembling an acoustic drum kit. The atmosphere is sentimental and vibrant. This piece could be used in advertisement jingles. It could be playing in the background in a romantic setting.", "data_idx": 2285, "number": 0, "label": "disco"} +{"file_name": "train_04297.png", "caption": "This is a pop music piece being played through a reverberation amp. There is a male and a female vocalist singing melodically. A clean sounding electric guitar is playing a simple tune while a keyboard is holding the chords and a bass guitar is playing in the background. The rhythmic background is provided by a medium tempo electronic drum beat that has characteristics resembling an acoustic drum kit. The atmosphere is sentimental and vibrant. This piece could be used in advertisement jingles. It could be playing in the background in a romantic setting.", "data_idx": 2285, "number": 1, "label": "disco"} +{"file_name": "train_04298.png", "caption": "This is a pop music piece being played through a reverberation amp. There is a male and a female vocalist singing melodically. A clean sounding electric guitar is playing a simple tune while a keyboard is holding the chords and a bass guitar is playing in the background. The rhythmic background is provided by a medium tempo electronic drum beat that has characteristics resembling an acoustic drum kit. The atmosphere is sentimental and vibrant. This piece could be used in advertisement jingles. It could be playing in the background in a romantic setting.", "data_idx": 2285, "number": 2, "label": "disco"} +{"file_name": "train_04299.png", "caption": "This is a pop music piece being played through a reverberation amp. There is a male and a female vocalist singing melodically. A clean sounding electric guitar is playing a simple tune while a keyboard is holding the chords and a bass guitar is playing in the background. The rhythmic background is provided by a medium tempo electronic drum beat that has characteristics resembling an acoustic drum kit. The atmosphere is sentimental and vibrant. This piece could be used in advertisement jingles. It could be playing in the background in a romantic setting.", "data_idx": 2285, "number": 3, "label": "disco"} +{"file_name": "train_04300.png", "caption": "An acoustic guitar is finger-picking a tremolo melody along with a flute playing a melody on top. This song may be playing in an adventure video-game.", "data_idx": 2286, "number": 0, "label": "classical"} +{"file_name": "train_04301.png", "caption": "An acoustic guitar is finger-picking a tremolo melody along with a flute playing a melody on top. This song may be playing in an adventure video-game.", "data_idx": 2286, "number": 1, "label": "classical"} +{"file_name": "train_04302.png", "caption": "The low quality recording features an emotional electric guitar melody played with two different reverb pedal effects, one after the other. It sounds like the player is comparing the two reverbs. The recording is a bit noisy.", "data_idx": 2287, "number": 0, "label": "jazz"} +{"file_name": "train_04303.png", "caption": "The low quality recording features an emotional electric guitar melody played with two different reverb pedal effects, one after the other. It sounds like the player is comparing the two reverbs. The recording is a bit noisy.", "data_idx": 2287, "number": 1, "label": "jazz"} +{"file_name": "train_04304.png", "caption": "The low quality recording features an emotional electric guitar melody played with two different reverb pedal effects, one after the other. It sounds like the player is comparing the two reverbs. The recording is a bit noisy.", "data_idx": 2287, "number": 2, "label": "jazz"} +{"file_name": "train_04305.png", "caption": "The low quality recording features an emotional electric guitar melody played with two different reverb pedal effects, one after the other. It sounds like the player is comparing the two reverbs. The recording is a bit noisy.", "data_idx": 2287, "number": 3, "label": "jazz"} +{"file_name": "train_04306.png", "caption": "This is a remix of an R&B music piece. An auto-tuned male vocal is singing melodically in a minor scale at a high pitch. A fading electric guitar sample can be heard in the distance. Repeated hits of low-frequency percussion add a deepening effect to the piece. The atmosphere is very dreamy and very trippy. This piece could be used in a dream sequence at a movie or a TV show.", "data_idx": 2290, "number": 0, "label": "hiphop"} +{"file_name": "train_04307.png", "caption": "This is a remix of an R&B music piece. An auto-tuned male vocal is singing melodically in a minor scale at a high pitch. A fading electric guitar sample can be heard in the distance. Repeated hits of low-frequency percussion add a deepening effect to the piece. The atmosphere is very dreamy and very trippy. This piece could be used in a dream sequence at a movie or a TV show.", "data_idx": 2290, "number": 1, "label": "hiphop"} +{"file_name": "train_04308.png", "caption": "Someone is playing a e-guitar solo over another e-guitar providing jazz chords along with acoustic drums playing a jazzy groove with little licks and a steady straight groove in the ride that is panned to the right side of the speakers. An upright bass in playing a walking bassline. This song may be playing at a jazz bar.", "data_idx": 2291, "number": 0, "label": "jazz"} +{"file_name": "train_04309.png", "caption": "Someone is playing a e-guitar solo over another e-guitar providing jazz chords along with acoustic drums playing a jazzy groove with little licks and a steady straight groove in the ride that is panned to the right side of the speakers. An upright bass in playing a walking bassline. This song may be playing at a jazz bar.", "data_idx": 2291, "number": 1, "label": "jazz"} +{"file_name": "train_04310.png", "caption": "Someone is playing a e-guitar solo over another e-guitar providing jazz chords along with acoustic drums playing a jazzy groove with little licks and a steady straight groove in the ride that is panned to the right side of the speakers. An upright bass in playing a walking bassline. This song may be playing at a jazz bar.", "data_idx": 2291, "number": 2, "label": "jazz"} +{"file_name": "train_04311.png", "caption": "Someone is playing a e-guitar solo over another e-guitar providing jazz chords along with acoustic drums playing a jazzy groove with little licks and a steady straight groove in the ride that is panned to the right side of the speakers. An upright bass in playing a walking bassline. This song may be playing at a jazz bar.", "data_idx": 2291, "number": 3, "label": "jazz"} +{"file_name": "train_04312.png", "caption": "Music and random sounds from an old 8 bit video game. A children's melody interspersed with harsh, digitally distorted sounds. Experimental and dissonant to the point of being chaotic.", "data_idx": 2292, "number": 0, "label": "hiphop"} +{"file_name": "train_04313.png", "caption": "Music and random sounds from an old 8 bit video game. A children's melody interspersed with harsh, digitally distorted sounds. Experimental and dissonant to the point of being chaotic.", "data_idx": 2292, "number": 1, "label": "hiphop"} +{"file_name": "train_04314.png", "caption": "Music and random sounds from an old 8 bit video game. A children's melody interspersed with harsh, digitally distorted sounds. Experimental and dissonant to the point of being chaotic.", "data_idx": 2292, "number": 2, "label": "hiphop"} +{"file_name": "train_04315.png", "caption": "Music and random sounds from an old 8 bit video game. A children's melody interspersed with harsh, digitally distorted sounds. Experimental and dissonant to the point of being chaotic.", "data_idx": 2292, "number": 3, "label": "hiphop"} +{"file_name": "train_04316.png", "caption": "The low quality recording features a live performance of a classical song by an orchestra that consists of muffled sustained strings melody, subtle drums rhythm and woodwinds melody. It is noisy and in mono, like it was recorded with a phone or a camera microphone.", "data_idx": 2293, "number": 0, "label": "classical"} +{"file_name": "train_04317.png", "caption": "The low quality recording features a live performance of a classical song by an orchestra that consists of muffled sustained strings melody, subtle drums rhythm and woodwinds melody. It is noisy and in mono, like it was recorded with a phone or a camera microphone.", "data_idx": 2293, "number": 1, "label": "classical"} +{"file_name": "train_04318.png", "caption": "The low quality recording features a live performance of a classical song by an orchestra that consists of muffled sustained strings melody, subtle drums rhythm and woodwinds melody. It is noisy and in mono, like it was recorded with a phone or a camera microphone.", "data_idx": 2293, "number": 2, "label": "classical"} +{"file_name": "train_04319.png", "caption": "The low quality recording features a live performance of a classical song by an orchestra that consists of muffled sustained strings melody, subtle drums rhythm and woodwinds melody. It is noisy and in mono, like it was recorded with a phone or a camera microphone.", "data_idx": 2293, "number": 3, "label": "classical"} +{"file_name": "train_04320.png", "caption": "This is a latin dance music piece. There is a heavy use of percussive elements such as marimba and steel percussion. They act both as the melodic and the rhythmic background. The atmosphere of the performance is lively and cheerful. This piece could be used as an accompaniment piece for latin dance courses.", "data_idx": 2296, "number": 0, "label": "classical"} +{"file_name": "train_04321.png", "caption": "This is a latin dance music piece. There is a heavy use of percussive elements such as marimba and steel percussion. They act both as the melodic and the rhythmic background. The atmosphere of the performance is lively and cheerful. This piece could be used as an accompaniment piece for latin dance courses.", "data_idx": 2296, "number": 1, "label": "classical"} +{"file_name": "train_04322.png", "caption": "This is a latin dance music piece. There is a heavy use of percussive elements such as marimba and steel percussion. They act both as the melodic and the rhythmic background. The atmosphere of the performance is lively and cheerful. This piece could be used as an accompaniment piece for latin dance courses.", "data_idx": 2296, "number": 2, "label": "classical"} +{"file_name": "train_04323.png", "caption": "This is a latin dance music piece. There is a heavy use of percussive elements such as marimba and steel percussion. They act both as the melodic and the rhythmic background. The atmosphere of the performance is lively and cheerful. This piece could be used as an accompaniment piece for latin dance courses.", "data_idx": 2296, "number": 3, "label": "classical"} +{"file_name": "train_04324.png", "caption": "This is a low quality recording of a motown style song. The song seems to have been recorded using a cellphone. The lead female vocalist has a soulful and powerful voice. The song is upbeat and jovial.", "data_idx": 2297, "number": 0, "label": "metal"} +{"file_name": "train_04325.png", "caption": "This is a low quality recording of a motown style song. The song seems to have been recorded using a cellphone. The lead female vocalist has a soulful and powerful voice. The song is upbeat and jovial.", "data_idx": 2297, "number": 1, "label": "metal"} +{"file_name": "train_04326.png", "caption": "This is a low quality recording of a motown style song. The song seems to have been recorded using a cellphone. The lead female vocalist has a soulful and powerful voice. The song is upbeat and jovial.", "data_idx": 2297, "number": 2, "label": "metal"} +{"file_name": "train_04327.png", "caption": "This is a low quality recording of a motown style song. The song seems to have been recorded using a cellphone. The lead female vocalist has a soulful and powerful voice. The song is upbeat and jovial.", "data_idx": 2297, "number": 3, "label": "metal"} +{"file_name": "train_04328.png", "caption": "An acoustic piano is playing a slow melody along with strings and brass in the background playing long minor chords. A bansuri flute is playing the lead melody. The whole composition sounds sad and may be playing in a sad movie scene like Titanic.", "data_idx": 2299, "number": 0, "label": "classical"} +{"file_name": "train_04329.png", "caption": "An acoustic piano is playing a slow melody along with strings and brass in the background playing long minor chords. A bansuri flute is playing the lead melody. The whole composition sounds sad and may be playing in a sad movie scene like Titanic.", "data_idx": 2299, "number": 1, "label": "classical"} +{"file_name": "train_04330.png", "caption": "An acoustic piano is playing a slow melody along with strings and brass in the background playing long minor chords. A bansuri flute is playing the lead melody. The whole composition sounds sad and may be playing in a sad movie scene like Titanic.", "data_idx": 2299, "number": 2, "label": "classical"} +{"file_name": "train_04331.png", "caption": "An acoustic piano is playing a slow melody along with strings and brass in the background playing long minor chords. A bansuri flute is playing the lead melody. The whole composition sounds sad and may be playing in a sad movie scene like Titanic.", "data_idx": 2299, "number": 3, "label": "classical"} +{"file_name": "train_04332.png", "caption": "This amateur recording features a rock song. The main melody is played on violins. This is accompanied by percussion playing with breaks matching the breaks in the violin parts. At the end, the violins play a sustained note and a banjo starts to play a melody. A tambourine is played on the first count of the second bar after the banjo starts to play. This is an uptempo song and has a happy feel. This instrumental song can be played in a coffee shop.", "data_idx": 2300, "number": 0, "label": "classical"} +{"file_name": "train_04333.png", "caption": "This amateur recording features a rock song. The main melody is played on violins. This is accompanied by percussion playing with breaks matching the breaks in the violin parts. At the end, the violins play a sustained note and a banjo starts to play a melody. A tambourine is played on the first count of the second bar after the banjo starts to play. This is an uptempo song and has a happy feel. This instrumental song can be played in a coffee shop.", "data_idx": 2300, "number": 1, "label": "classical"} +{"file_name": "train_04334.png", "caption": "This amateur recording features a rock song. The main melody is played on violins. This is accompanied by percussion playing with breaks matching the breaks in the violin parts. At the end, the violins play a sustained note and a banjo starts to play a melody. A tambourine is played on the first count of the second bar after the banjo starts to play. This is an uptempo song and has a happy feel. This instrumental song can be played in a coffee shop.", "data_idx": 2300, "number": 2, "label": "classical"} +{"file_name": "train_04335.png", "caption": "This amateur recording features a rock song. The main melody is played on violins. This is accompanied by percussion playing with breaks matching the breaks in the violin parts. At the end, the violins play a sustained note and a banjo starts to play a melody. A tambourine is played on the first count of the second bar after the banjo starts to play. This is an uptempo song and has a happy feel. This instrumental song can be played in a coffee shop.", "data_idx": 2300, "number": 3, "label": "classical"} +{"file_name": "train_04336.png", "caption": "Sounds like a poorly recorded live sound check of an analog mono synthesizer. Low fidelity with ambient noise in the background.", "data_idx": 2303, "number": 0, "label": "classical"} +{"file_name": "train_04337.png", "caption": "Sounds like a poorly recorded live sound check of an analog mono synthesizer. Low fidelity with ambient noise in the background.", "data_idx": 2303, "number": 1, "label": "classical"} +{"file_name": "train_04338.png", "caption": "Sounds like a poorly recorded live sound check of an analog mono synthesizer. Low fidelity with ambient noise in the background.", "data_idx": 2303, "number": 2, "label": "classical"} +{"file_name": "train_04339.png", "caption": "Sounds like a poorly recorded live sound check of an analog mono synthesizer. Low fidelity with ambient noise in the background.", "data_idx": 2303, "number": 3, "label": "classical"} +{"file_name": "train_04340.png", "caption": "The low quality recording features a distorted, filtered synth bass, echoing female vocal, arpeggiated synth lead melody playing, while there are outdoor sound effects like wind blowing, traffic, skateboard driving in the background. It sounds like a compilation of cool skateboard tricks.", "data_idx": 2304, "number": 0, "label": "disco"} +{"file_name": "train_04341.png", "caption": "The low quality recording features a distorted, filtered synth bass, echoing female vocal, arpeggiated synth lead melody playing, while there are outdoor sound effects like wind blowing, traffic, skateboard driving in the background. It sounds like a compilation of cool skateboard tricks.", "data_idx": 2304, "number": 1, "label": "disco"} +{"file_name": "train_04342.png", "caption": "The low quality recording features a distorted, filtered synth bass, echoing female vocal, arpeggiated synth lead melody playing, while there are outdoor sound effects like wind blowing, traffic, skateboard driving in the background. It sounds like a compilation of cool skateboard tricks.", "data_idx": 2304, "number": 2, "label": "disco"} +{"file_name": "train_04343.png", "caption": "The low quality recording features a distorted, filtered synth bass, echoing female vocal, arpeggiated synth lead melody playing, while there are outdoor sound effects like wind blowing, traffic, skateboard driving in the background. It sounds like a compilation of cool skateboard tricks.", "data_idx": 2304, "number": 3, "label": "disco"} +{"file_name": "train_04344.png", "caption": "This song is an energetic dance pop. The tempo is medium fast with keyboard accompaniment, synthesiser articulation,infectious digital drumming and vocal backup supporting the male and female duet. The song is a youthful, upbeat, energetic, spirited, bouncy and pulsating Disco Pop.", "data_idx": 2307, "number": 0, "label": "disco"} +{"file_name": "train_04345.png", "caption": "This song is an energetic dance pop. The tempo is medium fast with keyboard accompaniment, synthesiser articulation,infectious digital drumming and vocal backup supporting the male and female duet. The song is a youthful, upbeat, energetic, spirited, bouncy and pulsating Disco Pop.", "data_idx": 2307, "number": 1, "label": "disco"} +{"file_name": "train_04346.png", "caption": "This song is an energetic dance pop. The tempo is medium fast with keyboard accompaniment, synthesiser articulation,infectious digital drumming and vocal backup supporting the male and female duet. The song is a youthful, upbeat, energetic, spirited, bouncy and pulsating Disco Pop.", "data_idx": 2307, "number": 2, "label": "disco"} +{"file_name": "train_04347.png", "caption": "This song is an energetic dance pop. The tempo is medium fast with keyboard accompaniment, synthesiser articulation,infectious digital drumming and vocal backup supporting the male and female duet. The song is a youthful, upbeat, energetic, spirited, bouncy and pulsating Disco Pop.", "data_idx": 2307, "number": 3, "label": "disco"} +{"file_name": "train_04348.png", "caption": "The song is an instrumental. The tempo is varying with maracas being played percussively. The playing is energetic and exciting. The song is a home music video and probably a demonstration of Latin percussion styles.", "data_idx": 2308, "number": 0, "label": "hiphop"} +{"file_name": "train_04349.png", "caption": "The song is an instrumental. The tempo is varying with maracas being played percussively. The playing is energetic and exciting. The song is a home music video and probably a demonstration of Latin percussion styles.", "data_idx": 2308, "number": 1, "label": "hiphop"} +{"file_name": "train_04350.png", "caption": "The song is an instrumental. The tempo is varying with maracas being played percussively. The playing is energetic and exciting. The song is a home music video and probably a demonstration of Latin percussion styles.", "data_idx": 2308, "number": 2, "label": "hiphop"} +{"file_name": "train_04351.png", "caption": "The song is an instrumental. The tempo is varying with maracas being played percussively. The playing is energetic and exciting. The song is a home music video and probably a demonstration of Latin percussion styles.", "data_idx": 2308, "number": 3, "label": "hiphop"} +{"file_name": "train_04352.png", "caption": "An acoustic drum is playing a groove with brushes while an e-bass is playing a walking bassline. Someone is strumming chords on an acoustic guitar while an e-guitar is playing rhythmic chords on the offbeat along with a slide guitar playing a melody. A mid-ranged male voice is singing a melody supported by male and female backing singers. This song may be playing in a coffee shop in the morning.", "data_idx": 2309, "number": 0, "label": "disco"} +{"file_name": "train_04353.png", "caption": "An acoustic drum is playing a groove with brushes while an e-bass is playing a walking bassline. Someone is strumming chords on an acoustic guitar while an e-guitar is playing rhythmic chords on the offbeat along with a slide guitar playing a melody. A mid-ranged male voice is singing a melody supported by male and female backing singers. This song may be playing in a coffee shop in the morning.", "data_idx": 2309, "number": 1, "label": "disco"} +{"file_name": "train_04354.png", "caption": "An acoustic drum is playing a groove with brushes while an e-bass is playing a walking bassline. Someone is strumming chords on an acoustic guitar while an e-guitar is playing rhythmic chords on the offbeat along with a slide guitar playing a melody. A mid-ranged male voice is singing a melody supported by male and female backing singers. This song may be playing in a coffee shop in the morning.", "data_idx": 2309, "number": 2, "label": "disco"} +{"file_name": "train_04355.png", "caption": "An acoustic drum is playing a groove with brushes while an e-bass is playing a walking bassline. Someone is strumming chords on an acoustic guitar while an e-guitar is playing rhythmic chords on the offbeat along with a slide guitar playing a melody. A mid-ranged male voice is singing a melody supported by male and female backing singers. This song may be playing in a coffee shop in the morning.", "data_idx": 2309, "number": 3, "label": "disco"} +{"file_name": "train_04356.png", "caption": "This is an instrumental pop-rock piece. There is a harp playing the main melody while a ukulele is strumming chords. An electric guitar and a bass guitar join the melodic background later on. A simple acoustic drum beat is in the rhythmic background. It has a joyful aura, but the sounds used are very generic. The best use for this piece could be the background of a tutorial/instructive type of video.", "data_idx": 2310, "number": 0, "label": "hiphop"} +{"file_name": "train_04357.png", "caption": "This is an instrumental pop-rock piece. There is a harp playing the main melody while a ukulele is strumming chords. An electric guitar and a bass guitar join the melodic background later on. A simple acoustic drum beat is in the rhythmic background. It has a joyful aura, but the sounds used are very generic. The best use for this piece could be the background of a tutorial/instructive type of video.", "data_idx": 2310, "number": 1, "label": "hiphop"} +{"file_name": "train_04358.png", "caption": "This is an instrumental pop-rock piece. There is a harp playing the main melody while a ukulele is strumming chords. An electric guitar and a bass guitar join the melodic background later on. A simple acoustic drum beat is in the rhythmic background. It has a joyful aura, but the sounds used are very generic. The best use for this piece could be the background of a tutorial/instructive type of video.", "data_idx": 2310, "number": 2, "label": "hiphop"} +{"file_name": "train_04359.png", "caption": "This is an instrumental pop-rock piece. There is a harp playing the main melody while a ukulele is strumming chords. An electric guitar and a bass guitar join the melodic background later on. A simple acoustic drum beat is in the rhythmic background. It has a joyful aura, but the sounds used are very generic. The best use for this piece could be the background of a tutorial/instructive type of video.", "data_idx": 2310, "number": 3, "label": "hiphop"} +{"file_name": "train_04360.png", "caption": "The music features a single melodic element which is an electric guitar with reverb and delay. The guitar alternates between arpeggios and strums. The music could fit the indie rock genre. The overall vibe of the song is bright.", "data_idx": 2312, "number": 0, "label": "hiphop"} +{"file_name": "train_04361.png", "caption": "The music features a single melodic element which is an electric guitar with reverb and delay. The guitar alternates between arpeggios and strums. The music could fit the indie rock genre. The overall vibe of the song is bright.", "data_idx": 2312, "number": 1, "label": "hiphop"} +{"file_name": "train_04362.png", "caption": "The music features a single melodic element which is an electric guitar with reverb and delay. The guitar alternates between arpeggios and strums. The music could fit the indie rock genre. The overall vibe of the song is bright.", "data_idx": 2312, "number": 2, "label": "hiphop"} +{"file_name": "train_04363.png", "caption": "The music features a single melodic element which is an electric guitar with reverb and delay. The guitar alternates between arpeggios and strums. The music could fit the indie rock genre. The overall vibe of the song is bright.", "data_idx": 2312, "number": 3, "label": "hiphop"} +{"file_name": "train_04364.png", "caption": "A male vocalist sings this perky pop song. His tempo is medium fast with punchy drumming; animated amplified piano accompaniment, tambourine beats and funky bass lines. The song is simple, peppy, engaging, energetic, story telling, and catchy. This song is Classic Pop/ Soft Rock.", "data_idx": 2313, "number": 0, "label": "disco"} +{"file_name": "train_04365.png", "caption": "A male vocalist sings this perky pop song. His tempo is medium fast with punchy drumming; animated amplified piano accompaniment, tambourine beats and funky bass lines. The song is simple, peppy, engaging, energetic, story telling, and catchy. This song is Classic Pop/ Soft Rock.", "data_idx": 2313, "number": 1, "label": "disco"} +{"file_name": "train_04366.png", "caption": "A male vocalist sings this perky pop song. His tempo is medium fast with punchy drumming; animated amplified piano accompaniment, tambourine beats and funky bass lines. The song is simple, peppy, engaging, energetic, story telling, and catchy. This song is Classic Pop/ Soft Rock.", "data_idx": 2313, "number": 2, "label": "disco"} +{"file_name": "train_04367.png", "caption": "A male vocalist sings this perky pop song. His tempo is medium fast with punchy drumming; animated amplified piano accompaniment, tambourine beats and funky bass lines. The song is simple, peppy, engaging, energetic, story telling, and catchy. This song is Classic Pop/ Soft Rock.", "data_idx": 2313, "number": 3, "label": "disco"} +{"file_name": "train_04368.png", "caption": "The song is an instrumental. The song is medium tempo with a flute paging embody, various stringed instruments playing in harmony and no percussion. The song is passionate and emotional. The audio quality is average .", "data_idx": 2314, "number": 0, "label": "classical"} +{"file_name": "train_04369.png", "caption": "The song is an instrumental. The song is medium tempo with a flute paging embody, various stringed instruments playing in harmony and no percussion. The song is passionate and emotional. The audio quality is average .", "data_idx": 2314, "number": 1, "label": "classical"} +{"file_name": "train_04370.png", "caption": "The song is an instrumental. The song is medium tempo with a flute paging embody, various stringed instruments playing in harmony and no percussion. The song is passionate and emotional. The audio quality is average .", "data_idx": 2314, "number": 2, "label": "classical"} +{"file_name": "train_04371.png", "caption": "The song is an instrumental. The song is medium tempo with a flute paging embody, various stringed instruments playing in harmony and no percussion. The song is passionate and emotional. The audio quality is average .", "data_idx": 2314, "number": 3, "label": "classical"} +{"file_name": "train_04372.png", "caption": "The low quality recording features a lullaby that contains wide sustained strings melody, leaning more towards the left channel and arpeggiated, mellow piano melody in the right channel of the stereo image. There is a short audio pop sound in the middle of the loop. It still sounds emotional and passionate.", "data_idx": 2316, "number": 0, "label": "pop"} +{"file_name": "train_04373.png", "caption": "The low quality recording features a lullaby that contains wide sustained strings melody, leaning more towards the left channel and arpeggiated, mellow piano melody in the right channel of the stereo image. There is a short audio pop sound in the middle of the loop. It still sounds emotional and passionate.", "data_idx": 2316, "number": 1, "label": "pop"} +{"file_name": "train_04374.png", "caption": "The low quality recording features a lullaby that contains wide sustained strings melody, leaning more towards the left channel and arpeggiated, mellow piano melody in the right channel of the stereo image. There is a short audio pop sound in the middle of the loop. It still sounds emotional and passionate.", "data_idx": 2316, "number": 2, "label": "pop"} +{"file_name": "train_04375.png", "caption": "The low quality recording features a lullaby that contains wide sustained strings melody, leaning more towards the left channel and arpeggiated, mellow piano melody in the right channel of the stereo image. There is a short audio pop sound in the middle of the loop. It still sounds emotional and passionate.", "data_idx": 2316, "number": 3, "label": "pop"} +{"file_name": "train_04376.png", "caption": "The song is an advertisement jingle. A male singer sings rapping vocals, with a strong drumming rhythm, piano accompaniment, groovy bass line and a distorted guitar playing an aggressive lead. The song is high on adrenaline and energetic. The song is a soundtrack for an ad and is of poor audio quality.", "data_idx": 2317, "number": 0, "label": "hiphop"} +{"file_name": "train_04377.png", "caption": "The song is an advertisement jingle. A male singer sings rapping vocals, with a strong drumming rhythm, piano accompaniment, groovy bass line and a distorted guitar playing an aggressive lead. The song is high on adrenaline and energetic. The song is a soundtrack for an ad and is of poor audio quality.", "data_idx": 2317, "number": 1, "label": "hiphop"} +{"file_name": "train_04378.png", "caption": "The song is an advertisement jingle. A male singer sings rapping vocals, with a strong drumming rhythm, piano accompaniment, groovy bass line and a distorted guitar playing an aggressive lead. The song is high on adrenaline and energetic. The song is a soundtrack for an ad and is of poor audio quality.", "data_idx": 2317, "number": 2, "label": "hiphop"} +{"file_name": "train_04379.png", "caption": "The song is an advertisement jingle. A male singer sings rapping vocals, with a strong drumming rhythm, piano accompaniment, groovy bass line and a distorted guitar playing an aggressive lead. The song is high on adrenaline and energetic. The song is a soundtrack for an ad and is of poor audio quality.", "data_idx": 2317, "number": 3, "label": "hiphop"} +{"file_name": "train_04380.png", "caption": "This clip is an instrumental. The tempo is slow with a stringed instrument playing a single monotone note. There is the sound of static in the background. This sound is of a stringed instrument getting tuned but it has a spooky, eerie, sinister and scary vibe when combined with the static in the background.", "data_idx": 2319, "number": 0, "label": "hiphop"} +{"file_name": "train_04381.png", "caption": "This clip is an instrumental. The tempo is slow with a stringed instrument playing a single monotone note. There is the sound of static in the background. This sound is of a stringed instrument getting tuned but it has a spooky, eerie, sinister and scary vibe when combined with the static in the background.", "data_idx": 2319, "number": 1, "label": "hiphop"} +{"file_name": "train_04382.png", "caption": "This clip is an instrumental. The tempo is slow with a stringed instrument playing a single monotone note. There is the sound of static in the background. This sound is of a stringed instrument getting tuned but it has a spooky, eerie, sinister and scary vibe when combined with the static in the background.", "data_idx": 2319, "number": 2, "label": "hiphop"} +{"file_name": "train_04383.png", "caption": "This clip is an instrumental. The tempo is slow with a stringed instrument playing a single monotone note. There is the sound of static in the background. This sound is of a stringed instrument getting tuned but it has a spooky, eerie, sinister and scary vibe when combined with the static in the background.", "data_idx": 2319, "number": 3, "label": "hiphop"} +{"file_name": "train_04384.png", "caption": "This is a comedic music piece used in the background of an animation. There is a medium-to-high pitch synth playing the main theme with an electric guitar and bass guitar pattern in the background. The rhythm consists of a simple electronic drum beat. A lot of sound effects are used such as falling, biting and running.", "data_idx": 2320, "number": 0, "label": "reggae"} +{"file_name": "train_04385.png", "caption": "This is a comedic music piece used in the background of an animation. There is a medium-to-high pitch synth playing the main theme with an electric guitar and bass guitar pattern in the background. The rhythm consists of a simple electronic drum beat. A lot of sound effects are used such as falling, biting and running.", "data_idx": 2320, "number": 1, "label": "reggae"} +{"file_name": "train_04386.png", "caption": "This is a comedic music piece used in the background of an animation. There is a medium-to-high pitch synth playing the main theme with an electric guitar and bass guitar pattern in the background. The rhythm consists of a simple electronic drum beat. A lot of sound effects are used such as falling, biting and running.", "data_idx": 2320, "number": 2, "label": "reggae"} +{"file_name": "train_04387.png", "caption": "This is a comedic music piece used in the background of an animation. There is a medium-to-high pitch synth playing the main theme with an electric guitar and bass guitar pattern in the background. The rhythm consists of a simple electronic drum beat. A lot of sound effects are used such as falling, biting and running.", "data_idx": 2320, "number": 3, "label": "reggae"} +{"file_name": "train_04388.png", "caption": "This clip features a synth pad and synth swells in the background. Game mode selection sounds are played. A boom and splash sound is played just before the game mode selection sound is played. The synth sounds continue to play in the background. There are no voices in this clip. There are no other instruments in this clip. This sound can be used in an online game.", "data_idx": 2321, "number": 0, "label": "blues"} +{"file_name": "train_04389.png", "caption": "This clip features a synth pad and synth swells in the background. Game mode selection sounds are played. A boom and splash sound is played just before the game mode selection sound is played. The synth sounds continue to play in the background. There are no voices in this clip. There are no other instruments in this clip. This sound can be used in an online game.", "data_idx": 2321, "number": 1, "label": "blues"} +{"file_name": "train_04390.png", "caption": "This clip features a synth pad and synth swells in the background. Game mode selection sounds are played. A boom and splash sound is played just before the game mode selection sound is played. The synth sounds continue to play in the background. There are no voices in this clip. There are no other instruments in this clip. This sound can be used in an online game.", "data_idx": 2321, "number": 2, "label": "blues"} +{"file_name": "train_04391.png", "caption": "This clip features a synth pad and synth swells in the background. Game mode selection sounds are played. A boom and splash sound is played just before the game mode selection sound is played. The synth sounds continue to play in the background. There are no voices in this clip. There are no other instruments in this clip. This sound can be used in an online game.", "data_idx": 2321, "number": 3, "label": "blues"} +{"file_name": "train_04392.png", "caption": "This middle-eastern song features a male voice singing the main melody. An oud plays the same melody as the voice. This is accompanied by middle-eastern percussion instruments played with the hands. A tambourine is played to accent the percussion beats. After the voice, the main melody is played on a flute. This is accompanied by a qanun. This song can be played for a belly dance programme.", "data_idx": 2326, "number": 0, "label": "classical"} +{"file_name": "train_04393.png", "caption": "This middle-eastern song features a male voice singing the main melody. An oud plays the same melody as the voice. This is accompanied by middle-eastern percussion instruments played with the hands. A tambourine is played to accent the percussion beats. After the voice, the main melody is played on a flute. This is accompanied by a qanun. This song can be played for a belly dance programme.", "data_idx": 2326, "number": 1, "label": "classical"} +{"file_name": "train_04394.png", "caption": "This middle-eastern song features a male voice singing the main melody. An oud plays the same melody as the voice. This is accompanied by middle-eastern percussion instruments played with the hands. A tambourine is played to accent the percussion beats. After the voice, the main melody is played on a flute. This is accompanied by a qanun. This song can be played for a belly dance programme.", "data_idx": 2326, "number": 2, "label": "classical"} +{"file_name": "train_04395.png", "caption": "This middle-eastern song features a male voice singing the main melody. An oud plays the same melody as the voice. This is accompanied by middle-eastern percussion instruments played with the hands. A tambourine is played to accent the percussion beats. After the voice, the main melody is played on a flute. This is accompanied by a qanun. This song can be played for a belly dance programme.", "data_idx": 2326, "number": 3, "label": "classical"} +{"file_name": "train_04396.png", "caption": "This music is instrumental. The tempo is fast with vigorous electric guitar feedback, hard hitting drums, amplified keyboard harmony and bass guitar. The music is loud, aggressive, boisterous, vital, persistent and high-powered. This music is a Heavy Metal Instrumental.", "data_idx": 2328, "number": 0, "label": "metal"} +{"file_name": "train_04397.png", "caption": "This music is instrumental. The tempo is fast with vigorous electric guitar feedback, hard hitting drums, amplified keyboard harmony and bass guitar. The music is loud, aggressive, boisterous, vital, persistent and high-powered. This music is a Heavy Metal Instrumental.", "data_idx": 2328, "number": 1, "label": "metal"} +{"file_name": "train_04398.png", "caption": "This music is instrumental. The tempo is fast with vigorous electric guitar feedback, hard hitting drums, amplified keyboard harmony and bass guitar. The music is loud, aggressive, boisterous, vital, persistent and high-powered. This music is a Heavy Metal Instrumental.", "data_idx": 2328, "number": 2, "label": "metal"} +{"file_name": "train_04399.png", "caption": "This music is instrumental. The tempo is fast with vigorous electric guitar feedback, hard hitting drums, amplified keyboard harmony and bass guitar. The music is loud, aggressive, boisterous, vital, persistent and high-powered. This music is a Heavy Metal Instrumental.", "data_idx": 2328, "number": 3, "label": "metal"} +{"file_name": "train_04400.png", "caption": "This song features a distortion guitar playing a guitar solo. The solo is played at a high pitch. It is a slow tempo solo. The guitarist plays a lot of vibrato when the notes are allowed to ring for a while. The pattern follows three ascending notes followed by three strikes on a lower note. This is followed by one higher note, the lower note and a hammer on to a higher note. A synth plays backing chords. There are no other instruments in this song. The mood of this song is romantic.", "data_idx": 2330, "number": 0, "label": "classical"} +{"file_name": "train_04401.png", "caption": "This song features a distortion guitar playing a guitar solo. The solo is played at a high pitch. It is a slow tempo solo. The guitarist plays a lot of vibrato when the notes are allowed to ring for a while. The pattern follows three ascending notes followed by three strikes on a lower note. This is followed by one higher note, the lower note and a hammer on to a higher note. A synth plays backing chords. There are no other instruments in this song. The mood of this song is romantic.", "data_idx": 2330, "number": 1, "label": "classical"} +{"file_name": "train_04402.png", "caption": "This song features a distortion guitar playing a guitar solo. The solo is played at a high pitch. It is a slow tempo solo. The guitarist plays a lot of vibrato when the notes are allowed to ring for a while. The pattern follows three ascending notes followed by three strikes on a lower note. This is followed by one higher note, the lower note and a hammer on to a higher note. A synth plays backing chords. There are no other instruments in this song. The mood of this song is romantic.", "data_idx": 2330, "number": 2, "label": "classical"} +{"file_name": "train_04403.png", "caption": "This song features a distortion guitar playing a guitar solo. The solo is played at a high pitch. It is a slow tempo solo. The guitarist plays a lot of vibrato when the notes are allowed to ring for a while. The pattern follows three ascending notes followed by three strikes on a lower note. This is followed by one higher note, the lower note and a hammer on to a higher note. A synth plays backing chords. There are no other instruments in this song. The mood of this song is romantic.", "data_idx": 2330, "number": 3, "label": "classical"} +{"file_name": "train_04404.png", "caption": "This amateur recording features folk music being played on violins. There are multiple violins playing in harmony. The tempo is moderate. There is no percussion in this song. Crowd voices and whistles can be heard during the performance. This song is played for a folk dance.", "data_idx": 2332, "number": 0, "label": "classical"} +{"file_name": "train_04405.png", "caption": "This amateur recording features folk music being played on violins. There are multiple violins playing in harmony. The tempo is moderate. There is no percussion in this song. Crowd voices and whistles can be heard during the performance. This song is played for a folk dance.", "data_idx": 2332, "number": 1, "label": "classical"} +{"file_name": "train_04406.png", "caption": "This amateur recording features folk music being played on violins. There are multiple violins playing in harmony. The tempo is moderate. There is no percussion in this song. Crowd voices and whistles can be heard during the performance. This song is played for a folk dance.", "data_idx": 2332, "number": 2, "label": "classical"} +{"file_name": "train_04407.png", "caption": "This amateur recording features folk music being played on violins. There are multiple violins playing in harmony. The tempo is moderate. There is no percussion in this song. Crowd voices and whistles can be heard during the performance. This song is played for a folk dance.", "data_idx": 2332, "number": 3, "label": "classical"} +{"file_name": "train_04408.png", "caption": "The low quality recording features a repetitive didgeridoo melody. The recording is noisy and in mono, since it was probably recorded with a phone, and it sounds really low in frequency.", "data_idx": 2334, "number": 0, "label": "rock"} +{"file_name": "train_04409.png", "caption": "The low quality recording features a repetitive didgeridoo melody. The recording is noisy and in mono, since it was probably recorded with a phone, and it sounds really low in frequency.", "data_idx": 2334, "number": 1, "label": "rock"} +{"file_name": "train_04410.png", "caption": "A male vocalist sings this peppy rap. The tempo is medium fast with an enthusiastic and catchy guitar rhythm, drum stick clicks, congas, steady drumming and keyboard accompaniment. The song is simple, punchy; buoyant, youthful, animated, vibrant and has a catchy dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2341, "number": 0, "label": "hiphop"} +{"file_name": "train_04411.png", "caption": "A male vocalist sings this peppy rap. The tempo is medium fast with an enthusiastic and catchy guitar rhythm, drum stick clicks, congas, steady drumming and keyboard accompaniment. The song is simple, punchy; buoyant, youthful, animated, vibrant and has a catchy dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2341, "number": 1, "label": "hiphop"} +{"file_name": "train_04412.png", "caption": "A male vocalist sings this peppy rap. The tempo is medium fast with an enthusiastic and catchy guitar rhythm, drum stick clicks, congas, steady drumming and keyboard accompaniment. The song is simple, punchy; buoyant, youthful, animated, vibrant and has a catchy dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2341, "number": 2, "label": "hiphop"} +{"file_name": "train_04413.png", "caption": "A male vocalist sings this peppy rap. The tempo is medium fast with an enthusiastic and catchy guitar rhythm, drum stick clicks, congas, steady drumming and keyboard accompaniment. The song is simple, punchy; buoyant, youthful, animated, vibrant and has a catchy dance groove. This song is contemporary Hip-Hop/Rap.", "data_idx": 2341, "number": 3, "label": "hiphop"} +{"file_name": "train_04414.png", "caption": "The low quality recording features squeaky toys sound effects, followed by noisy tinny bells melody. It sounds like a lullaby - like something kids would listen to.", "data_idx": 2347, "number": 0, "label": "hiphop"} +{"file_name": "train_04415.png", "caption": "The low quality recording features squeaky toys sound effects, followed by noisy tinny bells melody. It sounds like a lullaby - like something kids would listen to.", "data_idx": 2347, "number": 1, "label": "hiphop"} +{"file_name": "train_04416.png", "caption": "This song contains a female voice singing in a high pitch along to strings playing their own supportive melody and percussion's holding a groove with different elements. This is an amateur recording. This song may be playing at a gym during dancing classes.", "data_idx": 2348, "number": 0, "label": "classical"} +{"file_name": "train_04417.png", "caption": "This song contains a female voice singing in a high pitch along to strings playing their own supportive melody and percussion's holding a groove with different elements. This is an amateur recording. This song may be playing at a gym during dancing classes.", "data_idx": 2348, "number": 1, "label": "classical"} +{"file_name": "train_04418.png", "caption": "This song contains a female voice singing in a high pitch along to strings playing their own supportive melody and percussion's holding a groove with different elements. This is an amateur recording. This song may be playing at a gym during dancing classes.", "data_idx": 2348, "number": 2, "label": "classical"} +{"file_name": "train_04419.png", "caption": "This song contains a female voice singing in a high pitch along to strings playing their own supportive melody and percussion's holding a groove with different elements. This is an amateur recording. This song may be playing at a gym during dancing classes.", "data_idx": 2348, "number": 3, "label": "classical"} +{"file_name": "train_04420.png", "caption": "The male voice is singing while male backing voices are underlining some phrases. They are adding harmonies to his singing. An acoustic drum and e-bass are holding the groove while a piano and e-guitar are playing the same chords. Another e-guitar is playing a melody, almost repeating the singer's melody as a response. The e-guitar is running through an effect. The guitars are panned to the left and right side of the speakers. This song may be playing at a scene of a rom-com movie.", "data_idx": 2349, "number": 0, "label": "rock"} +{"file_name": "train_04421.png", "caption": "The male voice is singing while male backing voices are underlining some phrases. They are adding harmonies to his singing. An acoustic drum and e-bass are holding the groove while a piano and e-guitar are playing the same chords. Another e-guitar is playing a melody, almost repeating the singer's melody as a response. The e-guitar is running through an effect. The guitars are panned to the left and right side of the speakers. This song may be playing at a scene of a rom-com movie.", "data_idx": 2349, "number": 1, "label": "rock"} +{"file_name": "train_04422.png", "caption": "The male voice is singing while male backing voices are underlining some phrases. They are adding harmonies to his singing. An acoustic drum and e-bass are holding the groove while a piano and e-guitar are playing the same chords. Another e-guitar is playing a melody, almost repeating the singer's melody as a response. The e-guitar is running through an effect. The guitars are panned to the left and right side of the speakers. This song may be playing at a scene of a rom-com movie.", "data_idx": 2349, "number": 2, "label": "rock"} +{"file_name": "train_04423.png", "caption": "The male voice is singing while male backing voices are underlining some phrases. They are adding harmonies to his singing. An acoustic drum and e-bass are holding the groove while a piano and e-guitar are playing the same chords. Another e-guitar is playing a melody, almost repeating the singer's melody as a response. The e-guitar is running through an effect. The guitars are panned to the left and right side of the speakers. This song may be playing at a scene of a rom-com movie.", "data_idx": 2349, "number": 3, "label": "rock"} +{"file_name": "train_04424.png", "caption": "The low quality recording features a passionate electric guitar solo melody over wide playback rock instrumental. The recording is noisy.", "data_idx": 2351, "number": 0, "label": "rock"} +{"file_name": "train_04425.png", "caption": "The low quality recording features a passionate electric guitar solo melody over wide playback rock instrumental. The recording is noisy.", "data_idx": 2351, "number": 1, "label": "rock"} +{"file_name": "train_04426.png", "caption": "The low quality recording features a passionate electric guitar solo melody over wide playback rock instrumental. The recording is noisy.", "data_idx": 2351, "number": 2, "label": "rock"} +{"file_name": "train_04427.png", "caption": "The low quality recording features a passionate electric guitar solo melody over wide playback rock instrumental. The recording is noisy.", "data_idx": 2351, "number": 3, "label": "rock"} +{"file_name": "train_04428.png", "caption": "The drums are playing a steady rock groove with a half open hi hat constantly ringing through the song. The e-guitar is panned to the left and right side of the speakers or two e-guitars are shredding the same distorted chords along with the bass silently playing in the background. The female voice is singing in a higher pitch and is accompanied by a female backing voice singing a deeper harmony. This sounds like a typical high school rock song. This song may be played chilling in your room sitting on the bed daydreaming.", "data_idx": 2353, "number": 0, "label": "metal"} +{"file_name": "train_04429.png", "caption": "The drums are playing a steady rock groove with a half open hi hat constantly ringing through the song. The e-guitar is panned to the left and right side of the speakers or two e-guitars are shredding the same distorted chords along with the bass silently playing in the background. The female voice is singing in a higher pitch and is accompanied by a female backing voice singing a deeper harmony. This sounds like a typical high school rock song. This song may be played chilling in your room sitting on the bed daydreaming.", "data_idx": 2353, "number": 1, "label": "metal"} +{"file_name": "train_04430.png", "caption": "The drums are playing a steady rock groove with a half open hi hat constantly ringing through the song. The e-guitar is panned to the left and right side of the speakers or two e-guitars are shredding the same distorted chords along with the bass silently playing in the background. The female voice is singing in a higher pitch and is accompanied by a female backing voice singing a deeper harmony. This sounds like a typical high school rock song. This song may be played chilling in your room sitting on the bed daydreaming.", "data_idx": 2353, "number": 2, "label": "metal"} +{"file_name": "train_04431.png", "caption": "The drums are playing a steady rock groove with a half open hi hat constantly ringing through the song. The e-guitar is panned to the left and right side of the speakers or two e-guitars are shredding the same distorted chords along with the bass silently playing in the background. The female voice is singing in a higher pitch and is accompanied by a female backing voice singing a deeper harmony. This sounds like a typical high school rock song. This song may be played chilling in your room sitting on the bed daydreaming.", "data_idx": 2353, "number": 3, "label": "metal"} +{"file_name": "train_04432.png", "caption": "The orchestral music is purely instrumental and makes an exception only towards the ending of the music excerpt, where a male voice can be heard. Throughout this passage one can notice that segments of three different pieces are played one after the other, the 3rd one being the shortest - about 1 second in length. The first piece sounds like it depicts a dance, the second one an epic moment and the 3rd one is too short to draw any conclusions.", "data_idx": 2355, "number": 0, "label": "classical"} +{"file_name": "train_04433.png", "caption": "The orchestral music is purely instrumental and makes an exception only towards the ending of the music excerpt, where a male voice can be heard. Throughout this passage one can notice that segments of three different pieces are played one after the other, the 3rd one being the shortest - about 1 second in length. The first piece sounds like it depicts a dance, the second one an epic moment and the 3rd one is too short to draw any conclusions.", "data_idx": 2355, "number": 1, "label": "classical"} +{"file_name": "train_04434.png", "caption": "The orchestral music is purely instrumental and makes an exception only towards the ending of the music excerpt, where a male voice can be heard. Throughout this passage one can notice that segments of three different pieces are played one after the other, the 3rd one being the shortest - about 1 second in length. The first piece sounds like it depicts a dance, the second one an epic moment and the 3rd one is too short to draw any conclusions.", "data_idx": 2355, "number": 2, "label": "classical"} +{"file_name": "train_04435.png", "caption": "The orchestral music is purely instrumental and makes an exception only towards the ending of the music excerpt, where a male voice can be heard. Throughout this passage one can notice that segments of three different pieces are played one after the other, the 3rd one being the shortest - about 1 second in length. The first piece sounds like it depicts a dance, the second one an epic moment and the 3rd one is too short to draw any conclusions.", "data_idx": 2355, "number": 3, "label": "classical"} +{"file_name": "train_04436.png", "caption": "Someone is playing a track from speakers. This song contains a strong e-bass playing a funky bassline along with a funky drum groove. Then a piano comes in playing a jazzy melody in one scale accompanied by a synth brass sound swelling into existence and playing a short rise before leaving again. This is an amateur recording but of decent audio-quality. This song may be playing in a jazzbar.", "data_idx": 2357, "number": 0, "label": "jazz"} +{"file_name": "train_04437.png", "caption": "Someone is playing a track from speakers. This song contains a strong e-bass playing a funky bassline along with a funky drum groove. Then a piano comes in playing a jazzy melody in one scale accompanied by a synth brass sound swelling into existence and playing a short rise before leaving again. This is an amateur recording but of decent audio-quality. This song may be playing in a jazzbar.", "data_idx": 2357, "number": 1, "label": "jazz"} +{"file_name": "train_04438.png", "caption": "Someone is playing a track from speakers. This song contains a strong e-bass playing a funky bassline along with a funky drum groove. Then a piano comes in playing a jazzy melody in one scale accompanied by a synth brass sound swelling into existence and playing a short rise before leaving again. This is an amateur recording but of decent audio-quality. This song may be playing in a jazzbar.", "data_idx": 2357, "number": 2, "label": "jazz"} +{"file_name": "train_04439.png", "caption": "Someone is playing a track from speakers. This song contains a strong e-bass playing a funky bassline along with a funky drum groove. Then a piano comes in playing a jazzy melody in one scale accompanied by a synth brass sound swelling into existence and playing a short rise before leaving again. This is an amateur recording but of decent audio-quality. This song may be playing in a jazzbar.", "data_idx": 2357, "number": 3, "label": "jazz"} +{"file_name": "train_04440.png", "caption": "This instrumental intro features a blues rock inspired electric guitar solo with string bending, an aggressively strummed acoustic guitar, a tambourine, an electric bass guitar and an uptempo rock drum beat. Feels like a protest song from the sixties.", "data_idx": 2360, "number": 0, "label": "hiphop"} +{"file_name": "train_04441.png", "caption": "This instrumental intro features a blues rock inspired electric guitar solo with string bending, an aggressively strummed acoustic guitar, a tambourine, an electric bass guitar and an uptempo rock drum beat. Feels like a protest song from the sixties.", "data_idx": 2360, "number": 1, "label": "hiphop"} +{"file_name": "train_04442.png", "caption": "This instrumental intro features a blues rock inspired electric guitar solo with string bending, an aggressively strummed acoustic guitar, a tambourine, an electric bass guitar and an uptempo rock drum beat. Feels like a protest song from the sixties.", "data_idx": 2360, "number": 2, "label": "hiphop"} +{"file_name": "train_04443.png", "caption": "This instrumental intro features a blues rock inspired electric guitar solo with string bending, an aggressively strummed acoustic guitar, a tambourine, an electric bass guitar and an uptempo rock drum beat. Feels like a protest song from the sixties.", "data_idx": 2360, "number": 3, "label": "hiphop"} +{"file_name": "train_04444.png", "caption": "This song contains a fast paced melody played by several instruments like an e-bass and some pitched percussive instruments along with a keyboard and whistles. loud in the background you can hear underwater-sounds and high pitched digital game voices panned to the right side of the speakers. This is an amateur recording. This song may be playing in an adventure video-game for kids.", "data_idx": 2361, "number": 0, "label": "disco"} +{"file_name": "train_04445.png", "caption": "This song contains a fast paced melody played by several instruments like an e-bass and some pitched percussive instruments along with a keyboard and whistles. loud in the background you can hear underwater-sounds and high pitched digital game voices panned to the right side of the speakers. This is an amateur recording. This song may be playing in an adventure video-game for kids.", "data_idx": 2361, "number": 1, "label": "disco"} +{"file_name": "train_04446.png", "caption": "This song contains a fast paced melody played by several instruments like an e-bass and some pitched percussive instruments along with a keyboard and whistles. loud in the background you can hear underwater-sounds and high pitched digital game voices panned to the right side of the speakers. This is an amateur recording. This song may be playing in an adventure video-game for kids.", "data_idx": 2361, "number": 2, "label": "disco"} +{"file_name": "train_04447.png", "caption": "This song contains a fast paced melody played by several instruments like an e-bass and some pitched percussive instruments along with a keyboard and whistles. loud in the background you can hear underwater-sounds and high pitched digital game voices panned to the right side of the speakers. This is an amateur recording. This song may be playing in an adventure video-game for kids.", "data_idx": 2361, "number": 3, "label": "disco"} +{"file_name": "train_04448.png", "caption": "The music excerpt is split into two different songs. The first half features the type of turntable scratches that DJs usually do. A song is running in a loop in the background. In the second half the music fades in and becomes louder but at the same time it sounds as if it's interrupted.", "data_idx": 2362, "number": 0, "label": "hiphop"} +{"file_name": "train_04449.png", "caption": "The music excerpt is split into two different songs. The first half features the type of turntable scratches that DJs usually do. A song is running in a loop in the background. In the second half the music fades in and becomes louder but at the same time it sounds as if it's interrupted.", "data_idx": 2362, "number": 1, "label": "hiphop"} +{"file_name": "train_04450.png", "caption": "The music excerpt is split into two different songs. The first half features the type of turntable scratches that DJs usually do. A song is running in a loop in the background. In the second half the music fades in and becomes louder but at the same time it sounds as if it's interrupted.", "data_idx": 2362, "number": 2, "label": "hiphop"} +{"file_name": "train_04451.png", "caption": "The music excerpt is split into two different songs. The first half features the type of turntable scratches that DJs usually do. A song is running in a loop in the background. In the second half the music fades in and becomes louder but at the same time it sounds as if it's interrupted.", "data_idx": 2362, "number": 3, "label": "hiphop"} +{"file_name": "train_04452.png", "caption": "The low quality recording features a rock song and it consists of harmonizing male vocals singing over groovy bass, punchy drums and electric guitar melody. It sounds completely crushed, muffled and messy, since the frequencies of the instruments are clashing with each other. Regardless, it still sounds energetic.", "data_idx": 2365, "number": 0, "label": "metal"} +{"file_name": "train_04453.png", "caption": "The low quality recording features a rock song and it consists of harmonizing male vocals singing over groovy bass, punchy drums and electric guitar melody. It sounds completely crushed, muffled and messy, since the frequencies of the instruments are clashing with each other. Regardless, it still sounds energetic.", "data_idx": 2365, "number": 1, "label": "metal"} +{"file_name": "train_04454.png", "caption": "Digital sound effects are rising in a high pitch along with the sound of ocean-waves. Then a song starts containing a digital/acoustic drum playing a simple and clear groove with a shaker sample as hi hat sound and a e-guitar finger picking a melody. This song may be playing as an intro for an informational video.", "data_idx": 2368, "number": 0, "label": "hiphop"} +{"file_name": "train_04455.png", "caption": "Digital sound effects are rising in a high pitch along with the sound of ocean-waves. Then a song starts containing a digital/acoustic drum playing a simple and clear groove with a shaker sample as hi hat sound and a e-guitar finger picking a melody. This song may be playing as an intro for an informational video.", "data_idx": 2368, "number": 1, "label": "hiphop"} +{"file_name": "train_04456.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy drumming rhythm, percussive bass line and cool electric guitar riff played repeatedly. The song is exciting and energetic. The song has smooth jazz or funk jazz roots.", "data_idx": 2369, "number": 0, "label": "reggae"} +{"file_name": "train_04457.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy drumming rhythm, percussive bass line and cool electric guitar riff played repeatedly. The song is exciting and energetic. The song has smooth jazz or funk jazz roots.", "data_idx": 2369, "number": 1, "label": "reggae"} +{"file_name": "train_04458.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy drumming rhythm, percussive bass line and cool electric guitar riff played repeatedly. The song is exciting and energetic. The song has smooth jazz or funk jazz roots.", "data_idx": 2369, "number": 2, "label": "reggae"} +{"file_name": "train_04459.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy drumming rhythm, percussive bass line and cool electric guitar riff played repeatedly. The song is exciting and energetic. The song has smooth jazz or funk jazz roots.", "data_idx": 2369, "number": 3, "label": "reggae"} +{"file_name": "train_04460.png", "caption": "This clip features a male voice singing the main melody. Toward the end, the voice transitions to a female voice to make this sound like a duet. This is accompanied by a harp sound plucking strings. Chimes are played when the voice transitions from male to female. There is no percussion in this song. The voices are calming and relaxing. The theme of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2370, "number": 0, "label": "rock"} +{"file_name": "train_04461.png", "caption": "This clip features a male voice singing the main melody. Toward the end, the voice transitions to a female voice to make this sound like a duet. This is accompanied by a harp sound plucking strings. Chimes are played when the voice transitions from male to female. There is no percussion in this song. The voices are calming and relaxing. The theme of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2370, "number": 1, "label": "rock"} +{"file_name": "train_04462.png", "caption": "This clip features a male voice singing the main melody. Toward the end, the voice transitions to a female voice to make this sound like a duet. This is accompanied by a harp sound plucking strings. Chimes are played when the voice transitions from male to female. There is no percussion in this song. The voices are calming and relaxing. The theme of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2370, "number": 2, "label": "rock"} +{"file_name": "train_04463.png", "caption": "This clip features a male voice singing the main melody. Toward the end, the voice transitions to a female voice to make this sound like a duet. This is accompanied by a harp sound plucking strings. Chimes are played when the voice transitions from male to female. There is no percussion in this song. The voices are calming and relaxing. The theme of this song is romantic. This song can be played in a romantic movie.", "data_idx": 2370, "number": 3, "label": "rock"} +{"file_name": "train_04464.png", "caption": "The song is an upbeat pop song with a slight hip hop influence. It's a live performance and features a breathy, seductive female vocalist. The backup singers almost chant or laugh in a staccato way that creates a vocal riff. There are string instruments in the background. This is a live performance.", "data_idx": 2372, "number": 0, "label": "pop"} +{"file_name": "train_04465.png", "caption": "The song is an upbeat pop song with a slight hip hop influence. It's a live performance and features a breathy, seductive female vocalist. The backup singers almost chant or laugh in a staccato way that creates a vocal riff. There are string instruments in the background. This is a live performance.", "data_idx": 2372, "number": 1, "label": "pop"} +{"file_name": "train_04466.png", "caption": "The song is an upbeat pop song with a slight hip hop influence. It's a live performance and features a breathy, seductive female vocalist. The backup singers almost chant or laugh in a staccato way that creates a vocal riff. There are string instruments in the background. This is a live performance.", "data_idx": 2372, "number": 2, "label": "pop"} +{"file_name": "train_04467.png", "caption": "The song is an upbeat pop song with a slight hip hop influence. It's a live performance and features a breathy, seductive female vocalist. The backup singers almost chant or laugh in a staccato way that creates a vocal riff. There are string instruments in the background. This is a live performance.", "data_idx": 2372, "number": 3, "label": "pop"} +{"file_name": "train_04468.png", "caption": "The low quality recording features a Chanson song that consists of passionate female vocal singing over mellow piano melody and soft sustained strings melody. The recording is noisy, crushed and it sounds vintage, and therefore sentimental and nostalgic.", "data_idx": 2373, "number": 0, "label": "classical"} +{"file_name": "train_04469.png", "caption": "The low quality recording features a Chanson song that consists of passionate female vocal singing over mellow piano melody and soft sustained strings melody. The recording is noisy, crushed and it sounds vintage, and therefore sentimental and nostalgic.", "data_idx": 2373, "number": 1, "label": "classical"} +{"file_name": "train_04470.png", "caption": "This song is an instrumental. The tempo is medium fast with melodious steel pan, rhythmic percussion like bongos and congas, guitar sound, steady bass line and keyboard harmony. The sound of the breeze in the background indicates that music is being played outdoors. The music is invigorating, playful, light, pleasant, mellifluous and warm.", "data_idx": 2374, "number": 0, "label": "hiphop"} +{"file_name": "train_04471.png", "caption": "This song is an instrumental. The tempo is medium fast with melodious steel pan, rhythmic percussion like bongos and congas, guitar sound, steady bass line and keyboard harmony. The sound of the breeze in the background indicates that music is being played outdoors. The music is invigorating, playful, light, pleasant, mellifluous and warm.", "data_idx": 2374, "number": 1, "label": "hiphop"} +{"file_name": "train_04472.png", "caption": "This song is an instrumental. The tempo is medium fast with melodious steel pan, rhythmic percussion like bongos and congas, guitar sound, steady bass line and keyboard harmony. The sound of the breeze in the background indicates that music is being played outdoors. The music is invigorating, playful, light, pleasant, mellifluous and warm.", "data_idx": 2374, "number": 2, "label": "hiphop"} +{"file_name": "train_04473.png", "caption": "This song is an instrumental. The tempo is medium fast with melodious steel pan, rhythmic percussion like bongos and congas, guitar sound, steady bass line and keyboard harmony. The sound of the breeze in the background indicates that music is being played outdoors. The music is invigorating, playful, light, pleasant, mellifluous and warm.", "data_idx": 2374, "number": 3, "label": "hiphop"} +{"file_name": "train_04474.png", "caption": "This is the recording of an electronic dance music/rave party. The rhythmic background consists of a loud electronic drum beat. There is a synth playing a simple and repeated theme. The atmosphere is energetic. This piece could be played at nightclubs, dance clubs and rave events. It could also be playing at beach parties.", "data_idx": 2375, "number": 0, "label": "disco"} +{"file_name": "train_04475.png", "caption": "This is the recording of an electronic dance music/rave party. The rhythmic background consists of a loud electronic drum beat. There is a synth playing a simple and repeated theme. The atmosphere is energetic. This piece could be played at nightclubs, dance clubs and rave events. It could also be playing at beach parties.", "data_idx": 2375, "number": 1, "label": "disco"} +{"file_name": "train_04476.png", "caption": "This is the recording of an electronic dance music/rave party. The rhythmic background consists of a loud electronic drum beat. There is a synth playing a simple and repeated theme. The atmosphere is energetic. This piece could be played at nightclubs, dance clubs and rave events. It could also be playing at beach parties.", "data_idx": 2375, "number": 2, "label": "disco"} +{"file_name": "train_04477.png", "caption": "This is the recording of an electronic dance music/rave party. The rhythmic background consists of a loud electronic drum beat. There is a synth playing a simple and repeated theme. The atmosphere is energetic. This piece could be played at nightclubs, dance clubs and rave events. It could also be playing at beach parties.", "data_idx": 2375, "number": 3, "label": "disco"} +{"file_name": "train_04478.png", "caption": "The Ambient song features a widely spread dark mellow synth pad. There is a mellow noise sound effect at the beginning of the loop. It sounds dark, calming and relaxing - like something you would listen to while doing yoga.", "data_idx": 2376, "number": 0, "label": "jazz"} +{"file_name": "train_04479.png", "caption": "The Ambient song features a widely spread dark mellow synth pad. There is a mellow noise sound effect at the beginning of the loop. It sounds dark, calming and relaxing - like something you would listen to while doing yoga.", "data_idx": 2376, "number": 1, "label": "jazz"} +{"file_name": "train_04480.png", "caption": "The Ambient song features a widely spread dark mellow synth pad. There is a mellow noise sound effect at the beginning of the loop. It sounds dark, calming and relaxing - like something you would listen to while doing yoga.", "data_idx": 2376, "number": 2, "label": "jazz"} +{"file_name": "train_04481.png", "caption": "The Ambient song features a widely spread dark mellow synth pad. There is a mellow noise sound effect at the beginning of the loop. It sounds dark, calming and relaxing - like something you would listen to while doing yoga.", "data_idx": 2376, "number": 3, "label": "jazz"} +{"file_name": "train_04482.png", "caption": "This is an Irish folk music piece. There is no singer. The main melody is being played by the uilleann pipes and the fiddle at a high pitch. The acoustic guitar is playing a rapid procession of chords in the background. The atmosphere is lively. This piece could be playing in the background at an Irish pub. It could also be used in the soundtracks of movies and TV shows that have a theme with an Irish influence.", "data_idx": 2377, "number": 0, "label": "classical"} +{"file_name": "train_04483.png", "caption": "This is an Irish folk music piece. There is no singer. The main melody is being played by the uilleann pipes and the fiddle at a high pitch. The acoustic guitar is playing a rapid procession of chords in the background. The atmosphere is lively. This piece could be playing in the background at an Irish pub. It could also be used in the soundtracks of movies and TV shows that have a theme with an Irish influence.", "data_idx": 2377, "number": 1, "label": "classical"} +{"file_name": "train_04484.png", "caption": "This is an Irish folk music piece. There is no singer. The main melody is being played by the uilleann pipes and the fiddle at a high pitch. The acoustic guitar is playing a rapid procession of chords in the background. The atmosphere is lively. This piece could be playing in the background at an Irish pub. It could also be used in the soundtracks of movies and TV shows that have a theme with an Irish influence.", "data_idx": 2377, "number": 2, "label": "classical"} +{"file_name": "train_04485.png", "caption": "This is an Irish folk music piece. There is no singer. The main melody is being played by the uilleann pipes and the fiddle at a high pitch. The acoustic guitar is playing a rapid procession of chords in the background. The atmosphere is lively. This piece could be playing in the background at an Irish pub. It could also be used in the soundtracks of movies and TV shows that have a theme with an Irish influence.", "data_idx": 2377, "number": 3, "label": "classical"} +{"file_name": "train_04486.png", "caption": "The low quality recording features a live performance of a ballad song that consists of passionate male vocal singing over a mellow piano melody. It sounds soft, emotional, sad and heartfelt.", "data_idx": 2378, "number": 0, "label": "rock"} +{"file_name": "train_04487.png", "caption": "The low quality recording features a live performance of a ballad song that consists of passionate male vocal singing over a mellow piano melody. It sounds soft, emotional, sad and heartfelt.", "data_idx": 2378, "number": 1, "label": "rock"} +{"file_name": "train_04488.png", "caption": "The low quality recording features a live performance of a ballad song that consists of passionate male vocal singing over a mellow piano melody. It sounds soft, emotional, sad and heartfelt.", "data_idx": 2378, "number": 2, "label": "rock"} +{"file_name": "train_04489.png", "caption": "The low quality recording features a live performance of a ballad song that consists of passionate male vocal singing over a mellow piano melody. It sounds soft, emotional, sad and heartfelt.", "data_idx": 2378, "number": 3, "label": "rock"} +{"file_name": "train_04490.png", "caption": "This is an analog sounding electronic jam. The automated melody is played by a sequencer that has a synthesizer base. The electronic drums in the rhythmic background have a 909-like sound. The atmosphere of the piece is very robotic and computer-like. This piece could be used in the soundtracks of movies and video games that have a cyberpunk/futuristic sci-fi theme.", "data_idx": 2379, "number": 0, "label": "rock"} +{"file_name": "train_04491.png", "caption": "This is an analog sounding electronic jam. The automated melody is played by a sequencer that has a synthesizer base. The electronic drums in the rhythmic background have a 909-like sound. The atmosphere of the piece is very robotic and computer-like. This piece could be used in the soundtracks of movies and video games that have a cyberpunk/futuristic sci-fi theme.", "data_idx": 2379, "number": 1, "label": "rock"} +{"file_name": "train_04492.png", "caption": "This is an analog sounding electronic jam. The automated melody is played by a sequencer that has a synthesizer base. The electronic drums in the rhythmic background have a 909-like sound. The atmosphere of the piece is very robotic and computer-like. This piece could be used in the soundtracks of movies and video games that have a cyberpunk/futuristic sci-fi theme.", "data_idx": 2379, "number": 2, "label": "rock"} +{"file_name": "train_04493.png", "caption": "This is an analog sounding electronic jam. The automated melody is played by a sequencer that has a synthesizer base. The electronic drums in the rhythmic background have a 909-like sound. The atmosphere of the piece is very robotic and computer-like. This piece could be used in the soundtracks of movies and video games that have a cyberpunk/futuristic sci-fi theme.", "data_idx": 2379, "number": 3, "label": "rock"} +{"file_name": "train_04494.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is medium fast with an animated electric guitar harmony and lead, groovy bass lines,infectious drumming and keyboard harmony. The song is electric,pulsating, youthful, energetic, enthusiastic, passionate and powerful with emphatic vocals. This song is Heavy Metal.", "data_idx": 2380, "number": 0, "label": "rock"} +{"file_name": "train_04495.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is medium fast with an animated electric guitar harmony and lead, groovy bass lines,infectious drumming and keyboard harmony. The song is electric,pulsating, youthful, energetic, enthusiastic, passionate and powerful with emphatic vocals. This song is Heavy Metal.", "data_idx": 2380, "number": 1, "label": "rock"} +{"file_name": "train_04496.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is medium fast with an animated electric guitar harmony and lead, groovy bass lines,infectious drumming and keyboard harmony. The song is electric,pulsating, youthful, energetic, enthusiastic, passionate and powerful with emphatic vocals. This song is Heavy Metal.", "data_idx": 2380, "number": 2, "label": "rock"} +{"file_name": "train_04497.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is medium fast with an animated electric guitar harmony and lead, groovy bass lines,infectious drumming and keyboard harmony. The song is electric,pulsating, youthful, energetic, enthusiastic, passionate and powerful with emphatic vocals. This song is Heavy Metal.", "data_idx": 2380, "number": 3, "label": "rock"} +{"file_name": "train_04498.png", "caption": "The low quality recording features a live performance of a country melody on an acoustic rhythm guitar. There are some camera shuttering and beeping sounds in the background.", "data_idx": 2381, "number": 0, "label": "rock"} +{"file_name": "train_04499.png", "caption": "The low quality recording features a live performance of a country melody on an acoustic rhythm guitar. There are some camera shuttering and beeping sounds in the background.", "data_idx": 2381, "number": 1, "label": "rock"} +{"file_name": "train_04500.png", "caption": "The low quality recording features a live performance of a country melody on an acoustic rhythm guitar. There are some camera shuttering and beeping sounds in the background.", "data_idx": 2381, "number": 2, "label": "rock"} +{"file_name": "train_04501.png", "caption": "The low quality recording features a live performance of a country melody on an acoustic rhythm guitar. There are some camera shuttering and beeping sounds in the background.", "data_idx": 2381, "number": 3, "label": "rock"} +{"file_name": "train_04502.png", "caption": "A female vocalist sings this trippy vocal riff. The tempo is medium with atmospheric synthesiser and digital drums. The song is heavily synthesised and is psychedelic, intense, enigmatic, mysterious and youthful with a dance groove. This song is an EDM/Electro Pop song.", "data_idx": 2383, "number": 0, "label": "rock"} +{"file_name": "train_04503.png", "caption": "A female vocalist sings this trippy vocal riff. The tempo is medium with atmospheric synthesiser and digital drums. The song is heavily synthesised and is psychedelic, intense, enigmatic, mysterious and youthful with a dance groove. This song is an EDM/Electro Pop song.", "data_idx": 2383, "number": 1, "label": "rock"} +{"file_name": "train_04504.png", "caption": "A female vocalist sings this trippy vocal riff. The tempo is medium with atmospheric synthesiser and digital drums. The song is heavily synthesised and is psychedelic, intense, enigmatic, mysterious and youthful with a dance groove. This song is an EDM/Electro Pop song.", "data_idx": 2383, "number": 2, "label": "rock"} +{"file_name": "train_04505.png", "caption": "A female vocalist sings this trippy vocal riff. The tempo is medium with atmospheric synthesiser and digital drums. The song is heavily synthesised and is psychedelic, intense, enigmatic, mysterious and youthful with a dance groove. This song is an EDM/Electro Pop song.", "data_idx": 2383, "number": 3, "label": "rock"} +{"file_name": "train_04506.png", "caption": "A female singer sings this animated melody. The song is medium tempo with church bells playing percussively, shakers percussion, walking bass line, steady drumming rhythm and keyboard harmony, the song is romantic and eclectic in nature. The song is an animated movie soundtrack.", "data_idx": 2384, "number": 0, "label": "blues"} +{"file_name": "train_04507.png", "caption": "A female singer sings this animated melody. The song is medium tempo with church bells playing percussively, shakers percussion, walking bass line, steady drumming rhythm and keyboard harmony, the song is romantic and eclectic in nature. The song is an animated movie soundtrack.", "data_idx": 2384, "number": 1, "label": "blues"} +{"file_name": "train_04508.png", "caption": "A female singer sings this animated melody. The song is medium tempo with church bells playing percussively, shakers percussion, walking bass line, steady drumming rhythm and keyboard harmony, the song is romantic and eclectic in nature. The song is an animated movie soundtrack.", "data_idx": 2384, "number": 2, "label": "blues"} +{"file_name": "train_04509.png", "caption": "A female singer sings this animated melody. The song is medium tempo with church bells playing percussively, shakers percussion, walking bass line, steady drumming rhythm and keyboard harmony, the song is romantic and eclectic in nature. The song is an animated movie soundtrack.", "data_idx": 2384, "number": 3, "label": "blues"} +{"file_name": "train_04510.png", "caption": "This is a punk rock song with an energetic, youthful feel that is still grungy and gritty. The guitar is dark and powerful in the low tones, contrasted by another electric guitar that's bright and warm on the off beats. The drummer plays a high octane drum beat with drum fills between each line of the lyrics.", "data_idx": 2385, "number": 0, "label": "metal"} +{"file_name": "train_04511.png", "caption": "This is a punk rock song with an energetic, youthful feel that is still grungy and gritty. The guitar is dark and powerful in the low tones, contrasted by another electric guitar that's bright and warm on the off beats. The drummer plays a high octane drum beat with drum fills between each line of the lyrics.", "data_idx": 2385, "number": 1, "label": "metal"} +{"file_name": "train_04512.png", "caption": "Solo performance of an electric guitar player strumming chords. The tone is overdriven and warm. The genre is rock.", "data_idx": 2386, "number": 0, "label": "jazz"} +{"file_name": "train_04513.png", "caption": "Solo performance of an electric guitar player strumming chords. The tone is overdriven and warm. The genre is rock.", "data_idx": 2386, "number": 1, "label": "jazz"} +{"file_name": "train_04514.png", "caption": "Solo performance of an electric guitar player strumming chords. The tone is overdriven and warm. The genre is rock.", "data_idx": 2386, "number": 2, "label": "jazz"} +{"file_name": "train_04515.png", "caption": "Solo performance of an electric guitar player strumming chords. The tone is overdriven and warm. The genre is rock.", "data_idx": 2386, "number": 3, "label": "jazz"} +{"file_name": "train_04516.png", "caption": "A male singer sings this gentle country music melody. The song is slow tempo with banjo, mandolin and guitar accompaniment and a double bass playing the lower register harmony. The song is emotional and nostalgic. The song is a country music hit with an average audio quality.", "data_idx": 2387, "number": 0, "label": "country"} +{"file_name": "train_04517.png", "caption": "A male singer sings this gentle country music melody. The song is slow tempo with banjo, mandolin and guitar accompaniment and a double bass playing the lower register harmony. The song is emotional and nostalgic. The song is a country music hit with an average audio quality.", "data_idx": 2387, "number": 1, "label": "country"} +{"file_name": "train_04518.png", "caption": "A male singer sings this gentle country music melody. The song is slow tempo with banjo, mandolin and guitar accompaniment and a double bass playing the lower register harmony. The song is emotional and nostalgic. The song is a country music hit with an average audio quality.", "data_idx": 2387, "number": 2, "label": "country"} +{"file_name": "train_04519.png", "caption": "A male singer sings this gentle country music melody. The song is slow tempo with banjo, mandolin and guitar accompaniment and a double bass playing the lower register harmony. The song is emotional and nostalgic. The song is a country music hit with an average audio quality.", "data_idx": 2387, "number": 3, "label": "country"} +{"file_name": "train_04520.png", "caption": "This is a live acoustic performance piece. The didgeridoo is being used in varying ranges and effects to play many different tunes and to get a techno-like sound variety. There is a whole bunch of percussive instruments being used from membranous percussion to bell percussion. It all adds up into one big sensational performance. There is an eccentric atmosphere. This piece could be used in the soundtrack of a movie with a primitive/jungle setting. It could also be used in action or pursuit scenes in movies.", "data_idx": 2390, "number": 0, "label": "reggae"} +{"file_name": "train_04521.png", "caption": "This is a live acoustic performance piece. The didgeridoo is being used in varying ranges and effects to play many different tunes and to get a techno-like sound variety. There is a whole bunch of percussive instruments being used from membranous percussion to bell percussion. It all adds up into one big sensational performance. There is an eccentric atmosphere. This piece could be used in the soundtrack of a movie with a primitive/jungle setting. It could also be used in action or pursuit scenes in movies.", "data_idx": 2390, "number": 1, "label": "reggae"} +{"file_name": "train_04522.png", "caption": "This is a live acoustic performance piece. The didgeridoo is being used in varying ranges and effects to play many different tunes and to get a techno-like sound variety. There is a whole bunch of percussive instruments being used from membranous percussion to bell percussion. It all adds up into one big sensational performance. There is an eccentric atmosphere. This piece could be used in the soundtrack of a movie with a primitive/jungle setting. It could also be used in action or pursuit scenes in movies.", "data_idx": 2390, "number": 2, "label": "reggae"} +{"file_name": "train_04523.png", "caption": "This is a live acoustic performance piece. The didgeridoo is being used in varying ranges and effects to play many different tunes and to get a techno-like sound variety. There is a whole bunch of percussive instruments being used from membranous percussion to bell percussion. It all adds up into one big sensational performance. There is an eccentric atmosphere. This piece could be used in the soundtrack of a movie with a primitive/jungle setting. It could also be used in action or pursuit scenes in movies.", "data_idx": 2390, "number": 3, "label": "reggae"} +{"file_name": "train_04524.png", "caption": "The Dance Electronic track features a filtered clapping, suspenseful synth arpeggio melody, shimmering open hat, subtle hi hat, tinny syncopated percussive element, groovy bongos located in the right channel and pulsating filter modulated riser that bring the energy up. In the second part of the loop there is a \"4 on the floor\" kick pattern with a slight variation, alongside wide, echoing female exhales and shimmering shakers. It sounds low quality, especially since there is a tiny audio cutout, but also energetic, like something you would hear in the clubs.", "data_idx": 2392, "number": 0, "label": "hiphop"} +{"file_name": "train_04525.png", "caption": "The Dance Electronic track features a filtered clapping, suspenseful synth arpeggio melody, shimmering open hat, subtle hi hat, tinny syncopated percussive element, groovy bongos located in the right channel and pulsating filter modulated riser that bring the energy up. In the second part of the loop there is a \"4 on the floor\" kick pattern with a slight variation, alongside wide, echoing female exhales and shimmering shakers. It sounds low quality, especially since there is a tiny audio cutout, but also energetic, like something you would hear in the clubs.", "data_idx": 2392, "number": 1, "label": "hiphop"} +{"file_name": "train_04526.png", "caption": "The Dance Electronic track features a filtered clapping, suspenseful synth arpeggio melody, shimmering open hat, subtle hi hat, tinny syncopated percussive element, groovy bongos located in the right channel and pulsating filter modulated riser that bring the energy up. In the second part of the loop there is a \"4 on the floor\" kick pattern with a slight variation, alongside wide, echoing female exhales and shimmering shakers. It sounds low quality, especially since there is a tiny audio cutout, but also energetic, like something you would hear in the clubs.", "data_idx": 2392, "number": 2, "label": "hiphop"} +{"file_name": "train_04527.png", "caption": "The Dance Electronic track features a filtered clapping, suspenseful synth arpeggio melody, shimmering open hat, subtle hi hat, tinny syncopated percussive element, groovy bongos located in the right channel and pulsating filter modulated riser that bring the energy up. In the second part of the loop there is a \"4 on the floor\" kick pattern with a slight variation, alongside wide, echoing female exhales and shimmering shakers. It sounds low quality, especially since there is a tiny audio cutout, but also energetic, like something you would hear in the clubs.", "data_idx": 2392, "number": 3, "label": "hiphop"} +{"file_name": "train_04528.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The song is soft, mellow, dulse, emotional and gentle with minimal music. The song is a Christian Gospel Song.", "data_idx": 2393, "number": 0, "label": "blues"} +{"file_name": "train_04529.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The song is soft, mellow, dulse, emotional and gentle with minimal music. The song is a Christian Gospel Song.", "data_idx": 2393, "number": 1, "label": "blues"} +{"file_name": "train_04530.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The song is soft, mellow, dulse, emotional and gentle with minimal music. The song is a Christian Gospel Song.", "data_idx": 2393, "number": 2, "label": "blues"} +{"file_name": "train_04531.png", "caption": "A male vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The song is soft, mellow, dulse, emotional and gentle with minimal music. The song is a Christian Gospel Song.", "data_idx": 2393, "number": 3, "label": "blues"} +{"file_name": "train_04532.png", "caption": "A male rapper sings this cool melody with a backup singer in vocal harmony. The song is medium tempo with a groovy bass, keyboard playing harmony, stringed Asian instrument and a steady drumming rhythm. The song is story telling and passionate. The song is in poor audio quality and is a rap music video.", "data_idx": 2396, "number": 0, "label": "hiphop"} +{"file_name": "train_04533.png", "caption": "A male rapper sings this cool melody with a backup singer in vocal harmony. The song is medium tempo with a groovy bass, keyboard playing harmony, stringed Asian instrument and a steady drumming rhythm. The song is story telling and passionate. The song is in poor audio quality and is a rap music video.", "data_idx": 2396, "number": 1, "label": "hiphop"} +{"file_name": "train_04534.png", "caption": "A male rapper sings this cool melody with a backup singer in vocal harmony. The song is medium tempo with a groovy bass, keyboard playing harmony, stringed Asian instrument and a steady drumming rhythm. The song is story telling and passionate. The song is in poor audio quality and is a rap music video.", "data_idx": 2396, "number": 2, "label": "hiphop"} +{"file_name": "train_04535.png", "caption": "A male rapper sings this cool melody with a backup singer in vocal harmony. The song is medium tempo with a groovy bass, keyboard playing harmony, stringed Asian instrument and a steady drumming rhythm. The song is story telling and passionate. The song is in poor audio quality and is a rap music video.", "data_idx": 2396, "number": 3, "label": "hiphop"} diff --git a/data/train/metadata_0008.jsonl b/data/train/metadata_0008.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b07b8af34f96dc800f727cd51b308fa733caf1f3 --- /dev/null +++ b/data/train/metadata_0008.jsonl @@ -0,0 +1,364 @@ +{"file_name": "train_04536.png", "caption": "This track is purely percussion and features fast paced playing of rim shots, tom drums and a kick drum. There's also a clapping hands effect.", "data_idx": 2403, "number": 0, "label": "reggae"} +{"file_name": "train_04537.png", "caption": "This track is purely percussion and features fast paced playing of rim shots, tom drums and a kick drum. There's also a clapping hands effect.", "data_idx": 2403, "number": 1, "label": "reggae"} +{"file_name": "train_04538.png", "caption": "This track is purely percussion and features fast paced playing of rim shots, tom drums and a kick drum. There's also a clapping hands effect.", "data_idx": 2403, "number": 2, "label": "reggae"} +{"file_name": "train_04539.png", "caption": "This track is purely percussion and features fast paced playing of rim shots, tom drums and a kick drum. There's also a clapping hands effect.", "data_idx": 2403, "number": 3, "label": "reggae"} +{"file_name": "train_04540.png", "caption": "The Recording features a cover of a pop rock song and it consists of soft acoustic rhythm guitar located in the left channel and angelically harmonized mixed vocals singing on top of it. It sounds hopeful and emotional.", "data_idx": 2404, "number": 0, "label": "hiphop"} +{"file_name": "train_04541.png", "caption": "The Recording features a cover of a pop rock song and it consists of soft acoustic rhythm guitar located in the left channel and angelically harmonized mixed vocals singing on top of it. It sounds hopeful and emotional.", "data_idx": 2404, "number": 1, "label": "hiphop"} +{"file_name": "train_04542.png", "caption": "The low quality recording features haunting and spooky noises of wind, sea and some church bell sound effects. Sounds like a thriller movie atmosphere.", "data_idx": 2405, "number": 0, "label": "classical"} +{"file_name": "train_04543.png", "caption": "The low quality recording features haunting and spooky noises of wind, sea and some church bell sound effects. Sounds like a thriller movie atmosphere.", "data_idx": 2405, "number": 1, "label": "classical"} +{"file_name": "train_04544.png", "caption": "The low quality recording features haunting and spooky noises of wind, sea and some church bell sound effects. Sounds like a thriller movie atmosphere.", "data_idx": 2405, "number": 2, "label": "classical"} +{"file_name": "train_04545.png", "caption": "The low quality recording features haunting and spooky noises of wind, sea and some church bell sound effects. Sounds like a thriller movie atmosphere.", "data_idx": 2405, "number": 3, "label": "classical"} +{"file_name": "train_04546.png", "caption": "an uprising low modulated sound comes in with a lot of airy noise before a digital drum rhythm is playing. This is an amateur recording. This sequence may be playing at home programming a sampler.", "data_idx": 2407, "number": 0, "label": "classical"} +{"file_name": "train_04547.png", "caption": "an uprising low modulated sound comes in with a lot of airy noise before a digital drum rhythm is playing. This is an amateur recording. This sequence may be playing at home programming a sampler.", "data_idx": 2407, "number": 1, "label": "classical"} +{"file_name": "train_04548.png", "caption": "an uprising low modulated sound comes in with a lot of airy noise before a digital drum rhythm is playing. This is an amateur recording. This sequence may be playing at home programming a sampler.", "data_idx": 2407, "number": 2, "label": "classical"} +{"file_name": "train_04549.png", "caption": "an uprising low modulated sound comes in with a lot of airy noise before a digital drum rhythm is playing. This is an amateur recording. This sequence may be playing at home programming a sampler.", "data_idx": 2407, "number": 3, "label": "classical"} +{"file_name": "train_04550.png", "caption": "A digital drum is playing a reggaeton groove along with some acoustic percussion while someone is playing a turkish baglama. A male voice is singing/shouting. This is an amateur recording. This song may be playing outside busking with a band.", "data_idx": 2408, "number": 0, "label": "disco"} +{"file_name": "train_04551.png", "caption": "A digital drum is playing a reggaeton groove along with some acoustic percussion while someone is playing a turkish baglama. A male voice is singing/shouting. This is an amateur recording. This song may be playing outside busking with a band.", "data_idx": 2408, "number": 1, "label": "disco"} +{"file_name": "train_04552.png", "caption": "The low quality recording features a song that consists of pitch bend horn siren melody played over groovy piano chords, groovy bass, \"4 on the floor\" kick pattern, punchy snare and simple hi hats. At the end of the loop there is a short snare roll. The siren is very loud, and over time it sounds a bit uncomfortable, but it sounds fun and happy regardless - like something that kids would listen to.", "data_idx": 2413, "number": 0, "label": "hiphop"} +{"file_name": "train_04553.png", "caption": "The low quality recording features a song that consists of pitch bend horn siren melody played over groovy piano chords, groovy bass, \"4 on the floor\" kick pattern, punchy snare and simple hi hats. At the end of the loop there is a short snare roll. The siren is very loud, and over time it sounds a bit uncomfortable, but it sounds fun and happy regardless - like something that kids would listen to.", "data_idx": 2413, "number": 1, "label": "hiphop"} +{"file_name": "train_04554.png", "caption": "The low quality recording features a song that consists of pitch bend horn siren melody played over groovy piano chords, groovy bass, \"4 on the floor\" kick pattern, punchy snare and simple hi hats. At the end of the loop there is a short snare roll. The siren is very loud, and over time it sounds a bit uncomfortable, but it sounds fun and happy regardless - like something that kids would listen to.", "data_idx": 2413, "number": 2, "label": "hiphop"} +{"file_name": "train_04555.png", "caption": "The low quality recording features a song that consists of pitch bend horn siren melody played over groovy piano chords, groovy bass, \"4 on the floor\" kick pattern, punchy snare and simple hi hats. At the end of the loop there is a short snare roll. The siren is very loud, and over time it sounds a bit uncomfortable, but it sounds fun and happy regardless - like something that kids would listen to.", "data_idx": 2413, "number": 3, "label": "hiphop"} +{"file_name": "train_04556.png", "caption": "A female singer sang this pop melody with female backup singers in vocal harmony. The song is fast tempo with various percussion instruments, but with a steady drumming rhythm, percussive bass line, guitar rhythm and keyboard accompaniment . The song is youthful and a party dance song. The song's audio quality is poor.", "data_idx": 2414, "number": 0, "label": "disco"} +{"file_name": "train_04557.png", "caption": "A female singer sang this pop melody with female backup singers in vocal harmony. The song is fast tempo with various percussion instruments, but with a steady drumming rhythm, percussive bass line, guitar rhythm and keyboard accompaniment . The song is youthful and a party dance song. The song's audio quality is poor.", "data_idx": 2414, "number": 1, "label": "disco"} +{"file_name": "train_04558.png", "caption": "A female singer sang this pop melody with female backup singers in vocal harmony. The song is fast tempo with various percussion instruments, but with a steady drumming rhythm, percussive bass line, guitar rhythm and keyboard accompaniment . The song is youthful and a party dance song. The song's audio quality is poor.", "data_idx": 2414, "number": 2, "label": "disco"} +{"file_name": "train_04559.png", "caption": "A female singer sang this pop melody with female backup singers in vocal harmony. The song is fast tempo with various percussion instruments, but with a steady drumming rhythm, percussive bass line, guitar rhythm and keyboard accompaniment . The song is youthful and a party dance song. The song's audio quality is poor.", "data_idx": 2414, "number": 3, "label": "disco"} +{"file_name": "train_04560.png", "caption": "Someone is scratching over a hip hop backing-track containing digital drums, a subby bassline and some pad sounds samples playing a melody. A male voice sample is shouting something. This song may be playing at home practicing scratching.", "data_idx": 2415, "number": 0, "label": "hiphop"} +{"file_name": "train_04561.png", "caption": "Someone is scratching over a hip hop backing-track containing digital drums, a subby bassline and some pad sounds samples playing a melody. A male voice sample is shouting something. This song may be playing at home practicing scratching.", "data_idx": 2415, "number": 1, "label": "hiphop"} +{"file_name": "train_04562.png", "caption": "Someone is scratching over a hip hop backing-track containing digital drums, a subby bassline and some pad sounds samples playing a melody. A male voice sample is shouting something. This song may be playing at home practicing scratching.", "data_idx": 2415, "number": 2, "label": "hiphop"} +{"file_name": "train_04563.png", "caption": "Someone is scratching over a hip hop backing-track containing digital drums, a subby bassline and some pad sounds samples playing a melody. A male voice sample is shouting something. This song may be playing at home practicing scratching.", "data_idx": 2415, "number": 3, "label": "hiphop"} +{"file_name": "train_04564.png", "caption": "The Metal song features a manic solo electric guitar melody over shimmering hi hats, shimmering crash cymbals, double pedal kick hits, punchy snare, groovy distorted bass guitar and aggressive electric guitar riffs. It sounds aggressive, manic and energetic - like something you would jump to at the concerts.", "data_idx": 2416, "number": 0, "label": "metal"} +{"file_name": "train_04565.png", "caption": "The Metal song features a manic solo electric guitar melody over shimmering hi hats, shimmering crash cymbals, double pedal kick hits, punchy snare, groovy distorted bass guitar and aggressive electric guitar riffs. It sounds aggressive, manic and energetic - like something you would jump to at the concerts.", "data_idx": 2416, "number": 1, "label": "metal"} +{"file_name": "train_04566.png", "caption": "The Metal song features a manic solo electric guitar melody over shimmering hi hats, shimmering crash cymbals, double pedal kick hits, punchy snare, groovy distorted bass guitar and aggressive electric guitar riffs. It sounds aggressive, manic and energetic - like something you would jump to at the concerts.", "data_idx": 2416, "number": 2, "label": "metal"} +{"file_name": "train_04567.png", "caption": "The Metal song features a manic solo electric guitar melody over shimmering hi hats, shimmering crash cymbals, double pedal kick hits, punchy snare, groovy distorted bass guitar and aggressive electric guitar riffs. It sounds aggressive, manic and energetic - like something you would jump to at the concerts.", "data_idx": 2416, "number": 3, "label": "metal"} +{"file_name": "train_04568.png", "caption": "A female singer sings this vocal harmony with backup singers. The song is medium tempo with a steady drumming rhythm, tambourine percussion, groovy bass line and keyboard accompaniment. The song is trance-like and groovy. The song is a modern techno dance with an average audio quality. The song serves as a sound track for a car repairing video.", "data_idx": 2417, "number": 0, "label": "reggae"} +{"file_name": "train_04569.png", "caption": "A female singer sings this vocal harmony with backup singers. The song is medium tempo with a steady drumming rhythm, tambourine percussion, groovy bass line and keyboard accompaniment. The song is trance-like and groovy. The song is a modern techno dance with an average audio quality. The song serves as a sound track for a car repairing video.", "data_idx": 2417, "number": 1, "label": "reggae"} +{"file_name": "train_04570.png", "caption": "A female singer sings this vocal harmony with backup singers. The song is medium tempo with a steady drumming rhythm, tambourine percussion, groovy bass line and keyboard accompaniment. The song is trance-like and groovy. The song is a modern techno dance with an average audio quality. The song serves as a sound track for a car repairing video.", "data_idx": 2417, "number": 2, "label": "reggae"} +{"file_name": "train_04571.png", "caption": "A female singer sings this vocal harmony with backup singers. The song is medium tempo with a steady drumming rhythm, tambourine percussion, groovy bass line and keyboard accompaniment. The song is trance-like and groovy. The song is a modern techno dance with an average audio quality. The song serves as a sound track for a car repairing video.", "data_idx": 2417, "number": 3, "label": "reggae"} +{"file_name": "train_04572.png", "caption": "The punk-rock music features a male voice singing a static melody. An electric guitar with a distortion effect accompanies the singer with repetitive chords. The drums play a simple and repetitive rhythm.", "data_idx": 2418, "number": 0, "label": "hiphop"} +{"file_name": "train_04573.png", "caption": "The punk-rock music features a male voice singing a static melody. An electric guitar with a distortion effect accompanies the singer with repetitive chords. The drums play a simple and repetitive rhythm.", "data_idx": 2418, "number": 1, "label": "hiphop"} +{"file_name": "train_04574.png", "caption": "The punk-rock music features a male voice singing a static melody. An electric guitar with a distortion effect accompanies the singer with repetitive chords. The drums play a simple and repetitive rhythm.", "data_idx": 2418, "number": 2, "label": "hiphop"} +{"file_name": "train_04575.png", "caption": "The punk-rock music features a male voice singing a static melody. An electric guitar with a distortion effect accompanies the singer with repetitive chords. The drums play a simple and repetitive rhythm.", "data_idx": 2418, "number": 3, "label": "hiphop"} +{"file_name": "train_04576.png", "caption": "This music is an energetic Rock and Roll instrumental. The tempo is fast with animated, infectious drumming, lively trumpets and tambourine beats. The music is upbeat, pulsating, thumping, vivacious, bright, with a perky dance groove. This music is Rock and Roll.", "data_idx": 2419, "number": 0, "label": "hiphop"} +{"file_name": "train_04577.png", "caption": "This music is an energetic Rock and Roll instrumental. The tempo is fast with animated, infectious drumming, lively trumpets and tambourine beats. The music is upbeat, pulsating, thumping, vivacious, bright, with a perky dance groove. This music is Rock and Roll.", "data_idx": 2419, "number": 1, "label": "hiphop"} +{"file_name": "train_04578.png", "caption": "This song is an instrumental solo. The tempo is medium fast with the guitarist playing an enthusiastic lead on an amplified guitar. The music is distorted with inferior audio quality. This song is a PopRock/Rock.", "data_idx": 2420, "number": 0, "label": "blues"} +{"file_name": "train_04579.png", "caption": "This song is an instrumental solo. The tempo is medium fast with the guitarist playing an enthusiastic lead on an amplified guitar. The music is distorted with inferior audio quality. This song is a PopRock/Rock.", "data_idx": 2420, "number": 1, "label": "blues"} +{"file_name": "train_04580.png", "caption": "This song is an instrumental solo. The tempo is medium fast with the guitarist playing an enthusiastic lead on an amplified guitar. The music is distorted with inferior audio quality. This song is a PopRock/Rock.", "data_idx": 2420, "number": 2, "label": "blues"} +{"file_name": "train_04581.png", "caption": "This song is an instrumental solo. The tempo is medium fast with the guitarist playing an enthusiastic lead on an amplified guitar. The music is distorted with inferior audio quality. This song is a PopRock/Rock.", "data_idx": 2420, "number": 3, "label": "blues"} +{"file_name": "train_04582.png", "caption": "The tune is instrumental. The tempo is variable with a drum machine playing different styles and tempos. The song is a demonstration of a synth drum module with a guitar lead playing in the background. The audio quality is poor with hissing tones.", "data_idx": 2422, "number": 0, "label": "hiphop"} +{"file_name": "train_04583.png", "caption": "The tune is instrumental. The tempo is variable with a drum machine playing different styles and tempos. The song is a demonstration of a synth drum module with a guitar lead playing in the background. The audio quality is poor with hissing tones.", "data_idx": 2422, "number": 1, "label": "hiphop"} +{"file_name": "train_04584.png", "caption": "A male vocalist sings this melodious country song. The tempo is medium with rhythmic acoustic guitar, fiddle, resonator, banjo, dobro and mandolin accompaniment, keyboard harmony, steady drumming and straight bass lines. The song is mellow, emotional, prayerful, pleading, sentimental, passionate and melodious. This song is Country Pop.", "data_idx": 2423, "number": 0, "label": "rock"} +{"file_name": "train_04585.png", "caption": "A male vocalist sings this melodious country song. The tempo is medium with rhythmic acoustic guitar, fiddle, resonator, banjo, dobro and mandolin accompaniment, keyboard harmony, steady drumming and straight bass lines. The song is mellow, emotional, prayerful, pleading, sentimental, passionate and melodious. This song is Country Pop.", "data_idx": 2423, "number": 1, "label": "rock"} +{"file_name": "train_04586.png", "caption": "A male vocalist sings this melodious country song. The tempo is medium with rhythmic acoustic guitar, fiddle, resonator, banjo, dobro and mandolin accompaniment, keyboard harmony, steady drumming and straight bass lines. The song is mellow, emotional, prayerful, pleading, sentimental, passionate and melodious. This song is Country Pop.", "data_idx": 2423, "number": 2, "label": "rock"} +{"file_name": "train_04587.png", "caption": "A male vocalist sings this melodious country song. The tempo is medium with rhythmic acoustic guitar, fiddle, resonator, banjo, dobro and mandolin accompaniment, keyboard harmony, steady drumming and straight bass lines. The song is mellow, emotional, prayerful, pleading, sentimental, passionate and melodious. This song is Country Pop.", "data_idx": 2423, "number": 3, "label": "rock"} +{"file_name": "train_04588.png", "caption": "An acoustic drum is playing a funky groove with a crash hit while an e-bass with an effect on it is playing a melody along with an e-piano playing the same. Both are playing in the mid -range. This song may be playing practice for a concert with your band.", "data_idx": 2424, "number": 0, "label": "blues"} +{"file_name": "train_04589.png", "caption": "An acoustic drum is playing a funky groove with a crash hit while an e-bass with an effect on it is playing a melody along with an e-piano playing the same. Both are playing in the mid -range. This song may be playing practice for a concert with your band.", "data_idx": 2424, "number": 1, "label": "blues"} +{"file_name": "train_04590.png", "caption": "An acoustic drum is playing a funky groove with a crash hit while an e-bass with an effect on it is playing a melody along with an e-piano playing the same. Both are playing in the mid -range. This song may be playing practice for a concert with your band.", "data_idx": 2424, "number": 2, "label": "blues"} +{"file_name": "train_04591.png", "caption": "An acoustic drum is playing a funky groove with a crash hit while an e-bass with an effect on it is playing a melody along with an e-piano playing the same. Both are playing in the mid -range. This song may be playing practice for a concert with your band.", "data_idx": 2424, "number": 3, "label": "blues"} +{"file_name": "train_04592.png", "caption": "This is a musical piece. There is a story-telling mood in this piece. The female vocalist is singing about her troubles in a complaining manner. There are many instruments in the melodic background such as piano, strings, flute and upright bass. The atmosphere of the piece is easygoing and comedic.", "data_idx": 2426, "number": 0, "label": "reggae"} +{"file_name": "train_04593.png", "caption": "This is a musical piece. There is a story-telling mood in this piece. The female vocalist is singing about her troubles in a complaining manner. There are many instruments in the melodic background such as piano, strings, flute and upright bass. The atmosphere of the piece is easygoing and comedic.", "data_idx": 2426, "number": 1, "label": "reggae"} +{"file_name": "train_04594.png", "caption": "This is a musical piece. There is a story-telling mood in this piece. The female vocalist is singing about her troubles in a complaining manner. There are many instruments in the melodic background such as piano, strings, flute and upright bass. The atmosphere of the piece is easygoing and comedic.", "data_idx": 2426, "number": 2, "label": "reggae"} +{"file_name": "train_04595.png", "caption": "This is a musical piece. There is a story-telling mood in this piece. The female vocalist is singing about her troubles in a complaining manner. There are many instruments in the melodic background such as piano, strings, flute and upright bass. The atmosphere of the piece is easygoing and comedic.", "data_idx": 2426, "number": 3, "label": "reggae"} +{"file_name": "train_04596.png", "caption": "The Funk song features a flat male vocal singing over widely spread, funky electric guitar chords, groovy bass guitar and energetic drums. It gives off happy and fun vibes, as it is probably very good for dancing with your friends.", "data_idx": 2427, "number": 0, "label": "reggae"} +{"file_name": "train_04597.png", "caption": "The Funk song features a flat male vocal singing over widely spread, funky electric guitar chords, groovy bass guitar and energetic drums. It gives off happy and fun vibes, as it is probably very good for dancing with your friends.", "data_idx": 2427, "number": 1, "label": "reggae"} +{"file_name": "train_04598.png", "caption": "The Funk song features a flat male vocal singing over widely spread, funky electric guitar chords, groovy bass guitar and energetic drums. It gives off happy and fun vibes, as it is probably very good for dancing with your friends.", "data_idx": 2427, "number": 2, "label": "reggae"} +{"file_name": "train_04599.png", "caption": "The Funk song features a flat male vocal singing over widely spread, funky electric guitar chords, groovy bass guitar and energetic drums. It gives off happy and fun vibes, as it is probably very good for dancing with your friends.", "data_idx": 2427, "number": 3, "label": "reggae"} +{"file_name": "train_04600.png", "caption": "The music features a female voice quietly singing a melody. A harp is accompanying the singer. Violins can be heard fading out from the beginning of the music excerpt. In the background one can hear the wind blowing softly. Towards the ending of the music excerpt a low pitch percussive sound can be heard.", "data_idx": 2428, "number": 0, "label": "blues"} +{"file_name": "train_04601.png", "caption": "The music features a female voice quietly singing a melody. A harp is accompanying the singer. Violins can be heard fading out from the beginning of the music excerpt. In the background one can hear the wind blowing softly. Towards the ending of the music excerpt a low pitch percussive sound can be heard.", "data_idx": 2428, "number": 1, "label": "blues"} +{"file_name": "train_04602.png", "caption": "The music features a female voice quietly singing a melody. A harp is accompanying the singer. Violins can be heard fading out from the beginning of the music excerpt. In the background one can hear the wind blowing softly. Towards the ending of the music excerpt a low pitch percussive sound can be heard.", "data_idx": 2428, "number": 2, "label": "blues"} +{"file_name": "train_04603.png", "caption": "The music features a female voice quietly singing a melody. A harp is accompanying the singer. Violins can be heard fading out from the beginning of the music excerpt. In the background one can hear the wind blowing softly. Towards the ending of the music excerpt a low pitch percussive sound can be heard.", "data_idx": 2428, "number": 3, "label": "blues"} +{"file_name": "train_04604.png", "caption": "The low quality recording features a digital drum machine playing tinny syncopated percussion, shimmering hi hats, soft crash cymbals, punchy kick and snare hits. It sounds energetic, groovy and the rhythm of the hi hats is being modulated in the second half of the loop.", "data_idx": 2431, "number": 0, "label": "hiphop"} +{"file_name": "train_04605.png", "caption": "The low quality recording features a digital drum machine playing tinny syncopated percussion, shimmering hi hats, soft crash cymbals, punchy kick and snare hits. It sounds energetic, groovy and the rhythm of the hi hats is being modulated in the second half of the loop.", "data_idx": 2431, "number": 1, "label": "hiphop"} +{"file_name": "train_04606.png", "caption": "The low quality recording features a digital drum machine playing tinny syncopated percussion, shimmering hi hats, soft crash cymbals, punchy kick and snare hits. It sounds energetic, groovy and the rhythm of the hi hats is being modulated in the second half of the loop.", "data_idx": 2431, "number": 2, "label": "hiphop"} +{"file_name": "train_04607.png", "caption": "The low quality recording features a digital drum machine playing tinny syncopated percussion, shimmering hi hats, soft crash cymbals, punchy kick and snare hits. It sounds energetic, groovy and the rhythm of the hi hats is being modulated in the second half of the loop.", "data_idx": 2431, "number": 3, "label": "hiphop"} +{"file_name": "train_04608.png", "caption": "This funk rock song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. A tambourine, snare and kick are played simultaneously on every count. The tambourine plays on the eighth note. This song is common time. A repetitive piano melody is played in the background. The bass plays the root notes with fills. A whistling sound is played in the gap between lines. At the beginning and toward the middle of the song, the sound of strings is heard playing a short lick. This song can be played in a spy romance movie.", "data_idx": 2432, "number": 0, "label": "disco"} +{"file_name": "train_04609.png", "caption": "This funk rock song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. A tambourine, snare and kick are played simultaneously on every count. The tambourine plays on the eighth note. This song is common time. A repetitive piano melody is played in the background. The bass plays the root notes with fills. A whistling sound is played in the gap between lines. At the beginning and toward the middle of the song, the sound of strings is heard playing a short lick. This song can be played in a spy romance movie.", "data_idx": 2432, "number": 1, "label": "disco"} +{"file_name": "train_04610.png", "caption": "The low quality recording features a groovy bass guitar, punchy \"4 on the floor\" kick pattern and tinny percussion. In the second half of the loop the music cuts out and there is a short silence, after which comes the wide, muffled sound effects. At the very end, there is a slow riser, bringing the energy up.", "data_idx": 2434, "number": 0, "label": "hiphop"} +{"file_name": "train_04611.png", "caption": "The low quality recording features a groovy bass guitar, punchy \"4 on the floor\" kick pattern and tinny percussion. In the second half of the loop the music cuts out and there is a short silence, after which comes the wide, muffled sound effects. At the very end, there is a slow riser, bringing the energy up.", "data_idx": 2434, "number": 1, "label": "hiphop"} +{"file_name": "train_04612.png", "caption": "Fun, energetic music played back live in a large room. Boomy low fidelity sound. The music itself is rock n' roll from the 1950's featuring boogie woogie piano, loud drums and a charismatic male singer.", "data_idx": 2436, "number": 0, "label": "classical"} +{"file_name": "train_04613.png", "caption": "Fun, energetic music played back live in a large room. Boomy low fidelity sound. The music itself is rock n' roll from the 1950's featuring boogie woogie piano, loud drums and a charismatic male singer.", "data_idx": 2436, "number": 1, "label": "classical"} +{"file_name": "train_04614.png", "caption": "Fun, energetic music played back live in a large room. Boomy low fidelity sound. The music itself is rock n' roll from the 1950's featuring boogie woogie piano, loud drums and a charismatic male singer.", "data_idx": 2436, "number": 2, "label": "classical"} +{"file_name": "train_04615.png", "caption": "Fun, energetic music played back live in a large room. Boomy low fidelity sound. The music itself is rock n' roll from the 1950's featuring boogie woogie piano, loud drums and a charismatic male singer.", "data_idx": 2436, "number": 3, "label": "classical"} +{"file_name": "train_04616.png", "caption": "The low quality recording features a live performance of salsa music and it consists of flat male vocal talking over microphone, followed by groovy piano melody, some percussive elements, groovy bass and energetic crash cymbals. There are some loud crowd cheering noises and claps. It sounds exciting and energetic.", "data_idx": 2437, "number": 0, "label": "rock"} +{"file_name": "train_04617.png", "caption": "The low quality recording features a live performance of salsa music and it consists of flat male vocal talking over microphone, followed by groovy piano melody, some percussive elements, groovy bass and energetic crash cymbals. There are some loud crowd cheering noises and claps. It sounds exciting and energetic.", "data_idx": 2437, "number": 1, "label": "rock"} +{"file_name": "train_04618.png", "caption": "The low quality recording features a live performance of salsa music and it consists of flat male vocal talking over microphone, followed by groovy piano melody, some percussive elements, groovy bass and energetic crash cymbals. There are some loud crowd cheering noises and claps. It sounds exciting and energetic.", "data_idx": 2437, "number": 2, "label": "rock"} +{"file_name": "train_04619.png", "caption": "The low quality recording features a live performance of salsa music and it consists of flat male vocal talking over microphone, followed by groovy piano melody, some percussive elements, groovy bass and energetic crash cymbals. There are some loud crowd cheering noises and claps. It sounds exciting and energetic.", "data_idx": 2437, "number": 3, "label": "rock"} +{"file_name": "train_04620.png", "caption": "The song features a calm, gentle male vocalist. It feels like a soft pop ballad, with a slight rock influence. There's an electric guitar arpeggio, bongo drums, and a prominent bassline. The song feels like it would be suitable as a loving dedication to someone.", "data_idx": 2438, "number": 0, "label": "rock"} +{"file_name": "train_04621.png", "caption": "The song features a calm, gentle male vocalist. It feels like a soft pop ballad, with a slight rock influence. There's an electric guitar arpeggio, bongo drums, and a prominent bassline. The song feels like it would be suitable as a loving dedication to someone.", "data_idx": 2438, "number": 1, "label": "rock"} +{"file_name": "train_04622.png", "caption": "The song features a calm, gentle male vocalist. It feels like a soft pop ballad, with a slight rock influence. There's an electric guitar arpeggio, bongo drums, and a prominent bassline. The song feels like it would be suitable as a loving dedication to someone.", "data_idx": 2438, "number": 2, "label": "rock"} +{"file_name": "train_04623.png", "caption": "The song features a calm, gentle male vocalist. It feels like a soft pop ballad, with a slight rock influence. There's an electric guitar arpeggio, bongo drums, and a prominent bassline. The song feels like it would be suitable as a loving dedication to someone.", "data_idx": 2438, "number": 3, "label": "rock"} +{"file_name": "train_04624.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with guitar strumming rhythm, strong bass line, steady drumming rhythm, keyboard accompaniment and sound effects. The song is emotional and romantic. The song is a euro pop love song and has poor audio quality.", "data_idx": 2439, "number": 0, "label": "country"} +{"file_name": "train_04625.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with guitar strumming rhythm, strong bass line, steady drumming rhythm, keyboard accompaniment and sound effects. The song is emotional and romantic. The song is a euro pop love song and has poor audio quality.", "data_idx": 2439, "number": 1, "label": "country"} +{"file_name": "train_04626.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with guitar strumming rhythm, strong bass line, steady drumming rhythm, keyboard accompaniment and sound effects. The song is emotional and romantic. The song is a euro pop love song and has poor audio quality.", "data_idx": 2439, "number": 2, "label": "country"} +{"file_name": "train_04627.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with guitar strumming rhythm, strong bass line, steady drumming rhythm, keyboard accompaniment and sound effects. The song is emotional and romantic. The song is a euro pop love song and has poor audio quality.", "data_idx": 2439, "number": 3, "label": "country"} +{"file_name": "train_04628.png", "caption": "This is a quintessential indie garage rock band. The singer is calm and sings with a sort of haunting demeanor typical of this style. It's a live recording and the audio is of low quality. The singer goes off-pitch at one point.", "data_idx": 2440, "number": 0, "label": "disco"} +{"file_name": "train_04629.png", "caption": "This is a quintessential indie garage rock band. The singer is calm and sings with a sort of haunting demeanor typical of this style. It's a live recording and the audio is of low quality. The singer goes off-pitch at one point.", "data_idx": 2440, "number": 1, "label": "disco"} +{"file_name": "train_04630.png", "caption": "This is a quintessential indie garage rock band. The singer is calm and sings with a sort of haunting demeanor typical of this style. It's a live recording and the audio is of low quality. The singer goes off-pitch at one point.", "data_idx": 2440, "number": 2, "label": "disco"} +{"file_name": "train_04631.png", "caption": "This is a quintessential indie garage rock band. The singer is calm and sings with a sort of haunting demeanor typical of this style. It's a live recording and the audio is of low quality. The singer goes off-pitch at one point.", "data_idx": 2440, "number": 3, "label": "disco"} +{"file_name": "train_04632.png", "caption": "Someone is playing a slightly distorted e-guitar. A funky riff is being played and repeated. The audio-quality is not the best. This is an amateur recording.", "data_idx": 2446, "number": 0, "label": "classical"} +{"file_name": "train_04633.png", "caption": "Someone is playing a slightly distorted e-guitar. A funky riff is being played and repeated. The audio-quality is not the best. This is an amateur recording.", "data_idx": 2446, "number": 1, "label": "classical"} +{"file_name": "train_04634.png", "caption": "Someone is playing a slightly distorted e-guitar. A funky riff is being played and repeated. The audio-quality is not the best. This is an amateur recording.", "data_idx": 2446, "number": 2, "label": "classical"} +{"file_name": "train_04635.png", "caption": "Someone is playing a slightly distorted e-guitar. A funky riff is being played and repeated. The audio-quality is not the best. This is an amateur recording.", "data_idx": 2446, "number": 3, "label": "classical"} +{"file_name": "train_04636.png", "caption": "This audio clip features programmed percussion playing a trap beat. Hi-hats are played at a very fast tempo. The kick drum plays continuously in eighth notes. The sound of racing cars is the main point of focus in this clip. There are no voices. There are no other instruments and no melody.", "data_idx": 2447, "number": 0, "label": "hiphop"} +{"file_name": "train_04637.png", "caption": "This audio clip features programmed percussion playing a trap beat. Hi-hats are played at a very fast tempo. The kick drum plays continuously in eighth notes. The sound of racing cars is the main point of focus in this clip. There are no voices. There are no other instruments and no melody.", "data_idx": 2447, "number": 1, "label": "hiphop"} +{"file_name": "train_04638.png", "caption": "This audio clip features programmed percussion playing a trap beat. Hi-hats are played at a very fast tempo. The kick drum plays continuously in eighth notes. The sound of racing cars is the main point of focus in this clip. There are no voices. There are no other instruments and no melody.", "data_idx": 2447, "number": 2, "label": "hiphop"} +{"file_name": "train_04639.png", "caption": "This audio clip features programmed percussion playing a trap beat. Hi-hats are played at a very fast tempo. The kick drum plays continuously in eighth notes. The sound of racing cars is the main point of focus in this clip. There are no voices. There are no other instruments and no melody.", "data_idx": 2447, "number": 3, "label": "hiphop"} +{"file_name": "train_04640.png", "caption": "The excerpt features a song sounding from a speaker and being recorded with an amateur device like a phone. After a finger snap, the same song can be heard recorded in similar conditions but lower in volume.", "data_idx": 2448, "number": 0, "label": "hiphop"} +{"file_name": "train_04641.png", "caption": "The excerpt features a song sounding from a speaker and being recorded with an amateur device like a phone. After a finger snap, the same song can be heard recorded in similar conditions but lower in volume.", "data_idx": 2448, "number": 1, "label": "hiphop"} +{"file_name": "train_04642.png", "caption": "The excerpt features a song sounding from a speaker and being recorded with an amateur device like a phone. After a finger snap, the same song can be heard recorded in similar conditions but lower in volume.", "data_idx": 2448, "number": 2, "label": "hiphop"} +{"file_name": "train_04643.png", "caption": "The excerpt features a song sounding from a speaker and being recorded with an amateur device like a phone. After a finger snap, the same song can be heard recorded in similar conditions but lower in volume.", "data_idx": 2448, "number": 3, "label": "hiphop"} +{"file_name": "train_04644.png", "caption": "This slow rock song features a female voice singing the main melody. This is accompanied by a piano and no other instruments. The piano plays chords backing the voice. It fills in between lines. The mood of the song is relaxing. This song can be played at a coffee shop.", "data_idx": 2450, "number": 0, "label": "classical"} +{"file_name": "train_04645.png", "caption": "This slow rock song features a female voice singing the main melody. This is accompanied by a piano and no other instruments. The piano plays chords backing the voice. It fills in between lines. The mood of the song is relaxing. This song can be played at a coffee shop.", "data_idx": 2450, "number": 1, "label": "classical"} +{"file_name": "train_04646.png", "caption": "This slow rock song features a female voice singing the main melody. This is accompanied by a piano and no other instruments. The piano plays chords backing the voice. It fills in between lines. The mood of the song is relaxing. This song can be played at a coffee shop.", "data_idx": 2450, "number": 2, "label": "classical"} +{"file_name": "train_04647.png", "caption": "This slow rock song features a female voice singing the main melody. This is accompanied by a piano and no other instruments. The piano plays chords backing the voice. It fills in between lines. The mood of the song is relaxing. This song can be played at a coffee shop.", "data_idx": 2450, "number": 3, "label": "classical"} +{"file_name": "train_04648.png", "caption": "The Soul Instrumental features an addictive marimba melody, shimmering shakers, punchy kick hits, syncopated snare and tinny metallic percussive elements. It sounds narrow because it is recorded with one mono room microphone and therefore it is a low quality recording.", "data_idx": 2451, "number": 0, "label": "rock"} +{"file_name": "train_04649.png", "caption": "The Soul Instrumental features an addictive marimba melody, shimmering shakers, punchy kick hits, syncopated snare and tinny metallic percussive elements. It sounds narrow because it is recorded with one mono room microphone and therefore it is a low quality recording.", "data_idx": 2451, "number": 1, "label": "rock"} +{"file_name": "train_04650.png", "caption": "The Soul Instrumental features an addictive marimba melody, shimmering shakers, punchy kick hits, syncopated snare and tinny metallic percussive elements. It sounds narrow because it is recorded with one mono room microphone and therefore it is a low quality recording.", "data_idx": 2451, "number": 2, "label": "rock"} +{"file_name": "train_04651.png", "caption": "The Soul Instrumental features an addictive marimba melody, shimmering shakers, punchy kick hits, syncopated snare and tinny metallic percussive elements. It sounds narrow because it is recorded with one mono room microphone and therefore it is a low quality recording.", "data_idx": 2451, "number": 3, "label": "rock"} +{"file_name": "train_04652.png", "caption": "This song contains a piano-composition with a lot of reverb playing a relaxing melody while running a waterdrippling sample. This song may be playing at home for meditation or sleeping.", "data_idx": 2458, "number": 0, "label": "classical"} +{"file_name": "train_04653.png", "caption": "This song contains a piano-composition with a lot of reverb playing a relaxing melody while running a waterdrippling sample. This song may be playing at home for meditation or sleeping.", "data_idx": 2458, "number": 1, "label": "classical"} +{"file_name": "train_04654.png", "caption": "This song contains a piano-composition with a lot of reverb playing a relaxing melody while running a waterdrippling sample. This song may be playing at home for meditation or sleeping.", "data_idx": 2458, "number": 2, "label": "classical"} +{"file_name": "train_04655.png", "caption": "This song contains a piano-composition with a lot of reverb playing a relaxing melody while running a waterdrippling sample. This song may be playing at home for meditation or sleeping.", "data_idx": 2458, "number": 3, "label": "classical"} +{"file_name": "train_04656.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with rhythmic bongo , atmospheric synthesiser, soft drumming with Cymbal rides, oud riff and keyboard harmony. The music is densely layered. It is soothing, engaging, compelling, mesmerising and building up gradually. This music is Contemporary Indian Pop.", "data_idx": 2461, "number": 0, "label": "blues"} +{"file_name": "train_04657.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with rhythmic bongo , atmospheric synthesiser, soft drumming with Cymbal rides, oud riff and keyboard harmony. The music is densely layered. It is soothing, engaging, compelling, mesmerising and building up gradually. This music is Contemporary Indian Pop.", "data_idx": 2461, "number": 1, "label": "blues"} +{"file_name": "train_04658.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with rhythmic bongo , atmospheric synthesiser, soft drumming with Cymbal rides, oud riff and keyboard harmony. The music is densely layered. It is soothing, engaging, compelling, mesmerising and building up gradually. This music is Contemporary Indian Pop.", "data_idx": 2461, "number": 2, "label": "blues"} +{"file_name": "train_04659.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with rhythmic bongo , atmospheric synthesiser, soft drumming with Cymbal rides, oud riff and keyboard harmony. The music is densely layered. It is soothing, engaging, compelling, mesmerising and building up gradually. This music is Contemporary Indian Pop.", "data_idx": 2461, "number": 3, "label": "blues"} +{"file_name": "train_04660.png", "caption": "Someone is playing an acoustic guitar flamenco style finger-picking while a female voice sings loud and emotionally. This song may be playing live in a restaurant. This is an amateur recording.", "data_idx": 2462, "number": 0, "label": "blues"} +{"file_name": "train_04661.png", "caption": "Someone is playing an acoustic guitar flamenco style finger-picking while a female voice sings loud and emotionally. This song may be playing live in a restaurant. This is an amateur recording.", "data_idx": 2462, "number": 1, "label": "blues"} +{"file_name": "train_04662.png", "caption": "Someone is playing an acoustic guitar flamenco style finger-picking while a female voice sings loud and emotionally. This song may be playing live in a restaurant. This is an amateur recording.", "data_idx": 2462, "number": 2, "label": "blues"} +{"file_name": "train_04663.png", "caption": "Someone is playing an acoustic guitar flamenco style finger-picking while a female voice sings loud and emotionally. This song may be playing live in a restaurant. This is an amateur recording.", "data_idx": 2462, "number": 3, "label": "blues"} +{"file_name": "train_04664.png", "caption": "This clip features a live recording of an ice-cream truck playing music. This music is high pitched. There is ambient noise that can be heard in this clip.", "data_idx": 2463, "number": 0, "label": "hiphop"} +{"file_name": "train_04665.png", "caption": "This clip features a live recording of an ice-cream truck playing music. This music is high pitched. There is ambient noise that can be heard in this clip.", "data_idx": 2463, "number": 1, "label": "hiphop"} +{"file_name": "train_04666.png", "caption": "A male singer sings this passionate melody with auto tuned vocals. The song is medium tempo with Indian percussion, dholak percussion, keyboard accompaniment and various percussion hits. The song is a Punjabi pop song with poor audio quality.", "data_idx": 2466, "number": 0, "label": "reggae"} +{"file_name": "train_04667.png", "caption": "A male singer sings this passionate melody with auto tuned vocals. The song is medium tempo with Indian percussion, dholak percussion, keyboard accompaniment and various percussion hits. The song is a Punjabi pop song with poor audio quality.", "data_idx": 2466, "number": 1, "label": "reggae"} +{"file_name": "train_04668.png", "caption": "A male singer sings this passionate melody with auto tuned vocals. The song is medium tempo with Indian percussion, dholak percussion, keyboard accompaniment and various percussion hits. The song is a Punjabi pop song with poor audio quality.", "data_idx": 2466, "number": 2, "label": "reggae"} +{"file_name": "train_04669.png", "caption": "A male singer sings this passionate melody with auto tuned vocals. The song is medium tempo with Indian percussion, dholak percussion, keyboard accompaniment and various percussion hits. The song is a Punjabi pop song with poor audio quality.", "data_idx": 2466, "number": 3, "label": "reggae"} +{"file_name": "train_04670.png", "caption": "The Video Game Sound recording features a lot of in-game sound effects of the main character and his surroundings, followed by background, jazzy music in the background. The music contains funky piano chord progression, groovy bass and uptempo drums. There are some man grunts sound effects, funny spring sound effects, some beeping sound effects and at the very end of the loop a gun reload sound effect.", "data_idx": 2467, "number": 0, "label": "hiphop"} +{"file_name": "train_04671.png", "caption": "The Video Game Sound recording features a lot of in-game sound effects of the main character and his surroundings, followed by background, jazzy music in the background. The music contains funky piano chord progression, groovy bass and uptempo drums. There are some man grunts sound effects, funny spring sound effects, some beeping sound effects and at the very end of the loop a gun reload sound effect.", "data_idx": 2467, "number": 1, "label": "hiphop"} +{"file_name": "train_04672.png", "caption": "The Video Game Sound recording features a lot of in-game sound effects of the main character and his surroundings, followed by background, jazzy music in the background. The music contains funky piano chord progression, groovy bass and uptempo drums. There are some man grunts sound effects, funny spring sound effects, some beeping sound effects and at the very end of the loop a gun reload sound effect.", "data_idx": 2467, "number": 2, "label": "hiphop"} +{"file_name": "train_04673.png", "caption": "The Video Game Sound recording features a lot of in-game sound effects of the main character and his surroundings, followed by background, jazzy music in the background. The music contains funky piano chord progression, groovy bass and uptempo drums. There are some man grunts sound effects, funny spring sound effects, some beeping sound effects and at the very end of the loop a gun reload sound effect.", "data_idx": 2467, "number": 3, "label": "hiphop"} +{"file_name": "train_04674.png", "caption": "This is a pop music ballad piece. There is a male vocal singing melodically in the lead with a female back vocal singing at a higher pitch in the background. The melodic background consists of the strings, the keyboard and the bass guitar. There is a 6/8 slow tempo acoustic drum beat in the rhythmic background. The piece has an emotional atmosphere. This piece could be used in a romantic setting such as a slow dance night event or a wedding. It could also be used in the soundtrack of a romance movie.", "data_idx": 2472, "number": 0, "label": "rock"} +{"file_name": "train_04675.png", "caption": "This is a pop music ballad piece. There is a male vocal singing melodically in the lead with a female back vocal singing at a higher pitch in the background. The melodic background consists of the strings, the keyboard and the bass guitar. There is a 6/8 slow tempo acoustic drum beat in the rhythmic background. The piece has an emotional atmosphere. This piece could be used in a romantic setting such as a slow dance night event or a wedding. It could also be used in the soundtrack of a romance movie.", "data_idx": 2472, "number": 1, "label": "rock"} +{"file_name": "train_04676.png", "caption": "This is a pop music ballad piece. There is a male vocal singing melodically in the lead with a female back vocal singing at a higher pitch in the background. The melodic background consists of the strings, the keyboard and the bass guitar. There is a 6/8 slow tempo acoustic drum beat in the rhythmic background. The piece has an emotional atmosphere. This piece could be used in a romantic setting such as a slow dance night event or a wedding. It could also be used in the soundtrack of a romance movie.", "data_idx": 2472, "number": 2, "label": "rock"} +{"file_name": "train_04677.png", "caption": "This is a pop music ballad piece. There is a male vocal singing melodically in the lead with a female back vocal singing at a higher pitch in the background. The melodic background consists of the strings, the keyboard and the bass guitar. There is a 6/8 slow tempo acoustic drum beat in the rhythmic background. The piece has an emotional atmosphere. This piece could be used in a romantic setting such as a slow dance night event or a wedding. It could also be used in the soundtrack of a romance movie.", "data_idx": 2472, "number": 3, "label": "rock"} +{"file_name": "train_04678.png", "caption": "Someone is playing a melody on a theremin along with acoustic drums holding a groove with 8th notes on the ride while an e-bass and an acoustic guitar are playing along. The acoustic guitar is being strummed. This song may be playing on a relaxed car ride.", "data_idx": 2473, "number": 0, "label": "rock"} +{"file_name": "train_04679.png", "caption": "Someone is playing a melody on a theremin along with acoustic drums holding a groove with 8th notes on the ride while an e-bass and an acoustic guitar are playing along. The acoustic guitar is being strummed. This song may be playing on a relaxed car ride.", "data_idx": 2473, "number": 1, "label": "rock"} +{"file_name": "train_04680.png", "caption": "Someone is playing a melody on a theremin along with acoustic drums holding a groove with 8th notes on the ride while an e-bass and an acoustic guitar are playing along. The acoustic guitar is being strummed. This song may be playing on a relaxed car ride.", "data_idx": 2473, "number": 2, "label": "rock"} +{"file_name": "train_04681.png", "caption": "Someone is playing a melody on a theremin along with acoustic drums holding a groove with 8th notes on the ride while an e-bass and an acoustic guitar are playing along. The acoustic guitar is being strummed. This song may be playing on a relaxed car ride.", "data_idx": 2473, "number": 3, "label": "rock"} +{"file_name": "train_04682.png", "caption": "The low quality recording features a live performance of a traditional song that consists of flat male vocal singing over wooden percussive elements, sustained strings melody and woodwinds melody. The recording is very noisy and buzzy.", "data_idx": 2474, "number": 0, "label": "classical"} +{"file_name": "train_04683.png", "caption": "The low quality recording features a live performance of a traditional song that consists of flat male vocal singing over wooden percussive elements, sustained strings melody and woodwinds melody. The recording is very noisy and buzzy.", "data_idx": 2474, "number": 1, "label": "classical"} +{"file_name": "train_04684.png", "caption": "The low quality recording features a live performance of a traditional song that consists of flat male vocal singing over wooden percussive elements, sustained strings melody and woodwinds melody. The recording is very noisy and buzzy.", "data_idx": 2474, "number": 2, "label": "classical"} +{"file_name": "train_04685.png", "caption": "The low quality recording features a live performance of a traditional song that consists of flat male vocal singing over wooden percussive elements, sustained strings melody and woodwinds melody. The recording is very noisy and buzzy.", "data_idx": 2474, "number": 3, "label": "classical"} +{"file_name": "train_04686.png", "caption": "This is an Indian classical instrumental. The tempo is fast with a vigorous tabla and Sitar introduction with temple bells, acoustic guitar,Manjira taal or small Indian hand cymbals and a traditional harmonium accompaniment. The simple instruments are layered perfectly and are in absolute sync to create this complex music. The music is fast and vigorous at the onset and settles down to a more mellow and easy rhythm. This music is a Hindustani Classical.", "data_idx": 2475, "number": 0, "label": "hiphop"} +{"file_name": "train_04687.png", "caption": "This is an Indian classical instrumental. The tempo is fast with a vigorous tabla and Sitar introduction with temple bells, acoustic guitar,Manjira taal or small Indian hand cymbals and a traditional harmonium accompaniment. The simple instruments are layered perfectly and are in absolute sync to create this complex music. The music is fast and vigorous at the onset and settles down to a more mellow and easy rhythm. This music is a Hindustani Classical.", "data_idx": 2475, "number": 1, "label": "hiphop"} +{"file_name": "train_04688.png", "caption": "The low quality recording features a hip hop song, that consists of flat male vocal rapping over widely spread shimmering bells, punchy kicks and claps, playing in the background. Right before the beat drops there is a short flat female vocal. There are some people talking to each other, while one of them is yelling. It sounds noisy and haunting and energetic thanks to the song.", "data_idx": 2479, "number": 0, "label": "hiphop"} +{"file_name": "train_04689.png", "caption": "The low quality recording features a hip hop song, that consists of flat male vocal rapping over widely spread shimmering bells, punchy kicks and claps, playing in the background. Right before the beat drops there is a short flat female vocal. There are some people talking to each other, while one of them is yelling. It sounds noisy and haunting and energetic thanks to the song.", "data_idx": 2479, "number": 1, "label": "hiphop"} +{"file_name": "train_04690.png", "caption": "The low quality recording features a hip hop song, that consists of flat male vocal rapping over widely spread shimmering bells, punchy kicks and claps, playing in the background. Right before the beat drops there is a short flat female vocal. There are some people talking to each other, while one of them is yelling. It sounds noisy and haunting and energetic thanks to the song.", "data_idx": 2479, "number": 2, "label": "hiphop"} +{"file_name": "train_04691.png", "caption": "The low quality recording features a hip hop song, that consists of flat male vocal rapping over widely spread shimmering bells, punchy kicks and claps, playing in the background. Right before the beat drops there is a short flat female vocal. There are some people talking to each other, while one of them is yelling. It sounds noisy and haunting and energetic thanks to the song.", "data_idx": 2479, "number": 3, "label": "hiphop"} +{"file_name": "train_04692.png", "caption": "The electro song features a speeding up, widely spread, synth lead, white noise riser and punchy snare going from left to the right channel in the stereo image. At the very beginning there is a short snippet of a bit more energetic part which contains \"4 on the floor\" kick pattern, synth pad chords and addictive synth lead. Overall it sounds energetic and exciting.", "data_idx": 2483, "number": 0, "label": "reggae"} +{"file_name": "train_04693.png", "caption": "The electro song features a speeding up, widely spread, synth lead, white noise riser and punchy snare going from left to the right channel in the stereo image. At the very beginning there is a short snippet of a bit more energetic part which contains \"4 on the floor\" kick pattern, synth pad chords and addictive synth lead. Overall it sounds energetic and exciting.", "data_idx": 2483, "number": 1, "label": "reggae"} +{"file_name": "train_04694.png", "caption": "The electro song features a speeding up, widely spread, synth lead, white noise riser and punchy snare going from left to the right channel in the stereo image. At the very beginning there is a short snippet of a bit more energetic part which contains \"4 on the floor\" kick pattern, synth pad chords and addictive synth lead. Overall it sounds energetic and exciting.", "data_idx": 2483, "number": 2, "label": "reggae"} +{"file_name": "train_04695.png", "caption": "The electro song features a speeding up, widely spread, synth lead, white noise riser and punchy snare going from left to the right channel in the stereo image. At the very beginning there is a short snippet of a bit more energetic part which contains \"4 on the floor\" kick pattern, synth pad chords and addictive synth lead. Overall it sounds energetic and exciting.", "data_idx": 2483, "number": 3, "label": "reggae"} +{"file_name": "train_04696.png", "caption": "This is an Indian folk music piece. There is a haunting female vocal in the lead. There is a group of strings which sound similar to Esraj being heard playing the main tune. In the rhythmic background, there are bell percussion that sound like manjira and membranous percussion that sound like tabla. The atmosphere is trippy. This piece could be used in the soundtrack of an exotic movie or could be sampled to be used in beat-making. It could also be playing in the background of an Indian cuisine restaurant.", "data_idx": 2487, "number": 0, "label": "rock"} +{"file_name": "train_04697.png", "caption": "This is an Indian folk music piece. There is a haunting female vocal in the lead. There is a group of strings which sound similar to Esraj being heard playing the main tune. In the rhythmic background, there are bell percussion that sound like manjira and membranous percussion that sound like tabla. The atmosphere is trippy. This piece could be used in the soundtrack of an exotic movie or could be sampled to be used in beat-making. It could also be playing in the background of an Indian cuisine restaurant.", "data_idx": 2487, "number": 1, "label": "rock"} +{"file_name": "train_04698.png", "caption": "This is an Indian folk music piece. There is a haunting female vocal in the lead. There is a group of strings which sound similar to Esraj being heard playing the main tune. In the rhythmic background, there are bell percussion that sound like manjira and membranous percussion that sound like tabla. The atmosphere is trippy. This piece could be used in the soundtrack of an exotic movie or could be sampled to be used in beat-making. It could also be playing in the background of an Indian cuisine restaurant.", "data_idx": 2487, "number": 2, "label": "rock"} +{"file_name": "train_04699.png", "caption": "This is an Indian folk music piece. There is a haunting female vocal in the lead. There is a group of strings which sound similar to Esraj being heard playing the main tune. In the rhythmic background, there are bell percussion that sound like manjira and membranous percussion that sound like tabla. The atmosphere is trippy. This piece could be used in the soundtrack of an exotic movie or could be sampled to be used in beat-making. It could also be playing in the background of an Indian cuisine restaurant.", "data_idx": 2487, "number": 3, "label": "rock"} +{"file_name": "train_04700.png", "caption": "This is an instrumental heavy metal piece. There is a bass guitar gently playing the melody with a clean sound. It is a melodic piece with a touch of melancholy. This piece can be used in the soundtrack of a drama movie or a TV series, especially during flashback scenes. It could also be used in video games during story exposition cutscenes.", "data_idx": 2488, "number": 0, "label": "blues"} +{"file_name": "train_04701.png", "caption": "This is an instrumental heavy metal piece. There is a bass guitar gently playing the melody with a clean sound. It is a melodic piece with a touch of melancholy. This piece can be used in the soundtrack of a drama movie or a TV series, especially during flashback scenes. It could also be used in video games during story exposition cutscenes.", "data_idx": 2488, "number": 1, "label": "blues"} +{"file_name": "train_04702.png", "caption": "This is an instrumental heavy metal piece. There is a bass guitar gently playing the melody with a clean sound. It is a melodic piece with a touch of melancholy. This piece can be used in the soundtrack of a drama movie or a TV series, especially during flashback scenes. It could also be used in video games during story exposition cutscenes.", "data_idx": 2488, "number": 2, "label": "blues"} +{"file_name": "train_04703.png", "caption": "This is an instrumental heavy metal piece. There is a bass guitar gently playing the melody with a clean sound. It is a melodic piece with a touch of melancholy. This piece can be used in the soundtrack of a drama movie or a TV series, especially during flashback scenes. It could also be used in video games during story exposition cutscenes.", "data_idx": 2488, "number": 3, "label": "blues"} +{"file_name": "train_04704.png", "caption": "The Electro song features a filter modulated synth melody, groovy synth bass, shimmering hi hats, punchy kick and snare hits, followed by short snare roll, haunting synth lead, low pitched male vocal introducing the section and high pitched riser that builds the energy up. It sounds energetic, upbeat and exciting - like something you would hear in clubs.", "data_idx": 2492, "number": 0, "label": "hiphop"} +{"file_name": "train_04705.png", "caption": "The Electro song features a filter modulated synth melody, groovy synth bass, shimmering hi hats, punchy kick and snare hits, followed by short snare roll, haunting synth lead, low pitched male vocal introducing the section and high pitched riser that builds the energy up. It sounds energetic, upbeat and exciting - like something you would hear in clubs.", "data_idx": 2492, "number": 1, "label": "hiphop"} +{"file_name": "train_04706.png", "caption": "The Electro song features a filter modulated synth melody, groovy synth bass, shimmering hi hats, punchy kick and snare hits, followed by short snare roll, haunting synth lead, low pitched male vocal introducing the section and high pitched riser that builds the energy up. It sounds energetic, upbeat and exciting - like something you would hear in clubs.", "data_idx": 2492, "number": 2, "label": "hiphop"} +{"file_name": "train_04707.png", "caption": "The Electro song features a filter modulated synth melody, groovy synth bass, shimmering hi hats, punchy kick and snare hits, followed by short snare roll, haunting synth lead, low pitched male vocal introducing the section and high pitched riser that builds the energy up. It sounds energetic, upbeat and exciting - like something you would hear in clubs.", "data_idx": 2492, "number": 3, "label": "hiphop"} +{"file_name": "train_04708.png", "caption": "This song is an instrumental. The tempo is medium with a melodious keyboard harmony, rhythmic guitar accompaniment, punchy drumming, subtle bass line, synth arrangement and tambourine beats. The music is soft, mellow, ambient, pleasant, uplifting, and mellifluous.", "data_idx": 2493, "number": 0, "label": "rock"} +{"file_name": "train_04709.png", "caption": "This song is an instrumental. The tempo is medium with a melodious keyboard harmony, rhythmic guitar accompaniment, punchy drumming, subtle bass line, synth arrangement and tambourine beats. The music is soft, mellow, ambient, pleasant, uplifting, and mellifluous.", "data_idx": 2493, "number": 1, "label": "rock"} +{"file_name": "train_04710.png", "caption": "This song is an instrumental. The tempo is medium with a melodious keyboard harmony, rhythmic guitar accompaniment, punchy drumming, subtle bass line, synth arrangement and tambourine beats. The music is soft, mellow, ambient, pleasant, uplifting, and mellifluous.", "data_idx": 2493, "number": 2, "label": "rock"} +{"file_name": "train_04711.png", "caption": "This song is an instrumental. The tempo is medium with a melodious keyboard harmony, rhythmic guitar accompaniment, punchy drumming, subtle bass line, synth arrangement and tambourine beats. The music is soft, mellow, ambient, pleasant, uplifting, and mellifluous.", "data_idx": 2493, "number": 3, "label": "rock"} +{"file_name": "train_04712.png", "caption": "The low quality recording features a live performance of a folk/country song that consists of flat female vocal singing over smooth double bass, groovy acoustic rhythm guitar, violins melody and groovy snare rhythm. It sounds a bit noisy and roomy, as it was probably recorded with a stereo microphone technique, but also energetic, uptempo and groovy.", "data_idx": 2494, "number": 0, "label": "rock"} +{"file_name": "train_04713.png", "caption": "The low quality recording features a live performance of a folk/country song that consists of flat female vocal singing over smooth double bass, groovy acoustic rhythm guitar, violins melody and groovy snare rhythm. It sounds a bit noisy and roomy, as it was probably recorded with a stereo microphone technique, but also energetic, uptempo and groovy.", "data_idx": 2494, "number": 1, "label": "rock"} +{"file_name": "train_04714.png", "caption": "The low quality recording features a live performance of a folk/country song that consists of flat female vocal singing over smooth double bass, groovy acoustic rhythm guitar, violins melody and groovy snare rhythm. It sounds a bit noisy and roomy, as it was probably recorded with a stereo microphone technique, but also energetic, uptempo and groovy.", "data_idx": 2494, "number": 2, "label": "rock"} +{"file_name": "train_04715.png", "caption": "The low quality recording features a live performance of a folk/country song that consists of flat female vocal singing over smooth double bass, groovy acoustic rhythm guitar, violins melody and groovy snare rhythm. It sounds a bit noisy and roomy, as it was probably recorded with a stereo microphone technique, but also energetic, uptempo and groovy.", "data_idx": 2494, "number": 3, "label": "rock"} +{"file_name": "train_04716.png", "caption": "The low quality recording features a live performance of a rock song that consists of passionate male vocal singing over electric guitar solo melody, energetic cymbals, muffled snare and kick hits and groovy bass guitar. There are also some crowd noises, singing along. It sounds energetic, emotional and addictive, thanks to that cadence.", "data_idx": 2498, "number": 0, "label": "metal"} +{"file_name": "train_04717.png", "caption": "The low quality recording features a live performance of a rock song that consists of passionate male vocal singing over electric guitar solo melody, energetic cymbals, muffled snare and kick hits and groovy bass guitar. There are also some crowd noises, singing along. It sounds energetic, emotional and addictive, thanks to that cadence.", "data_idx": 2498, "number": 1, "label": "metal"} +{"file_name": "train_04718.png", "caption": "The low quality recording features a live performance of a rock song that consists of passionate male vocal singing over electric guitar solo melody, energetic cymbals, muffled snare and kick hits and groovy bass guitar. There are also some crowd noises, singing along. It sounds energetic, emotional and addictive, thanks to that cadence.", "data_idx": 2498, "number": 2, "label": "metal"} +{"file_name": "train_04719.png", "caption": "The low quality recording features a live performance of a rock song that consists of passionate male vocal singing over electric guitar solo melody, energetic cymbals, muffled snare and kick hits and groovy bass guitar. There are also some crowd noises, singing along. It sounds energetic, emotional and addictive, thanks to that cadence.", "data_idx": 2498, "number": 3, "label": "metal"} +{"file_name": "train_04720.png", "caption": "The Folk song features muffled mixed vocals singing over, what it sounds like, orchestra in the background. The recording is so noisy and low quality that the listener can barely hear the actual song. It is mono and it sounds vintage and sentimental.", "data_idx": 2499, "number": 0, "label": "jazz"} +{"file_name": "train_04721.png", "caption": "The Folk song features muffled mixed vocals singing over, what it sounds like, orchestra in the background. The recording is so noisy and low quality that the listener can barely hear the actual song. It is mono and it sounds vintage and sentimental.", "data_idx": 2499, "number": 1, "label": "jazz"} +{"file_name": "train_04722.png", "caption": "The low quality recording features foley effects that include metallic, wooden and screeching sound effects. At the very end of the loop, there is an intense background orchestra music, representing some combat scene.", "data_idx": 2502, "number": 0, "label": "classical"} +{"file_name": "train_04723.png", "caption": "The low quality recording features foley effects that include metallic, wooden and screeching sound effects. At the very end of the loop, there is an intense background orchestra music, representing some combat scene.", "data_idx": 2502, "number": 1, "label": "classical"} +{"file_name": "train_04724.png", "caption": "The low quality recording features foley effects that include metallic, wooden and screeching sound effects. At the very end of the loop, there is an intense background orchestra music, representing some combat scene.", "data_idx": 2502, "number": 2, "label": "classical"} +{"file_name": "train_04725.png", "caption": "The low quality recording features foley effects that include metallic, wooden and screeching sound effects. At the very end of the loop, there is an intense background orchestra music, representing some combat scene.", "data_idx": 2502, "number": 3, "label": "classical"} +{"file_name": "train_04726.png", "caption": "Someone is playing maracas very skillfully while an acoustic guitar is supported with strumming chords that are constantly changing. This sounds like an amateur recording. This song may be playing at a local music store where people jam.", "data_idx": 2504, "number": 0, "label": "metal"} +{"file_name": "train_04727.png", "caption": "Someone is playing maracas very skillfully while an acoustic guitar is supported with strumming chords that are constantly changing. This sounds like an amateur recording. This song may be playing at a local music store where people jam.", "data_idx": 2504, "number": 1, "label": "metal"} +{"file_name": "train_04728.png", "caption": "Someone is playing maracas very skillfully while an acoustic guitar is supported with strumming chords that are constantly changing. This sounds like an amateur recording. This song may be playing at a local music store where people jam.", "data_idx": 2504, "number": 2, "label": "metal"} +{"file_name": "train_04729.png", "caption": "Someone is playing maracas very skillfully while an acoustic guitar is supported with strumming chords that are constantly changing. This sounds like an amateur recording. This song may be playing at a local music store where people jam.", "data_idx": 2504, "number": 3, "label": "metal"} +{"file_name": "train_04730.png", "caption": "Someone is playing a melody on a slide guitar over a backing track containing an uptight bass, acoustic guitar and mild acoustic drum groove. This song may be playing outside on a sunny day practicing guitar.", "data_idx": 2505, "number": 0, "label": "classical"} +{"file_name": "train_04731.png", "caption": "Someone is playing a melody on a slide guitar over a backing track containing an uptight bass, acoustic guitar and mild acoustic drum groove. This song may be playing outside on a sunny day practicing guitar.", "data_idx": 2505, "number": 1, "label": "classical"} +{"file_name": "train_04732.png", "caption": "Someone is playing a melody on a slide guitar over a backing track containing an uptight bass, acoustic guitar and mild acoustic drum groove. This song may be playing outside on a sunny day practicing guitar.", "data_idx": 2505, "number": 2, "label": "classical"} +{"file_name": "train_04733.png", "caption": "Someone is playing a melody on a slide guitar over a backing track containing an uptight bass, acoustic guitar and mild acoustic drum groove. This song may be playing outside on a sunny day practicing guitar.", "data_idx": 2505, "number": 3, "label": "classical"} +{"file_name": "train_04734.png", "caption": "This is the comedic mashup used as a video game theme. There is a synth and an electronic drum beat playing the theme of \"I'm a Barbie Girl\". There is a male vocal and a female vocal singing in an automated fashion in the English language but with a German accent. They are singing the same tune as \"I'm a Barbie Girl\" but with different lyrics. There is an 8-bit sound effect related to the game. There is a sarcastic atmosphere in the piece, but it is also a bit bizarre in nature.", "data_idx": 2508, "number": 0, "label": "disco"} +{"file_name": "train_04735.png", "caption": "This is the comedic mashup used as a video game theme. There is a synth and an electronic drum beat playing the theme of \"I'm a Barbie Girl\". There is a male vocal and a female vocal singing in an automated fashion in the English language but with a German accent. They are singing the same tune as \"I'm a Barbie Girl\" but with different lyrics. There is an 8-bit sound effect related to the game. There is a sarcastic atmosphere in the piece, but it is also a bit bizarre in nature.", "data_idx": 2508, "number": 1, "label": "disco"} +{"file_name": "train_04736.png", "caption": "This is the comedic mashup used as a video game theme. There is a synth and an electronic drum beat playing the theme of \"I'm a Barbie Girl\". There is a male vocal and a female vocal singing in an automated fashion in the English language but with a German accent. They are singing the same tune as \"I'm a Barbie Girl\" but with different lyrics. There is an 8-bit sound effect related to the game. There is a sarcastic atmosphere in the piece, but it is also a bit bizarre in nature.", "data_idx": 2508, "number": 2, "label": "disco"} +{"file_name": "train_04737.png", "caption": "This is the comedic mashup used as a video game theme. There is a synth and an electronic drum beat playing the theme of \"I'm a Barbie Girl\". There is a male vocal and a female vocal singing in an automated fashion in the English language but with a German accent. They are singing the same tune as \"I'm a Barbie Girl\" but with different lyrics. There is an 8-bit sound effect related to the game. There is a sarcastic atmosphere in the piece, but it is also a bit bizarre in nature.", "data_idx": 2508, "number": 3, "label": "disco"} +{"file_name": "train_04738.png", "caption": "This song is a low quality live recording of a performance. This features a male voice singing the main melody. At the end of the song, other voices sing with the main voice in harmony. This is accompanied by an electric guitar plucking chords. The double bass plays the root notes of the chords. The percussion plays the cymbal, increasing volume slowly, giving it a swell feel. The mood of the song seems romantic.", "data_idx": 2509, "number": 0, "label": "rock"} +{"file_name": "train_04739.png", "caption": "This song is a low quality live recording of a performance. This features a male voice singing the main melody. At the end of the song, other voices sing with the main voice in harmony. This is accompanied by an electric guitar plucking chords. The double bass plays the root notes of the chords. The percussion plays the cymbal, increasing volume slowly, giving it a swell feel. The mood of the song seems romantic.", "data_idx": 2509, "number": 1, "label": "rock"} +{"file_name": "train_04740.png", "caption": "This song is a low quality live recording of a performance. This features a male voice singing the main melody. At the end of the song, other voices sing with the main voice in harmony. This is accompanied by an electric guitar plucking chords. The double bass plays the root notes of the chords. The percussion plays the cymbal, increasing volume slowly, giving it a swell feel. The mood of the song seems romantic.", "data_idx": 2509, "number": 2, "label": "rock"} +{"file_name": "train_04741.png", "caption": "This song is a low quality live recording of a performance. This features a male voice singing the main melody. At the end of the song, other voices sing with the main voice in harmony. This is accompanied by an electric guitar plucking chords. The double bass plays the root notes of the chords. The percussion plays the cymbal, increasing volume slowly, giving it a swell feel. The mood of the song seems romantic.", "data_idx": 2509, "number": 3, "label": "rock"} +{"file_name": "train_04742.png", "caption": "This music is a latin dance piece. There is a trumpet playing a vibrant melody as a lead with latin percussive elements playing a syncopated beat in the background. Then a piano fill is played to connect the previous section to the next one followed with a voice announcement. This piece could be used for latin dance courses and dance themed events at bars.", "data_idx": 2510, "number": 0, "label": "disco"} +{"file_name": "train_04743.png", "caption": "This music is a latin dance piece. There is a trumpet playing a vibrant melody as a lead with latin percussive elements playing a syncopated beat in the background. Then a piano fill is played to connect the previous section to the next one followed with a voice announcement. This piece could be used for latin dance courses and dance themed events at bars.", "data_idx": 2510, "number": 1, "label": "disco"} +{"file_name": "train_04744.png", "caption": "This music is a latin dance piece. There is a trumpet playing a vibrant melody as a lead with latin percussive elements playing a syncopated beat in the background. Then a piano fill is played to connect the previous section to the next one followed with a voice announcement. This piece could be used for latin dance courses and dance themed events at bars.", "data_idx": 2510, "number": 2, "label": "disco"} +{"file_name": "train_04745.png", "caption": "This music is a latin dance piece. There is a trumpet playing a vibrant melody as a lead with latin percussive elements playing a syncopated beat in the background. Then a piano fill is played to connect the previous section to the next one followed with a voice announcement. This piece could be used for latin dance courses and dance themed events at bars.", "data_idx": 2510, "number": 3, "label": "disco"} +{"file_name": "train_04746.png", "caption": "This song is an instrumental. The tempo is slow with a keyboard harmony, steady bass lines, congas and bongo rhythm and sound of an instrument like a harp and string instrument like a ukelele or Hawaiian guitar.The music is soft, mellow, pleasant and simple with the sound of people talking in the background. This is a Regional/Folk Pop instrumental.", "data_idx": 2511, "number": 0, "label": "classical"} +{"file_name": "train_04747.png", "caption": "This song is an instrumental. The tempo is slow with a keyboard harmony, steady bass lines, congas and bongo rhythm and sound of an instrument like a harp and string instrument like a ukelele or Hawaiian guitar.The music is soft, mellow, pleasant and simple with the sound of people talking in the background. This is a Regional/Folk Pop instrumental.", "data_idx": 2511, "number": 1, "label": "classical"} +{"file_name": "train_04748.png", "caption": "The excerpt features a melody played in the background on what sounds to be an accordion. In the foreground one can notice various sounds from punching to glass being broken. The crowd is cheering. All this leads me to believe this isn't a song but instead someone playing a fighting game.", "data_idx": 2512, "number": 0, "label": "hiphop"} +{"file_name": "train_04749.png", "caption": "The excerpt features a melody played in the background on what sounds to be an accordion. In the foreground one can notice various sounds from punching to glass being broken. The crowd is cheering. All this leads me to believe this isn't a song but instead someone playing a fighting game.", "data_idx": 2512, "number": 1, "label": "hiphop"} +{"file_name": "train_04750.png", "caption": "The excerpt features a melody played in the background on what sounds to be an accordion. In the foreground one can notice various sounds from punching to glass being broken. The crowd is cheering. All this leads me to believe this isn't a song but instead someone playing a fighting game.", "data_idx": 2512, "number": 2, "label": "hiphop"} +{"file_name": "train_04751.png", "caption": "The excerpt features a melody played in the background on what sounds to be an accordion. In the foreground one can notice various sounds from punching to glass being broken. The crowd is cheering. All this leads me to believe this isn't a song but instead someone playing a fighting game.", "data_idx": 2512, "number": 3, "label": "hiphop"} +{"file_name": "train_04752.png", "caption": "The song is an instrumental piece with various tracks. The song is medium tempo with a piano accompaniment, groovy bass line , steady drumming track, a male sighing in pleasure and water filling a bottle tone. The song is a mix bag of music tracks for various scenes. The song is an instrumental track for a funny YouTube video.", "data_idx": 2513, "number": 0, "label": "reggae"} +{"file_name": "train_04753.png", "caption": "The song is an instrumental piece with various tracks. The song is medium tempo with a piano accompaniment, groovy bass line , steady drumming track, a male sighing in pleasure and water filling a bottle tone. The song is a mix bag of music tracks for various scenes. The song is an instrumental track for a funny YouTube video.", "data_idx": 2513, "number": 1, "label": "reggae"} +{"file_name": "train_04754.png", "caption": "The song is an instrumental piece with various tracks. The song is medium tempo with a piano accompaniment, groovy bass line , steady drumming track, a male sighing in pleasure and water filling a bottle tone. The song is a mix bag of music tracks for various scenes. The song is an instrumental track for a funny YouTube video.", "data_idx": 2513, "number": 2, "label": "reggae"} +{"file_name": "train_04755.png", "caption": "The song is an instrumental piece with various tracks. The song is medium tempo with a piano accompaniment, groovy bass line , steady drumming track, a male sighing in pleasure and water filling a bottle tone. The song is a mix bag of music tracks for various scenes. The song is an instrumental track for a funny YouTube video.", "data_idx": 2513, "number": 3, "label": "reggae"} +{"file_name": "train_04756.png", "caption": "Someone is strumming chords on an e-guitar. The e-guitar is slightly out of tune. This song may be playing at home trying out sounds on the e-guitar.", "data_idx": 2514, "number": 0, "label": "classical"} +{"file_name": "train_04757.png", "caption": "Someone is strumming chords on an e-guitar. The e-guitar is slightly out of tune. This song may be playing at home trying out sounds on the e-guitar.", "data_idx": 2514, "number": 1, "label": "classical"} +{"file_name": "train_04758.png", "caption": "Someone is strumming chords on an e-guitar. The e-guitar is slightly out of tune. This song may be playing at home trying out sounds on the e-guitar.", "data_idx": 2514, "number": 2, "label": "classical"} +{"file_name": "train_04759.png", "caption": "Someone is strumming chords on an e-guitar. The e-guitar is slightly out of tune. This song may be playing at home trying out sounds on the e-guitar.", "data_idx": 2514, "number": 3, "label": "classical"} +{"file_name": "train_04760.png", "caption": "The low quality recording features a tropical song playing over speaker and it consists of jazzy drums, muddy bass and exotic marimba melody. It is mono and noisy, while there are also some crowd mumbling and water splashing noises in the background. It sounds thin and loud, but tropical and exotic - like something you would listen to on a vacation.", "data_idx": 2516, "number": 0, "label": "classical"} +{"file_name": "train_04761.png", "caption": "The low quality recording features a tropical song playing over speaker and it consists of jazzy drums, muddy bass and exotic marimba melody. It is mono and noisy, while there are also some crowd mumbling and water splashing noises in the background. It sounds thin and loud, but tropical and exotic - like something you would listen to on a vacation.", "data_idx": 2516, "number": 1, "label": "classical"} +{"file_name": "train_04762.png", "caption": "The low quality recording features a tropical song playing over speaker and it consists of jazzy drums, muddy bass and exotic marimba melody. It is mono and noisy, while there are also some crowd mumbling and water splashing noises in the background. It sounds thin and loud, but tropical and exotic - like something you would listen to on a vacation.", "data_idx": 2516, "number": 2, "label": "classical"} +{"file_name": "train_04763.png", "caption": "The low quality recording features a tropical song playing over speaker and it consists of jazzy drums, muddy bass and exotic marimba melody. It is mono and noisy, while there are also some crowd mumbling and water splashing noises in the background. It sounds thin and loud, but tropical and exotic - like something you would listen to on a vacation.", "data_idx": 2516, "number": 3, "label": "classical"} +{"file_name": "train_04764.png", "caption": "The music features a female voice singing a long note melody for the first half of the excerpt. The drums play a steady rhythm and together with the bass guitar and tambourine drive the pulse of the music. A synth sound is playing a wobbly melody.", "data_idx": 2517, "number": 0, "label": "disco"} +{"file_name": "train_04765.png", "caption": "The music features a female voice singing a long note melody for the first half of the excerpt. The drums play a steady rhythm and together with the bass guitar and tambourine drive the pulse of the music. A synth sound is playing a wobbly melody.", "data_idx": 2517, "number": 1, "label": "disco"} +{"file_name": "train_04766.png", "caption": "The music features a female voice singing a long note melody for the first half of the excerpt. The drums play a steady rhythm and together with the bass guitar and tambourine drive the pulse of the music. A synth sound is playing a wobbly melody.", "data_idx": 2517, "number": 2, "label": "disco"} +{"file_name": "train_04767.png", "caption": "The music features a female voice singing a long note melody for the first half of the excerpt. The drums play a steady rhythm and together with the bass guitar and tambourine drive the pulse of the music. A synth sound is playing a wobbly melody.", "data_idx": 2517, "number": 3, "label": "disco"} +{"file_name": "train_04768.png", "caption": "This is an Armenian pop music ballad piece. The male vocalist is singing in a sentimental manner. The melody is being played by the piano and the strings section while the bass guitar plays a simple bass line composed of root notes. The rhythmic background is provided by a 6/8 slow tempo acoustic drum beat. The atmosphere is romantic. This piece would fit perfectly in an Armenian wedding. It could also be included in the soundtrack of a romance movie that takes place in Armenia.", "data_idx": 2518, "number": 0, "label": "country"} +{"file_name": "train_04769.png", "caption": "This is an Armenian pop music ballad piece. The male vocalist is singing in a sentimental manner. The melody is being played by the piano and the strings section while the bass guitar plays a simple bass line composed of root notes. The rhythmic background is provided by a 6/8 slow tempo acoustic drum beat. The atmosphere is romantic. This piece would fit perfectly in an Armenian wedding. It could also be included in the soundtrack of a romance movie that takes place in Armenia.", "data_idx": 2518, "number": 1, "label": "country"} +{"file_name": "train_04770.png", "caption": "This is an Armenian pop music ballad piece. The male vocalist is singing in a sentimental manner. The melody is being played by the piano and the strings section while the bass guitar plays a simple bass line composed of root notes. The rhythmic background is provided by a 6/8 slow tempo acoustic drum beat. The atmosphere is romantic. This piece would fit perfectly in an Armenian wedding. It could also be included in the soundtrack of a romance movie that takes place in Armenia.", "data_idx": 2518, "number": 2, "label": "country"} +{"file_name": "train_04771.png", "caption": "This is an Armenian pop music ballad piece. The male vocalist is singing in a sentimental manner. The melody is being played by the piano and the strings section while the bass guitar plays a simple bass line composed of root notes. The rhythmic background is provided by a 6/8 slow tempo acoustic drum beat. The atmosphere is romantic. This piece would fit perfectly in an Armenian wedding. It could also be included in the soundtrack of a romance movie that takes place in Armenia.", "data_idx": 2518, "number": 3, "label": "country"} +{"file_name": "train_04772.png", "caption": "This song is an instrumental. The tempo is slow with melodic violin, punchy bass lines, slick drumming, cymbal ride,vibrant trumpet, table turner and sounds in the background like thudding, clashing, glass shattering and crashing . It is soft, mellow, soothing and ambient.This music is contemporary Soul.", "data_idx": 2519, "number": 0, "label": "disco"} +{"file_name": "train_04773.png", "caption": "This song is an instrumental. The tempo is slow with melodic violin, punchy bass lines, slick drumming, cymbal ride,vibrant trumpet, table turner and sounds in the background like thudding, clashing, glass shattering and crashing . It is soft, mellow, soothing and ambient.This music is contemporary Soul.", "data_idx": 2519, "number": 1, "label": "disco"} +{"file_name": "train_04774.png", "caption": "This song is an instrumental. The tempo is slow with melodic violin, punchy bass lines, slick drumming, cymbal ride,vibrant trumpet, table turner and sounds in the background like thudding, clashing, glass shattering and crashing . It is soft, mellow, soothing and ambient.This music is contemporary Soul.", "data_idx": 2519, "number": 2, "label": "disco"} +{"file_name": "train_04775.png", "caption": "This song is an instrumental. The tempo is slow with melodic violin, punchy bass lines, slick drumming, cymbal ride,vibrant trumpet, table turner and sounds in the background like thudding, clashing, glass shattering and crashing . It is soft, mellow, soothing and ambient.This music is contemporary Soul.", "data_idx": 2519, "number": 3, "label": "disco"} +{"file_name": "train_04776.png", "caption": "The Hip Hop/Rap song features a flat male vocal with filtered, background male vocals, rapping over repetitive plucked synth melody and addictive synth lead melody, followed by distorted 808 bass, snaps and some offbeat hi hats. The whole sound is distorted and everything is in mono, which makes the song low quality.", "data_idx": 2520, "number": 0, "label": "hiphop"} +{"file_name": "train_04777.png", "caption": "The Hip Hop/Rap song features a flat male vocal with filtered, background male vocals, rapping over repetitive plucked synth melody and addictive synth lead melody, followed by distorted 808 bass, snaps and some offbeat hi hats. The whole sound is distorted and everything is in mono, which makes the song low quality.", "data_idx": 2520, "number": 1, "label": "hiphop"} +{"file_name": "train_04778.png", "caption": "The Hip Hop/Rap song features a flat male vocal with filtered, background male vocals, rapping over repetitive plucked synth melody and addictive synth lead melody, followed by distorted 808 bass, snaps and some offbeat hi hats. The whole sound is distorted and everything is in mono, which makes the song low quality.", "data_idx": 2520, "number": 2, "label": "hiphop"} +{"file_name": "train_04779.png", "caption": "The Hip Hop/Rap song features a flat male vocal with filtered, background male vocals, rapping over repetitive plucked synth melody and addictive synth lead melody, followed by distorted 808 bass, snaps and some offbeat hi hats. The whole sound is distorted and everything is in mono, which makes the song low quality.", "data_idx": 2520, "number": 3, "label": "hiphop"} +{"file_name": "train_04780.png", "caption": "This clipping is an instrumental with rapid synthesised chimes like sound and a boomy bass drop against white noise. The contrast of the psychedelic fast music against the boom drop gives it an eerie vibe. It is sinister, spine-tingling, scary, spooky and spine-chilling.", "data_idx": 2523, "number": 0, "label": "hiphop"} +{"file_name": "train_04781.png", "caption": "This clipping is an instrumental with rapid synthesised chimes like sound and a boomy bass drop against white noise. The contrast of the psychedelic fast music against the boom drop gives it an eerie vibe. It is sinister, spine-tingling, scary, spooky and spine-chilling.", "data_idx": 2523, "number": 1, "label": "hiphop"} +{"file_name": "train_04782.png", "caption": "This clipping is an instrumental with rapid synthesised chimes like sound and a boomy bass drop against white noise. The contrast of the psychedelic fast music against the boom drop gives it an eerie vibe. It is sinister, spine-tingling, scary, spooky and spine-chilling.", "data_idx": 2523, "number": 2, "label": "hiphop"} +{"file_name": "train_04783.png", "caption": "This clipping is an instrumental with rapid synthesised chimes like sound and a boomy bass drop against white noise. The contrast of the psychedelic fast music against the boom drop gives it an eerie vibe. It is sinister, spine-tingling, scary, spooky and spine-chilling.", "data_idx": 2523, "number": 3, "label": "hiphop"} +{"file_name": "train_04784.png", "caption": "The low quality recording features a female vocal singing with left-panned echoing effect, which creates this unbalanced stereo image. In the background, there is a harmonizing male vocal, followed by a rumbly sound effect located in the right channel of the stereo image. Sounds passionate and emotional.", "data_idx": 2524, "number": 0, "label": "classical"} +{"file_name": "train_04785.png", "caption": "The low quality recording features a female vocal singing with left-panned echoing effect, which creates this unbalanced stereo image. In the background, there is a harmonizing male vocal, followed by a rumbly sound effect located in the right channel of the stereo image. Sounds passionate and emotional.", "data_idx": 2524, "number": 1, "label": "classical"} +{"file_name": "train_04786.png", "caption": "The low quality recording features a female vocal singing with left-panned echoing effect, which creates this unbalanced stereo image. In the background, there is a harmonizing male vocal, followed by a rumbly sound effect located in the right channel of the stereo image. Sounds passionate and emotional.", "data_idx": 2524, "number": 2, "label": "classical"} +{"file_name": "train_04787.png", "caption": "The low quality recording features a female vocal singing with left-panned echoing effect, which creates this unbalanced stereo image. In the background, there is a harmonizing male vocal, followed by a rumbly sound effect located in the right channel of the stereo image. Sounds passionate and emotional.", "data_idx": 2524, "number": 3, "label": "classical"} +{"file_name": "train_04788.png", "caption": "A male vocalist sings this energetic song. The tempo is fast emphatic vocals, bright acoustic guitar accompaniment and clap beat. The song is youthful, energetic, popular, cheerful, engaging and happy. The music is minimal with ambient sounds of people clapping, cheering, singing along and keeping beat with claps. The audio is distorted and muffled as it is an amateur home recording.", "data_idx": 2528, "number": 0, "label": "disco"} +{"file_name": "train_04789.png", "caption": "A male vocalist sings this energetic song. The tempo is fast emphatic vocals, bright acoustic guitar accompaniment and clap beat. The song is youthful, energetic, popular, cheerful, engaging and happy. The music is minimal with ambient sounds of people clapping, cheering, singing along and keeping beat with claps. The audio is distorted and muffled as it is an amateur home recording.", "data_idx": 2528, "number": 1, "label": "disco"} +{"file_name": "train_04790.png", "caption": "A male vocalist sings this energetic song. The tempo is fast emphatic vocals, bright acoustic guitar accompaniment and clap beat. The song is youthful, energetic, popular, cheerful, engaging and happy. The music is minimal with ambient sounds of people clapping, cheering, singing along and keeping beat with claps. The audio is distorted and muffled as it is an amateur home recording.", "data_idx": 2528, "number": 2, "label": "disco"} +{"file_name": "train_04791.png", "caption": "A male vocalist sings this energetic song. The tempo is fast emphatic vocals, bright acoustic guitar accompaniment and clap beat. The song is youthful, energetic, popular, cheerful, engaging and happy. The music is minimal with ambient sounds of people clapping, cheering, singing along and keeping beat with claps. The audio is distorted and muffled as it is an amateur home recording.", "data_idx": 2528, "number": 3, "label": "disco"} +{"file_name": "train_04792.png", "caption": "The low quality recording features a live performance of the percussive & arpeggiated acoustic guitar melody. There are some crowd chattering noises in the background, by which we can definitely conclude that it is, in fact, a live performance. Sounds a bit boomy and the high frequencies of the guitar are lacking volume.", "data_idx": 2529, "number": 0, "label": "classical"} +{"file_name": "train_04793.png", "caption": "The low quality recording features a live performance of the percussive & arpeggiated acoustic guitar melody. There are some crowd chattering noises in the background, by which we can definitely conclude that it is, in fact, a live performance. Sounds a bit boomy and the high frequencies of the guitar are lacking volume.", "data_idx": 2529, "number": 1, "label": "classical"} +{"file_name": "train_04794.png", "caption": "The low quality recording features a live performance of the percussive & arpeggiated acoustic guitar melody. There are some crowd chattering noises in the background, by which we can definitely conclude that it is, in fact, a live performance. Sounds a bit boomy and the high frequencies of the guitar are lacking volume.", "data_idx": 2529, "number": 2, "label": "classical"} +{"file_name": "train_04795.png", "caption": "The low quality recording features a live performance of the percussive & arpeggiated acoustic guitar melody. There are some crowd chattering noises in the background, by which we can definitely conclude that it is, in fact, a live performance. Sounds a bit boomy and the high frequencies of the guitar are lacking volume.", "data_idx": 2529, "number": 3, "label": "classical"} +{"file_name": "train_04796.png", "caption": "This rock song features a guitar solo played on a guitar with heavy distortion. The solo starts off with high pitch notes being played. This is followed by a dive bomb using the whammy bar. The guitar then plays a descending lick followed by scratch harmonics and another descending run. This is accompanied by percussion playing a powerful rock beat in common time. The bass plays the root notes of the chords. Another distortion guitar plays power chords to back the lead guitar. There are no voices in this song. This song can be used in a car chase sequence in a movie.", "data_idx": 2532, "number": 0, "label": "metal"} +{"file_name": "train_04797.png", "caption": "This rock song features a guitar solo played on a guitar with heavy distortion. The solo starts off with high pitch notes being played. This is followed by a dive bomb using the whammy bar. The guitar then plays a descending lick followed by scratch harmonics and another descending run. This is accompanied by percussion playing a powerful rock beat in common time. The bass plays the root notes of the chords. Another distortion guitar plays power chords to back the lead guitar. There are no voices in this song. This song can be used in a car chase sequence in a movie.", "data_idx": 2532, "number": 1, "label": "metal"} +{"file_name": "train_04798.png", "caption": "This rock song features a guitar solo played on a guitar with heavy distortion. The solo starts off with high pitch notes being played. This is followed by a dive bomb using the whammy bar. The guitar then plays a descending lick followed by scratch harmonics and another descending run. This is accompanied by percussion playing a powerful rock beat in common time. The bass plays the root notes of the chords. Another distortion guitar plays power chords to back the lead guitar. There are no voices in this song. This song can be used in a car chase sequence in a movie.", "data_idx": 2532, "number": 2, "label": "metal"} +{"file_name": "train_04799.png", "caption": "This rock song features a guitar solo played on a guitar with heavy distortion. The solo starts off with high pitch notes being played. This is followed by a dive bomb using the whammy bar. The guitar then plays a descending lick followed by scratch harmonics and another descending run. This is accompanied by percussion playing a powerful rock beat in common time. The bass plays the root notes of the chords. Another distortion guitar plays power chords to back the lead guitar. There are no voices in this song. This song can be used in a car chase sequence in a movie.", "data_idx": 2532, "number": 3, "label": "metal"} +{"file_name": "train_04800.png", "caption": "This is an educational pop music piece. There is a female vocalist singing out-of-tune. The strings and the acoustic guitar are playing a simple tune while the rhythmic background is provided by a basic acoustic drum beat. The aura of the piece is generic and monotonous. The quality of the recording is subpar. It might be useful in the class setting.", "data_idx": 2534, "number": 0, "label": "pop"} +{"file_name": "train_04801.png", "caption": "This is an educational pop music piece. There is a female vocalist singing out-of-tune. The strings and the acoustic guitar are playing a simple tune while the rhythmic background is provided by a basic acoustic drum beat. The aura of the piece is generic and monotonous. The quality of the recording is subpar. It might be useful in the class setting.", "data_idx": 2534, "number": 1, "label": "pop"} +{"file_name": "train_04802.png", "caption": "This is an educational pop music piece. There is a female vocalist singing out-of-tune. The strings and the acoustic guitar are playing a simple tune while the rhythmic background is provided by a basic acoustic drum beat. The aura of the piece is generic and monotonous. The quality of the recording is subpar. It might be useful in the class setting.", "data_idx": 2534, "number": 2, "label": "pop"} +{"file_name": "train_04803.png", "caption": "This is an educational pop music piece. There is a female vocalist singing out-of-tune. The strings and the acoustic guitar are playing a simple tune while the rhythmic background is provided by a basic acoustic drum beat. The aura of the piece is generic and monotonous. The quality of the recording is subpar. It might be useful in the class setting.", "data_idx": 2534, "number": 3, "label": "pop"} +{"file_name": "train_04804.png", "caption": "Animated vocalists singing a choral harmony. The song is medium tempo with no instrumentation, but just voices singing in various harmonic ranges. The song is cheerful and cartoonish. The song is a parody of a modern pop song with western classical music influences.", "data_idx": 2537, "number": 0, "label": "jazz"} +{"file_name": "train_04805.png", "caption": "Animated vocalists singing a choral harmony. The song is medium tempo with no instrumentation, but just voices singing in various harmonic ranges. The song is cheerful and cartoonish. The song is a parody of a modern pop song with western classical music influences.", "data_idx": 2537, "number": 1, "label": "jazz"} +{"file_name": "train_04806.png", "caption": "The song is an instrumental. The tempo is medium with a techno drumming rhythm, various string instruments playing melodies, flute playing, Indian dhol percussion and a tambourine playing percussively. The song is romantic and has Indian classical music influences. The song has poor audio quality.", "data_idx": 2539, "number": 0, "label": "reggae"} +{"file_name": "train_04807.png", "caption": "The song is an instrumental. The tempo is medium with a techno drumming rhythm, various string instruments playing melodies, flute playing, Indian dhol percussion and a tambourine playing percussively. The song is romantic and has Indian classical music influences. The song has poor audio quality.", "data_idx": 2539, "number": 1, "label": "reggae"} +{"file_name": "train_04808.png", "caption": "The song is an instrumental. The tempo is medium with a techno drumming rhythm, various string instruments playing melodies, flute playing, Indian dhol percussion and a tambourine playing percussively. The song is romantic and has Indian classical music influences. The song has poor audio quality.", "data_idx": 2539, "number": 2, "label": "reggae"} +{"file_name": "train_04809.png", "caption": "The song is an instrumental. The tempo is medium with a techno drumming rhythm, various string instruments playing melodies, flute playing, Indian dhol percussion and a tambourine playing percussively. The song is romantic and has Indian classical music influences. The song has poor audio quality.", "data_idx": 2539, "number": 3, "label": "reggae"} +{"file_name": "train_04810.png", "caption": "The ambient song features crickets, frogs and other night insects and animals sound effects, widely spread throughout the stereo image, while there is a reversed dark, mellow piano melody playing. It sounds calming and relaxing.", "data_idx": 2540, "number": 0, "label": "rock"} +{"file_name": "train_04811.png", "caption": "The ambient song features crickets, frogs and other night insects and animals sound effects, widely spread throughout the stereo image, while there is a reversed dark, mellow piano melody playing. It sounds calming and relaxing.", "data_idx": 2540, "number": 1, "label": "rock"} +{"file_name": "train_04812.png", "caption": "The ambient song features crickets, frogs and other night insects and animals sound effects, widely spread throughout the stereo image, while there is a reversed dark, mellow piano melody playing. It sounds calming and relaxing.", "data_idx": 2540, "number": 2, "label": "rock"} +{"file_name": "train_04813.png", "caption": "The ambient song features crickets, frogs and other night insects and animals sound effects, widely spread throughout the stereo image, while there is a reversed dark, mellow piano melody playing. It sounds calming and relaxing.", "data_idx": 2540, "number": 3, "label": "rock"} +{"file_name": "train_04814.png", "caption": "This song contains a lot of atmospheric noise, sounds rising and falling in velocity and panning to the left and right side of the speakers with a lot of reverb. A high pitched pluck sound is playing a faster melody that is slightly panned to the right side while digital drums are only playing hihat and light snare sounds panned to both sides of the speakers and using a lot of delay and reverb. This song may be playing in a scary videogame.", "data_idx": 2543, "number": 0, "label": "classical"} +{"file_name": "train_04815.png", "caption": "This song contains a lot of atmospheric noise, sounds rising and falling in velocity and panning to the left and right side of the speakers with a lot of reverb. A high pitched pluck sound is playing a faster melody that is slightly panned to the right side while digital drums are only playing hihat and light snare sounds panned to both sides of the speakers and using a lot of delay and reverb. This song may be playing in a scary videogame.", "data_idx": 2543, "number": 1, "label": "classical"} +{"file_name": "train_04816.png", "caption": "This song contains a lot of atmospheric noise, sounds rising and falling in velocity and panning to the left and right side of the speakers with a lot of reverb. A high pitched pluck sound is playing a faster melody that is slightly panned to the right side while digital drums are only playing hihat and light snare sounds panned to both sides of the speakers and using a lot of delay and reverb. This song may be playing in a scary videogame.", "data_idx": 2543, "number": 2, "label": "classical"} +{"file_name": "train_04817.png", "caption": "This song contains a lot of atmospheric noise, sounds rising and falling in velocity and panning to the left and right side of the speakers with a lot of reverb. A high pitched pluck sound is playing a faster melody that is slightly panned to the right side while digital drums are only playing hihat and light snare sounds panned to both sides of the speakers and using a lot of delay and reverb. This song may be playing in a scary videogame.", "data_idx": 2543, "number": 3, "label": "classical"} +{"file_name": "train_04818.png", "caption": "This folk song features the main melody played on the clarinet. This is accompanied by percussion played by hand. The tambourine is playing on every count. The bass plays with a groovy feel. The bass plays notes continuously at every count. The mood of this song is upbeat and happy. There are no voices in this song. This song can be played at a celebration party.", "data_idx": 2544, "number": 0, "label": "disco"} +{"file_name": "train_04819.png", "caption": "This folk song features the main melody played on the clarinet. This is accompanied by percussion played by hand. The tambourine is playing on every count. The bass plays with a groovy feel. The bass plays notes continuously at every count. The mood of this song is upbeat and happy. There are no voices in this song. This song can be played at a celebration party.", "data_idx": 2544, "number": 1, "label": "disco"} +{"file_name": "train_04820.png", "caption": "This folk song features the main melody played on the clarinet. This is accompanied by percussion played by hand. The tambourine is playing on every count. The bass plays with a groovy feel. The bass plays notes continuously at every count. The mood of this song is upbeat and happy. There are no voices in this song. This song can be played at a celebration party.", "data_idx": 2544, "number": 2, "label": "disco"} +{"file_name": "train_04821.png", "caption": "This folk song features the main melody played on the clarinet. This is accompanied by percussion played by hand. The tambourine is playing on every count. The bass plays with a groovy feel. The bass plays notes continuously at every count. The mood of this song is upbeat and happy. There are no voices in this song. This song can be played at a celebration party.", "data_idx": 2544, "number": 3, "label": "disco"} +{"file_name": "train_04822.png", "caption": "The song is an instrumental. The song is medium tempo with a ukulele played with a fast strumming technique. The song is groovy and melancholic. The song audio quality is poor but is very relaxing to listen to.", "data_idx": 2545, "number": 0, "label": "jazz"} +{"file_name": "train_04823.png", "caption": "The song is an instrumental. The song is medium tempo with a ukulele played with a fast strumming technique. The song is groovy and melancholic. The song audio quality is poor but is very relaxing to listen to.", "data_idx": 2545, "number": 1, "label": "jazz"} +{"file_name": "train_04824.png", "caption": "The song is an instrumental. The song is medium tempo with a ukulele played with a fast strumming technique. The song is groovy and melancholic. The song audio quality is poor but is very relaxing to listen to.", "data_idx": 2545, "number": 2, "label": "jazz"} +{"file_name": "train_04825.png", "caption": "The song is an instrumental. The song is medium tempo with a ukulele played with a fast strumming technique. The song is groovy and melancholic. The song audio quality is poor but is very relaxing to listen to.", "data_idx": 2545, "number": 3, "label": "jazz"} +{"file_name": "train_04826.png", "caption": "someone is masterfully scratching over an instrumental containing percussive elements with strings/sounds and a bass note on the kick. This audio is an amateur recording.", "data_idx": 2547, "number": 0, "label": "disco"} +{"file_name": "train_04827.png", "caption": "someone is masterfully scratching over an instrumental containing percussive elements with strings/sounds and a bass note on the kick. This audio is an amateur recording.", "data_idx": 2547, "number": 1, "label": "disco"} +{"file_name": "train_04828.png", "caption": "someone is masterfully scratching over an instrumental containing percussive elements with strings/sounds and a bass note on the kick. This audio is an amateur recording.", "data_idx": 2547, "number": 2, "label": "disco"} +{"file_name": "train_04829.png", "caption": "someone is masterfully scratching over an instrumental containing percussive elements with strings/sounds and a bass note on the kick. This audio is an amateur recording.", "data_idx": 2547, "number": 3, "label": "disco"} +{"file_name": "train_04830.png", "caption": "This song has some experimental sounds. The string instrument sounds processed and slightly oriental. The synth plucks sound as running through different effects that are changing the bit rate and some filters. These elements are panned to the right and left and right side of the speakers playing different melodies. An acoustic drum is holding the whole construct together while an e-bass is playing his own run along with the drums. An e-guitar is playing long single chords. This song may be playing in an adventurous indie-videogame.", "data_idx": 2551, "number": 0, "label": "hiphop"} +{"file_name": "train_04831.png", "caption": "This song has some experimental sounds. The string instrument sounds processed and slightly oriental. The synth plucks sound as running through different effects that are changing the bit rate and some filters. These elements are panned to the right and left and right side of the speakers playing different melodies. An acoustic drum is holding the whole construct together while an e-bass is playing his own run along with the drums. An e-guitar is playing long single chords. This song may be playing in an adventurous indie-videogame.", "data_idx": 2551, "number": 1, "label": "hiphop"} +{"file_name": "train_04832.png", "caption": "This song has some experimental sounds. The string instrument sounds processed and slightly oriental. The synth plucks sound as running through different effects that are changing the bit rate and some filters. These elements are panned to the right and left and right side of the speakers playing different melodies. An acoustic drum is holding the whole construct together while an e-bass is playing his own run along with the drums. An e-guitar is playing long single chords. This song may be playing in an adventurous indie-videogame.", "data_idx": 2551, "number": 2, "label": "hiphop"} +{"file_name": "train_04833.png", "caption": "This song has some experimental sounds. The string instrument sounds processed and slightly oriental. The synth plucks sound as running through different effects that are changing the bit rate and some filters. These elements are panned to the right and left and right side of the speakers playing different melodies. An acoustic drum is holding the whole construct together while an e-bass is playing his own run along with the drums. An e-guitar is playing long single chords. This song may be playing in an adventurous indie-videogame.", "data_idx": 2551, "number": 3, "label": "hiphop"} +{"file_name": "train_04834.png", "caption": "This is a pop music piece meant for a wedding. There is a male vocalist singing melodically. An acoustic guitar is gently playing arpeggios. The atmosphere of the piece is mellow. This piece could be played at weddings or in the background of wedding-related content.", "data_idx": 2552, "number": 0, "label": "country"} +{"file_name": "train_04835.png", "caption": "This is a pop music piece meant for a wedding. There is a male vocalist singing melodically. An acoustic guitar is gently playing arpeggios. The atmosphere of the piece is mellow. This piece could be played at weddings or in the background of wedding-related content.", "data_idx": 2552, "number": 1, "label": "country"} +{"file_name": "train_04836.png", "caption": "This is a pop music piece meant for a wedding. There is a male vocalist singing melodically. An acoustic guitar is gently playing arpeggios. The atmosphere of the piece is mellow. This piece could be played at weddings or in the background of wedding-related content.", "data_idx": 2552, "number": 2, "label": "country"} +{"file_name": "train_04837.png", "caption": "This is a pop music piece meant for a wedding. There is a male vocalist singing melodically. An acoustic guitar is gently playing arpeggios. The atmosphere of the piece is mellow. This piece could be played at weddings or in the background of wedding-related content.", "data_idx": 2552, "number": 3, "label": "country"} +{"file_name": "train_04838.png", "caption": "A male opera singer sings this majestic operatic song with a philharmonic orchestra accompaniment, trumpets blaring, string section accompaniment and a strong rhythm section with loud timpani playing. The song is energetic and dramatic. The song is a movie soundtrack and western classic song with poor audio quality.", "data_idx": 2554, "number": 0, "label": "metal"} +{"file_name": "train_04839.png", "caption": "A male opera singer sings this majestic operatic song with a philharmonic orchestra accompaniment, trumpets blaring, string section accompaniment and a strong rhythm section with loud timpani playing. The song is energetic and dramatic. The song is a movie soundtrack and western classic song with poor audio quality.", "data_idx": 2554, "number": 1, "label": "metal"} +{"file_name": "train_04840.png", "caption": "A male opera singer sings this majestic operatic song with a philharmonic orchestra accompaniment, trumpets blaring, string section accompaniment and a strong rhythm section with loud timpani playing. The song is energetic and dramatic. The song is a movie soundtrack and western classic song with poor audio quality.", "data_idx": 2554, "number": 2, "label": "metal"} +{"file_name": "train_04841.png", "caption": "A male opera singer sings this majestic operatic song with a philharmonic orchestra accompaniment, trumpets blaring, string section accompaniment and a strong rhythm section with loud timpani playing. The song is energetic and dramatic. The song is a movie soundtrack and western classic song with poor audio quality.", "data_idx": 2554, "number": 3, "label": "metal"} +{"file_name": "train_04842.png", "caption": "This music is instrumental. The tempo is medium fast with a melodic keyboard harmony, punchy drumming, funky bass lines, and rhythmic acoustic guitar, whistle harmony and clapping and fingers snapping.The melody is simple, sunny, warm, energetic and youthful with a retro vibe. This music is classic Pop.", "data_idx": 2559, "number": 0, "label": "disco"} +{"file_name": "train_04843.png", "caption": "This music is instrumental. The tempo is medium fast with a melodic keyboard harmony, punchy drumming, funky bass lines, and rhythmic acoustic guitar, whistle harmony and clapping and fingers snapping.The melody is simple, sunny, warm, energetic and youthful with a retro vibe. This music is classic Pop.", "data_idx": 2559, "number": 1, "label": "disco"} +{"file_name": "train_04844.png", "caption": "This music is instrumental. The tempo is medium fast with a melodic keyboard harmony, punchy drumming, funky bass lines, and rhythmic acoustic guitar, whistle harmony and clapping and fingers snapping.The melody is simple, sunny, warm, energetic and youthful with a retro vibe. This music is classic Pop.", "data_idx": 2559, "number": 2, "label": "disco"} +{"file_name": "train_04845.png", "caption": "This music is instrumental. The tempo is medium fast with a melodic keyboard harmony, punchy drumming, funky bass lines, and rhythmic acoustic guitar, whistle harmony and clapping and fingers snapping.The melody is simple, sunny, warm, energetic and youthful with a retro vibe. This music is classic Pop.", "data_idx": 2559, "number": 3, "label": "disco"} +{"file_name": "train_04846.png", "caption": "This music is instrumental. The tempo is fast with the musician playing a high , vigorous, high pitched melody on a Glass harp or angelic organ. The music is sharp, unique, enchanting, and celestial with no accompaniment.", "data_idx": 2561, "number": 0, "label": "pop"} +{"file_name": "train_04847.png", "caption": "This music is instrumental. The tempo is fast with the musician playing a high , vigorous, high pitched melody on a Glass harp or angelic organ. The music is sharp, unique, enchanting, and celestial with no accompaniment.", "data_idx": 2561, "number": 1, "label": "pop"} +{"file_name": "train_04848.png", "caption": "This music is instrumental. The tempo is fast with the musician playing a high , vigorous, high pitched melody on a Glass harp or angelic organ. The music is sharp, unique, enchanting, and celestial with no accompaniment.", "data_idx": 2561, "number": 2, "label": "pop"} +{"file_name": "train_04849.png", "caption": "This music is instrumental. The tempo is fast with the musician playing a high , vigorous, high pitched melody on a Glass harp or angelic organ. The music is sharp, unique, enchanting, and celestial with no accompaniment.", "data_idx": 2561, "number": 3, "label": "pop"} +{"file_name": "train_04850.png", "caption": "This song has a typical reggaeton drumbeat that just sounds a little softer and not so much in the foreground. A synthetic bass is supporting the drums with a simple bassline. A processed guitar-like sound is panned to the left side of the speakers. Some gameboy coinlike sound is popping up here and there. A male voice is rapping while getting backing voices from another male voice. This song may be playing at a latin barber shop.", "data_idx": 2562, "number": 0, "label": "hiphop"} +{"file_name": "train_04851.png", "caption": "This song has a typical reggaeton drumbeat that just sounds a little softer and not so much in the foreground. A synthetic bass is supporting the drums with a simple bassline. A processed guitar-like sound is panned to the left side of the speakers. Some gameboy coinlike sound is popping up here and there. A male voice is rapping while getting backing voices from another male voice. This song may be playing at a latin barber shop.", "data_idx": 2562, "number": 1, "label": "hiphop"} +{"file_name": "train_04852.png", "caption": "This song has a typical reggaeton drumbeat that just sounds a little softer and not so much in the foreground. A synthetic bass is supporting the drums with a simple bassline. A processed guitar-like sound is panned to the left side of the speakers. Some gameboy coinlike sound is popping up here and there. A male voice is rapping while getting backing voices from another male voice. This song may be playing at a latin barber shop.", "data_idx": 2562, "number": 2, "label": "hiphop"} +{"file_name": "train_04853.png", "caption": "This song has a typical reggaeton drumbeat that just sounds a little softer and not so much in the foreground. A synthetic bass is supporting the drums with a simple bassline. A processed guitar-like sound is panned to the left side of the speakers. Some gameboy coinlike sound is popping up here and there. A male voice is rapping while getting backing voices from another male voice. This song may be playing at a latin barber shop.", "data_idx": 2562, "number": 3, "label": "hiphop"} +{"file_name": "train_04854.png", "caption": "The low quality recording features a R&B song that consists flat male vocal singing over layered repetitive plucked arpeggiated melody and synth arpeggiated melody, followed by smooth synth bass, bouncy snare, punchy kick, bright hi hats triplets and low toms. It sounds energetic and groovy, although it seems that the song is finishing, judging by the arrangement.", "data_idx": 2563, "number": 0, "label": "disco"} +{"file_name": "train_04855.png", "caption": "The low quality recording features a R&B song that consists flat male vocal singing over layered repetitive plucked arpeggiated melody and synth arpeggiated melody, followed by smooth synth bass, bouncy snare, punchy kick, bright hi hats triplets and low toms. It sounds energetic and groovy, although it seems that the song is finishing, judging by the arrangement.", "data_idx": 2563, "number": 1, "label": "disco"} +{"file_name": "train_04856.png", "caption": "The low quality recording features a R&B song that consists flat male vocal singing over layered repetitive plucked arpeggiated melody and synth arpeggiated melody, followed by smooth synth bass, bouncy snare, punchy kick, bright hi hats triplets and low toms. It sounds energetic and groovy, although it seems that the song is finishing, judging by the arrangement.", "data_idx": 2563, "number": 2, "label": "disco"} +{"file_name": "train_04857.png", "caption": "The low quality recording features a R&B song that consists flat male vocal singing over layered repetitive plucked arpeggiated melody and synth arpeggiated melody, followed by smooth synth bass, bouncy snare, punchy kick, bright hi hats triplets and low toms. It sounds energetic and groovy, although it seems that the song is finishing, judging by the arrangement.", "data_idx": 2563, "number": 3, "label": "disco"} +{"file_name": "train_04858.png", "caption": "This recording contains synth pads playing in the mid range, with added notes in the higher register playing a slow melody and also a padsound in the lower register serving as bass. The sound of waves and noises rising and falling like wind. Whales are singing at a higher pitch with a lot of reverb. This recording may be playing for a meditation session.", "data_idx": 2569, "number": 0, "label": "classical"} +{"file_name": "train_04859.png", "caption": "This recording contains synth pads playing in the mid range, with added notes in the higher register playing a slow melody and also a padsound in the lower register serving as bass. The sound of waves and noises rising and falling like wind. Whales are singing at a higher pitch with a lot of reverb. This recording may be playing for a meditation session.", "data_idx": 2569, "number": 1, "label": "classical"} +{"file_name": "train_04860.png", "caption": "This recording contains synth pads playing in the mid range, with added notes in the higher register playing a slow melody and also a padsound in the lower register serving as bass. The sound of waves and noises rising and falling like wind. Whales are singing at a higher pitch with a lot of reverb. This recording may be playing for a meditation session.", "data_idx": 2569, "number": 2, "label": "classical"} +{"file_name": "train_04861.png", "caption": "This recording contains synth pads playing in the mid range, with added notes in the higher register playing a slow melody and also a padsound in the lower register serving as bass. The sound of waves and noises rising and falling like wind. Whales are singing at a higher pitch with a lot of reverb. This recording may be playing for a meditation session.", "data_idx": 2569, "number": 3, "label": "classical"} +{"file_name": "train_04862.png", "caption": "This music is instrumental. The tempo is slow with the musician plucking a single string of a ukelele. This audio is of a Ukelele being tuned.", "data_idx": 2571, "number": 0, "label": "classical"} +{"file_name": "train_04863.png", "caption": "This music is instrumental. The tempo is slow with the musician plucking a single string of a ukelele. This audio is of a Ukelele being tuned.", "data_idx": 2571, "number": 1, "label": "classical"} +{"file_name": "train_04864.png", "caption": "This music is instrumental. The tempo is slow with the musician plucking a single string of a ukelele. This audio is of a Ukelele being tuned.", "data_idx": 2571, "number": 2, "label": "classical"} +{"file_name": "train_04865.png", "caption": "This music is instrumental. The tempo is slow with the musician plucking a single string of a ukelele. This audio is of a Ukelele being tuned.", "data_idx": 2571, "number": 3, "label": "classical"} +{"file_name": "train_04866.png", "caption": "This is an excerpt from a horror movie trailer. There are ominous sound effects related to the movie such as heartbeat, a man beating a woman and a terrified female voice sounding like she is dying. There is cinematic sounding synth and a piano hitting the same high pitch note repeatedly in the theme. The atmosphere is bleak. Sounds from this track could be used as samples in beat-making. They could also be used in violent video games.", "data_idx": 2576, "number": 0, "label": "hiphop"} +{"file_name": "train_04867.png", "caption": "This is an excerpt from a horror movie trailer. There are ominous sound effects related to the movie such as heartbeat, a man beating a woman and a terrified female voice sounding like she is dying. There is cinematic sounding synth and a piano hitting the same high pitch note repeatedly in the theme. The atmosphere is bleak. Sounds from this track could be used as samples in beat-making. They could also be used in violent video games.", "data_idx": 2576, "number": 1, "label": "hiphop"} +{"file_name": "train_04868.png", "caption": "This is an excerpt from a horror movie trailer. There are ominous sound effects related to the movie such as heartbeat, a man beating a woman and a terrified female voice sounding like she is dying. There is cinematic sounding synth and a piano hitting the same high pitch note repeatedly in the theme. The atmosphere is bleak. Sounds from this track could be used as samples in beat-making. They could also be used in violent video games.", "data_idx": 2576, "number": 2, "label": "hiphop"} +{"file_name": "train_04869.png", "caption": "This is an excerpt from a horror movie trailer. There are ominous sound effects related to the movie such as heartbeat, a man beating a woman and a terrified female voice sounding like she is dying. There is cinematic sounding synth and a piano hitting the same high pitch note repeatedly in the theme. The atmosphere is bleak. Sounds from this track could be used as samples in beat-making. They could also be used in violent video games.", "data_idx": 2576, "number": 3, "label": "hiphop"} +{"file_name": "train_04870.png", "caption": "This is the recording of a tuning video in the key of D sharp. There is an electric guitar playing the note on each string repeatedly. This piece could be used to lift samples to be used in a beat or in the making of a virtual guitar plug-in.", "data_idx": 2578, "number": 0, "label": "hiphop"} +{"file_name": "train_04871.png", "caption": "This is the recording of a tuning video in the key of D sharp. There is an electric guitar playing the note on each string repeatedly. This piece could be used to lift samples to be used in a beat or in the making of a virtual guitar plug-in.", "data_idx": 2578, "number": 1, "label": "hiphop"} +{"file_name": "train_04872.png", "caption": "A female vocalist sings this Spanish melody. The tempo is medium with keyboard harmony, tambourine beats, rhythmic congas and acoustic guitar. The song is upbeat, buoyant, groovy, lively, spirited,youthful and engaging. This is an outdoor live performance as there are ambient sounds like gentle wind, people talking, clapping and cheering. This song is a lively Spanish Pop song.", "data_idx": 2582, "number": 0, "label": "metal"} +{"file_name": "train_04873.png", "caption": "A female vocalist sings this Spanish melody. The tempo is medium with keyboard harmony, tambourine beats, rhythmic congas and acoustic guitar. The song is upbeat, buoyant, groovy, lively, spirited,youthful and engaging. This is an outdoor live performance as there are ambient sounds like gentle wind, people talking, clapping and cheering. This song is a lively Spanish Pop song.", "data_idx": 2582, "number": 1, "label": "metal"} +{"file_name": "train_04874.png", "caption": "A female vocalist sings this Spanish melody. The tempo is medium with keyboard harmony, tambourine beats, rhythmic congas and acoustic guitar. The song is upbeat, buoyant, groovy, lively, spirited,youthful and engaging. This is an outdoor live performance as there are ambient sounds like gentle wind, people talking, clapping and cheering. This song is a lively Spanish Pop song.", "data_idx": 2582, "number": 2, "label": "metal"} +{"file_name": "train_04875.png", "caption": "A female vocalist sings this Spanish melody. The tempo is medium with keyboard harmony, tambourine beats, rhythmic congas and acoustic guitar. The song is upbeat, buoyant, groovy, lively, spirited,youthful and engaging. This is an outdoor live performance as there are ambient sounds like gentle wind, people talking, clapping and cheering. This song is a lively Spanish Pop song.", "data_idx": 2582, "number": 3, "label": "metal"} +{"file_name": "train_04876.png", "caption": "In the foreground you can hear a saw wave pad playing along with a sub bass. This sound got some reverb and delay on it. The drums sound electronic and repeat a rhythm that leaves a lot of space for the bass sounds. This song may be played at a dance battle or an underground club.", "data_idx": 2586, "number": 0, "label": "hiphop"} +{"file_name": "train_04877.png", "caption": "In the foreground you can hear a saw wave pad playing along with a sub bass. This sound got some reverb and delay on it. The drums sound electronic and repeat a rhythm that leaves a lot of space for the bass sounds. This song may be played at a dance battle or an underground club.", "data_idx": 2586, "number": 1, "label": "hiphop"} +{"file_name": "train_04878.png", "caption": "In the foreground you can hear a saw wave pad playing along with a sub bass. This sound got some reverb and delay on it. The drums sound electronic and repeat a rhythm that leaves a lot of space for the bass sounds. This song may be played at a dance battle or an underground club.", "data_idx": 2586, "number": 2, "label": "hiphop"} +{"file_name": "train_04879.png", "caption": "In the foreground you can hear a saw wave pad playing along with a sub bass. This sound got some reverb and delay on it. The drums sound electronic and repeat a rhythm that leaves a lot of space for the bass sounds. This song may be played at a dance battle or an underground club.", "data_idx": 2586, "number": 3, "label": "hiphop"} +{"file_name": "train_04880.png", "caption": "Strings are playing a mid range drone sound along with a guitar playing a melody with reverb on it. A transverse flute is playing the main melody. This song may be playing in a lush adventure nature movie.", "data_idx": 2588, "number": 0, "label": "classical"} +{"file_name": "train_04881.png", "caption": "Strings are playing a mid range drone sound along with a guitar playing a melody with reverb on it. A transverse flute is playing the main melody. This song may be playing in a lush adventure nature movie.", "data_idx": 2588, "number": 1, "label": "classical"} +{"file_name": "train_04882.png", "caption": "Strings are playing a mid range drone sound along with a guitar playing a melody with reverb on it. A transverse flute is playing the main melody. This song may be playing in a lush adventure nature movie.", "data_idx": 2588, "number": 2, "label": "classical"} +{"file_name": "train_04883.png", "caption": "Strings are playing a mid range drone sound along with a guitar playing a melody with reverb on it. A transverse flute is playing the main melody. This song may be playing in a lush adventure nature movie.", "data_idx": 2588, "number": 3, "label": "classical"} +{"file_name": "train_04884.png", "caption": "This song contains e-guitars playing short repeating melodies. An acoustic drum is playing a slow drum and bass like groove with 8th notes on the ride. An e-piano is playing single high pitched notes on top. In the strings a string/pad section is playing long notes/chords in the mid range. This song may be playing at home on a loud speaker.", "data_idx": 2592, "number": 0, "label": "disco"} +{"file_name": "train_04885.png", "caption": "This song contains e-guitars playing short repeating melodies. An acoustic drum is playing a slow drum and bass like groove with 8th notes on the ride. An e-piano is playing single high pitched notes on top. In the strings a string/pad section is playing long notes/chords in the mid range. This song may be playing at home on a loud speaker.", "data_idx": 2592, "number": 1, "label": "disco"} +{"file_name": "train_04886.png", "caption": "This song contains e-guitars playing short repeating melodies. An acoustic drum is playing a slow drum and bass like groove with 8th notes on the ride. An e-piano is playing single high pitched notes on top. In the strings a string/pad section is playing long notes/chords in the mid range. This song may be playing at home on a loud speaker.", "data_idx": 2592, "number": 2, "label": "disco"} +{"file_name": "train_04887.png", "caption": "This song contains e-guitars playing short repeating melodies. An acoustic drum is playing a slow drum and bass like groove with 8th notes on the ride. An e-piano is playing single high pitched notes on top. In the strings a string/pad section is playing long notes/chords in the mid range. This song may be playing at home on a loud speaker.", "data_idx": 2592, "number": 3, "label": "disco"} +{"file_name": "train_04888.png", "caption": "Vintage south Asian Bollywood music featuring sitar and an orchestral string melody which uses a pentatonic scale. The song follows a waltz rhythm, using three beats to the measure.", "data_idx": 2593, "number": 0, "label": "hiphop"} +{"file_name": "train_04889.png", "caption": "Vintage south Asian Bollywood music featuring sitar and an orchestral string melody which uses a pentatonic scale. The song follows a waltz rhythm, using three beats to the measure.", "data_idx": 2593, "number": 1, "label": "hiphop"} +{"file_name": "train_04890.png", "caption": "The Classical music features a happy sounding piano chord progression and happy woodwind instrument, followed by rhythmic shoe tapping foley effect. you could tell that the music is played on speakers, while the foley artist is trying to sync the shoe tapping to the scene. Judging by the audio cutouts and mono sound, you could tell that it is an old, low quality, recording.", "data_idx": 2594, "number": 0, "label": "disco"} +{"file_name": "train_04891.png", "caption": "The Classical music features a happy sounding piano chord progression and happy woodwind instrument, followed by rhythmic shoe tapping foley effect. you could tell that the music is played on speakers, while the foley artist is trying to sync the shoe tapping to the scene. Judging by the audio cutouts and mono sound, you could tell that it is an old, low quality, recording.", "data_idx": 2594, "number": 1, "label": "disco"} +{"file_name": "train_04892.png", "caption": "The Classical music features a happy sounding piano chord progression and happy woodwind instrument, followed by rhythmic shoe tapping foley effect. you could tell that the music is played on speakers, while the foley artist is trying to sync the shoe tapping to the scene. Judging by the audio cutouts and mono sound, you could tell that it is an old, low quality, recording.", "data_idx": 2594, "number": 2, "label": "disco"} +{"file_name": "train_04893.png", "caption": "The Classical music features a happy sounding piano chord progression and happy woodwind instrument, followed by rhythmic shoe tapping foley effect. you could tell that the music is played on speakers, while the foley artist is trying to sync the shoe tapping to the scene. Judging by the audio cutouts and mono sound, you could tell that it is an old, low quality, recording.", "data_idx": 2594, "number": 3, "label": "disco"} +{"file_name": "train_04894.png", "caption": "a pop hip hop track in a boy band style with harmonized male vocals, skittering hi-hat pattern, and an 808 style bass. Would appeal to international teens.", "data_idx": 2595, "number": 0, "label": "disco"} +{"file_name": "train_04895.png", "caption": "a pop hip hop track in a boy band style with harmonized male vocals, skittering hi-hat pattern, and an 808 style bass. Would appeal to international teens.", "data_idx": 2595, "number": 1, "label": "disco"} +{"file_name": "train_04896.png", "caption": "This electropop song features a female voice singing a repetitive melody. The voice seems like it is coming from a distance. This is accompanied by programmed percussion playing a disco beat. The kick is played at every count. The bass plays a funky bass line using octaves and filler notes in between. There are synth layers that are played in this song. One synth layer plays a piano-sounding loop only with chords. Another synth layer plays an ascending and descending loop according to the chords being played. This song has a happy mood and can be played in a club.", "data_idx": 2596, "number": 0, "label": "hiphop"} +{"file_name": "train_04897.png", "caption": "This electropop song features a female voice singing a repetitive melody. The voice seems like it is coming from a distance. This is accompanied by programmed percussion playing a disco beat. The kick is played at every count. The bass plays a funky bass line using octaves and filler notes in between. There are synth layers that are played in this song. One synth layer plays a piano-sounding loop only with chords. Another synth layer plays an ascending and descending loop according to the chords being played. This song has a happy mood and can be played in a club.", "data_idx": 2596, "number": 1, "label": "hiphop"} +{"file_name": "train_04898.png", "caption": "This electropop song features a female voice singing a repetitive melody. The voice seems like it is coming from a distance. This is accompanied by programmed percussion playing a disco beat. The kick is played at every count. The bass plays a funky bass line using octaves and filler notes in between. There are synth layers that are played in this song. One synth layer plays a piano-sounding loop only with chords. Another synth layer plays an ascending and descending loop according to the chords being played. This song has a happy mood and can be played in a club.", "data_idx": 2596, "number": 2, "label": "hiphop"} +{"file_name": "train_04899.png", "caption": "This electropop song features a female voice singing a repetitive melody. The voice seems like it is coming from a distance. This is accompanied by programmed percussion playing a disco beat. The kick is played at every count. The bass plays a funky bass line using octaves and filler notes in between. There are synth layers that are played in this song. One synth layer plays a piano-sounding loop only with chords. Another synth layer plays an ascending and descending loop according to the chords being played. This song has a happy mood and can be played in a club.", "data_idx": 2596, "number": 3, "label": "hiphop"} diff --git a/data/train/metadata_0009.jsonl b/data/train/metadata_0009.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c3c512af68901a1fd574724bd606aa28eb48dc52 --- /dev/null +++ b/data/train/metadata_0009.jsonl @@ -0,0 +1,438 @@ +{"file_name": "train_04900.png", "caption": "This recording contains a short musical melody but can not be labeled a song. The recording is full of creepy low voices and sound effects. This may be playing on a mobile phone videogame.", "data_idx": 2600, "number": 0, "label": "hiphop"} +{"file_name": "train_04901.png", "caption": "This recording contains a short musical melody but can not be labeled a song. The recording is full of creepy low voices and sound effects. This may be playing on a mobile phone videogame.", "data_idx": 2600, "number": 1, "label": "hiphop"} +{"file_name": "train_04902.png", "caption": "A male vocalist sings this spirited hip-hop. The tempo is fast with synthesiser articulation, digital drum arrangements and vocal backup. The music is a youthful , enthusiastic, bouncy, punchy rhythmic patter with a dance groove. This song is contemporary Hip-Hop/ Rap.", "data_idx": 2601, "number": 0, "label": "hiphop"} +{"file_name": "train_04903.png", "caption": "A male vocalist sings this spirited hip-hop. The tempo is fast with synthesiser articulation, digital drum arrangements and vocal backup. The music is a youthful , enthusiastic, bouncy, punchy rhythmic patter with a dance groove. This song is contemporary Hip-Hop/ Rap.", "data_idx": 2601, "number": 1, "label": "hiphop"} +{"file_name": "train_04904.png", "caption": "A male vocalist sings this spirited hip-hop. The tempo is fast with synthesiser articulation, digital drum arrangements and vocal backup. The music is a youthful , enthusiastic, bouncy, punchy rhythmic patter with a dance groove. This song is contemporary Hip-Hop/ Rap.", "data_idx": 2601, "number": 2, "label": "hiphop"} +{"file_name": "train_04905.png", "caption": "A male vocalist sings this spirited hip-hop. The tempo is fast with synthesiser articulation, digital drum arrangements and vocal backup. The music is a youthful , enthusiastic, bouncy, punchy rhythmic patter with a dance groove. This song is contemporary Hip-Hop/ Rap.", "data_idx": 2601, "number": 3, "label": "hiphop"} +{"file_name": "train_04906.png", "caption": "This file contains a more complex composition full of percussive elements spread across the sides of the speakers. A violin is playing a melody along to some bell sounds and a keyboard/string sound playing a chord rhythmically. A male voice is singing long notes in a higher key. This song may be playing as a live concert.", "data_idx": 2602, "number": 0, "label": "country"} +{"file_name": "train_04907.png", "caption": "This file contains a more complex composition full of percussive elements spread across the sides of the speakers. A violin is playing a melody along to some bell sounds and a keyboard/string sound playing a chord rhythmically. A male voice is singing long notes in a higher key. This song may be playing as a live concert.", "data_idx": 2602, "number": 1, "label": "country"} +{"file_name": "train_04908.png", "caption": "This file contains a more complex composition full of percussive elements spread across the sides of the speakers. A violin is playing a melody along to some bell sounds and a keyboard/string sound playing a chord rhythmically. A male voice is singing long notes in a higher key. This song may be playing as a live concert.", "data_idx": 2602, "number": 2, "label": "country"} +{"file_name": "train_04909.png", "caption": "This file contains a more complex composition full of percussive elements spread across the sides of the speakers. A violin is playing a melody along to some bell sounds and a keyboard/string sound playing a chord rhythmically. A male voice is singing long notes in a higher key. This song may be playing as a live concert.", "data_idx": 2602, "number": 3, "label": "country"} +{"file_name": "train_04910.png", "caption": "A male vocalist sings this energetic song. The tempo is medium fast with enthusiastic vocal backup, bright electric guitar lead and harmony, infectious drumming, keyboard accompaniment and groovy bass lines. The backup is a spirited recurring vocal riff. The song sounds like an anthem or cheer chant to show support for a team.it is passionate, enthusiastic, energetic, spirited, youthful and fervent.", "data_idx": 2605, "number": 0, "label": "metal"} +{"file_name": "train_04911.png", "caption": "A male vocalist sings this energetic song. The tempo is medium fast with enthusiastic vocal backup, bright electric guitar lead and harmony, infectious drumming, keyboard accompaniment and groovy bass lines. The backup is a spirited recurring vocal riff. The song sounds like an anthem or cheer chant to show support for a team.it is passionate, enthusiastic, energetic, spirited, youthful and fervent.", "data_idx": 2605, "number": 1, "label": "metal"} +{"file_name": "train_04912.png", "caption": "A male vocalist sings this energetic song. The tempo is medium fast with enthusiastic vocal backup, bright electric guitar lead and harmony, infectious drumming, keyboard accompaniment and groovy bass lines. The backup is a spirited recurring vocal riff. The song sounds like an anthem or cheer chant to show support for a team.it is passionate, enthusiastic, energetic, spirited, youthful and fervent.", "data_idx": 2605, "number": 2, "label": "metal"} +{"file_name": "train_04913.png", "caption": "A male vocalist sings this energetic song. The tempo is medium fast with enthusiastic vocal backup, bright electric guitar lead and harmony, infectious drumming, keyboard accompaniment and groovy bass lines. The backup is a spirited recurring vocal riff. The song sounds like an anthem or cheer chant to show support for a team.it is passionate, enthusiastic, energetic, spirited, youthful and fervent.", "data_idx": 2605, "number": 3, "label": "metal"} +{"file_name": "train_04914.png", "caption": "The music features an ukulele playing a combination of melody and arpeggiated accompaniment. There are no other instruments, this is a solo interpretation.", "data_idx": 2608, "number": 0, "label": "classical"} +{"file_name": "train_04915.png", "caption": "The music features an ukulele playing a combination of melody and arpeggiated accompaniment. There are no other instruments, this is a solo interpretation.", "data_idx": 2608, "number": 1, "label": "classical"} +{"file_name": "train_04916.png", "caption": "The music features an ukulele playing a combination of melody and arpeggiated accompaniment. There are no other instruments, this is a solo interpretation.", "data_idx": 2608, "number": 2, "label": "classical"} +{"file_name": "train_04917.png", "caption": "The music features an ukulele playing a combination of melody and arpeggiated accompaniment. There are no other instruments, this is a solo interpretation.", "data_idx": 2608, "number": 3, "label": "classical"} +{"file_name": "train_04918.png", "caption": "The low quality recording features an orchestra music that contains haunting sizzling bells melody, low wooden percussions, sustained strings melody and sustained brass melody. It sounds suspenseful and intense, as background music for movies would sound.", "data_idx": 2611, "number": 0, "label": "hiphop"} +{"file_name": "train_04919.png", "caption": "The low quality recording features an orchestra music that contains haunting sizzling bells melody, low wooden percussions, sustained strings melody and sustained brass melody. It sounds suspenseful and intense, as background music for movies would sound.", "data_idx": 2611, "number": 1, "label": "hiphop"} +{"file_name": "train_04920.png", "caption": "This is an American folk music piece. There is a male vocalist singing in the folk style. The banjo is playing a cheerful melody at a steady tempo. The atmosphere of the piece is cozy and easygoing. This piece could be playing in the background at a roadside diner. It could also be included in the soundtrack of a movie or a TV show taking place in rural USA.", "data_idx": 2612, "number": 0, "label": "country"} +{"file_name": "train_04921.png", "caption": "This is an American folk music piece. There is a male vocalist singing in the folk style. The banjo is playing a cheerful melody at a steady tempo. The atmosphere of the piece is cozy and easygoing. This piece could be playing in the background at a roadside diner. It could also be included in the soundtrack of a movie or a TV show taking place in rural USA.", "data_idx": 2612, "number": 1, "label": "country"} +{"file_name": "train_04922.png", "caption": "This is an American folk music piece. There is a male vocalist singing in the folk style. The banjo is playing a cheerful melody at a steady tempo. The atmosphere of the piece is cozy and easygoing. This piece could be playing in the background at a roadside diner. It could also be included in the soundtrack of a movie or a TV show taking place in rural USA.", "data_idx": 2612, "number": 2, "label": "country"} +{"file_name": "train_04923.png", "caption": "This is an American folk music piece. There is a male vocalist singing in the folk style. The banjo is playing a cheerful melody at a steady tempo. The atmosphere of the piece is cozy and easygoing. This piece could be playing in the background at a roadside diner. It could also be included in the soundtrack of a movie or a TV show taking place in rural USA.", "data_idx": 2612, "number": 3, "label": "country"} +{"file_name": "train_04924.png", "caption": "A musician plays this classical instrumental. The tempo is medium with the musician playing a beautiful harmony using ragas with skill and dexterity with a tanpura accompaniment .The music is calming, complex, pleasant, classic and melodic.", "data_idx": 2613, "number": 0, "label": "classical"} +{"file_name": "train_04925.png", "caption": "A musician plays this classical instrumental. The tempo is medium with the musician playing a beautiful harmony using ragas with skill and dexterity with a tanpura accompaniment .The music is calming, complex, pleasant, classic and melodic.", "data_idx": 2613, "number": 1, "label": "classical"} +{"file_name": "train_04926.png", "caption": "A musician plays this classical instrumental. The tempo is medium with the musician playing a beautiful harmony using ragas with skill and dexterity with a tanpura accompaniment .The music is calming, complex, pleasant, classic and melodic.", "data_idx": 2613, "number": 2, "label": "classical"} +{"file_name": "train_04927.png", "caption": "A musician plays this classical instrumental. The tempo is medium with the musician playing a beautiful harmony using ragas with skill and dexterity with a tanpura accompaniment .The music is calming, complex, pleasant, classic and melodic.", "data_idx": 2613, "number": 3, "label": "classical"} +{"file_name": "train_04928.png", "caption": "This sound is a synth played through a delay and reverb effects unit. A seven note ascending pattern is played which echoes due to the delay. The reverb effect gives it depth. This song can be played in a video game at different levels. There are no other instruments in this music. There are no voices in this music.", "data_idx": 2614, "number": 0, "label": "classical"} +{"file_name": "train_04929.png", "caption": "This sound is a synth played through a delay and reverb effects unit. A seven note ascending pattern is played which echoes due to the delay. The reverb effect gives it depth. This song can be played in a video game at different levels. There are no other instruments in this music. There are no voices in this music.", "data_idx": 2614, "number": 1, "label": "classical"} +{"file_name": "train_04930.png", "caption": "This sound is a synth played through a delay and reverb effects unit. A seven note ascending pattern is played which echoes due to the delay. The reverb effect gives it depth. This song can be played in a video game at different levels. There are no other instruments in this music. There are no voices in this music.", "data_idx": 2614, "number": 2, "label": "classical"} +{"file_name": "train_04931.png", "caption": "This sound is a synth played through a delay and reverb effects unit. A seven note ascending pattern is played which echoes due to the delay. The reverb effect gives it depth. This song can be played in a video game at different levels. There are no other instruments in this music. There are no voices in this music.", "data_idx": 2614, "number": 3, "label": "classical"} +{"file_name": "train_04932.png", "caption": "This composition contains acoustic drums playing a complex groove on just the snare using brushes. The crowd in the background is cheering, whistling and clapping their hands. A bass, piano and horn section is playing a melody as a counter-beat along with trumpets playing along a modified melody in a higher register. Then saxophones are coming in playing their own countermelody. This song is highly complex and may be playing at a jazz festival.", "data_idx": 2617, "number": 0, "label": "metal"} +{"file_name": "train_04933.png", "caption": "This composition contains acoustic drums playing a complex groove on just the snare using brushes. The crowd in the background is cheering, whistling and clapping their hands. A bass, piano and horn section is playing a melody as a counter-beat along with trumpets playing along a modified melody in a higher register. Then saxophones are coming in playing their own countermelody. This song is highly complex and may be playing at a jazz festival.", "data_idx": 2617, "number": 1, "label": "metal"} +{"file_name": "train_04934.png", "caption": "This composition contains acoustic drums playing a complex groove on just the snare using brushes. The crowd in the background is cheering, whistling and clapping their hands. A bass, piano and horn section is playing a melody as a counter-beat along with trumpets playing along a modified melody in a higher register. Then saxophones are coming in playing their own countermelody. This song is highly complex and may be playing at a jazz festival.", "data_idx": 2617, "number": 2, "label": "metal"} +{"file_name": "train_04935.png", "caption": "This composition contains acoustic drums playing a complex groove on just the snare using brushes. The crowd in the background is cheering, whistling and clapping their hands. A bass, piano and horn section is playing a melody as a counter-beat along with trumpets playing along a modified melody in a higher register. Then saxophones are coming in playing their own countermelody. This song is highly complex and may be playing at a jazz festival.", "data_idx": 2617, "number": 3, "label": "metal"} +{"file_name": "train_04936.png", "caption": "This is the live performance of a country music piece. There is a female vocal and two male vocals taking turns and sometimes singing the words at the same time. The melody consists of an electric guitar, an acoustic guitar and a bass guitar while in the rhythmic background there is an acoustic sounding upbeat drum beat. The atmosphere is cozy. There is an easygoing aura to it. This piece could be used in the soundtrack of a movie or a TV show that takes place in rural USA.", "data_idx": 2619, "number": 0, "label": "pop"} +{"file_name": "train_04937.png", "caption": "This is the live performance of a country music piece. There is a female vocal and two male vocals taking turns and sometimes singing the words at the same time. The melody consists of an electric guitar, an acoustic guitar and a bass guitar while in the rhythmic background there is an acoustic sounding upbeat drum beat. The atmosphere is cozy. There is an easygoing aura to it. This piece could be used in the soundtrack of a movie or a TV show that takes place in rural USA.", "data_idx": 2619, "number": 1, "label": "pop"} +{"file_name": "train_04938.png", "caption": "The low quality recording features a dark moody piano melody and at the very end of the loop, a short snippet of muffled snare hit and flat male vocals. It sounds very noisy, as there are vinyl cracklings, but also warm, suspenseful, dark and dramatic - almost like a horror movie melody theme.", "data_idx": 2621, "number": 0, "label": "blues"} +{"file_name": "train_04939.png", "caption": "The low quality recording features a dark moody piano melody and at the very end of the loop, a short snippet of muffled snare hit and flat male vocals. It sounds very noisy, as there are vinyl cracklings, but also warm, suspenseful, dark and dramatic - almost like a horror movie melody theme.", "data_idx": 2621, "number": 1, "label": "blues"} +{"file_name": "train_04940.png", "caption": "The low quality recording features a dark moody piano melody and at the very end of the loop, a short snippet of muffled snare hit and flat male vocals. It sounds very noisy, as there are vinyl cracklings, but also warm, suspenseful, dark and dramatic - almost like a horror movie melody theme.", "data_idx": 2621, "number": 2, "label": "blues"} +{"file_name": "train_04941.png", "caption": "The low quality recording features a dark moody piano melody and at the very end of the loop, a short snippet of muffled snare hit and flat male vocals. It sounds very noisy, as there are vinyl cracklings, but also warm, suspenseful, dark and dramatic - almost like a horror movie melody theme.", "data_idx": 2621, "number": 3, "label": "blues"} +{"file_name": "train_04942.png", "caption": "The low quality recording features wide shimmering bells, some inhale sounds, muffled acoustic rhythm guitar chords and natural sound effects. It sounds happy and fun.", "data_idx": 2622, "number": 0, "label": "reggae"} +{"file_name": "train_04943.png", "caption": "The low quality recording features wide shimmering bells, some inhale sounds, muffled acoustic rhythm guitar chords and natural sound effects. It sounds happy and fun.", "data_idx": 2622, "number": 1, "label": "reggae"} +{"file_name": "train_04944.png", "caption": "The low quality recording features wide shimmering bells, some inhale sounds, muffled acoustic rhythm guitar chords and natural sound effects. It sounds happy and fun.", "data_idx": 2622, "number": 2, "label": "reggae"} +{"file_name": "train_04945.png", "caption": "The low quality recording features wide shimmering bells, some inhale sounds, muffled acoustic rhythm guitar chords and natural sound effects. It sounds happy and fun.", "data_idx": 2622, "number": 3, "label": "reggae"} +{"file_name": "train_04946.png", "caption": "This song is a spirited Latin instrumental. The song is fast tempo with distorted keyboard harmony, electric guitar and percussion with some vocalisation. The song quality is inferior but the vibe of the song is upbeat, peppy, happy, celebratory, energetic with the sound of chatter in the background. This song is Latin pop.", "data_idx": 2623, "number": 0, "label": "reggae"} +{"file_name": "train_04947.png", "caption": "This song is a spirited Latin instrumental. The song is fast tempo with distorted keyboard harmony, electric guitar and percussion with some vocalisation. The song quality is inferior but the vibe of the song is upbeat, peppy, happy, celebratory, energetic with the sound of chatter in the background. This song is Latin pop.", "data_idx": 2623, "number": 1, "label": "reggae"} +{"file_name": "train_04948.png", "caption": "This carnatic song features a female voice singing the main melody. This is accompanied by percussion played on the ghatam. A violin plays a melody matching the vocal melody. A morsing is played in the background. Other instruments are not clearly audible due to the low quality of recording. This song can be played in a religious gathering.", "data_idx": 2624, "number": 0, "label": "classical"} +{"file_name": "train_04949.png", "caption": "This carnatic song features a female voice singing the main melody. This is accompanied by percussion played on the ghatam. A violin plays a melody matching the vocal melody. A morsing is played in the background. Other instruments are not clearly audible due to the low quality of recording. This song can be played in a religious gathering.", "data_idx": 2624, "number": 1, "label": "classical"} +{"file_name": "train_04950.png", "caption": "This carnatic song features a female voice singing the main melody. This is accompanied by percussion played on the ghatam. A violin plays a melody matching the vocal melody. A morsing is played in the background. Other instruments are not clearly audible due to the low quality of recording. This song can be played in a religious gathering.", "data_idx": 2624, "number": 2, "label": "classical"} +{"file_name": "train_04951.png", "caption": "This carnatic song features a female voice singing the main melody. This is accompanied by percussion played on the ghatam. A violin plays a melody matching the vocal melody. A morsing is played in the background. Other instruments are not clearly audible due to the low quality of recording. This song can be played in a religious gathering.", "data_idx": 2624, "number": 3, "label": "classical"} +{"file_name": "train_04952.png", "caption": "The song is music created by a toothbrush. The tempo is medium and sounds like a female singer singing in high pitch, motor whirring sounds and button clicks. The audio is poor quality in nature.", "data_idx": 2625, "number": 0, "label": "rock"} +{"file_name": "train_04953.png", "caption": "The song is music created by a toothbrush. The tempo is medium and sounds like a female singer singing in high pitch, motor whirring sounds and button clicks. The audio is poor quality in nature.", "data_idx": 2625, "number": 1, "label": "rock"} +{"file_name": "train_04954.png", "caption": "The song is music created by a toothbrush. The tempo is medium and sounds like a female singer singing in high pitch, motor whirring sounds and button clicks. The audio is poor quality in nature.", "data_idx": 2625, "number": 2, "label": "rock"} +{"file_name": "train_04955.png", "caption": "The song is music created by a toothbrush. The tempo is medium and sounds like a female singer singing in high pitch, motor whirring sounds and button clicks. The audio is poor quality in nature.", "data_idx": 2625, "number": 3, "label": "rock"} +{"file_name": "train_04956.png", "caption": "The low quality recording features a live performance of a rock & roll song performed by passionate female vocal and male vocal ad libs, followed by groovy piano melody, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy snare and soft kick hits. It is a bit noisy and there are some subtle microphone feedback sounds in the middle of the performance. It sounds energetic, vintage and passionate.", "data_idx": 2627, "number": 0, "label": "hiphop"} +{"file_name": "train_04957.png", "caption": "The low quality recording features a live performance of a rock & roll song performed by passionate female vocal and male vocal ad libs, followed by groovy piano melody, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy snare and soft kick hits. It is a bit noisy and there are some subtle microphone feedback sounds in the middle of the performance. It sounds energetic, vintage and passionate.", "data_idx": 2627, "number": 1, "label": "hiphop"} +{"file_name": "train_04958.png", "caption": "The low quality recording features a live performance of a rock & roll song performed by passionate female vocal and male vocal ad libs, followed by groovy piano melody, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy snare and soft kick hits. It is a bit noisy and there are some subtle microphone feedback sounds in the middle of the performance. It sounds energetic, vintage and passionate.", "data_idx": 2627, "number": 2, "label": "hiphop"} +{"file_name": "train_04959.png", "caption": "The low quality recording features a live performance of a rock & roll song performed by passionate female vocal and male vocal ad libs, followed by groovy piano melody, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy snare and soft kick hits. It is a bit noisy and there are some subtle microphone feedback sounds in the middle of the performance. It sounds energetic, vintage and passionate.", "data_idx": 2627, "number": 3, "label": "hiphop"} +{"file_name": "train_04960.png", "caption": "This is a low quality recording. This folk dance song is a fusion of traditional folk song with contemporary dance music. Traditional percussion instruments are played at the beginning of the clip. A female voice sings the main melody. The percussion continues to play in the background. This song has a hip-hop feel. A quirky voice sings high pitched sounds in the background. Other instruments cannot be identified due to the low quality of recording. This song can be played in a club.", "data_idx": 2628, "number": 0, "label": "reggae"} +{"file_name": "train_04961.png", "caption": "This is a low quality recording. This folk dance song is a fusion of traditional folk song with contemporary dance music. Traditional percussion instruments are played at the beginning of the clip. A female voice sings the main melody. The percussion continues to play in the background. This song has a hip-hop feel. A quirky voice sings high pitched sounds in the background. Other instruments cannot be identified due to the low quality of recording. This song can be played in a club.", "data_idx": 2628, "number": 1, "label": "reggae"} +{"file_name": "train_04962.png", "caption": "This is a low quality recording. This folk dance song is a fusion of traditional folk song with contemporary dance music. Traditional percussion instruments are played at the beginning of the clip. A female voice sings the main melody. The percussion continues to play in the background. This song has a hip-hop feel. A quirky voice sings high pitched sounds in the background. Other instruments cannot be identified due to the low quality of recording. This song can be played in a club.", "data_idx": 2628, "number": 2, "label": "reggae"} +{"file_name": "train_04963.png", "caption": "This is a low quality recording. This folk dance song is a fusion of traditional folk song with contemporary dance music. Traditional percussion instruments are played at the beginning of the clip. A female voice sings the main melody. The percussion continues to play in the background. This song has a hip-hop feel. A quirky voice sings high pitched sounds in the background. Other instruments cannot be identified due to the low quality of recording. This song can be played in a club.", "data_idx": 2628, "number": 3, "label": "reggae"} +{"file_name": "train_04964.png", "caption": "The track features a scary and cinematic atmosphere. Doom-like sounds play a progression that evokes a horror feeling. The instrumental is simple and almost abstract.", "data_idx": 2629, "number": 0, "label": "hiphop"} +{"file_name": "train_04965.png", "caption": "The track features a scary and cinematic atmosphere. Doom-like sounds play a progression that evokes a horror feeling. The instrumental is simple and almost abstract.", "data_idx": 2629, "number": 1, "label": "hiphop"} +{"file_name": "train_04966.png", "caption": "The track features a scary and cinematic atmosphere. Doom-like sounds play a progression that evokes a horror feeling. The instrumental is simple and almost abstract.", "data_idx": 2629, "number": 2, "label": "hiphop"} +{"file_name": "train_04967.png", "caption": "The track features a scary and cinematic atmosphere. Doom-like sounds play a progression that evokes a horror feeling. The instrumental is simple and almost abstract.", "data_idx": 2629, "number": 3, "label": "hiphop"} +{"file_name": "train_04968.png", "caption": "The song is an instrumental. The tempo is medium with the glass harp being played percussively by two glass harpists with no other instrumentation . The song is mysterious and ethereal in nature.", "data_idx": 2630, "number": 0, "label": "classical"} +{"file_name": "train_04969.png", "caption": "The song is an instrumental. The tempo is medium with the glass harp being played percussively by two glass harpists with no other instrumentation . The song is mysterious and ethereal in nature.", "data_idx": 2630, "number": 1, "label": "classical"} +{"file_name": "train_04970.png", "caption": "The song is an instrumental. The tempo is medium with the glass harp being played percussively by two glass harpists with no other instrumentation . The song is mysterious and ethereal in nature.", "data_idx": 2630, "number": 2, "label": "classical"} +{"file_name": "train_04971.png", "caption": "The song is an instrumental. The tempo is medium with the glass harp being played percussively by two glass harpists with no other instrumentation . The song is mysterious and ethereal in nature.", "data_idx": 2630, "number": 3, "label": "classical"} +{"file_name": "train_04972.png", "caption": "This amateur recording features an overdriven guitar playing the main melody. This is a low quality recording and the volumes of the instruments are not professionally mixed. The overdriven guitar is loud. A piano plays a couple of notes in the beginning. The guitar is accompanied by percussion playing a simple beat in the background. The bass plays a blues style bassline. The tempo of this song is slow. The song is based on blues style.", "data_idx": 2631, "number": 0, "label": "jazz"} +{"file_name": "train_04973.png", "caption": "This amateur recording features an overdriven guitar playing the main melody. This is a low quality recording and the volumes of the instruments are not professionally mixed. The overdriven guitar is loud. A piano plays a couple of notes in the beginning. The guitar is accompanied by percussion playing a simple beat in the background. The bass plays a blues style bassline. The tempo of this song is slow. The song is based on blues style.", "data_idx": 2631, "number": 1, "label": "jazz"} +{"file_name": "train_04974.png", "caption": "This amateur recording features an overdriven guitar playing the main melody. This is a low quality recording and the volumes of the instruments are not professionally mixed. The overdriven guitar is loud. A piano plays a couple of notes in the beginning. The guitar is accompanied by percussion playing a simple beat in the background. The bass plays a blues style bassline. The tempo of this song is slow. The song is based on blues style.", "data_idx": 2631, "number": 2, "label": "jazz"} +{"file_name": "train_04975.png", "caption": "This amateur recording features an overdriven guitar playing the main melody. This is a low quality recording and the volumes of the instruments are not professionally mixed. The overdriven guitar is loud. A piano plays a couple of notes in the beginning. The guitar is accompanied by percussion playing a simple beat in the background. The bass plays a blues style bassline. The tempo of this song is slow. The song is based on blues style.", "data_idx": 2631, "number": 3, "label": "jazz"} +{"file_name": "train_04976.png", "caption": "A male singer sings this pensive melody. The tempo is slow with a Sarangi accompaniment . The instrumentation is minimal with vocal emphasis. The song uses classical Ragas and alaps to form a melody. The song is sad, pensive, regretful, pensive, melancholic, emotional, contemplative, wistful and meditative. This song is an Indian Classical.", "data_idx": 2634, "number": 0, "label": "classical"} +{"file_name": "train_04977.png", "caption": "A male singer sings this pensive melody. The tempo is slow with a Sarangi accompaniment . The instrumentation is minimal with vocal emphasis. The song uses classical Ragas and alaps to form a melody. The song is sad, pensive, regretful, pensive, melancholic, emotional, contemplative, wistful and meditative. This song is an Indian Classical.", "data_idx": 2634, "number": 1, "label": "classical"} +{"file_name": "train_04978.png", "caption": "A male singer sings this pensive melody. The tempo is slow with a Sarangi accompaniment . The instrumentation is minimal with vocal emphasis. The song uses classical Ragas and alaps to form a melody. The song is sad, pensive, regretful, pensive, melancholic, emotional, contemplative, wistful and meditative. This song is an Indian Classical.", "data_idx": 2634, "number": 2, "label": "classical"} +{"file_name": "train_04979.png", "caption": "A male singer sings this pensive melody. The tempo is slow with a Sarangi accompaniment . The instrumentation is minimal with vocal emphasis. The song uses classical Ragas and alaps to form a melody. The song is sad, pensive, regretful, pensive, melancholic, emotional, contemplative, wistful and meditative. This song is an Indian Classical.", "data_idx": 2634, "number": 3, "label": "classical"} +{"file_name": "train_04980.png", "caption": "The music features a male voice singing. The music is secondary and is being played in the background by a speaker and recorded with a camera/phone. Louder than the music is the crowd continuously screaming.", "data_idx": 2635, "number": 0, "label": "hiphop"} +{"file_name": "train_04981.png", "caption": "The music features a male voice singing. The music is secondary and is being played in the background by a speaker and recorded with a camera/phone. Louder than the music is the crowd continuously screaming.", "data_idx": 2635, "number": 1, "label": "hiphop"} +{"file_name": "train_04982.png", "caption": "The music features a male voice singing. The music is secondary and is being played in the background by a speaker and recorded with a camera/phone. Louder than the music is the crowd continuously screaming.", "data_idx": 2635, "number": 2, "label": "hiphop"} +{"file_name": "train_04983.png", "caption": "The music features a male voice singing. The music is secondary and is being played in the background by a speaker and recorded with a camera/phone. Louder than the music is the crowd continuously screaming.", "data_idx": 2635, "number": 3, "label": "hiphop"} +{"file_name": "train_04984.png", "caption": "This music is a celestial instrumental. The tempo is slow with a symphonic harmony of the Vibraphones. The music is soft, gentle, and mellifluous with an ethereal, delicate, exquisite, elegant and beautiful sound.", "data_idx": 2638, "number": 0, "label": "classical"} +{"file_name": "train_04985.png", "caption": "This music is a celestial instrumental. The tempo is slow with a symphonic harmony of the Vibraphones. The music is soft, gentle, and mellifluous with an ethereal, delicate, exquisite, elegant and beautiful sound.", "data_idx": 2638, "number": 1, "label": "classical"} +{"file_name": "train_04986.png", "caption": "This is a rock opera piece. There is a male vocalist singing passionately with a choir of backing vocals. The piano plays the main theme with the electric guitar while a bass guitar plays in the background. The rhythmic background is provided by the acoustic drums playing a simple rock beat. There is an energetic atmosphere to the piece. This piece could be used at sports venues. It could also be playing in the background of a bar.", "data_idx": 2641, "number": 0, "label": "rock"} +{"file_name": "train_04987.png", "caption": "This is a rock opera piece. There is a male vocalist singing passionately with a choir of backing vocals. The piano plays the main theme with the electric guitar while a bass guitar plays in the background. The rhythmic background is provided by the acoustic drums playing a simple rock beat. There is an energetic atmosphere to the piece. This piece could be used at sports venues. It could also be playing in the background of a bar.", "data_idx": 2641, "number": 1, "label": "rock"} +{"file_name": "train_04988.png", "caption": "This is a rock opera piece. There is a male vocalist singing passionately with a choir of backing vocals. The piano plays the main theme with the electric guitar while a bass guitar plays in the background. The rhythmic background is provided by the acoustic drums playing a simple rock beat. There is an energetic atmosphere to the piece. This piece could be used at sports venues. It could also be playing in the background of a bar.", "data_idx": 2641, "number": 2, "label": "rock"} +{"file_name": "train_04989.png", "caption": "This is a rock opera piece. There is a male vocalist singing passionately with a choir of backing vocals. The piano plays the main theme with the electric guitar while a bass guitar plays in the background. The rhythmic background is provided by the acoustic drums playing a simple rock beat. There is an energetic atmosphere to the piece. This piece could be used at sports venues. It could also be playing in the background of a bar.", "data_idx": 2641, "number": 3, "label": "rock"} +{"file_name": "train_04990.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of an echoing female vocal singing over breathy woodwind melody and arpeggiated plucked string melody. It sounds passionate, soulful and mystical, even though the recording is noisy.", "data_idx": 2642, "number": 0, "label": "classical"} +{"file_name": "train_04991.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of an echoing female vocal singing over breathy woodwind melody and arpeggiated plucked string melody. It sounds passionate, soulful and mystical, even though the recording is noisy.", "data_idx": 2642, "number": 1, "label": "classical"} +{"file_name": "train_04992.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of an echoing female vocal singing over breathy woodwind melody and arpeggiated plucked string melody. It sounds passionate, soulful and mystical, even though the recording is noisy.", "data_idx": 2642, "number": 2, "label": "classical"} +{"file_name": "train_04993.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of an echoing female vocal singing over breathy woodwind melody and arpeggiated plucked string melody. It sounds passionate, soulful and mystical, even though the recording is noisy.", "data_idx": 2642, "number": 3, "label": "classical"} +{"file_name": "train_04994.png", "caption": "The music excerpt features a synth sound playing a melody. In the background, accompanying this melody is another synth sound that plays long chords and thus provides harmonic structure. A bass guitar can be heard alternating between regular playing and string slapping. A light rhythm is being played by a pair of congas. A metallic percussive sound can be heard from time to time.", "data_idx": 2645, "number": 0, "label": "disco"} +{"file_name": "train_04995.png", "caption": "The music excerpt features a synth sound playing a melody. In the background, accompanying this melody is another synth sound that plays long chords and thus provides harmonic structure. A bass guitar can be heard alternating between regular playing and string slapping. A light rhythm is being played by a pair of congas. A metallic percussive sound can be heard from time to time.", "data_idx": 2645, "number": 1, "label": "disco"} +{"file_name": "train_04996.png", "caption": "The music excerpt features a synth sound playing a melody. In the background, accompanying this melody is another synth sound that plays long chords and thus provides harmonic structure. A bass guitar can be heard alternating between regular playing and string slapping. A light rhythm is being played by a pair of congas. A metallic percussive sound can be heard from time to time.", "data_idx": 2645, "number": 2, "label": "disco"} +{"file_name": "train_04997.png", "caption": "The music excerpt features a synth sound playing a melody. In the background, accompanying this melody is another synth sound that plays long chords and thus provides harmonic structure. A bass guitar can be heard alternating between regular playing and string slapping. A light rhythm is being played by a pair of congas. A metallic percussive sound can be heard from time to time.", "data_idx": 2645, "number": 3, "label": "disco"} +{"file_name": "train_04998.png", "caption": "The low quality recording features a live performance of an indie song and it features a passionate male vocal singing over acoustic rhythm guitar and soft double bass, There are laughing and crowd chattering noises in the background. It sounds emotional and sad, even though the recording is a bit noisy.", "data_idx": 2646, "number": 0, "label": "rock"} +{"file_name": "train_04999.png", "caption": "The low quality recording features a live performance of an indie song and it features a passionate male vocal singing over acoustic rhythm guitar and soft double bass, There are laughing and crowd chattering noises in the background. It sounds emotional and sad, even though the recording is a bit noisy.", "data_idx": 2646, "number": 1, "label": "rock"} +{"file_name": "train_05000.png", "caption": "The low quality recording features a live performance of an indie song and it features a passionate male vocal singing over acoustic rhythm guitar and soft double bass, There are laughing and crowd chattering noises in the background. It sounds emotional and sad, even though the recording is a bit noisy.", "data_idx": 2646, "number": 2, "label": "rock"} +{"file_name": "train_05001.png", "caption": "The low quality recording features a live performance of an indie song and it features a passionate male vocal singing over acoustic rhythm guitar and soft double bass, There are laughing and crowd chattering noises in the background. It sounds emotional and sad, even though the recording is a bit noisy.", "data_idx": 2646, "number": 3, "label": "rock"} +{"file_name": "train_05002.png", "caption": "A male singer sings this melodic pop song. The tempo is fast with an acoustic guitar accompaniment, keyboard harmony, enthusiastic electric guitar melody and intense drumming. The vocals are emphatic and the song is pleasant, catchy, melodious, youthful, buoyant and fresh. This song is Soft Rock/ Pop.", "data_idx": 2648, "number": 0, "label": "disco"} +{"file_name": "train_05003.png", "caption": "A male singer sings this melodic pop song. The tempo is fast with an acoustic guitar accompaniment, keyboard harmony, enthusiastic electric guitar melody and intense drumming. The vocals are emphatic and the song is pleasant, catchy, melodious, youthful, buoyant and fresh. This song is Soft Rock/ Pop.", "data_idx": 2648, "number": 1, "label": "disco"} +{"file_name": "train_05004.png", "caption": "A male singer sings this melodic pop song. The tempo is fast with an acoustic guitar accompaniment, keyboard harmony, enthusiastic electric guitar melody and intense drumming. The vocals are emphatic and the song is pleasant, catchy, melodious, youthful, buoyant and fresh. This song is Soft Rock/ Pop.", "data_idx": 2648, "number": 2, "label": "disco"} +{"file_name": "train_05005.png", "caption": "A male singer sings this melodic pop song. The tempo is fast with an acoustic guitar accompaniment, keyboard harmony, enthusiastic electric guitar melody and intense drumming. The vocals are emphatic and the song is pleasant, catchy, melodious, youthful, buoyant and fresh. This song is Soft Rock/ Pop.", "data_idx": 2648, "number": 3, "label": "disco"} +{"file_name": "train_05006.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is fast with intense drumming, vigorous electric guitar, funky bass and keyboard harmony. The song is a vibrant, enthusiastic, youthful, animated, spirited, buoyant and electrifying Heavy Metal/Rock. There are sounds of people cheering, clapping and singing along, indicating that this is a live performance.", "data_idx": 2649, "number": 0, "label": "metal"} +{"file_name": "train_05007.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is fast with intense drumming, vigorous electric guitar, funky bass and keyboard harmony. The song is a vibrant, enthusiastic, youthful, animated, spirited, buoyant and electrifying Heavy Metal/Rock. There are sounds of people cheering, clapping and singing along, indicating that this is a live performance.", "data_idx": 2649, "number": 1, "label": "metal"} +{"file_name": "train_05008.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is fast with intense drumming, vigorous electric guitar, funky bass and keyboard harmony. The song is a vibrant, enthusiastic, youthful, animated, spirited, buoyant and electrifying Heavy Metal/Rock. There are sounds of people cheering, clapping and singing along, indicating that this is a live performance.", "data_idx": 2649, "number": 2, "label": "metal"} +{"file_name": "train_05009.png", "caption": "A male vocalist sings this energetic Rock song. The tempo is fast with intense drumming, vigorous electric guitar, funky bass and keyboard harmony. The song is a vibrant, enthusiastic, youthful, animated, spirited, buoyant and electrifying Heavy Metal/Rock. There are sounds of people cheering, clapping and singing along, indicating that this is a live performance.", "data_idx": 2649, "number": 3, "label": "metal"} +{"file_name": "train_05010.png", "caption": "This clip features noises created by mixing output from different effect pedals. This is a synth noise. There are no instruments or voices in this song.", "data_idx": 2650, "number": 0, "label": "classical"} +{"file_name": "train_05011.png", "caption": "This clip features noises created by mixing output from different effect pedals. This is a synth noise. There are no instruments or voices in this song.", "data_idx": 2650, "number": 1, "label": "classical"} +{"file_name": "train_05012.png", "caption": "This clip features noises created by mixing output from different effect pedals. This is a synth noise. There are no instruments or voices in this song.", "data_idx": 2650, "number": 2, "label": "classical"} +{"file_name": "train_05013.png", "caption": "This clip features noises created by mixing output from different effect pedals. This is a synth noise. There are no instruments or voices in this song.", "data_idx": 2650, "number": 3, "label": "classical"} +{"file_name": "train_05014.png", "caption": "A male singer sings this melody with a backup singer in vocal harmony. The song is medium tempo with a strong rock drumming rhythm, steady bass line and a guitar playing a groovy rhythm. The song is youthful and spirited. The audio quality is poor with hissing noises. The song is a sixties psychedelic rock song.", "data_idx": 2653, "number": 0, "label": "metal"} +{"file_name": "train_05015.png", "caption": "A male singer sings this melody with a backup singer in vocal harmony. The song is medium tempo with a strong rock drumming rhythm, steady bass line and a guitar playing a groovy rhythm. The song is youthful and spirited. The audio quality is poor with hissing noises. The song is a sixties psychedelic rock song.", "data_idx": 2653, "number": 1, "label": "metal"} +{"file_name": "train_05016.png", "caption": "A male singer sings this melody with a backup singer in vocal harmony. The song is medium tempo with a strong rock drumming rhythm, steady bass line and a guitar playing a groovy rhythm. The song is youthful and spirited. The audio quality is poor with hissing noises. The song is a sixties psychedelic rock song.", "data_idx": 2653, "number": 2, "label": "metal"} +{"file_name": "train_05017.png", "caption": "A male singer sings this melody with a backup singer in vocal harmony. The song is medium tempo with a strong rock drumming rhythm, steady bass line and a guitar playing a groovy rhythm. The song is youthful and spirited. The audio quality is poor with hissing noises. The song is a sixties psychedelic rock song.", "data_idx": 2653, "number": 3, "label": "metal"} +{"file_name": "train_05018.png", "caption": "Someone is playing a song out of a speaker. The song contains a guitar melody and a digital drum hitting the bass drum on every beat along with a bass-melody. This is an amateur recording. The song is in very poor audio-quality.", "data_idx": 2654, "number": 0, "label": "hiphop"} +{"file_name": "train_05019.png", "caption": "Someone is playing a song out of a speaker. The song contains a guitar melody and a digital drum hitting the bass drum on every beat along with a bass-melody. This is an amateur recording. The song is in very poor audio-quality.", "data_idx": 2654, "number": 1, "label": "hiphop"} +{"file_name": "train_05020.png", "caption": "This music is a Didgeridoo solo instrumental. The tempo is slow with a steady, vibrating drone like harmony with no accompaniment. The music is an intense, monotone , low pitched,incessant buzz like vibrations. It is unique with a captivating, alluring and hypnotic vibe.", "data_idx": 2655, "number": 0, "label": "metal"} +{"file_name": "train_05021.png", "caption": "This music is a Didgeridoo solo instrumental. The tempo is slow with a steady, vibrating drone like harmony with no accompaniment. The music is an intense, monotone , low pitched,incessant buzz like vibrations. It is unique with a captivating, alluring and hypnotic vibe.", "data_idx": 2655, "number": 1, "label": "metal"} +{"file_name": "train_05022.png", "caption": "This music is a Didgeridoo solo instrumental. The tempo is slow with a steady, vibrating drone like harmony with no accompaniment. The music is an intense, monotone , low pitched,incessant buzz like vibrations. It is unique with a captivating, alluring and hypnotic vibe.", "data_idx": 2655, "number": 2, "label": "metal"} +{"file_name": "train_05023.png", "caption": "This music is a Didgeridoo solo instrumental. The tempo is slow with a steady, vibrating drone like harmony with no accompaniment. The music is an intense, monotone , low pitched,incessant buzz like vibrations. It is unique with a captivating, alluring and hypnotic vibe.", "data_idx": 2655, "number": 3, "label": "metal"} +{"file_name": "train_05024.png", "caption": "This song is an instrumental. The tempo is medium with an interesting electric guitar riff and subtle keyboard followed by energetic drumming, Funky bass lines and keyboard arrangement. The song gradually builds up and is catchy, youthful, upbeat, melodious, captivating and groovy. This song is Soft Rock.", "data_idx": 2657, "number": 0, "label": "jazz"} +{"file_name": "train_05025.png", "caption": "This song is an instrumental. The tempo is medium with an interesting electric guitar riff and subtle keyboard followed by energetic drumming, Funky bass lines and keyboard arrangement. The song gradually builds up and is catchy, youthful, upbeat, melodious, captivating and groovy. This song is Soft Rock.", "data_idx": 2657, "number": 1, "label": "jazz"} +{"file_name": "train_05026.png", "caption": "This song is an instrumental. The tempo is medium with an interesting electric guitar riff and subtle keyboard followed by energetic drumming, Funky bass lines and keyboard arrangement. The song gradually builds up and is catchy, youthful, upbeat, melodious, captivating and groovy. This song is Soft Rock.", "data_idx": 2657, "number": 2, "label": "jazz"} +{"file_name": "train_05027.png", "caption": "This song is an instrumental. The tempo is medium with an interesting electric guitar riff and subtle keyboard followed by energetic drumming, Funky bass lines and keyboard arrangement. The song gradually builds up and is catchy, youthful, upbeat, melodious, captivating and groovy. This song is Soft Rock.", "data_idx": 2657, "number": 3, "label": "jazz"} +{"file_name": "train_05028.png", "caption": "This song features the sound of running water in the background. The sound of bells is played in the foreground. There is a ringing instrument playing through the song and this produces feedback at the end of the clip. There are no voices in this song. This song is relaxing and can be played for the purpose of religious meditation.", "data_idx": 2658, "number": 0, "label": "classical"} +{"file_name": "train_05029.png", "caption": "This song features the sound of running water in the background. The sound of bells is played in the foreground. There is a ringing instrument playing through the song and this produces feedback at the end of the clip. There are no voices in this song. This song is relaxing and can be played for the purpose of religious meditation.", "data_idx": 2658, "number": 1, "label": "classical"} +{"file_name": "train_05030.png", "caption": "This song features the sound of running water in the background. The sound of bells is played in the foreground. There is a ringing instrument playing through the song and this produces feedback at the end of the clip. There are no voices in this song. This song is relaxing and can be played for the purpose of religious meditation.", "data_idx": 2658, "number": 2, "label": "classical"} +{"file_name": "train_05031.png", "caption": "This song features the sound of running water in the background. The sound of bells is played in the foreground. There is a ringing instrument playing through the song and this produces feedback at the end of the clip. There are no voices in this song. This song is relaxing and can be played for the purpose of religious meditation.", "data_idx": 2658, "number": 3, "label": "classical"} +{"file_name": "train_05032.png", "caption": "This music clip is a Lively Banjo instrumental. The tempo is fast with a spirited Banjo lead harmony. The music is simple, cheerful, happy, festive, upbeat and vivacious. The audio is not very clear as it is a home recording. The music has a country or folk song vibe.", "data_idx": 2660, "number": 0, "label": "classical"} +{"file_name": "train_05033.png", "caption": "This music clip is a Lively Banjo instrumental. The tempo is fast with a spirited Banjo lead harmony. The music is simple, cheerful, happy, festive, upbeat and vivacious. The audio is not very clear as it is a home recording. The music has a country or folk song vibe.", "data_idx": 2660, "number": 1, "label": "classical"} +{"file_name": "train_05034.png", "caption": "This music clip is a Lively Banjo instrumental. The tempo is fast with a spirited Banjo lead harmony. The music is simple, cheerful, happy, festive, upbeat and vivacious. The audio is not very clear as it is a home recording. The music has a country or folk song vibe.", "data_idx": 2660, "number": 2, "label": "classical"} +{"file_name": "train_05035.png", "caption": "This music clip is a Lively Banjo instrumental. The tempo is fast with a spirited Banjo lead harmony. The music is simple, cheerful, happy, festive, upbeat and vivacious. The audio is not very clear as it is a home recording. The music has a country or folk song vibe.", "data_idx": 2660, "number": 3, "label": "classical"} +{"file_name": "train_05036.png", "caption": "The low quality recording features a cover of a rock song and it consists of distorted bass guitar playing over muffled audio. The recording is distorted and very noisy, almost crushed, but it still sounds groovy.", "data_idx": 2661, "number": 0, "label": "hiphop"} +{"file_name": "train_05037.png", "caption": "The low quality recording features a cover of a rock song and it consists of distorted bass guitar playing over muffled audio. The recording is distorted and very noisy, almost crushed, but it still sounds groovy.", "data_idx": 2661, "number": 1, "label": "hiphop"} +{"file_name": "train_05038.png", "caption": "The low quality recording features a cover of a rock song and it consists of distorted bass guitar playing over muffled audio. The recording is distorted and very noisy, almost crushed, but it still sounds groovy.", "data_idx": 2661, "number": 2, "label": "hiphop"} +{"file_name": "train_05039.png", "caption": "The low quality recording features a cover of a rock song and it consists of distorted bass guitar playing over muffled audio. The recording is distorted and very noisy, almost crushed, but it still sounds groovy.", "data_idx": 2661, "number": 3, "label": "hiphop"} +{"file_name": "train_05040.png", "caption": "The song is an instrumental. The song is medium tempo with an amplified guitar solo lead, complete with knob flicking tones. The song is loud and energetic. The audio quality is poor and recorded live at home.", "data_idx": 2662, "number": 0, "label": "classical"} +{"file_name": "train_05041.png", "caption": "The song is an instrumental. The song is medium tempo with an amplified guitar solo lead, complete with knob flicking tones. The song is loud and energetic. The audio quality is poor and recorded live at home.", "data_idx": 2662, "number": 1, "label": "classical"} +{"file_name": "train_05042.png", "caption": "The song is an instrumental. The song is medium tempo with a didgeridoo playing percussively with double tonguing motion and no other instrumentation. The song is emotional and meditative. The song is an aboriginal instrument played in a home studio.", "data_idx": 2663, "number": 0, "label": "classical"} +{"file_name": "train_05043.png", "caption": "The song is an instrumental. The song is medium tempo with a didgeridoo playing percussively with double tonguing motion and no other instrumentation. The song is emotional and meditative. The song is an aboriginal instrument played in a home studio.", "data_idx": 2663, "number": 1, "label": "classical"} +{"file_name": "train_05044.png", "caption": "The song is an instrumental. The song is medium tempo with a didgeridoo playing percussively with double tonguing motion and no other instrumentation. The song is emotional and meditative. The song is an aboriginal instrument played in a home studio.", "data_idx": 2663, "number": 2, "label": "classical"} +{"file_name": "train_05045.png", "caption": "The song is an instrumental. The song is medium tempo with a didgeridoo playing percussively with double tonguing motion and no other instrumentation. The song is emotional and meditative. The song is an aboriginal instrument played in a home studio.", "data_idx": 2663, "number": 3, "label": "classical"} +{"file_name": "train_05046.png", "caption": "The Reggae song features a flat male vocal singing, alongside wide background harmonizing female vocals, over metallic snare, simple kick hits, offbeat acoustic rhythm guitar chords, groovy bass, electric guitar licks and tinny percussive elements widely spread in the stereo image. Sounds happy and uplifting, like something you can listen to while chilling at the beach.", "data_idx": 2665, "number": 0, "label": "reggae"} +{"file_name": "train_05047.png", "caption": "The Reggae song features a flat male vocal singing, alongside wide background harmonizing female vocals, over metallic snare, simple kick hits, offbeat acoustic rhythm guitar chords, groovy bass, electric guitar licks and tinny percussive elements widely spread in the stereo image. Sounds happy and uplifting, like something you can listen to while chilling at the beach.", "data_idx": 2665, "number": 1, "label": "reggae"} +{"file_name": "train_05048.png", "caption": "The Reggae song features a flat male vocal singing, alongside wide background harmonizing female vocals, over metallic snare, simple kick hits, offbeat acoustic rhythm guitar chords, groovy bass, electric guitar licks and tinny percussive elements widely spread in the stereo image. Sounds happy and uplifting, like something you can listen to while chilling at the beach.", "data_idx": 2665, "number": 2, "label": "reggae"} +{"file_name": "train_05049.png", "caption": "The Reggae song features a flat male vocal singing, alongside wide background harmonizing female vocals, over metallic snare, simple kick hits, offbeat acoustic rhythm guitar chords, groovy bass, electric guitar licks and tinny percussive elements widely spread in the stereo image. Sounds happy and uplifting, like something you can listen to while chilling at the beach.", "data_idx": 2665, "number": 3, "label": "reggae"} +{"file_name": "train_05050.png", "caption": "An instrumental jazz piano and vibraphone duo. Peppy and upbeat with a latin tinge.", "data_idx": 2667, "number": 0, "label": "classical"} +{"file_name": "train_05051.png", "caption": "An instrumental jazz piano and vibraphone duo. Peppy and upbeat with a latin tinge.", "data_idx": 2667, "number": 1, "label": "classical"} +{"file_name": "train_05052.png", "caption": "An instrumental jazz piano and vibraphone duo. Peppy and upbeat with a latin tinge.", "data_idx": 2667, "number": 2, "label": "classical"} +{"file_name": "train_05053.png", "caption": "An instrumental jazz piano and vibraphone duo. Peppy and upbeat with a latin tinge.", "data_idx": 2667, "number": 3, "label": "classical"} +{"file_name": "train_05054.png", "caption": "This song contains drone sounds played by a string instrument and a synth. On top of that a panflute sound is playing a simple slow melody. A male voice is chanting a mantra in a deeper voice. This song may be playing in a meditation session.", "data_idx": 2668, "number": 0, "label": "classical"} +{"file_name": "train_05055.png", "caption": "This song contains drone sounds played by a string instrument and a synth. On top of that a panflute sound is playing a simple slow melody. A male voice is chanting a mantra in a deeper voice. This song may be playing in a meditation session.", "data_idx": 2668, "number": 1, "label": "classical"} +{"file_name": "train_05056.png", "caption": "This song contains drone sounds played by a string instrument and a synth. On top of that a panflute sound is playing a simple slow melody. A male voice is chanting a mantra in a deeper voice. This song may be playing in a meditation session.", "data_idx": 2668, "number": 2, "label": "classical"} +{"file_name": "train_05057.png", "caption": "This song contains drone sounds played by a string instrument and a synth. On top of that a panflute sound is playing a simple slow melody. A male voice is chanting a mantra in a deeper voice. This song may be playing in a meditation session.", "data_idx": 2668, "number": 3, "label": "classical"} +{"file_name": "train_05058.png", "caption": "This is a trap piece. There is a male vocal rapping at the forefront accompanied by a repeating hollering vocal sample. A high-pitch synth is playing an ominous melody. There is a strong bass and an electronic drum beat with cicada hiatus at the rhythmic background. The atmosphere of the song is aggressive. The piece can be used in the soundtracks of crime movies/TV series that take place in the big city.", "data_idx": 2670, "number": 0, "label": "reggae"} +{"file_name": "train_05059.png", "caption": "This is a trap piece. There is a male vocal rapping at the forefront accompanied by a repeating hollering vocal sample. A high-pitch synth is playing an ominous melody. There is a strong bass and an electronic drum beat with cicada hiatus at the rhythmic background. The atmosphere of the song is aggressive. The piece can be used in the soundtracks of crime movies/TV series that take place in the big city.", "data_idx": 2670, "number": 1, "label": "reggae"} +{"file_name": "train_05060.png", "caption": "This is a trap piece. There is a male vocal rapping at the forefront accompanied by a repeating hollering vocal sample. A high-pitch synth is playing an ominous melody. There is a strong bass and an electronic drum beat with cicada hiatus at the rhythmic background. The atmosphere of the song is aggressive. The piece can be used in the soundtracks of crime movies/TV series that take place in the big city.", "data_idx": 2670, "number": 2, "label": "reggae"} +{"file_name": "train_05061.png", "caption": "This is a trap piece. There is a male vocal rapping at the forefront accompanied by a repeating hollering vocal sample. A high-pitch synth is playing an ominous melody. There is a strong bass and an electronic drum beat with cicada hiatus at the rhythmic background. The atmosphere of the song is aggressive. The piece can be used in the soundtracks of crime movies/TV series that take place in the big city.", "data_idx": 2670, "number": 3, "label": "reggae"} +{"file_name": "train_05062.png", "caption": "Someone is skillfully scratching turntables along to a backing track with drums, bassline and synthesizer sounds. This recording is of poor audio-quality.", "data_idx": 2671, "number": 0, "label": "hiphop"} +{"file_name": "train_05063.png", "caption": "Someone is skillfully scratching turntables along to a backing track with drums, bassline and synthesizer sounds. This recording is of poor audio-quality.", "data_idx": 2671, "number": 1, "label": "hiphop"} +{"file_name": "train_05064.png", "caption": "Someone is skillfully scratching turntables along to a backing track with drums, bassline and synthesizer sounds. This recording is of poor audio-quality.", "data_idx": 2671, "number": 2, "label": "hiphop"} +{"file_name": "train_05065.png", "caption": "Someone is skillfully scratching turntables along to a backing track with drums, bassline and synthesizer sounds. This recording is of poor audio-quality.", "data_idx": 2671, "number": 3, "label": "hiphop"} +{"file_name": "train_05066.png", "caption": "The low quality recording features a groovy bass guitar being played with chorus effect on. The sound of the bass is kind of leaning towards left, which makes the stereo image unbalanced.", "data_idx": 2672, "number": 0, "label": "blues"} +{"file_name": "train_05067.png", "caption": "The low quality recording features a groovy bass guitar being played with chorus effect on. The sound of the bass is kind of leaning towards left, which makes the stereo image unbalanced.", "data_idx": 2672, "number": 1, "label": "blues"} +{"file_name": "train_05068.png", "caption": "The low quality recording features a groovy bass guitar being played with chorus effect on. The sound of the bass is kind of leaning towards left, which makes the stereo image unbalanced.", "data_idx": 2672, "number": 2, "label": "blues"} +{"file_name": "train_05069.png", "caption": "The low quality recording features a groovy bass guitar being played with chorus effect on. The sound of the bass is kind of leaning towards left, which makes the stereo image unbalanced.", "data_idx": 2672, "number": 3, "label": "blues"} +{"file_name": "train_05070.png", "caption": "The traditional song features a wide harmonizing children's vocals singing over percussive drums that consist of shimmering tambourine, wooden percussions, punchy snare and soft kick hits, followed by steel guitar melody and simple organ keys. Sounds uplifting, like something kids would sing along to.", "data_idx": 2673, "number": 0, "label": "disco"} +{"file_name": "train_05071.png", "caption": "The traditional song features a wide harmonizing children's vocals singing over percussive drums that consist of shimmering tambourine, wooden percussions, punchy snare and soft kick hits, followed by steel guitar melody and simple organ keys. Sounds uplifting, like something kids would sing along to.", "data_idx": 2673, "number": 1, "label": "disco"} +{"file_name": "train_05072.png", "caption": "The traditional song features a wide harmonizing children's vocals singing over percussive drums that consist of shimmering tambourine, wooden percussions, punchy snare and soft kick hits, followed by steel guitar melody and simple organ keys. Sounds uplifting, like something kids would sing along to.", "data_idx": 2673, "number": 2, "label": "disco"} +{"file_name": "train_05073.png", "caption": "The traditional song features a wide harmonizing children's vocals singing over percussive drums that consist of shimmering tambourine, wooden percussions, punchy snare and soft kick hits, followed by steel guitar melody and simple organ keys. Sounds uplifting, like something kids would sing along to.", "data_idx": 2673, "number": 3, "label": "disco"} +{"file_name": "train_05074.png", "caption": "This song contains a female voice sample that is repeating itself. A digital drum is playing snare hits that are building up in speed along with synthesizer pads with a ping pong delay panning to both sides of the speaker along with other synth sounds rising up in pitch creating tension. This song may be playing in a techno club.", "data_idx": 2674, "number": 0, "label": "disco"} +{"file_name": "train_05075.png", "caption": "This song contains a female voice sample that is repeating itself. A digital drum is playing snare hits that are building up in speed along with synthesizer pads with a ping pong delay panning to both sides of the speaker along with other synth sounds rising up in pitch creating tension. This song may be playing in a techno club.", "data_idx": 2674, "number": 1, "label": "disco"} +{"file_name": "train_05076.png", "caption": "This song contains a female voice sample that is repeating itself. A digital drum is playing snare hits that are building up in speed along with synthesizer pads with a ping pong delay panning to both sides of the speaker along with other synth sounds rising up in pitch creating tension. This song may be playing in a techno club.", "data_idx": 2674, "number": 2, "label": "disco"} +{"file_name": "train_05077.png", "caption": "This song contains a female voice sample that is repeating itself. A digital drum is playing snare hits that are building up in speed along with synthesizer pads with a ping pong delay panning to both sides of the speaker along with other synth sounds rising up in pitch creating tension. This song may be playing in a techno club.", "data_idx": 2674, "number": 3, "label": "disco"} +{"file_name": "train_05078.png", "caption": "This is the live performance of a sarcastic lullaby. Although the piece is written as if it is a lullaby, the words are about illegal alcohol production. The male vocalist in the lead is singing melodically in the style of a cabaret. There is a grand piano playing an accompanying tune in the background. The atmosphere is comedic. This piece could be playing at a radio station in a movie/TV show for a hidden comedic effect.", "data_idx": 2675, "number": 0, "label": "country"} +{"file_name": "train_05079.png", "caption": "This is the live performance of a sarcastic lullaby. Although the piece is written as if it is a lullaby, the words are about illegal alcohol production. The male vocalist in the lead is singing melodically in the style of a cabaret. There is a grand piano playing an accompanying tune in the background. The atmosphere is comedic. This piece could be playing at a radio station in a movie/TV show for a hidden comedic effect.", "data_idx": 2675, "number": 1, "label": "country"} +{"file_name": "train_05080.png", "caption": "The song is instrumental. The song is medium tempo with a guitar accompaniment, piano playing pensively along with a keyboard harmony. The song is emotional and sad. The song is probably a social awareness message with ambient Street sounds included with the music track.", "data_idx": 2676, "number": 0, "label": "classical"} +{"file_name": "train_05081.png", "caption": "The song is instrumental. The song is medium tempo with a guitar accompaniment, piano playing pensively along with a keyboard harmony. The song is emotional and sad. The song is probably a social awareness message with ambient Street sounds included with the music track.", "data_idx": 2676, "number": 1, "label": "classical"} +{"file_name": "train_05082.png", "caption": "The song is instrumental. The song is medium tempo with a guitar accompaniment, piano playing pensively along with a keyboard harmony. The song is emotional and sad. The song is probably a social awareness message with ambient Street sounds included with the music track.", "data_idx": 2676, "number": 2, "label": "classical"} +{"file_name": "train_05083.png", "caption": "The song is instrumental. The song is medium tempo with a guitar accompaniment, piano playing pensively along with a keyboard harmony. The song is emotional and sad. The song is probably a social awareness message with ambient Street sounds included with the music track.", "data_idx": 2676, "number": 3, "label": "classical"} +{"file_name": "train_05084.png", "caption": "The low quality recording features a kid and a male laughing back and forth. There are some plastic impacts throughout it. The recording ends with a wide synth pad layered with sustained strings over which there is a low male vocal singing. It sounds joyful, happy and heartful.", "data_idx": 2681, "number": 0, "label": "hiphop"} +{"file_name": "train_05085.png", "caption": "The low quality recording features a kid and a male laughing back and forth. There are some plastic impacts throughout it. The recording ends with a wide synth pad layered with sustained strings over which there is a low male vocal singing. It sounds joyful, happy and heartful.", "data_idx": 2681, "number": 1, "label": "hiphop"} +{"file_name": "train_05086.png", "caption": "The low quality recording features a kid and a male laughing back and forth. There are some plastic impacts throughout it. The recording ends with a wide synth pad layered with sustained strings over which there is a low male vocal singing. It sounds joyful, happy and heartful.", "data_idx": 2681, "number": 2, "label": "hiphop"} +{"file_name": "train_05087.png", "caption": "The low quality recording features a kid and a male laughing back and forth. There are some plastic impacts throughout it. The recording ends with a wide synth pad layered with sustained strings over which there is a low male vocal singing. It sounds joyful, happy and heartful.", "data_idx": 2681, "number": 3, "label": "hiphop"} +{"file_name": "train_05088.png", "caption": "Two banjo players trade solos in this instrumental song. The song is medium tempo with banjos playing in a call and response manner and no other instrumentation. The song is energetic and has a middle eastern classical music vibe. The audio quality is average and recorded at Jo e.", "data_idx": 2684, "number": 0, "label": "jazz"} +{"file_name": "train_05089.png", "caption": "Two banjo players trade solos in this instrumental song. The song is medium tempo with banjos playing in a call and response manner and no other instrumentation. The song is energetic and has a middle eastern classical music vibe. The audio quality is average and recorded at Jo e.", "data_idx": 2684, "number": 1, "label": "jazz"} +{"file_name": "train_05090.png", "caption": "Two banjo players trade solos in this instrumental song. The song is medium tempo with banjos playing in a call and response manner and no other instrumentation. The song is energetic and has a middle eastern classical music vibe. The audio quality is average and recorded at Jo e.", "data_idx": 2684, "number": 2, "label": "jazz"} +{"file_name": "train_05091.png", "caption": "Two banjo players trade solos in this instrumental song. The song is medium tempo with banjos playing in a call and response manner and no other instrumentation. The song is energetic and has a middle eastern classical music vibe. The audio quality is average and recorded at Jo e.", "data_idx": 2684, "number": 3, "label": "jazz"} +{"file_name": "train_05092.png", "caption": "solo performance of a virtuosic didgeridoo player playing a fast beat with complex rhythms. Sounds like beat boxing.", "data_idx": 2685, "number": 0, "label": "jazz"} +{"file_name": "train_05093.png", "caption": "solo performance of a virtuosic didgeridoo player playing a fast beat with complex rhythms. Sounds like beat boxing.", "data_idx": 2685, "number": 1, "label": "jazz"} +{"file_name": "train_05094.png", "caption": "solo performance of a virtuosic didgeridoo player playing a fast beat with complex rhythms. Sounds like beat boxing.", "data_idx": 2685, "number": 2, "label": "jazz"} +{"file_name": "train_05095.png", "caption": "solo performance of a virtuosic didgeridoo player playing a fast beat with complex rhythms. Sounds like beat boxing.", "data_idx": 2685, "number": 3, "label": "jazz"} +{"file_name": "train_05096.png", "caption": "This music is electronic pop. The tempo is fast with synthesiser arrangements, enthusiastic drumming, a sharp , shrill piano accompaniment and vocal riffs. There is the sound of laughter in the background and distorted sounds caused due to electrical reactance, making the song, noisy, chaotic, confusing, busy and painful to listen to. The song in the background is a Synth pop but it is incoherent because of the inferior audio quality .", "data_idx": 2689, "number": 0, "label": "pop"} +{"file_name": "train_05097.png", "caption": "This music is electronic pop. The tempo is fast with synthesiser arrangements, enthusiastic drumming, a sharp , shrill piano accompaniment and vocal riffs. There is the sound of laughter in the background and distorted sounds caused due to electrical reactance, making the song, noisy, chaotic, confusing, busy and painful to listen to. The song in the background is a Synth pop but it is incoherent because of the inferior audio quality .", "data_idx": 2689, "number": 1, "label": "pop"} +{"file_name": "train_05098.png", "caption": "This music is electronic pop. The tempo is fast with synthesiser arrangements, enthusiastic drumming, a sharp , shrill piano accompaniment and vocal riffs. There is the sound of laughter in the background and distorted sounds caused due to electrical reactance, making the song, noisy, chaotic, confusing, busy and painful to listen to. The song in the background is a Synth pop but it is incoherent because of the inferior audio quality .", "data_idx": 2689, "number": 2, "label": "pop"} +{"file_name": "train_05099.png", "caption": "This music is electronic pop. The tempo is fast with synthesiser arrangements, enthusiastic drumming, a sharp , shrill piano accompaniment and vocal riffs. There is the sound of laughter in the background and distorted sounds caused due to electrical reactance, making the song, noisy, chaotic, confusing, busy and painful to listen to. The song in the background is a Synth pop but it is incoherent because of the inferior audio quality .", "data_idx": 2689, "number": 3, "label": "pop"} +{"file_name": "train_05100.png", "caption": "The rock music features a female voice singing a melody. The band that accompanies her consists of drums, bass guitar and electric guitar. The drums play a repetitive rhythm, the bass guitar also incorporates slides into its playing and the electric guitar plays a simple melody that's composed of repetitive notes.", "data_idx": 2690, "number": 0, "label": "rock"} +{"file_name": "train_05101.png", "caption": "The rock music features a female voice singing a melody. The band that accompanies her consists of drums, bass guitar and electric guitar. The drums play a repetitive rhythm, the bass guitar also incorporates slides into its playing and the electric guitar plays a simple melody that's composed of repetitive notes.", "data_idx": 2690, "number": 1, "label": "rock"} +{"file_name": "train_05102.png", "caption": "The rock music features a female voice singing a melody. The band that accompanies her consists of drums, bass guitar and electric guitar. The drums play a repetitive rhythm, the bass guitar also incorporates slides into its playing and the electric guitar plays a simple melody that's composed of repetitive notes.", "data_idx": 2690, "number": 2, "label": "rock"} +{"file_name": "train_05103.png", "caption": "The rock music features a female voice singing a melody. The band that accompanies her consists of drums, bass guitar and electric guitar. The drums play a repetitive rhythm, the bass guitar also incorporates slides into its playing and the electric guitar plays a simple melody that's composed of repetitive notes.", "data_idx": 2690, "number": 3, "label": "rock"} +{"file_name": "train_05104.png", "caption": "The low quality recording features a live performance of a regional Mexican song and it consists of passionate male vocal singing over groovy bass guitar, mellow synth keys melody and electric guitar melody, followed by shimmering tambourine, hi hats and punchy kick. It sounds passionate, emotional and soulful - like something you would hear at family gathering events.", "data_idx": 2693, "number": 0, "label": "blues"} +{"file_name": "train_05105.png", "caption": "The low quality recording features a live performance of a regional Mexican song and it consists of passionate male vocal singing over groovy bass guitar, mellow synth keys melody and electric guitar melody, followed by shimmering tambourine, hi hats and punchy kick. It sounds passionate, emotional and soulful - like something you would hear at family gathering events.", "data_idx": 2693, "number": 1, "label": "blues"} +{"file_name": "train_05106.png", "caption": "The low quality recording features a live performance of a regional Mexican song and it consists of passionate male vocal singing over groovy bass guitar, mellow synth keys melody and electric guitar melody, followed by shimmering tambourine, hi hats and punchy kick. It sounds passionate, emotional and soulful - like something you would hear at family gathering events.", "data_idx": 2693, "number": 2, "label": "blues"} +{"file_name": "train_05107.png", "caption": "The low quality recording features a live performance of a regional Mexican song and it consists of passionate male vocal singing over groovy bass guitar, mellow synth keys melody and electric guitar melody, followed by shimmering tambourine, hi hats and punchy kick. It sounds passionate, emotional and soulful - like something you would hear at family gathering events.", "data_idx": 2693, "number": 3, "label": "blues"} +{"file_name": "train_05108.png", "caption": "This is a pop music piece. There is a medium-to-high pitch male vocal singing melodically in the lead. The melody is being played by the strings and the piano. There is a loud but simple electronic drum beat in the rhythmic background. The piece is in major key, so there is an optimistic aura. The piece could be used in the soundtracks of teenage dramas. It could also work well in an advertisement jingle.", "data_idx": 2695, "number": 0, "label": "rock"} +{"file_name": "train_05109.png", "caption": "This is a pop music piece. There is a medium-to-high pitch male vocal singing melodically in the lead. The melody is being played by the strings and the piano. There is a loud but simple electronic drum beat in the rhythmic background. The piece is in major key, so there is an optimistic aura. The piece could be used in the soundtracks of teenage dramas. It could also work well in an advertisement jingle.", "data_idx": 2695, "number": 1, "label": "rock"} +{"file_name": "train_05110.png", "caption": "This is a pop music piece. There is a medium-to-high pitch male vocal singing melodically in the lead. The melody is being played by the strings and the piano. There is a loud but simple electronic drum beat in the rhythmic background. The piece is in major key, so there is an optimistic aura. The piece could be used in the soundtracks of teenage dramas. It could also work well in an advertisement jingle.", "data_idx": 2695, "number": 2, "label": "rock"} +{"file_name": "train_05111.png", "caption": "This is a pop music piece. There is a medium-to-high pitch male vocal singing melodically in the lead. The melody is being played by the strings and the piano. There is a loud but simple electronic drum beat in the rhythmic background. The piece is in major key, so there is an optimistic aura. The piece could be used in the soundtracks of teenage dramas. It could also work well in an advertisement jingle.", "data_idx": 2695, "number": 3, "label": "rock"} +{"file_name": "train_05112.png", "caption": "This is a poor quality Christian pop music compilation. There are many pieces sung by male and female voices melodically. The usual theme of the instrumental backing consists of a tune played in major key by an electric guitar and a bass guitar alongside a simple acoustic drum beat. The overall atmosphere is uplifting. This mix could be used in a movie to imply the sounds coming from a gospel radio station in passing.", "data_idx": 2696, "number": 0, "label": "metal"} +{"file_name": "train_05113.png", "caption": "This is a poor quality Christian pop music compilation. There are many pieces sung by male and female voices melodically. The usual theme of the instrumental backing consists of a tune played in major key by an electric guitar and a bass guitar alongside a simple acoustic drum beat. The overall atmosphere is uplifting. This mix could be used in a movie to imply the sounds coming from a gospel radio station in passing.", "data_idx": 2696, "number": 1, "label": "metal"} +{"file_name": "train_05114.png", "caption": "This is a poor quality Christian pop music compilation. There are many pieces sung by male and female voices melodically. The usual theme of the instrumental backing consists of a tune played in major key by an electric guitar and a bass guitar alongside a simple acoustic drum beat. The overall atmosphere is uplifting. This mix could be used in a movie to imply the sounds coming from a gospel radio station in passing.", "data_idx": 2696, "number": 2, "label": "metal"} +{"file_name": "train_05115.png", "caption": "This is a poor quality Christian pop music compilation. There are many pieces sung by male and female voices melodically. The usual theme of the instrumental backing consists of a tune played in major key by an electric guitar and a bass guitar alongside a simple acoustic drum beat. The overall atmosphere is uplifting. This mix could be used in a movie to imply the sounds coming from a gospel radio station in passing.", "data_idx": 2696, "number": 3, "label": "metal"} +{"file_name": "train_05116.png", "caption": "A backing song is being played containing percussion, an accordion -like sound playing the main melody and a bass. In the foreground you can hear game related noises and sounds that do not belong to the music. This song may be playing in a video-game.", "data_idx": 2697, "number": 0, "label": "hiphop"} +{"file_name": "train_05117.png", "caption": "A backing song is being played containing percussion, an accordion -like sound playing the main melody and a bass. In the foreground you can hear game related noises and sounds that do not belong to the music. This song may be playing in a video-game.", "data_idx": 2697, "number": 1, "label": "hiphop"} +{"file_name": "train_05118.png", "caption": "This is an instrumental marimba piece. Two marimbas are being played simultaneously. The performance is a complex one. The atmosphere is playful. Parts of this piece can be used to make a ringtone or to lift samples to use in a beat.", "data_idx": 2699, "number": 0, "label": "classical"} +{"file_name": "train_05119.png", "caption": "This is an instrumental marimba piece. Two marimbas are being played simultaneously. The performance is a complex one. The atmosphere is playful. Parts of this piece can be used to make a ringtone or to lift samples to use in a beat.", "data_idx": 2699, "number": 1, "label": "classical"} +{"file_name": "train_05120.png", "caption": "This is an instrumental marimba piece. Two marimbas are being played simultaneously. The performance is a complex one. The atmosphere is playful. Parts of this piece can be used to make a ringtone or to lift samples to use in a beat.", "data_idx": 2699, "number": 2, "label": "classical"} +{"file_name": "train_05121.png", "caption": "This is an instrumental marimba piece. Two marimbas are being played simultaneously. The performance is a complex one. The atmosphere is playful. Parts of this piece can be used to make a ringtone or to lift samples to use in a beat.", "data_idx": 2699, "number": 3, "label": "classical"} +{"file_name": "train_05122.png", "caption": "This song is full of reverb and delay in the beginning. A riser effect is rising up to break into the next part of the song. Then a digital drum with kick and snare comes in along with a monotone bassline. A synthesizer is playing a rhythmic, very simple and monotone melody on top. The sound-elements are all panning from left to right with a ping pong delay.", "data_idx": 2700, "number": 0, "label": "metal"} +{"file_name": "train_05123.png", "caption": "This song is full of reverb and delay in the beginning. A riser effect is rising up to break into the next part of the song. Then a digital drum with kick and snare comes in along with a monotone bassline. A synthesizer is playing a rhythmic, very simple and monotone melody on top. The sound-elements are all panning from left to right with a ping pong delay.", "data_idx": 2700, "number": 1, "label": "metal"} +{"file_name": "train_05124.png", "caption": "This song is full of reverb and delay in the beginning. A riser effect is rising up to break into the next part of the song. Then a digital drum with kick and snare comes in along with a monotone bassline. A synthesizer is playing a rhythmic, very simple and monotone melody on top. The sound-elements are all panning from left to right with a ping pong delay.", "data_idx": 2700, "number": 2, "label": "metal"} +{"file_name": "train_05125.png", "caption": "This song is full of reverb and delay in the beginning. A riser effect is rising up to break into the next part of the song. Then a digital drum with kick and snare comes in along with a monotone bassline. A synthesizer is playing a rhythmic, very simple and monotone melody on top. The sound-elements are all panning from left to right with a ping pong delay.", "data_idx": 2700, "number": 3, "label": "metal"} +{"file_name": "train_05126.png", "caption": "This is an acoustic piece. There is a male vocalist singing melodically. There is a simple tune being played on a ukulele. The atmosphere of the piece is easygoing. This piece could be used in the background of wholesome social media content.", "data_idx": 2701, "number": 0, "label": "rock"} +{"file_name": "train_05127.png", "caption": "This is an acoustic piece. There is a male vocalist singing melodically. There is a simple tune being played on a ukulele. The atmosphere of the piece is easygoing. This piece could be used in the background of wholesome social media content.", "data_idx": 2701, "number": 1, "label": "rock"} +{"file_name": "train_05128.png", "caption": "This is an acoustic piece. There is a male vocalist singing melodically. There is a simple tune being played on a ukulele. The atmosphere of the piece is easygoing. This piece could be used in the background of wholesome social media content.", "data_idx": 2701, "number": 2, "label": "rock"} +{"file_name": "train_05129.png", "caption": "This is an acoustic piece. There is a male vocalist singing melodically. There is a simple tune being played on a ukulele. The atmosphere of the piece is easygoing. This piece could be used in the background of wholesome social media content.", "data_idx": 2701, "number": 3, "label": "rock"} +{"file_name": "train_05130.png", "caption": "One acoustic guitar is strumming chords while the other one is playing a solo melody on top with bending notes in a pentatonic scale. This song may be playing at home practicing guitar.", "data_idx": 2702, "number": 0, "label": "classical"} +{"file_name": "train_05131.png", "caption": "One acoustic guitar is strumming chords while the other one is playing a solo melody on top with bending notes in a pentatonic scale. This song may be playing at home practicing guitar.", "data_idx": 2702, "number": 1, "label": "classical"} +{"file_name": "train_05132.png", "caption": "One acoustic guitar is strumming chords while the other one is playing a solo melody on top with bending notes in a pentatonic scale. This song may be playing at home practicing guitar.", "data_idx": 2702, "number": 2, "label": "classical"} +{"file_name": "train_05133.png", "caption": "One acoustic guitar is strumming chords while the other one is playing a solo melody on top with bending notes in a pentatonic scale. This song may be playing at home practicing guitar.", "data_idx": 2702, "number": 3, "label": "classical"} +{"file_name": "train_05134.png", "caption": "The drums are playing a complex groove full of tom hits and fill-ins. On every big hit a synth is playing a sound while e-guitars and another instrument are playing a countermelody. The song sounds like someone being chased by something fast and dangerous. This song may be playing in a game of a tv-show.", "data_idx": 2703, "number": 0, "label": "metal"} +{"file_name": "train_05135.png", "caption": "The drums are playing a complex groove full of tom hits and fill-ins. On every big hit a synth is playing a sound while e-guitars and another instrument are playing a countermelody. The song sounds like someone being chased by something fast and dangerous. This song may be playing in a game of a tv-show.", "data_idx": 2703, "number": 1, "label": "metal"} +{"file_name": "train_05136.png", "caption": "This song is an instrumental. The tempo is slow with an amplified organ playing an intense, sinister chord, followed by a cymbal ride and howling wind produced by wind machine and a chime.. The vibe of the music is spooky, dangerous, ghostly, suspenseful, sinister, grim and scary.", "data_idx": 2704, "number": 0, "label": "metal"} +{"file_name": "train_05137.png", "caption": "This song is an instrumental. The tempo is slow with an amplified organ playing an intense, sinister chord, followed by a cymbal ride and howling wind produced by wind machine and a chime.. The vibe of the music is spooky, dangerous, ghostly, suspenseful, sinister, grim and scary.", "data_idx": 2704, "number": 1, "label": "metal"} +{"file_name": "train_05138.png", "caption": "This song is an instrumental. The tempo is slow with an amplified organ playing an intense, sinister chord, followed by a cymbal ride and howling wind produced by wind machine and a chime.. The vibe of the music is spooky, dangerous, ghostly, suspenseful, sinister, grim and scary.", "data_idx": 2704, "number": 2, "label": "metal"} +{"file_name": "train_05139.png", "caption": "This song is an instrumental. The tempo is slow with an amplified organ playing an intense, sinister chord, followed by a cymbal ride and howling wind produced by wind machine and a chime.. The vibe of the music is spooky, dangerous, ghostly, suspenseful, sinister, grim and scary.", "data_idx": 2704, "number": 3, "label": "metal"} +{"file_name": "train_05140.png", "caption": "This music is a captivating Piano solo melody. The tempo is medium fast with no accompaniment. The suit is mellow, captivating , pleasant, soothing , engaging, charming and ambient. This music is a Classic Piano piece that sounds like the melody of a Hymn.", "data_idx": 2705, "number": 0, "label": "classical"} +{"file_name": "train_05141.png", "caption": "This music is a captivating Piano solo melody. The tempo is medium fast with no accompaniment. The suit is mellow, captivating , pleasant, soothing , engaging, charming and ambient. This music is a Classic Piano piece that sounds like the melody of a Hymn.", "data_idx": 2705, "number": 1, "label": "classical"} +{"file_name": "train_05142.png", "caption": "This music is a captivating Piano solo melody. The tempo is medium fast with no accompaniment. The suit is mellow, captivating , pleasant, soothing , engaging, charming and ambient. This music is a Classic Piano piece that sounds like the melody of a Hymn.", "data_idx": 2705, "number": 2, "label": "classical"} +{"file_name": "train_05143.png", "caption": "This music is a captivating Piano solo melody. The tempo is medium fast with no accompaniment. The suit is mellow, captivating , pleasant, soothing , engaging, charming and ambient. This music is a Classic Piano piece that sounds like the melody of a Hymn.", "data_idx": 2705, "number": 3, "label": "classical"} +{"file_name": "train_05144.png", "caption": "This is a mantra/meditation music piece. There is a male vocalist in the lead that is singing in a chant-like manner. The flute is playing a calming tune. There is an electronic sound effect that gives a texture of vibration in the background. A bass guitar can be heard playing notes every now and then. There is an immersive atmosphere to this piece. It could be playing in the background of a meditation video. It could also be played as an accompaniment piece for meditation courses.", "data_idx": 2706, "number": 0, "label": "classical"} +{"file_name": "train_05145.png", "caption": "This is a mantra/meditation music piece. There is a male vocalist in the lead that is singing in a chant-like manner. The flute is playing a calming tune. There is an electronic sound effect that gives a texture of vibration in the background. A bass guitar can be heard playing notes every now and then. There is an immersive atmosphere to this piece. It could be playing in the background of a meditation video. It could also be played as an accompaniment piece for meditation courses.", "data_idx": 2706, "number": 1, "label": "classical"} +{"file_name": "train_05146.png", "caption": "This is a mantra/meditation music piece. There is a male vocalist in the lead that is singing in a chant-like manner. The flute is playing a calming tune. There is an electronic sound effect that gives a texture of vibration in the background. A bass guitar can be heard playing notes every now and then. There is an immersive atmosphere to this piece. It could be playing in the background of a meditation video. It could also be played as an accompaniment piece for meditation courses.", "data_idx": 2706, "number": 2, "label": "classical"} +{"file_name": "train_05147.png", "caption": "This is a mantra/meditation music piece. There is a male vocalist in the lead that is singing in a chant-like manner. The flute is playing a calming tune. There is an electronic sound effect that gives a texture of vibration in the background. A bass guitar can be heard playing notes every now and then. There is an immersive atmosphere to this piece. It could be playing in the background of a meditation video. It could also be played as an accompaniment piece for meditation courses.", "data_idx": 2706, "number": 3, "label": "classical"} +{"file_name": "train_05148.png", "caption": "The low quality recording features an Acapella cover of a pop song and it consists of harmonizing mixed vocals singing and some beatboxing that mimics \"4 on the floor\" kick pattern. The recording is noisy and it sounds a bit roomy, since it was probably recorded with a phone. It sounds passionate and fun.", "data_idx": 2707, "number": 0, "label": "disco"} +{"file_name": "train_05149.png", "caption": "The low quality recording features an Acapella cover of a pop song and it consists of harmonizing mixed vocals singing and some beatboxing that mimics \"4 on the floor\" kick pattern. The recording is noisy and it sounds a bit roomy, since it was probably recorded with a phone. It sounds passionate and fun.", "data_idx": 2707, "number": 1, "label": "disco"} +{"file_name": "train_05150.png", "caption": "The low quality recording features an Acapella cover of a pop song and it consists of harmonizing mixed vocals singing and some beatboxing that mimics \"4 on the floor\" kick pattern. The recording is noisy and it sounds a bit roomy, since it was probably recorded with a phone. It sounds passionate and fun.", "data_idx": 2707, "number": 2, "label": "disco"} +{"file_name": "train_05151.png", "caption": "The low quality recording features an Acapella cover of a pop song and it consists of harmonizing mixed vocals singing and some beatboxing that mimics \"4 on the floor\" kick pattern. The recording is noisy and it sounds a bit roomy, since it was probably recorded with a phone. It sounds passionate and fun.", "data_idx": 2707, "number": 3, "label": "disco"} +{"file_name": "train_05152.png", "caption": "The low quality recording features a hip hop track that consists of flat male vocal rapping over smooth bass, high pitched female vocal, mellow piano melody, shimmering tambourine layered with punchy snare, followed by soft kick and crash cymbal hits. It sounds groovy and emotional, even though the recording is muffled and kind of dull, due to the bad mixing.", "data_idx": 2708, "number": 0, "label": "hiphop"} +{"file_name": "train_05153.png", "caption": "The low quality recording features a hip hop track that consists of flat male vocal rapping over smooth bass, high pitched female vocal, mellow piano melody, shimmering tambourine layered with punchy snare, followed by soft kick and crash cymbal hits. It sounds groovy and emotional, even though the recording is muffled and kind of dull, due to the bad mixing.", "data_idx": 2708, "number": 1, "label": "hiphop"} +{"file_name": "train_05154.png", "caption": "The low quality recording features a hip hop track that consists of flat male vocal rapping over smooth bass, high pitched female vocal, mellow piano melody, shimmering tambourine layered with punchy snare, followed by soft kick and crash cymbal hits. It sounds groovy and emotional, even though the recording is muffled and kind of dull, due to the bad mixing.", "data_idx": 2708, "number": 2, "label": "hiphop"} +{"file_name": "train_05155.png", "caption": "The low quality recording features a hip hop track that consists of flat male vocal rapping over smooth bass, high pitched female vocal, mellow piano melody, shimmering tambourine layered with punchy snare, followed by soft kick and crash cymbal hits. It sounds groovy and emotional, even though the recording is muffled and kind of dull, due to the bad mixing.", "data_idx": 2708, "number": 3, "label": "hiphop"} +{"file_name": "train_05156.png", "caption": "The electronic dance music features a female voice singing a short melody after which the song goes through a transition passage. After this a male voice can be heard singing a shorter melody. Throughout the music excerpt strings can be heard in the background as well as an electric guitar. The drums play a busy rhythm in the first half of the music passage. In the second half the synth bass kicks in.", "data_idx": 2709, "number": 0, "label": "pop"} +{"file_name": "train_05157.png", "caption": "The electronic dance music features a female voice singing a short melody after which the song goes through a transition passage. After this a male voice can be heard singing a shorter melody. Throughout the music excerpt strings can be heard in the background as well as an electric guitar. The drums play a busy rhythm in the first half of the music passage. In the second half the synth bass kicks in.", "data_idx": 2709, "number": 1, "label": "pop"} +{"file_name": "train_05158.png", "caption": "The electronic dance music features a female voice singing a short melody after which the song goes through a transition passage. After this a male voice can be heard singing a shorter melody. Throughout the music excerpt strings can be heard in the background as well as an electric guitar. The drums play a busy rhythm in the first half of the music passage. In the second half the synth bass kicks in.", "data_idx": 2709, "number": 2, "label": "pop"} +{"file_name": "train_05159.png", "caption": "The electronic dance music features a female voice singing a short melody after which the song goes through a transition passage. After this a male voice can be heard singing a shorter melody. Throughout the music excerpt strings can be heard in the background as well as an electric guitar. The drums play a busy rhythm in the first half of the music passage. In the second half the synth bass kicks in.", "data_idx": 2709, "number": 3, "label": "pop"} +{"file_name": "train_05160.png", "caption": "A male uses a vocal phrase to the rhythm of background music. The tempo is fast with vigorous drumming, keyboard arrangements and muffled sounds of blasts, people screaming and shooting. This song is aggressive, sinister, creepy, mysterious and spine-tingling. This song is an Electro Pop/Rock.", "data_idx": 2710, "number": 0, "label": "disco"} +{"file_name": "train_05161.png", "caption": "A male uses a vocal phrase to the rhythm of background music. The tempo is fast with vigorous drumming, keyboard arrangements and muffled sounds of blasts, people screaming and shooting. This song is aggressive, sinister, creepy, mysterious and spine-tingling. This song is an Electro Pop/Rock.", "data_idx": 2710, "number": 1, "label": "disco"} +{"file_name": "train_05162.png", "caption": "Someone is skillfully playing maracas playing different rhythms in the same tempo so they blend together. The audio-quality is poor.", "data_idx": 2711, "number": 0, "label": "hiphop"} +{"file_name": "train_05163.png", "caption": "Someone is skillfully playing maracas playing different rhythms in the same tempo so they blend together. The audio-quality is poor.", "data_idx": 2711, "number": 1, "label": "hiphop"} +{"file_name": "train_05164.png", "caption": "Someone is skillfully playing maracas playing different rhythms in the same tempo so they blend together. The audio-quality is poor.", "data_idx": 2711, "number": 2, "label": "hiphop"} +{"file_name": "train_05165.png", "caption": "Someone is skillfully playing maracas playing different rhythms in the same tempo so they blend together. The audio-quality is poor.", "data_idx": 2711, "number": 3, "label": "hiphop"} +{"file_name": "train_05166.png", "caption": "A male vocalist sings this emotional Christian Worship Song. The tempo is medium with energetic drumming,harmonious electric guitar , acoustic Guiana keyboard accompaniment and subtle bass. The song is a soft, mellow, emotional, pensive, devotional, Christian music.", "data_idx": 2712, "number": 0, "label": "disco"} +{"file_name": "train_05167.png", "caption": "A male vocalist sings this emotional Christian Worship Song. The tempo is medium with energetic drumming,harmonious electric guitar , acoustic Guiana keyboard accompaniment and subtle bass. The song is a soft, mellow, emotional, pensive, devotional, Christian music.", "data_idx": 2712, "number": 1, "label": "disco"} +{"file_name": "train_05168.png", "caption": "The drums is playing a beat that reminds of a slower version of reggaeton along with some shakers and other percussive elements that are slightly panned to the right side of the speakers. An e-bass is helping to create a mood for dancing. A plucked string instrument is playing an oriental melody accompanied by a string-section playing along and adding little melody-licks. You can hear some backing vocals shouting to the rhythm. This song may be playing at a cafe.", "data_idx": 2713, "number": 0, "label": "disco"} +{"file_name": "train_05169.png", "caption": "The drums is playing a beat that reminds of a slower version of reggaeton along with some shakers and other percussive elements that are slightly panned to the right side of the speakers. An e-bass is helping to create a mood for dancing. A plucked string instrument is playing an oriental melody accompanied by a string-section playing along and adding little melody-licks. You can hear some backing vocals shouting to the rhythm. This song may be playing at a cafe.", "data_idx": 2713, "number": 1, "label": "disco"} +{"file_name": "train_05170.png", "caption": "The drums is playing a beat that reminds of a slower version of reggaeton along with some shakers and other percussive elements that are slightly panned to the right side of the speakers. An e-bass is helping to create a mood for dancing. A plucked string instrument is playing an oriental melody accompanied by a string-section playing along and adding little melody-licks. You can hear some backing vocals shouting to the rhythm. This song may be playing at a cafe.", "data_idx": 2713, "number": 2, "label": "disco"} +{"file_name": "train_05171.png", "caption": "The drums is playing a beat that reminds of a slower version of reggaeton along with some shakers and other percussive elements that are slightly panned to the right side of the speakers. An e-bass is helping to create a mood for dancing. A plucked string instrument is playing an oriental melody accompanied by a string-section playing along and adding little melody-licks. You can hear some backing vocals shouting to the rhythm. This song may be playing at a cafe.", "data_idx": 2713, "number": 3, "label": "disco"} +{"file_name": "train_05172.png", "caption": "The song is an instrumental. The tempo is medium with a guitar strumming to different settings of an effects delay pedal with echoes and effects being heard. The song is an effects pedal demonstration. The audio quality is poor with hissing sounds.", "data_idx": 2714, "number": 0, "label": "jazz"} +{"file_name": "train_05173.png", "caption": "The song is an instrumental. The tempo is medium with a guitar strumming to different settings of an effects delay pedal with echoes and effects being heard. The song is an effects pedal demonstration. The audio quality is poor with hissing sounds.", "data_idx": 2714, "number": 1, "label": "jazz"} +{"file_name": "train_05174.png", "caption": "The song is an instrumental. The tempo is medium with a guitar strumming to different settings of an effects delay pedal with echoes and effects being heard. The song is an effects pedal demonstration. The audio quality is poor with hissing sounds.", "data_idx": 2714, "number": 2, "label": "jazz"} +{"file_name": "train_05175.png", "caption": "The song is an instrumental. The tempo is medium with a guitar strumming to different settings of an effects delay pedal with echoes and effects being heard. The song is an effects pedal demonstration. The audio quality is poor with hissing sounds.", "data_idx": 2714, "number": 3, "label": "jazz"} +{"file_name": "train_05176.png", "caption": "Soft singer songwriter folk rock with a gentle male vocal and acoustic guitar strumming. The vocal production is quite loud. Music for an international artsy cafe.", "data_idx": 2716, "number": 0, "label": "country"} +{"file_name": "train_05177.png", "caption": "Soft singer songwriter folk rock with a gentle male vocal and acoustic guitar strumming. The vocal production is quite loud. Music for an international artsy cafe.", "data_idx": 2716, "number": 1, "label": "country"} +{"file_name": "train_05178.png", "caption": "Soft singer songwriter folk rock with a gentle male vocal and acoustic guitar strumming. The vocal production is quite loud. Music for an international artsy cafe.", "data_idx": 2716, "number": 2, "label": "country"} +{"file_name": "train_05179.png", "caption": "Soft singer songwriter folk rock with a gentle male vocal and acoustic guitar strumming. The vocal production is quite loud. Music for an international artsy cafe.", "data_idx": 2716, "number": 3, "label": "country"} +{"file_name": "train_05180.png", "caption": "The low quality recording features Muffled drum roll followed by a widely spread explosion sound effect. The recording is noisy and it sounds scary.", "data_idx": 2719, "number": 0, "label": "blues"} +{"file_name": "train_05181.png", "caption": "The low quality recording features Muffled drum roll followed by a widely spread explosion sound effect. The recording is noisy and it sounds scary.", "data_idx": 2719, "number": 1, "label": "blues"} +{"file_name": "train_05182.png", "caption": "The low quality recording features Muffled drum roll followed by a widely spread explosion sound effect. The recording is noisy and it sounds scary.", "data_idx": 2719, "number": 2, "label": "blues"} +{"file_name": "train_05183.png", "caption": "The low quality recording features Muffled drum roll followed by a widely spread explosion sound effect. The recording is noisy and it sounds scary.", "data_idx": 2719, "number": 3, "label": "blues"} +{"file_name": "train_05184.png", "caption": "A male singer sings this Latin melody with backup singers in vocal harmony. The song is medium tempo with a brass band accompaniment, latin percussion and guitar accompaniment. The song is exciting and spirited. The song is perfect for Latin dancing. The song has a poor audio quality.", "data_idx": 2721, "number": 0, "label": "disco"} +{"file_name": "train_05185.png", "caption": "A male singer sings this Latin melody with backup singers in vocal harmony. The song is medium tempo with a brass band accompaniment, latin percussion and guitar accompaniment. The song is exciting and spirited. The song is perfect for Latin dancing. The song has a poor audio quality.", "data_idx": 2721, "number": 1, "label": "disco"} +{"file_name": "train_05186.png", "caption": "A male singer sings this Latin melody with backup singers in vocal harmony. The song is medium tempo with a brass band accompaniment, latin percussion and guitar accompaniment. The song is exciting and spirited. The song is perfect for Latin dancing. The song has a poor audio quality.", "data_idx": 2721, "number": 2, "label": "disco"} +{"file_name": "train_05187.png", "caption": "A male singer sings this Latin melody with backup singers in vocal harmony. The song is medium tempo with a brass band accompaniment, latin percussion and guitar accompaniment. The song is exciting and spirited. The song is perfect for Latin dancing. The song has a poor audio quality.", "data_idx": 2721, "number": 3, "label": "disco"} +{"file_name": "train_05188.png", "caption": "This is a hindi ballad piece. There is a male vocalist singing with a lot of shifting notes. The main theme in the background appears to be played by a dilruba and a harmonium. It is a heart-touching piece. This piece can be used in the soundtracks of Bollywood dramas.", "data_idx": 2723, "number": 0, "label": "classical"} +{"file_name": "train_05189.png", "caption": "This is a hindi ballad piece. There is a male vocalist singing with a lot of shifting notes. The main theme in the background appears to be played by a dilruba and a harmonium. It is a heart-touching piece. This piece can be used in the soundtracks of Bollywood dramas.", "data_idx": 2723, "number": 1, "label": "classical"} +{"file_name": "train_05190.png", "caption": "This is a salsa song with an upbeat and vibrant energy. It contains typical salsa instruments like the conga, the trumpet, and the piano. The percussion is upbeat and involves bongos and congas, and the singer is lively.", "data_idx": 2724, "number": 0, "label": "disco"} +{"file_name": "train_05191.png", "caption": "This is a salsa song with an upbeat and vibrant energy. It contains typical salsa instruments like the conga, the trumpet, and the piano. The percussion is upbeat and involves bongos and congas, and the singer is lively.", "data_idx": 2724, "number": 1, "label": "disco"} +{"file_name": "train_05192.png", "caption": "This is a salsa song with an upbeat and vibrant energy. It contains typical salsa instruments like the conga, the trumpet, and the piano. The percussion is upbeat and involves bongos and congas, and the singer is lively.", "data_idx": 2724, "number": 2, "label": "disco"} +{"file_name": "train_05193.png", "caption": "This is a salsa song with an upbeat and vibrant energy. It contains typical salsa instruments like the conga, the trumpet, and the piano. The percussion is upbeat and involves bongos and congas, and the singer is lively.", "data_idx": 2724, "number": 3, "label": "disco"} +{"file_name": "train_05194.png", "caption": "The Metal song features a low throaty male vocal singing over widely spread, aggressive and distorted electric guitars, groovy bass guitar, punchy snare, energetic cymbals and double pedal kick. In the second part of the loop, the instrumental calms down, as there is an arpeggiated piano melody over which a soft female vocal is singing. Overall it sounds energetic, aggressive and manic. The male vocal in the first part of the loop is leaning towards the left channel of the stereo image, making it sound unbalanced and therefore low quality.", "data_idx": 2725, "number": 0, "label": "metal"} +{"file_name": "train_05195.png", "caption": "The Metal song features a low throaty male vocal singing over widely spread, aggressive and distorted electric guitars, groovy bass guitar, punchy snare, energetic cymbals and double pedal kick. In the second part of the loop, the instrumental calms down, as there is an arpeggiated piano melody over which a soft female vocal is singing. Overall it sounds energetic, aggressive and manic. The male vocal in the first part of the loop is leaning towards the left channel of the stereo image, making it sound unbalanced and therefore low quality.", "data_idx": 2725, "number": 1, "label": "metal"} +{"file_name": "train_05196.png", "caption": "The Metal song features a low throaty male vocal singing over widely spread, aggressive and distorted electric guitars, groovy bass guitar, punchy snare, energetic cymbals and double pedal kick. In the second part of the loop, the instrumental calms down, as there is an arpeggiated piano melody over which a soft female vocal is singing. Overall it sounds energetic, aggressive and manic. The male vocal in the first part of the loop is leaning towards the left channel of the stereo image, making it sound unbalanced and therefore low quality.", "data_idx": 2725, "number": 2, "label": "metal"} +{"file_name": "train_05197.png", "caption": "The Metal song features a low throaty male vocal singing over widely spread, aggressive and distorted electric guitars, groovy bass guitar, punchy snare, energetic cymbals and double pedal kick. In the second part of the loop, the instrumental calms down, as there is an arpeggiated piano melody over which a soft female vocal is singing. Overall it sounds energetic, aggressive and manic. The male vocal in the first part of the loop is leaning towards the left channel of the stereo image, making it sound unbalanced and therefore low quality.", "data_idx": 2725, "number": 3, "label": "metal"} +{"file_name": "train_05198.png", "caption": "This is an instrumental funk music piece consisting of a Chapman stick solo. Due to the nature of the instrument, only the tapping technique is used which gives a funky vibe to the piece. This piece could be used in the background at a jazz club.", "data_idx": 2727, "number": 0, "label": "blues"} +{"file_name": "train_05199.png", "caption": "This is an instrumental funk music piece consisting of a Chapman stick solo. Due to the nature of the instrument, only the tapping technique is used which gives a funky vibe to the piece. This piece could be used in the background at a jazz club.", "data_idx": 2727, "number": 1, "label": "blues"} +{"file_name": "train_05200.png", "caption": "This is an instrumental funk music piece consisting of a Chapman stick solo. Due to the nature of the instrument, only the tapping technique is used which gives a funky vibe to the piece. This piece could be used in the background at a jazz club.", "data_idx": 2727, "number": 2, "label": "blues"} +{"file_name": "train_05201.png", "caption": "This is an instrumental funk music piece consisting of a Chapman stick solo. Due to the nature of the instrument, only the tapping technique is used which gives a funky vibe to the piece. This piece could be used in the background at a jazz club.", "data_idx": 2727, "number": 3, "label": "blues"} +{"file_name": "train_05202.png", "caption": "A male singer sings this groovy bop tune. The song is medium tempo with a groovy double bass playing, piano accompaniment, trumpet playing percussively and brush drumming rhythm. The song is entertaining and exciting. The song is a jazz dance tune with an electronica twist.", "data_idx": 2728, "number": 0, "label": "reggae"} +{"file_name": "train_05203.png", "caption": "A male singer sings this groovy bop tune. The song is medium tempo with a groovy double bass playing, piano accompaniment, trumpet playing percussively and brush drumming rhythm. The song is entertaining and exciting. The song is a jazz dance tune with an electronica twist.", "data_idx": 2728, "number": 1, "label": "reggae"} +{"file_name": "train_05204.png", "caption": "A male singer sings this groovy bop tune. The song is medium tempo with a groovy double bass playing, piano accompaniment, trumpet playing percussively and brush drumming rhythm. The song is entertaining and exciting. The song is a jazz dance tune with an electronica twist.", "data_idx": 2728, "number": 2, "label": "reggae"} +{"file_name": "train_05205.png", "caption": "A male singer sings this groovy bop tune. The song is medium tempo with a groovy double bass playing, piano accompaniment, trumpet playing percussively and brush drumming rhythm. The song is entertaining and exciting. The song is a jazz dance tune with an electronica twist.", "data_idx": 2728, "number": 3, "label": "reggae"} +{"file_name": "train_05206.png", "caption": "This music is instrumental. The tempo is fast with lively synthesiser arrangements and electronic beats. There are whooshing sounds in the background, with a male voice screaming in excitement and someone sipping liquid out of an almost empty glass. This music is superimposed over a home video.", "data_idx": 2729, "number": 0, "label": "metal"} +{"file_name": "train_05207.png", "caption": "This music is instrumental. The tempo is fast with lively synthesiser arrangements and electronic beats. There are whooshing sounds in the background, with a male voice screaming in excitement and someone sipping liquid out of an almost empty glass. This music is superimposed over a home video.", "data_idx": 2729, "number": 1, "label": "metal"} +{"file_name": "train_05208.png", "caption": "This music is instrumental. The tempo is fast with lively synthesiser arrangements and electronic beats. There are whooshing sounds in the background, with a male voice screaming in excitement and someone sipping liquid out of an almost empty glass. This music is superimposed over a home video.", "data_idx": 2729, "number": 2, "label": "metal"} +{"file_name": "train_05209.png", "caption": "This music is instrumental. The tempo is fast with lively synthesiser arrangements and electronic beats. There are whooshing sounds in the background, with a male voice screaming in excitement and someone sipping liquid out of an almost empty glass. This music is superimposed over a home video.", "data_idx": 2729, "number": 3, "label": "metal"} +{"file_name": "train_05210.png", "caption": "An instrumental western swing group featuring a violin or fiddle solo. The upright bass lays down a steady walking bassline while two jazz guitars accompanied by strumming chords. Accordion is also present, but drums are not.", "data_idx": 2734, "number": 0, "label": "jazz"} +{"file_name": "train_05211.png", "caption": "An instrumental western swing group featuring a violin or fiddle solo. The upright bass lays down a steady walking bassline while two jazz guitars accompanied by strumming chords. Accordion is also present, but drums are not.", "data_idx": 2734, "number": 1, "label": "jazz"} +{"file_name": "train_05212.png", "caption": "An instrumental western swing group featuring a violin or fiddle solo. The upright bass lays down a steady walking bassline while two jazz guitars accompanied by strumming chords. Accordion is also present, but drums are not.", "data_idx": 2734, "number": 2, "label": "jazz"} +{"file_name": "train_05213.png", "caption": "An instrumental western swing group featuring a violin or fiddle solo. The upright bass lays down a steady walking bassline while two jazz guitars accompanied by strumming chords. Accordion is also present, but drums are not.", "data_idx": 2734, "number": 3, "label": "jazz"} +{"file_name": "train_05214.png", "caption": "A female voice is singing emotionally along to an acoustic piano. In the background you can hear people laughing. This song may be playing in a tv-show.", "data_idx": 2739, "number": 0, "label": "pop"} +{"file_name": "train_05215.png", "caption": "A female voice is singing emotionally along to an acoustic piano. In the background you can hear people laughing. This song may be playing in a tv-show.", "data_idx": 2739, "number": 1, "label": "pop"} +{"file_name": "train_05216.png", "caption": "A female voice is singing emotionally along to an acoustic piano. In the background you can hear people laughing. This song may be playing in a tv-show.", "data_idx": 2739, "number": 2, "label": "pop"} +{"file_name": "train_05217.png", "caption": "A female voice is singing emotionally along to an acoustic piano. In the background you can hear people laughing. This song may be playing in a tv-show.", "data_idx": 2739, "number": 3, "label": "pop"} +{"file_name": "train_05218.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with synthesiser arrangements, punchy digital drumming, tambourine beats and keyboard harmony. The music is upbeat, punchy, groovy, youthful, buoyant and exciting. This song is Synth Pop.", "data_idx": 2741, "number": 0, "label": "hiphop"} +{"file_name": "train_05219.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with synthesiser arrangements, punchy digital drumming, tambourine beats and keyboard harmony. The music is upbeat, punchy, groovy, youthful, buoyant and exciting. This song is Synth Pop.", "data_idx": 2741, "number": 1, "label": "hiphop"} +{"file_name": "train_05220.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with synthesiser arrangements, punchy digital drumming, tambourine beats and keyboard harmony. The music is upbeat, punchy, groovy, youthful, buoyant and exciting. This song is Synth Pop.", "data_idx": 2741, "number": 2, "label": "hiphop"} +{"file_name": "train_05221.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with synthesiser arrangements, punchy digital drumming, tambourine beats and keyboard harmony. The music is upbeat, punchy, groovy, youthful, buoyant and exciting. This song is Synth Pop.", "data_idx": 2741, "number": 3, "label": "hiphop"} +{"file_name": "train_05222.png", "caption": "This is a glitch music piece. There is an edited sound effect coming from a computer start-up and shut-down mixed with a water sound effect. It has a bizarre atmosphere to it. It could be used in the soundtrack of a dystopian futuristic movie or a video game.", "data_idx": 2743, "number": 0, "label": "classical"} +{"file_name": "train_05223.png", "caption": "This is a glitch music piece. There is an edited sound effect coming from a computer start-up and shut-down mixed with a water sound effect. It has a bizarre atmosphere to it. It could be used in the soundtrack of a dystopian futuristic movie or a video game.", "data_idx": 2743, "number": 1, "label": "classical"} +{"file_name": "train_05224.png", "caption": "This is a glitch music piece. There is an edited sound effect coming from a computer start-up and shut-down mixed with a water sound effect. It has a bizarre atmosphere to it. It could be used in the soundtrack of a dystopian futuristic movie or a video game.", "data_idx": 2743, "number": 2, "label": "classical"} +{"file_name": "train_05225.png", "caption": "This is a glitch music piece. There is an edited sound effect coming from a computer start-up and shut-down mixed with a water sound effect. It has a bizarre atmosphere to it. It could be used in the soundtrack of a dystopian futuristic movie or a video game.", "data_idx": 2743, "number": 3, "label": "classical"} +{"file_name": "train_05226.png", "caption": "The country music features a male vocalist with a scratchy voice. Two acoustic guitars play a melodic intro riff that goes from melody to strumming. The strings are very sharp-sounding and bright. The atmosphere of the song is sad.", "data_idx": 2745, "number": 0, "label": "rock"} +{"file_name": "train_05227.png", "caption": "The country music features a male vocalist with a scratchy voice. Two acoustic guitars play a melodic intro riff that goes from melody to strumming. The strings are very sharp-sounding and bright. The atmosphere of the song is sad.", "data_idx": 2745, "number": 1, "label": "rock"} +{"file_name": "train_05228.png", "caption": "The country music features a male vocalist with a scratchy voice. Two acoustic guitars play a melodic intro riff that goes from melody to strumming. The strings are very sharp-sounding and bright. The atmosphere of the song is sad.", "data_idx": 2745, "number": 2, "label": "rock"} +{"file_name": "train_05229.png", "caption": "The country music features a male vocalist with a scratchy voice. Two acoustic guitars play a melodic intro riff that goes from melody to strumming. The strings are very sharp-sounding and bright. The atmosphere of the song is sad.", "data_idx": 2745, "number": 3, "label": "rock"} +{"file_name": "train_05230.png", "caption": "A synthesizer holds a note with increasingly wide vibrato then joins the string bass ensemble in playing a lurching, creeping melody. Sounds like music from a spooky video game. Fearful male muttering can also be heard.", "data_idx": 2746, "number": 0, "label": "classical"} +{"file_name": "train_05231.png", "caption": "A synthesizer holds a note with increasingly wide vibrato then joins the string bass ensemble in playing a lurching, creeping melody. Sounds like music from a spooky video game. Fearful male muttering can also be heard.", "data_idx": 2746, "number": 1, "label": "classical"} +{"file_name": "train_05232.png", "caption": "A synthesizer holds a note with increasingly wide vibrato then joins the string bass ensemble in playing a lurching, creeping melody. Sounds like music from a spooky video game. Fearful male muttering can also be heard.", "data_idx": 2746, "number": 2, "label": "classical"} +{"file_name": "train_05233.png", "caption": "A synthesizer holds a note with increasingly wide vibrato then joins the string bass ensemble in playing a lurching, creeping melody. Sounds like music from a spooky video game. Fearful male muttering can also be heard.", "data_idx": 2746, "number": 3, "label": "classical"} +{"file_name": "train_05234.png", "caption": "The low quality recording features a DJ manically scratching a hip hop song. It is a bit reverberant, noisy and in mono, as it was probably recorded with a poor quality microphone.", "data_idx": 2747, "number": 0, "label": "hiphop"} +{"file_name": "train_05235.png", "caption": "The low quality recording features a DJ manically scratching a hip hop song. It is a bit reverberant, noisy and in mono, as it was probably recorded with a poor quality microphone.", "data_idx": 2747, "number": 1, "label": "hiphop"} +{"file_name": "train_05236.png", "caption": "The low quality recording features a DJ manically scratching a hip hop song. It is a bit reverberant, noisy and in mono, as it was probably recorded with a poor quality microphone.", "data_idx": 2747, "number": 2, "label": "hiphop"} +{"file_name": "train_05237.png", "caption": "The low quality recording features a DJ manically scratching a hip hop song. It is a bit reverberant, noisy and in mono, as it was probably recorded with a poor quality microphone.", "data_idx": 2747, "number": 3, "label": "hiphop"} +{"file_name": "train_05238.png", "caption": "This is a live recording of a guitar being played through a high gain amp. The signal is clean at the beginning and switches to an overdrive or distortion tone. A humming noise is heard when the channel is switched to the distortion channel. There are no other instruments played in this clip apart from one guitar. The guitarist seems to be testing the clean and dirty channels of the guitar amplifier.", "data_idx": 2748, "number": 0, "label": "hiphop"} +{"file_name": "train_05239.png", "caption": "This is a live recording of a guitar being played through a high gain amp. The signal is clean at the beginning and switches to an overdrive or distortion tone. A humming noise is heard when the channel is switched to the distortion channel. There are no other instruments played in this clip apart from one guitar. The guitarist seems to be testing the clean and dirty channels of the guitar amplifier.", "data_idx": 2748, "number": 1, "label": "hiphop"} +{"file_name": "train_05240.png", "caption": "This is a live recording of a guitar being played through a high gain amp. The signal is clean at the beginning and switches to an overdrive or distortion tone. A humming noise is heard when the channel is switched to the distortion channel. There are no other instruments played in this clip apart from one guitar. The guitarist seems to be testing the clean and dirty channels of the guitar amplifier.", "data_idx": 2748, "number": 2, "label": "hiphop"} +{"file_name": "train_05241.png", "caption": "This is a live recording of a guitar being played through a high gain amp. The signal is clean at the beginning and switches to an overdrive or distortion tone. A humming noise is heard when the channel is switched to the distortion channel. There are no other instruments played in this clip apart from one guitar. The guitarist seems to be testing the clean and dirty channels of the guitar amplifier.", "data_idx": 2748, "number": 3, "label": "hiphop"} +{"file_name": "train_05242.png", "caption": "A piano is playing a ballad composition with a lot of reverb. This song may be playing as background music.", "data_idx": 2749, "number": 0, "label": "classical"} +{"file_name": "train_05243.png", "caption": "A piano is playing a ballad composition with a lot of reverb. This song may be playing as background music.", "data_idx": 2749, "number": 1, "label": "classical"} +{"file_name": "train_05244.png", "caption": "A piano is playing a ballad composition with a lot of reverb. This song may be playing as background music.", "data_idx": 2749, "number": 2, "label": "classical"} +{"file_name": "train_05245.png", "caption": "A piano is playing a ballad composition with a lot of reverb. This song may be playing as background music.", "data_idx": 2749, "number": 3, "label": "classical"} +{"file_name": "train_05246.png", "caption": "The low quality recording features a hip hop song sung with an addictive flow by flat double male vocals over arpeggiated piano melody, boomy, layered bass and kick hits, soft crash cymbal and claps. It sounds muddy and messy as the mix of the song is bad making the frequencies clash with each other - especially in the low end.", "data_idx": 2751, "number": 0, "label": "reggae"} +{"file_name": "train_05247.png", "caption": "The low quality recording features a hip hop song sung with an addictive flow by flat double male vocals over arpeggiated piano melody, boomy, layered bass and kick hits, soft crash cymbal and claps. It sounds muddy and messy as the mix of the song is bad making the frequencies clash with each other - especially in the low end.", "data_idx": 2751, "number": 1, "label": "reggae"} +{"file_name": "train_05248.png", "caption": "The low quality recording features a hip hop song sung with an addictive flow by flat double male vocals over arpeggiated piano melody, boomy, layered bass and kick hits, soft crash cymbal and claps. It sounds muddy and messy as the mix of the song is bad making the frequencies clash with each other - especially in the low end.", "data_idx": 2751, "number": 2, "label": "reggae"} +{"file_name": "train_05249.png", "caption": "The low quality recording features a hip hop song sung with an addictive flow by flat double male vocals over arpeggiated piano melody, boomy, layered bass and kick hits, soft crash cymbal and claps. It sounds muddy and messy as the mix of the song is bad making the frequencies clash with each other - especially in the low end.", "data_idx": 2751, "number": 3, "label": "reggae"} +{"file_name": "train_05250.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, intense drumming and ambient sounds of a helicopter, ambulance siren and wind. The music sounds sinister, grim, dangerous, urgent, panicky, catastrophic , exigent , acute, compelling and emergent. This is electronic music.", "data_idx": 2753, "number": 0, "label": "hiphop"} +{"file_name": "train_05251.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, intense drumming and ambient sounds of a helicopter, ambulance siren and wind. The music sounds sinister, grim, dangerous, urgent, panicky, catastrophic , exigent , acute, compelling and emergent. This is electronic music.", "data_idx": 2753, "number": 1, "label": "hiphop"} +{"file_name": "train_05252.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, intense drumming and ambient sounds of a helicopter, ambulance siren and wind. The music sounds sinister, grim, dangerous, urgent, panicky, catastrophic , exigent , acute, compelling and emergent. This is electronic music.", "data_idx": 2753, "number": 2, "label": "hiphop"} +{"file_name": "train_05253.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, intense drumming and ambient sounds of a helicopter, ambulance siren and wind. The music sounds sinister, grim, dangerous, urgent, panicky, catastrophic , exigent , acute, compelling and emergent. This is electronic music.", "data_idx": 2753, "number": 3, "label": "hiphop"} +{"file_name": "train_05254.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a fast tempo beat. Guitars play chords. The bass plays the root notes of the chords. The vocal melody follows a gospel style call and response theme. The main voice sings one line and the crowd responds by singing another line. The tempo of this song is fast. This is a low quality audio and other instruments cannot be identified.", "data_idx": 2754, "number": 0, "label": "metal"} +{"file_name": "train_05255.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a fast tempo beat. Guitars play chords. The bass plays the root notes of the chords. The vocal melody follows a gospel style call and response theme. The main voice sings one line and the crowd responds by singing another line. The tempo of this song is fast. This is a low quality audio and other instruments cannot be identified.", "data_idx": 2754, "number": 1, "label": "metal"} +{"file_name": "train_05256.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a fast tempo beat. Guitars play chords. The bass plays the root notes of the chords. The vocal melody follows a gospel style call and response theme. The main voice sings one line and the crowd responds by singing another line. The tempo of this song is fast. This is a low quality audio and other instruments cannot be identified.", "data_idx": 2754, "number": 2, "label": "metal"} +{"file_name": "train_05257.png", "caption": "This rock and roll song features a male voice singing the main melody. This is accompanied by percussion playing a fast tempo beat. Guitars play chords. The bass plays the root notes of the chords. The vocal melody follows a gospel style call and response theme. The main voice sings one line and the crowd responds by singing another line. The tempo of this song is fast. This is a low quality audio and other instruments cannot be identified.", "data_idx": 2754, "number": 3, "label": "metal"} +{"file_name": "train_05258.png", "caption": "This is an amateur recording of a boy singing along to a kids song playing on a TV. It is an educational song with a female voice in the lead. The melody is being played by an acoustic guitar while the rhythm is played by the electronic drums. The quality of the recording is quite poor. Samples lifted from this recording could still be useful in beat-making.", "data_idx": 2756, "number": 0, "label": "classical"} +{"file_name": "train_05259.png", "caption": "This is an amateur recording of a boy singing along to a kids song playing on a TV. It is an educational song with a female voice in the lead. The melody is being played by an acoustic guitar while the rhythm is played by the electronic drums. The quality of the recording is quite poor. Samples lifted from this recording could still be useful in beat-making.", "data_idx": 2756, "number": 1, "label": "classical"} +{"file_name": "train_05260.png", "caption": "This is an amateur recording of a boy singing along to a kids song playing on a TV. It is an educational song with a female voice in the lead. The melody is being played by an acoustic guitar while the rhythm is played by the electronic drums. The quality of the recording is quite poor. Samples lifted from this recording could still be useful in beat-making.", "data_idx": 2756, "number": 2, "label": "classical"} +{"file_name": "train_05261.png", "caption": "This is an amateur recording of a boy singing along to a kids song playing on a TV. It is an educational song with a female voice in the lead. The melody is being played by an acoustic guitar while the rhythm is played by the electronic drums. The quality of the recording is quite poor. Samples lifted from this recording could still be useful in beat-making.", "data_idx": 2756, "number": 3, "label": "classical"} +{"file_name": "train_05262.png", "caption": "This is a children's song that includes a clarinet melody that follows the vocal melody. There are children laughing and a child singing the main vocal melody. There's a child exclaiming joy. There's a subtle bassline.", "data_idx": 2758, "number": 0, "label": "hiphop"} +{"file_name": "train_05263.png", "caption": "This is a children's song that includes a clarinet melody that follows the vocal melody. There are children laughing and a child singing the main vocal melody. There's a child exclaiming joy. There's a subtle bassline.", "data_idx": 2758, "number": 1, "label": "hiphop"} +{"file_name": "train_05264.png", "caption": "This is a children's song that includes a clarinet melody that follows the vocal melody. There are children laughing and a child singing the main vocal melody. There's a child exclaiming joy. There's a subtle bassline.", "data_idx": 2758, "number": 2, "label": "hiphop"} +{"file_name": "train_05265.png", "caption": "This is a children's song that includes a clarinet melody that follows the vocal melody. There are children laughing and a child singing the main vocal melody. There's a child exclaiming joy. There's a subtle bassline.", "data_idx": 2758, "number": 3, "label": "hiphop"} +{"file_name": "train_05266.png", "caption": "An orchestra plays a waltz with low strings playing arpeggios and high strings taking the melody. The music has a quaint, lilting feel. There are mechanical sounds in the foreground.", "data_idx": 2759, "number": 0, "label": "disco"} +{"file_name": "train_05267.png", "caption": "An orchestra plays a waltz with low strings playing arpeggios and high strings taking the melody. The music has a quaint, lilting feel. There are mechanical sounds in the foreground.", "data_idx": 2759, "number": 1, "label": "disco"} +{"file_name": "train_05268.png", "caption": "This is an amateur acoustic rock performance of a Christmas song. There are three male voices singing the song. Two acoustic guitars and an electric guitar provide the melodic background. The players are stepping their foot on the ground for an added percussive effect to keep the rhythm.", "data_idx": 2760, "number": 0, "label": "rock"} +{"file_name": "train_05269.png", "caption": "This is an amateur acoustic rock performance of a Christmas song. There are three male voices singing the song. Two acoustic guitars and an electric guitar provide the melodic background. The players are stepping their foot on the ground for an added percussive effect to keep the rhythm.", "data_idx": 2760, "number": 1, "label": "rock"} +{"file_name": "train_05270.png", "caption": "The low quality recording features a passionate acoustic guitar melody in the right channel, chill electric guitar licks in the left channel of the stereo image and buzzy bass guitar in the middle. There is a wooden percussive playback playing in the background. The recording is very noisy.", "data_idx": 2763, "number": 0, "label": "blues"} +{"file_name": "train_05271.png", "caption": "The low quality recording features a passionate acoustic guitar melody in the right channel, chill electric guitar licks in the left channel of the stereo image and buzzy bass guitar in the middle. There is a wooden percussive playback playing in the background. The recording is very noisy.", "data_idx": 2763, "number": 1, "label": "blues"} +{"file_name": "train_05272.png", "caption": "The low quality recording features a passionate acoustic guitar melody in the right channel, chill electric guitar licks in the left channel of the stereo image and buzzy bass guitar in the middle. There is a wooden percussive playback playing in the background. The recording is very noisy.", "data_idx": 2763, "number": 2, "label": "blues"} +{"file_name": "train_05273.png", "caption": "The low quality recording features a passionate acoustic guitar melody in the right channel, chill electric guitar licks in the left channel of the stereo image and buzzy bass guitar in the middle. There is a wooden percussive playback playing in the background. The recording is very noisy.", "data_idx": 2763, "number": 3, "label": "blues"} +{"file_name": "train_05274.png", "caption": "A hard digital kick is playing along with a monotone bass sound. A malled instrument is playing a repetitive melody in the mid to high register. Evolving liquid synth sounds are rising into focus and up in pitch then a male voice sample comes in before the drum breaks into a new part with a snare sound. This may be playing at a rave in the woods.", "data_idx": 2764, "number": 0, "label": "hiphop"} +{"file_name": "train_05275.png", "caption": "A hard digital kick is playing along with a monotone bass sound. A malled instrument is playing a repetitive melody in the mid to high register. Evolving liquid synth sounds are rising into focus and up in pitch then a male voice sample comes in before the drum breaks into a new part with a snare sound. This may be playing at a rave in the woods.", "data_idx": 2764, "number": 1, "label": "hiphop"} +{"file_name": "train_05276.png", "caption": "A hard digital kick is playing along with a monotone bass sound. A malled instrument is playing a repetitive melody in the mid to high register. Evolving liquid synth sounds are rising into focus and up in pitch then a male voice sample comes in before the drum breaks into a new part with a snare sound. This may be playing at a rave in the woods.", "data_idx": 2764, "number": 2, "label": "hiphop"} +{"file_name": "train_05277.png", "caption": "A hard digital kick is playing along with a monotone bass sound. A malled instrument is playing a repetitive melody in the mid to high register. Evolving liquid synth sounds are rising into focus and up in pitch then a male voice sample comes in before the drum breaks into a new part with a snare sound. This may be playing at a rave in the woods.", "data_idx": 2764, "number": 3, "label": "hiphop"} +{"file_name": "train_05278.png", "caption": "This song contains a male voice repeating itself before continuing with its melody. It sounds like running through a sampler along with an electric drum that seems to be programmed, repeating itself with a kick, snare and a very sharp sounding industrial hihat/ride sound. This recording is of poor sound-quality and may be playing at home building a song.", "data_idx": 2765, "number": 0, "label": "hiphop"} +{"file_name": "train_05279.png", "caption": "This song contains a male voice repeating itself before continuing with its melody. It sounds like running through a sampler along with an electric drum that seems to be programmed, repeating itself with a kick, snare and a very sharp sounding industrial hihat/ride sound. This recording is of poor sound-quality and may be playing at home building a song.", "data_idx": 2765, "number": 1, "label": "hiphop"} +{"file_name": "train_05280.png", "caption": "This song contains a male voice repeating itself before continuing with its melody. It sounds like running through a sampler along with an electric drum that seems to be programmed, repeating itself with a kick, snare and a very sharp sounding industrial hihat/ride sound. This recording is of poor sound-quality and may be playing at home building a song.", "data_idx": 2765, "number": 2, "label": "hiphop"} +{"file_name": "train_05281.png", "caption": "This song contains a male voice repeating itself before continuing with its melody. It sounds like running through a sampler along with an electric drum that seems to be programmed, repeating itself with a kick, snare and a very sharp sounding industrial hihat/ride sound. This recording is of poor sound-quality and may be playing at home building a song.", "data_idx": 2765, "number": 3, "label": "hiphop"} +{"file_name": "train_05282.png", "caption": "This is an instrumental latin music piece. There is a rapidly-played acoustic guitar intro acting as a dance accompaniment. It has a lively atmosphere. This piece could be helpful in a latin dance course setting.", "data_idx": 2768, "number": 0, "label": "hiphop"} +{"file_name": "train_05283.png", "caption": "This is an instrumental latin music piece. There is a rapidly-played acoustic guitar intro acting as a dance accompaniment. It has a lively atmosphere. This piece could be helpful in a latin dance course setting.", "data_idx": 2768, "number": 1, "label": "hiphop"} +{"file_name": "train_05284.png", "caption": "This is an instrumental latin music piece. There is a rapidly-played acoustic guitar intro acting as a dance accompaniment. It has a lively atmosphere. This piece could be helpful in a latin dance course setting.", "data_idx": 2768, "number": 2, "label": "hiphop"} +{"file_name": "train_05285.png", "caption": "This is an instrumental latin music piece. There is a rapidly-played acoustic guitar intro acting as a dance accompaniment. It has a lively atmosphere. This piece could be helpful in a latin dance course setting.", "data_idx": 2768, "number": 3, "label": "hiphop"} +{"file_name": "train_05286.png", "caption": "This composition sounds calming as it is playing a melody with bell sounds then a wind sounds comes and the song changes to orchestral instruments playing strings and flutes. This song may be playing in an indie video game moving a cute figure through a dangerous but beautiful landscape.", "data_idx": 2769, "number": 0, "label": "classical"} +{"file_name": "train_05287.png", "caption": "This composition sounds calming as it is playing a melody with bell sounds then a wind sounds comes and the song changes to orchestral instruments playing strings and flutes. This song may be playing in an indie video game moving a cute figure through a dangerous but beautiful landscape.", "data_idx": 2769, "number": 1, "label": "classical"} +{"file_name": "train_05288.png", "caption": "This composition sounds calming as it is playing a melody with bell sounds then a wind sounds comes and the song changes to orchestral instruments playing strings and flutes. This song may be playing in an indie video game moving a cute figure through a dangerous but beautiful landscape.", "data_idx": 2769, "number": 2, "label": "classical"} +{"file_name": "train_05289.png", "caption": "This composition sounds calming as it is playing a melody with bell sounds then a wind sounds comes and the song changes to orchestral instruments playing strings and flutes. This song may be playing in an indie video game moving a cute figure through a dangerous but beautiful landscape.", "data_idx": 2769, "number": 3, "label": "classical"} +{"file_name": "train_05290.png", "caption": "A male vocalist sings this animated song. The tempo is slow, almost speech like with a vigorous Spanish guitar accompaniment and rhythmic tapping. The song is enthusiastic, vibrant, passionate, and energetic, with a dance groove for tap dancing or flamenco.", "data_idx": 2771, "number": 0, "label": "rock"} +{"file_name": "train_05291.png", "caption": "A male vocalist sings this animated song. The tempo is slow, almost speech like with a vigorous Spanish guitar accompaniment and rhythmic tapping. The song is enthusiastic, vibrant, passionate, and energetic, with a dance groove for tap dancing or flamenco.", "data_idx": 2771, "number": 1, "label": "rock"} +{"file_name": "train_05292.png", "caption": "A male vocalist sings this animated song. The tempo is slow, almost speech like with a vigorous Spanish guitar accompaniment and rhythmic tapping. The song is enthusiastic, vibrant, passionate, and energetic, with a dance groove for tap dancing or flamenco.", "data_idx": 2771, "number": 2, "label": "rock"} +{"file_name": "train_05293.png", "caption": "A male vocalist sings this animated song. The tempo is slow, almost speech like with a vigorous Spanish guitar accompaniment and rhythmic tapping. The song is enthusiastic, vibrant, passionate, and energetic, with a dance groove for tap dancing or flamenco.", "data_idx": 2771, "number": 3, "label": "rock"} +{"file_name": "train_05294.png", "caption": "This is the recording of a toilet factory. The flushing systems of the toilets are being tested with a stream of water. Samples could be derived to be used in sound effects for a beat.", "data_idx": 2772, "number": 0, "label": "blues"} +{"file_name": "train_05295.png", "caption": "This is the recording of a toilet factory. The flushing systems of the toilets are being tested with a stream of water. Samples could be derived to be used in sound effects for a beat.", "data_idx": 2772, "number": 1, "label": "blues"} +{"file_name": "train_05296.png", "caption": "This is the recording of a toilet factory. The flushing systems of the toilets are being tested with a stream of water. Samples could be derived to be used in sound effects for a beat.", "data_idx": 2772, "number": 2, "label": "blues"} +{"file_name": "train_05297.png", "caption": "This is the recording of a toilet factory. The flushing systems of the toilets are being tested with a stream of water. Samples could be derived to be used in sound effects for a beat.", "data_idx": 2772, "number": 3, "label": "blues"} +{"file_name": "train_05298.png", "caption": "The Reggae/Dub song features a subtle funky electric guitar melody with echoing guitar pedal effects on, punchy snare, soft kick hits, groovy bass and shimmering cymbals, while the wide harmonizing male vocals are singing over it. It sounds easygoing and chill, like something you would listen to on a beautiful Sunday afternoon.", "data_idx": 2775, "number": 0, "label": "reggae"} +{"file_name": "train_05299.png", "caption": "The Reggae/Dub song features a subtle funky electric guitar melody with echoing guitar pedal effects on, punchy snare, soft kick hits, groovy bass and shimmering cymbals, while the wide harmonizing male vocals are singing over it. It sounds easygoing and chill, like something you would listen to on a beautiful Sunday afternoon.", "data_idx": 2775, "number": 1, "label": "reggae"} +{"file_name": "train_05300.png", "caption": "The Reggae/Dub song features a subtle funky electric guitar melody with echoing guitar pedal effects on, punchy snare, soft kick hits, groovy bass and shimmering cymbals, while the wide harmonizing male vocals are singing over it. It sounds easygoing and chill, like something you would listen to on a beautiful Sunday afternoon.", "data_idx": 2775, "number": 2, "label": "reggae"} +{"file_name": "train_05301.png", "caption": "The Reggae/Dub song features a subtle funky electric guitar melody with echoing guitar pedal effects on, punchy snare, soft kick hits, groovy bass and shimmering cymbals, while the wide harmonizing male vocals are singing over it. It sounds easygoing and chill, like something you would listen to on a beautiful Sunday afternoon.", "data_idx": 2775, "number": 3, "label": "reggae"} +{"file_name": "train_05302.png", "caption": "A male singer sings this Latin dance tune. The song is medium tempo with trumpets, latin percussions; medium drumming rhythm, keyboard harmony and guitar accompaniment. The song is exciting and groovy. The audio quality is poor and is played for work out exercise.", "data_idx": 2782, "number": 0, "label": "metal"} +{"file_name": "train_05303.png", "caption": "A male singer sings this Latin dance tune. The song is medium tempo with trumpets, latin percussions; medium drumming rhythm, keyboard harmony and guitar accompaniment. The song is exciting and groovy. The audio quality is poor and is played for work out exercise.", "data_idx": 2782, "number": 1, "label": "metal"} +{"file_name": "train_05304.png", "caption": "A male singer sings this Latin dance tune. The song is medium tempo with trumpets, latin percussions; medium drumming rhythm, keyboard harmony and guitar accompaniment. The song is exciting and groovy. The audio quality is poor and is played for work out exercise.", "data_idx": 2782, "number": 2, "label": "metal"} +{"file_name": "train_05305.png", "caption": "A male singer sings this Latin dance tune. The song is medium tempo with trumpets, latin percussions; medium drumming rhythm, keyboard harmony and guitar accompaniment. The song is exciting and groovy. The audio quality is poor and is played for work out exercise.", "data_idx": 2782, "number": 3, "label": "metal"} +{"file_name": "train_05306.png", "caption": "The song is an instrumental. The tempo is medium with a distinctive reggae style backbeat drumming rhythm and a guitar playing rhythm along with a bass guitar solo. The song is extremely passionate and groovy in nature. The audio quality is poor.", "data_idx": 2783, "number": 0, "label": "reggae"} +{"file_name": "train_05307.png", "caption": "The song is an instrumental. The tempo is medium with a distinctive reggae style backbeat drumming rhythm and a guitar playing rhythm along with a bass guitar solo. The song is extremely passionate and groovy in nature. The audio quality is poor.", "data_idx": 2783, "number": 1, "label": "reggae"} +{"file_name": "train_05308.png", "caption": "The song is an instrumental. The tempo is medium with a distinctive reggae style backbeat drumming rhythm and a guitar playing rhythm along with a bass guitar solo. The song is extremely passionate and groovy in nature. The audio quality is poor.", "data_idx": 2783, "number": 2, "label": "reggae"} +{"file_name": "train_05309.png", "caption": "The song is an instrumental. The tempo is medium with a distinctive reggae style backbeat drumming rhythm and a guitar playing rhythm along with a bass guitar solo. The song is extremely passionate and groovy in nature. The audio quality is poor.", "data_idx": 2783, "number": 3, "label": "reggae"} +{"file_name": "train_05310.png", "caption": "This is a simple dubstep piece. Electronic drums and percussion are played at the rhythmic background at 120 BPM. There is a high-pitched synth and a fuzzy synth bass playing a simple melody. The all-around quality of the sounds are a bit old-fashioned, reminiscing of the early 2000s. The piece has a danceable, trippy feel to it. It could be used in a retro-themed venue.", "data_idx": 2784, "number": 0, "label": "hiphop"} +{"file_name": "train_05311.png", "caption": "This is a simple dubstep piece. Electronic drums and percussion are played at the rhythmic background at 120 BPM. There is a high-pitched synth and a fuzzy synth bass playing a simple melody. The all-around quality of the sounds are a bit old-fashioned, reminiscing of the early 2000s. The piece has a danceable, trippy feel to it. It could be used in a retro-themed venue.", "data_idx": 2784, "number": 1, "label": "hiphop"} +{"file_name": "train_05312.png", "caption": "This is a simple dubstep piece. Electronic drums and percussion are played at the rhythmic background at 120 BPM. There is a high-pitched synth and a fuzzy synth bass playing a simple melody. The all-around quality of the sounds are a bit old-fashioned, reminiscing of the early 2000s. The piece has a danceable, trippy feel to it. It could be used in a retro-themed venue.", "data_idx": 2784, "number": 2, "label": "hiphop"} +{"file_name": "train_05313.png", "caption": "This is a simple dubstep piece. Electronic drums and percussion are played at the rhythmic background at 120 BPM. There is a high-pitched synth and a fuzzy synth bass playing a simple melody. The all-around quality of the sounds are a bit old-fashioned, reminiscing of the early 2000s. The piece has a danceable, trippy feel to it. It could be used in a retro-themed venue.", "data_idx": 2784, "number": 3, "label": "hiphop"} +{"file_name": "train_05314.png", "caption": "The salsa music features a melody being played by an electric guitar in unison with another instrument like flute or clarinet. The percussion is latin specific and drives the pulse of the music forward. A bass guitar alternates between playing the melody in unison with the electric guitar and playing something different. At the end of the music excerpt a brass section can be heard playing a short accentuated melody.", "data_idx": 2785, "number": 0, "label": "rock"} +{"file_name": "train_05315.png", "caption": "The salsa music features a melody being played by an electric guitar in unison with another instrument like flute or clarinet. The percussion is latin specific and drives the pulse of the music forward. A bass guitar alternates between playing the melody in unison with the electric guitar and playing something different. At the end of the music excerpt a brass section can be heard playing a short accentuated melody.", "data_idx": 2785, "number": 1, "label": "rock"} +{"file_name": "train_05316.png", "caption": "The salsa music features a melody being played by an electric guitar in unison with another instrument like flute or clarinet. The percussion is latin specific and drives the pulse of the music forward. A bass guitar alternates between playing the melody in unison with the electric guitar and playing something different. At the end of the music excerpt a brass section can be heard playing a short accentuated melody.", "data_idx": 2785, "number": 2, "label": "rock"} +{"file_name": "train_05317.png", "caption": "The salsa music features a melody being played by an electric guitar in unison with another instrument like flute or clarinet. The percussion is latin specific and drives the pulse of the music forward. A bass guitar alternates between playing the melody in unison with the electric guitar and playing something different. At the end of the music excerpt a brass section can be heard playing a short accentuated melody.", "data_idx": 2785, "number": 3, "label": "rock"} +{"file_name": "train_05318.png", "caption": "A male vocalist sings this melancholic country song. The tempo is slow with acoustic guitar lead and harmony with another string instrument accompanying. The song is soft, mellow, sad, pensive, melancholic and poignant with a sweet , pleasant melody. This song is a Classic Country song.", "data_idx": 2786, "number": 0, "label": "country"} +{"file_name": "train_05319.png", "caption": "A male vocalist sings this melancholic country song. The tempo is slow with acoustic guitar lead and harmony with another string instrument accompanying. The song is soft, mellow, sad, pensive, melancholic and poignant with a sweet , pleasant melody. This song is a Classic Country song.", "data_idx": 2786, "number": 1, "label": "country"} +{"file_name": "train_05320.png", "caption": "A male vocalist sings this melancholic country song. The tempo is slow with acoustic guitar lead and harmony with another string instrument accompanying. The song is soft, mellow, sad, pensive, melancholic and poignant with a sweet , pleasant melody. This song is a Classic Country song.", "data_idx": 2786, "number": 2, "label": "country"} +{"file_name": "train_05321.png", "caption": "A male vocalist sings this melancholic country song. The tempo is slow with acoustic guitar lead and harmony with another string instrument accompanying. The song is soft, mellow, sad, pensive, melancholic and poignant with a sweet , pleasant melody. This song is a Classic Country song.", "data_idx": 2786, "number": 3, "label": "country"} +{"file_name": "train_05322.png", "caption": "This song contains bells playing a melody sounding like a lullaby. In the background you can hear people talking. This song may be playing near a church during holidays.", "data_idx": 2788, "number": 0, "label": "classical"} +{"file_name": "train_05323.png", "caption": "This song contains bells playing a melody sounding like a lullaby. In the background you can hear people talking. This song may be playing near a church during holidays.", "data_idx": 2788, "number": 1, "label": "classical"} +{"file_name": "train_05324.png", "caption": "This song contains bells playing a melody sounding like a lullaby. In the background you can hear people talking. This song may be playing near a church during holidays.", "data_idx": 2788, "number": 2, "label": "classical"} +{"file_name": "train_05325.png", "caption": "This song contains bells playing a melody sounding like a lullaby. In the background you can hear people talking. This song may be playing near a church during holidays.", "data_idx": 2788, "number": 3, "label": "classical"} +{"file_name": "train_05326.png", "caption": "The low quality recording features a lullaby song that consists of an intimate, soft male vocal singing over arpeggiated acoustic guitar melody and wide sustained strings melody. It is a bit noisy and there is a tinny metallic impact towards the end of the loop. It sounds soft, mellow and emotional.", "data_idx": 2789, "number": 0, "label": "rock"} +{"file_name": "train_05327.png", "caption": "The low quality recording features a lullaby song that consists of an intimate, soft male vocal singing over arpeggiated acoustic guitar melody and wide sustained strings melody. It is a bit noisy and there is a tinny metallic impact towards the end of the loop. It sounds soft, mellow and emotional.", "data_idx": 2789, "number": 1, "label": "rock"} +{"file_name": "train_05328.png", "caption": "The low quality recording features a lullaby song that consists of an intimate, soft male vocal singing over arpeggiated acoustic guitar melody and wide sustained strings melody. It is a bit noisy and there is a tinny metallic impact towards the end of the loop. It sounds soft, mellow and emotional.", "data_idx": 2789, "number": 2, "label": "rock"} +{"file_name": "train_05329.png", "caption": "The low quality recording features a lullaby song that consists of an intimate, soft male vocal singing over arpeggiated acoustic guitar melody and wide sustained strings melody. It is a bit noisy and there is a tinny metallic impact towards the end of the loop. It sounds soft, mellow and emotional.", "data_idx": 2789, "number": 3, "label": "rock"} +{"file_name": "train_05330.png", "caption": "A classical, slightly jazzy piano is playing a lovely composition with a lot of reverb. During the song you can hear footsteps. Someone is running through water. Then at the end someone is burping really loud. This whole composition with the burping could be part of a funny embarrassing scene in a movie.", "data_idx": 2791, "number": 0, "label": "hiphop"} +{"file_name": "train_05331.png", "caption": "A classical, slightly jazzy piano is playing a lovely composition with a lot of reverb. During the song you can hear footsteps. Someone is running through water. Then at the end someone is burping really loud. This whole composition with the burping could be part of a funny embarrassing scene in a movie.", "data_idx": 2791, "number": 1, "label": "hiphop"} +{"file_name": "train_05332.png", "caption": "This is a country music piece that is played in an instrument lesson recording. The steel guitar is playing a mellow tune while at the forefront while there is a backing composed of the acoustic guitar and the acoustic drums. There is a relaxing and psychedelic feel to the piece. This music could suit well in the soundtrack of a feelgood/comedy movie. It could also be playing in the background at a shopping mall.", "data_idx": 2794, "number": 0, "label": "classical"} +{"file_name": "train_05333.png", "caption": "This is a country music piece that is played in an instrument lesson recording. The steel guitar is playing a mellow tune while at the forefront while there is a backing composed of the acoustic guitar and the acoustic drums. There is a relaxing and psychedelic feel to the piece. This music could suit well in the soundtrack of a feelgood/comedy movie. It could also be playing in the background at a shopping mall.", "data_idx": 2794, "number": 1, "label": "classical"} +{"file_name": "train_05334.png", "caption": "Something like a jukebox or kid's toy is playing a sweet melody for babies while in the foreground a real baby is making noises with its voice. This seems to be an amateur recording. This song may be played to entertain a baby.", "data_idx": 2795, "number": 0, "label": "classical"} +{"file_name": "train_05335.png", "caption": "Something like a jukebox or kid's toy is playing a sweet melody for babies while in the foreground a real baby is making noises with its voice. This seems to be an amateur recording. This song may be played to entertain a baby.", "data_idx": 2795, "number": 1, "label": "classical"} +{"file_name": "train_05336.png", "caption": "Something like a jukebox or kid's toy is playing a sweet melody for babies while in the foreground a real baby is making noises with its voice. This seems to be an amateur recording. This song may be played to entertain a baby.", "data_idx": 2795, "number": 2, "label": "classical"} +{"file_name": "train_05337.png", "caption": "Something like a jukebox or kid's toy is playing a sweet melody for babies while in the foreground a real baby is making noises with its voice. This seems to be an amateur recording. This song may be played to entertain a baby.", "data_idx": 2795, "number": 3, "label": "classical"} diff --git a/data/train/metadata_0010.jsonl b/data/train/metadata_0010.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a197a61f91b42794b306871f5136b48933c577ee --- /dev/null +++ b/data/train/metadata_0010.jsonl @@ -0,0 +1,374 @@ +{"file_name": "train_05338.png", "caption": "This is a piece from a movie theme. There is a cinematic synth being played to create a dramatic effect. There are a lot of sound effects such as explosions, thunderstorms, falling objects and engine sounds. The atmosphere is violent and filled with suspense. This piece could be used to lift samples from. These samples could be used to amplify movie scenes and video game sequences.", "data_idx": 3000, "number": 0, "label": "metal"} +{"file_name": "train_05339.png", "caption": "This is a piece from a movie theme. There is a cinematic synth being played to create a dramatic effect. There are a lot of sound effects such as explosions, thunderstorms, falling objects and engine sounds. The atmosphere is violent and filled with suspense. This piece could be used to lift samples from. These samples could be used to amplify movie scenes and video game sequences.", "data_idx": 3000, "number": 1, "label": "metal"} +{"file_name": "train_05340.png", "caption": "This is a pop music piece. There is a female voice that sings passionately at a high volume. The rhythmic background is provided by the acoustic drums. The melody is being played by a synthesizer with a strong bass in the background. There is a vibrant and romantic feel to it. This piece could be played at weddings or in the soundtracks of romance series.", "data_idx": 3003, "number": 0, "label": "pop"} +{"file_name": "train_05341.png", "caption": "This is a pop music piece. There is a female voice that sings passionately at a high volume. The rhythmic background is provided by the acoustic drums. The melody is being played by a synthesizer with a strong bass in the background. There is a vibrant and romantic feel to it. This piece could be played at weddings or in the soundtracks of romance series.", "data_idx": 3003, "number": 1, "label": "pop"} +{"file_name": "train_05342.png", "caption": "This is a pop music piece. There is a female voice that sings passionately at a high volume. The rhythmic background is provided by the acoustic drums. The melody is being played by a synthesizer with a strong bass in the background. There is a vibrant and romantic feel to it. This piece could be played at weddings or in the soundtracks of romance series.", "data_idx": 3003, "number": 2, "label": "pop"} +{"file_name": "train_05343.png", "caption": "This is a pop music piece. There is a female voice that sings passionately at a high volume. The rhythmic background is provided by the acoustic drums. The melody is being played by a synthesizer with a strong bass in the background. There is a vibrant and romantic feel to it. This piece could be played at weddings or in the soundtracks of romance series.", "data_idx": 3003, "number": 3, "label": "pop"} +{"file_name": "train_05344.png", "caption": "The low quality recording features a cover of traditional folk song and it consists of reverberant, passionate female vocal singing over repetitive percussive instrument and plucked strings melody. It sounds passionate, cultural and emotional.", "data_idx": 3005, "number": 0, "label": "classical"} +{"file_name": "train_05345.png", "caption": "The low quality recording features a cover of traditional folk song and it consists of reverberant, passionate female vocal singing over repetitive percussive instrument and plucked strings melody. It sounds passionate, cultural and emotional.", "data_idx": 3005, "number": 1, "label": "classical"} +{"file_name": "train_05346.png", "caption": "The low quality recording features a cover of traditional folk song and it consists of reverberant, passionate female vocal singing over repetitive percussive instrument and plucked strings melody. It sounds passionate, cultural and emotional.", "data_idx": 3005, "number": 2, "label": "classical"} +{"file_name": "train_05347.png", "caption": "The low quality recording features a cover of traditional folk song and it consists of reverberant, passionate female vocal singing over repetitive percussive instrument and plucked strings melody. It sounds passionate, cultural and emotional.", "data_idx": 3005, "number": 3, "label": "classical"} +{"file_name": "train_05348.png", "caption": "The music features a male male voice singing a melody that repeats one time. Backing the singer are other male voices that sing in harmony. The instrumental part consists of a drum kit and a bass guitar that blend together to drive the pulse of the music forward.", "data_idx": 3006, "number": 0, "label": "rock"} +{"file_name": "train_05349.png", "caption": "The music features a male male voice singing a melody that repeats one time. Backing the singer are other male voices that sing in harmony. The instrumental part consists of a drum kit and a bass guitar that blend together to drive the pulse of the music forward.", "data_idx": 3006, "number": 1, "label": "rock"} +{"file_name": "train_05350.png", "caption": "The music features a male male voice singing a melody that repeats one time. Backing the singer are other male voices that sing in harmony. The instrumental part consists of a drum kit and a bass guitar that blend together to drive the pulse of the music forward.", "data_idx": 3006, "number": 2, "label": "rock"} +{"file_name": "train_05351.png", "caption": "The music features a male male voice singing a melody that repeats one time. Backing the singer are other male voices that sing in harmony. The instrumental part consists of a drum kit and a bass guitar that blend together to drive the pulse of the music forward.", "data_idx": 3006, "number": 3, "label": "rock"} +{"file_name": "train_05352.png", "caption": "The song is an instrumental. The tempo is medium and changes as the player changes the lick. The guitar is played solo styling with jarring string action. Playing amateur music is like a music lesson. The song is a bass guitar tutorial and sounds amateurish. The audio quality is poor.", "data_idx": 3007, "number": 0, "label": "blues"} +{"file_name": "train_05353.png", "caption": "The song is an instrumental. The tempo is medium and changes as the player changes the lick. The guitar is played solo styling with jarring string action. Playing amateur music is like a music lesson. The song is a bass guitar tutorial and sounds amateurish. The audio quality is poor.", "data_idx": 3007, "number": 1, "label": "blues"} +{"file_name": "train_05354.png", "caption": "The song is an instrumental. The tempo is medium and changes as the player changes the lick. The guitar is played solo styling with jarring string action. Playing amateur music is like a music lesson. The song is a bass guitar tutorial and sounds amateurish. The audio quality is poor.", "data_idx": 3007, "number": 2, "label": "blues"} +{"file_name": "train_05355.png", "caption": "The song is an instrumental. The tempo is medium and changes as the player changes the lick. The guitar is played solo styling with jarring string action. Playing amateur music is like a music lesson. The song is a bass guitar tutorial and sounds amateurish. The audio quality is poor.", "data_idx": 3007, "number": 3, "label": "blues"} +{"file_name": "train_05356.png", "caption": "This is electronic dance music. The tempo is fast with a turntable output, synthesiser arrangement ,digital drum beats and loud sounds of clanging, crashing and tapping superimposed on the music. The music is youthful, punchy, buoyant and enthusiastic with a dance groove. This music is EDM.", "data_idx": 3008, "number": 0, "label": "reggae"} +{"file_name": "train_05357.png", "caption": "This is electronic dance music. The tempo is fast with a turntable output, synthesiser arrangement ,digital drum beats and loud sounds of clanging, crashing and tapping superimposed on the music. The music is youthful, punchy, buoyant and enthusiastic with a dance groove. This music is EDM.", "data_idx": 3008, "number": 1, "label": "reggae"} +{"file_name": "train_05358.png", "caption": "This is electronic dance music. The tempo is fast with a turntable output, synthesiser arrangement ,digital drum beats and loud sounds of clanging, crashing and tapping superimposed on the music. The music is youthful, punchy, buoyant and enthusiastic with a dance groove. This music is EDM.", "data_idx": 3008, "number": 2, "label": "reggae"} +{"file_name": "train_05359.png", "caption": "This is electronic dance music. The tempo is fast with a turntable output, synthesiser arrangement ,digital drum beats and loud sounds of clanging, crashing and tapping superimposed on the music. The music is youthful, punchy, buoyant and enthusiastic with a dance groove. This music is EDM.", "data_idx": 3008, "number": 3, "label": "reggae"} +{"file_name": "train_05360.png", "caption": "The low quality recording features hip hop beatboxing. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3010, "number": 0, "label": "blues"} +{"file_name": "train_05361.png", "caption": "The low quality recording features hip hop beatboxing. The recording is noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3010, "number": 1, "label": "blues"} +{"file_name": "train_05362.png", "caption": "The low quality recording features metallic and robotic sound effects which makes it sound industrial. The recording is very noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3012, "number": 0, "label": "classical"} +{"file_name": "train_05363.png", "caption": "The low quality recording features metallic and robotic sound effects which makes it sound industrial. The recording is very noisy and in mono, as it was probably recorded with a phone.", "data_idx": 3012, "number": 1, "label": "classical"} +{"file_name": "train_05364.png", "caption": "A classical composition containing strings playing a short repeating melody. You can hear a lot of background noises that seem to come from cars racing. This is an amateur recording. This song may be playing sitting in a limousine.", "data_idx": 3013, "number": 0, "label": "classical"} +{"file_name": "train_05365.png", "caption": "A classical composition containing strings playing a short repeating melody. You can hear a lot of background noises that seem to come from cars racing. This is an amateur recording. This song may be playing sitting in a limousine.", "data_idx": 3013, "number": 1, "label": "classical"} +{"file_name": "train_05366.png", "caption": "A classical composition containing strings playing a short repeating melody. You can hear a lot of background noises that seem to come from cars racing. This is an amateur recording. This song may be playing sitting in a limousine.", "data_idx": 3013, "number": 2, "label": "classical"} +{"file_name": "train_05367.png", "caption": "A classical composition containing strings playing a short repeating melody. You can hear a lot of background noises that seem to come from cars racing. This is an amateur recording. This song may be playing sitting in a limousine.", "data_idx": 3013, "number": 3, "label": "classical"} +{"file_name": "train_05368.png", "caption": "The song is an instrumental. The song is a slow tempo with a stringed instrument playing a poignant melody, a strong bass line and a subtle percussive rhythm. The song is rich in tradition and poignant. The song has poor audio quality with hissing disturbances.", "data_idx": 3015, "number": 0, "label": "jazz"} +{"file_name": "train_05369.png", "caption": "The song is an instrumental. The song is a slow tempo with a stringed instrument playing a poignant melody, a strong bass line and a subtle percussive rhythm. The song is rich in tradition and poignant. The song has poor audio quality with hissing disturbances.", "data_idx": 3015, "number": 1, "label": "jazz"} +{"file_name": "train_05370.png", "caption": "The song is an instrumental. The song is a slow tempo with a stringed instrument playing a poignant melody, a strong bass line and a subtle percussive rhythm. The song is rich in tradition and poignant. The song has poor audio quality with hissing disturbances.", "data_idx": 3015, "number": 2, "label": "jazz"} +{"file_name": "train_05371.png", "caption": "The song is an instrumental. The song is a slow tempo with a stringed instrument playing a poignant melody, a strong bass line and a subtle percussive rhythm. The song is rich in tradition and poignant. The song has poor audio quality with hissing disturbances.", "data_idx": 3015, "number": 3, "label": "jazz"} +{"file_name": "train_05372.png", "caption": "The low quality recording features a male beatboxing through a didgeridoo. There is a sound of inhaling too. The recording is noisy, in mono and buzzy, as it was recorded with a poor quality microphone.", "data_idx": 3016, "number": 0, "label": "blues"} +{"file_name": "train_05373.png", "caption": "The low quality recording features a male beatboxing through a didgeridoo. There is a sound of inhaling too. The recording is noisy, in mono and buzzy, as it was recorded with a poor quality microphone.", "data_idx": 3016, "number": 1, "label": "blues"} +{"file_name": "train_05374.png", "caption": "The low quality recording features a male beatboxing through a didgeridoo. There is a sound of inhaling too. The recording is noisy, in mono and buzzy, as it was recorded with a poor quality microphone.", "data_idx": 3016, "number": 2, "label": "blues"} +{"file_name": "train_05375.png", "caption": "The low quality recording features a male beatboxing through a didgeridoo. There is a sound of inhaling too. The recording is noisy, in mono and buzzy, as it was recorded with a poor quality microphone.", "data_idx": 3016, "number": 3, "label": "blues"} +{"file_name": "train_05376.png", "caption": "The low quality recording features a live performance of a rock song and it consists of passionate male vocal singing over energetic drums, funky bass guitar, electric guitar melody and solo brass melody. At the end of the loop, there is a short snippet of choir singing in harmony. Overall it sounds funky, energetic, soulful and passionate - as a live performance should sound.", "data_idx": 3017, "number": 0, "label": "disco"} +{"file_name": "train_05377.png", "caption": "The low quality recording features a live performance of a rock song and it consists of passionate male vocal singing over energetic drums, funky bass guitar, electric guitar melody and solo brass melody. At the end of the loop, there is a short snippet of choir singing in harmony. Overall it sounds funky, energetic, soulful and passionate - as a live performance should sound.", "data_idx": 3017, "number": 1, "label": "disco"} +{"file_name": "train_05378.png", "caption": "The low quality recording features a live performance of a rock song and it consists of passionate male vocal singing over energetic drums, funky bass guitar, electric guitar melody and solo brass melody. At the end of the loop, there is a short snippet of choir singing in harmony. Overall it sounds funky, energetic, soulful and passionate - as a live performance should sound.", "data_idx": 3017, "number": 2, "label": "disco"} +{"file_name": "train_05379.png", "caption": "The low quality recording features a live performance of a rock song and it consists of passionate male vocal singing over energetic drums, funky bass guitar, electric guitar melody and solo brass melody. At the end of the loop, there is a short snippet of choir singing in harmony. Overall it sounds funky, energetic, soulful and passionate - as a live performance should sound.", "data_idx": 3017, "number": 3, "label": "disco"} +{"file_name": "train_05380.png", "caption": "This is an instrumental hip-hop music piece. It is meant to be used as a rap beat. There is a fuzzy synth bass playing a groovy bass line with a mellow sounding keyboard playing alongside it. There is a loud electronic drum beat in the rhythmic background. This piece has a crisp and urban atmosphere. It could either be used as a rap beat or it could take place in the soundtrack of a crime movie/TV show with a modern city setting.", "data_idx": 3019, "number": 0, "label": "hiphop"} +{"file_name": "train_05381.png", "caption": "This is an instrumental hip-hop music piece. It is meant to be used as a rap beat. There is a fuzzy synth bass playing a groovy bass line with a mellow sounding keyboard playing alongside it. There is a loud electronic drum beat in the rhythmic background. This piece has a crisp and urban atmosphere. It could either be used as a rap beat or it could take place in the soundtrack of a crime movie/TV show with a modern city setting.", "data_idx": 3019, "number": 1, "label": "hiphop"} +{"file_name": "train_05382.png", "caption": "This is an instrumental hip-hop music piece. It is meant to be used as a rap beat. There is a fuzzy synth bass playing a groovy bass line with a mellow sounding keyboard playing alongside it. There is a loud electronic drum beat in the rhythmic background. This piece has a crisp and urban atmosphere. It could either be used as a rap beat or it could take place in the soundtrack of a crime movie/TV show with a modern city setting.", "data_idx": 3019, "number": 2, "label": "hiphop"} +{"file_name": "train_05383.png", "caption": "This is an instrumental hip-hop music piece. It is meant to be used as a rap beat. There is a fuzzy synth bass playing a groovy bass line with a mellow sounding keyboard playing alongside it. There is a loud electronic drum beat in the rhythmic background. This piece has a crisp and urban atmosphere. It could either be used as a rap beat or it could take place in the soundtrack of a crime movie/TV show with a modern city setting.", "data_idx": 3019, "number": 3, "label": "hiphop"} +{"file_name": "train_05384.png", "caption": "The low quality recording features a groovy didgeridoo playing over playback that consists of a \"4 on the floor\" kick pattern and shimmering hi hats, followed by snappy rimshots. There is a flat male vocal talking at one point. The recording is loud, distorted and it sounds groovy overall.", "data_idx": 3020, "number": 0, "label": "classical"} +{"file_name": "train_05385.png", "caption": "The low quality recording features a groovy didgeridoo playing over playback that consists of a \"4 on the floor\" kick pattern and shimmering hi hats, followed by snappy rimshots. There is a flat male vocal talking at one point. The recording is loud, distorted and it sounds groovy overall.", "data_idx": 3020, "number": 1, "label": "classical"} +{"file_name": "train_05386.png", "caption": "The low quality recording features a groovy didgeridoo playing over playback that consists of a \"4 on the floor\" kick pattern and shimmering hi hats, followed by snappy rimshots. There is a flat male vocal talking at one point. The recording is loud, distorted and it sounds groovy overall.", "data_idx": 3020, "number": 2, "label": "classical"} +{"file_name": "train_05387.png", "caption": "The low quality recording features a groovy didgeridoo playing over playback that consists of a \"4 on the floor\" kick pattern and shimmering hi hats, followed by snappy rimshots. There is a flat male vocal talking at one point. The recording is loud, distorted and it sounds groovy overall.", "data_idx": 3020, "number": 3, "label": "classical"} +{"file_name": "train_05388.png", "caption": "The electronic instrumental music features a melody played by a synth sound and being accompanied by other electronic sounds. In the low-register a bass electronic sound can be heard playing at times twice every beat, driving the pulse of the music. In the second half of the music excerpt another electronic sound can be heard in the upper register playing chords.", "data_idx": 3021, "number": 0, "label": "jazz"} +{"file_name": "train_05389.png", "caption": "The electronic instrumental music features a melody played by a synth sound and being accompanied by other electronic sounds. In the low-register a bass electronic sound can be heard playing at times twice every beat, driving the pulse of the music. In the second half of the music excerpt another electronic sound can be heard in the upper register playing chords.", "data_idx": 3021, "number": 1, "label": "jazz"} +{"file_name": "train_05390.png", "caption": "The electronic instrumental music features a melody played by a synth sound and being accompanied by other electronic sounds. In the low-register a bass electronic sound can be heard playing at times twice every beat, driving the pulse of the music. In the second half of the music excerpt another electronic sound can be heard in the upper register playing chords.", "data_idx": 3021, "number": 2, "label": "jazz"} +{"file_name": "train_05391.png", "caption": "The electronic instrumental music features a melody played by a synth sound and being accompanied by other electronic sounds. In the low-register a bass electronic sound can be heard playing at times twice every beat, driving the pulse of the music. In the second half of the music excerpt another electronic sound can be heard in the upper register playing chords.", "data_idx": 3021, "number": 3, "label": "jazz"} +{"file_name": "train_05392.png", "caption": "The low quality recording contains a widely spread electric guitar melody played with chorus effect, which in the second part of the loop is turned off - judging by the sounds of the melody and a tinny switch sound effect.", "data_idx": 3022, "number": 0, "label": "classical"} +{"file_name": "train_05393.png", "caption": "The low quality recording contains a widely spread electric guitar melody played with chorus effect, which in the second part of the loop is turned off - judging by the sounds of the melody and a tinny switch sound effect.", "data_idx": 3022, "number": 1, "label": "classical"} +{"file_name": "train_05394.png", "caption": "The low quality recording contains a widely spread electric guitar melody played with chorus effect, which in the second part of the loop is turned off - judging by the sounds of the melody and a tinny switch sound effect.", "data_idx": 3022, "number": 2, "label": "classical"} +{"file_name": "train_05395.png", "caption": "The low quality recording contains a widely spread electric guitar melody played with chorus effect, which in the second part of the loop is turned off - judging by the sounds of the melody and a tinny switch sound effect.", "data_idx": 3022, "number": 3, "label": "classical"} +{"file_name": "train_05396.png", "caption": "This music section is instrumental. The tempo is slow with an amplified instrument playing a monotone Note with hollow sounds. The music is eerie, creepy, sinister, scary, spooky, mysterious, ominous, ambient and supernatural. This music is Goth Rock.", "data_idx": 3023, "number": 0, "label": "blues"} +{"file_name": "train_05397.png", "caption": "This music section is instrumental. The tempo is slow with an amplified instrument playing a monotone Note with hollow sounds. The music is eerie, creepy, sinister, scary, spooky, mysterious, ominous, ambient and supernatural. This music is Goth Rock.", "data_idx": 3023, "number": 1, "label": "blues"} +{"file_name": "train_05398.png", "caption": "This music section is instrumental. The tempo is slow with an amplified instrument playing a monotone Note with hollow sounds. The music is eerie, creepy, sinister, scary, spooky, mysterious, ominous, ambient and supernatural. This music is Goth Rock.", "data_idx": 3023, "number": 2, "label": "blues"} +{"file_name": "train_05399.png", "caption": "This music section is instrumental. The tempo is slow with an amplified instrument playing a monotone Note with hollow sounds. The music is eerie, creepy, sinister, scary, spooky, mysterious, ominous, ambient and supernatural. This music is Goth Rock.", "data_idx": 3023, "number": 3, "label": "blues"} +{"file_name": "train_05400.png", "caption": "The low quality recording features an electric guitar changing pitch as it is being tuned, string by string. The recording is very noisy.", "data_idx": 3024, "number": 0, "label": "classical"} +{"file_name": "train_05401.png", "caption": "The low quality recording features an electric guitar changing pitch as it is being tuned, string by string. The recording is very noisy.", "data_idx": 3024, "number": 1, "label": "classical"} +{"file_name": "train_05402.png", "caption": "The low quality recording features an electric guitar changing pitch as it is being tuned, string by string. The recording is very noisy.", "data_idx": 3024, "number": 2, "label": "classical"} +{"file_name": "train_05403.png", "caption": "The low quality recording features an electric guitar changing pitch as it is being tuned, string by string. The recording is very noisy.", "data_idx": 3024, "number": 3, "label": "classical"} +{"file_name": "train_05404.png", "caption": "This heavy metal song features a male voice singing the main melody. This is accompanied by aggressive percussion playing in common time. The distortion guitar plays power chords with a galloping rhythm. The gallop is ended with an ascending lick. The bass follows the same pattern as the distortion guitar but plays only the root notes of the chords. This song is upbeat. The quality of the audio is low. This song can be used when a wrestler enters the WWE arena.", "data_idx": 3025, "number": 0, "label": "metal"} +{"file_name": "train_05405.png", "caption": "This heavy metal song features a male voice singing the main melody. This is accompanied by aggressive percussion playing in common time. The distortion guitar plays power chords with a galloping rhythm. The gallop is ended with an ascending lick. The bass follows the same pattern as the distortion guitar but plays only the root notes of the chords. This song is upbeat. The quality of the audio is low. This song can be used when a wrestler enters the WWE arena.", "data_idx": 3025, "number": 1, "label": "metal"} +{"file_name": "train_05406.png", "caption": "This heavy metal song features a male voice singing the main melody. This is accompanied by aggressive percussion playing in common time. The distortion guitar plays power chords with a galloping rhythm. The gallop is ended with an ascending lick. The bass follows the same pattern as the distortion guitar but plays only the root notes of the chords. This song is upbeat. The quality of the audio is low. This song can be used when a wrestler enters the WWE arena.", "data_idx": 3025, "number": 2, "label": "metal"} +{"file_name": "train_05407.png", "caption": "This heavy metal song features a male voice singing the main melody. This is accompanied by aggressive percussion playing in common time. The distortion guitar plays power chords with a galloping rhythm. The gallop is ended with an ascending lick. The bass follows the same pattern as the distortion guitar but plays only the root notes of the chords. This song is upbeat. The quality of the audio is low. This song can be used when a wrestler enters the WWE arena.", "data_idx": 3025, "number": 3, "label": "metal"} +{"file_name": "train_05408.png", "caption": "This is a lullaby version of a pop music piece. The main tune is played by a lyre which creates a medieval aura in the song. There is also a xylophone playing in the background with a supporting tune. A cello can be heard playing staccato notes for the bassline. An occasional bell percussion that sounds similar to a sleigh bell can be heard in the background. This could both be played in wholesome social media content and also due to its soothing nature in playlists meant to be played at bedtime for babies.", "data_idx": 3028, "number": 0, "label": "classical"} +{"file_name": "train_05409.png", "caption": "This is a lullaby version of a pop music piece. The main tune is played by a lyre which creates a medieval aura in the song. There is also a xylophone playing in the background with a supporting tune. A cello can be heard playing staccato notes for the bassline. An occasional bell percussion that sounds similar to a sleigh bell can be heard in the background. This could both be played in wholesome social media content and also due to its soothing nature in playlists meant to be played at bedtime for babies.", "data_idx": 3028, "number": 1, "label": "classical"} +{"file_name": "train_05410.png", "caption": "This is a lullaby version of a pop music piece. The main tune is played by a lyre which creates a medieval aura in the song. There is also a xylophone playing in the background with a supporting tune. A cello can be heard playing staccato notes for the bassline. An occasional bell percussion that sounds similar to a sleigh bell can be heard in the background. This could both be played in wholesome social media content and also due to its soothing nature in playlists meant to be played at bedtime for babies.", "data_idx": 3028, "number": 2, "label": "classical"} +{"file_name": "train_05411.png", "caption": "This is a lullaby version of a pop music piece. The main tune is played by a lyre which creates a medieval aura in the song. There is also a xylophone playing in the background with a supporting tune. A cello can be heard playing staccato notes for the bassline. An occasional bell percussion that sounds similar to a sleigh bell can be heard in the background. This could both be played in wholesome social media content and also due to its soothing nature in playlists meant to be played at bedtime for babies.", "data_idx": 3028, "number": 3, "label": "classical"} +{"file_name": "train_05412.png", "caption": "The low quality recording features a big band song that consists of wide reverberant brass section melody, shimmering shakers and cymbals, bells melody, piano chord progression, smooth bass and soft kick hits. There are some tom rolls that represent a transition into the next section. It sounds happy and fun, but it also gives off euphoric and nostalgic vibes, as it sounds vintage.", "data_idx": 3030, "number": 0, "label": "disco"} +{"file_name": "train_05413.png", "caption": "The low quality recording features a big band song that consists of wide reverberant brass section melody, shimmering shakers and cymbals, bells melody, piano chord progression, smooth bass and soft kick hits. There are some tom rolls that represent a transition into the next section. It sounds happy and fun, but it also gives off euphoric and nostalgic vibes, as it sounds vintage.", "data_idx": 3030, "number": 1, "label": "disco"} +{"file_name": "train_05414.png", "caption": "The low quality recording features a big band song that consists of wide reverberant brass section melody, shimmering shakers and cymbals, bells melody, piano chord progression, smooth bass and soft kick hits. There are some tom rolls that represent a transition into the next section. It sounds happy and fun, but it also gives off euphoric and nostalgic vibes, as it sounds vintage.", "data_idx": 3030, "number": 2, "label": "disco"} +{"file_name": "train_05415.png", "caption": "The low quality recording features a big band song that consists of wide reverberant brass section melody, shimmering shakers and cymbals, bells melody, piano chord progression, smooth bass and soft kick hits. There are some tom rolls that represent a transition into the next section. It sounds happy and fun, but it also gives off euphoric and nostalgic vibes, as it sounds vintage.", "data_idx": 3030, "number": 3, "label": "disco"} +{"file_name": "train_05416.png", "caption": "The low quality recording features a huge percussive toms and huge low tom hits playing in a very large, reverberant space. It has a lot of low frequencies and it sounds energetic and epic, like a combat background music for a video game.", "data_idx": 3032, "number": 0, "label": "reggae"} +{"file_name": "train_05417.png", "caption": "The low quality recording features a huge percussive toms and huge low tom hits playing in a very large, reverberant space. It has a lot of low frequencies and it sounds energetic and epic, like a combat background music for a video game.", "data_idx": 3032, "number": 1, "label": "reggae"} +{"file_name": "train_05418.png", "caption": "The low quality recording features a huge percussive toms and huge low tom hits playing in a very large, reverberant space. It has a lot of low frequencies and it sounds energetic and epic, like a combat background music for a video game.", "data_idx": 3032, "number": 2, "label": "reggae"} +{"file_name": "train_05419.png", "caption": "The low quality recording features a huge percussive toms and huge low tom hits playing in a very large, reverberant space. It has a lot of low frequencies and it sounds energetic and epic, like a combat background music for a video game.", "data_idx": 3032, "number": 3, "label": "reggae"} +{"file_name": "train_05420.png", "caption": "The low quality recording features a rock song sung by passionate male vocalists, after which there are camera shuttering and crowd yelling sound effects. The recording is in mono and overall it sounds distorted, crushed, noisy and vintage.", "data_idx": 3033, "number": 0, "label": "blues"} +{"file_name": "train_05421.png", "caption": "The low quality recording features a rock song sung by passionate male vocalists, after which there are camera shuttering and crowd yelling sound effects. The recording is in mono and overall it sounds distorted, crushed, noisy and vintage.", "data_idx": 3033, "number": 1, "label": "blues"} +{"file_name": "train_05422.png", "caption": "The low quality recording features a rock song sung by passionate male vocalists, after which there are camera shuttering and crowd yelling sound effects. The recording is in mono and overall it sounds distorted, crushed, noisy and vintage.", "data_idx": 3033, "number": 2, "label": "blues"} +{"file_name": "train_05423.png", "caption": "The low quality recording features a rock song sung by passionate male vocalists, after which there are camera shuttering and crowd yelling sound effects. The recording is in mono and overall it sounds distorted, crushed, noisy and vintage.", "data_idx": 3033, "number": 3, "label": "blues"} +{"file_name": "train_05424.png", "caption": "The music features a male voice singing and being accompanied by backing vocals. The drums play a laid-back rhythm and together with the bass guitar drive the pulse of the music. An acoustic guitar is accompanying the singer lightly. In the background one can hear birds chirping and children having fun. The overall atmosphere is uplifting.", "data_idx": 3034, "number": 0, "label": "country"} +{"file_name": "train_05425.png", "caption": "The music features a male voice singing and being accompanied by backing vocals. The drums play a laid-back rhythm and together with the bass guitar drive the pulse of the music. An acoustic guitar is accompanying the singer lightly. In the background one can hear birds chirping and children having fun. The overall atmosphere is uplifting.", "data_idx": 3034, "number": 1, "label": "country"} +{"file_name": "train_05426.png", "caption": "The music features a male voice singing and being accompanied by backing vocals. The drums play a laid-back rhythm and together with the bass guitar drive the pulse of the music. An acoustic guitar is accompanying the singer lightly. In the background one can hear birds chirping and children having fun. The overall atmosphere is uplifting.", "data_idx": 3034, "number": 2, "label": "country"} +{"file_name": "train_05427.png", "caption": "The music features a male voice singing and being accompanied by backing vocals. The drums play a laid-back rhythm and together with the bass guitar drive the pulse of the music. An acoustic guitar is accompanying the singer lightly. In the background one can hear birds chirping and children having fun. The overall atmosphere is uplifting.", "data_idx": 3034, "number": 3, "label": "country"} +{"file_name": "train_05428.png", "caption": "The low quality recording features a live performance of a folk, traditional song where a high pitch female vocal is singing over addictive flute melody, layered with accordion melody, followed by wooden percussive elements and simmering triangle. It sounds uplifting and cultural.", "data_idx": 3037, "number": 0, "label": "pop"} +{"file_name": "train_05429.png", "caption": "The low quality recording features a live performance of a folk, traditional song where a high pitch female vocal is singing over addictive flute melody, layered with accordion melody, followed by wooden percussive elements and simmering triangle. It sounds uplifting and cultural.", "data_idx": 3037, "number": 1, "label": "pop"} +{"file_name": "train_05430.png", "caption": "The low quality recording features a live performance of a folk, traditional song where a high pitch female vocal is singing over addictive flute melody, layered with accordion melody, followed by wooden percussive elements and simmering triangle. It sounds uplifting and cultural.", "data_idx": 3037, "number": 2, "label": "pop"} +{"file_name": "train_05431.png", "caption": "The low quality recording features a live performance of a folk, traditional song where a high pitch female vocal is singing over addictive flute melody, layered with accordion melody, followed by wooden percussive elements and simmering triangle. It sounds uplifting and cultural.", "data_idx": 3037, "number": 3, "label": "pop"} +{"file_name": "train_05432.png", "caption": "An acoustic drum is playing a light Rock&Roll groove with crash hits and emphasis on kick and snare along with a e-bass enhancing the fast paces mood and giving reasons to move the body along to the beat. Strings like a violin are adding some atmosphere with hits in the background and playing a crescendo to break into the next part of the song while male voices are singing together. This song may be playing when having or wanting a good mood.", "data_idx": 3038, "number": 0, "label": "metal"} +{"file_name": "train_05433.png", "caption": "An acoustic drum is playing a light Rock&Roll groove with crash hits and emphasis on kick and snare along with a e-bass enhancing the fast paces mood and giving reasons to move the body along to the beat. Strings like a violin are adding some atmosphere with hits in the background and playing a crescendo to break into the next part of the song while male voices are singing together. This song may be playing when having or wanting a good mood.", "data_idx": 3038, "number": 1, "label": "metal"} +{"file_name": "train_05434.png", "caption": "An acoustic drum is playing a light Rock&Roll groove with crash hits and emphasis on kick and snare along with a e-bass enhancing the fast paces mood and giving reasons to move the body along to the beat. Strings like a violin are adding some atmosphere with hits in the background and playing a crescendo to break into the next part of the song while male voices are singing together. This song may be playing when having or wanting a good mood.", "data_idx": 3038, "number": 2, "label": "metal"} +{"file_name": "train_05435.png", "caption": "An acoustic drum is playing a light Rock&Roll groove with crash hits and emphasis on kick and snare along with a e-bass enhancing the fast paces mood and giving reasons to move the body along to the beat. Strings like a violin are adding some atmosphere with hits in the background and playing a crescendo to break into the next part of the song while male voices are singing together. This song may be playing when having or wanting a good mood.", "data_idx": 3038, "number": 3, "label": "metal"} +{"file_name": "train_05436.png", "caption": "The song is an instrumental. The song is slow tempo with a sweeping string section harmony along with a low pitched harmony played in harmony, and howling tones played by a horn like instrument. The song is emotional with a surreal effect. The song audio quality is poor.", "data_idx": 3039, "number": 0, "label": "metal"} +{"file_name": "train_05437.png", "caption": "The song is an instrumental. The song is slow tempo with a sweeping string section harmony along with a low pitched harmony played in harmony, and howling tones played by a horn like instrument. The song is emotional with a surreal effect. The song audio quality is poor.", "data_idx": 3039, "number": 1, "label": "metal"} +{"file_name": "train_05438.png", "caption": "The song is an instrumental. The song is slow tempo with a sweeping string section harmony along with a low pitched harmony played in harmony, and howling tones played by a horn like instrument. The song is emotional with a surreal effect. The song audio quality is poor.", "data_idx": 3039, "number": 2, "label": "metal"} +{"file_name": "train_05439.png", "caption": "The song is an instrumental. The song is slow tempo with a sweeping string section harmony along with a low pitched harmony played in harmony, and howling tones played by a horn like instrument. The song is emotional with a surreal effect. The song audio quality is poor.", "data_idx": 3039, "number": 3, "label": "metal"} +{"file_name": "train_05440.png", "caption": "This is a mantra/meditation music piece. There is a male and a female vocal chanting in a devotional manner. There is a tambura melody going on in the background while certain percussive elements at higher and lower ranges can be heard in the rhythmic structure. The atmosphere is hypnotic. This piece could be used in Hindu religious events.", "data_idx": 3041, "number": 0, "label": "rock"} +{"file_name": "train_05441.png", "caption": "This is a mantra/meditation music piece. There is a male and a female vocal chanting in a devotional manner. There is a tambura melody going on in the background while certain percussive elements at higher and lower ranges can be heard in the rhythmic structure. The atmosphere is hypnotic. This piece could be used in Hindu religious events.", "data_idx": 3041, "number": 1, "label": "rock"} +{"file_name": "train_05442.png", "caption": "This is a mantra/meditation music piece. There is a male and a female vocal chanting in a devotional manner. There is a tambura melody going on in the background while certain percussive elements at higher and lower ranges can be heard in the rhythmic structure. The atmosphere is hypnotic. This piece could be used in Hindu religious events.", "data_idx": 3041, "number": 2, "label": "rock"} +{"file_name": "train_05443.png", "caption": "This is a mantra/meditation music piece. There is a male and a female vocal chanting in a devotional manner. There is a tambura melody going on in the background while certain percussive elements at higher and lower ranges can be heard in the rhythmic structure. The atmosphere is hypnotic. This piece could be used in Hindu religious events.", "data_idx": 3041, "number": 3, "label": "rock"} +{"file_name": "train_05444.png", "caption": "This music is an instrumental with medium tempo. Four different tracks that are completely unrelated are being played one after another. It begins with an intense violin symphony, followed by a beep and a dead phone tone, and some synthesised articulation with bass synth. The music is dissonant, chaotic, confusing and random.", "data_idx": 3043, "number": 0, "label": "hiphop"} +{"file_name": "train_05445.png", "caption": "This music is an instrumental with medium tempo. Four different tracks that are completely unrelated are being played one after another. It begins with an intense violin symphony, followed by a beep and a dead phone tone, and some synthesised articulation with bass synth. The music is dissonant, chaotic, confusing and random.", "data_idx": 3043, "number": 1, "label": "hiphop"} +{"file_name": "train_05446.png", "caption": "This music is an instrumental with medium tempo. Four different tracks that are completely unrelated are being played one after another. It begins with an intense violin symphony, followed by a beep and a dead phone tone, and some synthesised articulation with bass synth. The music is dissonant, chaotic, confusing and random.", "data_idx": 3043, "number": 2, "label": "hiphop"} +{"file_name": "train_05447.png", "caption": "This music is an instrumental with medium tempo. Four different tracks that are completely unrelated are being played one after another. It begins with an intense violin symphony, followed by a beep and a dead phone tone, and some synthesised articulation with bass synth. The music is dissonant, chaotic, confusing and random.", "data_idx": 3043, "number": 3, "label": "hiphop"} +{"file_name": "train_05448.png", "caption": "A male vocalist sings this cheerful classic Happy Birthday song. The tempo is fast and high spirited with animated trumpets, enthusiastic, syncopated piano accompaniment, energetic congas and bongos beats, spirited drumming, tambourine beats and vocal backup. The music is loud, bustling, hyper, high-energy and a little bit syncopated. It is fun, cheerful, celebratory and happy.", "data_idx": 3044, "number": 0, "label": "reggae"} +{"file_name": "train_05449.png", "caption": "A male vocalist sings this cheerful classic Happy Birthday song. The tempo is fast and high spirited with animated trumpets, enthusiastic, syncopated piano accompaniment, energetic congas and bongos beats, spirited drumming, tambourine beats and vocal backup. The music is loud, bustling, hyper, high-energy and a little bit syncopated. It is fun, cheerful, celebratory and happy.", "data_idx": 3044, "number": 1, "label": "reggae"} +{"file_name": "train_05450.png", "caption": "A male vocalist sings this cheerful classic Happy Birthday song. The tempo is fast and high spirited with animated trumpets, enthusiastic, syncopated piano accompaniment, energetic congas and bongos beats, spirited drumming, tambourine beats and vocal backup. The music is loud, bustling, hyper, high-energy and a little bit syncopated. It is fun, cheerful, celebratory and happy.", "data_idx": 3044, "number": 2, "label": "reggae"} +{"file_name": "train_05451.png", "caption": "A male vocalist sings this cheerful classic Happy Birthday song. The tempo is fast and high spirited with animated trumpets, enthusiastic, syncopated piano accompaniment, energetic congas and bongos beats, spirited drumming, tambourine beats and vocal backup. The music is loud, bustling, hyper, high-energy and a little bit syncopated. It is fun, cheerful, celebratory and happy.", "data_idx": 3044, "number": 3, "label": "reggae"} +{"file_name": "train_05452.png", "caption": "This composition is full of atmospheric sounds, machine beeping; bell/mallet sounds playing a melody with a lot of reverb. Pad/drone sounds playing a constant sound in the background. This composition may be playing in an obscure movie scene.", "data_idx": 3047, "number": 0, "label": "hiphop"} +{"file_name": "train_05453.png", "caption": "This composition is full of atmospheric sounds, machine beeping; bell/mallet sounds playing a melody with a lot of reverb. Pad/drone sounds playing a constant sound in the background. This composition may be playing in an obscure movie scene.", "data_idx": 3047, "number": 1, "label": "hiphop"} +{"file_name": "train_05454.png", "caption": "This composition is full of atmospheric sounds, machine beeping; bell/mallet sounds playing a melody with a lot of reverb. Pad/drone sounds playing a constant sound in the background. This composition may be playing in an obscure movie scene.", "data_idx": 3047, "number": 2, "label": "hiphop"} +{"file_name": "train_05455.png", "caption": "This composition is full of atmospheric sounds, machine beeping; bell/mallet sounds playing a melody with a lot of reverb. Pad/drone sounds playing a constant sound in the background. This composition may be playing in an obscure movie scene.", "data_idx": 3047, "number": 3, "label": "hiphop"} +{"file_name": "train_05456.png", "caption": "A male singer sings this romantic melody. The song is slow tempo with a steady drumming rhythm, steady bass line, keyboard and guitar accompaniment. The song is romantic and emotional. The song is a Konkani wedding song and has a poor audio quality.", "data_idx": 3050, "number": 0, "label": "rock"} +{"file_name": "train_05457.png", "caption": "A male singer sings this romantic melody. The song is slow tempo with a steady drumming rhythm, steady bass line, keyboard and guitar accompaniment. The song is romantic and emotional. The song is a Konkani wedding song and has a poor audio quality.", "data_idx": 3050, "number": 1, "label": "rock"} +{"file_name": "train_05458.png", "caption": "A male singer sings this romantic melody. The song is slow tempo with a steady drumming rhythm, steady bass line, keyboard and guitar accompaniment. The song is romantic and emotional. The song is a Konkani wedding song and has a poor audio quality.", "data_idx": 3050, "number": 2, "label": "rock"} +{"file_name": "train_05459.png", "caption": "A male singer sings this romantic melody. The song is slow tempo with a steady drumming rhythm, steady bass line, keyboard and guitar accompaniment. The song is romantic and emotional. The song is a Konkani wedding song and has a poor audio quality.", "data_idx": 3050, "number": 3, "label": "rock"} +{"file_name": "train_05460.png", "caption": "This is an Indian classical duet. The tempo is slow with the ensemble of vocalists singing this melody in harmony to the rhythm of tanpura and keeping count by tapping. The song is a composition of Ragas, tala and Sruti . It is melodic, engaging, skilled, controlled and pleasing. This song is an Indian Carnatic Classical.", "data_idx": 3051, "number": 0, "label": "hiphop"} +{"file_name": "train_05461.png", "caption": "This is an Indian classical duet. The tempo is slow with the ensemble of vocalists singing this melody in harmony to the rhythm of tanpura and keeping count by tapping. The song is a composition of Ragas, tala and Sruti . It is melodic, engaging, skilled, controlled and pleasing. This song is an Indian Carnatic Classical.", "data_idx": 3051, "number": 1, "label": "hiphop"} +{"file_name": "train_05462.png", "caption": "This is an Indian classical duet. The tempo is slow with the ensemble of vocalists singing this melody in harmony to the rhythm of tanpura and keeping count by tapping. The song is a composition of Ragas, tala and Sruti . It is melodic, engaging, skilled, controlled and pleasing. This song is an Indian Carnatic Classical.", "data_idx": 3051, "number": 2, "label": "hiphop"} +{"file_name": "train_05463.png", "caption": "This is an Indian classical duet. The tempo is slow with the ensemble of vocalists singing this melody in harmony to the rhythm of tanpura and keeping count by tapping. The song is a composition of Ragas, tala and Sruti . It is melodic, engaging, skilled, controlled and pleasing. This song is an Indian Carnatic Classical.", "data_idx": 3051, "number": 3, "label": "hiphop"} +{"file_name": "train_05464.png", "caption": "An acoustic piano is playing a minor chord progression while two men are singing in the mid and higher register. They seem to be imitating cat sounds so the crowd is laughing. This is an amateur recording. This song may be playing in a comedic live performance on stage.", "data_idx": 3053, "number": 0, "label": "classical"} +{"file_name": "train_05465.png", "caption": "An acoustic piano is playing a minor chord progression while two men are singing in the mid and higher register. They seem to be imitating cat sounds so the crowd is laughing. This is an amateur recording. This song may be playing in a comedic live performance on stage.", "data_idx": 3053, "number": 1, "label": "classical"} +{"file_name": "train_05466.png", "caption": "A female vocalist sings this passionate Rock song. The tempo is medium with infectious electric guitars on lead and harmony, tambourine beats , steady drumming and keyboard accompaniment. The song is intense, passionate, empathic, powerful, persuasive and compelling. This song is Soft Rock.", "data_idx": 3054, "number": 0, "label": "metal"} +{"file_name": "train_05467.png", "caption": "A female vocalist sings this passionate Rock song. The tempo is medium with infectious electric guitars on lead and harmony, tambourine beats , steady drumming and keyboard accompaniment. The song is intense, passionate, empathic, powerful, persuasive and compelling. This song is Soft Rock.", "data_idx": 3054, "number": 1, "label": "metal"} +{"file_name": "train_05468.png", "caption": "A female vocalist sings this passionate Rock song. The tempo is medium with infectious electric guitars on lead and harmony, tambourine beats , steady drumming and keyboard accompaniment. The song is intense, passionate, empathic, powerful, persuasive and compelling. This song is Soft Rock.", "data_idx": 3054, "number": 2, "label": "metal"} +{"file_name": "train_05469.png", "caption": "A female vocalist sings this passionate Rock song. The tempo is medium with infectious electric guitars on lead and harmony, tambourine beats , steady drumming and keyboard accompaniment. The song is intense, passionate, empathic, powerful, persuasive and compelling. This song is Soft Rock.", "data_idx": 3054, "number": 3, "label": "metal"} +{"file_name": "train_05470.png", "caption": "The music features a synth sound playing a repeating melody. An electric piano accompanies the melody with chords. In the second half of the music except the drums and bass guitar kick in. Listening to this music I get lounge vibes.", "data_idx": 3056, "number": 0, "label": "hiphop"} +{"file_name": "train_05471.png", "caption": "The music features a synth sound playing a repeating melody. An electric piano accompanies the melody with chords. In the second half of the music except the drums and bass guitar kick in. Listening to this music I get lounge vibes.", "data_idx": 3056, "number": 1, "label": "hiphop"} +{"file_name": "train_05472.png", "caption": "The music features a synth sound playing a repeating melody. An electric piano accompanies the melody with chords. In the second half of the music except the drums and bass guitar kick in. Listening to this music I get lounge vibes.", "data_idx": 3056, "number": 2, "label": "hiphop"} +{"file_name": "train_05473.png", "caption": "The music features a synth sound playing a repeating melody. An electric piano accompanies the melody with chords. In the second half of the music except the drums and bass guitar kick in. Listening to this music I get lounge vibes.", "data_idx": 3056, "number": 3, "label": "hiphop"} +{"file_name": "train_05474.png", "caption": "This song features male voices singing in harmony. It starts off on a high note, followed by a lower note and back up to a high note. At the end, a vocoder is used to give a start-stop effect to the voice. The ending of the voice is like if a person were to drive over road ramblers. There is a lot of reverb added to the voice.", "data_idx": 3058, "number": 0, "label": "hiphop"} +{"file_name": "train_05475.png", "caption": "This song features male voices singing in harmony. It starts off on a high note, followed by a lower note and back up to a high note. At the end, a vocoder is used to give a start-stop effect to the voice. The ending of the voice is like if a person were to drive over road ramblers. There is a lot of reverb added to the voice.", "data_idx": 3058, "number": 1, "label": "hiphop"} +{"file_name": "train_05476.png", "caption": "This song features male voices singing in harmony. It starts off on a high note, followed by a lower note and back up to a high note. At the end, a vocoder is used to give a start-stop effect to the voice. The ending of the voice is like if a person were to drive over road ramblers. There is a lot of reverb added to the voice.", "data_idx": 3058, "number": 2, "label": "hiphop"} +{"file_name": "train_05477.png", "caption": "This song features male voices singing in harmony. It starts off on a high note, followed by a lower note and back up to a high note. At the end, a vocoder is used to give a start-stop effect to the voice. The ending of the voice is like if a person were to drive over road ramblers. There is a lot of reverb added to the voice.", "data_idx": 3058, "number": 3, "label": "hiphop"} +{"file_name": "train_05478.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing a pleasant solo with a pedal affecting its tone. The song is a guitar effects demo. The song audio quality is poor.", "data_idx": 3061, "number": 0, "label": "country"} +{"file_name": "train_05479.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing a pleasant solo with a pedal affecting its tone. The song is a guitar effects demo. The song audio quality is poor.", "data_idx": 3061, "number": 1, "label": "country"} +{"file_name": "train_05480.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing a pleasant solo with a pedal affecting its tone. The song is a guitar effects demo. The song audio quality is poor.", "data_idx": 3061, "number": 2, "label": "country"} +{"file_name": "train_05481.png", "caption": "The song is an instrumental. The song is medium tempo with an electric guitar playing a pleasant solo with a pedal affecting its tone. The song is a guitar effects demo. The song audio quality is poor.", "data_idx": 3061, "number": 3, "label": "country"} +{"file_name": "train_05482.png", "caption": "The low quality recording features a clean arpeggiated electric guitar melody being played. The recording is noisy, in mono and it sounds muddy and boomy, as the player is probably practicing the melody or trying out the guitar amp settings.", "data_idx": 3063, "number": 0, "label": "classical"} +{"file_name": "train_05483.png", "caption": "The low quality recording features a clean arpeggiated electric guitar melody being played. The recording is noisy, in mono and it sounds muddy and boomy, as the player is probably practicing the melody or trying out the guitar amp settings.", "data_idx": 3063, "number": 1, "label": "classical"} +{"file_name": "train_05484.png", "caption": "This is a low quality audio recording. It starts with a DJ console scratching a record. This is accompanied by programmed percussion playing a repetitive melody. A berimbau plays after the scratching sound and the percussion continues to play the same beat. The berimbau plays the string as well as adds to the beat in the song. This is an instrumental song and there are no voices. This song can be played in a fashion show.", "data_idx": 3064, "number": 0, "label": "reggae"} +{"file_name": "train_05485.png", "caption": "This is a low quality audio recording. It starts with a DJ console scratching a record. This is accompanied by programmed percussion playing a repetitive melody. A berimbau plays after the scratching sound and the percussion continues to play the same beat. The berimbau plays the string as well as adds to the beat in the song. This is an instrumental song and there are no voices. This song can be played in a fashion show.", "data_idx": 3064, "number": 1, "label": "reggae"} +{"file_name": "train_05486.png", "caption": "Someone is playing an e-guitar on top of another e-guitar. The guitar is full of reverb/echo. A soft drum/percussive pattern is playing along with a e-bassline. This song sounds dreamy due to the reverb and the slow melodic playing. This song may be playing in a live event.", "data_idx": 3065, "number": 0, "label": "country"} +{"file_name": "train_05487.png", "caption": "Someone is playing an e-guitar on top of another e-guitar. The guitar is full of reverb/echo. A soft drum/percussive pattern is playing along with a e-bassline. This song sounds dreamy due to the reverb and the slow melodic playing. This song may be playing in a live event.", "data_idx": 3065, "number": 1, "label": "country"} +{"file_name": "train_05488.png", "caption": "Someone is playing an e-guitar on top of another e-guitar. The guitar is full of reverb/echo. A soft drum/percussive pattern is playing along with a e-bassline. This song sounds dreamy due to the reverb and the slow melodic playing. This song may be playing in a live event.", "data_idx": 3065, "number": 2, "label": "country"} +{"file_name": "train_05489.png", "caption": "Someone is playing an e-guitar on top of another e-guitar. The guitar is full of reverb/echo. A soft drum/percussive pattern is playing along with a e-bassline. This song sounds dreamy due to the reverb and the slow melodic playing. This song may be playing in a live event.", "data_idx": 3065, "number": 3, "label": "country"} +{"file_name": "train_05490.png", "caption": "The track is an emotional love ballad that features heartfelt female vocals. Piano chords play in the background as a string section that sounds inspiring sustains chords. A drum kit plays a slow beat that adds to the romantic mood of the song.", "data_idx": 3066, "number": 0, "label": "rock"} +{"file_name": "train_05491.png", "caption": "The track is an emotional love ballad that features heartfelt female vocals. Piano chords play in the background as a string section that sounds inspiring sustains chords. A drum kit plays a slow beat that adds to the romantic mood of the song.", "data_idx": 3066, "number": 1, "label": "rock"} +{"file_name": "train_05492.png", "caption": "The track is an emotional love ballad that features heartfelt female vocals. Piano chords play in the background as a string section that sounds inspiring sustains chords. A drum kit plays a slow beat that adds to the romantic mood of the song.", "data_idx": 3066, "number": 2, "label": "rock"} +{"file_name": "train_05493.png", "caption": "The track is an emotional love ballad that features heartfelt female vocals. Piano chords play in the background as a string section that sounds inspiring sustains chords. A drum kit plays a slow beat that adds to the romantic mood of the song.", "data_idx": 3066, "number": 3, "label": "rock"} +{"file_name": "train_05494.png", "caption": "A male singer sings this emotional melody. The song is medium tempo with shakers and other percussion, keyboard accompaniment and a subtle bass line. The audio quality is poor. The song is romantic and emotional.the song is probably a music video or a movie sound track.", "data_idx": 3068, "number": 0, "label": "country"} +{"file_name": "train_05495.png", "caption": "A male singer sings this emotional melody. The song is medium tempo with shakers and other percussion, keyboard accompaniment and a subtle bass line. The audio quality is poor. The song is romantic and emotional.the song is probably a music video or a movie sound track.", "data_idx": 3068, "number": 1, "label": "country"} +{"file_name": "train_05496.png", "caption": "This jazz song features the main melody played on the piano. The double bass plays jazz basslines using half note intervals and jazz fills. The percussion plays a complicated jazz rhythm mostly focusing on the snare hits. Another percussion is played using sticks sounding like a congo. A male voice speaks some meaningless phrase. This song can be played in a bar.", "data_idx": 3073, "number": 0, "label": "blues"} +{"file_name": "train_05497.png", "caption": "This jazz song features the main melody played on the piano. The double bass plays jazz basslines using half note intervals and jazz fills. The percussion plays a complicated jazz rhythm mostly focusing on the snare hits. Another percussion is played using sticks sounding like a congo. A male voice speaks some meaningless phrase. This song can be played in a bar.", "data_idx": 3073, "number": 1, "label": "blues"} +{"file_name": "train_05498.png", "caption": "This jazz song features the main melody played on the piano. The double bass plays jazz basslines using half note intervals and jazz fills. The percussion plays a complicated jazz rhythm mostly focusing on the snare hits. Another percussion is played using sticks sounding like a congo. A male voice speaks some meaningless phrase. This song can be played in a bar.", "data_idx": 3073, "number": 2, "label": "blues"} +{"file_name": "train_05499.png", "caption": "This jazz song features the main melody played on the piano. The double bass plays jazz basslines using half note intervals and jazz fills. The percussion plays a complicated jazz rhythm mostly focusing on the snare hits. Another percussion is played using sticks sounding like a congo. A male voice speaks some meaningless phrase. This song can be played in a bar.", "data_idx": 3073, "number": 3, "label": "blues"} +{"file_name": "train_05500.png", "caption": "Middle eastern or south Asian jazz influenced music of a male singer singing a free melody, accompanied by syncopated upright bass, shaker, steady drums. There is also a synthesizer pad and a rhythmic keyboard playing.", "data_idx": 3076, "number": 0, "label": "country"} +{"file_name": "train_05501.png", "caption": "Middle eastern or south Asian jazz influenced music of a male singer singing a free melody, accompanied by syncopated upright bass, shaker, steady drums. There is also a synthesizer pad and a rhythmic keyboard playing.", "data_idx": 3076, "number": 1, "label": "country"} +{"file_name": "train_05502.png", "caption": "Middle eastern or south Asian jazz influenced music of a male singer singing a free melody, accompanied by syncopated upright bass, shaker, steady drums. There is also a synthesizer pad and a rhythmic keyboard playing.", "data_idx": 3076, "number": 2, "label": "country"} +{"file_name": "train_05503.png", "caption": "Middle eastern or south Asian jazz influenced music of a male singer singing a free melody, accompanied by syncopated upright bass, shaker, steady drums. There is also a synthesizer pad and a rhythmic keyboard playing.", "data_idx": 3076, "number": 3, "label": "country"} +{"file_name": "train_05504.png", "caption": "This song is an instrumental. The tempo is slow with the music starting with the sound of blasts,sinister melody of chimes , muddled sounds,sound of water or bubbles, and synthesised arrangements with beeps at the end of this clip.It is animated, sinister, chaotic with discordant music.", "data_idx": 3078, "number": 0, "label": "hiphop"} +{"file_name": "train_05505.png", "caption": "This song is an instrumental. The tempo is slow with the music starting with the sound of blasts,sinister melody of chimes , muddled sounds,sound of water or bubbles, and synthesised arrangements with beeps at the end of this clip.It is animated, sinister, chaotic with discordant music.", "data_idx": 3078, "number": 1, "label": "hiphop"} +{"file_name": "train_05506.png", "caption": "This song is an instrumental. The tempo is slow with the music starting with the sound of blasts,sinister melody of chimes , muddled sounds,sound of water or bubbles, and synthesised arrangements with beeps at the end of this clip.It is animated, sinister, chaotic with discordant music.", "data_idx": 3078, "number": 2, "label": "hiphop"} +{"file_name": "train_05507.png", "caption": "This song is an instrumental. The tempo is slow with the music starting with the sound of blasts,sinister melody of chimes , muddled sounds,sound of water or bubbles, and synthesised arrangements with beeps at the end of this clip.It is animated, sinister, chaotic with discordant music.", "data_idx": 3078, "number": 3, "label": "hiphop"} +{"file_name": "train_05508.png", "caption": "This is the sound of a certain frequency. It has a resonant, vibrational character. It is a medium range frequency.", "data_idx": 3080, "number": 0, "label": "classical"} +{"file_name": "train_05509.png", "caption": "This is the sound of a certain frequency. It has a resonant, vibrational character. It is a medium range frequency.", "data_idx": 3080, "number": 1, "label": "classical"} +{"file_name": "train_05510.png", "caption": "The low quality recording features wide scratching effects of an uptempo hip hop song that contains repetitive male vocal, wooden percussive elements, siren sound effect and energetic drums. It sounds energetic, muffled and a bit harsh due to loud scratchings.", "data_idx": 3082, "number": 0, "label": "hiphop"} +{"file_name": "train_05511.png", "caption": "The low quality recording features wide scratching effects of an uptempo hip hop song that contains repetitive male vocal, wooden percussive elements, siren sound effect and energetic drums. It sounds energetic, muffled and a bit harsh due to loud scratchings.", "data_idx": 3082, "number": 1, "label": "hiphop"} +{"file_name": "train_05512.png", "caption": "The low quality recording features wide scratching effects of an uptempo hip hop song that contains repetitive male vocal, wooden percussive elements, siren sound effect and energetic drums. It sounds energetic, muffled and a bit harsh due to loud scratchings.", "data_idx": 3082, "number": 2, "label": "hiphop"} +{"file_name": "train_05513.png", "caption": "The low quality recording features wide scratching effects of an uptempo hip hop song that contains repetitive male vocal, wooden percussive elements, siren sound effect and energetic drums. It sounds energetic, muffled and a bit harsh due to loud scratchings.", "data_idx": 3082, "number": 3, "label": "hiphop"} +{"file_name": "train_05514.png", "caption": "This clip features a low quality recording of a song played using a steel pan. There are no voices in this song. Other percussion instruments are played to emulate shakers and kick drums. The mood of this song is uplifting and happy. The song has a Caribbean influence. This is a song that can be played at a party.", "data_idx": 3083, "number": 0, "label": "classical"} +{"file_name": "train_05515.png", "caption": "This clip features a low quality recording of a song played using a steel pan. There are no voices in this song. Other percussion instruments are played to emulate shakers and kick drums. The mood of this song is uplifting and happy. The song has a Caribbean influence. This is a song that can be played at a party.", "data_idx": 3083, "number": 1, "label": "classical"} +{"file_name": "train_05516.png", "caption": "This clip features a low quality recording of a song played using a steel pan. There are no voices in this song. Other percussion instruments are played to emulate shakers and kick drums. The mood of this song is uplifting and happy. The song has a Caribbean influence. This is a song that can be played at a party.", "data_idx": 3083, "number": 2, "label": "classical"} +{"file_name": "train_05517.png", "caption": "This clip features a low quality recording of a song played using a steel pan. There are no voices in this song. Other percussion instruments are played to emulate shakers and kick drums. The mood of this song is uplifting and happy. The song has a Caribbean influence. This is a song that can be played at a party.", "data_idx": 3083, "number": 3, "label": "classical"} +{"file_name": "train_05518.png", "caption": "A group of Arabic folk musicians play this poignant folk music . The song is medium tempo with percussion instruments playing a steady rhythm, a stringed instrument like violin plays a solo accompanied by other string instruments playing rhythm. The song is poignant and melancholic. The song is a traditional Arabic folk dance song.", "data_idx": 3087, "number": 0, "label": "rock"} +{"file_name": "train_05519.png", "caption": "A group of Arabic folk musicians play this poignant folk music . The song is medium tempo with percussion instruments playing a steady rhythm, a stringed instrument like violin plays a solo accompanied by other string instruments playing rhythm. The song is poignant and melancholic. The song is a traditional Arabic folk dance song.", "data_idx": 3087, "number": 1, "label": "rock"} +{"file_name": "train_05520.png", "caption": "A group of Arabic folk musicians play this poignant folk music . The song is medium tempo with percussion instruments playing a steady rhythm, a stringed instrument like violin plays a solo accompanied by other string instruments playing rhythm. The song is poignant and melancholic. The song is a traditional Arabic folk dance song.", "data_idx": 3087, "number": 2, "label": "rock"} +{"file_name": "train_05521.png", "caption": "A group of Arabic folk musicians play this poignant folk music . The song is medium tempo with percussion instruments playing a steady rhythm, a stringed instrument like violin plays a solo accompanied by other string instruments playing rhythm. The song is poignant and melancholic. The song is a traditional Arabic folk dance song.", "data_idx": 3087, "number": 3, "label": "rock"} +{"file_name": "train_05522.png", "caption": "The low quality recording features a pop song that consists of an echoing electric guitar melody, followed by really bad samples of knocking and door opening sound effects. At the end of the loop the synth keys and smooth synth bass appear. It sounds like an intro section of a song.", "data_idx": 3089, "number": 0, "label": "hiphop"} +{"file_name": "train_05523.png", "caption": "The low quality recording features a pop song that consists of an echoing electric guitar melody, followed by really bad samples of knocking and door opening sound effects. At the end of the loop the synth keys and smooth synth bass appear. It sounds like an intro section of a song.", "data_idx": 3089, "number": 1, "label": "hiphop"} +{"file_name": "train_05524.png", "caption": "The low quality recording features a pop song that consists of an echoing electric guitar melody, followed by really bad samples of knocking and door opening sound effects. At the end of the loop the synth keys and smooth synth bass appear. It sounds like an intro section of a song.", "data_idx": 3089, "number": 2, "label": "hiphop"} +{"file_name": "train_05525.png", "caption": "The low quality recording features a pop song that consists of an echoing electric guitar melody, followed by really bad samples of knocking and door opening sound effects. At the end of the loop the synth keys and smooth synth bass appear. It sounds like an intro section of a song.", "data_idx": 3089, "number": 3, "label": "hiphop"} +{"file_name": "train_05526.png", "caption": "A drum is playing a groove and sounds like running through a low pass filter opening up. Synthesizer pads are playing a simple melody that gets repeated in the lower register with overtones. Panned to both sides of the speaker a simple melody is playing pulsating synth sounds. A male voice is singing/streaming/rapping. The voice seems to be pitched down and processed with other effects. This song may be playing in a scary videogame.", "data_idx": 3090, "number": 0, "label": "metal"} +{"file_name": "train_05527.png", "caption": "A drum is playing a groove and sounds like running through a low pass filter opening up. Synthesizer pads are playing a simple melody that gets repeated in the lower register with overtones. Panned to both sides of the speaker a simple melody is playing pulsating synth sounds. A male voice is singing/streaming/rapping. The voice seems to be pitched down and processed with other effects. This song may be playing in a scary videogame.", "data_idx": 3090, "number": 1, "label": "metal"} +{"file_name": "train_05528.png", "caption": "A drum is playing a groove and sounds like running through a low pass filter opening up. Synthesizer pads are playing a simple melody that gets repeated in the lower register with overtones. Panned to both sides of the speaker a simple melody is playing pulsating synth sounds. A male voice is singing/streaming/rapping. The voice seems to be pitched down and processed with other effects. This song may be playing in a scary videogame.", "data_idx": 3090, "number": 2, "label": "metal"} +{"file_name": "train_05529.png", "caption": "A drum is playing a groove and sounds like running through a low pass filter opening up. Synthesizer pads are playing a simple melody that gets repeated in the lower register with overtones. Panned to both sides of the speaker a simple melody is playing pulsating synth sounds. A male voice is singing/streaming/rapping. The voice seems to be pitched down and processed with other effects. This song may be playing in a scary videogame.", "data_idx": 3090, "number": 3, "label": "metal"} +{"file_name": "train_05530.png", "caption": "The ska music features a male voice singing and being accompanied by another male backing vocal. The tempo is medium-fast, specific to the ska genre. The drums play a somewhat busy rhythm and the bass guitar plays a simple repeating bass line. In the background a piano accompanies the singer. Towards the end of the music excerpt a saxophone can be heard.", "data_idx": 3091, "number": 0, "label": "rock"} +{"file_name": "train_05531.png", "caption": "The ska music features a male voice singing and being accompanied by another male backing vocal. The tempo is medium-fast, specific to the ska genre. The drums play a somewhat busy rhythm and the bass guitar plays a simple repeating bass line. In the background a piano accompanies the singer. Towards the end of the music excerpt a saxophone can be heard.", "data_idx": 3091, "number": 1, "label": "rock"} +{"file_name": "train_05532.png", "caption": "A female vocalist sings this sweet melody. It is medium tempo with rhythmic accompaniment of acoustic guitar, mandolin, resonator, dobro, banjo, cello, fiddle and auto harp. The song is soft, soothing, pleasant, dulcet, sentimental, emotional and simple. This song is Country Pop.", "data_idx": 3095, "number": 0, "label": "reggae"} +{"file_name": "train_05533.png", "caption": "A female vocalist sings this sweet melody. It is medium tempo with rhythmic accompaniment of acoustic guitar, mandolin, resonator, dobro, banjo, cello, fiddle and auto harp. The song is soft, soothing, pleasant, dulcet, sentimental, emotional and simple. This song is Country Pop.", "data_idx": 3095, "number": 1, "label": "reggae"} +{"file_name": "train_05534.png", "caption": "A female vocalist sings this sweet melody. It is medium tempo with rhythmic accompaniment of acoustic guitar, mandolin, resonator, dobro, banjo, cello, fiddle and auto harp. The song is soft, soothing, pleasant, dulcet, sentimental, emotional and simple. This song is Country Pop.", "data_idx": 3095, "number": 2, "label": "reggae"} +{"file_name": "train_05535.png", "caption": "A female vocalist sings this sweet melody. It is medium tempo with rhythmic accompaniment of acoustic guitar, mandolin, resonator, dobro, banjo, cello, fiddle and auto harp. The song is soft, soothing, pleasant, dulcet, sentimental, emotional and simple. This song is Country Pop.", "data_idx": 3095, "number": 3, "label": "reggae"} +{"file_name": "train_05536.png", "caption": "The low quality recording features a live performance of a pop rock song and it consists of flat male vocals counting down over addictive synth melody, energetic drums and groovy bass guitar. There are loud crowd screams in the background. It sounds distorted, loud and crushed, as it was probably recorded with a phone, but it is still energetic and exciting.", "data_idx": 3097, "number": 0, "label": "classical"} +{"file_name": "train_05537.png", "caption": "The low quality recording features a live performance of a pop rock song and it consists of flat male vocals counting down over addictive synth melody, energetic drums and groovy bass guitar. There are loud crowd screams in the background. It sounds distorted, loud and crushed, as it was probably recorded with a phone, but it is still energetic and exciting.", "data_idx": 3097, "number": 1, "label": "classical"} +{"file_name": "train_05538.png", "caption": "This is an outro for a kids song. The song features quirky male vocals. Right after the end of the phrase, thunderstorm sounds start to play in the background as well as ocean SFX.", "data_idx": 3098, "number": 0, "label": "disco"} +{"file_name": "train_05539.png", "caption": "This is an outro for a kids song. The song features quirky male vocals. Right after the end of the phrase, thunderstorm sounds start to play in the background as well as ocean SFX.", "data_idx": 3098, "number": 1, "label": "disco"} +{"file_name": "train_05540.png", "caption": "This is an outro for a kids song. The song features quirky male vocals. Right after the end of the phrase, thunderstorm sounds start to play in the background as well as ocean SFX.", "data_idx": 3098, "number": 2, "label": "disco"} +{"file_name": "train_05541.png", "caption": "This is an outro for a kids song. The song features quirky male vocals. Right after the end of the phrase, thunderstorm sounds start to play in the background as well as ocean SFX.", "data_idx": 3098, "number": 3, "label": "disco"} +{"file_name": "train_05542.png", "caption": "Someone is strumming a melody on a banjo. This is an amateur recording. This song may be playing while singing to your partner at home.", "data_idx": 3099, "number": 0, "label": "classical"} +{"file_name": "train_05543.png", "caption": "Someone is strumming a melody on a banjo. This is an amateur recording. This song may be playing while singing to your partner at home.", "data_idx": 3099, "number": 1, "label": "classical"} +{"file_name": "train_05544.png", "caption": "Someone is strumming a melody on a banjo. This is an amateur recording. This song may be playing while singing to your partner at home.", "data_idx": 3099, "number": 2, "label": "classical"} +{"file_name": "train_05545.png", "caption": "Someone is strumming a melody on a banjo. This is an amateur recording. This song may be playing while singing to your partner at home.", "data_idx": 3099, "number": 3, "label": "classical"} +{"file_name": "train_05546.png", "caption": "The low quality recording features a distant, mellow piano chord progression and sustained woodwind melody, Even though the recording is noisy and it has some chair squeaking sounds, it still gives off dark, haunting and hypnotic vibes.", "data_idx": 3101, "number": 0, "label": "classical"} +{"file_name": "train_05547.png", "caption": "The low quality recording features a distant, mellow piano chord progression and sustained woodwind melody, Even though the recording is noisy and it has some chair squeaking sounds, it still gives off dark, haunting and hypnotic vibes.", "data_idx": 3101, "number": 1, "label": "classical"} +{"file_name": "train_05548.png", "caption": "The low quality recording features a distant, mellow piano chord progression and sustained woodwind melody, Even though the recording is noisy and it has some chair squeaking sounds, it still gives off dark, haunting and hypnotic vibes.", "data_idx": 3101, "number": 2, "label": "classical"} +{"file_name": "train_05549.png", "caption": "The low quality recording features a distant, mellow piano chord progression and sustained woodwind melody, Even though the recording is noisy and it has some chair squeaking sounds, it still gives off dark, haunting and hypnotic vibes.", "data_idx": 3101, "number": 3, "label": "classical"} +{"file_name": "train_05550.png", "caption": "The music features male and female voices singing the same melody in unison. An electric guitar accompanies the singers with strummed chords. The bass guitar and drums drive the pulse of the music forward. At one point a glockenspiel can be heard playing three notes. The overall atmosphere is happy and uplifting.", "data_idx": 3108, "number": 0, "label": "disco"} +{"file_name": "train_05551.png", "caption": "The music features male and female voices singing the same melody in unison. An electric guitar accompanies the singers with strummed chords. The bass guitar and drums drive the pulse of the music forward. At one point a glockenspiel can be heard playing three notes. The overall atmosphere is happy and uplifting.", "data_idx": 3108, "number": 1, "label": "disco"} +{"file_name": "train_05552.png", "caption": "The music features male and female voices singing the same melody in unison. An electric guitar accompanies the singers with strummed chords. The bass guitar and drums drive the pulse of the music forward. At one point a glockenspiel can be heard playing three notes. The overall atmosphere is happy and uplifting.", "data_idx": 3108, "number": 2, "label": "disco"} +{"file_name": "train_05553.png", "caption": "The music features male and female voices singing the same melody in unison. An electric guitar accompanies the singers with strummed chords. The bass guitar and drums drive the pulse of the music forward. At one point a glockenspiel can be heard playing three notes. The overall atmosphere is happy and uplifting.", "data_idx": 3108, "number": 3, "label": "disco"} +{"file_name": "train_05554.png", "caption": "Someone is playing an acoustic piano repeating a phrase of a chord with single notes in the mid-range while a voice-like synthesizer sound is being played in a higher register. The instrument does sound like a female opera singer with a lot of vibrato. This song may be playing in a theater.", "data_idx": 3111, "number": 0, "label": "classical"} +{"file_name": "train_05555.png", "caption": "Someone is playing an acoustic piano repeating a phrase of a chord with single notes in the mid-range while a voice-like synthesizer sound is being played in a higher register. The instrument does sound like a female opera singer with a lot of vibrato. This song may be playing in a theater.", "data_idx": 3111, "number": 1, "label": "classical"} +{"file_name": "train_05556.png", "caption": "The low quality recording features a live performance of a ballad song that consists of sustained strings, soft crash cymbals and soft piano melody. At the very end of the loop, there are passionate muddy female vocals. It sounds passionate, emotional and heartfelt, while it is a bit noisy too.", "data_idx": 3114, "number": 0, "label": "classical"} +{"file_name": "train_05557.png", "caption": "The low quality recording features a live performance of a ballad song that consists of sustained strings, soft crash cymbals and soft piano melody. At the very end of the loop, there are passionate muddy female vocals. It sounds passionate, emotional and heartfelt, while it is a bit noisy too.", "data_idx": 3114, "number": 1, "label": "classical"} +{"file_name": "train_05558.png", "caption": "The low quality recording features a live performance of a ballad song that consists of sustained strings, soft crash cymbals and soft piano melody. At the very end of the loop, there are passionate muddy female vocals. It sounds passionate, emotional and heartfelt, while it is a bit noisy too.", "data_idx": 3114, "number": 2, "label": "classical"} +{"file_name": "train_05559.png", "caption": "The low quality recording features a live performance of a ballad song that consists of sustained strings, soft crash cymbals and soft piano melody. At the very end of the loop, there are passionate muddy female vocals. It sounds passionate, emotional and heartfelt, while it is a bit noisy too.", "data_idx": 3114, "number": 3, "label": "classical"} +{"file_name": "train_05560.png", "caption": "The low quality recording features a percussive shoe tapping over hip hop beat playing in the background. The beat consists of shimmering shakers, hard 808 bass and punchy snare. At one point the shoe tapper gets a little bit sloppy. It sounds a bit muffled, boomy and reverberant.", "data_idx": 3116, "number": 0, "label": "reggae"} +{"file_name": "train_05561.png", "caption": "The low quality recording features a percussive shoe tapping over hip hop beat playing in the background. The beat consists of shimmering shakers, hard 808 bass and punchy snare. At one point the shoe tapper gets a little bit sloppy. It sounds a bit muffled, boomy and reverberant.", "data_idx": 3116, "number": 1, "label": "reggae"} +{"file_name": "train_05562.png", "caption": "The low quality recording features a percussive shoe tapping over hip hop beat playing in the background. The beat consists of shimmering shakers, hard 808 bass and punchy snare. At one point the shoe tapper gets a little bit sloppy. It sounds a bit muffled, boomy and reverberant.", "data_idx": 3116, "number": 2, "label": "reggae"} +{"file_name": "train_05563.png", "caption": "The low quality recording features a percussive shoe tapping over hip hop beat playing in the background. The beat consists of shimmering shakers, hard 808 bass and punchy snare. At one point the shoe tapper gets a little bit sloppy. It sounds a bit muffled, boomy and reverberant.", "data_idx": 3116, "number": 3, "label": "reggae"} +{"file_name": "train_05564.png", "caption": "This country rock song features a male voice singing at a high pitch. This is accompanied by percussion playing a simple beat. A guitar strums chords. The bass guitar plays the root notes of the chords. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 3119, "number": 0, "label": "pop"} +{"file_name": "train_05565.png", "caption": "This country rock song features a male voice singing at a high pitch. This is accompanied by percussion playing a simple beat. A guitar strums chords. The bass guitar plays the root notes of the chords. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 3119, "number": 1, "label": "pop"} +{"file_name": "train_05566.png", "caption": "This country rock song features a male voice singing at a high pitch. This is accompanied by percussion playing a simple beat. A guitar strums chords. The bass guitar plays the root notes of the chords. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 3119, "number": 2, "label": "pop"} +{"file_name": "train_05567.png", "caption": "This country rock song features a male voice singing at a high pitch. This is accompanied by percussion playing a simple beat. A guitar strums chords. The bass guitar plays the root notes of the chords. The mood of this song is romantic. This song can be played in a romantic movie.", "data_idx": 3119, "number": 3, "label": "pop"} +{"file_name": "train_05568.png", "caption": "This song is an instrumental. The tempo is medium with an acoustic guitar playing a monotone. There is no melody or instrumentation . It sounds like a guitar being tuned. It is repetitive, and insistent like a chant.", "data_idx": 3120, "number": 0, "label": "hiphop"} +{"file_name": "train_05569.png", "caption": "This song is an instrumental. The tempo is medium with an acoustic guitar playing a monotone. There is no melody or instrumentation . It sounds like a guitar being tuned. It is repetitive, and insistent like a chant.", "data_idx": 3120, "number": 1, "label": "hiphop"} +{"file_name": "train_05570.png", "caption": "This song is an instrumental. The tempo is medium with an acoustic guitar playing a monotone. There is no melody or instrumentation . It sounds like a guitar being tuned. It is repetitive, and insistent like a chant.", "data_idx": 3120, "number": 2, "label": "hiphop"} +{"file_name": "train_05571.png", "caption": "This song is an instrumental. The tempo is medium with an acoustic guitar playing a monotone. There is no melody or instrumentation . It sounds like a guitar being tuned. It is repetitive, and insistent like a chant.", "data_idx": 3120, "number": 3, "label": "hiphop"} +{"file_name": "train_05572.png", "caption": "The low quality recording features a compilation that, in the first half, contains muffled hip hop song and in the second half sad, soft rock song. The rock song contains an arpeggiated acoustic guitar melody located in the right channel of the stereo image - which makes it unbalanced, and reverberant soft male vocal singing over it. It sounds emotional.", "data_idx": 3121, "number": 0, "label": "hiphop"} +{"file_name": "train_05573.png", "caption": "The low quality recording features a compilation that, in the first half, contains muffled hip hop song and in the second half sad, soft rock song. The rock song contains an arpeggiated acoustic guitar melody located in the right channel of the stereo image - which makes it unbalanced, and reverberant soft male vocal singing over it. It sounds emotional.", "data_idx": 3121, "number": 1, "label": "hiphop"} +{"file_name": "train_05574.png", "caption": "The low quality recording features a compilation that, in the first half, contains muffled hip hop song and in the second half sad, soft rock song. The rock song contains an arpeggiated acoustic guitar melody located in the right channel of the stereo image - which makes it unbalanced, and reverberant soft male vocal singing over it. It sounds emotional.", "data_idx": 3121, "number": 2, "label": "hiphop"} +{"file_name": "train_05575.png", "caption": "The low quality recording features a compilation that, in the first half, contains muffled hip hop song and in the second half sad, soft rock song. The rock song contains an arpeggiated acoustic guitar melody located in the right channel of the stereo image - which makes it unbalanced, and reverberant soft male vocal singing over it. It sounds emotional.", "data_idx": 3121, "number": 3, "label": "hiphop"} +{"file_name": "train_05576.png", "caption": "Someone is playing an acoustic guitar with flamenco techniques and melodies. In the background you can hear someone playing shakers. This recording contains a little bit of reverb on the instruments. This song may be playing as a live performance.", "data_idx": 3122, "number": 0, "label": "jazz"} +{"file_name": "train_05577.png", "caption": "Someone is playing an acoustic guitar with flamenco techniques and melodies. In the background you can hear someone playing shakers. This recording contains a little bit of reverb on the instruments. This song may be playing as a live performance.", "data_idx": 3122, "number": 1, "label": "jazz"} +{"file_name": "train_05578.png", "caption": "Someone is playing an acoustic guitar with flamenco techniques and melodies. In the background you can hear someone playing shakers. This recording contains a little bit of reverb on the instruments. This song may be playing as a live performance.", "data_idx": 3122, "number": 2, "label": "jazz"} +{"file_name": "train_05579.png", "caption": "Someone is playing an acoustic guitar with flamenco techniques and melodies. In the background you can hear someone playing shakers. This recording contains a little bit of reverb on the instruments. This song may be playing as a live performance.", "data_idx": 3122, "number": 3, "label": "jazz"} +{"file_name": "train_05580.png", "caption": "This song has a heavily synthesised voice singing a rhythmic melody. The tempo is medium fast with synthesiser arrangements, punchy drumming, groovy bass lines and electronic instrumentation, with enthusiastic vocal backup. The song is vibrant, youthful, trance-like because of the insistent, monotone, chanting nature of the melody. This song is EDM/Synth pop.", "data_idx": 3124, "number": 0, "label": "hiphop"} +{"file_name": "train_05581.png", "caption": "This song has a heavily synthesised voice singing a rhythmic melody. The tempo is medium fast with synthesiser arrangements, punchy drumming, groovy bass lines and electronic instrumentation, with enthusiastic vocal backup. The song is vibrant, youthful, trance-like because of the insistent, monotone, chanting nature of the melody. This song is EDM/Synth pop.", "data_idx": 3124, "number": 1, "label": "hiphop"} +{"file_name": "train_05582.png", "caption": "This song has a heavily synthesised voice singing a rhythmic melody. The tempo is medium fast with synthesiser arrangements, punchy drumming, groovy bass lines and electronic instrumentation, with enthusiastic vocal backup. The song is vibrant, youthful, trance-like because of the insistent, monotone, chanting nature of the melody. This song is EDM/Synth pop.", "data_idx": 3124, "number": 2, "label": "hiphop"} +{"file_name": "train_05583.png", "caption": "This song has a heavily synthesised voice singing a rhythmic melody. The tempo is medium fast with synthesiser arrangements, punchy drumming, groovy bass lines and electronic instrumentation, with enthusiastic vocal backup. The song is vibrant, youthful, trance-like because of the insistent, monotone, chanting nature of the melody. This song is EDM/Synth pop.", "data_idx": 3124, "number": 3, "label": "hiphop"} +{"file_name": "train_05584.png", "caption": "The sounds are background sound elements of a sci-fi tv show. There is no tempo, there are a collection of sounds like machine whirring, computer signal beeps, boomy explosion sounds, white noise, bad signal tones and glitchy noises. The music is chaotic like an alien invasion. This is background sound effects for a science fiction tv show.", "data_idx": 3125, "number": 0, "label": "jazz"} +{"file_name": "train_05585.png", "caption": "The sounds are background sound elements of a sci-fi tv show. There is no tempo, there are a collection of sounds like machine whirring, computer signal beeps, boomy explosion sounds, white noise, bad signal tones and glitchy noises. The music is chaotic like an alien invasion. This is background sound effects for a science fiction tv show.", "data_idx": 3125, "number": 1, "label": "jazz"} +{"file_name": "train_05586.png", "caption": "The sounds are background sound elements of a sci-fi tv show. There is no tempo, there are a collection of sounds like machine whirring, computer signal beeps, boomy explosion sounds, white noise, bad signal tones and glitchy noises. The music is chaotic like an alien invasion. This is background sound effects for a science fiction tv show.", "data_idx": 3125, "number": 2, "label": "jazz"} +{"file_name": "train_05587.png", "caption": "The sounds are background sound elements of a sci-fi tv show. There is no tempo, there are a collection of sounds like machine whirring, computer signal beeps, boomy explosion sounds, white noise, bad signal tones and glitchy noises. The music is chaotic like an alien invasion. This is background sound effects for a science fiction tv show.", "data_idx": 3125, "number": 3, "label": "jazz"} +{"file_name": "train_05588.png", "caption": "This song is recorded in poor quality. Two acoustic guitars are playing. One of them is strumming chords while the other is playing a country solo up and down the fretboard. A cajon player is supported with mostly kick sounds. This song may be played at an Irish bar.", "data_idx": 3126, "number": 0, "label": "classical"} +{"file_name": "train_05589.png", "caption": "This song is recorded in poor quality. Two acoustic guitars are playing. One of them is strumming chords while the other is playing a country solo up and down the fretboard. A cajon player is supported with mostly kick sounds. This song may be played at an Irish bar.", "data_idx": 3126, "number": 1, "label": "classical"} +{"file_name": "train_05590.png", "caption": "This song is recorded in poor quality. Two acoustic guitars are playing. One of them is strumming chords while the other is playing a country solo up and down the fretboard. A cajon player is supported with mostly kick sounds. This song may be played at an Irish bar.", "data_idx": 3126, "number": 2, "label": "classical"} +{"file_name": "train_05591.png", "caption": "This song is recorded in poor quality. Two acoustic guitars are playing. One of them is strumming chords while the other is playing a country solo up and down the fretboard. A cajon player is supported with mostly kick sounds. This song may be played at an Irish bar.", "data_idx": 3126, "number": 3, "label": "classical"} +{"file_name": "train_05592.png", "caption": "A very young sounding kid's voice is singing along to a backing track containing acoustic drums, e-bass and a quirky sounding flute sound playing a melody to which the kid is singing along. This is an amateur recording and of poor sound-quality. This song may be playing for a talent show.", "data_idx": 3127, "number": 0, "label": "hiphop"} +{"file_name": "train_05593.png", "caption": "A very young sounding kid's voice is singing along to a backing track containing acoustic drums, e-bass and a quirky sounding flute sound playing a melody to which the kid is singing along. This is an amateur recording and of poor sound-quality. This song may be playing for a talent show.", "data_idx": 3127, "number": 1, "label": "hiphop"} +{"file_name": "train_05594.png", "caption": "A very young sounding kid's voice is singing along to a backing track containing acoustic drums, e-bass and a quirky sounding flute sound playing a melody to which the kid is singing along. This is an amateur recording and of poor sound-quality. This song may be playing for a talent show.", "data_idx": 3127, "number": 2, "label": "hiphop"} +{"file_name": "train_05595.png", "caption": "A very young sounding kid's voice is singing along to a backing track containing acoustic drums, e-bass and a quirky sounding flute sound playing a melody to which the kid is singing along. This is an amateur recording and of poor sound-quality. This song may be playing for a talent show.", "data_idx": 3127, "number": 3, "label": "hiphop"} +{"file_name": "train_05596.png", "caption": "This song contains a mandolin being strummed along to a clicking sound. This song may be playing in a video-tutorial.", "data_idx": 3129, "number": 0, "label": "hiphop"} +{"file_name": "train_05597.png", "caption": "This song contains a mandolin being strummed along to a clicking sound. This song may be playing in a video-tutorial.", "data_idx": 3129, "number": 1, "label": "hiphop"} +{"file_name": "train_05598.png", "caption": "This song contains a mandolin being strummed along to a clicking sound. This song may be playing in a video-tutorial.", "data_idx": 3129, "number": 2, "label": "hiphop"} +{"file_name": "train_05599.png", "caption": "This song contains a mandolin being strummed along to a clicking sound. This song may be playing in a video-tutorial.", "data_idx": 3129, "number": 3, "label": "hiphop"} +{"file_name": "train_05600.png", "caption": "This is a video game theme played in a music game. There is a keyboard playing the main tune. The bass guitar is playing a repetitive and simple bass line. Samples could be lifted from the piece to use in beat-making.", "data_idx": 3131, "number": 0, "label": "blues"} +{"file_name": "train_05601.png", "caption": "This is a video game theme played in a music game. There is a keyboard playing the main tune. The bass guitar is playing a repetitive and simple bass line. Samples could be lifted from the piece to use in beat-making.", "data_idx": 3131, "number": 1, "label": "blues"} +{"file_name": "train_05602.png", "caption": "This is a video game theme played in a music game. There is a keyboard playing the main tune. The bass guitar is playing a repetitive and simple bass line. Samples could be lifted from the piece to use in beat-making.", "data_idx": 3131, "number": 2, "label": "blues"} +{"file_name": "train_05603.png", "caption": "This is a video game theme played in a music game. There is a keyboard playing the main tune. The bass guitar is playing a repetitive and simple bass line. Samples could be lifted from the piece to use in beat-making.", "data_idx": 3131, "number": 3, "label": "blues"} +{"file_name": "train_05604.png", "caption": "The Classical song features a wide mellow strings melody and soft plucked strings melody. It sounds mellow, soft, emotional and epic, like a background movie soundtrack.", "data_idx": 3133, "number": 0, "label": "classical"} +{"file_name": "train_05605.png", "caption": "The Classical song features a wide mellow strings melody and soft plucked strings melody. It sounds mellow, soft, emotional and epic, like a background movie soundtrack.", "data_idx": 3133, "number": 1, "label": "classical"} +{"file_name": "train_05606.png", "caption": "The Classical song features a wide mellow strings melody and soft plucked strings melody. It sounds mellow, soft, emotional and epic, like a background movie soundtrack.", "data_idx": 3133, "number": 2, "label": "classical"} +{"file_name": "train_05607.png", "caption": "The Classical song features a wide mellow strings melody and soft plucked strings melody. It sounds mellow, soft, emotional and epic, like a background movie soundtrack.", "data_idx": 3133, "number": 3, "label": "classical"} +{"file_name": "train_05608.png", "caption": "This slow pop song features a female voice singing the main melody. The voice is tremulous and sings in a foreign language. This is accompanied by a string section playing chords and fills in harmony. The bass plays the root notes of the chords. There is no percussion in this song. The mood of this song is romantic and dreamy. This song can be played when there is a romantic flashback scene in a movie.", "data_idx": 3135, "number": 0, "label": "classical"} +{"file_name": "train_05609.png", "caption": "This slow pop song features a female voice singing the main melody. The voice is tremulous and sings in a foreign language. This is accompanied by a string section playing chords and fills in harmony. The bass plays the root notes of the chords. There is no percussion in this song. The mood of this song is romantic and dreamy. This song can be played when there is a romantic flashback scene in a movie.", "data_idx": 3135, "number": 1, "label": "classical"} +{"file_name": "train_05610.png", "caption": "This slow pop song features a female voice singing the main melody. The voice is tremulous and sings in a foreign language. This is accompanied by a string section playing chords and fills in harmony. The bass plays the root notes of the chords. There is no percussion in this song. The mood of this song is romantic and dreamy. This song can be played when there is a romantic flashback scene in a movie.", "data_idx": 3135, "number": 2, "label": "classical"} +{"file_name": "train_05611.png", "caption": "This slow pop song features a female voice singing the main melody. The voice is tremulous and sings in a foreign language. This is accompanied by a string section playing chords and fills in harmony. The bass plays the root notes of the chords. There is no percussion in this song. The mood of this song is romantic and dreamy. This song can be played when there is a romantic flashback scene in a movie.", "data_idx": 3135, "number": 3, "label": "classical"} +{"file_name": "train_05612.png", "caption": "This is an indie/alternative music piece. There is a male vocalist singing melodically. In the background, an eastern sounding tune is playing with a bass and electronic drum beat alongside it. The atmosphere is generic and easygoing. This piece could fit well as an advertisement jingle.", "data_idx": 3136, "number": 0, "label": "reggae"} +{"file_name": "train_05613.png", "caption": "This is an indie/alternative music piece. There is a male vocalist singing melodically. In the background, an eastern sounding tune is playing with a bass and electronic drum beat alongside it. The atmosphere is generic and easygoing. This piece could fit well as an advertisement jingle.", "data_idx": 3136, "number": 1, "label": "reggae"} +{"file_name": "train_05614.png", "caption": "This is an indie/alternative music piece. There is a male vocalist singing melodically. In the background, an eastern sounding tune is playing with a bass and electronic drum beat alongside it. The atmosphere is generic and easygoing. This piece could fit well as an advertisement jingle.", "data_idx": 3136, "number": 2, "label": "reggae"} +{"file_name": "train_05615.png", "caption": "This is an indie/alternative music piece. There is a male vocalist singing melodically. In the background, an eastern sounding tune is playing with a bass and electronic drum beat alongside it. The atmosphere is generic and easygoing. This piece could fit well as an advertisement jingle.", "data_idx": 3136, "number": 3, "label": "reggae"} +{"file_name": "train_05616.png", "caption": "The low quality recording features a loud didgeridoo modulating low tone. It is in mono and it sounds buzzy and kind of weird.", "data_idx": 3137, "number": 0, "label": "metal"} +{"file_name": "train_05617.png", "caption": "The low quality recording features a loud didgeridoo modulating low tone. It is in mono and it sounds buzzy and kind of weird.", "data_idx": 3137, "number": 1, "label": "metal"} +{"file_name": "train_05618.png", "caption": "The low quality recording features a loud didgeridoo modulating low tone. It is in mono and it sounds buzzy and kind of weird.", "data_idx": 3137, "number": 2, "label": "metal"} +{"file_name": "train_05619.png", "caption": "The low quality recording features a loud didgeridoo modulating low tone. It is in mono and it sounds buzzy and kind of weird.", "data_idx": 3137, "number": 3, "label": "metal"} +{"file_name": "train_05620.png", "caption": "The song is a techno dance song sung by a male singer and backup singer harmony. The song is medium tempo with a strong bass line, keyboard harmony and steady drumming rhythm with strong bass kicks. The song is passionate and has a strong dance groove. The song is a poor recording of a modern tech pop song played for a live audience.", "data_idx": 3139, "number": 0, "label": "hiphop"} +{"file_name": "train_05621.png", "caption": "The song is a techno dance song sung by a male singer and backup singer harmony. The song is medium tempo with a strong bass line, keyboard harmony and steady drumming rhythm with strong bass kicks. The song is passionate and has a strong dance groove. The song is a poor recording of a modern tech pop song played for a live audience.", "data_idx": 3139, "number": 1, "label": "hiphop"} +{"file_name": "train_05622.png", "caption": "The song is a techno dance song sung by a male singer and backup singer harmony. The song is medium tempo with a strong bass line, keyboard harmony and steady drumming rhythm with strong bass kicks. The song is passionate and has a strong dance groove. The song is a poor recording of a modern tech pop song played for a live audience.", "data_idx": 3139, "number": 2, "label": "hiphop"} +{"file_name": "train_05623.png", "caption": "The song is a techno dance song sung by a male singer and backup singer harmony. The song is medium tempo with a strong bass line, keyboard harmony and steady drumming rhythm with strong bass kicks. The song is passionate and has a strong dance groove. The song is a poor recording of a modern tech pop song played for a live audience.", "data_idx": 3139, "number": 3, "label": "hiphop"} +{"file_name": "train_05624.png", "caption": "This alternative rock song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. A shaker is played on every count. At the beginning, a scratch slide is played on the distortion guitar. The bass plays notes in groups of three on the first and second counts of each bar. A keyboard plays repetitive fills in between lines. The voice is emotive and the feel of this song is psychedelic. The audio quality is low. This song can be played in a night driving scene in a movie.", "data_idx": 3140, "number": 0, "label": "rock"} +{"file_name": "train_05625.png", "caption": "This alternative rock song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. A shaker is played on every count. At the beginning, a scratch slide is played on the distortion guitar. The bass plays notes in groups of three on the first and second counts of each bar. A keyboard plays repetitive fills in between lines. The voice is emotive and the feel of this song is psychedelic. The audio quality is low. This song can be played in a night driving scene in a movie.", "data_idx": 3140, "number": 1, "label": "rock"} +{"file_name": "train_05626.png", "caption": "This alternative rock song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. A shaker is played on every count. At the beginning, a scratch slide is played on the distortion guitar. The bass plays notes in groups of three on the first and second counts of each bar. A keyboard plays repetitive fills in between lines. The voice is emotive and the feel of this song is psychedelic. The audio quality is low. This song can be played in a night driving scene in a movie.", "data_idx": 3140, "number": 2, "label": "rock"} +{"file_name": "train_05627.png", "caption": "This alternative rock song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat. A shaker is played on every count. At the beginning, a scratch slide is played on the distortion guitar. The bass plays notes in groups of three on the first and second counts of each bar. A keyboard plays repetitive fills in between lines. The voice is emotive and the feel of this song is psychedelic. The audio quality is low. This song can be played in a night driving scene in a movie.", "data_idx": 3140, "number": 3, "label": "rock"} +{"file_name": "train_05628.png", "caption": "This is a mellow, groovy hip hop beat. Its distinguishing factor is a vinyl scratching technique used by DJs. It also consists of what sounds like a brass instrument and forms a chord progression along with the bass that plays at the same cadence.", "data_idx": 3142, "number": 0, "label": "hiphop"} +{"file_name": "train_05629.png", "caption": "This is a mellow, groovy hip hop beat. Its distinguishing factor is a vinyl scratching technique used by DJs. It also consists of what sounds like a brass instrument and forms a chord progression along with the bass that plays at the same cadence.", "data_idx": 3142, "number": 1, "label": "hiphop"} +{"file_name": "train_05630.png", "caption": "This is a mellow, groovy hip hop beat. Its distinguishing factor is a vinyl scratching technique used by DJs. It also consists of what sounds like a brass instrument and forms a chord progression along with the bass that plays at the same cadence.", "data_idx": 3142, "number": 2, "label": "hiphop"} +{"file_name": "train_05631.png", "caption": "This is a mellow, groovy hip hop beat. Its distinguishing factor is a vinyl scratching technique used by DJs. It also consists of what sounds like a brass instrument and forms a chord progression along with the bass that plays at the same cadence.", "data_idx": 3142, "number": 3, "label": "hiphop"} +{"file_name": "train_05632.png", "caption": "A male singer sings this spirited melody. The song is medium tempo with guitar accompaniment, telephone beep tones, steady bass line, keyboard harmony and steady drumming rhythm. The song is spirited and emotional. The song has poor audio quality.", "data_idx": 3143, "number": 0, "label": "hiphop"} +{"file_name": "train_05633.png", "caption": "A male singer sings this spirited melody. The song is medium tempo with guitar accompaniment, telephone beep tones, steady bass line, keyboard harmony and steady drumming rhythm. The song is spirited and emotional. The song has poor audio quality.", "data_idx": 3143, "number": 1, "label": "hiphop"} +{"file_name": "train_05634.png", "caption": "A semi-acoustic guitar is playing slow chords and the bassline at the same time while a female voice is singing/yodeling. A reverb effect is on her voice. In the background you can hear voices talking and clapping. This is an amateur recording but of decent sound quality. This song may be playing at a folkfest.", "data_idx": 3144, "number": 0, "label": "pop"} +{"file_name": "train_05635.png", "caption": "A semi-acoustic guitar is playing slow chords and the bassline at the same time while a female voice is singing/yodeling. A reverb effect is on her voice. In the background you can hear voices talking and clapping. This is an amateur recording but of decent sound quality. This song may be playing at a folkfest.", "data_idx": 3144, "number": 1, "label": "pop"} +{"file_name": "train_05636.png", "caption": "A semi-acoustic guitar is playing slow chords and the bassline at the same time while a female voice is singing/yodeling. A reverb effect is on her voice. In the background you can hear voices talking and clapping. This is an amateur recording but of decent sound quality. This song may be playing at a folkfest.", "data_idx": 3144, "number": 2, "label": "pop"} +{"file_name": "train_05637.png", "caption": "A semi-acoustic guitar is playing slow chords and the bassline at the same time while a female voice is singing/yodeling. A reverb effect is on her voice. In the background you can hear voices talking and clapping. This is an amateur recording but of decent sound quality. This song may be playing at a folkfest.", "data_idx": 3144, "number": 3, "label": "pop"} +{"file_name": "train_05638.png", "caption": "The heavy metal music features a guttural male voice. The sound is aggressive and energetic. The background has a dark tonality that contrasts the heavily distorted guitars that strum chords. An aggressive drum kit plays a common heavy metal beat in the background. This is a song you could hear at a monster truck show.", "data_idx": 3145, "number": 0, "label": "metal"} +{"file_name": "train_05639.png", "caption": "The heavy metal music features a guttural male voice. The sound is aggressive and energetic. The background has a dark tonality that contrasts the heavily distorted guitars that strum chords. An aggressive drum kit plays a common heavy metal beat in the background. This is a song you could hear at a monster truck show.", "data_idx": 3145, "number": 1, "label": "metal"} +{"file_name": "train_05640.png", "caption": "The heavy metal music features a guttural male voice. The sound is aggressive and energetic. The background has a dark tonality that contrasts the heavily distorted guitars that strum chords. An aggressive drum kit plays a common heavy metal beat in the background. This is a song you could hear at a monster truck show.", "data_idx": 3145, "number": 2, "label": "metal"} +{"file_name": "train_05641.png", "caption": "The heavy metal music features a guttural male voice. The sound is aggressive and energetic. The background has a dark tonality that contrasts the heavily distorted guitars that strum chords. An aggressive drum kit plays a common heavy metal beat in the background. This is a song you could hear at a monster truck show.", "data_idx": 3145, "number": 3, "label": "metal"} +{"file_name": "train_05642.png", "caption": "This is an electronic percussion piece used in the background of a nerf shootout video. There are ominous, unnerving sound effects in the background while gunshot sounds can be heard at the forefront. The atmosphere is violent. Sounds from this track can be lifted to be used in soundboards or in beat-making.", "data_idx": 3150, "number": 0, "label": "disco"} +{"file_name": "train_05643.png", "caption": "This is an electronic percussion piece used in the background of a nerf shootout video. There are ominous, unnerving sound effects in the background while gunshot sounds can be heard at the forefront. The atmosphere is violent. Sounds from this track can be lifted to be used in soundboards or in beat-making.", "data_idx": 3150, "number": 1, "label": "disco"} +{"file_name": "train_05644.png", "caption": "This is an electronic percussion piece used in the background of a nerf shootout video. There are ominous, unnerving sound effects in the background while gunshot sounds can be heard at the forefront. The atmosphere is violent. Sounds from this track can be lifted to be used in soundboards or in beat-making.", "data_idx": 3150, "number": 2, "label": "disco"} +{"file_name": "train_05645.png", "caption": "This is an electronic percussion piece used in the background of a nerf shootout video. There are ominous, unnerving sound effects in the background while gunshot sounds can be heard at the forefront. The atmosphere is violent. Sounds from this track can be lifted to be used in soundboards or in beat-making.", "data_idx": 3150, "number": 3, "label": "disco"} +{"file_name": "train_05646.png", "caption": "A lot of gun firing can be heard in this recording. In the background strings are playing a melody along with a piano. A male voice is making a sound like being annoyed. This is an amateur recording and the song may be more suitable for a relaxing and sad movie-scene.", "data_idx": 3151, "number": 0, "label": "rock"} +{"file_name": "train_05647.png", "caption": "A lot of gun firing can be heard in this recording. In the background strings are playing a melody along with a piano. A male voice is making a sound like being annoyed. This is an amateur recording and the song may be more suitable for a relaxing and sad movie-scene.", "data_idx": 3151, "number": 1, "label": "rock"} +{"file_name": "train_05648.png", "caption": "A lot of gun firing can be heard in this recording. In the background strings are playing a melody along with a piano. A male voice is making a sound like being annoyed. This is an amateur recording and the song may be more suitable for a relaxing and sad movie-scene.", "data_idx": 3151, "number": 2, "label": "rock"} +{"file_name": "train_05649.png", "caption": "A lot of gun firing can be heard in this recording. In the background strings are playing a melody along with a piano. A male voice is making a sound like being annoyed. This is an amateur recording and the song may be more suitable for a relaxing and sad movie-scene.", "data_idx": 3151, "number": 3, "label": "rock"} +{"file_name": "train_05650.png", "caption": "This song contains acoustic drums holding the rhythm together with a bass and almost clean e-guitar strumming chords. A piano is adding single notes on top while a male voice is singing a melody getting backed up by a female voice singing along. In the background motor race sounds can be heard. This song may be playing in a car with windows open on a road trip.", "data_idx": 3152, "number": 0, "label": "blues"} +{"file_name": "train_05651.png", "caption": "This song contains acoustic drums holding the rhythm together with a bass and almost clean e-guitar strumming chords. A piano is adding single notes on top while a male voice is singing a melody getting backed up by a female voice singing along. In the background motor race sounds can be heard. This song may be playing in a car with windows open on a road trip.", "data_idx": 3152, "number": 1, "label": "blues"} +{"file_name": "train_05652.png", "caption": "This song contains acoustic drums holding the rhythm together with a bass and almost clean e-guitar strumming chords. A piano is adding single notes on top while a male voice is singing a melody getting backed up by a female voice singing along. In the background motor race sounds can be heard. This song may be playing in a car with windows open on a road trip.", "data_idx": 3152, "number": 2, "label": "blues"} +{"file_name": "train_05653.png", "caption": "This song contains acoustic drums holding the rhythm together with a bass and almost clean e-guitar strumming chords. A piano is adding single notes on top while a male voice is singing a melody getting backed up by a female voice singing along. In the background motor race sounds can be heard. This song may be playing in a car with windows open on a road trip.", "data_idx": 3152, "number": 3, "label": "blues"} +{"file_name": "train_05654.png", "caption": "The excerpt features three different songs stitched together like a collage. The first one lasts for a few seconds and features a male voice being accompanied by an acoustic guitar, drums, electric guitar and bass. The second one lasts for one second and features a male voice accompanied by drums, bass guitar and electric guitar. After a silence that lasts for a few seconds the third piece of the collage features a male voice accompanied by an acoustic guitar.", "data_idx": 3153, "number": 0, "label": "hiphop"} +{"file_name": "train_05655.png", "caption": "The excerpt features three different songs stitched together like a collage. The first one lasts for a few seconds and features a male voice being accompanied by an acoustic guitar, drums, electric guitar and bass. The second one lasts for one second and features a male voice accompanied by drums, bass guitar and electric guitar. After a silence that lasts for a few seconds the third piece of the collage features a male voice accompanied by an acoustic guitar.", "data_idx": 3153, "number": 1, "label": "hiphop"} +{"file_name": "train_05656.png", "caption": "The excerpt features three different songs stitched together like a collage. The first one lasts for a few seconds and features a male voice being accompanied by an acoustic guitar, drums, electric guitar and bass. The second one lasts for one second and features a male voice accompanied by drums, bass guitar and electric guitar. After a silence that lasts for a few seconds the third piece of the collage features a male voice accompanied by an acoustic guitar.", "data_idx": 3153, "number": 2, "label": "hiphop"} +{"file_name": "train_05657.png", "caption": "The excerpt features three different songs stitched together like a collage. The first one lasts for a few seconds and features a male voice being accompanied by an acoustic guitar, drums, electric guitar and bass. The second one lasts for one second and features a male voice accompanied by drums, bass guitar and electric guitar. After a silence that lasts for a few seconds the third piece of the collage features a male voice accompanied by an acoustic guitar.", "data_idx": 3153, "number": 3, "label": "hiphop"} +{"file_name": "train_05658.png", "caption": "This song sounds very meditative and calming. Containing drones, a digital choir and soothing synthesizer pads playing long notes with small changes and a lot of reverb. On top of that a harp is playing a melody. This song may be playing while meditating.", "data_idx": 3157, "number": 0, "label": "classical"} +{"file_name": "train_05659.png", "caption": "This song sounds very meditative and calming. Containing drones, a digital choir and soothing synthesizer pads playing long notes with small changes and a lot of reverb. On top of that a harp is playing a melody. This song may be playing while meditating.", "data_idx": 3157, "number": 1, "label": "classical"} +{"file_name": "train_05660.png", "caption": "This song sounds very meditative and calming. Containing drones, a digital choir and soothing synthesizer pads playing long notes with small changes and a lot of reverb. On top of that a harp is playing a melody. This song may be playing while meditating.", "data_idx": 3157, "number": 2, "label": "classical"} +{"file_name": "train_05661.png", "caption": "This song sounds very meditative and calming. Containing drones, a digital choir and soothing synthesizer pads playing long notes with small changes and a lot of reverb. On top of that a harp is playing a melody. This song may be playing while meditating.", "data_idx": 3157, "number": 3, "label": "classical"} +{"file_name": "train_05662.png", "caption": "The Techno track features a punchy \"4 on the floor\" kick pattern, punchy snare, groovy bass, alongside echoing synth keys, short haunting synth lead and weird percussive sound effects. It is groovy and energetic.", "data_idx": 3161, "number": 0, "label": "hiphop"} +{"file_name": "train_05663.png", "caption": "The Techno track features a punchy \"4 on the floor\" kick pattern, punchy snare, groovy bass, alongside echoing synth keys, short haunting synth lead and weird percussive sound effects. It is groovy and energetic.", "data_idx": 3161, "number": 1, "label": "hiphop"} +{"file_name": "train_05664.png", "caption": "The Techno track features a punchy \"4 on the floor\" kick pattern, punchy snare, groovy bass, alongside echoing synth keys, short haunting synth lead and weird percussive sound effects. It is groovy and energetic.", "data_idx": 3161, "number": 2, "label": "hiphop"} +{"file_name": "train_05665.png", "caption": "The Techno track features a punchy \"4 on the floor\" kick pattern, punchy snare, groovy bass, alongside echoing synth keys, short haunting synth lead and weird percussive sound effects. It is groovy and energetic.", "data_idx": 3161, "number": 3, "label": "hiphop"} +{"file_name": "train_05666.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with electronic instrumentation, synthesiser articulation and turn table. The song is spirited,youthful , enthusiastic, energetic, vigorous and vital. This song is an EDM/ Synth Pop song.", "data_idx": 3162, "number": 0, "label": "disco"} +{"file_name": "train_05667.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with electronic instrumentation, synthesiser articulation and turn table. The song is spirited,youthful , enthusiastic, energetic, vigorous and vital. This song is an EDM/ Synth Pop song.", "data_idx": 3162, "number": 1, "label": "disco"} +{"file_name": "train_05668.png", "caption": "The low quality recording features a wide crowd sound effects that include loud clapping, whistling and cheering, while the orchestra is playing in the background. It sounds reverberant and like it was recorded with a better quality phone.", "data_idx": 3163, "number": 0, "label": "metal"} +{"file_name": "train_05669.png", "caption": "The low quality recording features a wide crowd sound effects that include loud clapping, whistling and cheering, while the orchestra is playing in the background. It sounds reverberant and like it was recorded with a better quality phone.", "data_idx": 3163, "number": 1, "label": "metal"} +{"file_name": "train_05670.png", "caption": "The low quality recording features a wide crowd sound effects that include loud clapping, whistling and cheering, while the orchestra is playing in the background. It sounds reverberant and like it was recorded with a better quality phone.", "data_idx": 3163, "number": 2, "label": "metal"} +{"file_name": "train_05671.png", "caption": "The low quality recording features a wide crowd sound effects that include loud clapping, whistling and cheering, while the orchestra is playing in the background. It sounds reverberant and like it was recorded with a better quality phone.", "data_idx": 3163, "number": 3, "label": "metal"} +{"file_name": "train_05672.png", "caption": "This song is an instrumental. It is slow tempo with only an Electric guitar harmony. The music is emphatic, loud , clear and pleasant. This is instrumental soft rock.", "data_idx": 3166, "number": 0, "label": "blues"} +{"file_name": "train_05673.png", "caption": "This song is an instrumental. It is slow tempo with only an Electric guitar harmony. The music is emphatic, loud , clear and pleasant. This is instrumental soft rock.", "data_idx": 3166, "number": 1, "label": "blues"} +{"file_name": "train_05674.png", "caption": "This song is an instrumental. It is slow tempo with only an Electric guitar harmony. The music is emphatic, loud , clear and pleasant. This is instrumental soft rock.", "data_idx": 3166, "number": 2, "label": "blues"} +{"file_name": "train_05675.png", "caption": "This song is an instrumental. It is slow tempo with only an Electric guitar harmony. The music is emphatic, loud , clear and pleasant. This is instrumental soft rock.", "data_idx": 3166, "number": 3, "label": "blues"} +{"file_name": "train_05676.png", "caption": "The song is an instrumental. The tempo is slow with a piano accompaniment and a strong bass line, with people clapping , whistling, and cheering. The song is being played at a live arena with people getting excited to the song introduction.", "data_idx": 3167, "number": 0, "label": "metal"} +{"file_name": "train_05677.png", "caption": "The song is an instrumental. The tempo is slow with a piano accompaniment and a strong bass line, with people clapping , whistling, and cheering. The song is being played at a live arena with people getting excited to the song introduction.", "data_idx": 3167, "number": 1, "label": "metal"} +{"file_name": "train_05678.png", "caption": "The song is an instrumental. The tempo is slow with a piano accompaniment and a strong bass line, with people clapping , whistling, and cheering. The song is being played at a live arena with people getting excited to the song introduction.", "data_idx": 3167, "number": 2, "label": "metal"} +{"file_name": "train_05679.png", "caption": "The song is an instrumental. The tempo is slow with a piano accompaniment and a strong bass line, with people clapping , whistling, and cheering. The song is being played at a live arena with people getting excited to the song introduction.", "data_idx": 3167, "number": 3, "label": "metal"} +{"file_name": "train_05680.png", "caption": "Someone is playing a metal riff on a fully distorted and overdriven e-guitar. This is an amateur recording. This song may be playing while practicing with the band.", "data_idx": 3169, "number": 0, "label": "metal"} +{"file_name": "train_05681.png", "caption": "Someone is playing a metal riff on a fully distorted and overdriven e-guitar. This is an amateur recording. This song may be playing while practicing with the band.", "data_idx": 3169, "number": 1, "label": "metal"} +{"file_name": "train_05682.png", "caption": "Someone is playing a metal riff on a fully distorted and overdriven e-guitar. This is an amateur recording. This song may be playing while practicing with the band.", "data_idx": 3169, "number": 2, "label": "metal"} +{"file_name": "train_05683.png", "caption": "Someone is playing a metal riff on a fully distorted and overdriven e-guitar. This is an amateur recording. This song may be playing while practicing with the band.", "data_idx": 3169, "number": 3, "label": "metal"} +{"file_name": "train_05684.png", "caption": "The instrumental music features a repetitive melody played by a not so sophisticated electronic sound. The accompaniment consists of electronic sounds of the same quality. The music is most likely background music for an early video game.", "data_idx": 3174, "number": 0, "label": "hiphop"} +{"file_name": "train_05685.png", "caption": "The instrumental music features a repetitive melody played by a not so sophisticated electronic sound. The accompaniment consists of electronic sounds of the same quality. The music is most likely background music for an early video game.", "data_idx": 3174, "number": 1, "label": "hiphop"} +{"file_name": "train_05686.png", "caption": "This is the opening of a reggae song played live during a performance. There is a saxophone playing a solo as the lead. An electric guitar and a bass guitar play the tune in the background. The acoustic drums follow a basic, repetitive reggae beat. The song could be played at a bar or a coffee house.", "data_idx": 3176, "number": 0, "label": "hiphop"} +{"file_name": "train_05687.png", "caption": "This is the opening of a reggae song played live during a performance. There is a saxophone playing a solo as the lead. An electric guitar and a bass guitar play the tune in the background. The acoustic drums follow a basic, repetitive reggae beat. The song could be played at a bar or a coffee house.", "data_idx": 3176, "number": 1, "label": "hiphop"} +{"file_name": "train_05688.png", "caption": "This is a gear showcase jam recording. There is an electric guitar playing a calm solo with the echo effect. The tune being played is a simple one and it is rather relaxed. This recording can be used to lift guitar samples with echo effect. It can also be used in advertisement jingles.", "data_idx": 3182, "number": 0, "label": "blues"} +{"file_name": "train_05689.png", "caption": "This is a gear showcase jam recording. There is an electric guitar playing a calm solo with the echo effect. The tune being played is a simple one and it is rather relaxed. This recording can be used to lift guitar samples with echo effect. It can also be used in advertisement jingles.", "data_idx": 3182, "number": 1, "label": "blues"} +{"file_name": "train_05690.png", "caption": "This is a gear showcase jam recording. There is an electric guitar playing a calm solo with the echo effect. The tune being played is a simple one and it is rather relaxed. This recording can be used to lift guitar samples with echo effect. It can also be used in advertisement jingles.", "data_idx": 3182, "number": 2, "label": "blues"} +{"file_name": "train_05691.png", "caption": "This is a gear showcase jam recording. There is an electric guitar playing a calm solo with the echo effect. The tune being played is a simple one and it is rather relaxed. This recording can be used to lift guitar samples with echo effect. It can also be used in advertisement jingles.", "data_idx": 3182, "number": 3, "label": "blues"} +{"file_name": "train_05692.png", "caption": "This music is an acoustic guitar instrumental. The tempo is medium with the guitarist playing a dulcet harmony on an acoustic guitar. The music is calming,soothing, melodic, eloquent, moving and emotional.", "data_idx": 3184, "number": 0, "label": "jazz"} +{"file_name": "train_05693.png", "caption": "This music is an acoustic guitar instrumental. The tempo is medium with the guitarist playing a dulcet harmony on an acoustic guitar. The music is calming,soothing, melodic, eloquent, moving and emotional.", "data_idx": 3184, "number": 1, "label": "jazz"} +{"file_name": "train_05694.png", "caption": "This music is an acoustic guitar instrumental. The tempo is medium with the guitarist playing a dulcet harmony on an acoustic guitar. The music is calming,soothing, melodic, eloquent, moving and emotional.", "data_idx": 3184, "number": 2, "label": "jazz"} +{"file_name": "train_05695.png", "caption": "This music is an acoustic guitar instrumental. The tempo is medium with the guitarist playing a dulcet harmony on an acoustic guitar. The music is calming,soothing, melodic, eloquent, moving and emotional.", "data_idx": 3184, "number": 3, "label": "jazz"} +{"file_name": "train_05696.png", "caption": "A female singer sings this soulful song. The song is slow tempo with piano accompaniment, strong bass line and groovy jazz drumming. The song is soulful and emotional. The song is a blues jazz song.", "data_idx": 3185, "number": 0, "label": "reggae"} +{"file_name": "train_05697.png", "caption": "A female singer sings this soulful song. The song is slow tempo with piano accompaniment, strong bass line and groovy jazz drumming. The song is soulful and emotional. The song is a blues jazz song.", "data_idx": 3185, "number": 1, "label": "reggae"} +{"file_name": "train_05698.png", "caption": "A female singer sings this soulful song. The song is slow tempo with piano accompaniment, strong bass line and groovy jazz drumming. The song is soulful and emotional. The song is a blues jazz song.", "data_idx": 3185, "number": 2, "label": "reggae"} +{"file_name": "train_05699.png", "caption": "A female singer sings this soulful song. The song is slow tempo with piano accompaniment, strong bass line and groovy jazz drumming. The song is soulful and emotional. The song is a blues jazz song.", "data_idx": 3185, "number": 3, "label": "reggae"} +{"file_name": "train_05700.png", "caption": "A female singer sings this passionate melody. The song is medium tempo with steady drumming rhythm, groovy bass line, Caribbean percussion, guitar accompaniment and a brass band playing percussively. The song is emotional and spirited. The song is a classic renege hit.", "data_idx": 3191, "number": 0, "label": "reggae"} +{"file_name": "train_05701.png", "caption": "A female singer sings this passionate melody. The song is medium tempo with steady drumming rhythm, groovy bass line, Caribbean percussion, guitar accompaniment and a brass band playing percussively. The song is emotional and spirited. The song is a classic renege hit.", "data_idx": 3191, "number": 1, "label": "reggae"} +{"file_name": "train_05702.png", "caption": "A female singer sings this passionate melody. The song is medium tempo with steady drumming rhythm, groovy bass line, Caribbean percussion, guitar accompaniment and a brass band playing percussively. The song is emotional and spirited. The song is a classic renege hit.", "data_idx": 3191, "number": 2, "label": "reggae"} +{"file_name": "train_05703.png", "caption": "A female singer sings this passionate melody. The song is medium tempo with steady drumming rhythm, groovy bass line, Caribbean percussion, guitar accompaniment and a brass band playing percussively. The song is emotional and spirited. The song is a classic renege hit.", "data_idx": 3191, "number": 3, "label": "reggae"} +{"file_name": "train_05704.png", "caption": "This is a live DJ performance. There is a groovy bass line and a mellow electronic drum beat in the rhythmic background accompanied by the tune of a melodic guitar sample. The turntable is used to make a scratching sound over this track. There is an urban feeling to this piece. It could be used in the soundtrack of a crime movie/TV show taking place in the big city. It could be used in the background of an interesting sports video.", "data_idx": 3193, "number": 0, "label": "reggae"} +{"file_name": "train_05705.png", "caption": "This is a live DJ performance. There is a groovy bass line and a mellow electronic drum beat in the rhythmic background accompanied by the tune of a melodic guitar sample. The turntable is used to make a scratching sound over this track. There is an urban feeling to this piece. It could be used in the soundtrack of a crime movie/TV show taking place in the big city. It could be used in the background of an interesting sports video.", "data_idx": 3193, "number": 1, "label": "reggae"} +{"file_name": "train_05706.png", "caption": "This is a live DJ performance. There is a groovy bass line and a mellow electronic drum beat in the rhythmic background accompanied by the tune of a melodic guitar sample. The turntable is used to make a scratching sound over this track. There is an urban feeling to this piece. It could be used in the soundtrack of a crime movie/TV show taking place in the big city. It could be used in the background of an interesting sports video.", "data_idx": 3193, "number": 2, "label": "reggae"} +{"file_name": "train_05707.png", "caption": "This is a live DJ performance. There is a groovy bass line and a mellow electronic drum beat in the rhythmic background accompanied by the tune of a melodic guitar sample. The turntable is used to make a scratching sound over this track. There is an urban feeling to this piece. It could be used in the soundtrack of a crime movie/TV show taking place in the big city. It could be used in the background of an interesting sports video.", "data_idx": 3193, "number": 3, "label": "reggae"} +{"file_name": "train_05708.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with synthesiser arrangements, digital drumming and an insistent, persistent ,and incessant electronic drone sound that over powers the background music. It is loud, sharp and unpleasant after a bit.", "data_idx": 3195, "number": 0, "label": "reggae"} +{"file_name": "train_05709.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with synthesiser arrangements, digital drumming and an insistent, persistent ,and incessant electronic drone sound that over powers the background music. It is loud, sharp and unpleasant after a bit.", "data_idx": 3195, "number": 1, "label": "reggae"} +{"file_name": "train_05710.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with synthesiser arrangements, digital drumming and an insistent, persistent ,and incessant electronic drone sound that over powers the background music. It is loud, sharp and unpleasant after a bit.", "data_idx": 3195, "number": 2, "label": "reggae"} +{"file_name": "train_05711.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with synthesiser arrangements, digital drumming and an insistent, persistent ,and incessant electronic drone sound that over powers the background music. It is loud, sharp and unpleasant after a bit.", "data_idx": 3195, "number": 3, "label": "reggae"} diff --git a/data/train/metadata_0011.jsonl b/data/train/metadata_0011.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9610fa1838a1f6d8707f43857a37a2f8ec9a53a5 --- /dev/null +++ b/data/train/metadata_0011.jsonl @@ -0,0 +1,316 @@ +{"file_name": "train_05712.png", "caption": "This song is an instrumental. The tempo is fast with boomy bass lines, slick drumming, digital drum rhythm; keyboard harmony, synthesiser arrangements and sound of a woman laughing. The song is electric, vibrant ,youthful ,psychedelic, trippy, hysterical and buoyant with a dance groove. This song is an EDM/Synth pop.", "data_idx": 3201, "number": 0, "label": "hiphop"} +{"file_name": "train_05713.png", "caption": "This song is an instrumental. The tempo is fast with boomy bass lines, slick drumming, digital drum rhythm; keyboard harmony, synthesiser arrangements and sound of a woman laughing. The song is electric, vibrant ,youthful ,psychedelic, trippy, hysterical and buoyant with a dance groove. This song is an EDM/Synth pop.", "data_idx": 3201, "number": 1, "label": "hiphop"} +{"file_name": "train_05714.png", "caption": "This song is an instrumental. The tempo is fast with boomy bass lines, slick drumming, digital drum rhythm; keyboard harmony, synthesiser arrangements and sound of a woman laughing. The song is electric, vibrant ,youthful ,psychedelic, trippy, hysterical and buoyant with a dance groove. This song is an EDM/Synth pop.", "data_idx": 3201, "number": 2, "label": "hiphop"} +{"file_name": "train_05715.png", "caption": "This song is an instrumental. The tempo is fast with boomy bass lines, slick drumming, digital drum rhythm; keyboard harmony, synthesiser arrangements and sound of a woman laughing. The song is electric, vibrant ,youthful ,psychedelic, trippy, hysterical and buoyant with a dance groove. This song is an EDM/Synth pop.", "data_idx": 3201, "number": 3, "label": "hiphop"} +{"file_name": "train_05716.png", "caption": "ambient space sounds that are a cold and desolate feeling. Metallic screeching, whooshing distant bells ringing, lots of reverb and a long synthesizer filter sweep. Good for a science fiction film.", "data_idx": 3205, "number": 0, "label": "hiphop"} +{"file_name": "train_05717.png", "caption": "ambient space sounds that are a cold and desolate feeling. Metallic screeching, whooshing distant bells ringing, lots of reverb and a long synthesizer filter sweep. Good for a science fiction film.", "data_idx": 3205, "number": 1, "label": "hiphop"} +{"file_name": "train_05718.png", "caption": "This is the sound of a wooden drawer being opened and a bunch of nails dropped on a surface. A very faint pop music can be heard with a melodically singing female vocal, strings and a simple electronic drum beat.", "data_idx": 3207, "number": 0, "label": "blues"} +{"file_name": "train_05719.png", "caption": "This is the sound of a wooden drawer being opened and a bunch of nails dropped on a surface. A very faint pop music can be heard with a melodically singing female vocal, strings and a simple electronic drum beat.", "data_idx": 3207, "number": 1, "label": "blues"} +{"file_name": "train_05720.png", "caption": "This is the sound of a wooden drawer being opened and a bunch of nails dropped on a surface. A very faint pop music can be heard with a melodically singing female vocal, strings and a simple electronic drum beat.", "data_idx": 3207, "number": 2, "label": "blues"} +{"file_name": "train_05721.png", "caption": "This is the sound of a wooden drawer being opened and a bunch of nails dropped on a surface. A very faint pop music can be heard with a melodically singing female vocal, strings and a simple electronic drum beat.", "data_idx": 3207, "number": 3, "label": "blues"} +{"file_name": "train_05722.png", "caption": "The song is an instrumental. The tempo is medium with a strong rock drumming rhythm, groovy bass slime, electric guitars playing lead and guitar harmony. The song is exciting, youthful and emotional. The song is a classic rock instrumental.", "data_idx": 3208, "number": 0, "label": "rock"} +{"file_name": "train_05723.png", "caption": "The song is an instrumental. The tempo is medium with a strong rock drumming rhythm, groovy bass slime, electric guitars playing lead and guitar harmony. The song is exciting, youthful and emotional. The song is a classic rock instrumental.", "data_idx": 3208, "number": 1, "label": "rock"} +{"file_name": "train_05724.png", "caption": "The song is an instrumental. The tempo is medium with a strong rock drumming rhythm, groovy bass slime, electric guitars playing lead and guitar harmony. The song is exciting, youthful and emotional. The song is a classic rock instrumental.", "data_idx": 3208, "number": 2, "label": "rock"} +{"file_name": "train_05725.png", "caption": "The song is an instrumental. The tempo is medium with a strong rock drumming rhythm, groovy bass slime, electric guitars playing lead and guitar harmony. The song is exciting, youthful and emotional. The song is a classic rock instrumental.", "data_idx": 3208, "number": 3, "label": "rock"} +{"file_name": "train_05726.png", "caption": "This clip is a percussion instrumental with vocalisation. The tempo is medium with the sound of steady,rhythmic drumming And tambourine beats and a male singer vocalising.The music is minimal with no other instruments used. It is rhythmic, chanting, monotone,insistent and recurring. This is a home recording with bustling sounds in the background, horns hooting, vehicles passing by, people talking.", "data_idx": 3210, "number": 0, "label": "rock"} +{"file_name": "train_05727.png", "caption": "This clip is a percussion instrumental with vocalisation. The tempo is medium with the sound of steady,rhythmic drumming And tambourine beats and a male singer vocalising.The music is minimal with no other instruments used. It is rhythmic, chanting, monotone,insistent and recurring. This is a home recording with bustling sounds in the background, horns hooting, vehicles passing by, people talking.", "data_idx": 3210, "number": 1, "label": "rock"} +{"file_name": "train_05728.png", "caption": "This clip is a percussion instrumental with vocalisation. The tempo is medium with the sound of steady,rhythmic drumming And tambourine beats and a male singer vocalising.The music is minimal with no other instruments used. It is rhythmic, chanting, monotone,insistent and recurring. This is a home recording with bustling sounds in the background, horns hooting, vehicles passing by, people talking.", "data_idx": 3210, "number": 2, "label": "rock"} +{"file_name": "train_05729.png", "caption": "This clip is a percussion instrumental with vocalisation. The tempo is medium with the sound of steady,rhythmic drumming And tambourine beats and a male singer vocalising.The music is minimal with no other instruments used. It is rhythmic, chanting, monotone,insistent and recurring. This is a home recording with bustling sounds in the background, horns hooting, vehicles passing by, people talking.", "data_idx": 3210, "number": 3, "label": "rock"} +{"file_name": "train_05730.png", "caption": "The low quality recording features a fruity male vocal, alongside processed background male vocal, with autotune and echoing effect on, rapping over repetitive synth melody, groovy synth bass, punchy kick and punchy snare hits. The song is uptempo and it sounds energetic.", "data_idx": 3215, "number": 0, "label": "hiphop"} +{"file_name": "train_05731.png", "caption": "The low quality recording features a fruity male vocal, alongside processed background male vocal, with autotune and echoing effect on, rapping over repetitive synth melody, groovy synth bass, punchy kick and punchy snare hits. The song is uptempo and it sounds energetic.", "data_idx": 3215, "number": 1, "label": "hiphop"} +{"file_name": "train_05732.png", "caption": "The low quality recording features a fruity male vocal, alongside processed background male vocal, with autotune and echoing effect on, rapping over repetitive synth melody, groovy synth bass, punchy kick and punchy snare hits. The song is uptempo and it sounds energetic.", "data_idx": 3215, "number": 2, "label": "hiphop"} +{"file_name": "train_05733.png", "caption": "The low quality recording features a fruity male vocal, alongside processed background male vocal, with autotune and echoing effect on, rapping over repetitive synth melody, groovy synth bass, punchy kick and punchy snare hits. The song is uptempo and it sounds energetic.", "data_idx": 3215, "number": 3, "label": "hiphop"} +{"file_name": "train_05734.png", "caption": "This song is an instrumental. The tempo is fast with electronic instrumentation and sounds. There is a vigorous keyboard harmony along with sounds of gunshots, clicking, whirring, beeping, phone ring and scratching. The music is busy, animated and boisterous. The audio quality is inferior and muddled, making it difficult to hear the finer elements.", "data_idx": 3216, "number": 0, "label": "classical"} +{"file_name": "train_05735.png", "caption": "This song is an instrumental. The tempo is fast with electronic instrumentation and sounds. There is a vigorous keyboard harmony along with sounds of gunshots, clicking, whirring, beeping, phone ring and scratching. The music is busy, animated and boisterous. The audio quality is inferior and muddled, making it difficult to hear the finer elements.", "data_idx": 3216, "number": 1, "label": "classical"} +{"file_name": "train_05736.png", "caption": "This song is an instrumental. The tempo is fast with electronic instrumentation and sounds. There is a vigorous keyboard harmony along with sounds of gunshots, clicking, whirring, beeping, phone ring and scratching. The music is busy, animated and boisterous. The audio quality is inferior and muddled, making it difficult to hear the finer elements.", "data_idx": 3216, "number": 2, "label": "classical"} +{"file_name": "train_05737.png", "caption": "This song is an instrumental. The tempo is fast with electronic instrumentation and sounds. There is a vigorous keyboard harmony along with sounds of gunshots, clicking, whirring, beeping, phone ring and scratching. The music is busy, animated and boisterous. The audio quality is inferior and muddled, making it difficult to hear the finer elements.", "data_idx": 3216, "number": 3, "label": "classical"} +{"file_name": "train_05738.png", "caption": "This song contains a digital/acoustic drum holding a simple groove with an e-bass while two distorted e-guitars are playing a melody with one being the lead. A male voice is singing in a higher register while you can hear hand clapping to the rhythm. This is an amateur recording and in poor audio-quality. This song may be playing at a live concert.", "data_idx": 3217, "number": 0, "label": "metal"} +{"file_name": "train_05739.png", "caption": "This song contains a digital/acoustic drum holding a simple groove with an e-bass while two distorted e-guitars are playing a melody with one being the lead. A male voice is singing in a higher register while you can hear hand clapping to the rhythm. This is an amateur recording and in poor audio-quality. This song may be playing at a live concert.", "data_idx": 3217, "number": 1, "label": "metal"} +{"file_name": "train_05740.png", "caption": "This song contains a digital/acoustic drum holding a simple groove with an e-bass while two distorted e-guitars are playing a melody with one being the lead. A male voice is singing in a higher register while you can hear hand clapping to the rhythm. This is an amateur recording and in poor audio-quality. This song may be playing at a live concert.", "data_idx": 3217, "number": 2, "label": "metal"} +{"file_name": "train_05741.png", "caption": "This song contains a digital/acoustic drum holding a simple groove with an e-bass while two distorted e-guitars are playing a melody with one being the lead. A male voice is singing in a higher register while you can hear hand clapping to the rhythm. This is an amateur recording and in poor audio-quality. This song may be playing at a live concert.", "data_idx": 3217, "number": 3, "label": "metal"} +{"file_name": "train_05742.png", "caption": "The Pop song features a passionate male vocal, alongside widely spread harmonizing mixed vocals, singing over groovy piano chord progression, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy kick and punchy snare. It sounds emotional, addictive and euphoric - like a Christmas song.", "data_idx": 3218, "number": 0, "label": "rock"} +{"file_name": "train_05743.png", "caption": "The Pop song features a passionate male vocal, alongside widely spread harmonizing mixed vocals, singing over groovy piano chord progression, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy kick and punchy snare. It sounds emotional, addictive and euphoric - like a Christmas song.", "data_idx": 3218, "number": 1, "label": "rock"} +{"file_name": "train_05744.png", "caption": "The Pop song features a passionate male vocal, alongside widely spread harmonizing mixed vocals, singing over groovy piano chord progression, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy kick and punchy snare. It sounds emotional, addictive and euphoric - like a Christmas song.", "data_idx": 3218, "number": 2, "label": "rock"} +{"file_name": "train_05745.png", "caption": "The Pop song features a passionate male vocal, alongside widely spread harmonizing mixed vocals, singing over groovy piano chord progression, funky electric guitar melody, groovy bass guitar, shimmering hi hats, punchy kick and punchy snare. It sounds emotional, addictive and euphoric - like a Christmas song.", "data_idx": 3218, "number": 3, "label": "rock"} +{"file_name": "train_05746.png", "caption": "This is a rave music piece. There is a loud electronic drum beat in the rhythmic background. A strong synth bass and a sharp sounding pad are the main elements of the melody. It is an energetic piece to the point of being hyperactive. This piece could be played at nightclubs and rave venues.", "data_idx": 3224, "number": 0, "label": "metal"} +{"file_name": "train_05747.png", "caption": "This is a rave music piece. There is a loud electronic drum beat in the rhythmic background. A strong synth bass and a sharp sounding pad are the main elements of the melody. It is an energetic piece to the point of being hyperactive. This piece could be played at nightclubs and rave venues.", "data_idx": 3224, "number": 1, "label": "metal"} +{"file_name": "train_05748.png", "caption": "This is a rave music piece. There is a loud electronic drum beat in the rhythmic background. A strong synth bass and a sharp sounding pad are the main elements of the melody. It is an energetic piece to the point of being hyperactive. This piece could be played at nightclubs and rave venues.", "data_idx": 3224, "number": 2, "label": "metal"} +{"file_name": "train_05749.png", "caption": "This is a rave music piece. There is a loud electronic drum beat in the rhythmic background. A strong synth bass and a sharp sounding pad are the main elements of the melody. It is an energetic piece to the point of being hyperactive. This piece could be played at nightclubs and rave venues.", "data_idx": 3224, "number": 3, "label": "metal"} +{"file_name": "train_05750.png", "caption": "The excerpt features an electric guitar with a distortion effect on playing what sounds to be an improvised passage. The style comes closest to the rock genre. The lower quality of the audio recording coupled with string noises makes me think this is an amateur recording, most probably recorded with a phone.", "data_idx": 3228, "number": 0, "label": "classical"} +{"file_name": "train_05751.png", "caption": "The excerpt features an electric guitar with a distortion effect on playing what sounds to be an improvised passage. The style comes closest to the rock genre. The lower quality of the audio recording coupled with string noises makes me think this is an amateur recording, most probably recorded with a phone.", "data_idx": 3228, "number": 1, "label": "classical"} +{"file_name": "train_05752.png", "caption": "The excerpt features an electric guitar with a distortion effect on playing what sounds to be an improvised passage. The style comes closest to the rock genre. The lower quality of the audio recording coupled with string noises makes me think this is an amateur recording, most probably recorded with a phone.", "data_idx": 3228, "number": 2, "label": "classical"} +{"file_name": "train_05753.png", "caption": "The excerpt features an electric guitar with a distortion effect on playing what sounds to be an improvised passage. The style comes closest to the rock genre. The lower quality of the audio recording coupled with string noises makes me think this is an amateur recording, most probably recorded with a phone.", "data_idx": 3228, "number": 3, "label": "classical"} +{"file_name": "train_05754.png", "caption": "This clip features a female voice singing the main melody. The backing instruments cannot be clearly heard due to the low quality of recording. The voice sings with a gospel feel. The bass plays ascending notes. The vocal melody is repetitive. Hand claps are played at random points.", "data_idx": 3229, "number": 0, "label": "country"} +{"file_name": "train_05755.png", "caption": "This clip features a female voice singing the main melody. The backing instruments cannot be clearly heard due to the low quality of recording. The voice sings with a gospel feel. The bass plays ascending notes. The vocal melody is repetitive. Hand claps are played at random points.", "data_idx": 3229, "number": 1, "label": "country"} +{"file_name": "train_05756.png", "caption": "This clip features a female voice singing the main melody. The backing instruments cannot be clearly heard due to the low quality of recording. The voice sings with a gospel feel. The bass plays ascending notes. The vocal melody is repetitive. Hand claps are played at random points.", "data_idx": 3229, "number": 2, "label": "country"} +{"file_name": "train_05757.png", "caption": "This clip features a female voice singing the main melody. The backing instruments cannot be clearly heard due to the low quality of recording. The voice sings with a gospel feel. The bass plays ascending notes. The vocal melody is repetitive. Hand claps are played at random points.", "data_idx": 3229, "number": 3, "label": "country"} +{"file_name": "train_05758.png", "caption": "The low quality recording features an electro song that consists of a typical punchy \"4 on the floor\" kick pattern, wide and mellow synth pad chords and synth lead melody with wide echoing effects on. It sounds energetic and like a song from the early 00s.", "data_idx": 3232, "number": 0, "label": "hiphop"} +{"file_name": "train_05759.png", "caption": "The low quality recording features an electro song that consists of a typical punchy \"4 on the floor\" kick pattern, wide and mellow synth pad chords and synth lead melody with wide echoing effects on. It sounds energetic and like a song from the early 00s.", "data_idx": 3232, "number": 1, "label": "hiphop"} +{"file_name": "train_05760.png", "caption": "The low quality recording features an electro song that consists of a typical punchy \"4 on the floor\" kick pattern, wide and mellow synth pad chords and synth lead melody with wide echoing effects on. It sounds energetic and like a song from the early 00s.", "data_idx": 3232, "number": 2, "label": "hiphop"} +{"file_name": "train_05761.png", "caption": "The low quality recording features an electro song that consists of a typical punchy \"4 on the floor\" kick pattern, wide and mellow synth pad chords and synth lead melody with wide echoing effects on. It sounds energetic and like a song from the early 00s.", "data_idx": 3232, "number": 3, "label": "hiphop"} +{"file_name": "train_05762.png", "caption": "This clip is an instrumental. The tempo is slow and deliberate with an electric guitar playing an energetic riff. It is minimal instrumentation with no other instrument used. The electric guitar is loud, boomy, jarring, resonant,recurring, with an insistent riff.", "data_idx": 3233, "number": 0, "label": "blues"} +{"file_name": "train_05763.png", "caption": "This clip is an instrumental. The tempo is slow and deliberate with an electric guitar playing an energetic riff. It is minimal instrumentation with no other instrument used. The electric guitar is loud, boomy, jarring, resonant,recurring, with an insistent riff.", "data_idx": 3233, "number": 1, "label": "blues"} +{"file_name": "train_05764.png", "caption": "This clip is an instrumental. The tempo is slow and deliberate with an electric guitar playing an energetic riff. It is minimal instrumentation with no other instrument used. The electric guitar is loud, boomy, jarring, resonant,recurring, with an insistent riff.", "data_idx": 3233, "number": 2, "label": "blues"} +{"file_name": "train_05765.png", "caption": "This clip is an instrumental. The tempo is slow and deliberate with an electric guitar playing an energetic riff. It is minimal instrumentation with no other instrument used. The electric guitar is loud, boomy, jarring, resonant,recurring, with an insistent riff.", "data_idx": 3233, "number": 3, "label": "blues"} +{"file_name": "train_05766.png", "caption": "This is a live Christian gospel music performance. There is male lead vocal singing melodically and passionately with the backing of a male choir. The melody is being played by a church organ and a bass guitar. The acoustic drums and the tambourine played in a very eccentric manner are the elements of the rhythmic background. The atmosphere is religious. This piece could be played at Christian religious events or in the background of Christian social media content.", "data_idx": 3235, "number": 0, "label": "classical"} +{"file_name": "train_05767.png", "caption": "This is a live Christian gospel music performance. There is male lead vocal singing melodically and passionately with the backing of a male choir. The melody is being played by a church organ and a bass guitar. The acoustic drums and the tambourine played in a very eccentric manner are the elements of the rhythmic background. The atmosphere is religious. This piece could be played at Christian religious events or in the background of Christian social media content.", "data_idx": 3235, "number": 1, "label": "classical"} +{"file_name": "train_05768.png", "caption": "This is a live Christian gospel music performance. There is male lead vocal singing melodically and passionately with the backing of a male choir. The melody is being played by a church organ and a bass guitar. The acoustic drums and the tambourine played in a very eccentric manner are the elements of the rhythmic background. The atmosphere is religious. This piece could be played at Christian religious events or in the background of Christian social media content.", "data_idx": 3235, "number": 2, "label": "classical"} +{"file_name": "train_05769.png", "caption": "This is a live Christian gospel music performance. There is male lead vocal singing melodically and passionately with the backing of a male choir. The melody is being played by a church organ and a bass guitar. The acoustic drums and the tambourine played in a very eccentric manner are the elements of the rhythmic background. The atmosphere is religious. This piece could be played at Christian religious events or in the background of Christian social media content.", "data_idx": 3235, "number": 3, "label": "classical"} +{"file_name": "train_05770.png", "caption": "The low quality recording features a cover of a rock song and it consists of acoustic rhythm guitar and nasal, echoing male vocals. The recording is noisy and in mono and it sounds emotional.", "data_idx": 3236, "number": 0, "label": "rock"} +{"file_name": "train_05771.png", "caption": "The low quality recording features a cover of a rock song and it consists of acoustic rhythm guitar and nasal, echoing male vocals. The recording is noisy and in mono and it sounds emotional.", "data_idx": 3236, "number": 1, "label": "rock"} +{"file_name": "train_05772.png", "caption": "The low quality recording features a cover of a rock song and it consists of acoustic rhythm guitar and nasal, echoing male vocals. The recording is noisy and in mono and it sounds emotional.", "data_idx": 3236, "number": 2, "label": "rock"} +{"file_name": "train_05773.png", "caption": "The low quality recording features a cover of a rock song and it consists of acoustic rhythm guitar and nasal, echoing male vocals. The recording is noisy and in mono and it sounds emotional.", "data_idx": 3236, "number": 3, "label": "rock"} +{"file_name": "train_05774.png", "caption": "The music features a male voice singing a melody in the med-high register. The drummer plays a steady and repeating rhythm. The bass guitar, for the most part, plays two repeating notes every beat. A synth sound is playing a melody in the mid-high register. Listening to this song I get Christmas vibes.", "data_idx": 3237, "number": 0, "label": "disco"} +{"file_name": "train_05775.png", "caption": "The music features a male voice singing a melody in the med-high register. The drummer plays a steady and repeating rhythm. The bass guitar, for the most part, plays two repeating notes every beat. A synth sound is playing a melody in the mid-high register. Listening to this song I get Christmas vibes.", "data_idx": 3237, "number": 1, "label": "disco"} +{"file_name": "train_05776.png", "caption": "The music features a male voice singing a melody in the med-high register. The drummer plays a steady and repeating rhythm. The bass guitar, for the most part, plays two repeating notes every beat. A synth sound is playing a melody in the mid-high register. Listening to this song I get Christmas vibes.", "data_idx": 3237, "number": 2, "label": "disco"} +{"file_name": "train_05777.png", "caption": "The music features a male voice singing a melody in the med-high register. The drummer plays a steady and repeating rhythm. The bass guitar, for the most part, plays two repeating notes every beat. A synth sound is playing a melody in the mid-high register. Listening to this song I get Christmas vibes.", "data_idx": 3237, "number": 3, "label": "disco"} +{"file_name": "train_05778.png", "caption": "The rock and roll music features a male voice singing a melody and at times singing in unison with a male backing voice. The band that accompanies the singer consists of a drum kit playing a light and simple rhythm, a bass guitar that plays in the style of walking bass, and a section of saxophones. On top of this recording one can hear a rattle that sounds close to a baby shaker toy. The recording quality is not that good, which leads me to believe it's an amateur phone recording of a speaker playing the song.", "data_idx": 3239, "number": 0, "label": "blues"} +{"file_name": "train_05779.png", "caption": "The rock and roll music features a male voice singing a melody and at times singing in unison with a male backing voice. The band that accompanies the singer consists of a drum kit playing a light and simple rhythm, a bass guitar that plays in the style of walking bass, and a section of saxophones. On top of this recording one can hear a rattle that sounds close to a baby shaker toy. The recording quality is not that good, which leads me to believe it's an amateur phone recording of a speaker playing the song.", "data_idx": 3239, "number": 1, "label": "blues"} +{"file_name": "train_05780.png", "caption": "The rock and roll music features a male voice singing a melody and at times singing in unison with a male backing voice. The band that accompanies the singer consists of a drum kit playing a light and simple rhythm, a bass guitar that plays in the style of walking bass, and a section of saxophones. On top of this recording one can hear a rattle that sounds close to a baby shaker toy. The recording quality is not that good, which leads me to believe it's an amateur phone recording of a speaker playing the song.", "data_idx": 3239, "number": 2, "label": "blues"} +{"file_name": "train_05781.png", "caption": "The rock and roll music features a male voice singing a melody and at times singing in unison with a male backing voice. The band that accompanies the singer consists of a drum kit playing a light and simple rhythm, a bass guitar that plays in the style of walking bass, and a section of saxophones. On top of this recording one can hear a rattle that sounds close to a baby shaker toy. The recording quality is not that good, which leads me to believe it's an amateur phone recording of a speaker playing the song.", "data_idx": 3239, "number": 3, "label": "blues"} +{"file_name": "train_05782.png", "caption": "The song is an instrumental. The tempo is slow with percussive instruments playing, bells percussions and a music box melody. The song is educational and designed for toddlers. The audio quality is pretty average.", "data_idx": 3241, "number": 0, "label": "classical"} +{"file_name": "train_05783.png", "caption": "The song is an instrumental. The tempo is slow with percussive instruments playing, bells percussions and a music box melody. The song is educational and designed for toddlers. The audio quality is pretty average.", "data_idx": 3241, "number": 1, "label": "classical"} +{"file_name": "train_05784.png", "caption": "This music is instrumental. The tempo is slow with an Oud lead with atmospheric synthesiser . The music uses minimal instrumentation to emphasise on the lead instrument. The hollow sound in the background is either a synthesiser or a wind instrument. The music is intense, grim, mysterious, suspenseful, sinister and enigmatic.", "data_idx": 3243, "number": 0, "label": "reggae"} +{"file_name": "train_05785.png", "caption": "This music is instrumental. The tempo is slow with an Oud lead with atmospheric synthesiser . The music uses minimal instrumentation to emphasise on the lead instrument. The hollow sound in the background is either a synthesiser or a wind instrument. The music is intense, grim, mysterious, suspenseful, sinister and enigmatic.", "data_idx": 3243, "number": 1, "label": "reggae"} +{"file_name": "train_05786.png", "caption": "This music is instrumental. The tempo is slow with an Oud lead with atmospheric synthesiser . The music uses minimal instrumentation to emphasise on the lead instrument. The hollow sound in the background is either a synthesiser or a wind instrument. The music is intense, grim, mysterious, suspenseful, sinister and enigmatic.", "data_idx": 3243, "number": 2, "label": "reggae"} +{"file_name": "train_05787.png", "caption": "This music is instrumental. The tempo is slow with an Oud lead with atmospheric synthesiser . The music uses minimal instrumentation to emphasise on the lead instrument. The hollow sound in the background is either a synthesiser or a wind instrument. The music is intense, grim, mysterious, suspenseful, sinister and enigmatic.", "data_idx": 3243, "number": 3, "label": "reggae"} +{"file_name": "train_05788.png", "caption": "This is an electronic music jam using a drum machine. The touchpads on the drum machine are used to perform chopped-up melodic pad sounds by tapping on them. Since this is an amateur recording, the finger tapping sounds can be heard as well. This piece could be used to lift low-resolution samples from to use in beat-making.", "data_idx": 3245, "number": 0, "label": "hiphop"} +{"file_name": "train_05789.png", "caption": "This is an electronic music jam using a drum machine. The touchpads on the drum machine are used to perform chopped-up melodic pad sounds by tapping on them. Since this is an amateur recording, the finger tapping sounds can be heard as well. This piece could be used to lift low-resolution samples from to use in beat-making.", "data_idx": 3245, "number": 1, "label": "hiphop"} +{"file_name": "train_05790.png", "caption": "This is an electronic music jam using a drum machine. The touchpads on the drum machine are used to perform chopped-up melodic pad sounds by tapping on them. Since this is an amateur recording, the finger tapping sounds can be heard as well. This piece could be used to lift low-resolution samples from to use in beat-making.", "data_idx": 3245, "number": 2, "label": "hiphop"} +{"file_name": "train_05791.png", "caption": "This is an electronic music jam using a drum machine. The touchpads on the drum machine are used to perform chopped-up melodic pad sounds by tapping on them. Since this is an amateur recording, the finger tapping sounds can be heard as well. This piece could be used to lift low-resolution samples from to use in beat-making.", "data_idx": 3245, "number": 3, "label": "hiphop"} +{"file_name": "train_05792.png", "caption": "A helicopter engine is starting with a song playing in the background. The song contains acoustic guitars, a keyboard melody and a drumset. This song may be playing in an advertisement.", "data_idx": 3246, "number": 0, "label": "metal"} +{"file_name": "train_05793.png", "caption": "A helicopter engine is starting with a song playing in the background. The song contains acoustic guitars, a keyboard melody and a drumset. This song may be playing in an advertisement.", "data_idx": 3246, "number": 1, "label": "metal"} +{"file_name": "train_05794.png", "caption": "This is a performance of classical music on a vibraphone. It is a live recording and it is tranquil and soothing. The audio quality is not high, but the notes are still easily distinguishable.", "data_idx": 3247, "number": 0, "label": "classical"} +{"file_name": "train_05795.png", "caption": "This is a performance of classical music on a vibraphone. It is a live recording and it is tranquil and soothing. The audio quality is not high, but the notes are still easily distinguishable.", "data_idx": 3247, "number": 1, "label": "classical"} +{"file_name": "train_05796.png", "caption": "This is a performance of classical music on a vibraphone. It is a live recording and it is tranquil and soothing. The audio quality is not high, but the notes are still easily distinguishable.", "data_idx": 3247, "number": 2, "label": "classical"} +{"file_name": "train_05797.png", "caption": "This is a performance of classical music on a vibraphone. It is a live recording and it is tranquil and soothing. The audio quality is not high, but the notes are still easily distinguishable.", "data_idx": 3247, "number": 3, "label": "classical"} +{"file_name": "train_05798.png", "caption": "A low fidelity live recording of house music with camera noise from jostling a small microphone.", "data_idx": 3251, "number": 0, "label": "hiphop"} +{"file_name": "train_05799.png", "caption": "A low fidelity live recording of house music with camera noise from jostling a small microphone.", "data_idx": 3251, "number": 1, "label": "hiphop"} +{"file_name": "train_05800.png", "caption": "A female vocalist sings this melodic song in Icelandic. The tempo is slow with vocal emphasis and a soft and romantic piano accompaniment. The song is a mellow, soothing, peaceful, soothing, ethereal, mesmerising and captivating Icelandic lullaby.", "data_idx": 3252, "number": 0, "label": "disco"} +{"file_name": "train_05801.png", "caption": "A female vocalist sings this melodic song in Icelandic. The tempo is slow with vocal emphasis and a soft and romantic piano accompaniment. The song is a mellow, soothing, peaceful, soothing, ethereal, mesmerising and captivating Icelandic lullaby.", "data_idx": 3252, "number": 1, "label": "disco"} +{"file_name": "train_05802.png", "caption": "A female vocalist sings this melodic song in Icelandic. The tempo is slow with vocal emphasis and a soft and romantic piano accompaniment. The song is a mellow, soothing, peaceful, soothing, ethereal, mesmerising and captivating Icelandic lullaby.", "data_idx": 3252, "number": 2, "label": "disco"} +{"file_name": "train_05803.png", "caption": "A female vocalist sings this melodic song in Icelandic. The tempo is slow with vocal emphasis and a soft and romantic piano accompaniment. The song is a mellow, soothing, peaceful, soothing, ethereal, mesmerising and captivating Icelandic lullaby.", "data_idx": 3252, "number": 3, "label": "disco"} +{"file_name": "train_05804.png", "caption": "This song contains a piano adding single notes to digital strings being played in the high-mid and as a bassline. The recording is full of reverb and the instruments are slightly panned across the speakers. The atmosphere sounds sad,melancholic. This song may be playing in a sad movie-scene.", "data_idx": 3254, "number": 0, "label": "classical"} +{"file_name": "train_05805.png", "caption": "This song contains a piano adding single notes to digital strings being played in the high-mid and as a bassline. The recording is full of reverb and the instruments are slightly panned across the speakers. The atmosphere sounds sad,melancholic. This song may be playing in a sad movie-scene.", "data_idx": 3254, "number": 1, "label": "classical"} +{"file_name": "train_05806.png", "caption": "This song contains a piano adding single notes to digital strings being played in the high-mid and as a bassline. The recording is full of reverb and the instruments are slightly panned across the speakers. The atmosphere sounds sad,melancholic. This song may be playing in a sad movie-scene.", "data_idx": 3254, "number": 2, "label": "classical"} +{"file_name": "train_05807.png", "caption": "This song contains a piano adding single notes to digital strings being played in the high-mid and as a bassline. The recording is full of reverb and the instruments are slightly panned across the speakers. The atmosphere sounds sad,melancholic. This song may be playing in a sad movie-scene.", "data_idx": 3254, "number": 3, "label": "classical"} +{"file_name": "train_05808.png", "caption": "A female and male duo yodeling over a fast bluegrass band. The bass and drums are steady and simple as is the chord progression. The guitarist and other instrumentalists are virtuosic.", "data_idx": 3255, "number": 0, "label": "country"} +{"file_name": "train_05809.png", "caption": "A female and male duo yodeling over a fast bluegrass band. The bass and drums are steady and simple as is the chord progression. The guitarist and other instrumentalists are virtuosic.", "data_idx": 3255, "number": 1, "label": "country"} +{"file_name": "train_05810.png", "caption": "A female and male duo yodeling over a fast bluegrass band. The bass and drums are steady and simple as is the chord progression. The guitarist and other instrumentalists are virtuosic.", "data_idx": 3255, "number": 2, "label": "country"} +{"file_name": "train_05811.png", "caption": "A female and male duo yodeling over a fast bluegrass band. The bass and drums are steady and simple as is the chord progression. The guitarist and other instrumentalists are virtuosic.", "data_idx": 3255, "number": 3, "label": "country"} +{"file_name": "train_05812.png", "caption": "This is an electronic music piece. The female vocalist is singing in a rap-like repetitive manner and is occasionally joined by a male vocalist. There is a repeating one-note hollering female vocal sample in the background. A keyboard plays a simple tune. There is a loud electronic drum beat in the rhythmic background. The atmosphere is energetic and danceable. This piece can be played in nightclubs and bars in Thailand. It could also be used in dancing courses as an accompaniment piece.", "data_idx": 3256, "number": 0, "label": "hiphop"} +{"file_name": "train_05813.png", "caption": "This is an electronic music piece. The female vocalist is singing in a rap-like repetitive manner and is occasionally joined by a male vocalist. There is a repeating one-note hollering female vocal sample in the background. A keyboard plays a simple tune. There is a loud electronic drum beat in the rhythmic background. The atmosphere is energetic and danceable. This piece can be played in nightclubs and bars in Thailand. It could also be used in dancing courses as an accompaniment piece.", "data_idx": 3256, "number": 1, "label": "hiphop"} +{"file_name": "train_05814.png", "caption": "This is an electronic music piece. The female vocalist is singing in a rap-like repetitive manner and is occasionally joined by a male vocalist. There is a repeating one-note hollering female vocal sample in the background. A keyboard plays a simple tune. There is a loud electronic drum beat in the rhythmic background. The atmosphere is energetic and danceable. This piece can be played in nightclubs and bars in Thailand. It could also be used in dancing courses as an accompaniment piece.", "data_idx": 3256, "number": 2, "label": "hiphop"} +{"file_name": "train_05815.png", "caption": "This is an electronic music piece. The female vocalist is singing in a rap-like repetitive manner and is occasionally joined by a male vocalist. There is a repeating one-note hollering female vocal sample in the background. A keyboard plays a simple tune. There is a loud electronic drum beat in the rhythmic background. The atmosphere is energetic and danceable. This piece can be played in nightclubs and bars in Thailand. It could also be used in dancing courses as an accompaniment piece.", "data_idx": 3256, "number": 3, "label": "hiphop"} +{"file_name": "train_05816.png", "caption": "Male voices are yodeling with a lot of reverb on their voices. They are loud and the speakers of the recording are speaking. An accordion is playing a fast melody that is panned to the right side of the speakers. A guitar is strumming a rhythmic chord on the backbeat. An upright bass is playing a walking bassline. This song may be playing at a folksfest. This is an amateur recording.", "data_idx": 3258, "number": 0, "label": "blues"} +{"file_name": "train_05817.png", "caption": "Male voices are yodeling with a lot of reverb on their voices. They are loud and the speakers of the recording are speaking. An accordion is playing a fast melody that is panned to the right side of the speakers. A guitar is strumming a rhythmic chord on the backbeat. An upright bass is playing a walking bassline. This song may be playing at a folksfest. This is an amateur recording.", "data_idx": 3258, "number": 1, "label": "blues"} +{"file_name": "train_05818.png", "caption": "Male voices are yodeling with a lot of reverb on their voices. They are loud and the speakers of the recording are speaking. An accordion is playing a fast melody that is panned to the right side of the speakers. A guitar is strumming a rhythmic chord on the backbeat. An upright bass is playing a walking bassline. This song may be playing at a folksfest. This is an amateur recording.", "data_idx": 3258, "number": 2, "label": "blues"} +{"file_name": "train_05819.png", "caption": "Male voices are yodeling with a lot of reverb on their voices. They are loud and the speakers of the recording are speaking. An accordion is playing a fast melody that is panned to the right side of the speakers. A guitar is strumming a rhythmic chord on the backbeat. An upright bass is playing a walking bassline. This song may be playing at a folksfest. This is an amateur recording.", "data_idx": 3258, "number": 3, "label": "blues"} +{"file_name": "train_05820.png", "caption": "Synthesizer pads are playing long chords with a lot of reverb creating a dreamy and relaxing atmosphere. A piano is sprinkling notes on top while a highly processed voice sample is singing a melody that uses a ping pong effect to move to both sides of the speakers. This song may be playing in between two songs in a DJ set to reset the atmosphere.", "data_idx": 3266, "number": 0, "label": "classical"} +{"file_name": "train_05821.png", "caption": "Synthesizer pads are playing long chords with a lot of reverb creating a dreamy and relaxing atmosphere. A piano is sprinkling notes on top while a highly processed voice sample is singing a melody that uses a ping pong effect to move to both sides of the speakers. This song may be playing in between two songs in a DJ set to reset the atmosphere.", "data_idx": 3266, "number": 1, "label": "classical"} +{"file_name": "train_05822.png", "caption": "Synthesizer pads are playing long chords with a lot of reverb creating a dreamy and relaxing atmosphere. A piano is sprinkling notes on top while a highly processed voice sample is singing a melody that uses a ping pong effect to move to both sides of the speakers. This song may be playing in between two songs in a DJ set to reset the atmosphere.", "data_idx": 3266, "number": 2, "label": "classical"} +{"file_name": "train_05823.png", "caption": "Synthesizer pads are playing long chords with a lot of reverb creating a dreamy and relaxing atmosphere. A piano is sprinkling notes on top while a highly processed voice sample is singing a melody that uses a ping pong effect to move to both sides of the speakers. This song may be playing in between two songs in a DJ set to reset the atmosphere.", "data_idx": 3266, "number": 3, "label": "classical"} +{"file_name": "train_05824.png", "caption": "The song is an instrumental. The song is medium tempo with a keyboard accompaniment, groovy bass line and a funky drumming rhythm. There is a lot of office ambient noises, like a printer motor noises, wind noise and other office environmental sounds. The music track acts as a background to the ambient office sound environment. The audio quality is very poor.", "data_idx": 3269, "number": 0, "label": "jazz"} +{"file_name": "train_05825.png", "caption": "The song is an instrumental. The song is medium tempo with a keyboard accompaniment, groovy bass line and a funky drumming rhythm. There is a lot of office ambient noises, like a printer motor noises, wind noise and other office environmental sounds. The music track acts as a background to the ambient office sound environment. The audio quality is very poor.", "data_idx": 3269, "number": 1, "label": "jazz"} +{"file_name": "train_05826.png", "caption": "The song is an instrumental. The song is medium tempo with a keyboard accompaniment, groovy bass line and a funky drumming rhythm. There is a lot of office ambient noises, like a printer motor noises, wind noise and other office environmental sounds. The music track acts as a background to the ambient office sound environment. The audio quality is very poor.", "data_idx": 3269, "number": 2, "label": "jazz"} +{"file_name": "train_05827.png", "caption": "The song is an instrumental. The song is medium tempo with a keyboard accompaniment, groovy bass line and a funky drumming rhythm. There is a lot of office ambient noises, like a printer motor noises, wind noise and other office environmental sounds. The music track acts as a background to the ambient office sound environment. The audio quality is very poor.", "data_idx": 3269, "number": 3, "label": "jazz"} +{"file_name": "train_05828.png", "caption": "Instrumental Chicago blues music featuring a saxophone melody interspersed with licks from harmonica, Hammond style organ, acoustic piano and electric guitar. The drums play a shuffled backbeat on the snare and low toms under a repetitive electric bass riff. Would be at home in a roadhouse or barbecue festival.", "data_idx": 3272, "number": 0, "label": "jazz"} +{"file_name": "train_05829.png", "caption": "Instrumental Chicago blues music featuring a saxophone melody interspersed with licks from harmonica, Hammond style organ, acoustic piano and electric guitar. The drums play a shuffled backbeat on the snare and low toms under a repetitive electric bass riff. Would be at home in a roadhouse or barbecue festival.", "data_idx": 3272, "number": 1, "label": "jazz"} +{"file_name": "train_05830.png", "caption": "Instrumental Chicago blues music featuring a saxophone melody interspersed with licks from harmonica, Hammond style organ, acoustic piano and electric guitar. The drums play a shuffled backbeat on the snare and low toms under a repetitive electric bass riff. Would be at home in a roadhouse or barbecue festival.", "data_idx": 3272, "number": 2, "label": "jazz"} +{"file_name": "train_05831.png", "caption": "Instrumental Chicago blues music featuring a saxophone melody interspersed with licks from harmonica, Hammond style organ, acoustic piano and electric guitar. The drums play a shuffled backbeat on the snare and low toms under a repetitive electric bass riff. Would be at home in a roadhouse or barbecue festival.", "data_idx": 3272, "number": 3, "label": "jazz"} +{"file_name": "train_05832.png", "caption": "The song has a bluesy funk feel to it. The singer has a raspy and burly vocal and sits on top of a grungy gritty electric guitar.", "data_idx": 3275, "number": 0, "label": "blues"} +{"file_name": "train_05833.png", "caption": "The song has a bluesy funk feel to it. The singer has a raspy and burly vocal and sits on top of a grungy gritty electric guitar.", "data_idx": 3275, "number": 1, "label": "blues"} +{"file_name": "train_05834.png", "caption": "The song has a bluesy funk feel to it. The singer has a raspy and burly vocal and sits on top of a grungy gritty electric guitar.", "data_idx": 3275, "number": 2, "label": "blues"} +{"file_name": "train_05835.png", "caption": "The song has a bluesy funk feel to it. The singer has a raspy and burly vocal and sits on top of a grungy gritty electric guitar.", "data_idx": 3275, "number": 3, "label": "blues"} +{"file_name": "train_05836.png", "caption": "A synth pad is playing an evolving drone chord along with some glittering sounds. In the background of the recording you can hear wind, running and birds chirping. The whole scenario sounds calming and meditative. This song may be playing for a documentary.", "data_idx": 3277, "number": 0, "label": "classical"} +{"file_name": "train_05837.png", "caption": "A synth pad is playing an evolving drone chord along with some glittering sounds. In the background of the recording you can hear wind, running and birds chirping. The whole scenario sounds calming and meditative. This song may be playing for a documentary.", "data_idx": 3277, "number": 1, "label": "classical"} +{"file_name": "train_05838.png", "caption": "A synth pad is playing an evolving drone chord along with some glittering sounds. In the background of the recording you can hear wind, running and birds chirping. The whole scenario sounds calming and meditative. This song may be playing for a documentary.", "data_idx": 3277, "number": 2, "label": "classical"} +{"file_name": "train_05839.png", "caption": "A synth pad is playing an evolving drone chord along with some glittering sounds. In the background of the recording you can hear wind, running and birds chirping. The whole scenario sounds calming and meditative. This song may be playing for a documentary.", "data_idx": 3277, "number": 3, "label": "classical"} +{"file_name": "train_05840.png", "caption": "The low quality recording features an arpeggiated electric guitar melody with an aggressive echoing effect on. The recording is noisy as it was probably recorded with a phone.", "data_idx": 3278, "number": 0, "label": "blues"} +{"file_name": "train_05841.png", "caption": "The low quality recording features an arpeggiated electric guitar melody with an aggressive echoing effect on. The recording is noisy as it was probably recorded with a phone.", "data_idx": 3278, "number": 1, "label": "blues"} +{"file_name": "train_05842.png", "caption": "The low quality recording features an arpeggiated electric guitar melody with an aggressive echoing effect on. The recording is noisy as it was probably recorded with a phone.", "data_idx": 3278, "number": 2, "label": "blues"} +{"file_name": "train_05843.png", "caption": "The low quality recording features an arpeggiated electric guitar melody with an aggressive echoing effect on. The recording is noisy as it was probably recorded with a phone.", "data_idx": 3278, "number": 3, "label": "blues"} +{"file_name": "train_05844.png", "caption": "This is a gear comparison jam recorded with an electric guitar played with different chorus effect pedals. The electric guitar is playing simple tunes that sound dreamy with the added chorus effect. There is a psychedelic atmosphere. Certain parts of this recording can be sampled for use in beat-making or in advertisement jingles. These parts could also be played as an opening theme for rock music radio stations.", "data_idx": 3280, "number": 0, "label": "classical"} +{"file_name": "train_05845.png", "caption": "This is a gear comparison jam recorded with an electric guitar played with different chorus effect pedals. The electric guitar is playing simple tunes that sound dreamy with the added chorus effect. There is a psychedelic atmosphere. Certain parts of this recording can be sampled for use in beat-making or in advertisement jingles. These parts could also be played as an opening theme for rock music radio stations.", "data_idx": 3280, "number": 1, "label": "classical"} +{"file_name": "train_05846.png", "caption": "This is a gear comparison jam recorded with an electric guitar played with different chorus effect pedals. The electric guitar is playing simple tunes that sound dreamy with the added chorus effect. There is a psychedelic atmosphere. Certain parts of this recording can be sampled for use in beat-making or in advertisement jingles. These parts could also be played as an opening theme for rock music radio stations.", "data_idx": 3280, "number": 2, "label": "classical"} +{"file_name": "train_05847.png", "caption": "This is a gear comparison jam recorded with an electric guitar played with different chorus effect pedals. The electric guitar is playing simple tunes that sound dreamy with the added chorus effect. There is a psychedelic atmosphere. Certain parts of this recording can be sampled for use in beat-making or in advertisement jingles. These parts could also be played as an opening theme for rock music radio stations.", "data_idx": 3280, "number": 3, "label": "classical"} +{"file_name": "train_05848.png", "caption": "The low quality recording features a cover of an R & B/soul song and it consists of a steel guitar solo melody. There are some pedal tapping noises. Overall the recording is noisy and it sounds passionate and soulful.", "data_idx": 3281, "number": 0, "label": "classical"} +{"file_name": "train_05849.png", "caption": "The low quality recording features a cover of an R & B/soul song and it consists of a steel guitar solo melody. There are some pedal tapping noises. Overall the recording is noisy and it sounds passionate and soulful.", "data_idx": 3281, "number": 1, "label": "classical"} +{"file_name": "train_05850.png", "caption": "The low quality recording features a cover of an R & B/soul song and it consists of a steel guitar solo melody. There are some pedal tapping noises. Overall the recording is noisy and it sounds passionate and soulful.", "data_idx": 3281, "number": 2, "label": "classical"} +{"file_name": "train_05851.png", "caption": "The low quality recording features a cover of an R & B/soul song and it consists of a steel guitar solo melody. There are some pedal tapping noises. Overall the recording is noisy and it sounds passionate and soulful.", "data_idx": 3281, "number": 3, "label": "classical"} +{"file_name": "train_05852.png", "caption": "The file contains acoustic drums playing with a lot of crash hits, an e-guitar playing a melody along with male voice singing the same melody. The crowd is cheering and screaming in the background. This is an amateur recording with poor sound-quality. This song may be playing at a live concert.", "data_idx": 3285, "number": 0, "label": "metal"} +{"file_name": "train_05853.png", "caption": "The file contains acoustic drums playing with a lot of crash hits, an e-guitar playing a melody along with male voice singing the same melody. The crowd is cheering and screaming in the background. This is an amateur recording with poor sound-quality. This song may be playing at a live concert.", "data_idx": 3285, "number": 1, "label": "metal"} +{"file_name": "train_05854.png", "caption": "The file contains acoustic drums playing with a lot of crash hits, an e-guitar playing a melody along with male voice singing the same melody. The crowd is cheering and screaming in the background. This is an amateur recording with poor sound-quality. This song may be playing at a live concert.", "data_idx": 3285, "number": 2, "label": "metal"} +{"file_name": "train_05855.png", "caption": "The file contains acoustic drums playing with a lot of crash hits, an e-guitar playing a melody along with male voice singing the same melody. The crowd is cheering and screaming in the background. This is an amateur recording with poor sound-quality. This song may be playing at a live concert.", "data_idx": 3285, "number": 3, "label": "metal"} +{"file_name": "train_05856.png", "caption": "An orchestra plays a waltz supporting a Theremin which takes the lead melody while the piano plays a counter melody. The feel is cinematic, spooky and a bit quirky.", "data_idx": 3287, "number": 0, "label": "classical"} +{"file_name": "train_05857.png", "caption": "An orchestra plays a waltz supporting a Theremin which takes the lead melody while the piano plays a counter melody. The feel is cinematic, spooky and a bit quirky.", "data_idx": 3287, "number": 1, "label": "classical"} +{"file_name": "train_05858.png", "caption": "An orchestra plays a waltz supporting a Theremin which takes the lead melody while the piano plays a counter melody. The feel is cinematic, spooky and a bit quirky.", "data_idx": 3287, "number": 2, "label": "classical"} +{"file_name": "train_05859.png", "caption": "An orchestra plays a waltz supporting a Theremin which takes the lead melody while the piano plays a counter melody. The feel is cinematic, spooky and a bit quirky.", "data_idx": 3287, "number": 3, "label": "classical"} +{"file_name": "train_05860.png", "caption": "A female vocalist sings this high energy pop song. The tempo is fast with vigorous drumming, synthesiser arrangements and boomy bass drops. The song is vibrant, lively, spirited, buoyant, punchy and youthful with a catchy vocal riff. The sound quality of this song is inferior and distorted. This song is an EDM/Synth Pop song.", "data_idx": 3290, "number": 0, "label": "hiphop"} +{"file_name": "train_05861.png", "caption": "A female vocalist sings this high energy pop song. The tempo is fast with vigorous drumming, synthesiser arrangements and boomy bass drops. The song is vibrant, lively, spirited, buoyant, punchy and youthful with a catchy vocal riff. The sound quality of this song is inferior and distorted. This song is an EDM/Synth Pop song.", "data_idx": 3290, "number": 1, "label": "hiphop"} +{"file_name": "train_05862.png", "caption": "A female vocalist sings this high energy pop song. The tempo is fast with vigorous drumming, synthesiser arrangements and boomy bass drops. The song is vibrant, lively, spirited, buoyant, punchy and youthful with a catchy vocal riff. The sound quality of this song is inferior and distorted. This song is an EDM/Synth Pop song.", "data_idx": 3290, "number": 2, "label": "hiphop"} +{"file_name": "train_05863.png", "caption": "A female vocalist sings this high energy pop song. The tempo is fast with vigorous drumming, synthesiser arrangements and boomy bass drops. The song is vibrant, lively, spirited, buoyant, punchy and youthful with a catchy vocal riff. The sound quality of this song is inferior and distorted. This song is an EDM/Synth Pop song.", "data_idx": 3290, "number": 3, "label": "hiphop"} +{"file_name": "train_05864.png", "caption": "This song has a male vocalist singing a rhythmic vocal riff to the beat of digital drumming followed by the sound of a beep. The percussion is amateur and the vocals are muffled as the audio quality is inferior. The song is slow tempo and the beat is punchy, groovy, buoyant and youthful.", "data_idx": 3294, "number": 0, "label": "hiphop"} +{"file_name": "train_05865.png", "caption": "This song has a male vocalist singing a rhythmic vocal riff to the beat of digital drumming followed by the sound of a beep. The percussion is amateur and the vocals are muffled as the audio quality is inferior. The song is slow tempo and the beat is punchy, groovy, buoyant and youthful.", "data_idx": 3294, "number": 1, "label": "hiphop"} +{"file_name": "train_05866.png", "caption": "This song has a male vocalist singing a rhythmic vocal riff to the beat of digital drumming followed by the sound of a beep. The percussion is amateur and the vocals are muffled as the audio quality is inferior. The song is slow tempo and the beat is punchy, groovy, buoyant and youthful.", "data_idx": 3294, "number": 2, "label": "hiphop"} +{"file_name": "train_05867.png", "caption": "This song has a male vocalist singing a rhythmic vocal riff to the beat of digital drumming followed by the sound of a beep. The percussion is amateur and the vocals are muffled as the audio quality is inferior. The song is slow tempo and the beat is punchy, groovy, buoyant and youthful.", "data_idx": 3294, "number": 3, "label": "hiphop"} +{"file_name": "train_05868.png", "caption": "The song is an instrumental followed by a long pause. The song is medium tempo and features an electric guitar playing a solemn solo. The song is passionate and mysterious. The audio quality is poor.", "data_idx": 3295, "number": 0, "label": "hiphop"} +{"file_name": "train_05869.png", "caption": "The song is an instrumental followed by a long pause. The song is medium tempo and features an electric guitar playing a solemn solo. The song is passionate and mysterious. The audio quality is poor.", "data_idx": 3295, "number": 1, "label": "hiphop"} +{"file_name": "train_05870.png", "caption": "This music clip is of a musician playing a lilting melody on the Banjo. The tempo is medium with a rhythmic lead harmony. There is no other instrument used. The music is soft, mellow, nostalgic, and calming. Soothing and simple.", "data_idx": 3296, "number": 0, "label": "classical"} +{"file_name": "train_05871.png", "caption": "This music clip is of a musician playing a lilting melody on the Banjo. The tempo is medium with a rhythmic lead harmony. There is no other instrument used. The music is soft, mellow, nostalgic, and calming. Soothing and simple.", "data_idx": 3296, "number": 1, "label": "classical"} +{"file_name": "train_05872.png", "caption": "The low quality recording features a Twoubadou song that consists of flat male vocal singing over acoustic guitar melody, arpeggiated guitar melody, syncopated rimshots, shimmering shakers, smooth bass and wooden percussive elements. Even though it is noisy, it sounds fun and happy - like something you would want to dance to.", "data_idx": 3297, "number": 0, "label": "hiphop"} +{"file_name": "train_05873.png", "caption": "The low quality recording features a Twoubadou song that consists of flat male vocal singing over acoustic guitar melody, arpeggiated guitar melody, syncopated rimshots, shimmering shakers, smooth bass and wooden percussive elements. Even though it is noisy, it sounds fun and happy - like something you would want to dance to.", "data_idx": 3297, "number": 1, "label": "hiphop"} +{"file_name": "train_05874.png", "caption": "Synthesizer melodies and bassline being arpeggiated. On top of that another synth sound is playing a melody at the end of the phrases. Then a four on the floor kick comes in. This song may be playing at home while cleaning the house.", "data_idx": 3302, "number": 0, "label": "disco"} +{"file_name": "train_05875.png", "caption": "Synthesizer melodies and bassline being arpeggiated. On top of that another synth sound is playing a melody at the end of the phrases. Then a four on the floor kick comes in. This song may be playing at home while cleaning the house.", "data_idx": 3302, "number": 1, "label": "disco"} +{"file_name": "train_05876.png", "caption": "Synthesizer melodies and bassline being arpeggiated. On top of that another synth sound is playing a melody at the end of the phrases. Then a four on the floor kick comes in. This song may be playing at home while cleaning the house.", "data_idx": 3302, "number": 2, "label": "disco"} +{"file_name": "train_05877.png", "caption": "Synthesizer melodies and bassline being arpeggiated. On top of that another synth sound is playing a melody at the end of the phrases. Then a four on the floor kick comes in. This song may be playing at home while cleaning the house.", "data_idx": 3302, "number": 3, "label": "disco"} +{"file_name": "train_05878.png", "caption": "The tune is played by two vibraphones at the same time. The bright character of the instrument gives the piece a playful aura. It could be used as a ringtone or an alarm tone due to its generic, repeated nature.", "data_idx": 3303, "number": 0, "label": "classical"} +{"file_name": "train_05879.png", "caption": "The tune is played by two vibraphones at the same time. The bright character of the instrument gives the piece a playful aura. It could be used as a ringtone or an alarm tone due to its generic, repeated nature.", "data_idx": 3303, "number": 1, "label": "classical"} +{"file_name": "train_05880.png", "caption": "The tune is played by two vibraphones at the same time. The bright character of the instrument gives the piece a playful aura. It could be used as a ringtone or an alarm tone due to its generic, repeated nature.", "data_idx": 3303, "number": 2, "label": "classical"} +{"file_name": "train_05881.png", "caption": "The tune is played by two vibraphones at the same time. The bright character of the instrument gives the piece a playful aura. It could be used as a ringtone or an alarm tone due to its generic, repeated nature.", "data_idx": 3303, "number": 3, "label": "classical"} +{"file_name": "train_05882.png", "caption": "This music clip is an instrumental. The tempo is medium with a simple and interesting melody with a recorder harmony, steady drumming, groovy bass lines,keyboard accompaniment ,xylophone rhythm, a constant electronic sound like that of a child\u2019s toy gun or car , tambourine beats and chimes and bells. The music is mellow, unique, fun, simple and catchy. This music is Soft Rock/Pop.", "data_idx": 3307, "number": 0, "label": "hiphop"} +{"file_name": "train_05883.png", "caption": "This music clip is an instrumental. The tempo is medium with a simple and interesting melody with a recorder harmony, steady drumming, groovy bass lines,keyboard accompaniment ,xylophone rhythm, a constant electronic sound like that of a child\u2019s toy gun or car , tambourine beats and chimes and bells. The music is mellow, unique, fun, simple and catchy. This music is Soft Rock/Pop.", "data_idx": 3307, "number": 1, "label": "hiphop"} +{"file_name": "train_05884.png", "caption": "This music clip is an instrumental. The tempo is medium with a simple and interesting melody with a recorder harmony, steady drumming, groovy bass lines,keyboard accompaniment ,xylophone rhythm, a constant electronic sound like that of a child\u2019s toy gun or car , tambourine beats and chimes and bells. The music is mellow, unique, fun, simple and catchy. This music is Soft Rock/Pop.", "data_idx": 3307, "number": 2, "label": "hiphop"} +{"file_name": "train_05885.png", "caption": "This music clip is an instrumental. The tempo is medium with a simple and interesting melody with a recorder harmony, steady drumming, groovy bass lines,keyboard accompaniment ,xylophone rhythm, a constant electronic sound like that of a child\u2019s toy gun or car , tambourine beats and chimes and bells. The music is mellow, unique, fun, simple and catchy. This music is Soft Rock/Pop.", "data_idx": 3307, "number": 3, "label": "hiphop"} +{"file_name": "train_05886.png", "caption": "The song feels relaxing, soothing and gentle. It feels like the kind of music that you would play if you wanted to fall asleep. It features a gentle and dainty electric piano with a flanger, as well as a sustained synth pad.", "data_idx": 3308, "number": 0, "label": "blues"} +{"file_name": "train_05887.png", "caption": "The song feels relaxing, soothing and gentle. It feels like the kind of music that you would play if you wanted to fall asleep. It features a gentle and dainty electric piano with a flanger, as well as a sustained synth pad.", "data_idx": 3308, "number": 1, "label": "blues"} +{"file_name": "train_05888.png", "caption": "The song feels relaxing, soothing and gentle. It feels like the kind of music that you would play if you wanted to fall asleep. It features a gentle and dainty electric piano with a flanger, as well as a sustained synth pad.", "data_idx": 3308, "number": 2, "label": "blues"} +{"file_name": "train_05889.png", "caption": "The song feels relaxing, soothing and gentle. It feels like the kind of music that you would play if you wanted to fall asleep. It features a gentle and dainty electric piano with a flanger, as well as a sustained synth pad.", "data_idx": 3308, "number": 3, "label": "blues"} +{"file_name": "train_05890.png", "caption": "The low quality recording features a sipping sound effect and some repetitive, weird burping sounds, while the jazz song is playing in the background. It sounds like it is an audio from some cartoon on a TV, as it sounds mono and a bit noisy too - like it was recorded with a phone.", "data_idx": 3311, "number": 0, "label": "hiphop"} +{"file_name": "train_05891.png", "caption": "The low quality recording features a sipping sound effect and some repetitive, weird burping sounds, while the jazz song is playing in the background. It sounds like it is an audio from some cartoon on a TV, as it sounds mono and a bit noisy too - like it was recorded with a phone.", "data_idx": 3311, "number": 1, "label": "hiphop"} +{"file_name": "train_05892.png", "caption": "This is an indie rock piece. There is a male vocalist in the lead with heavy effects. There is an ambient synth in the background playing the melody with the accompaniment of an acoustic guitar. A mellow bass guitar plays a groovy bass line. The rhythmic background consists of an electronic drum beat full of percussion samples. The piece has a trippy aura. It could be played at nightclubs. It could also be used in the soundtracks of drama films with a modern, urban setting.", "data_idx": 3315, "number": 0, "label": "metal"} +{"file_name": "train_05893.png", "caption": "This is an indie rock piece. There is a male vocalist in the lead with heavy effects. There is an ambient synth in the background playing the melody with the accompaniment of an acoustic guitar. A mellow bass guitar plays a groovy bass line. The rhythmic background consists of an electronic drum beat full of percussion samples. The piece has a trippy aura. It could be played at nightclubs. It could also be used in the soundtracks of drama films with a modern, urban setting.", "data_idx": 3315, "number": 1, "label": "metal"} +{"file_name": "train_05894.png", "caption": "This is an indie rock piece. There is a male vocalist in the lead with heavy effects. There is an ambient synth in the background playing the melody with the accompaniment of an acoustic guitar. A mellow bass guitar plays a groovy bass line. The rhythmic background consists of an electronic drum beat full of percussion samples. The piece has a trippy aura. It could be played at nightclubs. It could also be used in the soundtracks of drama films with a modern, urban setting.", "data_idx": 3315, "number": 2, "label": "metal"} +{"file_name": "train_05895.png", "caption": "This is an indie rock piece. There is a male vocalist in the lead with heavy effects. There is an ambient synth in the background playing the melody with the accompaniment of an acoustic guitar. A mellow bass guitar plays a groovy bass line. The rhythmic background consists of an electronic drum beat full of percussion samples. The piece has a trippy aura. It could be played at nightclubs. It could also be used in the soundtracks of drama films with a modern, urban setting.", "data_idx": 3315, "number": 3, "label": "metal"} +{"file_name": "train_05896.png", "caption": "The song is instrumental. The tempo is medium with electrical current manipulation to produce different frequencies to play percussively and harmonically with each other. The song is for scientific research and not pleasing to the ear. The song is of poor audio quality.", "data_idx": 3316, "number": 0, "label": "jazz"} +{"file_name": "train_05897.png", "caption": "The song is instrumental. The tempo is medium with electrical current manipulation to produce different frequencies to play percussively and harmonically with each other. The song is for scientific research and not pleasing to the ear. The song is of poor audio quality.", "data_idx": 3316, "number": 1, "label": "jazz"} +{"file_name": "train_05898.png", "caption": "The song is instrumental. The tempo is medium with electrical current manipulation to produce different frequencies to play percussively and harmonically with each other. The song is for scientific research and not pleasing to the ear. The song is of poor audio quality.", "data_idx": 3316, "number": 2, "label": "jazz"} +{"file_name": "train_05899.png", "caption": "The song is instrumental. The tempo is medium with electrical current manipulation to produce different frequencies to play percussively and harmonically with each other. The song is for scientific research and not pleasing to the ear. The song is of poor audio quality.", "data_idx": 3316, "number": 3, "label": "jazz"} +{"file_name": "train_05900.png", "caption": "Someone is playing a melody on acoustic guitar and then continues strumming chords along with a soft e-bass playing a melody along. These two instruments are panned on to the left and the other to the right side of the speakers. A male voice is sitting in-between singing in a higher pitch. This song may be playing in a movie scene of someone being in the countryside.", "data_idx": 3319, "number": 0, "label": "country"} +{"file_name": "train_05901.png", "caption": "Someone is playing a melody on acoustic guitar and then continues strumming chords along with a soft e-bass playing a melody along. These two instruments are panned on to the left and the other to the right side of the speakers. A male voice is sitting in-between singing in a higher pitch. This song may be playing in a movie scene of someone being in the countryside.", "data_idx": 3319, "number": 1, "label": "country"} +{"file_name": "train_05902.png", "caption": "Someone is playing a melody on acoustic guitar and then continues strumming chords along with a soft e-bass playing a melody along. These two instruments are panned on to the left and the other to the right side of the speakers. A male voice is sitting in-between singing in a higher pitch. This song may be playing in a movie scene of someone being in the countryside.", "data_idx": 3319, "number": 2, "label": "country"} +{"file_name": "train_05903.png", "caption": "Someone is playing a melody on acoustic guitar and then continues strumming chords along with a soft e-bass playing a melody along. These two instruments are panned on to the left and the other to the right side of the speakers. A male voice is sitting in-between singing in a higher pitch. This song may be playing in a movie scene of someone being in the countryside.", "data_idx": 3319, "number": 3, "label": "country"} +{"file_name": "train_05904.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an enthusiastic lead on the electric guitar.no accompanying instruments are used. The music is loud, emphatic, catchy, intense and powerful like in Rock/ Metal music.", "data_idx": 3320, "number": 0, "label": "classical"} +{"file_name": "train_05905.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an enthusiastic lead on the electric guitar.no accompanying instruments are used. The music is loud, emphatic, catchy, intense and powerful like in Rock/ Metal music.", "data_idx": 3320, "number": 1, "label": "classical"} +{"file_name": "train_05906.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an enthusiastic lead on the electric guitar.no accompanying instruments are used. The music is loud, emphatic, catchy, intense and powerful like in Rock/ Metal music.", "data_idx": 3320, "number": 2, "label": "classical"} +{"file_name": "train_05907.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with an enthusiastic lead on the electric guitar.no accompanying instruments are used. The music is loud, emphatic, catchy, intense and powerful like in Rock/ Metal music.", "data_idx": 3320, "number": 3, "label": "classical"} +{"file_name": "train_05908.png", "caption": "You can hear birds chirping along with pig-sounds. Then a full orchestra with strings, bell sounds and a choir comes rising in tension. This song may be playing in a dramatic, epic movie scene.", "data_idx": 3323, "number": 0, "label": "classical"} +{"file_name": "train_05909.png", "caption": "You can hear birds chirping along with pig-sounds. Then a full orchestra with strings, bell sounds and a choir comes rising in tension. This song may be playing in a dramatic, epic movie scene.", "data_idx": 3323, "number": 1, "label": "classical"} +{"file_name": "train_05910.png", "caption": "You can hear birds chirping along with pig-sounds. Then a full orchestra with strings, bell sounds and a choir comes rising in tension. This song may be playing in a dramatic, epic movie scene.", "data_idx": 3323, "number": 2, "label": "classical"} +{"file_name": "train_05911.png", "caption": "You can hear birds chirping along with pig-sounds. Then a full orchestra with strings, bell sounds and a choir comes rising in tension. This song may be playing in a dramatic, epic movie scene.", "data_idx": 3323, "number": 3, "label": "classical"} +{"file_name": "train_05912.png", "caption": "This music clip is an instrumental. The tempo is slow with a steady keyboard harmony, ethereal male vocal harmony, cymbals, electronic sounds, sound of metal swiping,an engine whirring,and breeze. It is mysterious, suspenseful, enigmatic, grim and intense.", "data_idx": 3326, "number": 0, "label": "hiphop"} +{"file_name": "train_05913.png", "caption": "This music clip is an instrumental. The tempo is slow with a steady keyboard harmony, ethereal male vocal harmony, cymbals, electronic sounds, sound of metal swiping,an engine whirring,and breeze. It is mysterious, suspenseful, enigmatic, grim and intense.", "data_idx": 3326, "number": 1, "label": "hiphop"} +{"file_name": "train_05914.png", "caption": "Latin music featuring a quick tempo, hand percussion, tambourine, lively hand claps, guiro, a low tuned bass drum, an acoustic guitar solo with a wah effect, flamenco inspired fast acoustic guitar strumming, complex chords and a modern electric bass sound supporting a passionate female singer.", "data_idx": 3330, "number": 0, "label": "reggae"} +{"file_name": "train_05915.png", "caption": "Latin music featuring a quick tempo, hand percussion, tambourine, lively hand claps, guiro, a low tuned bass drum, an acoustic guitar solo with a wah effect, flamenco inspired fast acoustic guitar strumming, complex chords and a modern electric bass sound supporting a passionate female singer.", "data_idx": 3330, "number": 1, "label": "reggae"} +{"file_name": "train_05916.png", "caption": "Latin music featuring a quick tempo, hand percussion, tambourine, lively hand claps, guiro, a low tuned bass drum, an acoustic guitar solo with a wah effect, flamenco inspired fast acoustic guitar strumming, complex chords and a modern electric bass sound supporting a passionate female singer.", "data_idx": 3330, "number": 2, "label": "reggae"} +{"file_name": "train_05917.png", "caption": "Latin music featuring a quick tempo, hand percussion, tambourine, lively hand claps, guiro, a low tuned bass drum, an acoustic guitar solo with a wah effect, flamenco inspired fast acoustic guitar strumming, complex chords and a modern electric bass sound supporting a passionate female singer.", "data_idx": 3330, "number": 3, "label": "reggae"} +{"file_name": "train_05918.png", "caption": "This music clip is an instrumental. The tempo is fast with different electronic sounds from a video game. The sounds and music are dissonant and unrelated. There are sounds of shooting, beeping, and game ending. This music is video game music.", "data_idx": 3331, "number": 0, "label": "hiphop"} +{"file_name": "train_05919.png", "caption": "This music clip is an instrumental. The tempo is fast with different electronic sounds from a video game. The sounds and music are dissonant and unrelated. There are sounds of shooting, beeping, and game ending. This music is video game music.", "data_idx": 3331, "number": 1, "label": "hiphop"} +{"file_name": "train_05920.png", "caption": "This music clip is an instrumental. The tempo is fast with different electronic sounds from a video game. The sounds and music are dissonant and unrelated. There are sounds of shooting, beeping, and game ending. This music is video game music.", "data_idx": 3331, "number": 2, "label": "hiphop"} +{"file_name": "train_05921.png", "caption": "This music clip is an instrumental. The tempo is fast with different electronic sounds from a video game. The sounds and music are dissonant and unrelated. There are sounds of shooting, beeping, and game ending. This music is video game music.", "data_idx": 3331, "number": 3, "label": "hiphop"} +{"file_name": "train_05922.png", "caption": "A female opera singer accompanied by an orchestra featuring string bass, harp and string ensemble. It sounds like it was performed in a concert hall. Dramatic.", "data_idx": 3335, "number": 0, "label": "classical"} +{"file_name": "train_05923.png", "caption": "A female opera singer accompanied by an orchestra featuring string bass, harp and string ensemble. It sounds like it was performed in a concert hall. Dramatic.", "data_idx": 3335, "number": 1, "label": "classical"} +{"file_name": "train_05924.png", "caption": "A female opera singer accompanied by an orchestra featuring string bass, harp and string ensemble. It sounds like it was performed in a concert hall. Dramatic.", "data_idx": 3335, "number": 2, "label": "classical"} +{"file_name": "train_05925.png", "caption": "A female opera singer accompanied by an orchestra featuring string bass, harp and string ensemble. It sounds like it was performed in a concert hall. Dramatic.", "data_idx": 3335, "number": 3, "label": "classical"} +{"file_name": "train_05926.png", "caption": "This is a home recording of two electric guitar players jamming some random rock/metal tunes. It is a dated amateur recording so the quality is quite poor. The electric guitars have a distortion effect that gives them a crunchy sound. The sound is hard-hitting, but the atmosphere feels spontaneous and random. Parts of this recording could be lifted as distorted electric guitar samples to be used in beat-making.", "data_idx": 3336, "number": 0, "label": "blues"} +{"file_name": "train_05927.png", "caption": "This is a home recording of two electric guitar players jamming some random rock/metal tunes. It is a dated amateur recording so the quality is quite poor. The electric guitars have a distortion effect that gives them a crunchy sound. The sound is hard-hitting, but the atmosphere feels spontaneous and random. Parts of this recording could be lifted as distorted electric guitar samples to be used in beat-making.", "data_idx": 3336, "number": 1, "label": "blues"} +{"file_name": "train_05928.png", "caption": "Male voices are singing a hymn while supported by strings playing chords, a triangle sound can be heard as a rhythmic addition. Upright basses being plucked along with a soft timpani hit. This song may be playing at an official national event.", "data_idx": 3338, "number": 0, "label": "hiphop"} +{"file_name": "train_05929.png", "caption": "Male voices are singing a hymn while supported by strings playing chords, a triangle sound can be heard as a rhythmic addition. Upright basses being plucked along with a soft timpani hit. This song may be playing at an official national event.", "data_idx": 3338, "number": 1, "label": "hiphop"} +{"file_name": "train_05930.png", "caption": "Male voices are singing a hymn while supported by strings playing chords, a triangle sound can be heard as a rhythmic addition. Upright basses being plucked along with a soft timpani hit. This song may be playing at an official national event.", "data_idx": 3338, "number": 2, "label": "hiphop"} +{"file_name": "train_05931.png", "caption": "Male voices are singing a hymn while supported by strings playing chords, a triangle sound can be heard as a rhythmic addition. Upright basses being plucked along with a soft timpani hit. This song may be playing at an official national event.", "data_idx": 3338, "number": 3, "label": "hiphop"} +{"file_name": "train_05932.png", "caption": "The song contains synth pad sounds in the low to mid range playing drone sounds with little atmospheric sounds. In the background you can hear sounds of something falling to the ground. This song may be playing for meditation.", "data_idx": 3339, "number": 0, "label": "hiphop"} +{"file_name": "train_05933.png", "caption": "The song contains synth pad sounds in the low to mid range playing drone sounds with little atmospheric sounds. In the background you can hear sounds of something falling to the ground. This song may be playing for meditation.", "data_idx": 3339, "number": 1, "label": "hiphop"} +{"file_name": "train_05934.png", "caption": "The song contains synth pad sounds in the low to mid range playing drone sounds with little atmospheric sounds. In the background you can hear sounds of something falling to the ground. This song may be playing for meditation.", "data_idx": 3339, "number": 2, "label": "hiphop"} +{"file_name": "train_05935.png", "caption": "The song contains synth pad sounds in the low to mid range playing drone sounds with little atmospheric sounds. In the background you can hear sounds of something falling to the ground. This song may be playing for meditation.", "data_idx": 3339, "number": 3, "label": "hiphop"} +{"file_name": "train_05936.png", "caption": "The low quality recording features a parody that contains metallic detuned percussion, funny synth lead, wide sustained string melody in the background, male and crow cough, wooden percussion hits layered with coughs and flat male vocals, alongside harmonized mixed vocals, singing over it. It sounds funny and weird - almost like a TV commercial.", "data_idx": 3341, "number": 0, "label": "country"} +{"file_name": "train_05937.png", "caption": "The low quality recording features a parody that contains metallic detuned percussion, funny synth lead, wide sustained string melody in the background, male and crow cough, wooden percussion hits layered with coughs and flat male vocals, alongside harmonized mixed vocals, singing over it. It sounds funny and weird - almost like a TV commercial.", "data_idx": 3341, "number": 1, "label": "country"} +{"file_name": "train_05938.png", "caption": "The low quality recording features a parody that contains metallic detuned percussion, funny synth lead, wide sustained string melody in the background, male and crow cough, wooden percussion hits layered with coughs and flat male vocals, alongside harmonized mixed vocals, singing over it. It sounds funny and weird - almost like a TV commercial.", "data_idx": 3341, "number": 2, "label": "country"} +{"file_name": "train_05939.png", "caption": "The low quality recording features a parody that contains metallic detuned percussion, funny synth lead, wide sustained string melody in the background, male and crow cough, wooden percussion hits layered with coughs and flat male vocals, alongside harmonized mixed vocals, singing over it. It sounds funny and weird - almost like a TV commercial.", "data_idx": 3341, "number": 3, "label": "country"} +{"file_name": "train_05940.png", "caption": "A female singer sings this casual melody. The tempo is medium with clapping and desk tapping percussion and no other instrumentation. The song is very casual and made up for fun. The song has poor audio quality.", "data_idx": 3342, "number": 0, "label": "reggae"} +{"file_name": "train_05941.png", "caption": "A female singer sings this casual melody. The tempo is medium with clapping and desk tapping percussion and no other instrumentation. The song is very casual and made up for fun. The song has poor audio quality.", "data_idx": 3342, "number": 1, "label": "reggae"} +{"file_name": "train_05942.png", "caption": "A female singer sings this casual melody. The tempo is medium with clapping and desk tapping percussion and no other instrumentation. The song is very casual and made up for fun. The song has poor audio quality.", "data_idx": 3342, "number": 2, "label": "reggae"} +{"file_name": "train_05943.png", "caption": "A female singer sings this casual melody. The tempo is medium with clapping and desk tapping percussion and no other instrumentation. The song is very casual and made up for fun. The song has poor audio quality.", "data_idx": 3342, "number": 3, "label": "reggae"} +{"file_name": "train_05944.png", "caption": "The low quality recording features a munching and humming sound effect - like someone is enjoyably eating. At the very beginning, there is also a haunting synth lead melody and a smooth bass located in the left channel of the stereo image - making it unbalanced.", "data_idx": 3343, "number": 0, "label": "hiphop"} +{"file_name": "train_05945.png", "caption": "The low quality recording features a munching and humming sound effect - like someone is enjoyably eating. At the very beginning, there is also a haunting synth lead melody and a smooth bass located in the left channel of the stereo image - making it unbalanced.", "data_idx": 3343, "number": 1, "label": "hiphop"} +{"file_name": "train_05946.png", "caption": "This disco song features a male voice singing the main melody. Another voice sings in harmony with the main voice. This is accompanied by programmed percussion playing a simple melody. There is a distinctive hi-hat ring at alternate strokes giving this a unique sound. The bass plays a groovy bassline using the root notes of the chords. A synth plays chords in the background. This song is at a moderate tempo. This song can be played in a club.", "data_idx": 3349, "number": 0, "label": "rock"} +{"file_name": "train_05947.png", "caption": "This disco song features a male voice singing the main melody. Another voice sings in harmony with the main voice. This is accompanied by programmed percussion playing a simple melody. There is a distinctive hi-hat ring at alternate strokes giving this a unique sound. The bass plays a groovy bassline using the root notes of the chords. A synth plays chords in the background. This song is at a moderate tempo. This song can be played in a club.", "data_idx": 3349, "number": 1, "label": "rock"} +{"file_name": "train_05948.png", "caption": "This disco song features a male voice singing the main melody. Another voice sings in harmony with the main voice. This is accompanied by programmed percussion playing a simple melody. There is a distinctive hi-hat ring at alternate strokes giving this a unique sound. The bass plays a groovy bassline using the root notes of the chords. A synth plays chords in the background. This song is at a moderate tempo. This song can be played in a club.", "data_idx": 3349, "number": 2, "label": "rock"} +{"file_name": "train_05949.png", "caption": "This disco song features a male voice singing the main melody. Another voice sings in harmony with the main voice. This is accompanied by programmed percussion playing a simple melody. There is a distinctive hi-hat ring at alternate strokes giving this a unique sound. The bass plays a groovy bassline using the root notes of the chords. A synth plays chords in the background. This song is at a moderate tempo. This song can be played in a club.", "data_idx": 3349, "number": 3, "label": "rock"} +{"file_name": "train_05950.png", "caption": "a male vocalist sings this enthusiastic swing pop. The tempo is fast with an enthusiastic electric guitar harmony, energetic drumming, funky bass lines, keyboard harmony, emphatic vocals superimposed by an infectious Bass kazoo melody. The song is energetic, enthusiastic, youthful, fun , groovy, vivacious and chirpy.", "data_idx": 3353, "number": 0, "label": "reggae"} +{"file_name": "train_05951.png", "caption": "a male vocalist sings this enthusiastic swing pop. The tempo is fast with an enthusiastic electric guitar harmony, energetic drumming, funky bass lines, keyboard harmony, emphatic vocals superimposed by an infectious Bass kazoo melody. The song is energetic, enthusiastic, youthful, fun , groovy, vivacious and chirpy.", "data_idx": 3353, "number": 1, "label": "reggae"} +{"file_name": "train_05952.png", "caption": "a male vocalist sings this enthusiastic swing pop. The tempo is fast with an enthusiastic electric guitar harmony, energetic drumming, funky bass lines, keyboard harmony, emphatic vocals superimposed by an infectious Bass kazoo melody. The song is energetic, enthusiastic, youthful, fun , groovy, vivacious and chirpy.", "data_idx": 3353, "number": 2, "label": "reggae"} +{"file_name": "train_05953.png", "caption": "a male vocalist sings this enthusiastic swing pop. The tempo is fast with an enthusiastic electric guitar harmony, energetic drumming, funky bass lines, keyboard harmony, emphatic vocals superimposed by an infectious Bass kazoo melody. The song is energetic, enthusiastic, youthful, fun , groovy, vivacious and chirpy.", "data_idx": 3353, "number": 3, "label": "reggae"} +{"file_name": "train_05954.png", "caption": "This song contains an acoustic drum set playing a fast groove along with a bassline. A e-guitar is playing a distorted solo melody while a male voice gets backed by harmony singers before singing on alone to duck-like sounds. In the background you can hear a lot of duck-like sounds and a hammering that does not belong to the musical composition. This song may be playing as an intro for a kids TV-show.", "data_idx": 3357, "number": 0, "label": "metal"} +{"file_name": "train_05955.png", "caption": "This song contains an acoustic drum set playing a fast groove along with a bassline. A e-guitar is playing a distorted solo melody while a male voice gets backed by harmony singers before singing on alone to duck-like sounds. In the background you can hear a lot of duck-like sounds and a hammering that does not belong to the musical composition. This song may be playing as an intro for a kids TV-show.", "data_idx": 3357, "number": 1, "label": "metal"} +{"file_name": "train_05956.png", "caption": "This song contains an acoustic drum set playing a fast groove along with a bassline. A e-guitar is playing a distorted solo melody while a male voice gets backed by harmony singers before singing on alone to duck-like sounds. In the background you can hear a lot of duck-like sounds and a hammering that does not belong to the musical composition. This song may be playing as an intro for a kids TV-show.", "data_idx": 3357, "number": 2, "label": "metal"} +{"file_name": "train_05957.png", "caption": "This song contains an acoustic drum set playing a fast groove along with a bassline. A e-guitar is playing a distorted solo melody while a male voice gets backed by harmony singers before singing on alone to duck-like sounds. In the background you can hear a lot of duck-like sounds and a hammering that does not belong to the musical composition. This song may be playing as an intro for a kids TV-show.", "data_idx": 3357, "number": 3, "label": "metal"} +{"file_name": "train_05958.png", "caption": "The track is a mediterranean folk song and features a main melodic element which is a clean electric guitar playing a romantic melody. Eastern sounding drums play a slow tempo pattern that adds to the romantic aura of the song. The atmosphere is nostalgic and evokes romance. In the background there's a choir that sings an ambience melody.", "data_idx": 3358, "number": 0, "label": "pop"} +{"file_name": "train_05959.png", "caption": "The track is a mediterranean folk song and features a main melodic element which is a clean electric guitar playing a romantic melody. Eastern sounding drums play a slow tempo pattern that adds to the romantic aura of the song. The atmosphere is nostalgic and evokes romance. In the background there's a choir that sings an ambience melody.", "data_idx": 3358, "number": 1, "label": "pop"} +{"file_name": "train_05960.png", "caption": "The track is a mediterranean folk song and features a main melodic element which is a clean electric guitar playing a romantic melody. Eastern sounding drums play a slow tempo pattern that adds to the romantic aura of the song. The atmosphere is nostalgic and evokes romance. In the background there's a choir that sings an ambience melody.", "data_idx": 3358, "number": 2, "label": "pop"} +{"file_name": "train_05961.png", "caption": "The track is a mediterranean folk song and features a main melodic element which is a clean electric guitar playing a romantic melody. Eastern sounding drums play a slow tempo pattern that adds to the romantic aura of the song. The atmosphere is nostalgic and evokes romance. In the background there's a choir that sings an ambience melody.", "data_idx": 3358, "number": 3, "label": "pop"} +{"file_name": "train_05962.png", "caption": "This seems to be a life recording because you can hear people in the background cheering. An electric bass is playing a bluesy bassline along with the drums holding a simple steady groove. One guitar is panned to the right side of the speakers playing chords while another e-guitar is playing a melody on the left side of the speakers. Both are fairly in the background. A male mid ranged voice is singing with a little reverb on his voice. This song may be playing life at a festival.", "data_idx": 3359, "number": 0, "label": "country"} +{"file_name": "train_05963.png", "caption": "This seems to be a life recording because you can hear people in the background cheering. An electric bass is playing a bluesy bassline along with the drums holding a simple steady groove. One guitar is panned to the right side of the speakers playing chords while another e-guitar is playing a melody on the left side of the speakers. Both are fairly in the background. A male mid ranged voice is singing with a little reverb on his voice. This song may be playing life at a festival.", "data_idx": 3359, "number": 1, "label": "country"} +{"file_name": "train_05964.png", "caption": "This seems to be a life recording because you can hear people in the background cheering. An electric bass is playing a bluesy bassline along with the drums holding a simple steady groove. One guitar is panned to the right side of the speakers playing chords while another e-guitar is playing a melody on the left side of the speakers. Both are fairly in the background. A male mid ranged voice is singing with a little reverb on his voice. This song may be playing life at a festival.", "data_idx": 3359, "number": 2, "label": "country"} +{"file_name": "train_05965.png", "caption": "This seems to be a life recording because you can hear people in the background cheering. An electric bass is playing a bluesy bassline along with the drums holding a simple steady groove. One guitar is panned to the right side of the speakers playing chords while another e-guitar is playing a melody on the left side of the speakers. Both are fairly in the background. A male mid ranged voice is singing with a little reverb on his voice. This song may be playing life at a festival.", "data_idx": 3359, "number": 3, "label": "country"} +{"file_name": "train_05966.png", "caption": "This is a Russian lullaby piece with classical music elements. The male vocalist is singing at a medium-to-high pitch in an opera-like manner. The strings and the piano are playing a gentle but crestfallen melody. The atmosphere is haunting. This piece could fit perfectly in the soundtrack of a post-apocalyptic war movie or a video game of similar theme. It could also work well in the soundtrack of a drama movie or an art movie that takes place in Russia or Eastern Europe. It might also be playing in the background at a high-tier Russian cuisine restaurant.", "data_idx": 3362, "number": 0, "label": "rock"} +{"file_name": "train_05967.png", "caption": "This is a Russian lullaby piece with classical music elements. The male vocalist is singing at a medium-to-high pitch in an opera-like manner. The strings and the piano are playing a gentle but crestfallen melody. The atmosphere is haunting. This piece could fit perfectly in the soundtrack of a post-apocalyptic war movie or a video game of similar theme. It could also work well in the soundtrack of a drama movie or an art movie that takes place in Russia or Eastern Europe. It might also be playing in the background at a high-tier Russian cuisine restaurant.", "data_idx": 3362, "number": 1, "label": "rock"} +{"file_name": "train_05968.png", "caption": "This is a Russian lullaby piece with classical music elements. The male vocalist is singing at a medium-to-high pitch in an opera-like manner. The strings and the piano are playing a gentle but crestfallen melody. The atmosphere is haunting. This piece could fit perfectly in the soundtrack of a post-apocalyptic war movie or a video game of similar theme. It could also work well in the soundtrack of a drama movie or an art movie that takes place in Russia or Eastern Europe. It might also be playing in the background at a high-tier Russian cuisine restaurant.", "data_idx": 3362, "number": 2, "label": "rock"} +{"file_name": "train_05969.png", "caption": "This is a Russian lullaby piece with classical music elements. The male vocalist is singing at a medium-to-high pitch in an opera-like manner. The strings and the piano are playing a gentle but crestfallen melody. The atmosphere is haunting. This piece could fit perfectly in the soundtrack of a post-apocalyptic war movie or a video game of similar theme. It could also work well in the soundtrack of a drama movie or an art movie that takes place in Russia or Eastern Europe. It might also be playing in the background at a high-tier Russian cuisine restaurant.", "data_idx": 3362, "number": 3, "label": "rock"} +{"file_name": "train_05970.png", "caption": "The low quality recording features a live performance of a blues song that consists of nasal male vocal singing over acoustic rhythm guitar chord progression and smooth double bass. There are also some crowd talking noises. It sounds groovy and kind of dull, since it is probably recorded with a phone.", "data_idx": 3363, "number": 0, "label": "rock"} +{"file_name": "train_05971.png", "caption": "The low quality recording features a live performance of a blues song that consists of nasal male vocal singing over acoustic rhythm guitar chord progression and smooth double bass. There are also some crowd talking noises. It sounds groovy and kind of dull, since it is probably recorded with a phone.", "data_idx": 3363, "number": 1, "label": "rock"} +{"file_name": "train_05972.png", "caption": "The low quality recording features a live performance of a blues song that consists of nasal male vocal singing over acoustic rhythm guitar chord progression and smooth double bass. There are also some crowd talking noises. It sounds groovy and kind of dull, since it is probably recorded with a phone.", "data_idx": 3363, "number": 2, "label": "rock"} +{"file_name": "train_05973.png", "caption": "The low quality recording features a live performance of a blues song that consists of nasal male vocal singing over acoustic rhythm guitar chord progression and smooth double bass. There are also some crowd talking noises. It sounds groovy and kind of dull, since it is probably recorded with a phone.", "data_idx": 3363, "number": 3, "label": "rock"} +{"file_name": "train_05974.png", "caption": "This tribal fusion song features a male voice singing the main melody. This is accompanied by percussion playing a dance beat using traditional tribal percussion instruments. The bass plays the root notes of the chords. At the end of the clip, a female voice sings a line. The theme of the song is an African dance. This song can be played in a club.", "data_idx": 3364, "number": 0, "label": "disco"} +{"file_name": "train_05975.png", "caption": "This tribal fusion song features a male voice singing the main melody. This is accompanied by percussion playing a dance beat using traditional tribal percussion instruments. The bass plays the root notes of the chords. At the end of the clip, a female voice sings a line. The theme of the song is an African dance. This song can be played in a club.", "data_idx": 3364, "number": 1, "label": "disco"} +{"file_name": "train_05976.png", "caption": "This tribal fusion song features a male voice singing the main melody. This is accompanied by percussion playing a dance beat using traditional tribal percussion instruments. The bass plays the root notes of the chords. At the end of the clip, a female voice sings a line. The theme of the song is an African dance. This song can be played in a club.", "data_idx": 3364, "number": 2, "label": "disco"} +{"file_name": "train_05977.png", "caption": "This tribal fusion song features a male voice singing the main melody. This is accompanied by percussion playing a dance beat using traditional tribal percussion instruments. The bass plays the root notes of the chords. At the end of the clip, a female voice sings a line. The theme of the song is an African dance. This song can be played in a club.", "data_idx": 3364, "number": 3, "label": "disco"} +{"file_name": "train_05978.png", "caption": "This is a Indo-European fusion music piece. There is a mix of Carnatic music with Western sounding elements. There is a female vocalist singing at a medium-to-high pitch. The melody consists of a variety of intertwined sounds such as a piano, an electric guitar, a bass guitar and a virtual sounding brass section. The rhythmic background is provided by electronic percussive elements. There is an eccentric atmosphere to this piece. It sounds unique.", "data_idx": 3365, "number": 0, "label": "rock"} +{"file_name": "train_05979.png", "caption": "This is a Indo-European fusion music piece. There is a mix of Carnatic music with Western sounding elements. There is a female vocalist singing at a medium-to-high pitch. The melody consists of a variety of intertwined sounds such as a piano, an electric guitar, a bass guitar and a virtual sounding brass section. The rhythmic background is provided by electronic percussive elements. There is an eccentric atmosphere to this piece. It sounds unique.", "data_idx": 3365, "number": 1, "label": "rock"} +{"file_name": "train_05980.png", "caption": "This is a Indo-European fusion music piece. There is a mix of Carnatic music with Western sounding elements. There is a female vocalist singing at a medium-to-high pitch. The melody consists of a variety of intertwined sounds such as a piano, an electric guitar, a bass guitar and a virtual sounding brass section. The rhythmic background is provided by electronic percussive elements. There is an eccentric atmosphere to this piece. It sounds unique.", "data_idx": 3365, "number": 2, "label": "rock"} +{"file_name": "train_05981.png", "caption": "This is a Indo-European fusion music piece. There is a mix of Carnatic music with Western sounding elements. There is a female vocalist singing at a medium-to-high pitch. The melody consists of a variety of intertwined sounds such as a piano, an electric guitar, a bass guitar and a virtual sounding brass section. The rhythmic background is provided by electronic percussive elements. There is an eccentric atmosphere to this piece. It sounds unique.", "data_idx": 3365, "number": 3, "label": "rock"} +{"file_name": "train_05982.png", "caption": "The track fits the carnatic music genre from India. A male vocalist sings with a sharp and nasal voice. The ambience melody is made with a sitar that has a rough and sharp sound. The atmosphere is mystical and traditional.", "data_idx": 3367, "number": 0, "label": "hiphop"} +{"file_name": "train_05983.png", "caption": "The track fits the carnatic music genre from India. A male vocalist sings with a sharp and nasal voice. The ambience melody is made with a sitar that has a rough and sharp sound. The atmosphere is mystical and traditional.", "data_idx": 3367, "number": 1, "label": "hiphop"} +{"file_name": "train_05984.png", "caption": "This is a reggae piece. There is a male vocalist singing with a Jamaican accent. An electric guitar is playing the main melody with a groovy bass guitar in the background. The rhythmic background is a simple 2/4 reggae beat being played by acoustic drums. The atmosphere is very chill. This piece could be played at beaches and summertime barbecue parties.", "data_idx": 3369, "number": 0, "label": "reggae"} +{"file_name": "train_05985.png", "caption": "This is a reggae piece. There is a male vocalist singing with a Jamaican accent. An electric guitar is playing the main melody with a groovy bass guitar in the background. The rhythmic background is a simple 2/4 reggae beat being played by acoustic drums. The atmosphere is very chill. This piece could be played at beaches and summertime barbecue parties.", "data_idx": 3369, "number": 1, "label": "reggae"} +{"file_name": "train_05986.png", "caption": "This is a reggae piece. There is a male vocalist singing with a Jamaican accent. An electric guitar is playing the main melody with a groovy bass guitar in the background. The rhythmic background is a simple 2/4 reggae beat being played by acoustic drums. The atmosphere is very chill. This piece could be played at beaches and summertime barbecue parties.", "data_idx": 3369, "number": 2, "label": "reggae"} +{"file_name": "train_05987.png", "caption": "This is a reggae piece. There is a male vocalist singing with a Jamaican accent. An electric guitar is playing the main melody with a groovy bass guitar in the background. The rhythmic background is a simple 2/4 reggae beat being played by acoustic drums. The atmosphere is very chill. This piece could be played at beaches and summertime barbecue parties.", "data_idx": 3369, "number": 3, "label": "reggae"} +{"file_name": "train_05988.png", "caption": "This is a dubstep clip, with a high energy synth melody. The bass and percussion patterns are complex, with a kick drum that follows the cadence and timing of the fuzzy bass. The track is an electronic music track which can be heard in niche bars and clubs around the world.", "data_idx": 3376, "number": 0, "label": "hiphop"} +{"file_name": "train_05989.png", "caption": "This is a dubstep clip, with a high energy synth melody. The bass and percussion patterns are complex, with a kick drum that follows the cadence and timing of the fuzzy bass. The track is an electronic music track which can be heard in niche bars and clubs around the world.", "data_idx": 3376, "number": 1, "label": "hiphop"} +{"file_name": "train_05990.png", "caption": "This is a dubstep clip, with a high energy synth melody. The bass and percussion patterns are complex, with a kick drum that follows the cadence and timing of the fuzzy bass. The track is an electronic music track which can be heard in niche bars and clubs around the world.", "data_idx": 3376, "number": 2, "label": "hiphop"} +{"file_name": "train_05991.png", "caption": "This is a dubstep clip, with a high energy synth melody. The bass and percussion patterns are complex, with a kick drum that follows the cadence and timing of the fuzzy bass. The track is an electronic music track which can be heard in niche bars and clubs around the world.", "data_idx": 3376, "number": 3, "label": "hiphop"} +{"file_name": "train_05992.png", "caption": "The low quality recording features a music box bell melody playing over soft water flowing sound effects. It sounds like a lullaby - relaxing and calming. The recording is also noisy and in mono.", "data_idx": 3380, "number": 0, "label": "hiphop"} +{"file_name": "train_05993.png", "caption": "The low quality recording features a music box bell melody playing over soft water flowing sound effects. It sounds like a lullaby - relaxing and calming. The recording is also noisy and in mono.", "data_idx": 3380, "number": 1, "label": "hiphop"} +{"file_name": "train_05994.png", "caption": "The low quality recording features a music box bell melody playing over soft water flowing sound effects. It sounds like a lullaby - relaxing and calming. The recording is also noisy and in mono.", "data_idx": 3380, "number": 2, "label": "hiphop"} +{"file_name": "train_05995.png", "caption": "The low quality recording features a music box bell melody playing over soft water flowing sound effects. It sounds like a lullaby - relaxing and calming. The recording is also noisy and in mono.", "data_idx": 3380, "number": 3, "label": "hiphop"} +{"file_name": "train_05996.png", "caption": "A vocalist sings this cheerful Christmas carol. The tempo is medium with an animated piano accompaniment, steady drumming, cymbals, tambourine beats, steady bass line and rhythmic acoustic guitar and melodic backup vocals;. The song is happy, fun, festive, celebratory, wishful, peppy and nostalgic. This song is a Christmas Carol.", "data_idx": 3381, "number": 0, "label": "rock"} +{"file_name": "train_05997.png", "caption": "A vocalist sings this cheerful Christmas carol. The tempo is medium with an animated piano accompaniment, steady drumming, cymbals, tambourine beats, steady bass line and rhythmic acoustic guitar and melodic backup vocals;. The song is happy, fun, festive, celebratory, wishful, peppy and nostalgic. This song is a Christmas Carol.", "data_idx": 3381, "number": 1, "label": "rock"} +{"file_name": "train_05998.png", "caption": "A vocalist sings this cheerful Christmas carol. The tempo is medium with an animated piano accompaniment, steady drumming, cymbals, tambourine beats, steady bass line and rhythmic acoustic guitar and melodic backup vocals;. The song is happy, fun, festive, celebratory, wishful, peppy and nostalgic. This song is a Christmas Carol.", "data_idx": 3381, "number": 2, "label": "rock"} +{"file_name": "train_05999.png", "caption": "A vocalist sings this cheerful Christmas carol. The tempo is medium with an animated piano accompaniment, steady drumming, cymbals, tambourine beats, steady bass line and rhythmic acoustic guitar and melodic backup vocals;. The song is happy, fun, festive, celebratory, wishful, peppy and nostalgic. This song is a Christmas Carol.", "data_idx": 3381, "number": 3, "label": "rock"} +{"file_name": "train_06000.png", "caption": "A male vocalist sings this smooth Soul melody. The tempo is medium with a mellow piano accompaniment, steady drum machine beats, atmospheric synthesiser and subtle bass with backup vocals. The song is soft, ambient, passionate, emotional, mellifluous ,sentimental and warm. This song is a contemporary R&B/Soul.", "data_idx": 3383, "number": 0, "label": "rock"} +{"file_name": "train_06001.png", "caption": "A male vocalist sings this smooth Soul melody. The tempo is medium with a mellow piano accompaniment, steady drum machine beats, atmospheric synthesiser and subtle bass with backup vocals. The song is soft, ambient, passionate, emotional, mellifluous ,sentimental and warm. This song is a contemporary R&B/Soul.", "data_idx": 3383, "number": 1, "label": "rock"} +{"file_name": "train_06002.png", "caption": "A male vocalist sings this smooth Soul melody. The tempo is medium with a mellow piano accompaniment, steady drum machine beats, atmospheric synthesiser and subtle bass with backup vocals. The song is soft, ambient, passionate, emotional, mellifluous ,sentimental and warm. This song is a contemporary R&B/Soul.", "data_idx": 3383, "number": 2, "label": "rock"} +{"file_name": "train_06003.png", "caption": "A male vocalist sings this smooth Soul melody. The tempo is medium with a mellow piano accompaniment, steady drum machine beats, atmospheric synthesiser and subtle bass with backup vocals. The song is soft, ambient, passionate, emotional, mellifluous ,sentimental and warm. This song is a contemporary R&B/Soul.", "data_idx": 3383, "number": 3, "label": "rock"} +{"file_name": "train_06004.png", "caption": "Someone is strumming chords on an e-guitar. The sound is distorted and you can also hear the clean sound of the guitar in the background. This song may be playing guitar at home.", "data_idx": 3385, "number": 0, "label": "metal"} +{"file_name": "train_06005.png", "caption": "Someone is strumming chords on an e-guitar. The sound is distorted and you can also hear the clean sound of the guitar in the background. This song may be playing guitar at home.", "data_idx": 3385, "number": 1, "label": "metal"} +{"file_name": "train_06006.png", "caption": "Someone is strumming chords on an e-guitar. The sound is distorted and you can also hear the clean sound of the guitar in the background. This song may be playing guitar at home.", "data_idx": 3385, "number": 2, "label": "metal"} +{"file_name": "train_06007.png", "caption": "Someone is strumming chords on an e-guitar. The sound is distorted and you can also hear the clean sound of the guitar in the background. This song may be playing guitar at home.", "data_idx": 3385, "number": 3, "label": "metal"} +{"file_name": "train_06008.png", "caption": "The low quality recording features a live performance of a country song and it consists of harmonizing male vocals singing over groovy steel guitar, groovy mandoline melody and groovy acoustic rhythm guitar chords. There are some crowd chattering noises in the background. It sounds passionate, happy and fun.", "data_idx": 3387, "number": 0, "label": "country"} +{"file_name": "train_06009.png", "caption": "The low quality recording features a live performance of a country song and it consists of harmonizing male vocals singing over groovy steel guitar, groovy mandoline melody and groovy acoustic rhythm guitar chords. There are some crowd chattering noises in the background. It sounds passionate, happy and fun.", "data_idx": 3387, "number": 1, "label": "country"} +{"file_name": "train_06010.png", "caption": "The low quality recording features a live performance of a country song and it consists of harmonizing male vocals singing over groovy steel guitar, groovy mandoline melody and groovy acoustic rhythm guitar chords. There are some crowd chattering noises in the background. It sounds passionate, happy and fun.", "data_idx": 3387, "number": 2, "label": "country"} +{"file_name": "train_06011.png", "caption": "The low quality recording features a live performance of a country song and it consists of harmonizing male vocals singing over groovy steel guitar, groovy mandoline melody and groovy acoustic rhythm guitar chords. There are some crowd chattering noises in the background. It sounds passionate, happy and fun.", "data_idx": 3387, "number": 3, "label": "country"} +{"file_name": "train_06012.png", "caption": "This song is a Sitar instrumental. The tempo is slow with a beautiful violin orchestra accompaniment and keyboard harmony. This is an indo western piece with the musician playing a mellifluous lead on a sitar accompanied with a harmonic violin composition. The medley is ethereal, beautiful, peaceful, serene , calming, soothing, pleasing and ethereal.", "data_idx": 3392, "number": 0, "label": "jazz"} +{"file_name": "train_06013.png", "caption": "This song is a Sitar instrumental. The tempo is slow with a beautiful violin orchestra accompaniment and keyboard harmony. This is an indo western piece with the musician playing a mellifluous lead on a sitar accompanied with a harmonic violin composition. The medley is ethereal, beautiful, peaceful, serene , calming, soothing, pleasing and ethereal.", "data_idx": 3392, "number": 1, "label": "jazz"} +{"file_name": "train_06014.png", "caption": "This song is a Sitar instrumental. The tempo is slow with a beautiful violin orchestra accompaniment and keyboard harmony. This is an indo western piece with the musician playing a mellifluous lead on a sitar accompanied with a harmonic violin composition. The medley is ethereal, beautiful, peaceful, serene , calming, soothing, pleasing and ethereal.", "data_idx": 3392, "number": 2, "label": "jazz"} +{"file_name": "train_06015.png", "caption": "This song is a Sitar instrumental. The tempo is slow with a beautiful violin orchestra accompaniment and keyboard harmony. This is an indo western piece with the musician playing a mellifluous lead on a sitar accompanied with a harmonic violin composition. The medley is ethereal, beautiful, peaceful, serene , calming, soothing, pleasing and ethereal.", "data_idx": 3392, "number": 3, "label": "jazz"} +{"file_name": "train_06016.png", "caption": "This song contains electronic drums that sound overdriven with an aggressive kick and clap sounds as snare. A male choir sample is singing a chord melody with breaks in-between. The whole thing sounds urban and epic as if something heroic is happening.", "data_idx": 3393, "number": 0, "label": "hiphop"} +{"file_name": "train_06017.png", "caption": "This song contains electronic drums that sound overdriven with an aggressive kick and clap sounds as snare. A male choir sample is singing a chord melody with breaks in-between. The whole thing sounds urban and epic as if something heroic is happening.", "data_idx": 3393, "number": 1, "label": "hiphop"} +{"file_name": "train_06018.png", "caption": "This song contains electronic drums that sound overdriven with an aggressive kick and clap sounds as snare. A male choir sample is singing a chord melody with breaks in-between. The whole thing sounds urban and epic as if something heroic is happening.", "data_idx": 3393, "number": 2, "label": "hiphop"} +{"file_name": "train_06019.png", "caption": "This song contains electronic drums that sound overdriven with an aggressive kick and clap sounds as snare. A male choir sample is singing a chord melody with breaks in-between. The whole thing sounds urban and epic as if something heroic is happening.", "data_idx": 3393, "number": 3, "label": "hiphop"} +{"file_name": "train_06020.png", "caption": "This is a latin folk piece performed at a home setting. There is a male vocalist singing off-key in a shout-like manner. An accordion and a ukulele are providing the melodic background for the piece. A pair of maracas is being played for the rhythmic background. The piece has a joyful atmosphere. The instrumentals can be used for sampling to put them in a beat.", "data_idx": 3394, "number": 0, "label": "disco"} +{"file_name": "train_06021.png", "caption": "This is a latin folk piece performed at a home setting. There is a male vocalist singing off-key in a shout-like manner. An accordion and a ukulele are providing the melodic background for the piece. A pair of maracas is being played for the rhythmic background. The piece has a joyful atmosphere. The instrumentals can be used for sampling to put them in a beat.", "data_idx": 3394, "number": 1, "label": "disco"} +{"file_name": "train_06022.png", "caption": "This is a latin folk piece performed at a home setting. There is a male vocalist singing off-key in a shout-like manner. An accordion and a ukulele are providing the melodic background for the piece. A pair of maracas is being played for the rhythmic background. The piece has a joyful atmosphere. The instrumentals can be used for sampling to put them in a beat.", "data_idx": 3394, "number": 2, "label": "disco"} +{"file_name": "train_06023.png", "caption": "This is a latin folk piece performed at a home setting. There is a male vocalist singing off-key in a shout-like manner. An accordion and a ukulele are providing the melodic background for the piece. A pair of maracas is being played for the rhythmic background. The piece has a joyful atmosphere. The instrumentals can be used for sampling to put them in a beat.", "data_idx": 3394, "number": 3, "label": "disco"} +{"file_name": "train_06024.png", "caption": "The music features a female voice that sings in a theatrical style, similar to Broadway musicals. The bass guitar and drums blend together and play a light accompaniment. A piano can also be heard contributing to the overall accompaniment. A string section plays a long note melody that transitions into playing in unison with the singer's melody.", "data_idx": 3395, "number": 0, "label": "pop"} +{"file_name": "train_06025.png", "caption": "The music features a female voice that sings in a theatrical style, similar to Broadway musicals. The bass guitar and drums blend together and play a light accompaniment. A piano can also be heard contributing to the overall accompaniment. A string section plays a long note melody that transitions into playing in unison with the singer's melody.", "data_idx": 3395, "number": 1, "label": "pop"} +{"file_name": "train_06026.png", "caption": "The music features a female voice that sings in a theatrical style, similar to Broadway musicals. The bass guitar and drums blend together and play a light accompaniment. A piano can also be heard contributing to the overall accompaniment. A string section plays a long note melody that transitions into playing in unison with the singer's melody.", "data_idx": 3395, "number": 2, "label": "pop"} +{"file_name": "train_06027.png", "caption": "The music features a female voice that sings in a theatrical style, similar to Broadway musicals. The bass guitar and drums blend together and play a light accompaniment. A piano can also be heard contributing to the overall accompaniment. A string section plays a long note melody that transitions into playing in unison with the singer's melody.", "data_idx": 3395, "number": 3, "label": "pop"} diff --git a/data/train/metadata_0012.jsonl b/data/train/metadata_0012.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4517cc089b53535e57fe2e9e28a854f456d416cd --- /dev/null +++ b/data/train/metadata_0012.jsonl @@ -0,0 +1,370 @@ +{"file_name": "train_06028.png", "caption": "Someone is playing a didgeridoo along with a percussive sound. You can hear people talking in the background. This is an amateur recording. This song may be played live by someone that is busking on the streets.", "data_idx": 3400, "number": 0, "label": "rock"} +{"file_name": "train_06029.png", "caption": "Someone is playing a didgeridoo along with a percussive sound. You can hear people talking in the background. This is an amateur recording. This song may be played live by someone that is busking on the streets.", "data_idx": 3400, "number": 1, "label": "rock"} +{"file_name": "train_06030.png", "caption": "A digital drum is playing a simple groove with a kick on every beat. Beeping tones that seem to come from a synthesizer come in along with the snare hit. A guitar-like sound is being played, serving as bassline. A very far sounding deep voice is playing on the right side of the speakers with a lot of reverb and delay. This song may be playing in a techno club.", "data_idx": 3401, "number": 0, "label": "hiphop"} +{"file_name": "train_06031.png", "caption": "A digital drum is playing a simple groove with a kick on every beat. Beeping tones that seem to come from a synthesizer come in along with the snare hit. A guitar-like sound is being played, serving as bassline. A very far sounding deep voice is playing on the right side of the speakers with a lot of reverb and delay. This song may be playing in a techno club.", "data_idx": 3401, "number": 1, "label": "hiphop"} +{"file_name": "train_06032.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with accordion harmony, funky bass lines, vigorous drumming,rhythmic acoustic guitar and keyboard harmony. The audio is muffled making it difficult to hear the other elements in the song. This song is a live performance as there are sounds of clapping, cheering and people murmuring. This song is a vibrant,vivacious,bright, punchy, and energetic Pop.", "data_idx": 3402, "number": 0, "label": "rock"} +{"file_name": "train_06033.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with accordion harmony, funky bass lines, vigorous drumming,rhythmic acoustic guitar and keyboard harmony. The audio is muffled making it difficult to hear the other elements in the song. This song is a live performance as there are sounds of clapping, cheering and people murmuring. This song is a vibrant,vivacious,bright, punchy, and energetic Pop.", "data_idx": 3402, "number": 1, "label": "rock"} +{"file_name": "train_06034.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with accordion harmony, funky bass lines, vigorous drumming,rhythmic acoustic guitar and keyboard harmony. The audio is muffled making it difficult to hear the other elements in the song. This song is a live performance as there are sounds of clapping, cheering and people murmuring. This song is a vibrant,vivacious,bright, punchy, and energetic Pop.", "data_idx": 3402, "number": 2, "label": "rock"} +{"file_name": "train_06035.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with accordion harmony, funky bass lines, vigorous drumming,rhythmic acoustic guitar and keyboard harmony. The audio is muffled making it difficult to hear the other elements in the song. This song is a live performance as there are sounds of clapping, cheering and people murmuring. This song is a vibrant,vivacious,bright, punchy, and energetic Pop.", "data_idx": 3402, "number": 3, "label": "rock"} +{"file_name": "train_06036.png", "caption": "The song is an instrumental soundtrack for a video game. The song tempo is medium with a string section,aging, cello playing a tense lower harmony, steady drumming rhythm, and ambient sounds like a bull galloping, man screaming and hood steps. The music is a soundtrack for a video game and has poor audio quality.", "data_idx": 3403, "number": 0, "label": "hiphop"} +{"file_name": "train_06037.png", "caption": "The song is an instrumental soundtrack for a video game. The song tempo is medium with a string section,aging, cello playing a tense lower harmony, steady drumming rhythm, and ambient sounds like a bull galloping, man screaming and hood steps. The music is a soundtrack for a video game and has poor audio quality.", "data_idx": 3403, "number": 1, "label": "hiphop"} +{"file_name": "train_06038.png", "caption": "The song is an instrumental soundtrack for a video game. The song tempo is medium with a string section,aging, cello playing a tense lower harmony, steady drumming rhythm, and ambient sounds like a bull galloping, man screaming and hood steps. The music is a soundtrack for a video game and has poor audio quality.", "data_idx": 3403, "number": 2, "label": "hiphop"} +{"file_name": "train_06039.png", "caption": "The song is an instrumental soundtrack for a video game. The song tempo is medium with a string section,aging, cello playing a tense lower harmony, steady drumming rhythm, and ambient sounds like a bull galloping, man screaming and hood steps. The music is a soundtrack for a video game and has poor audio quality.", "data_idx": 3403, "number": 3, "label": "hiphop"} +{"file_name": "train_06040.png", "caption": "A male vocalist chants this captivating harmony. The tempo is slow with electronic music, and vocals sung melodiously to create this hypnotic music. The music is calming, soothing, healing, meditative, psychedelic, trance like, hypnotic and ethereal. The instruments used could be glass harp, a low pitched string instrument and choral vocal chanting.", "data_idx": 3404, "number": 0, "label": "classical"} +{"file_name": "train_06041.png", "caption": "A male vocalist chants this captivating harmony. The tempo is slow with electronic music, and vocals sung melodiously to create this hypnotic music. The music is calming, soothing, healing, meditative, psychedelic, trance like, hypnotic and ethereal. The instruments used could be glass harp, a low pitched string instrument and choral vocal chanting.", "data_idx": 3404, "number": 1, "label": "classical"} +{"file_name": "train_06042.png", "caption": "A male vocalist chants this captivating harmony. The tempo is slow with electronic music, and vocals sung melodiously to create this hypnotic music. The music is calming, soothing, healing, meditative, psychedelic, trance like, hypnotic and ethereal. The instruments used could be glass harp, a low pitched string instrument and choral vocal chanting.", "data_idx": 3404, "number": 2, "label": "classical"} +{"file_name": "train_06043.png", "caption": "A male vocalist chants this captivating harmony. The tempo is slow with electronic music, and vocals sung melodiously to create this hypnotic music. The music is calming, soothing, healing, meditative, psychedelic, trance like, hypnotic and ethereal. The instruments used could be glass harp, a low pitched string instrument and choral vocal chanting.", "data_idx": 3404, "number": 3, "label": "classical"} +{"file_name": "train_06044.png", "caption": "This is a bluegrass music piece. Two male vocals are singing melodically in the lead. The tune is played by a rich chordophone background composed of the fiddle, the mandolin and the acoustic guitar. The atmosphere of the piece is joyful and nostalgic. It has a steady tempo. The piece could be used in the soundtrack of a movie or a TV series taking place in rural USA, especially in the scenes where there is some sense of yearning. It could be playing in the background at an American diner or a bar.", "data_idx": 3405, "number": 0, "label": "country"} +{"file_name": "train_06045.png", "caption": "This is a bluegrass music piece. Two male vocals are singing melodically in the lead. The tune is played by a rich chordophone background composed of the fiddle, the mandolin and the acoustic guitar. The atmosphere of the piece is joyful and nostalgic. It has a steady tempo. The piece could be used in the soundtrack of a movie or a TV series taking place in rural USA, especially in the scenes where there is some sense of yearning. It could be playing in the background at an American diner or a bar.", "data_idx": 3405, "number": 1, "label": "country"} +{"file_name": "train_06046.png", "caption": "This is a bluegrass music piece. Two male vocals are singing melodically in the lead. The tune is played by a rich chordophone background composed of the fiddle, the mandolin and the acoustic guitar. The atmosphere of the piece is joyful and nostalgic. It has a steady tempo. The piece could be used in the soundtrack of a movie or a TV series taking place in rural USA, especially in the scenes where there is some sense of yearning. It could be playing in the background at an American diner or a bar.", "data_idx": 3405, "number": 2, "label": "country"} +{"file_name": "train_06047.png", "caption": "This is a bluegrass music piece. Two male vocals are singing melodically in the lead. The tune is played by a rich chordophone background composed of the fiddle, the mandolin and the acoustic guitar. The atmosphere of the piece is joyful and nostalgic. It has a steady tempo. The piece could be used in the soundtrack of a movie or a TV series taking place in rural USA, especially in the scenes where there is some sense of yearning. It could be playing in the background at an American diner or a bar.", "data_idx": 3405, "number": 3, "label": "country"} +{"file_name": "train_06048.png", "caption": "Someone is playing a very fat drum with a slightly open hi hat along with other people playing percussion with a lot of snare hits and a bass sound playing on every beat along with the kick. A keyboard is playing string chords. A male voice is singing/shouting with delay and reverb. This song may be playing at a celebration event.", "data_idx": 3407, "number": 0, "label": "reggae"} +{"file_name": "train_06049.png", "caption": "Someone is playing a very fat drum with a slightly open hi hat along with other people playing percussion with a lot of snare hits and a bass sound playing on every beat along with the kick. A keyboard is playing string chords. A male voice is singing/shouting with delay and reverb. This song may be playing at a celebration event.", "data_idx": 3407, "number": 1, "label": "reggae"} +{"file_name": "train_06050.png", "caption": "Someone is playing a very fat drum with a slightly open hi hat along with other people playing percussion with a lot of snare hits and a bass sound playing on every beat along with the kick. A keyboard is playing string chords. A male voice is singing/shouting with delay and reverb. This song may be playing at a celebration event.", "data_idx": 3407, "number": 2, "label": "reggae"} +{"file_name": "train_06051.png", "caption": "Someone is playing a very fat drum with a slightly open hi hat along with other people playing percussion with a lot of snare hits and a bass sound playing on every beat along with the kick. A keyboard is playing string chords. A male voice is singing/shouting with delay and reverb. This song may be playing at a celebration event.", "data_idx": 3407, "number": 3, "label": "reggae"} +{"file_name": "train_06052.png", "caption": "This is a pop-sounding jingle at the background of an instructive video. There is an electric guitar playing the main theme while the bass line is being played by a synth bass. In the rhythmic background, a very basic 4/4 beat is being played on the electronic drums. A ping sound effect signifies the end of the instruction in the video. The atmosphere is very generic and common-sounding. This piece could be used as a jingle in advertisements and tutorial videos.", "data_idx": 3409, "number": 0, "label": "disco"} +{"file_name": "train_06053.png", "caption": "This is a pop-sounding jingle at the background of an instructive video. There is an electric guitar playing the main theme while the bass line is being played by a synth bass. In the rhythmic background, a very basic 4/4 beat is being played on the electronic drums. A ping sound effect signifies the end of the instruction in the video. The atmosphere is very generic and common-sounding. This piece could be used as a jingle in advertisements and tutorial videos.", "data_idx": 3409, "number": 1, "label": "disco"} +{"file_name": "train_06054.png", "caption": "This is a pop-sounding jingle at the background of an instructive video. There is an electric guitar playing the main theme while the bass line is being played by a synth bass. In the rhythmic background, a very basic 4/4 beat is being played on the electronic drums. A ping sound effect signifies the end of the instruction in the video. The atmosphere is very generic and common-sounding. This piece could be used as a jingle in advertisements and tutorial videos.", "data_idx": 3409, "number": 2, "label": "disco"} +{"file_name": "train_06055.png", "caption": "This is a pop-sounding jingle at the background of an instructive video. There is an electric guitar playing the main theme while the bass line is being played by a synth bass. In the rhythmic background, a very basic 4/4 beat is being played on the electronic drums. A ping sound effect signifies the end of the instruction in the video. The atmosphere is very generic and common-sounding. This piece could be used as a jingle in advertisements and tutorial videos.", "data_idx": 3409, "number": 3, "label": "disco"} +{"file_name": "train_06056.png", "caption": "The low quality recording features a smooth buzzy bass guitar and chill, electric guitar melody playing. It is noisy and the stereo image is unbalanced, as the bass guitar is leaning toward the left channel. It sounds easygoing, chill and relaxing.", "data_idx": 3411, "number": 0, "label": "jazz"} +{"file_name": "train_06057.png", "caption": "The low quality recording features a smooth buzzy bass guitar and chill, electric guitar melody playing. It is noisy and the stereo image is unbalanced, as the bass guitar is leaning toward the left channel. It sounds easygoing, chill and relaxing.", "data_idx": 3411, "number": 1, "label": "jazz"} +{"file_name": "train_06058.png", "caption": "The low quality recording features a smooth buzzy bass guitar and chill, electric guitar melody playing. It is noisy and the stereo image is unbalanced, as the bass guitar is leaning toward the left channel. It sounds easygoing, chill and relaxing.", "data_idx": 3411, "number": 2, "label": "jazz"} +{"file_name": "train_06059.png", "caption": "The low quality recording features a smooth buzzy bass guitar and chill, electric guitar melody playing. It is noisy and the stereo image is unbalanced, as the bass guitar is leaning toward the left channel. It sounds easygoing, chill and relaxing.", "data_idx": 3411, "number": 3, "label": "jazz"} +{"file_name": "train_06060.png", "caption": "This audio mostly contains frighting sounding animal noises a male voice streaming and foreground noises that seem to belong to a movie. These noises get enhanced by orchestral cinematic short entries to underline the noises with more dramatic and danger.", "data_idx": 3415, "number": 0, "label": "metal"} +{"file_name": "train_06061.png", "caption": "This audio mostly contains frighting sounding animal noises a male voice streaming and foreground noises that seem to belong to a movie. These noises get enhanced by orchestral cinematic short entries to underline the noises with more dramatic and danger.", "data_idx": 3415, "number": 1, "label": "metal"} +{"file_name": "train_06062.png", "caption": "This audio mostly contains frighting sounding animal noises a male voice streaming and foreground noises that seem to belong to a movie. These noises get enhanced by orchestral cinematic short entries to underline the noises with more dramatic and danger.", "data_idx": 3415, "number": 2, "label": "metal"} +{"file_name": "train_06063.png", "caption": "This audio mostly contains frighting sounding animal noises a male voice streaming and foreground noises that seem to belong to a movie. These noises get enhanced by orchestral cinematic short entries to underline the noises with more dramatic and danger.", "data_idx": 3415, "number": 3, "label": "metal"} +{"file_name": "train_06064.png", "caption": "This is the background music for a fighting video. There is a faint track in the background. The use of strings and an electronic drum beat can be heard in this track. There are numerous sound effects such as an ominous laughing track, jumping and fighting sounds. The track can be used to lift samples from to use on a soundboard.", "data_idx": 3417, "number": 0, "label": "jazz"} +{"file_name": "train_06065.png", "caption": "This is the background music for a fighting video. There is a faint track in the background. The use of strings and an electronic drum beat can be heard in this track. There are numerous sound effects such as an ominous laughing track, jumping and fighting sounds. The track can be used to lift samples from to use on a soundboard.", "data_idx": 3417, "number": 1, "label": "jazz"} +{"file_name": "train_06066.png", "caption": "This is the background music for a fighting video. There is a faint track in the background. The use of strings and an electronic drum beat can be heard in this track. There are numerous sound effects such as an ominous laughing track, jumping and fighting sounds. The track can be used to lift samples from to use on a soundboard.", "data_idx": 3417, "number": 2, "label": "jazz"} +{"file_name": "train_06067.png", "caption": "This is the background music for a fighting video. There is a faint track in the background. The use of strings and an electronic drum beat can be heard in this track. There are numerous sound effects such as an ominous laughing track, jumping and fighting sounds. The track can be used to lift samples from to use on a soundboard.", "data_idx": 3417, "number": 3, "label": "jazz"} +{"file_name": "train_06068.png", "caption": "Acoustic guitars are strumming chords while male voices are singing along. There are a lot of background noises of people talking. The recording is of very poor quality. This song may be playing at a local small town event.", "data_idx": 3419, "number": 0, "label": "classical"} +{"file_name": "train_06069.png", "caption": "Acoustic guitars are strumming chords while male voices are singing along. There are a lot of background noises of people talking. The recording is of very poor quality. This song may be playing at a local small town event.", "data_idx": 3419, "number": 1, "label": "classical"} +{"file_name": "train_06070.png", "caption": "Acoustic guitars are strumming chords while male voices are singing along. There are a lot of background noises of people talking. The recording is of very poor quality. This song may be playing at a local small town event.", "data_idx": 3419, "number": 2, "label": "classical"} +{"file_name": "train_06071.png", "caption": "Acoustic guitars are strumming chords while male voices are singing along. There are a lot of background noises of people talking. The recording is of very poor quality. This song may be playing at a local small town event.", "data_idx": 3419, "number": 3, "label": "classical"} +{"file_name": "train_06072.png", "caption": "Someone is playing tuned glass-bowls: The piece sounds mysterious, like classical music and with a lot of reverb that is overpowering the speakers. This is an amateur recording. This song may be played at a talent show.", "data_idx": 3420, "number": 0, "label": "pop"} +{"file_name": "train_06073.png", "caption": "Someone is playing tuned glass-bowls: The piece sounds mysterious, like classical music and with a lot of reverb that is overpowering the speakers. This is an amateur recording. This song may be played at a talent show.", "data_idx": 3420, "number": 1, "label": "pop"} +{"file_name": "train_06074.png", "caption": "Someone is playing tuned glass-bowls: The piece sounds mysterious, like classical music and with a lot of reverb that is overpowering the speakers. This is an amateur recording. This song may be played at a talent show.", "data_idx": 3420, "number": 2, "label": "pop"} +{"file_name": "train_06075.png", "caption": "Someone is playing tuned glass-bowls: The piece sounds mysterious, like classical music and with a lot of reverb that is overpowering the speakers. This is an amateur recording. This song may be played at a talent show.", "data_idx": 3420, "number": 3, "label": "pop"} +{"file_name": "train_06076.png", "caption": "The low quality recording features harmonizing mixed vocals singing over groovy bass, shimmering cymbals, soft snare hits, funky guitar melody and bright brass melody. The recording is very noisy, in mono, with some crackles in it and it sounds funky and addictive - thanks to those vocals. Sounds like something you would hear in clubs during the 60s and 70s.", "data_idx": 3421, "number": 0, "label": "rock"} +{"file_name": "train_06077.png", "caption": "The low quality recording features harmonizing mixed vocals singing over groovy bass, shimmering cymbals, soft snare hits, funky guitar melody and bright brass melody. The recording is very noisy, in mono, with some crackles in it and it sounds funky and addictive - thanks to those vocals. Sounds like something you would hear in clubs during the 60s and 70s.", "data_idx": 3421, "number": 1, "label": "rock"} +{"file_name": "train_06078.png", "caption": "The low quality recording features harmonizing mixed vocals singing over groovy bass, shimmering cymbals, soft snare hits, funky guitar melody and bright brass melody. The recording is very noisy, in mono, with some crackles in it and it sounds funky and addictive - thanks to those vocals. Sounds like something you would hear in clubs during the 60s and 70s.", "data_idx": 3421, "number": 2, "label": "rock"} +{"file_name": "train_06079.png", "caption": "The low quality recording features harmonizing mixed vocals singing over groovy bass, shimmering cymbals, soft snare hits, funky guitar melody and bright brass melody. The recording is very noisy, in mono, with some crackles in it and it sounds funky and addictive - thanks to those vocals. Sounds like something you would hear in clubs during the 60s and 70s.", "data_idx": 3421, "number": 3, "label": "rock"} +{"file_name": "train_06080.png", "caption": "This music is instrumental. The tempo is medium with an electronic xylophone melody. The audio is of inferior quality and it sounds like it is being played outdoors. There are ambient nature sounds like birds chirping, a car engine, a loud thud and people\u2019s voices.", "data_idx": 3422, "number": 0, "label": "classical"} +{"file_name": "train_06081.png", "caption": "This music is instrumental. The tempo is medium with an electronic xylophone melody. The audio is of inferior quality and it sounds like it is being played outdoors. There are ambient nature sounds like birds chirping, a car engine, a loud thud and people\u2019s voices.", "data_idx": 3422, "number": 1, "label": "classical"} +{"file_name": "train_06082.png", "caption": "This music is instrumental. The tempo is medium with an electronic xylophone melody. The audio is of inferior quality and it sounds like it is being played outdoors. There are ambient nature sounds like birds chirping, a car engine, a loud thud and people\u2019s voices.", "data_idx": 3422, "number": 2, "label": "classical"} +{"file_name": "train_06083.png", "caption": "This music is instrumental. The tempo is medium with an electronic xylophone melody. The audio is of inferior quality and it sounds like it is being played outdoors. There are ambient nature sounds like birds chirping, a car engine, a loud thud and people\u2019s voices.", "data_idx": 3422, "number": 3, "label": "classical"} +{"file_name": "train_06084.png", "caption": "This song contains a thick acoustic drum sample playing a slow hiphop groove with a simple bassline. A female voice sample is singing while a male voice is rapping. his voice sounds doubled. This song may be playing in an urban shop.", "data_idx": 3423, "number": 0, "label": "hiphop"} +{"file_name": "train_06085.png", "caption": "This song contains a thick acoustic drum sample playing a slow hiphop groove with a simple bassline. A female voice sample is singing while a male voice is rapping. his voice sounds doubled. This song may be playing in an urban shop.", "data_idx": 3423, "number": 1, "label": "hiphop"} +{"file_name": "train_06086.png", "caption": "This song contains a thick acoustic drum sample playing a slow hiphop groove with a simple bassline. A female voice sample is singing while a male voice is rapping. his voice sounds doubled. This song may be playing in an urban shop.", "data_idx": 3423, "number": 2, "label": "hiphop"} +{"file_name": "train_06087.png", "caption": "This song contains a thick acoustic drum sample playing a slow hiphop groove with a simple bassline. A female voice sample is singing while a male voice is rapping. his voice sounds doubled. This song may be playing in an urban shop.", "data_idx": 3423, "number": 3, "label": "hiphop"} +{"file_name": "train_06088.png", "caption": "A male singer sings this rock melody with backup singers in vocal harmony. The song is fast tempo with a strong drumming rhythm , percussive bass line, amplified guitar playing lead. The song is energetic and romantic. The song is a retro rock song with average audio quality.", "data_idx": 3425, "number": 0, "label": "metal"} +{"file_name": "train_06089.png", "caption": "A male singer sings this rock melody with backup singers in vocal harmony. The song is fast tempo with a strong drumming rhythm , percussive bass line, amplified guitar playing lead. The song is energetic and romantic. The song is a retro rock song with average audio quality.", "data_idx": 3425, "number": 1, "label": "metal"} +{"file_name": "train_06090.png", "caption": "A male singer sings this rock melody with backup singers in vocal harmony. The song is fast tempo with a strong drumming rhythm , percussive bass line, amplified guitar playing lead. The song is energetic and romantic. The song is a retro rock song with average audio quality.", "data_idx": 3425, "number": 2, "label": "metal"} +{"file_name": "train_06091.png", "caption": "A male singer sings this rock melody with backup singers in vocal harmony. The song is fast tempo with a strong drumming rhythm , percussive bass line, amplified guitar playing lead. The song is energetic and romantic. The song is a retro rock song with average audio quality.", "data_idx": 3425, "number": 3, "label": "metal"} +{"file_name": "train_06092.png", "caption": "This song is a Latin duet. The tempo is fast with an ensemble of Latin instruments like Spanish guitar accompaniment, bright drums, congas and bongos rhythm, trombone and trumpets playing an animated melody and a whistle like wind instrument. The song is vibrant, energetic,engaging, upbeat and youthful. This song is Latin pop.", "data_idx": 3427, "number": 0, "label": "reggae"} +{"file_name": "train_06093.png", "caption": "This song is a Latin duet. The tempo is fast with an ensemble of Latin instruments like Spanish guitar accompaniment, bright drums, congas and bongos rhythm, trombone and trumpets playing an animated melody and a whistle like wind instrument. The song is vibrant, energetic,engaging, upbeat and youthful. This song is Latin pop.", "data_idx": 3427, "number": 1, "label": "reggae"} +{"file_name": "train_06094.png", "caption": "This song is a Latin duet. The tempo is fast with an ensemble of Latin instruments like Spanish guitar accompaniment, bright drums, congas and bongos rhythm, trombone and trumpets playing an animated melody and a whistle like wind instrument. The song is vibrant, energetic,engaging, upbeat and youthful. This song is Latin pop.", "data_idx": 3427, "number": 2, "label": "reggae"} +{"file_name": "train_06095.png", "caption": "This song is a Latin duet. The tempo is fast with an ensemble of Latin instruments like Spanish guitar accompaniment, bright drums, congas and bongos rhythm, trombone and trumpets playing an animated melody and a whistle like wind instrument. The song is vibrant, energetic,engaging, upbeat and youthful. This song is Latin pop.", "data_idx": 3427, "number": 3, "label": "reggae"} +{"file_name": "train_06096.png", "caption": "This audio holds a church bell ringing loudly with a lot of sustain. The sound is so loud that the recorded audio clips and overdrives the speaker. The audio file is of very poor recording quality.", "data_idx": 3428, "number": 0, "label": "classical"} +{"file_name": "train_06097.png", "caption": "This audio holds a church bell ringing loudly with a lot of sustain. The sound is so loud that the recorded audio clips and overdrives the speaker. The audio file is of very poor recording quality.", "data_idx": 3428, "number": 1, "label": "classical"} +{"file_name": "train_06098.png", "caption": "This audio holds a church bell ringing loudly with a lot of sustain. The sound is so loud that the recorded audio clips and overdrives the speaker. The audio file is of very poor recording quality.", "data_idx": 3428, "number": 2, "label": "classical"} +{"file_name": "train_06099.png", "caption": "This audio holds a church bell ringing loudly with a lot of sustain. The sound is so loud that the recorded audio clips and overdrives the speaker. The audio file is of very poor recording quality.", "data_idx": 3428, "number": 3, "label": "classical"} +{"file_name": "train_06100.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. A choir sings vocables in the background. A piano plays fills in between lines using jazz sequences. A bass plays the root notes of the chords. Strings and flutes can be heard playing along with the voice on the second bar in an ascending run. This song has an upbeat mood. The theme of this song is about friendship. This song can be played in a drama movie about friends.", "data_idx": 3429, "number": 0, "label": "blues"} +{"file_name": "train_06101.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. A choir sings vocables in the background. A piano plays fills in between lines using jazz sequences. A bass plays the root notes of the chords. Strings and flutes can be heard playing along with the voice on the second bar in an ascending run. This song has an upbeat mood. The theme of this song is about friendship. This song can be played in a drama movie about friends.", "data_idx": 3429, "number": 1, "label": "blues"} +{"file_name": "train_06102.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. A choir sings vocables in the background. A piano plays fills in between lines using jazz sequences. A bass plays the root notes of the chords. Strings and flutes can be heard playing along with the voice on the second bar in an ascending run. This song has an upbeat mood. The theme of this song is about friendship. This song can be played in a drama movie about friends.", "data_idx": 3429, "number": 2, "label": "blues"} +{"file_name": "train_06103.png", "caption": "This pop song features a male voice singing the main melody. This is accompanied by percussion playing a simple beat in common time. A choir sings vocables in the background. A piano plays fills in between lines using jazz sequences. A bass plays the root notes of the chords. Strings and flutes can be heard playing along with the voice on the second bar in an ascending run. This song has an upbeat mood. The theme of this song is about friendship. This song can be played in a drama movie about friends.", "data_idx": 3429, "number": 3, "label": "blues"} +{"file_name": "train_06104.png", "caption": "The music features a group of female voices singing a melody in unison. The instrumental consists of only percussion drums, African percussion drums to be precise. A shaker can also be heard sounding on every beat. In the background one can hear water sounds. The overall atmosphere is cheerful and uplifting.", "data_idx": 3431, "number": 0, "label": "reggae"} +{"file_name": "train_06105.png", "caption": "The music features a group of female voices singing a melody in unison. The instrumental consists of only percussion drums, African percussion drums to be precise. A shaker can also be heard sounding on every beat. In the background one can hear water sounds. The overall atmosphere is cheerful and uplifting.", "data_idx": 3431, "number": 1, "label": "reggae"} +{"file_name": "train_06106.png", "caption": "The music features a group of female voices singing a melody in unison. The instrumental consists of only percussion drums, African percussion drums to be precise. A shaker can also be heard sounding on every beat. In the background one can hear water sounds. The overall atmosphere is cheerful and uplifting.", "data_idx": 3431, "number": 2, "label": "reggae"} +{"file_name": "train_06107.png", "caption": "The music features a group of female voices singing a melody in unison. The instrumental consists of only percussion drums, African percussion drums to be precise. A shaker can also be heard sounding on every beat. In the background one can hear water sounds. The overall atmosphere is cheerful and uplifting.", "data_idx": 3431, "number": 3, "label": "reggae"} +{"file_name": "train_06108.png", "caption": "The low quality recording features footsteps, birds chirping, distant traffic and wind sound effects. At the very end there is a suspenseful, low, widely spread pad chord. It sounds like it is a sound for some kind of video, or movie.", "data_idx": 3433, "number": 0, "label": "reggae"} +{"file_name": "train_06109.png", "caption": "The low quality recording features footsteps, birds chirping, distant traffic and wind sound effects. At the very end there is a suspenseful, low, widely spread pad chord. It sounds like it is a sound for some kind of video, or movie.", "data_idx": 3433, "number": 1, "label": "reggae"} +{"file_name": "train_06110.png", "caption": "The low quality recording features footsteps, birds chirping, distant traffic and wind sound effects. At the very end there is a suspenseful, low, widely spread pad chord. It sounds like it is a sound for some kind of video, or movie.", "data_idx": 3433, "number": 2, "label": "reggae"} +{"file_name": "train_06111.png", "caption": "The low quality recording features footsteps, birds chirping, distant traffic and wind sound effects. At the very end there is a suspenseful, low, widely spread pad chord. It sounds like it is a sound for some kind of video, or movie.", "data_idx": 3433, "number": 3, "label": "reggae"} +{"file_name": "train_06112.png", "caption": "The low quality recording features a live performance of a rock song and it consists of a distorted male vocal singing over repetitive electric guitar melody, groovy bass and energetic drums. It sounds crushed, distorted, loud, but it is barely audible, as it was recorded with a poor quality microphone.", "data_idx": 3435, "number": 0, "label": "jazz"} +{"file_name": "train_06113.png", "caption": "The low quality recording features a live performance of a rock song and it consists of a distorted male vocal singing over repetitive electric guitar melody, groovy bass and energetic drums. It sounds crushed, distorted, loud, but it is barely audible, as it was recorded with a poor quality microphone.", "data_idx": 3435, "number": 1, "label": "jazz"} +{"file_name": "train_06114.png", "caption": "The low quality recording features a live performance of a rock song and it consists of a distorted male vocal singing over repetitive electric guitar melody, groovy bass and energetic drums. It sounds crushed, distorted, loud, but it is barely audible, as it was recorded with a poor quality microphone.", "data_idx": 3435, "number": 2, "label": "jazz"} +{"file_name": "train_06115.png", "caption": "The low quality recording features a live performance of a rock song and it consists of a distorted male vocal singing over repetitive electric guitar melody, groovy bass and energetic drums. It sounds crushed, distorted, loud, but it is barely audible, as it was recorded with a poor quality microphone.", "data_idx": 3435, "number": 3, "label": "jazz"} +{"file_name": "train_06116.png", "caption": "The Pop song features harmonizing vocals singing over energetic crash cymbals, groovy bass guitar, wide electric guitar melody, punchy snare and soft kick hits. There is a short drum break at the very beginning of the loop. It sounds happy, nostalgic and euphoric, as it gives off vibes of a Christmas song.", "data_idx": 3439, "number": 0, "label": "rock"} +{"file_name": "train_06117.png", "caption": "The Pop song features harmonizing vocals singing over energetic crash cymbals, groovy bass guitar, wide electric guitar melody, punchy snare and soft kick hits. There is a short drum break at the very beginning of the loop. It sounds happy, nostalgic and euphoric, as it gives off vibes of a Christmas song.", "data_idx": 3439, "number": 1, "label": "rock"} +{"file_name": "train_06118.png", "caption": "The Pop song features harmonizing vocals singing over energetic crash cymbals, groovy bass guitar, wide electric guitar melody, punchy snare and soft kick hits. There is a short drum break at the very beginning of the loop. It sounds happy, nostalgic and euphoric, as it gives off vibes of a Christmas song.", "data_idx": 3439, "number": 2, "label": "rock"} +{"file_name": "train_06119.png", "caption": "The Pop song features harmonizing vocals singing over energetic crash cymbals, groovy bass guitar, wide electric guitar melody, punchy snare and soft kick hits. There is a short drum break at the very beginning of the loop. It sounds happy, nostalgic and euphoric, as it gives off vibes of a Christmas song.", "data_idx": 3439, "number": 3, "label": "rock"} +{"file_name": "train_06120.png", "caption": "This is a rap music piece played behind a rollerskating video. The sound of the skaters can be heard faintly throughout the recording. There is a male voice rapping at the forefront while other voices can be heard singing melodically in the background and ad-libbing occasionally. There is a mild keyboard playing the tune while a loud electronic drum beat is playing the rhythm. The atmosphere of this piece is groovy and urban.", "data_idx": 3440, "number": 0, "label": "disco"} +{"file_name": "train_06121.png", "caption": "This is a rap music piece played behind a rollerskating video. The sound of the skaters can be heard faintly throughout the recording. There is a male voice rapping at the forefront while other voices can be heard singing melodically in the background and ad-libbing occasionally. There is a mild keyboard playing the tune while a loud electronic drum beat is playing the rhythm. The atmosphere of this piece is groovy and urban.", "data_idx": 3440, "number": 1, "label": "disco"} +{"file_name": "train_06122.png", "caption": "This is a rap music piece played behind a rollerskating video. The sound of the skaters can be heard faintly throughout the recording. There is a male voice rapping at the forefront while other voices can be heard singing melodically in the background and ad-libbing occasionally. There is a mild keyboard playing the tune while a loud electronic drum beat is playing the rhythm. The atmosphere of this piece is groovy and urban.", "data_idx": 3440, "number": 2, "label": "disco"} +{"file_name": "train_06123.png", "caption": "This is a rap music piece played behind a rollerskating video. The sound of the skaters can be heard faintly throughout the recording. There is a male voice rapping at the forefront while other voices can be heard singing melodically in the background and ad-libbing occasionally. There is a mild keyboard playing the tune while a loud electronic drum beat is playing the rhythm. The atmosphere of this piece is groovy and urban.", "data_idx": 3440, "number": 3, "label": "disco"} +{"file_name": "train_06124.png", "caption": "The low quality recording features a live performance of fruity male vocal singing over funky piano melody and beat played on playback that consists of punchy snare and kick hits, shimmering hi hats and smooth bass. The crowd is also singing along, harmonizing with the lead vocal. It sounds emotional and groovy, even though the recording is noisy.", "data_idx": 3444, "number": 0, "label": "classical"} +{"file_name": "train_06125.png", "caption": "The low quality recording features a live performance of fruity male vocal singing over funky piano melody and beat played on playback that consists of punchy snare and kick hits, shimmering hi hats and smooth bass. The crowd is also singing along, harmonizing with the lead vocal. It sounds emotional and groovy, even though the recording is noisy.", "data_idx": 3444, "number": 1, "label": "classical"} +{"file_name": "train_06126.png", "caption": "The low quality recording features a live performance of fruity male vocal singing over funky piano melody and beat played on playback that consists of punchy snare and kick hits, shimmering hi hats and smooth bass. The crowd is also singing along, harmonizing with the lead vocal. It sounds emotional and groovy, even though the recording is noisy.", "data_idx": 3444, "number": 2, "label": "classical"} +{"file_name": "train_06127.png", "caption": "The low quality recording features a live performance of fruity male vocal singing over funky piano melody and beat played on playback that consists of punchy snare and kick hits, shimmering hi hats and smooth bass. The crowd is also singing along, harmonizing with the lead vocal. It sounds emotional and groovy, even though the recording is noisy.", "data_idx": 3444, "number": 3, "label": "classical"} +{"file_name": "train_06128.png", "caption": "The low quality recording features an afrobeat song that consists of an echoing female vocal, with autotune effect on, rapping over energetic cymbals, wide percussion rolls, stab buzzy bass, shimmering hi hats and short strings stabs. At the end of the loop, there is a flat male vocal talking over the beat. It sounds energetic and like something you would easily dance to.", "data_idx": 3447, "number": 0, "label": "hiphop"} +{"file_name": "train_06129.png", "caption": "The low quality recording features an afrobeat song that consists of an echoing female vocal, with autotune effect on, rapping over energetic cymbals, wide percussion rolls, stab buzzy bass, shimmering hi hats and short strings stabs. At the end of the loop, there is a flat male vocal talking over the beat. It sounds energetic and like something you would easily dance to.", "data_idx": 3447, "number": 1, "label": "hiphop"} +{"file_name": "train_06130.png", "caption": "The low quality recording features an afrobeat song that consists of an echoing female vocal, with autotune effect on, rapping over energetic cymbals, wide percussion rolls, stab buzzy bass, shimmering hi hats and short strings stabs. At the end of the loop, there is a flat male vocal talking over the beat. It sounds energetic and like something you would easily dance to.", "data_idx": 3447, "number": 2, "label": "hiphop"} +{"file_name": "train_06131.png", "caption": "The low quality recording features an afrobeat song that consists of an echoing female vocal, with autotune effect on, rapping over energetic cymbals, wide percussion rolls, stab buzzy bass, shimmering hi hats and short strings stabs. At the end of the loop, there is a flat male vocal talking over the beat. It sounds energetic and like something you would easily dance to.", "data_idx": 3447, "number": 3, "label": "hiphop"} +{"file_name": "train_06132.png", "caption": "This music is instrumental. The tempo is medium with a melodic steel pan harmony. The audio quality however is inferior and amateur,so the music is muddled. There are ambient sounds of breeze and people talking , indicating that this is a live performance.", "data_idx": 3449, "number": 0, "label": "classical"} +{"file_name": "train_06133.png", "caption": "This music is instrumental. The tempo is medium with a melodic steel pan harmony. The audio quality however is inferior and amateur,so the music is muddled. There are ambient sounds of breeze and people talking , indicating that this is a live performance.", "data_idx": 3449, "number": 1, "label": "classical"} +{"file_name": "train_06134.png", "caption": "This music is instrumental. The tempo is medium with a melodic steel pan harmony. The audio quality however is inferior and amateur,so the music is muddled. There are ambient sounds of breeze and people talking , indicating that this is a live performance.", "data_idx": 3449, "number": 2, "label": "classical"} +{"file_name": "train_06135.png", "caption": "This music is instrumental. The tempo is medium with a melodic steel pan harmony. The audio quality however is inferior and amateur,so the music is muddled. There are ambient sounds of breeze and people talking , indicating that this is a live performance.", "data_idx": 3449, "number": 3, "label": "classical"} +{"file_name": "train_06136.png", "caption": "This is a dubstep piece. The rhythmic background consists of a hard-hitting electronic drum beat. A high-pitched synth is playing the main melody while a choir sample is played in the background for the chords. There is a high energy atmosphere in the piece. It could be played at nightclubs. This piece could also take place in DJ setlists.", "data_idx": 3456, "number": 0, "label": "disco"} +{"file_name": "train_06137.png", "caption": "This is a dubstep piece. The rhythmic background consists of a hard-hitting electronic drum beat. A high-pitched synth is playing the main melody while a choir sample is played in the background for the chords. There is a high energy atmosphere in the piece. It could be played at nightclubs. This piece could also take place in DJ setlists.", "data_idx": 3456, "number": 1, "label": "disco"} +{"file_name": "train_06138.png", "caption": "The music excerpt features a kind of vinyl scratch solo. At one point a male voice intervention can be heard that's similar to the sound one makes when he's being punched in the stomach. In the background a drum beat runs in loop.", "data_idx": 3457, "number": 0, "label": "hiphop"} +{"file_name": "train_06139.png", "caption": "The music excerpt features a kind of vinyl scratch solo. At one point a male voice intervention can be heard that's similar to the sound one makes when he's being punched in the stomach. In the background a drum beat runs in loop.", "data_idx": 3457, "number": 1, "label": "hiphop"} +{"file_name": "train_06140.png", "caption": "The music excerpt features a kind of vinyl scratch solo. At one point a male voice intervention can be heard that's similar to the sound one makes when he's being punched in the stomach. In the background a drum beat runs in loop.", "data_idx": 3457, "number": 2, "label": "hiphop"} +{"file_name": "train_06141.png", "caption": "The music excerpt features a kind of vinyl scratch solo. At one point a male voice intervention can be heard that's similar to the sound one makes when he's being punched in the stomach. In the background a drum beat runs in loop.", "data_idx": 3457, "number": 3, "label": "hiphop"} +{"file_name": "train_06142.png", "caption": "In this piece a timpani takes a strong loud position before other orchestral instruments are entering the musical composition. Brasses, flutes and strings are playing a rising rhythmical melody creating tension. This song may be playing in a classical chamber concert or in a scene of a superhero movie.", "data_idx": 3460, "number": 0, "label": "hiphop"} +{"file_name": "train_06143.png", "caption": "In this piece a timpani takes a strong loud position before other orchestral instruments are entering the musical composition. Brasses, flutes and strings are playing a rising rhythmical melody creating tension. This song may be playing in a classical chamber concert or in a scene of a superhero movie.", "data_idx": 3460, "number": 1, "label": "hiphop"} +{"file_name": "train_06144.png", "caption": "This is the recording of a gear showcase jam. There is an overdriven electric guitar playing a groovy solo with the amplified reverb effect. There is a crunchy sound. The piece can be used as the jingle of an advertisement. It could also be used for lifting electric guitar samples to be used in a beat.", "data_idx": 3462, "number": 0, "label": "blues"} +{"file_name": "train_06145.png", "caption": "This is the recording of a gear showcase jam. There is an overdriven electric guitar playing a groovy solo with the amplified reverb effect. There is a crunchy sound. The piece can be used as the jingle of an advertisement. It could also be used for lifting electric guitar samples to be used in a beat.", "data_idx": 3462, "number": 1, "label": "blues"} +{"file_name": "train_06146.png", "caption": "This is the recording of a gear showcase jam. There is an overdriven electric guitar playing a groovy solo with the amplified reverb effect. There is a crunchy sound. The piece can be used as the jingle of an advertisement. It could also be used for lifting electric guitar samples to be used in a beat.", "data_idx": 3462, "number": 2, "label": "blues"} +{"file_name": "train_06147.png", "caption": "This is the recording of a gear showcase jam. There is an overdriven electric guitar playing a groovy solo with the amplified reverb effect. There is a crunchy sound. The piece can be used as the jingle of an advertisement. It could also be used for lifting electric guitar samples to be used in a beat.", "data_idx": 3462, "number": 3, "label": "blues"} +{"file_name": "train_06148.png", "caption": "The Low quality recording features a widely spread, weird mouth noises, foot stomping in the right channel and aggressive male breathing and claps in the left channel of the stereo image. There is a short accordion melody at the very beginning of the loop. It sounds very weird and aggressive, almost uncomfortable.", "data_idx": 3463, "number": 0, "label": "reggae"} +{"file_name": "train_06149.png", "caption": "The Low quality recording features a widely spread, weird mouth noises, foot stomping in the right channel and aggressive male breathing and claps in the left channel of the stereo image. There is a short accordion melody at the very beginning of the loop. It sounds very weird and aggressive, almost uncomfortable.", "data_idx": 3463, "number": 1, "label": "reggae"} +{"file_name": "train_06150.png", "caption": "The Low quality recording features a widely spread, weird mouth noises, foot stomping in the right channel and aggressive male breathing and claps in the left channel of the stereo image. There is a short accordion melody at the very beginning of the loop. It sounds very weird and aggressive, almost uncomfortable.", "data_idx": 3463, "number": 2, "label": "reggae"} +{"file_name": "train_06151.png", "caption": "The Low quality recording features a widely spread, weird mouth noises, foot stomping in the right channel and aggressive male breathing and claps in the left channel of the stereo image. There is a short accordion melody at the very beginning of the loop. It sounds very weird and aggressive, almost uncomfortable.", "data_idx": 3463, "number": 3, "label": "reggae"} +{"file_name": "train_06152.png", "caption": "Several ukuleles are playing the same strumming melody together with an acoustic guitar. Someone is playing a shaker slightly offbeat along to male and female voices singing. In the background you can hear noises of a public space. This song may be playing at a school presentation.", "data_idx": 3466, "number": 0, "label": "classical"} +{"file_name": "train_06153.png", "caption": "Several ukuleles are playing the same strumming melody together with an acoustic guitar. Someone is playing a shaker slightly offbeat along to male and female voices singing. In the background you can hear noises of a public space. This song may be playing at a school presentation.", "data_idx": 3466, "number": 1, "label": "classical"} +{"file_name": "train_06154.png", "caption": "The low quality recording features a folk song being covered by passionate male vocal and groovy acoustic guitar melody. It sounds uplifting and a bit harsh, muddy and unbalanced as far as the stereo image goes.", "data_idx": 3467, "number": 0, "label": "country"} +{"file_name": "train_06155.png", "caption": "The low quality recording features a folk song being covered by passionate male vocal and groovy acoustic guitar melody. It sounds uplifting and a bit harsh, muddy and unbalanced as far as the stereo image goes.", "data_idx": 3467, "number": 1, "label": "country"} +{"file_name": "train_06156.png", "caption": "The low quality recording features a folk song being covered by passionate male vocal and groovy acoustic guitar melody. It sounds uplifting and a bit harsh, muddy and unbalanced as far as the stereo image goes.", "data_idx": 3467, "number": 2, "label": "country"} +{"file_name": "train_06157.png", "caption": "The low quality recording features a folk song being covered by passionate male vocal and groovy acoustic guitar melody. It sounds uplifting and a bit harsh, muddy and unbalanced as far as the stereo image goes.", "data_idx": 3467, "number": 3, "label": "country"} +{"file_name": "train_06158.png", "caption": "This is a live acoustic performance of an Irish folk music piece. The chords of the piece are being played by two acoustic guitars in the background while a violin is playing the main theme which is in medium-to-high range. Since the piece is being played at a pub, the sounds of the place can also be heard in the recording. There is a jovial atmosphere. This piece can be played at Irish pubs.", "data_idx": 3470, "number": 0, "label": "classical"} +{"file_name": "train_06159.png", "caption": "This is a live acoustic performance of an Irish folk music piece. The chords of the piece are being played by two acoustic guitars in the background while a violin is playing the main theme which is in medium-to-high range. Since the piece is being played at a pub, the sounds of the place can also be heard in the recording. There is a jovial atmosphere. This piece can be played at Irish pubs.", "data_idx": 3470, "number": 1, "label": "classical"} +{"file_name": "train_06160.png", "caption": "This is a live acoustic performance of an Irish folk music piece. The chords of the piece are being played by two acoustic guitars in the background while a violin is playing the main theme which is in medium-to-high range. Since the piece is being played at a pub, the sounds of the place can also be heard in the recording. There is a jovial atmosphere. This piece can be played at Irish pubs.", "data_idx": 3470, "number": 2, "label": "classical"} +{"file_name": "train_06161.png", "caption": "This is a live acoustic performance of an Irish folk music piece. The chords of the piece are being played by two acoustic guitars in the background while a violin is playing the main theme which is in medium-to-high range. Since the piece is being played at a pub, the sounds of the place can also be heard in the recording. There is a jovial atmosphere. This piece can be played at Irish pubs.", "data_idx": 3470, "number": 3, "label": "classical"} +{"file_name": "train_06162.png", "caption": "This is a classical music waltz piece played on a glass harp instrument. The melody is being played on the smaller glasses at a higher pitch while the rhythm is being played on the bigger glass at a medium pitch. The piece is being played at a cathedral which gives a nice resonance and natural reverb effect. The piece has a unique character. It can be played in the soundtracks of children's movies/TV shows.", "data_idx": 3475, "number": 0, "label": "classical"} +{"file_name": "train_06163.png", "caption": "This is a classical music waltz piece played on a glass harp instrument. The melody is being played on the smaller glasses at a higher pitch while the rhythm is being played on the bigger glass at a medium pitch. The piece is being played at a cathedral which gives a nice resonance and natural reverb effect. The piece has a unique character. It can be played in the soundtracks of children's movies/TV shows.", "data_idx": 3475, "number": 1, "label": "classical"} +{"file_name": "train_06164.png", "caption": "This is a classical music waltz piece played on a glass harp instrument. The melody is being played on the smaller glasses at a higher pitch while the rhythm is being played on the bigger glass at a medium pitch. The piece is being played at a cathedral which gives a nice resonance and natural reverb effect. The piece has a unique character. It can be played in the soundtracks of children's movies/TV shows.", "data_idx": 3475, "number": 2, "label": "classical"} +{"file_name": "train_06165.png", "caption": "This is a classical music waltz piece played on a glass harp instrument. The melody is being played on the smaller glasses at a higher pitch while the rhythm is being played on the bigger glass at a medium pitch. The piece is being played at a cathedral which gives a nice resonance and natural reverb effect. The piece has a unique character. It can be played in the soundtracks of children's movies/TV shows.", "data_idx": 3475, "number": 3, "label": "classical"} +{"file_name": "train_06166.png", "caption": "This is an alternative rock piece. There is a male vocal singing gently and melodically at the forefront in the medium range, while a male back vocal can be heard singing at a higher pitch. A clean sounding electric guitar is playing a mellow tune with a bass guitar holding the root notes in the background. The acoustic drums are playing a basic rock beat. There is an easygoing aura to it. This piece could be used in a food/beverage commercial. It could also be playing at a sports venue.", "data_idx": 3476, "number": 0, "label": "country"} +{"file_name": "train_06167.png", "caption": "This is an alternative rock piece. There is a male vocal singing gently and melodically at the forefront in the medium range, while a male back vocal can be heard singing at a higher pitch. A clean sounding electric guitar is playing a mellow tune with a bass guitar holding the root notes in the background. The acoustic drums are playing a basic rock beat. There is an easygoing aura to it. This piece could be used in a food/beverage commercial. It could also be playing at a sports venue.", "data_idx": 3476, "number": 1, "label": "country"} +{"file_name": "train_06168.png", "caption": "This is an alternative rock piece. There is a male vocal singing gently and melodically at the forefront in the medium range, while a male back vocal can be heard singing at a higher pitch. A clean sounding electric guitar is playing a mellow tune with a bass guitar holding the root notes in the background. The acoustic drums are playing a basic rock beat. There is an easygoing aura to it. This piece could be used in a food/beverage commercial. It could also be playing at a sports venue.", "data_idx": 3476, "number": 2, "label": "country"} +{"file_name": "train_06169.png", "caption": "This is an alternative rock piece. There is a male vocal singing gently and melodically at the forefront in the medium range, while a male back vocal can be heard singing at a higher pitch. A clean sounding electric guitar is playing a mellow tune with a bass guitar holding the root notes in the background. The acoustic drums are playing a basic rock beat. There is an easygoing aura to it. This piece could be used in a food/beverage commercial. It could also be playing at a sports venue.", "data_idx": 3476, "number": 3, "label": "country"} +{"file_name": "train_06170.png", "caption": "The low recording features a low, buzzy didgeridoo tone. It is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3478, "number": 0, "label": "metal"} +{"file_name": "train_06171.png", "caption": "The low recording features a low, buzzy didgeridoo tone. It is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3478, "number": 1, "label": "metal"} +{"file_name": "train_06172.png", "caption": "The low recording features a low, buzzy didgeridoo tone. It is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3478, "number": 2, "label": "metal"} +{"file_name": "train_06173.png", "caption": "The low recording features a low, buzzy didgeridoo tone. It is mono and noisy, as it was probably recorded with a phone.", "data_idx": 3478, "number": 3, "label": "metal"} +{"file_name": "train_06174.png", "caption": "The low quality recording features a live performance of a big band that consists of shimmering hi hats, steel pan melody, punchy snare, soft kick hits, bright brass melody, groovy double bass melody and cowbell percussion. The recording is a bit noisy and it sounds happy and fun.", "data_idx": 3480, "number": 0, "label": "classical"} +{"file_name": "train_06175.png", "caption": "The low quality recording features a live performance of a big band that consists of shimmering hi hats, steel pan melody, punchy snare, soft kick hits, bright brass melody, groovy double bass melody and cowbell percussion. The recording is a bit noisy and it sounds happy and fun.", "data_idx": 3480, "number": 1, "label": "classical"} +{"file_name": "train_06176.png", "caption": "The low quality recording features a live performance of a big band that consists of shimmering hi hats, steel pan melody, punchy snare, soft kick hits, bright brass melody, groovy double bass melody and cowbell percussion. The recording is a bit noisy and it sounds happy and fun.", "data_idx": 3480, "number": 2, "label": "classical"} +{"file_name": "train_06177.png", "caption": "The low quality recording features a live performance of a big band that consists of shimmering hi hats, steel pan melody, punchy snare, soft kick hits, bright brass melody, groovy double bass melody and cowbell percussion. The recording is a bit noisy and it sounds happy and fun.", "data_idx": 3480, "number": 3, "label": "classical"} +{"file_name": "train_06178.png", "caption": "A male voice is singing kind of a calming lullaby in a higher pitch while you can hear sounds of painful screaming and crying that seem not to belong to the song. This is an amateur recording and not of the best audio-quality. This song may be playing in a cruel movie scene.", "data_idx": 3481, "number": 0, "label": "rock"} +{"file_name": "train_06179.png", "caption": "A male voice is singing kind of a calming lullaby in a higher pitch while you can hear sounds of painful screaming and crying that seem not to belong to the song. This is an amateur recording and not of the best audio-quality. This song may be playing in a cruel movie scene.", "data_idx": 3481, "number": 1, "label": "rock"} +{"file_name": "train_06180.png", "caption": "A male voice is singing kind of a calming lullaby in a higher pitch while you can hear sounds of painful screaming and crying that seem not to belong to the song. This is an amateur recording and not of the best audio-quality. This song may be playing in a cruel movie scene.", "data_idx": 3481, "number": 2, "label": "rock"} +{"file_name": "train_06181.png", "caption": "A male voice is singing kind of a calming lullaby in a higher pitch while you can hear sounds of painful screaming and crying that seem not to belong to the song. This is an amateur recording and not of the best audio-quality. This song may be playing in a cruel movie scene.", "data_idx": 3481, "number": 3, "label": "rock"} +{"file_name": "train_06182.png", "caption": "The music excerpt features a male and a female voice singing the same melody in unison. Accompanying the singers is a sitar that plays the same note throughout - what is called a harmonic pedal. The atmosphere points towards a kind of meditation through repetitive singing, a kind of channeling state.", "data_idx": 3482, "number": 0, "label": "blues"} +{"file_name": "train_06183.png", "caption": "The music excerpt features a male and a female voice singing the same melody in unison. Accompanying the singers is a sitar that plays the same note throughout - what is called a harmonic pedal. The atmosphere points towards a kind of meditation through repetitive singing, a kind of channeling state.", "data_idx": 3482, "number": 1, "label": "blues"} +{"file_name": "train_06184.png", "caption": "The music excerpt features a male and a female voice singing the same melody in unison. Accompanying the singers is a sitar that plays the same note throughout - what is called a harmonic pedal. The atmosphere points towards a kind of meditation through repetitive singing, a kind of channeling state.", "data_idx": 3482, "number": 2, "label": "blues"} +{"file_name": "train_06185.png", "caption": "The music excerpt features a male and a female voice singing the same melody in unison. Accompanying the singers is a sitar that plays the same note throughout - what is called a harmonic pedal. The atmosphere points towards a kind of meditation through repetitive singing, a kind of channeling state.", "data_idx": 3482, "number": 3, "label": "blues"} +{"file_name": "train_06186.png", "caption": "The low quality recording features a lullaby that consists of soft bells melody. It sounds like a music box melody and it is relaxing, passionate and mellow.", "data_idx": 3485, "number": 0, "label": "pop"} +{"file_name": "train_06187.png", "caption": "The low quality recording features a lullaby that consists of soft bells melody. It sounds like a music box melody and it is relaxing, passionate and mellow.", "data_idx": 3485, "number": 1, "label": "pop"} +{"file_name": "train_06188.png", "caption": "The low quality recording features a lullaby that consists of soft bells melody. It sounds like a music box melody and it is relaxing, passionate and mellow.", "data_idx": 3485, "number": 2, "label": "pop"} +{"file_name": "train_06189.png", "caption": "The low quality recording features a lullaby that consists of soft bells melody. It sounds like a music box melody and it is relaxing, passionate and mellow.", "data_idx": 3485, "number": 3, "label": "pop"} +{"file_name": "train_06190.png", "caption": "The R&B song features a passionate male vocalist singing over a wide funky electric guitar melody, smooth bass guitar, punchy kick and snare hits, shimmering hi hats, snappy rimshots and soft crash cymbals. The rimshots are present in the first half of the loop, while a more energetic second part of the loop consists of punchy snare hits. It sounds emotional and heartfelt, as the vocal is slightly distorted.", "data_idx": 3486, "number": 0, "label": "rock"} +{"file_name": "train_06191.png", "caption": "The R&B song features a passionate male vocalist singing over a wide funky electric guitar melody, smooth bass guitar, punchy kick and snare hits, shimmering hi hats, snappy rimshots and soft crash cymbals. The rimshots are present in the first half of the loop, while a more energetic second part of the loop consists of punchy snare hits. It sounds emotional and heartfelt, as the vocal is slightly distorted.", "data_idx": 3486, "number": 1, "label": "rock"} +{"file_name": "train_06192.png", "caption": "The R&B song features a passionate male vocalist singing over a wide funky electric guitar melody, smooth bass guitar, punchy kick and snare hits, shimmering hi hats, snappy rimshots and soft crash cymbals. The rimshots are present in the first half of the loop, while a more energetic second part of the loop consists of punchy snare hits. It sounds emotional and heartfelt, as the vocal is slightly distorted.", "data_idx": 3486, "number": 2, "label": "rock"} +{"file_name": "train_06193.png", "caption": "The R&B song features a passionate male vocalist singing over a wide funky electric guitar melody, smooth bass guitar, punchy kick and snare hits, shimmering hi hats, snappy rimshots and soft crash cymbals. The rimshots are present in the first half of the loop, while a more energetic second part of the loop consists of punchy snare hits. It sounds emotional and heartfelt, as the vocal is slightly distorted.", "data_idx": 3486, "number": 3, "label": "rock"} +{"file_name": "train_06194.png", "caption": "This is a remix of an Indian folk music piece. There is a male vocalist singing melodically and passionately. The rhythmic background is full of percussive elements that were emphasized by the use of electronic drums. The atmosphere is lively and jovial. This piece could be played in dance parties and also in contemporary dancing courses as an accompaniment piece.", "data_idx": 3487, "number": 0, "label": "hiphop"} +{"file_name": "train_06195.png", "caption": "This is a remix of an Indian folk music piece. There is a male vocalist singing melodically and passionately. The rhythmic background is full of percussive elements that were emphasized by the use of electronic drums. The atmosphere is lively and jovial. This piece could be played in dance parties and also in contemporary dancing courses as an accompaniment piece.", "data_idx": 3487, "number": 1, "label": "hiphop"} +{"file_name": "train_06196.png", "caption": "This is a remix of an Indian folk music piece. There is a male vocalist singing melodically and passionately. The rhythmic background is full of percussive elements that were emphasized by the use of electronic drums. The atmosphere is lively and jovial. This piece could be played in dance parties and also in contemporary dancing courses as an accompaniment piece.", "data_idx": 3487, "number": 2, "label": "hiphop"} +{"file_name": "train_06197.png", "caption": "This is a remix of an Indian folk music piece. There is a male vocalist singing melodically and passionately. The rhythmic background is full of percussive elements that were emphasized by the use of electronic drums. The atmosphere is lively and jovial. This piece could be played in dance parties and also in contemporary dancing courses as an accompaniment piece.", "data_idx": 3487, "number": 3, "label": "hiphop"} +{"file_name": "train_06198.png", "caption": "This audio contains videogame-sounds, sound-effects. You can hear water running/dripping, clicking sounds and other noises that sound like being in a big cave. This is an amateur recording.", "data_idx": 3489, "number": 0, "label": "blues"} +{"file_name": "train_06199.png", "caption": "This audio contains videogame-sounds, sound-effects. You can hear water running/dripping, clicking sounds and other noises that sound like being in a big cave. This is an amateur recording.", "data_idx": 3489, "number": 1, "label": "blues"} +{"file_name": "train_06200.png", "caption": "This audio contains videogame-sounds, sound-effects. You can hear water running/dripping, clicking sounds and other noises that sound like being in a big cave. This is an amateur recording.", "data_idx": 3489, "number": 2, "label": "blues"} +{"file_name": "train_06201.png", "caption": "This audio contains videogame-sounds, sound-effects. You can hear water running/dripping, clicking sounds and other noises that sound like being in a big cave. This is an amateur recording.", "data_idx": 3489, "number": 3, "label": "blues"} +{"file_name": "train_06202.png", "caption": "The low quality recording features a mono recording located only in the right channel of the stereo image. It consists of at least brass section melody, shimmering cymbals and melodic female vocals. There are some crowd chattering noises too, but it sounds fun and happy.", "data_idx": 3490, "number": 0, "label": "classical"} +{"file_name": "train_06203.png", "caption": "The low quality recording features a mono recording located only in the right channel of the stereo image. It consists of at least brass section melody, shimmering cymbals and melodic female vocals. There are some crowd chattering noises too, but it sounds fun and happy.", "data_idx": 3490, "number": 1, "label": "classical"} +{"file_name": "train_06204.png", "caption": "The low quality recording features a mono recording located only in the right channel of the stereo image. It consists of at least brass section melody, shimmering cymbals and melodic female vocals. There are some crowd chattering noises too, but it sounds fun and happy.", "data_idx": 3490, "number": 2, "label": "classical"} +{"file_name": "train_06205.png", "caption": "The low quality recording features a mono recording located only in the right channel of the stereo image. It consists of at least brass section melody, shimmering cymbals and melodic female vocals. There are some crowd chattering noises too, but it sounds fun and happy.", "data_idx": 3490, "number": 3, "label": "classical"} +{"file_name": "train_06206.png", "caption": "The low quality recording features a detuned synth lead melody played on some kind of kids toy. It sounds very digital, like an 8bit melody and the recording is very noisy.", "data_idx": 3494, "number": 0, "label": "jazz"} +{"file_name": "train_06207.png", "caption": "The low quality recording features a detuned synth lead melody played on some kind of kids toy. It sounds very digital, like an 8bit melody and the recording is very noisy.", "data_idx": 3494, "number": 1, "label": "jazz"} +{"file_name": "train_06208.png", "caption": "The low quality recording features a traditional song that consists of wide, harmonizing female vocals singing over acoustic rhythm guitar. It sounds mellow, soft and emotional.", "data_idx": 3503, "number": 0, "label": "country"} +{"file_name": "train_06209.png", "caption": "The low quality recording features a traditional song that consists of wide, harmonizing female vocals singing over acoustic rhythm guitar. It sounds mellow, soft and emotional.", "data_idx": 3503, "number": 1, "label": "country"} +{"file_name": "train_06210.png", "caption": "The low quality recording features a traditional song that consists of wide, harmonizing female vocals singing over acoustic rhythm guitar. It sounds mellow, soft and emotional.", "data_idx": 3503, "number": 2, "label": "country"} +{"file_name": "train_06211.png", "caption": "The low quality recording features a traditional song that consists of wide, harmonizing female vocals singing over acoustic rhythm guitar. It sounds mellow, soft and emotional.", "data_idx": 3503, "number": 3, "label": "country"} +{"file_name": "train_06212.png", "caption": "This is an instrumental piece consisting of an electric guitar solo which is played with the tapping technique. There is a usage of complex chords and syncopations, essential characteristics of the progressive rock genre. The guitar has a clear tone.", "data_idx": 3504, "number": 0, "label": "reggae"} +{"file_name": "train_06213.png", "caption": "This is an instrumental piece consisting of an electric guitar solo which is played with the tapping technique. There is a usage of complex chords and syncopations, essential characteristics of the progressive rock genre. The guitar has a clear tone.", "data_idx": 3504, "number": 1, "label": "reggae"} +{"file_name": "train_06214.png", "caption": "This is a latin dance piece. There are two vocals taking turns singing the same line repeatedly. There is a keyboard and a trumpet playing the main melody. A fast-paced electronic percussion is playing in the rhythmic background. This is a dizzyingly high tempo song. It is very danceable. This piece can be played in latin nightclubs and latin dance courses.", "data_idx": 3505, "number": 0, "label": "hiphop"} +{"file_name": "train_06215.png", "caption": "This is a latin dance piece. There are two vocals taking turns singing the same line repeatedly. There is a keyboard and a trumpet playing the main melody. A fast-paced electronic percussion is playing in the rhythmic background. This is a dizzyingly high tempo song. It is very danceable. This piece can be played in latin nightclubs and latin dance courses.", "data_idx": 3505, "number": 1, "label": "hiphop"} +{"file_name": "train_06216.png", "caption": "This is a latin dance piece. There are two vocals taking turns singing the same line repeatedly. There is a keyboard and a trumpet playing the main melody. A fast-paced electronic percussion is playing in the rhythmic background. This is a dizzyingly high tempo song. It is very danceable. This piece can be played in latin nightclubs and latin dance courses.", "data_idx": 3505, "number": 2, "label": "hiphop"} +{"file_name": "train_06217.png", "caption": "This is a latin dance piece. There are two vocals taking turns singing the same line repeatedly. There is a keyboard and a trumpet playing the main melody. A fast-paced electronic percussion is playing in the rhythmic background. This is a dizzyingly high tempo song. It is very danceable. This piece can be played in latin nightclubs and latin dance courses.", "data_idx": 3505, "number": 3, "label": "hiphop"} +{"file_name": "train_06218.png", "caption": "The low quality recording features a marimba melody, groovy accordion chords and walking bass guitar, followed by metallic percussive elements and shimmering snare. It sounds fun and happy, even though it is probably recorded via phone.", "data_idx": 3509, "number": 0, "label": "reggae"} +{"file_name": "train_06219.png", "caption": "The low quality recording features a marimba melody, groovy accordion chords and walking bass guitar, followed by metallic percussive elements and shimmering snare. It sounds fun and happy, even though it is probably recorded via phone.", "data_idx": 3509, "number": 1, "label": "reggae"} +{"file_name": "train_06220.png", "caption": "The low quality recording features a marimba melody, groovy accordion chords and walking bass guitar, followed by metallic percussive elements and shimmering snare. It sounds fun and happy, even though it is probably recorded via phone.", "data_idx": 3509, "number": 2, "label": "reggae"} +{"file_name": "train_06221.png", "caption": "The low quality recording features a marimba melody, groovy accordion chords and walking bass guitar, followed by metallic percussive elements and shimmering snare. It sounds fun and happy, even though it is probably recorded via phone.", "data_idx": 3509, "number": 3, "label": "reggae"} +{"file_name": "train_06222.png", "caption": "A didgeridoo is playing a rhythm full of overtones while being supported by experimental, atmospheric pad sounds. The whole recording is full of reverb, mystic sounds that are panned to the left and right side of the speakers. This song may be playing at an alternative nature festival.", "data_idx": 3511, "number": 0, "label": "country"} +{"file_name": "train_06223.png", "caption": "A didgeridoo is playing a rhythm full of overtones while being supported by experimental, atmospheric pad sounds. The whole recording is full of reverb, mystic sounds that are panned to the left and right side of the speakers. This song may be playing at an alternative nature festival.", "data_idx": 3511, "number": 1, "label": "country"} +{"file_name": "train_06224.png", "caption": "A didgeridoo is playing a rhythm full of overtones while being supported by experimental, atmospheric pad sounds. The whole recording is full of reverb, mystic sounds that are panned to the left and right side of the speakers. This song may be playing at an alternative nature festival.", "data_idx": 3511, "number": 2, "label": "country"} +{"file_name": "train_06225.png", "caption": "A didgeridoo is playing a rhythm full of overtones while being supported by experimental, atmospheric pad sounds. The whole recording is full of reverb, mystic sounds that are panned to the left and right side of the speakers. This song may be playing at an alternative nature festival.", "data_idx": 3511, "number": 3, "label": "country"} +{"file_name": "train_06226.png", "caption": "This clip features a melody played by violins and flutes. This is a low quality recording. There is no percussion in this song. Hand claps are played on every count. This is a folk song which has a happy mood. There is no voice in this song. This song can be used in a movie scene where somebody enters a castle to meet medieval royalty.", "data_idx": 3512, "number": 0, "label": "classical"} +{"file_name": "train_06227.png", "caption": "This clip features a melody played by violins and flutes. This is a low quality recording. There is no percussion in this song. Hand claps are played on every count. This is a folk song which has a happy mood. There is no voice in this song. This song can be used in a movie scene where somebody enters a castle to meet medieval royalty.", "data_idx": 3512, "number": 1, "label": "classical"} +{"file_name": "train_06228.png", "caption": "This clip features a melody played by violins and flutes. This is a low quality recording. There is no percussion in this song. Hand claps are played on every count. This is a folk song which has a happy mood. There is no voice in this song. This song can be used in a movie scene where somebody enters a castle to meet medieval royalty.", "data_idx": 3512, "number": 2, "label": "classical"} +{"file_name": "train_06229.png", "caption": "This clip features a melody played by violins and flutes. This is a low quality recording. There is no percussion in this song. Hand claps are played on every count. This is a folk song which has a happy mood. There is no voice in this song. This song can be used in a movie scene where somebody enters a castle to meet medieval royalty.", "data_idx": 3512, "number": 3, "label": "classical"} +{"file_name": "train_06230.png", "caption": "This music is an instrumental with a medium fast tempo. The music is orchestral with a lively brass band harmony, violin accompaniment, xylophone beats, a bright trombone and cello bass. The music is animated, lively, playful,whimsical, perky and puckish.", "data_idx": 3513, "number": 0, "label": "jazz"} +{"file_name": "train_06231.png", "caption": "This music is an instrumental with a medium fast tempo. The music is orchestral with a lively brass band harmony, violin accompaniment, xylophone beats, a bright trombone and cello bass. The music is animated, lively, playful,whimsical, perky and puckish.", "data_idx": 3513, "number": 1, "label": "jazz"} +{"file_name": "train_06232.png", "caption": "This music is an instrumental with a medium fast tempo. The music is orchestral with a lively brass band harmony, violin accompaniment, xylophone beats, a bright trombone and cello bass. The music is animated, lively, playful,whimsical, perky and puckish.", "data_idx": 3513, "number": 2, "label": "jazz"} +{"file_name": "train_06233.png", "caption": "This music is an instrumental with a medium fast tempo. The music is orchestral with a lively brass band harmony, violin accompaniment, xylophone beats, a bright trombone and cello bass. The music is animated, lively, playful,whimsical, perky and puckish.", "data_idx": 3513, "number": 3, "label": "jazz"} +{"file_name": "train_06234.png", "caption": "This is a rock music piece consisting of three instruments. There is a distorted electric lead guitar playing a solo that is increasing from medium to high pitch. The bass guitar is providing tune in the background. There is a loud acoustic drum beat that includes a lot of fills. The song has a vigorous, high energy feel to it. This piece could be played at rock bars.", "data_idx": 3514, "number": 0, "label": "metal"} +{"file_name": "train_06235.png", "caption": "This is a rock music piece consisting of three instruments. There is a distorted electric lead guitar playing a solo that is increasing from medium to high pitch. The bass guitar is providing tune in the background. There is a loud acoustic drum beat that includes a lot of fills. The song has a vigorous, high energy feel to it. This piece could be played at rock bars.", "data_idx": 3514, "number": 1, "label": "metal"} +{"file_name": "train_06236.png", "caption": "This is a rock music piece consisting of three instruments. There is a distorted electric lead guitar playing a solo that is increasing from medium to high pitch. The bass guitar is providing tune in the background. There is a loud acoustic drum beat that includes a lot of fills. The song has a vigorous, high energy feel to it. This piece could be played at rock bars.", "data_idx": 3514, "number": 2, "label": "metal"} +{"file_name": "train_06237.png", "caption": "This is a rock music piece consisting of three instruments. There is a distorted electric lead guitar playing a solo that is increasing from medium to high pitch. The bass guitar is providing tune in the background. There is a loud acoustic drum beat that includes a lot of fills. The song has a vigorous, high energy feel to it. This piece could be played at rock bars.", "data_idx": 3514, "number": 3, "label": "metal"} +{"file_name": "train_06238.png", "caption": "Someone is playing a clean e-guitar chord and then a male voice starts to talk. This is an amateur recording.", "data_idx": 3516, "number": 0, "label": "hiphop"} +{"file_name": "train_06239.png", "caption": "Someone is playing a clean e-guitar chord and then a male voice starts to talk. This is an amateur recording.", "data_idx": 3516, "number": 1, "label": "hiphop"} +{"file_name": "train_06240.png", "caption": "Someone is playing a clean e-guitar chord and then a male voice starts to talk. This is an amateur recording.", "data_idx": 3516, "number": 2, "label": "hiphop"} +{"file_name": "train_06241.png", "caption": "Someone is playing a clean e-guitar chord and then a male voice starts to talk. This is an amateur recording.", "data_idx": 3516, "number": 3, "label": "hiphop"} +{"file_name": "train_06242.png", "caption": "The low quality recording features a hip hop song that consists of punchy snare and kick hits, shimmering hi hats and buzzy synth lead, played by a DJ that manually made beat breaks, which resulted in stuttering filter modulated synth riser. It sounds energetic and exciting thanks to that riser.", "data_idx": 3518, "number": 0, "label": "hiphop"} +{"file_name": "train_06243.png", "caption": "The low quality recording features a hip hop song that consists of punchy snare and kick hits, shimmering hi hats and buzzy synth lead, played by a DJ that manually made beat breaks, which resulted in stuttering filter modulated synth riser. It sounds energetic and exciting thanks to that riser.", "data_idx": 3518, "number": 1, "label": "hiphop"} +{"file_name": "train_06244.png", "caption": "The low quality recording features a hip hop song that consists of punchy snare and kick hits, shimmering hi hats and buzzy synth lead, played by a DJ that manually made beat breaks, which resulted in stuttering filter modulated synth riser. It sounds energetic and exciting thanks to that riser.", "data_idx": 3518, "number": 2, "label": "hiphop"} +{"file_name": "train_06245.png", "caption": "The low quality recording features a hip hop song that consists of punchy snare and kick hits, shimmering hi hats and buzzy synth lead, played by a DJ that manually made beat breaks, which resulted in stuttering filter modulated synth riser. It sounds energetic and exciting thanks to that riser.", "data_idx": 3518, "number": 3, "label": "hiphop"} +{"file_name": "train_06246.png", "caption": "The track would fit the funk fusion music genre. The main melodic element is a synth electric guitar that plays a solo with a lot of energy and presence. In the background a drum loop that sounds very electronic is played. The music is upbeat and simple. This song would fit a car racing video game.", "data_idx": 3520, "number": 0, "label": "reggae"} +{"file_name": "train_06247.png", "caption": "The track would fit the funk fusion music genre. The main melodic element is a synth electric guitar that plays a solo with a lot of energy and presence. In the background a drum loop that sounds very electronic is played. The music is upbeat and simple. This song would fit a car racing video game.", "data_idx": 3520, "number": 1, "label": "reggae"} +{"file_name": "train_06248.png", "caption": "The track would fit the funk fusion music genre. The main melodic element is a synth electric guitar that plays a solo with a lot of energy and presence. In the background a drum loop that sounds very electronic is played. The music is upbeat and simple. This song would fit a car racing video game.", "data_idx": 3520, "number": 2, "label": "reggae"} +{"file_name": "train_06249.png", "caption": "The track would fit the funk fusion music genre. The main melodic element is a synth electric guitar that plays a solo with a lot of energy and presence. In the background a drum loop that sounds very electronic is played. The music is upbeat and simple. This song would fit a car racing video game.", "data_idx": 3520, "number": 3, "label": "reggae"} +{"file_name": "train_06250.png", "caption": "Sound from a cartoon space battle featuring a space shuttle takeoff, laser gun sounds and a rocket launcher firing. Background score is dramatic orchestral, featuring cymbal crashes and tense, dissonant string harmonies.", "data_idx": 3522, "number": 0, "label": "metal"} +{"file_name": "train_06251.png", "caption": "Sound from a cartoon space battle featuring a space shuttle takeoff, laser gun sounds and a rocket launcher firing. Background score is dramatic orchestral, featuring cymbal crashes and tense, dissonant string harmonies.", "data_idx": 3522, "number": 1, "label": "metal"} +{"file_name": "train_06252.png", "caption": "Sound from a cartoon space battle featuring a space shuttle takeoff, laser gun sounds and a rocket launcher firing. Background score is dramatic orchestral, featuring cymbal crashes and tense, dissonant string harmonies.", "data_idx": 3522, "number": 2, "label": "metal"} +{"file_name": "train_06253.png", "caption": "Sound from a cartoon space battle featuring a space shuttle takeoff, laser gun sounds and a rocket launcher firing. Background score is dramatic orchestral, featuring cymbal crashes and tense, dissonant string harmonies.", "data_idx": 3522, "number": 3, "label": "metal"} +{"file_name": "train_06254.png", "caption": "The EDM song features an echoing synth lead melody, snare rolls, synth pad chords, energetic riser and some claps. In the second half of the loop, there is a filtered synth melody building up. It sounds energetic and exciting, as this is probably a build up section, after which comes a drop and like something you would hear in a club.", "data_idx": 3526, "number": 0, "label": "classical"} +{"file_name": "train_06255.png", "caption": "The EDM song features an echoing synth lead melody, snare rolls, synth pad chords, energetic riser and some claps. In the second half of the loop, there is a filtered synth melody building up. It sounds energetic and exciting, as this is probably a build up section, after which comes a drop and like something you would hear in a club.", "data_idx": 3526, "number": 1, "label": "classical"} +{"file_name": "train_06256.png", "caption": "The EDM song features an echoing synth lead melody, snare rolls, synth pad chords, energetic riser and some claps. In the second half of the loop, there is a filtered synth melody building up. It sounds energetic and exciting, as this is probably a build up section, after which comes a drop and like something you would hear in a club.", "data_idx": 3526, "number": 2, "label": "classical"} +{"file_name": "train_06257.png", "caption": "The EDM song features an echoing synth lead melody, snare rolls, synth pad chords, energetic riser and some claps. In the second half of the loop, there is a filtered synth melody building up. It sounds energetic and exciting, as this is probably a build up section, after which comes a drop and like something you would hear in a club.", "data_idx": 3526, "number": 3, "label": "classical"} +{"file_name": "train_06258.png", "caption": "This pop song features a female voice singing the main melody in a foreign language. This is accompanied by an accordion playing a harmonized melody in the background. There is no percussion in this song. Minimal instruments are used in this song. The theme of this song feels romantic.", "data_idx": 3527, "number": 0, "label": "disco"} +{"file_name": "train_06259.png", "caption": "This pop song features a female voice singing the main melody in a foreign language. This is accompanied by an accordion playing a harmonized melody in the background. There is no percussion in this song. Minimal instruments are used in this song. The theme of this song feels romantic.", "data_idx": 3527, "number": 1, "label": "disco"} +{"file_name": "train_06260.png", "caption": "This pop song features a female voice singing the main melody in a foreign language. This is accompanied by an accordion playing a harmonized melody in the background. There is no percussion in this song. Minimal instruments are used in this song. The theme of this song feels romantic.", "data_idx": 3527, "number": 2, "label": "disco"} +{"file_name": "train_06261.png", "caption": "This pop song features a female voice singing the main melody in a foreign language. This is accompanied by an accordion playing a harmonized melody in the background. There is no percussion in this song. Minimal instruments are used in this song. The theme of this song feels romantic.", "data_idx": 3527, "number": 3, "label": "disco"} +{"file_name": "train_06262.png", "caption": "The low quality recording features a rock song that consists of melancholic male vocal singing over a wide electric guitar melody, bouncy snare, groovy bass guitar and punchy kick. The recording is noisy, muddy and messy, since the frequencies are clashing with each other - drums cymbals are inaudible. Regardless, it sounds groovy, emotional and melancholic thanks to that vocal.", "data_idx": 3532, "number": 0, "label": "rock"} +{"file_name": "train_06263.png", "caption": "The low quality recording features a rock song that consists of melancholic male vocal singing over a wide electric guitar melody, bouncy snare, groovy bass guitar and punchy kick. The recording is noisy, muddy and messy, since the frequencies are clashing with each other - drums cymbals are inaudible. Regardless, it sounds groovy, emotional and melancholic thanks to that vocal.", "data_idx": 3532, "number": 1, "label": "rock"} +{"file_name": "train_06264.png", "caption": "The low quality recording features a rock song that consists of melancholic male vocal singing over a wide electric guitar melody, bouncy snare, groovy bass guitar and punchy kick. The recording is noisy, muddy and messy, since the frequencies are clashing with each other - drums cymbals are inaudible. Regardless, it sounds groovy, emotional and melancholic thanks to that vocal.", "data_idx": 3532, "number": 2, "label": "rock"} +{"file_name": "train_06265.png", "caption": "The low quality recording features a rock song that consists of melancholic male vocal singing over a wide electric guitar melody, bouncy snare, groovy bass guitar and punchy kick. The recording is noisy, muddy and messy, since the frequencies are clashing with each other - drums cymbals are inaudible. Regardless, it sounds groovy, emotional and melancholic thanks to that vocal.", "data_idx": 3532, "number": 3, "label": "rock"} +{"file_name": "train_06266.png", "caption": "A female Arabic singer sings this beautiful melody with backup singers in vocal harmony. The song is medium tempo with a string section, Arabic percussion instruments, tambourine percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is romantic and celebratory in nature. The audio quality is very poor.", "data_idx": 3533, "number": 0, "label": "disco"} +{"file_name": "train_06267.png", "caption": "A female Arabic singer sings this beautiful melody with backup singers in vocal harmony. The song is medium tempo with a string section, Arabic percussion instruments, tambourine percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is romantic and celebratory in nature. The audio quality is very poor.", "data_idx": 3533, "number": 1, "label": "disco"} +{"file_name": "train_06268.png", "caption": "A female Arabic singer sings this beautiful melody with backup singers in vocal harmony. The song is medium tempo with a string section, Arabic percussion instruments, tambourine percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is romantic and celebratory in nature. The audio quality is very poor.", "data_idx": 3533, "number": 2, "label": "disco"} +{"file_name": "train_06269.png", "caption": "A female Arabic singer sings this beautiful melody with backup singers in vocal harmony. The song is medium tempo with a string section, Arabic percussion instruments, tambourine percussion, steady drum rhythm, groovy bass line and keyboard accompaniment. The song is romantic and celebratory in nature. The audio quality is very poor.", "data_idx": 3533, "number": 3, "label": "disco"} +{"file_name": "train_06270.png", "caption": "The low quality recording features a live performance of a folk rock song that consists of harmonizing vocals singing over shimmering hi hats, snappy rimshots, groovy bass guitar and acoustic rhythm guitar, followed by some crowd claps. It sounds messy, muddy and distorted, but still emotional and passionate too.", "data_idx": 3535, "number": 0, "label": "blues"} +{"file_name": "train_06271.png", "caption": "The low quality recording features a live performance of a folk rock song that consists of harmonizing vocals singing over shimmering hi hats, snappy rimshots, groovy bass guitar and acoustic rhythm guitar, followed by some crowd claps. It sounds messy, muddy and distorted, but still emotional and passionate too.", "data_idx": 3535, "number": 1, "label": "blues"} +{"file_name": "train_06272.png", "caption": "The low quality recording features a live performance of a folk rock song that consists of harmonizing vocals singing over shimmering hi hats, snappy rimshots, groovy bass guitar and acoustic rhythm guitar, followed by some crowd claps. It sounds messy, muddy and distorted, but still emotional and passionate too.", "data_idx": 3535, "number": 2, "label": "blues"} +{"file_name": "train_06273.png", "caption": "The low quality recording features a live performance of a folk rock song that consists of harmonizing vocals singing over shimmering hi hats, snappy rimshots, groovy bass guitar and acoustic rhythm guitar, followed by some crowd claps. It sounds messy, muddy and distorted, but still emotional and passionate too.", "data_idx": 3535, "number": 3, "label": "blues"} +{"file_name": "train_06274.png", "caption": "Singers sing this prayer song in a congregational unison. The song is medium tempo with a heavily distorted harmony section. The song is of very bad quality with humming and whirring noises.", "data_idx": 3536, "number": 0, "label": "classical"} +{"file_name": "train_06275.png", "caption": "Singers sing this prayer song in a congregational unison. The song is medium tempo with a heavily distorted harmony section. The song is of very bad quality with humming and whirring noises.", "data_idx": 3536, "number": 1, "label": "classical"} +{"file_name": "train_06276.png", "caption": "The song is an instrumental. The song is medium tempo with Latin percussions, guitar strumming rhythm, groovy bass line and keyboard percussions. The song is exciting and groovy. The song has poor audio quality.", "data_idx": 3540, "number": 0, "label": "disco"} +{"file_name": "train_06277.png", "caption": "The song is an instrumental. The song is medium tempo with Latin percussions, guitar strumming rhythm, groovy bass line and keyboard percussions. The song is exciting and groovy. The song has poor audio quality.", "data_idx": 3540, "number": 1, "label": "disco"} +{"file_name": "train_06278.png", "caption": "The song is an instrumental. The song is medium tempo with Latin percussions, guitar strumming rhythm, groovy bass line and keyboard percussions. The song is exciting and groovy. The song has poor audio quality.", "data_idx": 3540, "number": 2, "label": "disco"} +{"file_name": "train_06279.png", "caption": "The song is an instrumental. The song is medium tempo with Latin percussions, guitar strumming rhythm, groovy bass line and keyboard percussions. The song is exciting and groovy. The song has poor audio quality.", "data_idx": 3540, "number": 3, "label": "disco"} +{"file_name": "train_06280.png", "caption": "This is a recording that was done outdoors and later had background music placed over it. There are the sounds of footsteps, and a young male saying something unintelligible. The track placed over it is a high octane rock song with fast electric bass playing, overdriven electric guitar strumming and a rock motif on the electric guitar.", "data_idx": 3541, "number": 0, "label": "metal"} +{"file_name": "train_06281.png", "caption": "This is a recording that was done outdoors and later had background music placed over it. There are the sounds of footsteps, and a young male saying something unintelligible. The track placed over it is a high octane rock song with fast electric bass playing, overdriven electric guitar strumming and a rock motif on the electric guitar.", "data_idx": 3541, "number": 1, "label": "metal"} +{"file_name": "train_06282.png", "caption": "This is a recording that was done outdoors and later had background music placed over it. There are the sounds of footsteps, and a young male saying something unintelligible. The track placed over it is a high octane rock song with fast electric bass playing, overdriven electric guitar strumming and a rock motif on the electric guitar.", "data_idx": 3541, "number": 2, "label": "metal"} +{"file_name": "train_06283.png", "caption": "This is a recording that was done outdoors and later had background music placed over it. There are the sounds of footsteps, and a young male saying something unintelligible. The track placed over it is a high octane rock song with fast electric bass playing, overdriven electric guitar strumming and a rock motif on the electric guitar.", "data_idx": 3541, "number": 3, "label": "metal"} +{"file_name": "train_06284.png", "caption": "This song features a wind instrument sounding like a saxophone. This is accompanied by percussion playing a simple beat. The melody of this song is jazzy. A piano plays chords. An electric piano or keyboard plays a descending lick before the instruments pause momentarily. The mood of the song is happy. There are no voices in this song.", "data_idx": 3542, "number": 0, "label": "jazz"} +{"file_name": "train_06285.png", "caption": "This song features a wind instrument sounding like a saxophone. This is accompanied by percussion playing a simple beat. The melody of this song is jazzy. A piano plays chords. An electric piano or keyboard plays a descending lick before the instruments pause momentarily. The mood of the song is happy. There are no voices in this song.", "data_idx": 3542, "number": 1, "label": "jazz"} +{"file_name": "train_06286.png", "caption": "This song features a wind instrument sounding like a saxophone. This is accompanied by percussion playing a simple beat. The melody of this song is jazzy. A piano plays chords. An electric piano or keyboard plays a descending lick before the instruments pause momentarily. The mood of the song is happy. There are no voices in this song.", "data_idx": 3542, "number": 2, "label": "jazz"} +{"file_name": "train_06287.png", "caption": "This song features a wind instrument sounding like a saxophone. This is accompanied by percussion playing a simple beat. The melody of this song is jazzy. A piano plays chords. An electric piano or keyboard plays a descending lick before the instruments pause momentarily. The mood of the song is happy. There are no voices in this song.", "data_idx": 3542, "number": 3, "label": "jazz"} +{"file_name": "train_06288.png", "caption": "A dark, sexy techno or acid house beat; with a repetitive synthesizer sequence with a squelchy resonant filter. The kick pattern is four on the floor with swung hi-hats and a syncopated synth bass. There is a big clap on the backbeat with a long reverb tail. The tempo is medium and the singer is male, singing in a high chest voice.", "data_idx": 3544, "number": 0, "label": "disco"} +{"file_name": "train_06289.png", "caption": "A dark, sexy techno or acid house beat; with a repetitive synthesizer sequence with a squelchy resonant filter. The kick pattern is four on the floor with swung hi-hats and a syncopated synth bass. There is a big clap on the backbeat with a long reverb tail. The tempo is medium and the singer is male, singing in a high chest voice.", "data_idx": 3544, "number": 1, "label": "disco"} +{"file_name": "train_06290.png", "caption": "A low sounding male voice is rapping over a fast paced drums playing a reggaeton beat along with a bass. Something like a guitar is playing the melody along. This recording is of poor audio-quality. In the background a laughter can be noticed. This song may be playing in a bar.", "data_idx": 3545, "number": 0, "label": "hiphop"} +{"file_name": "train_06291.png", "caption": "A low sounding male voice is rapping over a fast paced drums playing a reggaeton beat along with a bass. Something like a guitar is playing the melody along. This recording is of poor audio-quality. In the background a laughter can be noticed. This song may be playing in a bar.", "data_idx": 3545, "number": 1, "label": "hiphop"} +{"file_name": "train_06292.png", "caption": "This is a recording of a piano song being played on a speaker. There is a live audience that cheers and applauds. The song feels light and whimsical.", "data_idx": 3546, "number": 0, "label": "classical"} +{"file_name": "train_06293.png", "caption": "This is a recording of a piano song being played on a speaker. There is a live audience that cheers and applauds. The song feels light and whimsical.", "data_idx": 3546, "number": 1, "label": "classical"} +{"file_name": "train_06294.png", "caption": "This is an orchestra playing Arabic music. The melody is played by the conjunction of multiple instruments such as violin, flute and qanun while tambourines create the percussive background of the piece. It has an oriental atmosphere that could be very fitting in a movie or a show taking place in the Middle East. It could also be a good background music for Arab cuisine restaurants.", "data_idx": 3548, "number": 0, "label": "classical"} +{"file_name": "train_06295.png", "caption": "This is an orchestra playing Arabic music. The melody is played by the conjunction of multiple instruments such as violin, flute and qanun while tambourines create the percussive background of the piece. It has an oriental atmosphere that could be very fitting in a movie or a show taking place in the Middle East. It could also be a good background music for Arab cuisine restaurants.", "data_idx": 3548, "number": 1, "label": "classical"} +{"file_name": "train_06296.png", "caption": "This is an orchestra playing Arabic music. The melody is played by the conjunction of multiple instruments such as violin, flute and qanun while tambourines create the percussive background of the piece. It has an oriental atmosphere that could be very fitting in a movie or a show taking place in the Middle East. It could also be a good background music for Arab cuisine restaurants.", "data_idx": 3548, "number": 2, "label": "classical"} +{"file_name": "train_06297.png", "caption": "This is an orchestra playing Arabic music. The melody is played by the conjunction of multiple instruments such as violin, flute and qanun while tambourines create the percussive background of the piece. It has an oriental atmosphere that could be very fitting in a movie or a show taking place in the Middle East. It could also be a good background music for Arab cuisine restaurants.", "data_idx": 3548, "number": 3, "label": "classical"} +{"file_name": "train_06298.png", "caption": "This song contains a lot of percussive elements and instruments playing a fast paced rhythm with a simple e-bass underlining the drum hits. Strings are being played along with the melody and adding some extra spice. The female voice is singing along with a lot of female and male backing vocals. The voices are panned to the left and right side of the speakers. This song may be playing at a cheerful event while celebrating.", "data_idx": 3549, "number": 0, "label": "disco"} +{"file_name": "train_06299.png", "caption": "This song contains a lot of percussive elements and instruments playing a fast paced rhythm with a simple e-bass underlining the drum hits. Strings are being played along with the melody and adding some extra spice. The female voice is singing along with a lot of female and male backing vocals. The voices are panned to the left and right side of the speakers. This song may be playing at a cheerful event while celebrating.", "data_idx": 3549, "number": 1, "label": "disco"} +{"file_name": "train_06300.png", "caption": "This song contains a lot of percussive elements and instruments playing a fast paced rhythm with a simple e-bass underlining the drum hits. Strings are being played along with the melody and adding some extra spice. The female voice is singing along with a lot of female and male backing vocals. The voices are panned to the left and right side of the speakers. This song may be playing at a cheerful event while celebrating.", "data_idx": 3549, "number": 2, "label": "disco"} +{"file_name": "train_06301.png", "caption": "This song contains a lot of percussive elements and instruments playing a fast paced rhythm with a simple e-bass underlining the drum hits. Strings are being played along with the melody and adding some extra spice. The female voice is singing along with a lot of female and male backing vocals. The voices are panned to the left and right side of the speakers. This song may be playing at a cheerful event while celebrating.", "data_idx": 3549, "number": 3, "label": "disco"} +{"file_name": "train_06302.png", "caption": "This song is a choral harmony. The tempo is slow with intense bass and an instrument that sounds like a viola. The song is grim, grave, intense, sinister; eerie; spooky; scary, chant-like, and dreary.", "data_idx": 3551, "number": 0, "label": "rock"} +{"file_name": "train_06303.png", "caption": "This song is a choral harmony. The tempo is slow with intense bass and an instrument that sounds like a viola. The song is grim, grave, intense, sinister; eerie; spooky; scary, chant-like, and dreary.", "data_idx": 3551, "number": 1, "label": "rock"} +{"file_name": "train_06304.png", "caption": "This song is a choral harmony. The tempo is slow with intense bass and an instrument that sounds like a viola. The song is grim, grave, intense, sinister; eerie; spooky; scary, chant-like, and dreary.", "data_idx": 3551, "number": 2, "label": "rock"} +{"file_name": "train_06305.png", "caption": "This song is a choral harmony. The tempo is slow with intense bass and an instrument that sounds like a viola. The song is grim, grave, intense, sinister; eerie; spooky; scary, chant-like, and dreary.", "data_idx": 3551, "number": 3, "label": "rock"} +{"file_name": "train_06306.png", "caption": "This music is instrumental. The tempo is fast with rhythmic acoustic guitar, steady drumming, keyboard harmony, groovy bass line and electric guitar accompaniment. The music is mellow,nostalgic, emotional, simple, pleasant, charming and melodic pop.", "data_idx": 3552, "number": 0, "label": "rock"} +{"file_name": "train_06307.png", "caption": "This music is instrumental. The tempo is fast with rhythmic acoustic guitar, steady drumming, keyboard harmony, groovy bass line and electric guitar accompaniment. The music is mellow,nostalgic, emotional, simple, pleasant, charming and melodic pop.", "data_idx": 3552, "number": 1, "label": "rock"} +{"file_name": "train_06308.png", "caption": "This music is instrumental. The tempo is fast with rhythmic acoustic guitar, steady drumming, keyboard harmony, groovy bass line and electric guitar accompaniment. The music is mellow,nostalgic, emotional, simple, pleasant, charming and melodic pop.", "data_idx": 3552, "number": 2, "label": "rock"} +{"file_name": "train_06309.png", "caption": "This music is instrumental. The tempo is fast with rhythmic acoustic guitar, steady drumming, keyboard harmony, groovy bass line and electric guitar accompaniment. The music is mellow,nostalgic, emotional, simple, pleasant, charming and melodic pop.", "data_idx": 3552, "number": 3, "label": "rock"} +{"file_name": "train_06310.png", "caption": "The low quality recording features a resonating, distorted, crushed electro song being played on a car subwoofer. It sounds very aggressive and energetic too. There are some outdoor atmosphere sounds, since it was recorded outside.", "data_idx": 3553, "number": 0, "label": "hiphop"} +{"file_name": "train_06311.png", "caption": "The low quality recording features a resonating, distorted, crushed electro song being played on a car subwoofer. It sounds very aggressive and energetic too. There are some outdoor atmosphere sounds, since it was recorded outside.", "data_idx": 3553, "number": 1, "label": "hiphop"} +{"file_name": "train_06312.png", "caption": "The low quality recording features a resonating, distorted, crushed electro song being played on a car subwoofer. It sounds very aggressive and energetic too. There are some outdoor atmosphere sounds, since it was recorded outside.", "data_idx": 3553, "number": 2, "label": "hiphop"} +{"file_name": "train_06313.png", "caption": "The low quality recording features a resonating, distorted, crushed electro song being played on a car subwoofer. It sounds very aggressive and energetic too. There are some outdoor atmosphere sounds, since it was recorded outside.", "data_idx": 3553, "number": 3, "label": "hiphop"} +{"file_name": "train_06314.png", "caption": "The low quality recording features wide aggressive electric guitar chords, shimmering hi hats and open hats, punchy snare, soft kick hits and distorted bass guitar. Right before the \"drop\", there is a short guitar slide, leading perfectly into it. The instrumental sounds energetic and aggressive.", "data_idx": 3556, "number": 0, "label": "metal"} +{"file_name": "train_06315.png", "caption": "The low quality recording features wide aggressive electric guitar chords, shimmering hi hats and open hats, punchy snare, soft kick hits and distorted bass guitar. Right before the \"drop\", there is a short guitar slide, leading perfectly into it. The instrumental sounds energetic and aggressive.", "data_idx": 3556, "number": 1, "label": "metal"} +{"file_name": "train_06316.png", "caption": "The low quality recording features wide aggressive electric guitar chords, shimmering hi hats and open hats, punchy snare, soft kick hits and distorted bass guitar. Right before the \"drop\", there is a short guitar slide, leading perfectly into it. The instrumental sounds energetic and aggressive.", "data_idx": 3556, "number": 2, "label": "metal"} +{"file_name": "train_06317.png", "caption": "The low quality recording features wide aggressive electric guitar chords, shimmering hi hats and open hats, punchy snare, soft kick hits and distorted bass guitar. Right before the \"drop\", there is a short guitar slide, leading perfectly into it. The instrumental sounds energetic and aggressive.", "data_idx": 3556, "number": 3, "label": "metal"} +{"file_name": "train_06318.png", "caption": "The audio contains a female voice singing carnatic tones/melody over a shrutibox/drone sound. The audio quality is decent but contains a lot of white noise. It's assumed that this is an amateur recording. This song may be playing at a music teacher's home demonstrating scales to a student.", "data_idx": 3558, "number": 0, "label": "classical"} +{"file_name": "train_06319.png", "caption": "The audio contains a female voice singing carnatic tones/melody over a shrutibox/drone sound. The audio quality is decent but contains a lot of white noise. It's assumed that this is an amateur recording. This song may be playing at a music teacher's home demonstrating scales to a student.", "data_idx": 3558, "number": 1, "label": "classical"} +{"file_name": "train_06320.png", "caption": "The audio contains a female voice singing carnatic tones/melody over a shrutibox/drone sound. The audio quality is decent but contains a lot of white noise. It's assumed that this is an amateur recording. This song may be playing at a music teacher's home demonstrating scales to a student.", "data_idx": 3558, "number": 2, "label": "classical"} +{"file_name": "train_06321.png", "caption": "The audio contains a female voice singing carnatic tones/melody over a shrutibox/drone sound. The audio quality is decent but contains a lot of white noise. It's assumed that this is an amateur recording. This song may be playing at a music teacher's home demonstrating scales to a student.", "data_idx": 3558, "number": 3, "label": "classical"} +{"file_name": "train_06322.png", "caption": "A banjo is playing a solo along to an upright-bass laying a simple monotone bassline. This song may be playing in a bar with live music. This is an amateur recording.", "data_idx": 3559, "number": 0, "label": "jazz"} +{"file_name": "train_06323.png", "caption": "A banjo is playing a solo along to an upright-bass laying a simple monotone bassline. This song may be playing in a bar with live music. This is an amateur recording.", "data_idx": 3559, "number": 1, "label": "jazz"} +{"file_name": "train_06324.png", "caption": "This is a country music piece. There is a male vocalist singing in a preaching manner. The melody is being played by a violin, a banjo and an electric guitar while an upright bass is playing in the background. The rhythmic background consists of an accentuated acoustic drum beat. The atmosphere is lively and hard-hitting. This piece could be used in the soundtrack of a historical crime movie taking place in the US.", "data_idx": 3561, "number": 0, "label": "disco"} +{"file_name": "train_06325.png", "caption": "This is a country music piece. There is a male vocalist singing in a preaching manner. The melody is being played by a violin, a banjo and an electric guitar while an upright bass is playing in the background. The rhythmic background consists of an accentuated acoustic drum beat. The atmosphere is lively and hard-hitting. This piece could be used in the soundtrack of a historical crime movie taking place in the US.", "data_idx": 3561, "number": 1, "label": "disco"} +{"file_name": "train_06326.png", "caption": "This is a country music piece. There is a male vocalist singing in a preaching manner. The melody is being played by a violin, a banjo and an electric guitar while an upright bass is playing in the background. The rhythmic background consists of an accentuated acoustic drum beat. The atmosphere is lively and hard-hitting. This piece could be used in the soundtrack of a historical crime movie taking place in the US.", "data_idx": 3561, "number": 2, "label": "disco"} +{"file_name": "train_06327.png", "caption": "This is a country music piece. There is a male vocalist singing in a preaching manner. The melody is being played by a violin, a banjo and an electric guitar while an upright bass is playing in the background. The rhythmic background consists of an accentuated acoustic drum beat. The atmosphere is lively and hard-hitting. This piece could be used in the soundtrack of a historical crime movie taking place in the US.", "data_idx": 3561, "number": 3, "label": "disco"} +{"file_name": "train_06328.png", "caption": "The low recording features a soft rock song that consists of flat, echoing male vocal singing over muffled drums and reversed synth keys melody located in the left channel of the stereo image - which makes the stereo image a bit unbalanced. The drums consist of groovy snare, punchy kicks and shimmering cymbals. At the end of the loop, there is a reversed high pitched vocal riser. It sounds thin and a bit muffled overall.", "data_idx": 3565, "number": 0, "label": "disco"} +{"file_name": "train_06329.png", "caption": "The low recording features a soft rock song that consists of flat, echoing male vocal singing over muffled drums and reversed synth keys melody located in the left channel of the stereo image - which makes the stereo image a bit unbalanced. The drums consist of groovy snare, punchy kicks and shimmering cymbals. At the end of the loop, there is a reversed high pitched vocal riser. It sounds thin and a bit muffled overall.", "data_idx": 3565, "number": 1, "label": "disco"} +{"file_name": "train_06330.png", "caption": "The low recording features a soft rock song that consists of flat, echoing male vocal singing over muffled drums and reversed synth keys melody located in the left channel of the stereo image - which makes the stereo image a bit unbalanced. The drums consist of groovy snare, punchy kicks and shimmering cymbals. At the end of the loop, there is a reversed high pitched vocal riser. It sounds thin and a bit muffled overall.", "data_idx": 3565, "number": 2, "label": "disco"} +{"file_name": "train_06331.png", "caption": "The low recording features a soft rock song that consists of flat, echoing male vocal singing over muffled drums and reversed synth keys melody located in the left channel of the stereo image - which makes the stereo image a bit unbalanced. The drums consist of groovy snare, punchy kicks and shimmering cymbals. At the end of the loop, there is a reversed high pitched vocal riser. It sounds thin and a bit muffled overall.", "data_idx": 3565, "number": 3, "label": "disco"} +{"file_name": "train_06332.png", "caption": "The low quality recording features a metal song that consists of aggressive electric guitar melody, distorted bass guitar, shimmering cymbals and muffled kick and snare hits. It sounds energetic, but also harsh, messy, distorted, muddy and loud, since the frequencies are clashing with each other. The volume of the song is dwindling occasionally, making it a really low quality sounding track.", "data_idx": 3566, "number": 0, "label": "metal"} +{"file_name": "train_06333.png", "caption": "The low quality recording features a metal song that consists of aggressive electric guitar melody, distorted bass guitar, shimmering cymbals and muffled kick and snare hits. It sounds energetic, but also harsh, messy, distorted, muddy and loud, since the frequencies are clashing with each other. The volume of the song is dwindling occasionally, making it a really low quality sounding track.", "data_idx": 3566, "number": 1, "label": "metal"} +{"file_name": "train_06334.png", "caption": "The low quality recording features a metal song that consists of aggressive electric guitar melody, distorted bass guitar, shimmering cymbals and muffled kick and snare hits. It sounds energetic, but also harsh, messy, distorted, muddy and loud, since the frequencies are clashing with each other. The volume of the song is dwindling occasionally, making it a really low quality sounding track.", "data_idx": 3566, "number": 2, "label": "metal"} +{"file_name": "train_06335.png", "caption": "The low quality recording features a metal song that consists of aggressive electric guitar melody, distorted bass guitar, shimmering cymbals and muffled kick and snare hits. It sounds energetic, but also harsh, messy, distorted, muddy and loud, since the frequencies are clashing with each other. The volume of the song is dwindling occasionally, making it a really low quality sounding track.", "data_idx": 3566, "number": 3, "label": "metal"} +{"file_name": "train_06336.png", "caption": "This audio clip features the sound of water dropping. This is followed by the sound of a wild creature. The sound is creaking. Toward the end, the sound of a rat squealing is heard. This sound is from a video game.", "data_idx": 3569, "number": 0, "label": "hiphop"} +{"file_name": "train_06337.png", "caption": "This audio clip features the sound of water dropping. This is followed by the sound of a wild creature. The sound is creaking. Toward the end, the sound of a rat squealing is heard. This sound is from a video game.", "data_idx": 3569, "number": 1, "label": "hiphop"} +{"file_name": "train_06338.png", "caption": "A phone ring interrupts the song then a male voice is singing along to a digital drum with a strong clapping sound and a funky bassline. This song may be playing while wearing headphones while enjoying yourself.", "data_idx": 3570, "number": 0, "label": "hiphop"} +{"file_name": "train_06339.png", "caption": "A phone ring interrupts the song then a male voice is singing along to a digital drum with a strong clapping sound and a funky bassline. This song may be playing while wearing headphones while enjoying yourself.", "data_idx": 3570, "number": 1, "label": "hiphop"} +{"file_name": "train_06340.png", "caption": "A phone ring interrupts the song then a male voice is singing along to a digital drum with a strong clapping sound and a funky bassline. This song may be playing while wearing headphones while enjoying yourself.", "data_idx": 3570, "number": 2, "label": "hiphop"} +{"file_name": "train_06341.png", "caption": "A phone ring interrupts the song then a male voice is singing along to a digital drum with a strong clapping sound and a funky bassline. This song may be playing while wearing headphones while enjoying yourself.", "data_idx": 3570, "number": 3, "label": "hiphop"} +{"file_name": "train_06342.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar rhythm, keyboard accompaniment, steady drumming , sound of chimes, xylophone, shakers and atmospheric synthesiser. The song is a sweet, dreamy, mellow, soothing ,lullaby for children.This song is a Nursery Rhyme.", "data_idx": 3571, "number": 0, "label": "blues"} +{"file_name": "train_06343.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar rhythm, keyboard accompaniment, steady drumming , sound of chimes, xylophone, shakers and atmospheric synthesiser. The song is a sweet, dreamy, mellow, soothing ,lullaby for children.This song is a Nursery Rhyme.", "data_idx": 3571, "number": 1, "label": "blues"} +{"file_name": "train_06344.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar rhythm, keyboard accompaniment, steady drumming , sound of chimes, xylophone, shakers and atmospheric synthesiser. The song is a sweet, dreamy, mellow, soothing ,lullaby for children.This song is a Nursery Rhyme.", "data_idx": 3571, "number": 2, "label": "blues"} +{"file_name": "train_06345.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar rhythm, keyboard accompaniment, steady drumming , sound of chimes, xylophone, shakers and atmospheric synthesiser. The song is a sweet, dreamy, mellow, soothing ,lullaby for children.This song is a Nursery Rhyme.", "data_idx": 3571, "number": 3, "label": "blues"} +{"file_name": "train_06346.png", "caption": "This is an acoustic indie rock piece. There is a male vocalist singing gently in the Thai language. An acoustic guitar plays the main tune while a bass guitar is in the background. There is a piano that starts out by supporting the melody, but then wanders towards off-key notes, creating an air of conflict. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama movie/TV show that takes place in Thailand.", "data_idx": 3572, "number": 0, "label": "rock"} +{"file_name": "train_06347.png", "caption": "This is an acoustic indie rock piece. There is a male vocalist singing gently in the Thai language. An acoustic guitar plays the main tune while a bass guitar is in the background. There is a piano that starts out by supporting the melody, but then wanders towards off-key notes, creating an air of conflict. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama movie/TV show that takes place in Thailand.", "data_idx": 3572, "number": 1, "label": "rock"} +{"file_name": "train_06348.png", "caption": "This is an acoustic indie rock piece. There is a male vocalist singing gently in the Thai language. An acoustic guitar plays the main tune while a bass guitar is in the background. There is a piano that starts out by supporting the melody, but then wanders towards off-key notes, creating an air of conflict. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama movie/TV show that takes place in Thailand.", "data_idx": 3572, "number": 2, "label": "rock"} +{"file_name": "train_06349.png", "caption": "This is an acoustic indie rock piece. There is a male vocalist singing gently in the Thai language. An acoustic guitar plays the main tune while a bass guitar is in the background. There is a piano that starts out by supporting the melody, but then wanders towards off-key notes, creating an air of conflict. The atmosphere is melancholic. This piece can be used in the soundtrack of a drama movie/TV show that takes place in Thailand.", "data_idx": 3572, "number": 3, "label": "rock"} +{"file_name": "train_06350.png", "caption": "A e-guitar is playing a melody along with the e-bass. The acoustic drums are playing with a loud 8th note rhythm on the ride cymbal. Another e-guitar is playing a high pitched melody on top. This song may be playing at a festival.", "data_idx": 3573, "number": 0, "label": "rock"} +{"file_name": "train_06351.png", "caption": "A e-guitar is playing a melody along with the e-bass. The acoustic drums are playing with a loud 8th note rhythm on the ride cymbal. Another e-guitar is playing a high pitched melody on top. This song may be playing at a festival.", "data_idx": 3573, "number": 1, "label": "rock"} +{"file_name": "train_06352.png", "caption": "A e-guitar is playing a melody along with the e-bass. The acoustic drums are playing with a loud 8th note rhythm on the ride cymbal. Another e-guitar is playing a high pitched melody on top. This song may be playing at a festival.", "data_idx": 3573, "number": 2, "label": "rock"} +{"file_name": "train_06353.png", "caption": "A e-guitar is playing a melody along with the e-bass. The acoustic drums are playing with a loud 8th note rhythm on the ride cymbal. Another e-guitar is playing a high pitched melody on top. This song may be playing at a festival.", "data_idx": 3573, "number": 3, "label": "rock"} +{"file_name": "train_06354.png", "caption": "This orchestral song features flutes playing the main melody. This is backed by bass played on the cello. The percussion is played on the tambourine. This song is in a compound time signature. Toward the end of the clip, the tambourine sound is played loud in a specific rhythm.", "data_idx": 3575, "number": 0, "label": "hiphop"} +{"file_name": "train_06355.png", "caption": "This orchestral song features flutes playing the main melody. This is backed by bass played on the cello. The percussion is played on the tambourine. This song is in a compound time signature. Toward the end of the clip, the tambourine sound is played loud in a specific rhythm.", "data_idx": 3575, "number": 1, "label": "hiphop"} +{"file_name": "train_06356.png", "caption": "This orchestral song features flutes playing the main melody. This is backed by bass played on the cello. The percussion is played on the tambourine. This song is in a compound time signature. Toward the end of the clip, the tambourine sound is played loud in a specific rhythm.", "data_idx": 3575, "number": 2, "label": "hiphop"} +{"file_name": "train_06357.png", "caption": "This orchestral song features flutes playing the main melody. This is backed by bass played on the cello. The percussion is played on the tambourine. This song is in a compound time signature. Toward the end of the clip, the tambourine sound is played loud in a specific rhythm.", "data_idx": 3575, "number": 3, "label": "hiphop"} +{"file_name": "train_06358.png", "caption": "This is a solo electric guitarist playing some blues. It's a twelve bar blues progression that's intricately finger picked. It has a turnaround.", "data_idx": 3576, "number": 0, "label": "hiphop"} +{"file_name": "train_06359.png", "caption": "This is a solo electric guitarist playing some blues. It's a twelve bar blues progression that's intricately finger picked. It has a turnaround.", "data_idx": 3576, "number": 1, "label": "hiphop"} +{"file_name": "train_06360.png", "caption": "This is a solo electric guitarist playing some blues. It's a twelve bar blues progression that's intricately finger picked. It has a turnaround.", "data_idx": 3576, "number": 2, "label": "hiphop"} +{"file_name": "train_06361.png", "caption": "This is a solo electric guitarist playing some blues. It's a twelve bar blues progression that's intricately finger picked. It has a turnaround.", "data_idx": 3576, "number": 3, "label": "hiphop"} +{"file_name": "train_06362.png", "caption": "This song is in very poor audio-quality and seems to lag. A big pulsating synthesizer pad is creating tension along with some more single holding note, higher register synth pad. A riser effect tells us that this part of the song is about to break into another part that will bring relief from the created tension. A synthesizer pluck is playing a catchy repeating melody. The male voice sings/raps in the higher register a male backing voice is shouting in the background. This song may be played on a dj mix in a club.", "data_idx": 3579, "number": 0, "label": "hiphop"} +{"file_name": "train_06363.png", "caption": "This song is in very poor audio-quality and seems to lag. A big pulsating synthesizer pad is creating tension along with some more single holding note, higher register synth pad. A riser effect tells us that this part of the song is about to break into another part that will bring relief from the created tension. A synthesizer pluck is playing a catchy repeating melody. The male voice sings/raps in the higher register a male backing voice is shouting in the background. This song may be played on a dj mix in a club.", "data_idx": 3579, "number": 1, "label": "hiphop"} +{"file_name": "train_06364.png", "caption": "This song is in very poor audio-quality and seems to lag. A big pulsating synthesizer pad is creating tension along with some more single holding note, higher register synth pad. A riser effect tells us that this part of the song is about to break into another part that will bring relief from the created tension. A synthesizer pluck is playing a catchy repeating melody. The male voice sings/raps in the higher register a male backing voice is shouting in the background. This song may be played on a dj mix in a club.", "data_idx": 3579, "number": 2, "label": "hiphop"} +{"file_name": "train_06365.png", "caption": "This song is in very poor audio-quality and seems to lag. A big pulsating synthesizer pad is creating tension along with some more single holding note, higher register synth pad. A riser effect tells us that this part of the song is about to break into another part that will bring relief from the created tension. A synthesizer pluck is playing a catchy repeating melody. The male voice sings/raps in the higher register a male backing voice is shouting in the background. This song may be played on a dj mix in a club.", "data_idx": 3579, "number": 3, "label": "hiphop"} +{"file_name": "train_06366.png", "caption": "This is a live performance of a movie music piece. The recording has a very poor quality. The saxophone is playing the main tune while the piano can be heard providing a melodic background. The atmosphere is romantic and it is probably a wedding setting.", "data_idx": 3580, "number": 0, "label": "classical"} +{"file_name": "train_06367.png", "caption": "This is a live performance of a movie music piece. The recording has a very poor quality. The saxophone is playing the main tune while the piano can be heard providing a melodic background. The atmosphere is romantic and it is probably a wedding setting.", "data_idx": 3580, "number": 1, "label": "classical"} +{"file_name": "train_06368.png", "caption": "This is a live performance of a movie music piece. The recording has a very poor quality. The saxophone is playing the main tune while the piano can be heard providing a melodic background. The atmosphere is romantic and it is probably a wedding setting.", "data_idx": 3580, "number": 2, "label": "classical"} +{"file_name": "train_06369.png", "caption": "This is a live performance of a movie music piece. The recording has a very poor quality. The saxophone is playing the main tune while the piano can be heard providing a melodic background. The atmosphere is romantic and it is probably a wedding setting.", "data_idx": 3580, "number": 3, "label": "classical"} +{"file_name": "train_06370.png", "caption": "This audio clip is an instrumental. The tempo is low with a subtle violin harmony, keyboard arpeggio and synthesised organ. The music is lilting, grim,incessant, intense, sad, bleak, enigmatic and ambiguous. The music sounds like the background score for a movie.", "data_idx": 3581, "number": 0, "label": "rock"} +{"file_name": "train_06371.png", "caption": "This audio clip is an instrumental. The tempo is low with a subtle violin harmony, keyboard arpeggio and synthesised organ. The music is lilting, grim,incessant, intense, sad, bleak, enigmatic and ambiguous. The music sounds like the background score for a movie.", "data_idx": 3581, "number": 1, "label": "rock"} +{"file_name": "train_06372.png", "caption": "This audio clip is an instrumental. The tempo is low with a subtle violin harmony, keyboard arpeggio and synthesised organ. The music is lilting, grim,incessant, intense, sad, bleak, enigmatic and ambiguous. The music sounds like the background score for a movie.", "data_idx": 3581, "number": 2, "label": "rock"} +{"file_name": "train_06373.png", "caption": "This audio clip is an instrumental. The tempo is low with a subtle violin harmony, keyboard arpeggio and synthesised organ. The music is lilting, grim,incessant, intense, sad, bleak, enigmatic and ambiguous. The music sounds like the background score for a movie.", "data_idx": 3581, "number": 3, "label": "rock"} +{"file_name": "train_06374.png", "caption": "This song contains a string section playing a short stroke melody in the lower range along to a digital acoustic drum playing a rather complex groove. Acoustic guitars are playing a melody. This song may be playing in a heroic movie scene.", "data_idx": 3584, "number": 0, "label": "country"} +{"file_name": "train_06375.png", "caption": "This song contains a string section playing a short stroke melody in the lower range along to a digital acoustic drum playing a rather complex groove. Acoustic guitars are playing a melody. This song may be playing in a heroic movie scene.", "data_idx": 3584, "number": 1, "label": "country"} +{"file_name": "train_06376.png", "caption": "This song contains a string section playing a short stroke melody in the lower range along to a digital acoustic drum playing a rather complex groove. Acoustic guitars are playing a melody. This song may be playing in a heroic movie scene.", "data_idx": 3584, "number": 2, "label": "country"} +{"file_name": "train_06377.png", "caption": "This song contains a string section playing a short stroke melody in the lower range along to a digital acoustic drum playing a rather complex groove. Acoustic guitars are playing a melody. This song may be playing in a heroic movie scene.", "data_idx": 3584, "number": 3, "label": "country"} +{"file_name": "train_06378.png", "caption": "This is a percussion instrumental. The tempo is medium with the sound of a drum roll on the Chinese Big drum or Tanggu . The beat is strong, emphatic and resounding. It has a Royal, Ceremonial or Victorious vibe to it.", "data_idx": 3585, "number": 0, "label": "hiphop"} +{"file_name": "train_06379.png", "caption": "This is a percussion instrumental. The tempo is medium with the sound of a drum roll on the Chinese Big drum or Tanggu . The beat is strong, emphatic and resounding. It has a Royal, Ceremonial or Victorious vibe to it.", "data_idx": 3585, "number": 1, "label": "hiphop"} +{"file_name": "train_06380.png", "caption": "This is a percussion instrumental. The tempo is medium with the sound of a drum roll on the Chinese Big drum or Tanggu . The beat is strong, emphatic and resounding. It has a Royal, Ceremonial or Victorious vibe to it.", "data_idx": 3585, "number": 2, "label": "hiphop"} +{"file_name": "train_06381.png", "caption": "This is a percussion instrumental. The tempo is medium with the sound of a drum roll on the Chinese Big drum or Tanggu . The beat is strong, emphatic and resounding. It has a Royal, Ceremonial or Victorious vibe to it.", "data_idx": 3585, "number": 3, "label": "hiphop"} +{"file_name": "train_06382.png", "caption": "The low quality recording features a shimmering tambourine, wooden percussive elements, followed by arpeggiated harp which serves as a transition to the second part of the loop where plucked string melody appears. It sounds groovy and traditional.", "data_idx": 3586, "number": 0, "label": "hiphop"} +{"file_name": "train_06383.png", "caption": "The low quality recording features a shimmering tambourine, wooden percussive elements, followed by arpeggiated harp which serves as a transition to the second part of the loop where plucked string melody appears. It sounds groovy and traditional.", "data_idx": 3586, "number": 1, "label": "hiphop"} +{"file_name": "train_06384.png", "caption": "The low quality recording features a shimmering tambourine, wooden percussive elements, followed by arpeggiated harp which serves as a transition to the second part of the loop where plucked string melody appears. It sounds groovy and traditional.", "data_idx": 3586, "number": 2, "label": "hiphop"} +{"file_name": "train_06385.png", "caption": "The low quality recording features a shimmering tambourine, wooden percussive elements, followed by arpeggiated harp which serves as a transition to the second part of the loop where plucked string melody appears. It sounds groovy and traditional.", "data_idx": 3586, "number": 3, "label": "hiphop"} +{"file_name": "train_06386.png", "caption": "The Urban Latin song features an echoing male vocal singing repetitive lyrics over wide reverberant percussive elements, synth flute melody, claps, \"4 on the floor\" kick pattern, shimmering shaker, groovy bass and synth keys melody. It is uptempo and it sounds energetic and addictive, like something you would hear in clubs a lot.", "data_idx": 3587, "number": 0, "label": "reggae"} +{"file_name": "train_06387.png", "caption": "The Urban Latin song features an echoing male vocal singing repetitive lyrics over wide reverberant percussive elements, synth flute melody, claps, \"4 on the floor\" kick pattern, shimmering shaker, groovy bass and synth keys melody. It is uptempo and it sounds energetic and addictive, like something you would hear in clubs a lot.", "data_idx": 3587, "number": 1, "label": "reggae"} +{"file_name": "train_06388.png", "caption": "The Urban Latin song features an echoing male vocal singing repetitive lyrics over wide reverberant percussive elements, synth flute melody, claps, \"4 on the floor\" kick pattern, shimmering shaker, groovy bass and synth keys melody. It is uptempo and it sounds energetic and addictive, like something you would hear in clubs a lot.", "data_idx": 3587, "number": 2, "label": "reggae"} +{"file_name": "train_06389.png", "caption": "The Urban Latin song features an echoing male vocal singing repetitive lyrics over wide reverberant percussive elements, synth flute melody, claps, \"4 on the floor\" kick pattern, shimmering shaker, groovy bass and synth keys melody. It is uptempo and it sounds energetic and addictive, like something you would hear in clubs a lot.", "data_idx": 3587, "number": 3, "label": "reggae"} +{"file_name": "train_06390.png", "caption": "Classical music features a variety of string instruments that play a bright melody. The sound is big and orchestral. A clarinet plays a high-pitched melody in the foreground. The atmosphere of the song is positive and happy.", "data_idx": 3588, "number": 0, "label": "classical"} +{"file_name": "train_06391.png", "caption": "Classical music features a variety of string instruments that play a bright melody. The sound is big and orchestral. A clarinet plays a high-pitched melody in the foreground. The atmosphere of the song is positive and happy.", "data_idx": 3588, "number": 1, "label": "classical"} +{"file_name": "train_06392.png", "caption": "Classical music features a variety of string instruments that play a bright melody. The sound is big and orchestral. A clarinet plays a high-pitched melody in the foreground. The atmosphere of the song is positive and happy.", "data_idx": 3588, "number": 2, "label": "classical"} +{"file_name": "train_06393.png", "caption": "Classical music features a variety of string instruments that play a bright melody. The sound is big and orchestral. A clarinet plays a high-pitched melody in the foreground. The atmosphere of the song is positive and happy.", "data_idx": 3588, "number": 3, "label": "classical"} +{"file_name": "train_06394.png", "caption": "A female voice is singing very clear and a high pitched melody. She got a lot of reverb on her voice. A string section is supporting her. This song may be playing in a post-apocalyptic movie-scene.", "data_idx": 3590, "number": 0, "label": "jazz"} +{"file_name": "train_06395.png", "caption": "A female voice is singing very clear and a high pitched melody. She got a lot of reverb on her voice. A string section is supporting her. This song may be playing in a post-apocalyptic movie-scene.", "data_idx": 3590, "number": 1, "label": "jazz"} +{"file_name": "train_06396.png", "caption": "A female voice is singing very clear and a high pitched melody. She got a lot of reverb on her voice. A string section is supporting her. This song may be playing in a post-apocalyptic movie-scene.", "data_idx": 3590, "number": 2, "label": "jazz"} +{"file_name": "train_06397.png", "caption": "A female voice is singing very clear and a high pitched melody. She got a lot of reverb on her voice. A string section is supporting her. This song may be playing in a post-apocalyptic movie-scene.", "data_idx": 3590, "number": 3, "label": "jazz"} diff --git a/data/train/metadata_0013.jsonl b/data/train/metadata_0013.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..61b8fca6c927f20b16f00efebb75f447fd695788 --- /dev/null +++ b/data/train/metadata_0013.jsonl @@ -0,0 +1,428 @@ +{"file_name": "train_06398.png", "caption": "This song contains a full orchestra playing a melody with long and short strings; flutes adding short melodies on top and a cymbal hit to close the phrase. A mixed choir is singing opera then a male solo singer takes over with a higher voice. This song may be playing in a musical or theater opera performance.", "data_idx": 3600, "number": 0, "label": "classical"} +{"file_name": "train_06399.png", "caption": "This song contains a full orchestra playing a melody with long and short strings; flutes adding short melodies on top and a cymbal hit to close the phrase. A mixed choir is singing opera then a male solo singer takes over with a higher voice. This song may be playing in a musical or theater opera performance.", "data_idx": 3600, "number": 1, "label": "classical"} +{"file_name": "train_06400.png", "caption": "This song contains a full orchestra playing a melody with long and short strings; flutes adding short melodies on top and a cymbal hit to close the phrase. A mixed choir is singing opera then a male solo singer takes over with a higher voice. This song may be playing in a musical or theater opera performance.", "data_idx": 3600, "number": 2, "label": "classical"} +{"file_name": "train_06401.png", "caption": "This song contains a full orchestra playing a melody with long and short strings; flutes adding short melodies on top and a cymbal hit to close the phrase. A mixed choir is singing opera then a male solo singer takes over with a higher voice. This song may be playing in a musical or theater opera performance.", "data_idx": 3600, "number": 3, "label": "classical"} +{"file_name": "train_06402.png", "caption": "This music is an Electronic instrumental. The tempo is fast with an electrifying drum rhythm, funky bass lines, synthesiser articulation, cymbals rides, digital drums and electronically arranged sounds. The music is an energetic, high-powered, energetic, enthusiastic, intense, and explosive EDM/Synth Pop.", "data_idx": 3602, "number": 0, "label": "disco"} +{"file_name": "train_06403.png", "caption": "This music is an Electronic instrumental. The tempo is fast with an electrifying drum rhythm, funky bass lines, synthesiser articulation, cymbals rides, digital drums and electronically arranged sounds. The music is an energetic, high-powered, energetic, enthusiastic, intense, and explosive EDM/Synth Pop.", "data_idx": 3602, "number": 1, "label": "disco"} +{"file_name": "train_06404.png", "caption": "This music is an Electronic instrumental. The tempo is fast with an electrifying drum rhythm, funky bass lines, synthesiser articulation, cymbals rides, digital drums and electronically arranged sounds. The music is an energetic, high-powered, energetic, enthusiastic, intense, and explosive EDM/Synth Pop.", "data_idx": 3602, "number": 2, "label": "disco"} +{"file_name": "train_06405.png", "caption": "This music is an Electronic instrumental. The tempo is fast with an electrifying drum rhythm, funky bass lines, synthesiser articulation, cymbals rides, digital drums and electronically arranged sounds. The music is an energetic, high-powered, energetic, enthusiastic, intense, and explosive EDM/Synth Pop.", "data_idx": 3602, "number": 3, "label": "disco"} +{"file_name": "train_06406.png", "caption": "This rock and roll song is a live recording of low quality. This features a male voice singing the main melody. This is accompanied by percussion playing a simple melody in common time. The bass plays a rock and roll bassline. The keyboard plays chords and fills using a piano tone. An acoustic guitar plays chords. A voice from the crowd sings a quirky sound at the beginning of the second bar. This song can be used in a retro movie in a music festival or carnival scene.", "data_idx": 3603, "number": 0, "label": "metal"} +{"file_name": "train_06407.png", "caption": "This rock and roll song is a live recording of low quality. This features a male voice singing the main melody. This is accompanied by percussion playing a simple melody in common time. The bass plays a rock and roll bassline. The keyboard plays chords and fills using a piano tone. An acoustic guitar plays chords. A voice from the crowd sings a quirky sound at the beginning of the second bar. This song can be used in a retro movie in a music festival or carnival scene.", "data_idx": 3603, "number": 1, "label": "metal"} +{"file_name": "train_06408.png", "caption": "This rock and roll song is a live recording of low quality. This features a male voice singing the main melody. This is accompanied by percussion playing a simple melody in common time. The bass plays a rock and roll bassline. The keyboard plays chords and fills using a piano tone. An acoustic guitar plays chords. A voice from the crowd sings a quirky sound at the beginning of the second bar. This song can be used in a retro movie in a music festival or carnival scene.", "data_idx": 3603, "number": 2, "label": "metal"} +{"file_name": "train_06409.png", "caption": "This rock and roll song is a live recording of low quality. This features a male voice singing the main melody. This is accompanied by percussion playing a simple melody in common time. The bass plays a rock and roll bassline. The keyboard plays chords and fills using a piano tone. An acoustic guitar plays chords. A voice from the crowd sings a quirky sound at the beginning of the second bar. This song can be used in a retro movie in a music festival or carnival scene.", "data_idx": 3603, "number": 3, "label": "metal"} +{"file_name": "train_06410.png", "caption": "This is a series of clips - a compilation. The compilation is separated by the telephone beep tone. One of the clips is orchestral strings playing a motif that would be used when something shocking or suspenseful happens. The other clip contains a jazzy saxophone motif. There is also a sultry woman speaking sassily with some upbeat percussion under her vocal.", "data_idx": 3605, "number": 0, "label": "hiphop"} +{"file_name": "train_06411.png", "caption": "This is a series of clips - a compilation. The compilation is separated by the telephone beep tone. One of the clips is orchestral strings playing a motif that would be used when something shocking or suspenseful happens. The other clip contains a jazzy saxophone motif. There is also a sultry woman speaking sassily with some upbeat percussion under her vocal.", "data_idx": 3605, "number": 1, "label": "hiphop"} +{"file_name": "train_06412.png", "caption": "This is a series of clips - a compilation. The compilation is separated by the telephone beep tone. One of the clips is orchestral strings playing a motif that would be used when something shocking or suspenseful happens. The other clip contains a jazzy saxophone motif. There is also a sultry woman speaking sassily with some upbeat percussion under her vocal.", "data_idx": 3605, "number": 2, "label": "hiphop"} +{"file_name": "train_06413.png", "caption": "This is a series of clips - a compilation. The compilation is separated by the telephone beep tone. One of the clips is orchestral strings playing a motif that would be used when something shocking or suspenseful happens. The other clip contains a jazzy saxophone motif. There is also a sultry woman speaking sassily with some upbeat percussion under her vocal.", "data_idx": 3605, "number": 3, "label": "hiphop"} +{"file_name": "train_06414.png", "caption": "This song contains digital drums with a loud kick on every beat and a snare hit on the 2 and 4. A synthbass is playing a simple melody. While sound-effect hits are adding rhythmic diversity along with a fast arpeggio sound that is fading out. This song may be playing at the disco.", "data_idx": 3606, "number": 0, "label": "reggae"} +{"file_name": "train_06415.png", "caption": "This song contains digital drums with a loud kick on every beat and a snare hit on the 2 and 4. A synthbass is playing a simple melody. While sound-effect hits are adding rhythmic diversity along with a fast arpeggio sound that is fading out. This song may be playing at the disco.", "data_idx": 3606, "number": 1, "label": "reggae"} +{"file_name": "train_06416.png", "caption": "This song contains digital drums with a loud kick on every beat and a snare hit on the 2 and 4. A synthbass is playing a simple melody. While sound-effect hits are adding rhythmic diversity along with a fast arpeggio sound that is fading out. This song may be playing at the disco.", "data_idx": 3606, "number": 2, "label": "reggae"} +{"file_name": "train_06417.png", "caption": "This song contains digital drums with a loud kick on every beat and a snare hit on the 2 and 4. A synthbass is playing a simple melody. While sound-effect hits are adding rhythmic diversity along with a fast arpeggio sound that is fading out. This song may be playing at the disco.", "data_idx": 3606, "number": 3, "label": "reggae"} +{"file_name": "train_06418.png", "caption": "This clip is an instrumental. The tempo is fast with high pitched, dissonant sounds that are digitally and electronically arranged. There is no melody or beat to this music.", "data_idx": 3607, "number": 0, "label": "jazz"} +{"file_name": "train_06419.png", "caption": "This clip is an instrumental. The tempo is fast with high pitched, dissonant sounds that are digitally and electronically arranged. There is no melody or beat to this music.", "data_idx": 3607, "number": 1, "label": "jazz"} +{"file_name": "train_06420.png", "caption": "This clip is an instrumental. The tempo is fast with high pitched, dissonant sounds that are digitally and electronically arranged. There is no melody or beat to this music.", "data_idx": 3607, "number": 2, "label": "jazz"} +{"file_name": "train_06421.png", "caption": "This clip is an instrumental. The tempo is fast with high pitched, dissonant sounds that are digitally and electronically arranged. There is no melody or beat to this music.", "data_idx": 3607, "number": 3, "label": "jazz"} +{"file_name": "train_06422.png", "caption": "The low quality recording features a mellow arpeggiated piano melody over which there is a theremin solo melody playing. It sounds sad, emotional and passionate. The recording is noisy.", "data_idx": 3609, "number": 0, "label": "classical"} +{"file_name": "train_06423.png", "caption": "The low quality recording features a mellow arpeggiated piano melody over which there is a theremin solo melody playing. It sounds sad, emotional and passionate. The recording is noisy.", "data_idx": 3609, "number": 1, "label": "classical"} +{"file_name": "train_06424.png", "caption": "The low quality recording features a mellow arpeggiated piano melody over which there is a theremin solo melody playing. It sounds sad, emotional and passionate. The recording is noisy.", "data_idx": 3609, "number": 2, "label": "classical"} +{"file_name": "train_06425.png", "caption": "The low quality recording features a mellow arpeggiated piano melody over which there is a theremin solo melody playing. It sounds sad, emotional and passionate. The recording is noisy.", "data_idx": 3609, "number": 3, "label": "classical"} +{"file_name": "train_06426.png", "caption": "A bell choir is playing a composition. The range of the instruments goes from lower sounding instruments being used as percussive hits to mid and high range bells playing chords and melodies that sound a little bizarre at some points. This song may be playing in a local church as a presentation.", "data_idx": 3611, "number": 0, "label": "classical"} +{"file_name": "train_06427.png", "caption": "A bell choir is playing a composition. The range of the instruments goes from lower sounding instruments being used as percussive hits to mid and high range bells playing chords and melodies that sound a little bizarre at some points. This song may be playing in a local church as a presentation.", "data_idx": 3611, "number": 1, "label": "classical"} +{"file_name": "train_06428.png", "caption": "A bell choir is playing a composition. The range of the instruments goes from lower sounding instruments being used as percussive hits to mid and high range bells playing chords and melodies that sound a little bizarre at some points. This song may be playing in a local church as a presentation.", "data_idx": 3611, "number": 2, "label": "classical"} +{"file_name": "train_06429.png", "caption": "A bell choir is playing a composition. The range of the instruments goes from lower sounding instruments being used as percussive hits to mid and high range bells playing chords and melodies that sound a little bizarre at some points. This song may be playing in a local church as a presentation.", "data_idx": 3611, "number": 3, "label": "classical"} +{"file_name": "train_06430.png", "caption": "A feminist plays this intriguing instrumental. The tempo is fast with keyboard accompaniment, steady drumming, rhythmic acoustic guitar, lively piano harmony , steady bass lines and shakers. The music is sharp, height pitched and almost like a female soprano vocalising. The song is energetic, spirited, melodic, animated, unique, skilful, engaging, ethereal and captivating;", "data_idx": 3612, "number": 0, "label": "rock"} +{"file_name": "train_06431.png", "caption": "A feminist plays this intriguing instrumental. The tempo is fast with keyboard accompaniment, steady drumming, rhythmic acoustic guitar, lively piano harmony , steady bass lines and shakers. The music is sharp, height pitched and almost like a female soprano vocalising. The song is energetic, spirited, melodic, animated, unique, skilful, engaging, ethereal and captivating;", "data_idx": 3612, "number": 1, "label": "rock"} +{"file_name": "train_06432.png", "caption": "A feminist plays this intriguing instrumental. The tempo is fast with keyboard accompaniment, steady drumming, rhythmic acoustic guitar, lively piano harmony , steady bass lines and shakers. The music is sharp, height pitched and almost like a female soprano vocalising. The song is energetic, spirited, melodic, animated, unique, skilful, engaging, ethereal and captivating;", "data_idx": 3612, "number": 2, "label": "rock"} +{"file_name": "train_06433.png", "caption": "A feminist plays this intriguing instrumental. The tempo is fast with keyboard accompaniment, steady drumming, rhythmic acoustic guitar, lively piano harmony , steady bass lines and shakers. The music is sharp, height pitched and almost like a female soprano vocalising. The song is energetic, spirited, melodic, animated, unique, skilful, engaging, ethereal and captivating;", "data_idx": 3612, "number": 3, "label": "rock"} +{"file_name": "train_06434.png", "caption": "A male vocalist sings this melodic, age old Christmas carol in French in Baritone. The tempo is slow with a violin symphony, the piano accompaniment, keyboard harmony; rhythmic acoustic guitar and steady drumming . The song is mellow, sentimental, emotional, nostalgic, pleasant ,dulcet and mellifluous .", "data_idx": 3613, "number": 0, "label": "country"} +{"file_name": "train_06435.png", "caption": "A male vocalist sings this melodic, age old Christmas carol in French in Baritone. The tempo is slow with a violin symphony, the piano accompaniment, keyboard harmony; rhythmic acoustic guitar and steady drumming . The song is mellow, sentimental, emotional, nostalgic, pleasant ,dulcet and mellifluous .", "data_idx": 3613, "number": 1, "label": "country"} +{"file_name": "train_06436.png", "caption": "A male vocalist sings this melodic, age old Christmas carol in French in Baritone. The tempo is slow with a violin symphony, the piano accompaniment, keyboard harmony; rhythmic acoustic guitar and steady drumming . The song is mellow, sentimental, emotional, nostalgic, pleasant ,dulcet and mellifluous .", "data_idx": 3613, "number": 2, "label": "country"} +{"file_name": "train_06437.png", "caption": "A male vocalist sings this melodic, age old Christmas carol in French in Baritone. The tempo is slow with a violin symphony, the piano accompaniment, keyboard harmony; rhythmic acoustic guitar and steady drumming . The song is mellow, sentimental, emotional, nostalgic, pleasant ,dulcet and mellifluous .", "data_idx": 3613, "number": 3, "label": "country"} +{"file_name": "train_06438.png", "caption": "The low quality recording features an acoustic guitar tuning. It sounds repetitive, almost like a robot is playing it.", "data_idx": 3615, "number": 0, "label": "classical"} +{"file_name": "train_06439.png", "caption": "The low quality recording features an acoustic guitar tuning. It sounds repetitive, almost like a robot is playing it.", "data_idx": 3615, "number": 1, "label": "classical"} +{"file_name": "train_06440.png", "caption": "The low quality recording features an acoustic guitar tuning. It sounds repetitive, almost like a robot is playing it.", "data_idx": 3615, "number": 2, "label": "classical"} +{"file_name": "train_06441.png", "caption": "The low quality recording features an acoustic guitar tuning. It sounds repetitive, almost like a robot is playing it.", "data_idx": 3615, "number": 3, "label": "classical"} +{"file_name": "train_06442.png", "caption": "The Country song features a passionate male vocalist singing over accordion melody, groovy bass, layered \"4 on the floor\" kick and cowbell pattern, soft crash cymbal, shimmering shakers and acoustic rhythm guitar. It sounds fun and happy, even though the song is poorly mixed, as it sounds a bit boomy.", "data_idx": 3617, "number": 0, "label": "blues"} +{"file_name": "train_06443.png", "caption": "The Country song features a passionate male vocalist singing over accordion melody, groovy bass, layered \"4 on the floor\" kick and cowbell pattern, soft crash cymbal, shimmering shakers and acoustic rhythm guitar. It sounds fun and happy, even though the song is poorly mixed, as it sounds a bit boomy.", "data_idx": 3617, "number": 1, "label": "blues"} +{"file_name": "train_06444.png", "caption": "The Country song features a passionate male vocalist singing over accordion melody, groovy bass, layered \"4 on the floor\" kick and cowbell pattern, soft crash cymbal, shimmering shakers and acoustic rhythm guitar. It sounds fun and happy, even though the song is poorly mixed, as it sounds a bit boomy.", "data_idx": 3617, "number": 2, "label": "blues"} +{"file_name": "train_06445.png", "caption": "The Country song features a passionate male vocalist singing over accordion melody, groovy bass, layered \"4 on the floor\" kick and cowbell pattern, soft crash cymbal, shimmering shakers and acoustic rhythm guitar. It sounds fun and happy, even though the song is poorly mixed, as it sounds a bit boomy.", "data_idx": 3617, "number": 3, "label": "blues"} +{"file_name": "train_06446.png", "caption": "The low quality recording features a trap song playing in the background that contains stuttering snares, scratching effects and male vocals that occasionally change the pitch, while there are male exciting screams, hyping it out. The recording is very noisy, mostly from the wind and it sounds like it was recorded with a phone.", "data_idx": 3618, "number": 0, "label": "hiphop"} +{"file_name": "train_06447.png", "caption": "The low quality recording features a trap song playing in the background that contains stuttering snares, scratching effects and male vocals that occasionally change the pitch, while there are male exciting screams, hyping it out. The recording is very noisy, mostly from the wind and it sounds like it was recorded with a phone.", "data_idx": 3618, "number": 1, "label": "hiphop"} +{"file_name": "train_06448.png", "caption": "This music is an animated instrumental. The tempo is very fast with a violin playing a very vigorous and upbeat amplified violin harmony with synthesiser arrangements and punchy digital drumming.The music is pulsating, energetic, enthusiastic, throbbing, youthful,powerful, compelling, engaging and untiring. The audio quality is inferior and there are sounds of hustling,people clapping along, chatting and cheering Indicating that this is a live performance.", "data_idx": 3619, "number": 0, "label": "rock"} +{"file_name": "train_06449.png", "caption": "This music is an animated instrumental. The tempo is very fast with a violin playing a very vigorous and upbeat amplified violin harmony with synthesiser arrangements and punchy digital drumming.The music is pulsating, energetic, enthusiastic, throbbing, youthful,powerful, compelling, engaging and untiring. The audio quality is inferior and there are sounds of hustling,people clapping along, chatting and cheering Indicating that this is a live performance.", "data_idx": 3619, "number": 1, "label": "rock"} +{"file_name": "train_06450.png", "caption": "This music is an animated instrumental. The tempo is very fast with a violin playing a very vigorous and upbeat amplified violin harmony with synthesiser arrangements and punchy digital drumming.The music is pulsating, energetic, enthusiastic, throbbing, youthful,powerful, compelling, engaging and untiring. The audio quality is inferior and there are sounds of hustling,people clapping along, chatting and cheering Indicating that this is a live performance.", "data_idx": 3619, "number": 2, "label": "rock"} +{"file_name": "train_06451.png", "caption": "This music is an animated instrumental. The tempo is very fast with a violin playing a very vigorous and upbeat amplified violin harmony with synthesiser arrangements and punchy digital drumming.The music is pulsating, energetic, enthusiastic, throbbing, youthful,powerful, compelling, engaging and untiring. The audio quality is inferior and there are sounds of hustling,people clapping along, chatting and cheering Indicating that this is a live performance.", "data_idx": 3619, "number": 3, "label": "rock"} +{"file_name": "train_06452.png", "caption": "These two rap songs contain acoustic drums/digital drums playing a simple beat and a beat with a 16th hihat. Strings and bells are playing the main melody. On top of that the male voice of each song is rapping over the instrumental. These songs may be played while riding in your car or while playing sports.", "data_idx": 3620, "number": 0, "label": "hiphop"} +{"file_name": "train_06453.png", "caption": "These two rap songs contain acoustic drums/digital drums playing a simple beat and a beat with a 16th hihat. Strings and bells are playing the main melody. On top of that the male voice of each song is rapping over the instrumental. These songs may be played while riding in your car or while playing sports.", "data_idx": 3620, "number": 1, "label": "hiphop"} +{"file_name": "train_06454.png", "caption": "These two rap songs contain acoustic drums/digital drums playing a simple beat and a beat with a 16th hihat. Strings and bells are playing the main melody. On top of that the male voice of each song is rapping over the instrumental. These songs may be played while riding in your car or while playing sports.", "data_idx": 3620, "number": 2, "label": "hiphop"} +{"file_name": "train_06455.png", "caption": "These two rap songs contain acoustic drums/digital drums playing a simple beat and a beat with a 16th hihat. Strings and bells are playing the main melody. On top of that the male voice of each song is rapping over the instrumental. These songs may be played while riding in your car or while playing sports.", "data_idx": 3620, "number": 3, "label": "hiphop"} +{"file_name": "train_06456.png", "caption": "The low quality recording features groovy drums played on vinyl, judging by the wide vinyl crackles and scratching effect. There is also a buzzy static noise, right after the female laugh that can be heard in the background. Sounds like it is recorded with a phone.", "data_idx": 3625, "number": 0, "label": "hiphop"} +{"file_name": "train_06457.png", "caption": "The low quality recording features groovy drums played on vinyl, judging by the wide vinyl crackles and scratching effect. There is also a buzzy static noise, right after the female laugh that can be heard in the background. Sounds like it is recorded with a phone.", "data_idx": 3625, "number": 1, "label": "hiphop"} +{"file_name": "train_06458.png", "caption": "A male singer sings this screaming metal vocal. The song is medium tempo with strong metal drumming, guitar rhythm, groovy bass line and mic feedback tone.The song is energetic and an adrenaline rush. The song has poor audio quality.", "data_idx": 3626, "number": 0, "label": "metal"} +{"file_name": "train_06459.png", "caption": "A male singer sings this screaming metal vocal. The song is medium tempo with strong metal drumming, guitar rhythm, groovy bass line and mic feedback tone.The song is energetic and an adrenaline rush. The song has poor audio quality.", "data_idx": 3626, "number": 1, "label": "metal"} +{"file_name": "train_06460.png", "caption": "A male singer sings this screaming metal vocal. The song is medium tempo with strong metal drumming, guitar rhythm, groovy bass line and mic feedback tone.The song is energetic and an adrenaline rush. The song has poor audio quality.", "data_idx": 3626, "number": 2, "label": "metal"} +{"file_name": "train_06461.png", "caption": "A male singer sings this screaming metal vocal. The song is medium tempo with strong metal drumming, guitar rhythm, groovy bass line and mic feedback tone.The song is energetic and an adrenaline rush. The song has poor audio quality.", "data_idx": 3626, "number": 3, "label": "metal"} +{"file_name": "train_06462.png", "caption": "The song is an instrumental with male vocalist chanting. The song is medium tempo with a didgeridoo playing percussively along with a guitar accompaniment. The song is meditative and has both aboriginal and Indian music influences . The audio quality is bad and it is a live audience performance.", "data_idx": 3628, "number": 0, "label": "classical"} +{"file_name": "train_06463.png", "caption": "The song is an instrumental with male vocalist chanting. The song is medium tempo with a didgeridoo playing percussively along with a guitar accompaniment. The song is meditative and has both aboriginal and Indian music influences . The audio quality is bad and it is a live audience performance.", "data_idx": 3628, "number": 1, "label": "classical"} +{"file_name": "train_06464.png", "caption": "The song is an instrumental with male vocalist chanting. The song is medium tempo with a didgeridoo playing percussively along with a guitar accompaniment. The song is meditative and has both aboriginal and Indian music influences . The audio quality is bad and it is a live audience performance.", "data_idx": 3628, "number": 2, "label": "classical"} +{"file_name": "train_06465.png", "caption": "The song is an instrumental with male vocalist chanting. The song is medium tempo with a didgeridoo playing percussively along with a guitar accompaniment. The song is meditative and has both aboriginal and Indian music influences . The audio quality is bad and it is a live audience performance.", "data_idx": 3628, "number": 3, "label": "classical"} +{"file_name": "train_06466.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically at the forefront with muffled repetitions of the same voice in the back. The simple and repeated theme is being played by a piano while the rhythmic background consists of an electronic drum beat with loud kick beats. There is a melancholic aura to this piece and a sense of resentment. This piece could be used in the soundtrack of a drama movie.", "data_idx": 3629, "number": 0, "label": "pop"} +{"file_name": "train_06467.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically at the forefront with muffled repetitions of the same voice in the back. The simple and repeated theme is being played by a piano while the rhythmic background consists of an electronic drum beat with loud kick beats. There is a melancholic aura to this piece and a sense of resentment. This piece could be used in the soundtrack of a drama movie.", "data_idx": 3629, "number": 1, "label": "pop"} +{"file_name": "train_06468.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically at the forefront with muffled repetitions of the same voice in the back. The simple and repeated theme is being played by a piano while the rhythmic background consists of an electronic drum beat with loud kick beats. There is a melancholic aura to this piece and a sense of resentment. This piece could be used in the soundtrack of a drama movie.", "data_idx": 3629, "number": 2, "label": "pop"} +{"file_name": "train_06469.png", "caption": "This is a pop music piece. There is a female vocalist singing melodically at the forefront with muffled repetitions of the same voice in the back. The simple and repeated theme is being played by a piano while the rhythmic background consists of an electronic drum beat with loud kick beats. There is a melancholic aura to this piece and a sense of resentment. This piece could be used in the soundtrack of a drama movie.", "data_idx": 3629, "number": 3, "label": "pop"} +{"file_name": "train_06470.png", "caption": "This composition is playing a xylophone playing a repeating melody progression that serves as a foundation playing lower notes while playing a higher pitched melody. The whole song is full of reverb. This song may be playing in a dreamy and quiet movie scene or while falling asleep.", "data_idx": 3631, "number": 0, "label": "jazz"} +{"file_name": "train_06471.png", "caption": "This composition is playing a xylophone playing a repeating melody progression that serves as a foundation playing lower notes while playing a higher pitched melody. The whole song is full of reverb. This song may be playing in a dreamy and quiet movie scene or while falling asleep.", "data_idx": 3631, "number": 1, "label": "jazz"} +{"file_name": "train_06472.png", "caption": "This composition is playing a xylophone playing a repeating melody progression that serves as a foundation playing lower notes while playing a higher pitched melody. The whole song is full of reverb. This song may be playing in a dreamy and quiet movie scene or while falling asleep.", "data_idx": 3631, "number": 2, "label": "jazz"} +{"file_name": "train_06473.png", "caption": "This composition is playing a xylophone playing a repeating melody progression that serves as a foundation playing lower notes while playing a higher pitched melody. The whole song is full of reverb. This song may be playing in a dreamy and quiet movie scene or while falling asleep.", "data_idx": 3631, "number": 3, "label": "jazz"} +{"file_name": "train_06474.png", "caption": "This music is an electric guitar instrumental. The tempo is slow with an amplified guitar solo riff. The audio quality is inferior so the sound is muffled, boomy and garbled. There is disturbance in the background with the sound of static and a man talking incessantly in the background.", "data_idx": 3632, "number": 0, "label": "classical"} +{"file_name": "train_06475.png", "caption": "This music is an electric guitar instrumental. The tempo is slow with an amplified guitar solo riff. The audio quality is inferior so the sound is muffled, boomy and garbled. There is disturbance in the background with the sound of static and a man talking incessantly in the background.", "data_idx": 3632, "number": 1, "label": "classical"} +{"file_name": "train_06476.png", "caption": "This song consists of three main elements - there is an angelic female humming vocal, a bass guitar which intricately follows the melody of the humming, and an atmospheric synth pad. The song generally has a soothing and relaxing vibe that feels almost transcendental.", "data_idx": 3635, "number": 0, "label": "blues"} +{"file_name": "train_06477.png", "caption": "This song consists of three main elements - there is an angelic female humming vocal, a bass guitar which intricately follows the melody of the humming, and an atmospheric synth pad. The song generally has a soothing and relaxing vibe that feels almost transcendental.", "data_idx": 3635, "number": 1, "label": "blues"} +{"file_name": "train_06478.png", "caption": "This song consists of three main elements - there is an angelic female humming vocal, a bass guitar which intricately follows the melody of the humming, and an atmospheric synth pad. The song generally has a soothing and relaxing vibe that feels almost transcendental.", "data_idx": 3635, "number": 2, "label": "blues"} +{"file_name": "train_06479.png", "caption": "This song consists of three main elements - there is an angelic female humming vocal, a bass guitar which intricately follows the melody of the humming, and an atmospheric synth pad. The song generally has a soothing and relaxing vibe that feels almost transcendental.", "data_idx": 3635, "number": 3, "label": "blues"} +{"file_name": "train_06480.png", "caption": "The low quality recording features a compilation of mumbling male vocal, screaming male sound effect, glass shattering sound effects alongside metallic hits, male grunts and reverberant impact. The recording ends with the applause. In-between every single sound there is a loud static sound - which makes it sound like the channels are changing on a TV. It sounds chaotic and manic.", "data_idx": 3636, "number": 0, "label": "hiphop"} +{"file_name": "train_06481.png", "caption": "The low quality recording features a compilation of mumbling male vocal, screaming male sound effect, glass shattering sound effects alongside metallic hits, male grunts and reverberant impact. The recording ends with the applause. In-between every single sound there is a loud static sound - which makes it sound like the channels are changing on a TV. It sounds chaotic and manic.", "data_idx": 3636, "number": 1, "label": "hiphop"} +{"file_name": "train_06482.png", "caption": "The low quality recording features a compilation of mumbling male vocal, screaming male sound effect, glass shattering sound effects alongside metallic hits, male grunts and reverberant impact. The recording ends with the applause. In-between every single sound there is a loud static sound - which makes it sound like the channels are changing on a TV. It sounds chaotic and manic.", "data_idx": 3636, "number": 2, "label": "hiphop"} +{"file_name": "train_06483.png", "caption": "The low quality recording features a compilation of mumbling male vocal, screaming male sound effect, glass shattering sound effects alongside metallic hits, male grunts and reverberant impact. The recording ends with the applause. In-between every single sound there is a loud static sound - which makes it sound like the channels are changing on a TV. It sounds chaotic and manic.", "data_idx": 3636, "number": 3, "label": "hiphop"} +{"file_name": "train_06484.png", "caption": "The low quality recording features a chiptune remix of a pop song and it consists of high pitched female vocal singing over, groovy piano melody, smooth synth bass, claps, shimmering hi hats and punchy kick. At the very end of the loop, there is a snare roll. It sounds energetic, fun, happy and groovy.", "data_idx": 3637, "number": 0, "label": "reggae"} +{"file_name": "train_06485.png", "caption": "The low quality recording features a chiptune remix of a pop song and it consists of high pitched female vocal singing over, groovy piano melody, smooth synth bass, claps, shimmering hi hats and punchy kick. At the very end of the loop, there is a snare roll. It sounds energetic, fun, happy and groovy.", "data_idx": 3637, "number": 1, "label": "reggae"} +{"file_name": "train_06486.png", "caption": "The low quality recording features a chiptune remix of a pop song and it consists of high pitched female vocal singing over, groovy piano melody, smooth synth bass, claps, shimmering hi hats and punchy kick. At the very end of the loop, there is a snare roll. It sounds energetic, fun, happy and groovy.", "data_idx": 3637, "number": 2, "label": "reggae"} +{"file_name": "train_06487.png", "caption": "The low quality recording features a chiptune remix of a pop song and it consists of high pitched female vocal singing over, groovy piano melody, smooth synth bass, claps, shimmering hi hats and punchy kick. At the very end of the loop, there is a snare roll. It sounds energetic, fun, happy and groovy.", "data_idx": 3637, "number": 3, "label": "reggae"} +{"file_name": "train_06488.png", "caption": "This rap song features a male voice rapping the words. This is accompanied by programmed percussion playing a rap beat. The sound of a cash register is played in the background. The voice has a defiant feel. A harmonic sound is played in the background which sounds like octaves being played on an overdriven guitar. This song can be used at the entrance of a WWE star.", "data_idx": 3639, "number": 0, "label": "hiphop"} +{"file_name": "train_06489.png", "caption": "This rap song features a male voice rapping the words. This is accompanied by programmed percussion playing a rap beat. The sound of a cash register is played in the background. The voice has a defiant feel. A harmonic sound is played in the background which sounds like octaves being played on an overdriven guitar. This song can be used at the entrance of a WWE star.", "data_idx": 3639, "number": 1, "label": "hiphop"} +{"file_name": "train_06490.png", "caption": "This rap song features a male voice rapping the words. This is accompanied by programmed percussion playing a rap beat. The sound of a cash register is played in the background. The voice has a defiant feel. A harmonic sound is played in the background which sounds like octaves being played on an overdriven guitar. This song can be used at the entrance of a WWE star.", "data_idx": 3639, "number": 2, "label": "hiphop"} +{"file_name": "train_06491.png", "caption": "This rap song features a male voice rapping the words. This is accompanied by programmed percussion playing a rap beat. The sound of a cash register is played in the background. The voice has a defiant feel. A harmonic sound is played in the background which sounds like octaves being played on an overdriven guitar. This song can be used at the entrance of a WWE star.", "data_idx": 3639, "number": 3, "label": "hiphop"} +{"file_name": "train_06492.png", "caption": "The low quality recording features an electric guitar melody playing with reverb pedal effect on. The player turns the pedal off in the second half of the loop, as it is probably a comparison tutorial. It is noisy, mono and buzzy.", "data_idx": 3642, "number": 0, "label": "blues"} +{"file_name": "train_06493.png", "caption": "The low quality recording features an electric guitar melody playing with reverb pedal effect on. The player turns the pedal off in the second half of the loop, as it is probably a comparison tutorial. It is noisy, mono and buzzy.", "data_idx": 3642, "number": 1, "label": "blues"} +{"file_name": "train_06494.png", "caption": "The low quality recording features an electric guitar melody playing with reverb pedal effect on. The player turns the pedal off in the second half of the loop, as it is probably a comparison tutorial. It is noisy, mono and buzzy.", "data_idx": 3642, "number": 2, "label": "blues"} +{"file_name": "train_06495.png", "caption": "The low quality recording features an electric guitar melody playing with reverb pedal effect on. The player turns the pedal off in the second half of the loop, as it is probably a comparison tutorial. It is noisy, mono and buzzy.", "data_idx": 3642, "number": 3, "label": "blues"} +{"file_name": "train_06496.png", "caption": "The low quality recording features a cover of a R&B song that contains passionate female vocals, alongside background harmonizing female vocals, singing over punchy kick, claps, groovy bass, smooth keys and short strings chords. It sounds romantic, emotional and groovy.", "data_idx": 3645, "number": 0, "label": "pop"} +{"file_name": "train_06497.png", "caption": "The low quality recording features a cover of a R&B song that contains passionate female vocals, alongside background harmonizing female vocals, singing over punchy kick, claps, groovy bass, smooth keys and short strings chords. It sounds romantic, emotional and groovy.", "data_idx": 3645, "number": 1, "label": "pop"} +{"file_name": "train_06498.png", "caption": "The low quality recording features a cover of a R&B song that contains passionate female vocals, alongside background harmonizing female vocals, singing over punchy kick, claps, groovy bass, smooth keys and short strings chords. It sounds romantic, emotional and groovy.", "data_idx": 3645, "number": 2, "label": "pop"} +{"file_name": "train_06499.png", "caption": "The low quality recording features a cover of a R&B song that contains passionate female vocals, alongside background harmonizing female vocals, singing over punchy kick, claps, groovy bass, smooth keys and short strings chords. It sounds romantic, emotional and groovy.", "data_idx": 3645, "number": 3, "label": "pop"} +{"file_name": "train_06500.png", "caption": "This is an instrumental progressive rock piece. The only instrument being played in the piece is a clean sounding electric guitar. There is a gently played guitar solo that gives a mellow aura. The atmosphere is dreamy. This piece could be used in the soundtrack of a movie or a TV show at a dream/flashback sequence. It could be playing in the background at a rock bar.", "data_idx": 3646, "number": 0, "label": "blues"} +{"file_name": "train_06501.png", "caption": "This is an instrumental progressive rock piece. The only instrument being played in the piece is a clean sounding electric guitar. There is a gently played guitar solo that gives a mellow aura. The atmosphere is dreamy. This piece could be used in the soundtrack of a movie or a TV show at a dream/flashback sequence. It could be playing in the background at a rock bar.", "data_idx": 3646, "number": 1, "label": "blues"} +{"file_name": "train_06502.png", "caption": "This is an instrumental progressive rock piece. The only instrument being played in the piece is a clean sounding electric guitar. There is a gently played guitar solo that gives a mellow aura. The atmosphere is dreamy. This piece could be used in the soundtrack of a movie or a TV show at a dream/flashback sequence. It could be playing in the background at a rock bar.", "data_idx": 3646, "number": 2, "label": "blues"} +{"file_name": "train_06503.png", "caption": "This is an instrumental progressive rock piece. The only instrument being played in the piece is a clean sounding electric guitar. There is a gently played guitar solo that gives a mellow aura. The atmosphere is dreamy. This piece could be used in the soundtrack of a movie or a TV show at a dream/flashback sequence. It could be playing in the background at a rock bar.", "data_idx": 3646, "number": 3, "label": "blues"} +{"file_name": "train_06504.png", "caption": "This song is an instrumental. The tempo of the background music is slow , with electric guitar harmony and rhythmic drum with loud chaotic, dissonant sounds. The music is out of sync as the unidentifiable sounds are accelerated.", "data_idx": 3647, "number": 0, "label": "hiphop"} +{"file_name": "train_06505.png", "caption": "This song is an instrumental. The tempo of the background music is slow , with electric guitar harmony and rhythmic drum with loud chaotic, dissonant sounds. The music is out of sync as the unidentifiable sounds are accelerated.", "data_idx": 3647, "number": 1, "label": "hiphop"} +{"file_name": "train_06506.png", "caption": "This song is an instrumental. The tempo of the background music is slow , with electric guitar harmony and rhythmic drum with loud chaotic, dissonant sounds. The music is out of sync as the unidentifiable sounds are accelerated.", "data_idx": 3647, "number": 2, "label": "hiphop"} +{"file_name": "train_06507.png", "caption": "This song is an instrumental. The tempo of the background music is slow , with electric guitar harmony and rhythmic drum with loud chaotic, dissonant sounds. The music is out of sync as the unidentifiable sounds are accelerated.", "data_idx": 3647, "number": 3, "label": "hiphop"} +{"file_name": "train_06508.png", "caption": "A male vocalist sings the Lord\u2019s Prayer. The tempo is medium with Keyboard harmony, steady drumming, groovy basslines, rhythmic guitar,beat of shakers, vocal backup and a trumpet flourish. The music is simple, rhythmic, pleasant, catchy, soulful and punchy Reggae. There are sounds of people clapping and cheering in the background indicating that this is a live performance.", "data_idx": 3649, "number": 0, "label": "reggae"} +{"file_name": "train_06509.png", "caption": "A male vocalist sings the Lord\u2019s Prayer. The tempo is medium with Keyboard harmony, steady drumming, groovy basslines, rhythmic guitar,beat of shakers, vocal backup and a trumpet flourish. The music is simple, rhythmic, pleasant, catchy, soulful and punchy Reggae. There are sounds of people clapping and cheering in the background indicating that this is a live performance.", "data_idx": 3649, "number": 1, "label": "reggae"} +{"file_name": "train_06510.png", "caption": "A male vocalist sings the Lord\u2019s Prayer. The tempo is medium with Keyboard harmony, steady drumming, groovy basslines, rhythmic guitar,beat of shakers, vocal backup and a trumpet flourish. The music is simple, rhythmic, pleasant, catchy, soulful and punchy Reggae. There are sounds of people clapping and cheering in the background indicating that this is a live performance.", "data_idx": 3649, "number": 2, "label": "reggae"} +{"file_name": "train_06511.png", "caption": "A male vocalist sings the Lord\u2019s Prayer. The tempo is medium with Keyboard harmony, steady drumming, groovy basslines, rhythmic guitar,beat of shakers, vocal backup and a trumpet flourish. The music is simple, rhythmic, pleasant, catchy, soulful and punchy Reggae. There are sounds of people clapping and cheering in the background indicating that this is a live performance.", "data_idx": 3649, "number": 3, "label": "reggae"} +{"file_name": "train_06512.png", "caption": "This is a Mexican folk music piece. The main theme is played by a marimba. There is a bass guitar in the background. The acoustic drums and the latin percussion provide the rhythmic background for the piece. It has a very playful atmosphere. The music could definitely be used in a children's movie/TV show or an advertisement targeted at kids.", "data_idx": 3650, "number": 0, "label": "disco"} +{"file_name": "train_06513.png", "caption": "This is a Mexican folk music piece. The main theme is played by a marimba. There is a bass guitar in the background. The acoustic drums and the latin percussion provide the rhythmic background for the piece. It has a very playful atmosphere. The music could definitely be used in a children's movie/TV show or an advertisement targeted at kids.", "data_idx": 3650, "number": 1, "label": "disco"} +{"file_name": "train_06514.png", "caption": "This is a Mexican folk music piece. The main theme is played by a marimba. There is a bass guitar in the background. The acoustic drums and the latin percussion provide the rhythmic background for the piece. It has a very playful atmosphere. The music could definitely be used in a children's movie/TV show or an advertisement targeted at kids.", "data_idx": 3650, "number": 2, "label": "disco"} +{"file_name": "train_06515.png", "caption": "This is a Mexican folk music piece. The main theme is played by a marimba. There is a bass guitar in the background. The acoustic drums and the latin percussion provide the rhythmic background for the piece. It has a very playful atmosphere. The music could definitely be used in a children's movie/TV show or an advertisement targeted at kids.", "data_idx": 3650, "number": 3, "label": "disco"} +{"file_name": "train_06516.png", "caption": "This dance pop song features a male voice singing the main melody in a foreign language. This is accompanied by percussion playing a dance beat. The percussion is programmed. The bass plays the root notes of the chords. Synth sounds are played in the background. Bowed lute play fills in between lines to give this song a middle-eastern feel. This song can be played in a club. The mood of this song is flirty.", "data_idx": 3651, "number": 0, "label": "reggae"} +{"file_name": "train_06517.png", "caption": "This dance pop song features a male voice singing the main melody in a foreign language. This is accompanied by percussion playing a dance beat. The percussion is programmed. The bass plays the root notes of the chords. Synth sounds are played in the background. Bowed lute play fills in between lines to give this song a middle-eastern feel. This song can be played in a club. The mood of this song is flirty.", "data_idx": 3651, "number": 1, "label": "reggae"} +{"file_name": "train_06518.png", "caption": "This dance pop song features a male voice singing the main melody in a foreign language. This is accompanied by percussion playing a dance beat. The percussion is programmed. The bass plays the root notes of the chords. Synth sounds are played in the background. Bowed lute play fills in between lines to give this song a middle-eastern feel. This song can be played in a club. The mood of this song is flirty.", "data_idx": 3651, "number": 2, "label": "reggae"} +{"file_name": "train_06519.png", "caption": "This dance pop song features a male voice singing the main melody in a foreign language. This is accompanied by percussion playing a dance beat. The percussion is programmed. The bass plays the root notes of the chords. Synth sounds are played in the background. Bowed lute play fills in between lines to give this song a middle-eastern feel. This song can be played in a club. The mood of this song is flirty.", "data_idx": 3651, "number": 3, "label": "reggae"} +{"file_name": "train_06520.png", "caption": "This is an amateur recording of a percussive jam over a backing track that has the acoustic guitar and hollering male vocals singing in the Spanish language, iconic features of latin folk music. Two pairs of maracas are being played to create the rhythm.", "data_idx": 3652, "number": 0, "label": "rock"} +{"file_name": "train_06521.png", "caption": "This is an amateur recording of a percussive jam over a backing track that has the acoustic guitar and hollering male vocals singing in the Spanish language, iconic features of latin folk music. Two pairs of maracas are being played to create the rhythm.", "data_idx": 3652, "number": 1, "label": "rock"} +{"file_name": "train_06522.png", "caption": "This is an amateur recording of a percussive jam over a backing track that has the acoustic guitar and hollering male vocals singing in the Spanish language, iconic features of latin folk music. Two pairs of maracas are being played to create the rhythm.", "data_idx": 3652, "number": 2, "label": "rock"} +{"file_name": "train_06523.png", "caption": "This is an amateur recording of a percussive jam over a backing track that has the acoustic guitar and hollering male vocals singing in the Spanish language, iconic features of latin folk music. Two pairs of maracas are being played to create the rhythm.", "data_idx": 3652, "number": 3, "label": "rock"} +{"file_name": "train_06524.png", "caption": "This is a music production tutorial video. There is a male voice teaching a sound design technique. There is an electronic snare drum beat speeding up with a shifting pitch. A simple synth tune is playing in the background. The sounds used in the video are very common, so it would not be worth the hassle to sample these sounds. Instead, parts of the track could be used in advertisement jingles.", "data_idx": 3653, "number": 0, "label": "reggae"} +{"file_name": "train_06525.png", "caption": "This is a music production tutorial video. There is a male voice teaching a sound design technique. There is an electronic snare drum beat speeding up with a shifting pitch. A simple synth tune is playing in the background. The sounds used in the video are very common, so it would not be worth the hassle to sample these sounds. Instead, parts of the track could be used in advertisement jingles.", "data_idx": 3653, "number": 1, "label": "reggae"} +{"file_name": "train_06526.png", "caption": "This is a music production tutorial video. There is a male voice teaching a sound design technique. There is an electronic snare drum beat speeding up with a shifting pitch. A simple synth tune is playing in the background. The sounds used in the video are very common, so it would not be worth the hassle to sample these sounds. Instead, parts of the track could be used in advertisement jingles.", "data_idx": 3653, "number": 2, "label": "reggae"} +{"file_name": "train_06527.png", "caption": "This is a music production tutorial video. There is a male voice teaching a sound design technique. There is an electronic snare drum beat speeding up with a shifting pitch. A simple synth tune is playing in the background. The sounds used in the video are very common, so it would not be worth the hassle to sample these sounds. Instead, parts of the track could be used in advertisement jingles.", "data_idx": 3653, "number": 3, "label": "reggae"} +{"file_name": "train_06528.png", "caption": "This instrumental song features a didgeridoo being played by the vibrating of the lips. This features a continuous droning sound inter-spread with bass sounds. This is accompanied by a handpan playing the percussion and backing notes. This song can be played in a movie featuring a tribal initiation ritual.", "data_idx": 3655, "number": 0, "label": "rock"} +{"file_name": "train_06529.png", "caption": "This instrumental song features a didgeridoo being played by the vibrating of the lips. This features a continuous droning sound inter-spread with bass sounds. This is accompanied by a handpan playing the percussion and backing notes. This song can be played in a movie featuring a tribal initiation ritual.", "data_idx": 3655, "number": 1, "label": "rock"} +{"file_name": "train_06530.png", "caption": "This instrumental song features a didgeridoo being played by the vibrating of the lips. This features a continuous droning sound inter-spread with bass sounds. This is accompanied by a handpan playing the percussion and backing notes. This song can be played in a movie featuring a tribal initiation ritual.", "data_idx": 3655, "number": 2, "label": "rock"} +{"file_name": "train_06531.png", "caption": "This instrumental song features a didgeridoo being played by the vibrating of the lips. This features a continuous droning sound inter-spread with bass sounds. This is accompanied by a handpan playing the percussion and backing notes. This song can be played in a movie featuring a tribal initiation ritual.", "data_idx": 3655, "number": 3, "label": "rock"} +{"file_name": "train_06532.png", "caption": "This audio is an instrumental. The tempo is medium with an acoustic guitar monotone rhythm with a male voice giving instructions. The notes went from low to high. This clip is instructional audio on how to tune a guitar.", "data_idx": 3656, "number": 0, "label": "blues"} +{"file_name": "train_06533.png", "caption": "This audio is an instrumental. The tempo is medium with an acoustic guitar monotone rhythm with a male voice giving instructions. The notes went from low to high. This clip is instructional audio on how to tune a guitar.", "data_idx": 3656, "number": 1, "label": "blues"} +{"file_name": "train_06534.png", "caption": "This audio is an instrumental. The tempo is medium with an acoustic guitar monotone rhythm with a male voice giving instructions. The notes went from low to high. This clip is instructional audio on how to tune a guitar.", "data_idx": 3656, "number": 2, "label": "blues"} +{"file_name": "train_06535.png", "caption": "This audio is an instrumental. The tempo is medium with an acoustic guitar monotone rhythm with a male voice giving instructions. The notes went from low to high. This clip is instructional audio on how to tune a guitar.", "data_idx": 3656, "number": 3, "label": "blues"} +{"file_name": "train_06536.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a loud and energetic riff . The audio quality is inferior as it is a Home recording ,which is why the music is boomy and there are sounds of people talking in the background and some static.", "data_idx": 3658, "number": 0, "label": "classical"} +{"file_name": "train_06537.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a loud and energetic riff . The audio quality is inferior as it is a Home recording ,which is why the music is boomy and there are sounds of people talking in the background and some static.", "data_idx": 3658, "number": 1, "label": "classical"} +{"file_name": "train_06538.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a loud and energetic riff . The audio quality is inferior as it is a Home recording ,which is why the music is boomy and there are sounds of people talking in the background and some static.", "data_idx": 3658, "number": 2, "label": "classical"} +{"file_name": "train_06539.png", "caption": "This music is an electric guitar instrumental. The tempo is medium with a loud and energetic riff . The audio quality is inferior as it is a Home recording ,which is why the music is boomy and there are sounds of people talking in the background and some static.", "data_idx": 3658, "number": 3, "label": "classical"} +{"file_name": "train_06540.png", "caption": "This is an electronic music piece with characteristics of the German industrial scene. A sharp synth is playing the main theme while there is a faint high-pitched pad in the background. A transition effect is used before the drum beat starts. The rhythmic background is provided by a medium tempo electronic drum beat. There is an eerie atmosphere to this piece. It could be used in the soundtrack of a dystopian-future themed movie or a video game.", "data_idx": 3660, "number": 0, "label": "jazz"} +{"file_name": "train_06541.png", "caption": "This is an electronic music piece with characteristics of the German industrial scene. A sharp synth is playing the main theme while there is a faint high-pitched pad in the background. A transition effect is used before the drum beat starts. The rhythmic background is provided by a medium tempo electronic drum beat. There is an eerie atmosphere to this piece. It could be used in the soundtrack of a dystopian-future themed movie or a video game.", "data_idx": 3660, "number": 1, "label": "jazz"} +{"file_name": "train_06542.png", "caption": "This is an electronic music piece with characteristics of the German industrial scene. A sharp synth is playing the main theme while there is a faint high-pitched pad in the background. A transition effect is used before the drum beat starts. The rhythmic background is provided by a medium tempo electronic drum beat. There is an eerie atmosphere to this piece. It could be used in the soundtrack of a dystopian-future themed movie or a video game.", "data_idx": 3660, "number": 2, "label": "jazz"} +{"file_name": "train_06543.png", "caption": "This is an electronic music piece with characteristics of the German industrial scene. A sharp synth is playing the main theme while there is a faint high-pitched pad in the background. A transition effect is used before the drum beat starts. The rhythmic background is provided by a medium tempo electronic drum beat. There is an eerie atmosphere to this piece. It could be used in the soundtrack of a dystopian-future themed movie or a video game.", "data_idx": 3660, "number": 3, "label": "jazz"} +{"file_name": "train_06544.png", "caption": "This music is an electronic guitar instrumental. The tempo is medium with a harmonious electric guitar lead, steady drumming, subtle bass ,tambourine beats and synthesiser arrangement. The music is a pleasant, soothing, unhurried, calm, romantic, sentimental , sedate and lingering Electric Guitar, soft pop instrumental.", "data_idx": 3662, "number": 0, "label": "blues"} +{"file_name": "train_06545.png", "caption": "This music is an electronic guitar instrumental. The tempo is medium with a harmonious electric guitar lead, steady drumming, subtle bass ,tambourine beats and synthesiser arrangement. The music is a pleasant, soothing, unhurried, calm, romantic, sentimental , sedate and lingering Electric Guitar, soft pop instrumental.", "data_idx": 3662, "number": 1, "label": "blues"} +{"file_name": "train_06546.png", "caption": "This music is an electronic guitar instrumental. The tempo is medium with a harmonious electric guitar lead, steady drumming, subtle bass ,tambourine beats and synthesiser arrangement. The music is a pleasant, soothing, unhurried, calm, romantic, sentimental , sedate and lingering Electric Guitar, soft pop instrumental.", "data_idx": 3662, "number": 2, "label": "blues"} +{"file_name": "train_06547.png", "caption": "This music is an electronic guitar instrumental. The tempo is medium with a harmonious electric guitar lead, steady drumming, subtle bass ,tambourine beats and synthesiser arrangement. The music is a pleasant, soothing, unhurried, calm, romantic, sentimental , sedate and lingering Electric Guitar, soft pop instrumental.", "data_idx": 3662, "number": 3, "label": "blues"} +{"file_name": "train_06548.png", "caption": "The song is an instrumental. The song is slow tempo with a philharmonic orchestra playing a string section harmony, lower register harmony Ina lilting manner. The song is emotional and heartfelt. The song is a movie soundtrack.", "data_idx": 3663, "number": 0, "label": "classical"} +{"file_name": "train_06549.png", "caption": "The song is an instrumental. The song is slow tempo with a philharmonic orchestra playing a string section harmony, lower register harmony Ina lilting manner. The song is emotional and heartfelt. The song is a movie soundtrack.", "data_idx": 3663, "number": 1, "label": "classical"} +{"file_name": "train_06550.png", "caption": "The song is an instrumental. The song is slow tempo with a philharmonic orchestra playing a string section harmony, lower register harmony Ina lilting manner. The song is emotional and heartfelt. The song is a movie soundtrack.", "data_idx": 3663, "number": 2, "label": "classical"} +{"file_name": "train_06551.png", "caption": "The song is an instrumental. The song is slow tempo with a philharmonic orchestra playing a string section harmony, lower register harmony Ina lilting manner. The song is emotional and heartfelt. The song is a movie soundtrack.", "data_idx": 3663, "number": 3, "label": "classical"} +{"file_name": "train_06552.png", "caption": "The low quality recording features a live performance where the song is played on playback and it consists of sustained strings and piano melody, energetic crash cymbals, shimmering hi hats and toms roll, over which passionate male vocal and harmonizing background female vocals are singing. It sounds emotional, passionate and soulful.", "data_idx": 3664, "number": 0, "label": "classical"} +{"file_name": "train_06553.png", "caption": "The low quality recording features a live performance where the song is played on playback and it consists of sustained strings and piano melody, energetic crash cymbals, shimmering hi hats and toms roll, over which passionate male vocal and harmonizing background female vocals are singing. It sounds emotional, passionate and soulful.", "data_idx": 3664, "number": 1, "label": "classical"} +{"file_name": "train_06554.png", "caption": "The low quality recording features a live performance where the song is played on playback and it consists of sustained strings and piano melody, energetic crash cymbals, shimmering hi hats and toms roll, over which passionate male vocal and harmonizing background female vocals are singing. It sounds emotional, passionate and soulful.", "data_idx": 3664, "number": 2, "label": "classical"} +{"file_name": "train_06555.png", "caption": "The low quality recording features a live performance where the song is played on playback and it consists of sustained strings and piano melody, energetic crash cymbals, shimmering hi hats and toms roll, over which passionate male vocal and harmonizing background female vocals are singing. It sounds emotional, passionate and soulful.", "data_idx": 3664, "number": 3, "label": "classical"} +{"file_name": "train_06556.png", "caption": "The low quality recording features a female opera vocalist singing over sustained strings. There is tinny metallic percussive foley at one point in the loop. It is a bit quiet, but it also sounds dynamic, emotional and passionate.", "data_idx": 3667, "number": 0, "label": "classical"} +{"file_name": "train_06557.png", "caption": "The low quality recording features a female opera vocalist singing over sustained strings. There is tinny metallic percussive foley at one point in the loop. It is a bit quiet, but it also sounds dynamic, emotional and passionate.", "data_idx": 3667, "number": 1, "label": "classical"} +{"file_name": "train_06558.png", "caption": "The low quality recording features a female opera vocalist singing over sustained strings. There is tinny metallic percussive foley at one point in the loop. It is a bit quiet, but it also sounds dynamic, emotional and passionate.", "data_idx": 3667, "number": 2, "label": "classical"} +{"file_name": "train_06559.png", "caption": "The low quality recording features a female opera vocalist singing over sustained strings. There is tinny metallic percussive foley at one point in the loop. It is a bit quiet, but it also sounds dynamic, emotional and passionate.", "data_idx": 3667, "number": 3, "label": "classical"} +{"file_name": "train_06560.png", "caption": "The low quality recording features a jingle that consists of harmonizing vocals talking over snare roll, toms roll, brass melody and groovy bass, after which there is a folk song that starts playing. The folk song contains strings melody, bouncy snare, shimmering hi hats and synth keys chords. It sounds energetic and exciting, and like something you would hear on some TV show.", "data_idx": 3669, "number": 0, "label": "reggae"} +{"file_name": "train_06561.png", "caption": "The low quality recording features a jingle that consists of harmonizing vocals talking over snare roll, toms roll, brass melody and groovy bass, after which there is a folk song that starts playing. The folk song contains strings melody, bouncy snare, shimmering hi hats and synth keys chords. It sounds energetic and exciting, and like something you would hear on some TV show.", "data_idx": 3669, "number": 1, "label": "reggae"} +{"file_name": "train_06562.png", "caption": "The low quality recording features a jingle that consists of harmonizing vocals talking over snare roll, toms roll, brass melody and groovy bass, after which there is a folk song that starts playing. The folk song contains strings melody, bouncy snare, shimmering hi hats and synth keys chords. It sounds energetic and exciting, and like something you would hear on some TV show.", "data_idx": 3669, "number": 2, "label": "reggae"} +{"file_name": "train_06563.png", "caption": "The low quality recording features a jingle that consists of harmonizing vocals talking over snare roll, toms roll, brass melody and groovy bass, after which there is a folk song that starts playing. The folk song contains strings melody, bouncy snare, shimmering hi hats and synth keys chords. It sounds energetic and exciting, and like something you would hear on some TV show.", "data_idx": 3669, "number": 3, "label": "reggae"} +{"file_name": "train_06564.png", "caption": "A male vocalist sings this youthful Electro rock . The tempo is fast with an intense electric guitar feedback, hard hitting drumming, synthesiser arrangements and electronic sound articulation. The song is high-powered, punchy, intense, youthful,ambient, buoyant, passionate and psychedelic with a dance groove.", "data_idx": 3670, "number": 0, "label": "metal"} +{"file_name": "train_06565.png", "caption": "A male vocalist sings this youthful Electro rock . The tempo is fast with an intense electric guitar feedback, hard hitting drumming, synthesiser arrangements and electronic sound articulation. The song is high-powered, punchy, intense, youthful,ambient, buoyant, passionate and psychedelic with a dance groove.", "data_idx": 3670, "number": 1, "label": "metal"} +{"file_name": "train_06566.png", "caption": "A male vocalist sings this youthful Electro rock . The tempo is fast with an intense electric guitar feedback, hard hitting drumming, synthesiser arrangements and electronic sound articulation. The song is high-powered, punchy, intense, youthful,ambient, buoyant, passionate and psychedelic with a dance groove.", "data_idx": 3670, "number": 2, "label": "metal"} +{"file_name": "train_06567.png", "caption": "A male vocalist sings this youthful Electro rock . The tempo is fast with an intense electric guitar feedback, hard hitting drumming, synthesiser arrangements and electronic sound articulation. The song is high-powered, punchy, intense, youthful,ambient, buoyant, passionate and psychedelic with a dance groove.", "data_idx": 3670, "number": 3, "label": "metal"} +{"file_name": "train_06568.png", "caption": "This music is instrumental. The tempo is medium with a loud , distorted electric guitar harmony. The audio is inferior quality and the sound is raw, loud , unpleasant , boisterous and harsh. There is some noise, like a subdued song playing in the background.", "data_idx": 3672, "number": 0, "label": "metal"} +{"file_name": "train_06569.png", "caption": "This music is instrumental. The tempo is medium with a loud , distorted electric guitar harmony. The audio is inferior quality and the sound is raw, loud , unpleasant , boisterous and harsh. There is some noise, like a subdued song playing in the background.", "data_idx": 3672, "number": 1, "label": "metal"} +{"file_name": "train_06570.png", "caption": "This music is instrumental. The tempo is medium with a loud , distorted electric guitar harmony. The audio is inferior quality and the sound is raw, loud , unpleasant , boisterous and harsh. There is some noise, like a subdued song playing in the background.", "data_idx": 3672, "number": 2, "label": "metal"} +{"file_name": "train_06571.png", "caption": "This music is instrumental. The tempo is medium with a loud , distorted electric guitar harmony. The audio is inferior quality and the sound is raw, loud , unpleasant , boisterous and harsh. There is some noise, like a subdued song playing in the background.", "data_idx": 3672, "number": 3, "label": "metal"} +{"file_name": "train_06572.png", "caption": "This song contains digital drums playing a simple dubstep groove with a strong snare sound. A subbass along with an aggressive synth sound playing the same melody one octave higher. This song may be playing in a Dubstep/Drum&Bass club.", "data_idx": 3673, "number": 0, "label": "hiphop"} +{"file_name": "train_06573.png", "caption": "This song contains digital drums playing a simple dubstep groove with a strong snare sound. A subbass along with an aggressive synth sound playing the same melody one octave higher. This song may be playing in a Dubstep/Drum&Bass club.", "data_idx": 3673, "number": 1, "label": "hiphop"} +{"file_name": "train_06574.png", "caption": "This song contains digital drums playing a simple dubstep groove with a strong snare sound. A subbass along with an aggressive synth sound playing the same melody one octave higher. This song may be playing in a Dubstep/Drum&Bass club.", "data_idx": 3673, "number": 2, "label": "hiphop"} +{"file_name": "train_06575.png", "caption": "This song contains digital drums playing a simple dubstep groove with a strong snare sound. A subbass along with an aggressive synth sound playing the same melody one octave higher. This song may be playing in a Dubstep/Drum&Bass club.", "data_idx": 3673, "number": 3, "label": "hiphop"} +{"file_name": "train_06576.png", "caption": "This is an EDM/techno music piece with a loud synth lead. There is a strong bass and an upbeat electronic drum beat in the background creating an atmosphere of high energy which is essential to electronic dance music. This music could be used in nightclubs, techno DJ sets and EDM venues.", "data_idx": 3674, "number": 0, "label": "hiphop"} +{"file_name": "train_06577.png", "caption": "This is an EDM/techno music piece with a loud synth lead. There is a strong bass and an upbeat electronic drum beat in the background creating an atmosphere of high energy which is essential to electronic dance music. This music could be used in nightclubs, techno DJ sets and EDM venues.", "data_idx": 3674, "number": 1, "label": "hiphop"} +{"file_name": "train_06578.png", "caption": "This is an EDM/techno music piece with a loud synth lead. There is a strong bass and an upbeat electronic drum beat in the background creating an atmosphere of high energy which is essential to electronic dance music. This music could be used in nightclubs, techno DJ sets and EDM venues.", "data_idx": 3674, "number": 2, "label": "hiphop"} +{"file_name": "train_06579.png", "caption": "This is an EDM/techno music piece with a loud synth lead. There is a strong bass and an upbeat electronic drum beat in the background creating an atmosphere of high energy which is essential to electronic dance music. This music could be used in nightclubs, techno DJ sets and EDM venues.", "data_idx": 3674, "number": 3, "label": "hiphop"} +{"file_name": "train_06580.png", "caption": "A solo timpani performance played with mallets featuring rolls and complex rhythms on two drums. The music feels serious, even militant.", "data_idx": 3676, "number": 0, "label": "jazz"} +{"file_name": "train_06581.png", "caption": "A solo timpani performance played with mallets featuring rolls and complex rhythms on two drums. The music feels serious, even militant.", "data_idx": 3676, "number": 1, "label": "jazz"} +{"file_name": "train_06582.png", "caption": "A solo timpani performance played with mallets featuring rolls and complex rhythms on two drums. The music feels serious, even militant.", "data_idx": 3676, "number": 2, "label": "jazz"} +{"file_name": "train_06583.png", "caption": "A solo timpani performance played with mallets featuring rolls and complex rhythms on two drums. The music feels serious, even militant.", "data_idx": 3676, "number": 3, "label": "jazz"} +{"file_name": "train_06584.png", "caption": "Someone is trying out different effect sounds with his e-guitar. There is a lot of delay/echo happening. It does not play a musical composition but rather exploring.", "data_idx": 3679, "number": 0, "label": "blues"} +{"file_name": "train_06585.png", "caption": "Someone is trying out different effect sounds with his e-guitar. There is a lot of delay/echo happening. It does not play a musical composition but rather exploring.", "data_idx": 3679, "number": 1, "label": "blues"} +{"file_name": "train_06586.png", "caption": "Someone is trying out different effect sounds with his e-guitar. There is a lot of delay/echo happening. It does not play a musical composition but rather exploring.", "data_idx": 3679, "number": 2, "label": "blues"} +{"file_name": "train_06587.png", "caption": "Someone is trying out different effect sounds with his e-guitar. There is a lot of delay/echo happening. It does not play a musical composition but rather exploring.", "data_idx": 3679, "number": 3, "label": "blues"} +{"file_name": "train_06588.png", "caption": "This instrumental song features a theremin being played. There seems to be another synth playing at the intro. The sound produced is eerie. A ring modulator tone is played through this audio clip. There are no voices in this clip. There are no other instruments in this clip. This song can be played in a video game.", "data_idx": 3681, "number": 0, "label": "classical"} +{"file_name": "train_06589.png", "caption": "This instrumental song features a theremin being played. There seems to be another synth playing at the intro. The sound produced is eerie. A ring modulator tone is played through this audio clip. There are no voices in this clip. There are no other instruments in this clip. This song can be played in a video game.", "data_idx": 3681, "number": 1, "label": "classical"} +{"file_name": "train_06590.png", "caption": "This instrumental song features a theremin being played. There seems to be another synth playing at the intro. The sound produced is eerie. A ring modulator tone is played through this audio clip. There are no voices in this clip. There are no other instruments in this clip. This song can be played in a video game.", "data_idx": 3681, "number": 2, "label": "classical"} +{"file_name": "train_06591.png", "caption": "This instrumental song features a theremin being played. There seems to be another synth playing at the intro. The sound produced is eerie. A ring modulator tone is played through this audio clip. There are no voices in this clip. There are no other instruments in this clip. This song can be played in a video game.", "data_idx": 3681, "number": 3, "label": "classical"} +{"file_name": "train_06592.png", "caption": "This song features the sound of a music box. It sounds like a melody of bells playing in compound time. There are no voices in this song. There are no other instruments. The song has a dreamy feel. This song can be used in a dream sequence in a movie.", "data_idx": 3682, "number": 0, "label": "classical"} +{"file_name": "train_06593.png", "caption": "This song features the sound of a music box. It sounds like a melody of bells playing in compound time. There are no voices in this song. There are no other instruments. The song has a dreamy feel. This song can be used in a dream sequence in a movie.", "data_idx": 3682, "number": 1, "label": "classical"} +{"file_name": "train_06594.png", "caption": "A male vocalist sings this lilting melody. The tempo is medium with keyboard harmony, groovy bass line, steady drumming and mandolin harmony. The song is emotional, romantic, soulful, sentimental and soothing. This song is Regional Pop,", "data_idx": 3683, "number": 0, "label": "country"} +{"file_name": "train_06595.png", "caption": "A male vocalist sings this lilting melody. The tempo is medium with keyboard harmony, groovy bass line, steady drumming and mandolin harmony. The song is emotional, romantic, soulful, sentimental and soothing. This song is Regional Pop,", "data_idx": 3683, "number": 1, "label": "country"} +{"file_name": "train_06596.png", "caption": "A male vocalist sings this lilting melody. The tempo is medium with keyboard harmony, groovy bass line, steady drumming and mandolin harmony. The song is emotional, romantic, soulful, sentimental and soothing. This song is Regional Pop,", "data_idx": 3683, "number": 2, "label": "country"} +{"file_name": "train_06597.png", "caption": "A male vocalist sings this lilting melody. The tempo is medium with keyboard harmony, groovy bass line, steady drumming and mandolin harmony. The song is emotional, romantic, soulful, sentimental and soothing. This song is Regional Pop,", "data_idx": 3683, "number": 3, "label": "country"} +{"file_name": "train_06598.png", "caption": "This song is a vocalisation by a female singer. The tempo is medium with an upbeat electronic guitar harmony, funky bass guitar, slick drumming and acoustic guitar accompaniment. The music is simple, engaging, pleasant, melodic, engaging and has a perky groove.", "data_idx": 3684, "number": 0, "label": "jazz"} +{"file_name": "train_06599.png", "caption": "This song is a vocalisation by a female singer. The tempo is medium with an upbeat electronic guitar harmony, funky bass guitar, slick drumming and acoustic guitar accompaniment. The music is simple, engaging, pleasant, melodic, engaging and has a perky groove.", "data_idx": 3684, "number": 1, "label": "jazz"} +{"file_name": "train_06600.png", "caption": "This song is a vocalisation by a female singer. The tempo is medium with an upbeat electronic guitar harmony, funky bass guitar, slick drumming and acoustic guitar accompaniment. The music is simple, engaging, pleasant, melodic, engaging and has a perky groove.", "data_idx": 3684, "number": 2, "label": "jazz"} +{"file_name": "train_06601.png", "caption": "This song is a vocalisation by a female singer. The tempo is medium with an upbeat electronic guitar harmony, funky bass guitar, slick drumming and acoustic guitar accompaniment. The music is simple, engaging, pleasant, melodic, engaging and has a perky groove.", "data_idx": 3684, "number": 3, "label": "jazz"} +{"file_name": "train_06602.png", "caption": "The song is a latin american dance song suitable for salsa dancing. There are brass instruments, traditional percussion instruments like bongo drums, and the male vocal group sings in a cheery way in Spanish.", "data_idx": 3686, "number": 0, "label": "reggae"} +{"file_name": "train_06603.png", "caption": "The song is a latin american dance song suitable for salsa dancing. There are brass instruments, traditional percussion instruments like bongo drums, and the male vocal group sings in a cheery way in Spanish.", "data_idx": 3686, "number": 1, "label": "reggae"} +{"file_name": "train_06604.png", "caption": "The song is a latin american dance song suitable for salsa dancing. There are brass instruments, traditional percussion instruments like bongo drums, and the male vocal group sings in a cheery way in Spanish.", "data_idx": 3686, "number": 2, "label": "reggae"} +{"file_name": "train_06605.png", "caption": "The song is a latin american dance song suitable for salsa dancing. There are brass instruments, traditional percussion instruments like bongo drums, and the male vocal group sings in a cheery way in Spanish.", "data_idx": 3686, "number": 3, "label": "reggae"} +{"file_name": "train_06606.png", "caption": "This is a nu-metal/alternative metal music piece. There is a male vocalist singing in a harsh, shout-like manner in the lead. The main melody is being played by a distorted electric guitar with a strong bass guitar backing. There are various electronic elements such as a crowd cheering sample and an evolving synth sound adding texture to the piece. The rhythmic background consisted of a loud metal acoustic drum beat and secondary percussive elements such as steel percussion. The atmosphere is energetic and violent. This piece could be used in the soundtrack of an action-filled/shootout video game. It could also be playing in the background at a metal bar.", "data_idx": 3687, "number": 0, "label": "metal"} +{"file_name": "train_06607.png", "caption": "This is a nu-metal/alternative metal music piece. There is a male vocalist singing in a harsh, shout-like manner in the lead. The main melody is being played by a distorted electric guitar with a strong bass guitar backing. There are various electronic elements such as a crowd cheering sample and an evolving synth sound adding texture to the piece. The rhythmic background consisted of a loud metal acoustic drum beat and secondary percussive elements such as steel percussion. The atmosphere is energetic and violent. This piece could be used in the soundtrack of an action-filled/shootout video game. It could also be playing in the background at a metal bar.", "data_idx": 3687, "number": 1, "label": "metal"} +{"file_name": "train_06608.png", "caption": "This is a nu-metal/alternative metal music piece. There is a male vocalist singing in a harsh, shout-like manner in the lead. The main melody is being played by a distorted electric guitar with a strong bass guitar backing. There are various electronic elements such as a crowd cheering sample and an evolving synth sound adding texture to the piece. The rhythmic background consisted of a loud metal acoustic drum beat and secondary percussive elements such as steel percussion. The atmosphere is energetic and violent. This piece could be used in the soundtrack of an action-filled/shootout video game. It could also be playing in the background at a metal bar.", "data_idx": 3687, "number": 2, "label": "metal"} +{"file_name": "train_06609.png", "caption": "This is a nu-metal/alternative metal music piece. There is a male vocalist singing in a harsh, shout-like manner in the lead. The main melody is being played by a distorted electric guitar with a strong bass guitar backing. There are various electronic elements such as a crowd cheering sample and an evolving synth sound adding texture to the piece. The rhythmic background consisted of a loud metal acoustic drum beat and secondary percussive elements such as steel percussion. The atmosphere is energetic and violent. This piece could be used in the soundtrack of an action-filled/shootout video game. It could also be playing in the background at a metal bar.", "data_idx": 3687, "number": 3, "label": "metal"} +{"file_name": "train_06610.png", "caption": "This is an amateur recording of a vocal cover. There is a male vocalist singing out-of-tune over a pop music piece playing in the background while driving a car. In the backing track there is a female vocal. A strong bass could be heard. There are also strings barely audible from the poor acoustics of the setting. Overall, it is a recording of poor quality.", "data_idx": 3691, "number": 0, "label": "hiphop"} +{"file_name": "train_06611.png", "caption": "This is an amateur recording of a vocal cover. There is a male vocalist singing out-of-tune over a pop music piece playing in the background while driving a car. In the backing track there is a female vocal. A strong bass could be heard. There are also strings barely audible from the poor acoustics of the setting. Overall, it is a recording of poor quality.", "data_idx": 3691, "number": 1, "label": "hiphop"} +{"file_name": "train_06612.png", "caption": "This is an amateur recording of a vocal cover. There is a male vocalist singing out-of-tune over a pop music piece playing in the background while driving a car. In the backing track there is a female vocal. A strong bass could be heard. There are also strings barely audible from the poor acoustics of the setting. Overall, it is a recording of poor quality.", "data_idx": 3691, "number": 2, "label": "hiphop"} +{"file_name": "train_06613.png", "caption": "This is an amateur recording of a vocal cover. There is a male vocalist singing out-of-tune over a pop music piece playing in the background while driving a car. In the backing track there is a female vocal. A strong bass could be heard. There are also strings barely audible from the poor acoustics of the setting. Overall, it is a recording of poor quality.", "data_idx": 3691, "number": 3, "label": "hiphop"} +{"file_name": "train_06614.png", "caption": "A male vocalist sings this energetic Rock and Roll song. The song is fast tempo with enthusiastic electric guitar, hard hitting drums, groovy bass lines and keyboard harmony. The song is vibrant, high energy, powerfully,passionate, emphatic, vehement, intense and youthful. This song is classic rock.", "data_idx": 3694, "number": 0, "label": "metal"} +{"file_name": "train_06615.png", "caption": "A male vocalist sings this energetic Rock and Roll song. The song is fast tempo with enthusiastic electric guitar, hard hitting drums, groovy bass lines and keyboard harmony. The song is vibrant, high energy, powerfully,passionate, emphatic, vehement, intense and youthful. This song is classic rock.", "data_idx": 3694, "number": 1, "label": "metal"} +{"file_name": "train_06616.png", "caption": "A male vocalist sings this energetic Rock and Roll song. The song is fast tempo with enthusiastic electric guitar, hard hitting drums, groovy bass lines and keyboard harmony. The song is vibrant, high energy, powerfully,passionate, emphatic, vehement, intense and youthful. This song is classic rock.", "data_idx": 3694, "number": 2, "label": "metal"} +{"file_name": "train_06617.png", "caption": "A male vocalist sings this energetic Rock and Roll song. The song is fast tempo with enthusiastic electric guitar, hard hitting drums, groovy bass lines and keyboard harmony. The song is vibrant, high energy, powerfully,passionate, emphatic, vehement, intense and youthful. This song is classic rock.", "data_idx": 3694, "number": 3, "label": "metal"} +{"file_name": "train_06618.png", "caption": "Someone is playing a dynamic piece on timpanis. There is a lot of reverb in this recording. This song may be playing as part of a live concert.", "data_idx": 3698, "number": 0, "label": "jazz"} +{"file_name": "train_06619.png", "caption": "Someone is playing a dynamic piece on timpanis. There is a lot of reverb in this recording. This song may be playing as part of a live concert.", "data_idx": 3698, "number": 1, "label": "jazz"} +{"file_name": "train_06620.png", "caption": "Someone is playing a dynamic piece on timpanis. There is a lot of reverb in this recording. This song may be playing as part of a live concert.", "data_idx": 3698, "number": 2, "label": "jazz"} +{"file_name": "train_06621.png", "caption": "Someone is playing a dynamic piece on timpanis. There is a lot of reverb in this recording. This song may be playing as part of a live concert.", "data_idx": 3698, "number": 3, "label": "jazz"} +{"file_name": "train_06622.png", "caption": "This amateur recording features low quality audio. The main sound heard is that of tap dancing to a song. The song features a male voice singing the main melody. The rest of the instruments are not clearly audible. A bass plays the root notes of the chords. The percussion plays a simple beat. Other instruments are not audible.", "data_idx": 3699, "number": 0, "label": "reggae"} +{"file_name": "train_06623.png", "caption": "This amateur recording features low quality audio. The main sound heard is that of tap dancing to a song. The song features a male voice singing the main melody. The rest of the instruments are not clearly audible. A bass plays the root notes of the chords. The percussion plays a simple beat. Other instruments are not audible.", "data_idx": 3699, "number": 1, "label": "reggae"} +{"file_name": "train_06624.png", "caption": "This amateur recording features low quality audio. The main sound heard is that of tap dancing to a song. The song features a male voice singing the main melody. The rest of the instruments are not clearly audible. A bass plays the root notes of the chords. The percussion plays a simple beat. Other instruments are not audible.", "data_idx": 3699, "number": 2, "label": "reggae"} +{"file_name": "train_06625.png", "caption": "This amateur recording features low quality audio. The main sound heard is that of tap dancing to a song. The song features a male voice singing the main melody. The rest of the instruments are not clearly audible. A bass plays the root notes of the chords. The percussion plays a simple beat. Other instruments are not audible.", "data_idx": 3699, "number": 3, "label": "reggae"} +{"file_name": "train_06626.png", "caption": "The low quality song features a cover of a ballad song and it consists of arpeggiated acoustic guitar melody and passionate male vocal singing over it. The recording is very noisy and in mono, like it was recorded with a phone, but regardless it sounds emotional and passionate.", "data_idx": 3701, "number": 0, "label": "classical"} +{"file_name": "train_06627.png", "caption": "The low quality song features a cover of a ballad song and it consists of arpeggiated acoustic guitar melody and passionate male vocal singing over it. The recording is very noisy and in mono, like it was recorded with a phone, but regardless it sounds emotional and passionate.", "data_idx": 3701, "number": 1, "label": "classical"} +{"file_name": "train_06628.png", "caption": "The low quality song features a cover of a ballad song and it consists of arpeggiated acoustic guitar melody and passionate male vocal singing over it. The recording is very noisy and in mono, like it was recorded with a phone, but regardless it sounds emotional and passionate.", "data_idx": 3701, "number": 2, "label": "classical"} +{"file_name": "train_06629.png", "caption": "The low quality song features a cover of a ballad song and it consists of arpeggiated acoustic guitar melody and passionate male vocal singing over it. The recording is very noisy and in mono, like it was recorded with a phone, but regardless it sounds emotional and passionate.", "data_idx": 3701, "number": 3, "label": "classical"} +{"file_name": "train_06630.png", "caption": "This is a Hindu music piece. There is a female vocalist singing at a medium-to-high pitch in a devotional manner. A sitar provides a melodic background. The tabla is being played in the rhythmic background. The atmosphere is spiritual. This piece could be played at religious events and online content related to Hindu religion.", "data_idx": 3706, "number": 0, "label": "pop"} +{"file_name": "train_06631.png", "caption": "This is a Hindu music piece. There is a female vocalist singing at a medium-to-high pitch in a devotional manner. A sitar provides a melodic background. The tabla is being played in the rhythmic background. The atmosphere is spiritual. This piece could be played at religious events and online content related to Hindu religion.", "data_idx": 3706, "number": 1, "label": "pop"} +{"file_name": "train_06632.png", "caption": "This is a Hindu music piece. There is a female vocalist singing at a medium-to-high pitch in a devotional manner. A sitar provides a melodic background. The tabla is being played in the rhythmic background. The atmosphere is spiritual. This piece could be played at religious events and online content related to Hindu religion.", "data_idx": 3706, "number": 2, "label": "pop"} +{"file_name": "train_06633.png", "caption": "This is a Hindu music piece. There is a female vocalist singing at a medium-to-high pitch in a devotional manner. A sitar provides a melodic background. The tabla is being played in the rhythmic background. The atmosphere is spiritual. This piece could be played at religious events and online content related to Hindu religion.", "data_idx": 3706, "number": 3, "label": "pop"} +{"file_name": "train_06634.png", "caption": "A male vocalist sings this famous Beatle\u2019s song in Country style. The tempo is medium with an auto harp accompaniment, groovy bass line, keyboard harmony, female vocal backup and sound of clapping and cheering indicating that this is a live performance . The song is cheerful, melodious, engaging, energetic,youthful and upbeat.", "data_idx": 3710, "number": 0, "label": "reggae"} +{"file_name": "train_06635.png", "caption": "A male vocalist sings this famous Beatle\u2019s song in Country style. The tempo is medium with an auto harp accompaniment, groovy bass line, keyboard harmony, female vocal backup and sound of clapping and cheering indicating that this is a live performance . The song is cheerful, melodious, engaging, energetic,youthful and upbeat.", "data_idx": 3710, "number": 1, "label": "reggae"} +{"file_name": "train_06636.png", "caption": "A male vocalist sings this famous Beatle\u2019s song in Country style. The tempo is medium with an auto harp accompaniment, groovy bass line, keyboard harmony, female vocal backup and sound of clapping and cheering indicating that this is a live performance . The song is cheerful, melodious, engaging, energetic,youthful and upbeat.", "data_idx": 3710, "number": 2, "label": "reggae"} +{"file_name": "train_06637.png", "caption": "A male vocalist sings this famous Beatle\u2019s song in Country style. The tempo is medium with an auto harp accompaniment, groovy bass line, keyboard harmony, female vocal backup and sound of clapping and cheering indicating that this is a live performance . The song is cheerful, melodious, engaging, energetic,youthful and upbeat.", "data_idx": 3710, "number": 3, "label": "reggae"} +{"file_name": "train_06638.png", "caption": "The low quality recording features a DJ scratching a vinyl of a jungle song that consists of punchy kick and snare hits layered with energetic crash cymbal and groovy bass. The song sounds thin as it is probably playing on a speaker. The recording itself is noisy and in mono. It sounds energetic and aggressive overall.", "data_idx": 3711, "number": 0, "label": "hiphop"} +{"file_name": "train_06639.png", "caption": "The low quality recording features a DJ scratching a vinyl of a jungle song that consists of punchy kick and snare hits layered with energetic crash cymbal and groovy bass. The song sounds thin as it is probably playing on a speaker. The recording itself is noisy and in mono. It sounds energetic and aggressive overall.", "data_idx": 3711, "number": 1, "label": "hiphop"} +{"file_name": "train_06640.png", "caption": "The low quality recording features a DJ scratching a vinyl of a jungle song that consists of punchy kick and snare hits layered with energetic crash cymbal and groovy bass. The song sounds thin as it is probably playing on a speaker. The recording itself is noisy and in mono. It sounds energetic and aggressive overall.", "data_idx": 3711, "number": 2, "label": "hiphop"} +{"file_name": "train_06641.png", "caption": "The low quality recording features a DJ scratching a vinyl of a jungle song that consists of punchy kick and snare hits layered with energetic crash cymbal and groovy bass. The song sounds thin as it is probably playing on a speaker. The recording itself is noisy and in mono. It sounds energetic and aggressive overall.", "data_idx": 3711, "number": 3, "label": "hiphop"} +{"file_name": "train_06642.png", "caption": "This song features a bass guitar. Slap bass is played. The riff is repetitive. There are no other instruments in this song. The tempo of this song is moderate. There are no voices in this song. This bass piece can be played in a funk song.", "data_idx": 3714, "number": 0, "label": "hiphop"} +{"file_name": "train_06643.png", "caption": "This song features a bass guitar. Slap bass is played. The riff is repetitive. There are no other instruments in this song. The tempo of this song is moderate. There are no voices in this song. This bass piece can be played in a funk song.", "data_idx": 3714, "number": 1, "label": "hiphop"} +{"file_name": "train_06644.png", "caption": "This song features a bass guitar. Slap bass is played. The riff is repetitive. There are no other instruments in this song. The tempo of this song is moderate. There are no voices in this song. This bass piece can be played in a funk song.", "data_idx": 3714, "number": 2, "label": "hiphop"} +{"file_name": "train_06645.png", "caption": "This song features a bass guitar. Slap bass is played. The riff is repetitive. There are no other instruments in this song. The tempo of this song is moderate. There are no voices in this song. This bass piece can be played in a funk song.", "data_idx": 3714, "number": 3, "label": "hiphop"} +{"file_name": "train_06646.png", "caption": "A female singer sings this iconic pop cover. The song is slow tempo with a piano accompaniment, strong drum hit and low pitched keyboard harmony. The song is tense and mysterious. The song is a modern pop cover and has poor audio quality with hissing and buzzing tones.", "data_idx": 3715, "number": 0, "label": "hiphop"} +{"file_name": "train_06647.png", "caption": "A female singer sings this iconic pop cover. The song is slow tempo with a piano accompaniment, strong drum hit and low pitched keyboard harmony. The song is tense and mysterious. The song is a modern pop cover and has poor audio quality with hissing and buzzing tones.", "data_idx": 3715, "number": 1, "label": "hiphop"} +{"file_name": "train_06648.png", "caption": "A female singer sings this iconic pop cover. The song is slow tempo with a piano accompaniment, strong drum hit and low pitched keyboard harmony. The song is tense and mysterious. The song is a modern pop cover and has poor audio quality with hissing and buzzing tones.", "data_idx": 3715, "number": 2, "label": "hiphop"} +{"file_name": "train_06649.png", "caption": "A female singer sings this iconic pop cover. The song is slow tempo with a piano accompaniment, strong drum hit and low pitched keyboard harmony. The song is tense and mysterious. The song is a modern pop cover and has poor audio quality with hissing and buzzing tones.", "data_idx": 3715, "number": 3, "label": "hiphop"} +{"file_name": "train_06650.png", "caption": "This is a marching band piece performed by an orchestra. There are trumpets playing the main theme while tuba and cello are playing the bass notes. There is also a constant string part holding the root notes of the melody. The snare drums are playing an accentuated, militaristic drum line. There is an epic atmosphere that gives a call-to-action feeling. This piece could be used in the soundtracks of action movies and war movies in particular. It could also be used in the soundtracks of video games from the action and first-person-shootout genres.", "data_idx": 3716, "number": 0, "label": "rock"} +{"file_name": "train_06651.png", "caption": "This is a marching band piece performed by an orchestra. There are trumpets playing the main theme while tuba and cello are playing the bass notes. There is also a constant string part holding the root notes of the melody. The snare drums are playing an accentuated, militaristic drum line. There is an epic atmosphere that gives a call-to-action feeling. This piece could be used in the soundtracks of action movies and war movies in particular. It could also be used in the soundtracks of video games from the action and first-person-shootout genres.", "data_idx": 3716, "number": 1, "label": "rock"} +{"file_name": "train_06652.png", "caption": "This is a marching band piece performed by an orchestra. There are trumpets playing the main theme while tuba and cello are playing the bass notes. There is also a constant string part holding the root notes of the melody. The snare drums are playing an accentuated, militaristic drum line. There is an epic atmosphere that gives a call-to-action feeling. This piece could be used in the soundtracks of action movies and war movies in particular. It could also be used in the soundtracks of video games from the action and first-person-shootout genres.", "data_idx": 3716, "number": 2, "label": "rock"} +{"file_name": "train_06653.png", "caption": "This is a marching band piece performed by an orchestra. There are trumpets playing the main theme while tuba and cello are playing the bass notes. There is also a constant string part holding the root notes of the melody. The snare drums are playing an accentuated, militaristic drum line. There is an epic atmosphere that gives a call-to-action feeling. This piece could be used in the soundtracks of action movies and war movies in particular. It could also be used in the soundtracks of video games from the action and first-person-shootout genres.", "data_idx": 3716, "number": 3, "label": "rock"} +{"file_name": "train_06654.png", "caption": "This is a four on the floor style of production. The song is a drum and bass type of song with a bright and fuzzy synth to add a melodic element. The first part of the song feels suspenseful.", "data_idx": 3718, "number": 0, "label": "hiphop"} +{"file_name": "train_06655.png", "caption": "This is a four on the floor style of production. The song is a drum and bass type of song with a bright and fuzzy synth to add a melodic element. The first part of the song feels suspenseful.", "data_idx": 3718, "number": 1, "label": "hiphop"} +{"file_name": "train_06656.png", "caption": "This is a four on the floor style of production. The song is a drum and bass type of song with a bright and fuzzy synth to add a melodic element. The first part of the song feels suspenseful.", "data_idx": 3718, "number": 2, "label": "hiphop"} +{"file_name": "train_06657.png", "caption": "This is a four on the floor style of production. The song is a drum and bass type of song with a bright and fuzzy synth to add a melodic element. The first part of the song feels suspenseful.", "data_idx": 3718, "number": 3, "label": "hiphop"} +{"file_name": "train_06658.png", "caption": "The low quality recording features a pop song played on playback while a male vocalist is mumbling over it. The song consists of a groovy bass, shimmering hi hats, punchy kick and snare hits, mellow bell melody, and flat repetitive female vocals singing over it. The recording is noisy, which is very audible at the very end of the loop where there is a finger licking sound. It still sounds happy and fun.", "data_idx": 3719, "number": 0, "label": "blues"} +{"file_name": "train_06659.png", "caption": "The low quality recording features a pop song played on playback while a male vocalist is mumbling over it. The song consists of a groovy bass, shimmering hi hats, punchy kick and snare hits, mellow bell melody, and flat repetitive female vocals singing over it. The recording is noisy, which is very audible at the very end of the loop where there is a finger licking sound. It still sounds happy and fun.", "data_idx": 3719, "number": 1, "label": "blues"} +{"file_name": "train_06660.png", "caption": "The low quality recording features a pop song played on playback while a male vocalist is mumbling over it. The song consists of a groovy bass, shimmering hi hats, punchy kick and snare hits, mellow bell melody, and flat repetitive female vocals singing over it. The recording is noisy, which is very audible at the very end of the loop where there is a finger licking sound. It still sounds happy and fun.", "data_idx": 3719, "number": 2, "label": "blues"} +{"file_name": "train_06661.png", "caption": "The low quality recording features a pop song played on playback while a male vocalist is mumbling over it. The song consists of a groovy bass, shimmering hi hats, punchy kick and snare hits, mellow bell melody, and flat repetitive female vocals singing over it. The recording is noisy, which is very audible at the very end of the loop where there is a finger licking sound. It still sounds happy and fun.", "data_idx": 3719, "number": 3, "label": "blues"} +{"file_name": "train_06662.png", "caption": "The music contains an energetic female voice which is sharp and clear. It is between rapping and singing. In the background are electronic music effects, at medium to high pitch. The atmosphere is smooth and confident. A drum kit plays a mid tempo pattern and It is very digital sounding.", "data_idx": 3722, "number": 0, "label": "hiphop"} +{"file_name": "train_06663.png", "caption": "The music contains an energetic female voice which is sharp and clear. It is between rapping and singing. In the background are electronic music effects, at medium to high pitch. The atmosphere is smooth and confident. A drum kit plays a mid tempo pattern and It is very digital sounding.", "data_idx": 3722, "number": 1, "label": "hiphop"} +{"file_name": "train_06664.png", "caption": "The music contains an energetic female voice which is sharp and clear. It is between rapping and singing. In the background are electronic music effects, at medium to high pitch. The atmosphere is smooth and confident. A drum kit plays a mid tempo pattern and It is very digital sounding.", "data_idx": 3722, "number": 2, "label": "hiphop"} +{"file_name": "train_06665.png", "caption": "The music contains an energetic female voice which is sharp and clear. It is between rapping and singing. In the background are electronic music effects, at medium to high pitch. The atmosphere is smooth and confident. A drum kit plays a mid tempo pattern and It is very digital sounding.", "data_idx": 3722, "number": 3, "label": "hiphop"} +{"file_name": "train_06666.png", "caption": "A fast techno four on the floor beat with a repetitive driving bass, wild synthesizer sounds processed with delay. An energetic feeling that might be considered acid house.", "data_idx": 3724, "number": 0, "label": "hiphop"} +{"file_name": "train_06667.png", "caption": "A fast techno four on the floor beat with a repetitive driving bass, wild synthesizer sounds processed with delay. An energetic feeling that might be considered acid house.", "data_idx": 3724, "number": 1, "label": "hiphop"} +{"file_name": "train_06668.png", "caption": "A fast techno four on the floor beat with a repetitive driving bass, wild synthesizer sounds processed with delay. An energetic feeling that might be considered acid house.", "data_idx": 3724, "number": 2, "label": "hiphop"} +{"file_name": "train_06669.png", "caption": "A fast techno four on the floor beat with a repetitive driving bass, wild synthesizer sounds processed with delay. An energetic feeling that might be considered acid house.", "data_idx": 3724, "number": 3, "label": "hiphop"} +{"file_name": "train_06670.png", "caption": "This music is instrumental. The tempo is fast with a droning melody of didgeridoo. The music is complex, powerful, emphatic and the droning tone makes it trippy, psychedelic, meditative and hypnotic.", "data_idx": 3725, "number": 0, "label": "hiphop"} +{"file_name": "train_06671.png", "caption": "This music is instrumental. The tempo is fast with a droning melody of didgeridoo. The music is complex, powerful, emphatic and the droning tone makes it trippy, psychedelic, meditative and hypnotic.", "data_idx": 3725, "number": 1, "label": "hiphop"} +{"file_name": "train_06672.png", "caption": "This music is instrumental. The tempo is fast with a droning melody of didgeridoo. The music is complex, powerful, emphatic and the droning tone makes it trippy, psychedelic, meditative and hypnotic.", "data_idx": 3725, "number": 2, "label": "hiphop"} +{"file_name": "train_06673.png", "caption": "This music is instrumental. The tempo is fast with a droning melody of didgeridoo. The music is complex, powerful, emphatic and the droning tone makes it trippy, psychedelic, meditative and hypnotic.", "data_idx": 3725, "number": 3, "label": "hiphop"} +{"file_name": "train_06674.png", "caption": "This is an edited version of a pop music piece. The song is in minor key which gives it a melancholic aura. There is a male vocalist singing emotionally in a sigh-like manner accompanied with a piano tune and atmospheric strings in the background. However, due to the artificially added gain, the piece is too loud and the audio is distorted.", "data_idx": 3728, "number": 0, "label": "rock"} +{"file_name": "train_06675.png", "caption": "This is an edited version of a pop music piece. The song is in minor key which gives it a melancholic aura. There is a male vocalist singing emotionally in a sigh-like manner accompanied with a piano tune and atmospheric strings in the background. However, due to the artificially added gain, the piece is too loud and the audio is distorted.", "data_idx": 3728, "number": 1, "label": "rock"} +{"file_name": "train_06676.png", "caption": "This is an edited version of a pop music piece. The song is in minor key which gives it a melancholic aura. There is a male vocalist singing emotionally in a sigh-like manner accompanied with a piano tune and atmospheric strings in the background. However, due to the artificially added gain, the piece is too loud and the audio is distorted.", "data_idx": 3728, "number": 2, "label": "rock"} +{"file_name": "train_06677.png", "caption": "This is an edited version of a pop music piece. The song is in minor key which gives it a melancholic aura. There is a male vocalist singing emotionally in a sigh-like manner accompanied with a piano tune and atmospheric strings in the background. However, due to the artificially added gain, the piece is too loud and the audio is distorted.", "data_idx": 3728, "number": 3, "label": "rock"} +{"file_name": "train_06678.png", "caption": "The song is a middle eastern pop ballad with a singer who sounds emotional and reflective. The song is at a medium tempo. There is a violin embellishment, piano, and some relaxed pop drumming. This song would be heard in a middle eastern movie.", "data_idx": 3731, "number": 0, "label": "country"} +{"file_name": "train_06679.png", "caption": "The song is a middle eastern pop ballad with a singer who sounds emotional and reflective. The song is at a medium tempo. There is a violin embellishment, piano, and some relaxed pop drumming. This song would be heard in a middle eastern movie.", "data_idx": 3731, "number": 1, "label": "country"} +{"file_name": "train_06680.png", "caption": "The song is a middle eastern pop ballad with a singer who sounds emotional and reflective. The song is at a medium tempo. There is a violin embellishment, piano, and some relaxed pop drumming. This song would be heard in a middle eastern movie.", "data_idx": 3731, "number": 2, "label": "country"} +{"file_name": "train_06681.png", "caption": "The song is a middle eastern pop ballad with a singer who sounds emotional and reflective. The song is at a medium tempo. There is a violin embellishment, piano, and some relaxed pop drumming. This song would be heard in a middle eastern movie.", "data_idx": 3731, "number": 3, "label": "country"} +{"file_name": "train_06682.png", "caption": "The low quality recording features a jazz song being played in a big room and it consists of a saxophone solo melody over groovy drums. Due to frequency clashing, it sounds muddy and muffled and it has an unbalanced stereo image, as it was probably recorded with a poor quality microphone. It is still energetic and easygoing at the same time - thanks to that saxophone.", "data_idx": 3733, "number": 0, "label": "classical"} +{"file_name": "train_06683.png", "caption": "The low quality recording features a jazz song being played in a big room and it consists of a saxophone solo melody over groovy drums. Due to frequency clashing, it sounds muddy and muffled and it has an unbalanced stereo image, as it was probably recorded with a poor quality microphone. It is still energetic and easygoing at the same time - thanks to that saxophone.", "data_idx": 3733, "number": 1, "label": "classical"} +{"file_name": "train_06684.png", "caption": "The low quality recording features a jazz song being played in a big room and it consists of a saxophone solo melody over groovy drums. Due to frequency clashing, it sounds muddy and muffled and it has an unbalanced stereo image, as it was probably recorded with a poor quality microphone. It is still energetic and easygoing at the same time - thanks to that saxophone.", "data_idx": 3733, "number": 2, "label": "classical"} +{"file_name": "train_06685.png", "caption": "The low quality recording features a jazz song being played in a big room and it consists of a saxophone solo melody over groovy drums. Due to frequency clashing, it sounds muddy and muffled and it has an unbalanced stereo image, as it was probably recorded with a poor quality microphone. It is still energetic and easygoing at the same time - thanks to that saxophone.", "data_idx": 3733, "number": 3, "label": "classical"} +{"file_name": "train_06686.png", "caption": "A male singer sings this cool spirited melody. The song is medium tempo with a steady drumming rhythm, guitar playing lead, guitar strumming, strong bass line and various percussion hits. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 3735, "number": 0, "label": "rock"} +{"file_name": "train_06687.png", "caption": "A male singer sings this cool spirited melody. The song is medium tempo with a steady drumming rhythm, guitar playing lead, guitar strumming, strong bass line and various percussion hits. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 3735, "number": 1, "label": "rock"} +{"file_name": "train_06688.png", "caption": "A male singer sings this cool spirited melody. The song is medium tempo with a steady drumming rhythm, guitar playing lead, guitar strumming, strong bass line and various percussion hits. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 3735, "number": 2, "label": "rock"} +{"file_name": "train_06689.png", "caption": "A male singer sings this cool spirited melody. The song is medium tempo with a steady drumming rhythm, guitar playing lead, guitar strumming, strong bass line and various percussion hits. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 3735, "number": 3, "label": "rock"} +{"file_name": "train_06690.png", "caption": "Someone is playing an e-guitar with different effects over an acoustic drumgroove. Some of the sounds are panned to the right and left side of the speakers. This song may be playing at home practicing guitar.", "data_idx": 3736, "number": 0, "label": "blues"} +{"file_name": "train_06691.png", "caption": "Someone is playing an e-guitar with different effects over an acoustic drumgroove. Some of the sounds are panned to the right and left side of the speakers. This song may be playing at home practicing guitar.", "data_idx": 3736, "number": 1, "label": "blues"} +{"file_name": "train_06692.png", "caption": "Someone is playing an e-guitar with different effects over an acoustic drumgroove. Some of the sounds are panned to the right and left side of the speakers. This song may be playing at home practicing guitar.", "data_idx": 3736, "number": 2, "label": "blues"} +{"file_name": "train_06693.png", "caption": "Someone is playing an e-guitar with different effects over an acoustic drumgroove. Some of the sounds are panned to the right and left side of the speakers. This song may be playing at home practicing guitar.", "data_idx": 3736, "number": 3, "label": "blues"} +{"file_name": "train_06694.png", "caption": "The classical music features an intense brass section, followed by energetic drums, repetitive suspenseful woodwinds and wide strings melody. It sounds cinematic, epic, powerful, intense and suspenseful - like a background music for a very dynamic scene in a movie.", "data_idx": 3737, "number": 0, "label": "classical"} +{"file_name": "train_06695.png", "caption": "The classical music features an intense brass section, followed by energetic drums, repetitive suspenseful woodwinds and wide strings melody. It sounds cinematic, epic, powerful, intense and suspenseful - like a background music for a very dynamic scene in a movie.", "data_idx": 3737, "number": 1, "label": "classical"} +{"file_name": "train_06696.png", "caption": "The classical music features an intense brass section, followed by energetic drums, repetitive suspenseful woodwinds and wide strings melody. It sounds cinematic, epic, powerful, intense and suspenseful - like a background music for a very dynamic scene in a movie.", "data_idx": 3737, "number": 2, "label": "classical"} +{"file_name": "train_06697.png", "caption": "The classical music features an intense brass section, followed by energetic drums, repetitive suspenseful woodwinds and wide strings melody. It sounds cinematic, epic, powerful, intense and suspenseful - like a background music for a very dynamic scene in a movie.", "data_idx": 3737, "number": 3, "label": "classical"} +{"file_name": "train_06698.png", "caption": "A distorted and arpeggiated e-guitar sequence is repeating the same phrase while a female voice is streaming with an effect on her voice. She sounds aggressive and frustrated. This song may be playing in an aggressive, fast paced action-movie chasing scene.", "data_idx": 3740, "number": 0, "label": "hiphop"} +{"file_name": "train_06699.png", "caption": "A distorted and arpeggiated e-guitar sequence is repeating the same phrase while a female voice is streaming with an effect on her voice. She sounds aggressive and frustrated. This song may be playing in an aggressive, fast paced action-movie chasing scene.", "data_idx": 3740, "number": 1, "label": "hiphop"} +{"file_name": "train_06700.png", "caption": "A distorted and arpeggiated e-guitar sequence is repeating the same phrase while a female voice is streaming with an effect on her voice. She sounds aggressive and frustrated. This song may be playing in an aggressive, fast paced action-movie chasing scene.", "data_idx": 3740, "number": 2, "label": "hiphop"} +{"file_name": "train_06701.png", "caption": "A distorted and arpeggiated e-guitar sequence is repeating the same phrase while a female voice is streaming with an effect on her voice. She sounds aggressive and frustrated. This song may be playing in an aggressive, fast paced action-movie chasing scene.", "data_idx": 3740, "number": 3, "label": "hiphop"} +{"file_name": "train_06702.png", "caption": "This is a Korean indie rock piece. There is a male vocalist in the lead singing melodically. The main tune is being played by an acoustic guitar with an electric guitar and a bass guitar backing. There is a 4/4 slow tempo acoustic drum beat playing in the rhythmic background. The atmosphere is easygoing. This piece could be used in the soundtrack of a drama movie or TV series that takes place in Korea.", "data_idx": 3741, "number": 0, "label": "rock"} +{"file_name": "train_06703.png", "caption": "This is a Korean indie rock piece. There is a male vocalist in the lead singing melodically. The main tune is being played by an acoustic guitar with an electric guitar and a bass guitar backing. There is a 4/4 slow tempo acoustic drum beat playing in the rhythmic background. The atmosphere is easygoing. This piece could be used in the soundtrack of a drama movie or TV series that takes place in Korea.", "data_idx": 3741, "number": 1, "label": "rock"} +{"file_name": "train_06704.png", "caption": "This is a Korean indie rock piece. There is a male vocalist in the lead singing melodically. The main tune is being played by an acoustic guitar with an electric guitar and a bass guitar backing. There is a 4/4 slow tempo acoustic drum beat playing in the rhythmic background. The atmosphere is easygoing. This piece could be used in the soundtrack of a drama movie or TV series that takes place in Korea.", "data_idx": 3741, "number": 2, "label": "rock"} +{"file_name": "train_06705.png", "caption": "This is a Korean indie rock piece. There is a male vocalist in the lead singing melodically. The main tune is being played by an acoustic guitar with an electric guitar and a bass guitar backing. There is a 4/4 slow tempo acoustic drum beat playing in the rhythmic background. The atmosphere is easygoing. This piece could be used in the soundtrack of a drama movie or TV series that takes place in Korea.", "data_idx": 3741, "number": 3, "label": "rock"} +{"file_name": "train_06706.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with digitally arranged music. The music is futuristic, enigmatic, psychedelic, contemporary, and ambient with a dance groove. This is contemporary EDM.", "data_idx": 3742, "number": 0, "label": "reggae"} +{"file_name": "train_06707.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with digitally arranged music. The music is futuristic, enigmatic, psychedelic, contemporary, and ambient with a dance groove. This is contemporary EDM.", "data_idx": 3742, "number": 1, "label": "reggae"} +{"file_name": "train_06708.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with digitally arranged music. The music is futuristic, enigmatic, psychedelic, contemporary, and ambient with a dance groove. This is contemporary EDM.", "data_idx": 3742, "number": 2, "label": "reggae"} +{"file_name": "train_06709.png", "caption": "This music is an electronic instrumental. The tempo is medium fast with digitally arranged music. The music is futuristic, enigmatic, psychedelic, contemporary, and ambient with a dance groove. This is contemporary EDM.", "data_idx": 3742, "number": 3, "label": "reggae"} +{"file_name": "train_06710.png", "caption": "This song features a mellotron playing a melody using a descending bassline. The higher notes stay the same for the first six counts and then change to a descending pattern. This is followed by short arpeggiated notes. The quality of the recording is low. There are no other instruments in this song. This song can be played in a practice session for somebody learning the keyboard.", "data_idx": 3744, "number": 0, "label": "hiphop"} +{"file_name": "train_06711.png", "caption": "This song features a mellotron playing a melody using a descending bassline. The higher notes stay the same for the first six counts and then change to a descending pattern. This is followed by short arpeggiated notes. The quality of the recording is low. There are no other instruments in this song. This song can be played in a practice session for somebody learning the keyboard.", "data_idx": 3744, "number": 1, "label": "hiphop"} +{"file_name": "train_06712.png", "caption": "The song is an instrumental. The tempo is medium with a guitar accompaniment and leads into a strong drumming rhythm and bass line. The song is exciting and energetic. The song is a movie soundtrack for a travel show or a documentary.", "data_idx": 3745, "number": 0, "label": "hiphop"} +{"file_name": "train_06713.png", "caption": "The song is an instrumental. The tempo is medium with a guitar accompaniment and leads into a strong drumming rhythm and bass line. The song is exciting and energetic. The song is a movie soundtrack for a travel show or a documentary.", "data_idx": 3745, "number": 1, "label": "hiphop"} +{"file_name": "train_06714.png", "caption": "Loud sound effects such as smoldering sounds, water splashing, and an explosion. Quick scene transition sound as well a short male laugh. Background score is mellow orchestral featuring a string pad with an oboe taking the lead melody.", "data_idx": 3746, "number": 0, "label": "metal"} +{"file_name": "train_06715.png", "caption": "Loud sound effects such as smoldering sounds, water splashing, and an explosion. Quick scene transition sound as well a short male laugh. Background score is mellow orchestral featuring a string pad with an oboe taking the lead melody.", "data_idx": 3746, "number": 1, "label": "metal"} +{"file_name": "train_06716.png", "caption": "Loud sound effects such as smoldering sounds, water splashing, and an explosion. Quick scene transition sound as well a short male laugh. Background score is mellow orchestral featuring a string pad with an oboe taking the lead melody.", "data_idx": 3746, "number": 2, "label": "metal"} +{"file_name": "train_06717.png", "caption": "Loud sound effects such as smoldering sounds, water splashing, and an explosion. Quick scene transition sound as well a short male laugh. Background score is mellow orchestral featuring a string pad with an oboe taking the lead melody.", "data_idx": 3746, "number": 3, "label": "metal"} +{"file_name": "train_06718.png", "caption": "Some digital kicks with a lot of punch and a strong snare sound can be heard. This is no musical composition or rhythm. it sounds more like someone is trying out sounds. This is an amateur recording.", "data_idx": 3747, "number": 0, "label": "hiphop"} +{"file_name": "train_06719.png", "caption": "Some digital kicks with a lot of punch and a strong snare sound can be heard. This is no musical composition or rhythm. it sounds more like someone is trying out sounds. This is an amateur recording.", "data_idx": 3747, "number": 1, "label": "hiphop"} +{"file_name": "train_06720.png", "caption": "This music is a lively country music instrumental. The tempo is fast and upbeat with a banjo, and an instrument that sounds like a fiddle. The instrument is like pedal steel being played like a fiddle.the music is vibrant, vigorous, vivacious, cheerful, happy, sunny, happy and upbeat. This music is classic Country Pop.", "data_idx": 3748, "number": 0, "label": "classical"} +{"file_name": "train_06721.png", "caption": "This music is a lively country music instrumental. The tempo is fast and upbeat with a banjo, and an instrument that sounds like a fiddle. The instrument is like pedal steel being played like a fiddle.the music is vibrant, vigorous, vivacious, cheerful, happy, sunny, happy and upbeat. This music is classic Country Pop.", "data_idx": 3748, "number": 1, "label": "classical"} +{"file_name": "train_06722.png", "caption": "This music is a lively country music instrumental. The tempo is fast and upbeat with a banjo, and an instrument that sounds like a fiddle. The instrument is like pedal steel being played like a fiddle.the music is vibrant, vigorous, vivacious, cheerful, happy, sunny, happy and upbeat. This music is classic Country Pop.", "data_idx": 3748, "number": 2, "label": "classical"} +{"file_name": "train_06723.png", "caption": "This music is a lively country music instrumental. The tempo is fast and upbeat with a banjo, and an instrument that sounds like a fiddle. The instrument is like pedal steel being played like a fiddle.the music is vibrant, vigorous, vivacious, cheerful, happy, sunny, happy and upbeat. This music is classic Country Pop.", "data_idx": 3748, "number": 3, "label": "classical"} +{"file_name": "train_06724.png", "caption": "A female child singer sings this soaring melody. The song is medium tempo with a steady drum rhythm, groovy bass line, piano accompaniment and keyboard harmony. The song is lilting and inspiring. The song is a pop song with poor audio quality.", "data_idx": 3749, "number": 0, "label": "rock"} +{"file_name": "train_06725.png", "caption": "A female child singer sings this soaring melody. The song is medium tempo with a steady drum rhythm, groovy bass line, piano accompaniment and keyboard harmony. The song is lilting and inspiring. The song is a pop song with poor audio quality.", "data_idx": 3749, "number": 1, "label": "rock"} +{"file_name": "train_06726.png", "caption": "A female child singer sings this soaring melody. The song is medium tempo with a steady drum rhythm, groovy bass line, piano accompaniment and keyboard harmony. The song is lilting and inspiring. The song is a pop song with poor audio quality.", "data_idx": 3749, "number": 2, "label": "rock"} +{"file_name": "train_06727.png", "caption": "A female child singer sings this soaring melody. The song is medium tempo with a steady drum rhythm, groovy bass line, piano accompaniment and keyboard harmony. The song is lilting and inspiring. The song is a pop song with poor audio quality.", "data_idx": 3749, "number": 3, "label": "rock"} +{"file_name": "train_06728.png", "caption": "The low quality recording features a blues song that consists of filtered monotone male vocal singing over groovy bass, groovy organ keys, chords, soft kick hits, punchy snare and shimmering cymbals. The song is poorly mixed, as the vocals are not so much in the face as they should be, probably because the bass is eating the other elements - making it sound boomy.", "data_idx": 3753, "number": 0, "label": "metal"} +{"file_name": "train_06729.png", "caption": "The low quality recording features a blues song that consists of filtered monotone male vocal singing over groovy bass, groovy organ keys, chords, soft kick hits, punchy snare and shimmering cymbals. The song is poorly mixed, as the vocals are not so much in the face as they should be, probably because the bass is eating the other elements - making it sound boomy.", "data_idx": 3753, "number": 1, "label": "metal"} +{"file_name": "train_06730.png", "caption": "The low quality recording features a blues song that consists of filtered monotone male vocal singing over groovy bass, groovy organ keys, chords, soft kick hits, punchy snare and shimmering cymbals. The song is poorly mixed, as the vocals are not so much in the face as they should be, probably because the bass is eating the other elements - making it sound boomy.", "data_idx": 3753, "number": 2, "label": "metal"} +{"file_name": "train_06731.png", "caption": "The low quality recording features a blues song that consists of filtered monotone male vocal singing over groovy bass, groovy organ keys, chords, soft kick hits, punchy snare and shimmering cymbals. The song is poorly mixed, as the vocals are not so much in the face as they should be, probably because the bass is eating the other elements - making it sound boomy.", "data_idx": 3753, "number": 3, "label": "metal"} +{"file_name": "train_06732.png", "caption": "The low quality recording features a cover of a rock song that consists of repetitive acoustic rhythm guitars chord progressions. The progression is played a bit sloppy and the recording is noisy.", "data_idx": 3754, "number": 0, "label": "jazz"} +{"file_name": "train_06733.png", "caption": "The low quality recording features a cover of a rock song that consists of repetitive acoustic rhythm guitars chord progressions. The progression is played a bit sloppy and the recording is noisy.", "data_idx": 3754, "number": 1, "label": "jazz"} +{"file_name": "train_06734.png", "caption": "The low quality recording features a cover of a rock song that consists of repetitive acoustic rhythm guitars chord progressions. The progression is played a bit sloppy and the recording is noisy.", "data_idx": 3754, "number": 2, "label": "jazz"} +{"file_name": "train_06735.png", "caption": "The low quality recording features a cover of a rock song that consists of repetitive acoustic rhythm guitars chord progressions. The progression is played a bit sloppy and the recording is noisy.", "data_idx": 3754, "number": 3, "label": "jazz"} +{"file_name": "train_06736.png", "caption": "This piece contains a modified didgeridoo sound. Sound effects were made to create an atmosphere that is unnatural and ominous. This sound could be used in an outer space dystopian sci-fi movie. It could also be used in a video game that involves robots/automated mechanisms.", "data_idx": 3755, "number": 0, "label": "jazz"} +{"file_name": "train_06737.png", "caption": "This piece contains a modified didgeridoo sound. Sound effects were made to create an atmosphere that is unnatural and ominous. This sound could be used in an outer space dystopian sci-fi movie. It could also be used in a video game that involves robots/automated mechanisms.", "data_idx": 3755, "number": 1, "label": "jazz"} +{"file_name": "train_06738.png", "caption": "This piece contains a modified didgeridoo sound. Sound effects were made to create an atmosphere that is unnatural and ominous. This sound could be used in an outer space dystopian sci-fi movie. It could also be used in a video game that involves robots/automated mechanisms.", "data_idx": 3755, "number": 2, "label": "jazz"} +{"file_name": "train_06739.png", "caption": "This piece contains a modified didgeridoo sound. Sound effects were made to create an atmosphere that is unnatural and ominous. This sound could be used in an outer space dystopian sci-fi movie. It could also be used in a video game that involves robots/automated mechanisms.", "data_idx": 3755, "number": 3, "label": "jazz"} +{"file_name": "train_06740.png", "caption": "Trio recorded live in a concert hall with a loud upright bass, piano and acoustic guitar playing a solo. Jazz feel and chord progression with no drums. Heartfelt performance.", "data_idx": 3756, "number": 0, "label": "classical"} +{"file_name": "train_06741.png", "caption": "Trio recorded live in a concert hall with a loud upright bass, piano and acoustic guitar playing a solo. Jazz feel and chord progression with no drums. Heartfelt performance.", "data_idx": 3756, "number": 1, "label": "classical"} +{"file_name": "train_06742.png", "caption": "Trio recorded live in a concert hall with a loud upright bass, piano and acoustic guitar playing a solo. Jazz feel and chord progression with no drums. Heartfelt performance.", "data_idx": 3756, "number": 2, "label": "classical"} +{"file_name": "train_06743.png", "caption": "Trio recorded live in a concert hall with a loud upright bass, piano and acoustic guitar playing a solo. Jazz feel and chord progression with no drums. Heartfelt performance.", "data_idx": 3756, "number": 3, "label": "classical"} +{"file_name": "train_06744.png", "caption": "The low quality recording features a cover of a rock song and it consists of an electric guitar feedback playing over a live performance instrumental that has crowd cheering, crowd clapping noises, smooth bass guitar, repetitive synth bells melody, punchy snare and kick hits and shimmering tambourine. It sounds emotional and easygoing.", "data_idx": 3758, "number": 0, "label": "metal"} +{"file_name": "train_06745.png", "caption": "The low quality recording features a cover of a rock song and it consists of an electric guitar feedback playing over a live performance instrumental that has crowd cheering, crowd clapping noises, smooth bass guitar, repetitive synth bells melody, punchy snare and kick hits and shimmering tambourine. It sounds emotional and easygoing.", "data_idx": 3758, "number": 1, "label": "metal"} +{"file_name": "train_06746.png", "caption": "The low quality recording features a cover of a rock song and it consists of an electric guitar feedback playing over a live performance instrumental that has crowd cheering, crowd clapping noises, smooth bass guitar, repetitive synth bells melody, punchy snare and kick hits and shimmering tambourine. It sounds emotional and easygoing.", "data_idx": 3758, "number": 2, "label": "metal"} +{"file_name": "train_06747.png", "caption": "The low quality recording features a cover of a rock song and it consists of an electric guitar feedback playing over a live performance instrumental that has crowd cheering, crowd clapping noises, smooth bass guitar, repetitive synth bells melody, punchy snare and kick hits and shimmering tambourine. It sounds emotional and easygoing.", "data_idx": 3758, "number": 3, "label": "metal"} +{"file_name": "train_06748.png", "caption": "The song is background audio of an animated tv show. The song is idyllic and performed by an orchestra with organ playing lead, flutes and rhythm section. The song is of average audio quality. The audio track is animated and cartoon-like.", "data_idx": 3759, "number": 0, "label": "hiphop"} +{"file_name": "train_06749.png", "caption": "The song is background audio of an animated tv show. The song is idyllic and performed by an orchestra with organ playing lead, flutes and rhythm section. The song is of average audio quality. The audio track is animated and cartoon-like.", "data_idx": 3759, "number": 1, "label": "hiphop"} +{"file_name": "train_06750.png", "caption": "The song is background audio of an animated tv show. The song is idyllic and performed by an orchestra with organ playing lead, flutes and rhythm section. The song is of average audio quality. The audio track is animated and cartoon-like.", "data_idx": 3759, "number": 2, "label": "hiphop"} +{"file_name": "train_06751.png", "caption": "The song is background audio of an animated tv show. The song is idyllic and performed by an orchestra with organ playing lead, flutes and rhythm section. The song is of average audio quality. The audio track is animated and cartoon-like.", "data_idx": 3759, "number": 3, "label": "hiphop"} +{"file_name": "train_06752.png", "caption": "The low quality recording features an acoustic guitar tuning string by string. It sounds a bit harsh and loud. Sounds like a tutorial for tuning a guitar.", "data_idx": 3764, "number": 0, "label": "jazz"} +{"file_name": "train_06753.png", "caption": "The low quality recording features an acoustic guitar tuning string by string. It sounds a bit harsh and loud. Sounds like a tutorial for tuning a guitar.", "data_idx": 3764, "number": 1, "label": "jazz"} +{"file_name": "train_06754.png", "caption": "The low quality recording features an acoustic guitar tuning string by string. It sounds a bit harsh and loud. Sounds like a tutorial for tuning a guitar.", "data_idx": 3764, "number": 2, "label": "jazz"} +{"file_name": "train_06755.png", "caption": "The low quality recording features an acoustic guitar tuning string by string. It sounds a bit harsh and loud. Sounds like a tutorial for tuning a guitar.", "data_idx": 3764, "number": 3, "label": "jazz"} +{"file_name": "train_06756.png", "caption": "A female singer sings this vocal monologue. The song is medium tempo with a groovy moog bass line, electro mix keyboard harmony tones, steady drumming rhythm and very quirky electronic tones. The song is groovy and retro dance music.", "data_idx": 3766, "number": 0, "label": "hiphop"} +{"file_name": "train_06757.png", "caption": "A female singer sings this vocal monologue. The song is medium tempo with a groovy moog bass line, electro mix keyboard harmony tones, steady drumming rhythm and very quirky electronic tones. The song is groovy and retro dance music.", "data_idx": 3766, "number": 1, "label": "hiphop"} +{"file_name": "train_06758.png", "caption": "A female singer sings this vocal monologue. The song is medium tempo with a groovy moog bass line, electro mix keyboard harmony tones, steady drumming rhythm and very quirky electronic tones. The song is groovy and retro dance music.", "data_idx": 3766, "number": 2, "label": "hiphop"} +{"file_name": "train_06759.png", "caption": "A female singer sings this vocal monologue. The song is medium tempo with a groovy moog bass line, electro mix keyboard harmony tones, steady drumming rhythm and very quirky electronic tones. The song is groovy and retro dance music.", "data_idx": 3766, "number": 3, "label": "hiphop"} +{"file_name": "train_06760.png", "caption": "This song comes from a music box. The backing melody is repetitive which is played in a set of three notes followed by a set of two notes. The main melody is high pitched and sounds like bells. There are no other instruments in this song.", "data_idx": 3767, "number": 0, "label": "hiphop"} +{"file_name": "train_06761.png", "caption": "This song comes from a music box. The backing melody is repetitive which is played in a set of three notes followed by a set of two notes. The main melody is high pitched and sounds like bells. There are no other instruments in this song.", "data_idx": 3767, "number": 1, "label": "hiphop"} +{"file_name": "train_06762.png", "caption": "This song comes from a music box. The backing melody is repetitive which is played in a set of three notes followed by a set of two notes. The main melody is high pitched and sounds like bells. There are no other instruments in this song.", "data_idx": 3767, "number": 2, "label": "hiphop"} +{"file_name": "train_06763.png", "caption": "This song comes from a music box. The backing melody is repetitive which is played in a set of three notes followed by a set of two notes. The main melody is high pitched and sounds like bells. There are no other instruments in this song.", "data_idx": 3767, "number": 3, "label": "hiphop"} +{"file_name": "train_06764.png", "caption": "Female singers sing in funny animated vocals. The song is medium tempo with a groovy bass line, keyboard accompaniment, arpeggiated harmony tones and steady drumming rhythm. The song is cheerful and energetic. The audio quality is average.", "data_idx": 3770, "number": 0, "label": "disco"} +{"file_name": "train_06765.png", "caption": "Female singers sing in funny animated vocals. The song is medium tempo with a groovy bass line, keyboard accompaniment, arpeggiated harmony tones and steady drumming rhythm. The song is cheerful and energetic. The audio quality is average.", "data_idx": 3770, "number": 1, "label": "disco"} +{"file_name": "train_06766.png", "caption": "Female singers sing in funny animated vocals. The song is medium tempo with a groovy bass line, keyboard accompaniment, arpeggiated harmony tones and steady drumming rhythm. The song is cheerful and energetic. The audio quality is average.", "data_idx": 3770, "number": 2, "label": "disco"} +{"file_name": "train_06767.png", "caption": "Female singers sing in funny animated vocals. The song is medium tempo with a groovy bass line, keyboard accompaniment, arpeggiated harmony tones and steady drumming rhythm. The song is cheerful and energetic. The audio quality is average.", "data_idx": 3770, "number": 3, "label": "disco"} +{"file_name": "train_06768.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with an upbeat Amplified keyboard harmony, hard hitting drums, punchy bass lines and a dominating electric guitar accompaniment. The vocals are subdued for a Rock song. The song is youthful, vibrant, energetic, enthusiastic, buoyant, punchy and vivacious. This song is Classic Hard Rock.", "data_idx": 3772, "number": 0, "label": "metal"} +{"file_name": "train_06769.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with an upbeat Amplified keyboard harmony, hard hitting drums, punchy bass lines and a dominating electric guitar accompaniment. The vocals are subdued for a Rock song. The song is youthful, vibrant, energetic, enthusiastic, buoyant, punchy and vivacious. This song is Classic Hard Rock.", "data_idx": 3772, "number": 1, "label": "metal"} +{"file_name": "train_06770.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with an upbeat Amplified keyboard harmony, hard hitting drums, punchy bass lines and a dominating electric guitar accompaniment. The vocals are subdued for a Rock song. The song is youthful, vibrant, energetic, enthusiastic, buoyant, punchy and vivacious. This song is Classic Hard Rock.", "data_idx": 3772, "number": 2, "label": "metal"} +{"file_name": "train_06771.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with an upbeat Amplified keyboard harmony, hard hitting drums, punchy bass lines and a dominating electric guitar accompaniment. The vocals are subdued for a Rock song. The song is youthful, vibrant, energetic, enthusiastic, buoyant, punchy and vivacious. This song is Classic Hard Rock.", "data_idx": 3772, "number": 3, "label": "metal"} +{"file_name": "train_06772.png", "caption": "This is a Russian hardbass piece played in the background of a scissor sharpening video. The piece has a repeated theme being played by a synth bass while an electronic drum beat holds the rhythmic background. The atmosphere of the piece in the background is aggressive with industrial characteristics.", "data_idx": 3773, "number": 0, "label": "metal"} +{"file_name": "train_06773.png", "caption": "This is a Russian hardbass piece played in the background of a scissor sharpening video. The piece has a repeated theme being played by a synth bass while an electronic drum beat holds the rhythmic background. The atmosphere of the piece in the background is aggressive with industrial characteristics.", "data_idx": 3773, "number": 1, "label": "metal"} +{"file_name": "train_06774.png", "caption": "This is a Russian hardbass piece played in the background of a scissor sharpening video. The piece has a repeated theme being played by a synth bass while an electronic drum beat holds the rhythmic background. The atmosphere of the piece in the background is aggressive with industrial characteristics.", "data_idx": 3773, "number": 2, "label": "metal"} +{"file_name": "train_06775.png", "caption": "This is a Russian hardbass piece played in the background of a scissor sharpening video. The piece has a repeated theme being played by a synth bass while an electronic drum beat holds the rhythmic background. The atmosphere of the piece in the background is aggressive with industrial characteristics.", "data_idx": 3773, "number": 3, "label": "metal"} +{"file_name": "train_06776.png", "caption": "This music is an electronic instrumental.the tempo is slow and monotone with synthesiser arrangements. The harmony is monotone with sounds of an ambulance siren, sighing or yawning in the background. The music is trippy, trance like, hallucinatory and psychedelic.", "data_idx": 3775, "number": 0, "label": "classical"} +{"file_name": "train_06777.png", "caption": "This music is an electronic instrumental.the tempo is slow and monotone with synthesiser arrangements. The harmony is monotone with sounds of an ambulance siren, sighing or yawning in the background. The music is trippy, trance like, hallucinatory and psychedelic.", "data_idx": 3775, "number": 1, "label": "classical"} +{"file_name": "train_06778.png", "caption": "This music is an electronic instrumental.the tempo is slow and monotone with synthesiser arrangements. The harmony is monotone with sounds of an ambulance siren, sighing or yawning in the background. The music is trippy, trance like, hallucinatory and psychedelic.", "data_idx": 3775, "number": 2, "label": "classical"} +{"file_name": "train_06779.png", "caption": "This music is an electronic instrumental.the tempo is slow and monotone with synthesiser arrangements. The harmony is monotone with sounds of an ambulance siren, sighing or yawning in the background. The music is trippy, trance like, hallucinatory and psychedelic.", "data_idx": 3775, "number": 3, "label": "classical"} +{"file_name": "train_06780.png", "caption": "This is a rock music piece with a leading male vocal. The electric guitar is playing the main melody while a simple rock beat is being played by the acoustic drums as the rhythmic background. It has the definitive qualities of 70s American rock music. It could be used in a movie taking place in the 70s. It could also be played at a rock bar or a sports bar in the background.", "data_idx": 3776, "number": 0, "label": "metal"} +{"file_name": "train_06781.png", "caption": "This is a rock music piece with a leading male vocal. The electric guitar is playing the main melody while a simple rock beat is being played by the acoustic drums as the rhythmic background. It has the definitive qualities of 70s American rock music. It could be used in a movie taking place in the 70s. It could also be played at a rock bar or a sports bar in the background.", "data_idx": 3776, "number": 1, "label": "metal"} +{"file_name": "train_06782.png", "caption": "This is a rock music piece with a leading male vocal. The electric guitar is playing the main melody while a simple rock beat is being played by the acoustic drums as the rhythmic background. It has the definitive qualities of 70s American rock music. It could be used in a movie taking place in the 70s. It could also be played at a rock bar or a sports bar in the background.", "data_idx": 3776, "number": 2, "label": "metal"} +{"file_name": "train_06783.png", "caption": "This is a rock music piece with a leading male vocal. The electric guitar is playing the main melody while a simple rock beat is being played by the acoustic drums as the rhythmic background. It has the definitive qualities of 70s American rock music. It could be used in a movie taking place in the 70s. It could also be played at a rock bar or a sports bar in the background.", "data_idx": 3776, "number": 3, "label": "metal"} +{"file_name": "train_06784.png", "caption": "The low quality recording features a live performance of a country song that consists of a steel guitar melody, acoustic rhythm guitar chords and a walking bass guitar. There are some crowd noises in the background by which we can conclude that it is a live performance.", "data_idx": 3778, "number": 0, "label": "classical"} +{"file_name": "train_06785.png", "caption": "The low quality recording features a live performance of a country song that consists of a steel guitar melody, acoustic rhythm guitar chords and a walking bass guitar. There are some crowd noises in the background by which we can conclude that it is a live performance.", "data_idx": 3778, "number": 1, "label": "classical"} +{"file_name": "train_06786.png", "caption": "The low quality recording features a live performance of a country song that consists of a steel guitar melody, acoustic rhythm guitar chords and a walking bass guitar. There are some crowd noises in the background by which we can conclude that it is a live performance.", "data_idx": 3778, "number": 2, "label": "classical"} +{"file_name": "train_06787.png", "caption": "The low quality recording features a live performance of a country song that consists of a steel guitar melody, acoustic rhythm guitar chords and a walking bass guitar. There are some crowd noises in the background by which we can conclude that it is a live performance.", "data_idx": 3778, "number": 3, "label": "classical"} +{"file_name": "train_06788.png", "caption": "This music is an animated instrumental. The. Tempo is fast with an intense electric guitar feedback, powerful backup vocalisation, boomy bass drops, intense drumming, tambourine or shaker beats, keyboard harmony and electric guitar riff. The music is engaging, bustling, energetic, melodious and seems to be burgeoning and increasing. The vocalisation is the backbone of this music, giving it an intense, mystical, impactful and enigmatic vibe. This music is Alternative Rock.", "data_idx": 3779, "number": 0, "label": "metal"} +{"file_name": "train_06789.png", "caption": "This music is an animated instrumental. The. Tempo is fast with an intense electric guitar feedback, powerful backup vocalisation, boomy bass drops, intense drumming, tambourine or shaker beats, keyboard harmony and electric guitar riff. The music is engaging, bustling, energetic, melodious and seems to be burgeoning and increasing. The vocalisation is the backbone of this music, giving it an intense, mystical, impactful and enigmatic vibe. This music is Alternative Rock.", "data_idx": 3779, "number": 1, "label": "metal"} +{"file_name": "train_06790.png", "caption": "This music is an animated instrumental. The. Tempo is fast with an intense electric guitar feedback, powerful backup vocalisation, boomy bass drops, intense drumming, tambourine or shaker beats, keyboard harmony and electric guitar riff. The music is engaging, bustling, energetic, melodious and seems to be burgeoning and increasing. The vocalisation is the backbone of this music, giving it an intense, mystical, impactful and enigmatic vibe. This music is Alternative Rock.", "data_idx": 3779, "number": 2, "label": "metal"} +{"file_name": "train_06791.png", "caption": "This music is an animated instrumental. The. Tempo is fast with an intense electric guitar feedback, powerful backup vocalisation, boomy bass drops, intense drumming, tambourine or shaker beats, keyboard harmony and electric guitar riff. The music is engaging, bustling, energetic, melodious and seems to be burgeoning and increasing. The vocalisation is the backbone of this music, giving it an intense, mystical, impactful and enigmatic vibe. This music is Alternative Rock.", "data_idx": 3779, "number": 3, "label": "metal"} +{"file_name": "train_06792.png", "caption": "This heavy metal song features distortion guitars. One guitar plays power chords. Another guitar is playing a repetitive riff using palm muted arpeggiated notes. The keyboard plays chords in the background. The bass plays the root notes of the chords. The percussion plays a simple beat in common time. It starts off playing the kick and crash followed by three beats on the kick and ride. After four bars, a rock drum roll is played. This song can be played in a superhero movie.", "data_idx": 3781, "number": 0, "label": "metal"} +{"file_name": "train_06793.png", "caption": "This heavy metal song features distortion guitars. One guitar plays power chords. Another guitar is playing a repetitive riff using palm muted arpeggiated notes. The keyboard plays chords in the background. The bass plays the root notes of the chords. The percussion plays a simple beat in common time. It starts off playing the kick and crash followed by three beats on the kick and ride. After four bars, a rock drum roll is played. This song can be played in a superhero movie.", "data_idx": 3781, "number": 1, "label": "metal"} +{"file_name": "train_06794.png", "caption": "This heavy metal song features distortion guitars. One guitar plays power chords. Another guitar is playing a repetitive riff using palm muted arpeggiated notes. The keyboard plays chords in the background. The bass plays the root notes of the chords. The percussion plays a simple beat in common time. It starts off playing the kick and crash followed by three beats on the kick and ride. After four bars, a rock drum roll is played. This song can be played in a superhero movie.", "data_idx": 3781, "number": 2, "label": "metal"} +{"file_name": "train_06795.png", "caption": "This heavy metal song features distortion guitars. One guitar plays power chords. Another guitar is playing a repetitive riff using palm muted arpeggiated notes. The keyboard plays chords in the background. The bass plays the root notes of the chords. The percussion plays a simple beat in common time. It starts off playing the kick and crash followed by three beats on the kick and ride. After four bars, a rock drum roll is played. This song can be played in a superhero movie.", "data_idx": 3781, "number": 3, "label": "metal"} +{"file_name": "train_06796.png", "caption": "The low quality recording features a car engine, tire screeching and pulsating, filter mod synth sound effects, followed by string melody. The weird arrangement of sounds is making it sound chaotic. Sounds like a sync sound for cartoons.", "data_idx": 3783, "number": 0, "label": "hiphop"} +{"file_name": "train_06797.png", "caption": "The low quality recording features a car engine, tire screeching and pulsating, filter mod synth sound effects, followed by string melody. The weird arrangement of sounds is making it sound chaotic. Sounds like a sync sound for cartoons.", "data_idx": 3783, "number": 1, "label": "hiphop"} +{"file_name": "train_06798.png", "caption": "The Hindu Devotional Music features wide mixed harmonized vocals singing a very addictive cadence, followed by flat male vocal, wooden percussive elements and wide sustained synth pad chords. It sounds emotional, passionate and addictive - like something you would sing along to, even if you do now know the words.", "data_idx": 3785, "number": 0, "label": "country"} +{"file_name": "train_06799.png", "caption": "The Hindu Devotional Music features wide mixed harmonized vocals singing a very addictive cadence, followed by flat male vocal, wooden percussive elements and wide sustained synth pad chords. It sounds emotional, passionate and addictive - like something you would sing along to, even if you do now know the words.", "data_idx": 3785, "number": 1, "label": "country"} +{"file_name": "train_06800.png", "caption": "The Hindu Devotional Music features wide mixed harmonized vocals singing a very addictive cadence, followed by flat male vocal, wooden percussive elements and wide sustained synth pad chords. It sounds emotional, passionate and addictive - like something you would sing along to, even if you do now know the words.", "data_idx": 3785, "number": 2, "label": "country"} +{"file_name": "train_06801.png", "caption": "The Hindu Devotional Music features wide mixed harmonized vocals singing a very addictive cadence, followed by flat male vocal, wooden percussive elements and wide sustained synth pad chords. It sounds emotional, passionate and addictive - like something you would sing along to, even if you do now know the words.", "data_idx": 3785, "number": 3, "label": "country"} +{"file_name": "train_06802.png", "caption": "The Metal song features wide aggressive distorted electric guitars, punchy kick and snare hits, energetic crash cymbals, simple hi hats, groovy bass guitar, sustained synth pad melody and passionate female vocals singing over it. It sounds energetic, powerful, manic and aggressive - especially in the first part of the loop where there is a drum break.", "data_idx": 3786, "number": 0, "label": "metal"} +{"file_name": "train_06803.png", "caption": "The Metal song features wide aggressive distorted electric guitars, punchy kick and snare hits, energetic crash cymbals, simple hi hats, groovy bass guitar, sustained synth pad melody and passionate female vocals singing over it. It sounds energetic, powerful, manic and aggressive - especially in the first part of the loop where there is a drum break.", "data_idx": 3786, "number": 1, "label": "metal"} +{"file_name": "train_06804.png", "caption": "The Metal song features wide aggressive distorted electric guitars, punchy kick and snare hits, energetic crash cymbals, simple hi hats, groovy bass guitar, sustained synth pad melody and passionate female vocals singing over it. It sounds energetic, powerful, manic and aggressive - especially in the first part of the loop where there is a drum break.", "data_idx": 3786, "number": 2, "label": "metal"} +{"file_name": "train_06805.png", "caption": "The Metal song features wide aggressive distorted electric guitars, punchy kick and snare hits, energetic crash cymbals, simple hi hats, groovy bass guitar, sustained synth pad melody and passionate female vocals singing over it. It sounds energetic, powerful, manic and aggressive - especially in the first part of the loop where there is a drum break.", "data_idx": 3786, "number": 3, "label": "metal"} +{"file_name": "train_06806.png", "caption": "A male voice is singing loud and soulfully. A saxophone is playing a slight variation of the singer's melody. A piano is playing bluesy/jazzy chord chops accompanied by an electric organ playing along with the melody. Panned to the left side of the speaker, a e-guitar is playing one single chord as a rhythmic element. The e-bass is playing a line along with a simple rimshot and shakers that are barely noticeable. This song may be playing at a live concert.", "data_idx": 3789, "number": 0, "label": "reggae"} +{"file_name": "train_06807.png", "caption": "A male voice is singing loud and soulfully. A saxophone is playing a slight variation of the singer's melody. A piano is playing bluesy/jazzy chord chops accompanied by an electric organ playing along with the melody. Panned to the left side of the speaker, a e-guitar is playing one single chord as a rhythmic element. The e-bass is playing a line along with a simple rimshot and shakers that are barely noticeable. This song may be playing at a live concert.", "data_idx": 3789, "number": 1, "label": "reggae"} +{"file_name": "train_06808.png", "caption": "A male voice is singing loud and soulfully. A saxophone is playing a slight variation of the singer's melody. A piano is playing bluesy/jazzy chord chops accompanied by an electric organ playing along with the melody. Panned to the left side of the speaker, a e-guitar is playing one single chord as a rhythmic element. The e-bass is playing a line along with a simple rimshot and shakers that are barely noticeable. This song may be playing at a live concert.", "data_idx": 3789, "number": 2, "label": "reggae"} +{"file_name": "train_06809.png", "caption": "A male voice is singing loud and soulfully. A saxophone is playing a slight variation of the singer's melody. A piano is playing bluesy/jazzy chord chops accompanied by an electric organ playing along with the melody. Panned to the left side of the speaker, a e-guitar is playing one single chord as a rhythmic element. The e-bass is playing a line along with a simple rimshot and shakers that are barely noticeable. This song may be playing at a live concert.", "data_idx": 3789, "number": 3, "label": "reggae"} +{"file_name": "train_06810.png", "caption": "The clip features a popular jingle played in a low-quality polyphonic style. There is an outdoor ambiance to the clip. The sounds are bright, high pitched, tinny.", "data_idx": 3790, "number": 0, "label": "hiphop"} +{"file_name": "train_06811.png", "caption": "The clip features a popular jingle played in a low-quality polyphonic style. There is an outdoor ambiance to the clip. The sounds are bright, high pitched, tinny.", "data_idx": 3790, "number": 1, "label": "hiphop"} +{"file_name": "train_06812.png", "caption": "The clip features a popular jingle played in a low-quality polyphonic style. There is an outdoor ambiance to the clip. The sounds are bright, high pitched, tinny.", "data_idx": 3790, "number": 2, "label": "hiphop"} +{"file_name": "train_06813.png", "caption": "The clip features a popular jingle played in a low-quality polyphonic style. There is an outdoor ambiance to the clip. The sounds are bright, high pitched, tinny.", "data_idx": 3790, "number": 3, "label": "hiphop"} +{"file_name": "train_06814.png", "caption": "The song is an instrumental. The song is medium tempo with ethereal harmony tones that fade gently. The song is psychedelic and soul searching. The song quality is poor. The song is very emotional and haunting.", "data_idx": 3791, "number": 0, "label": "hiphop"} +{"file_name": "train_06815.png", "caption": "The song is an instrumental. The song is medium tempo with ethereal harmony tones that fade gently. The song is psychedelic and soul searching. The song quality is poor. The song is very emotional and haunting.", "data_idx": 3791, "number": 1, "label": "hiphop"} +{"file_name": "train_06816.png", "caption": "The song is an instrumental. The song is medium tempo with ethereal harmony tones that fade gently. The song is psychedelic and soul searching. The song quality is poor. The song is very emotional and haunting.", "data_idx": 3791, "number": 2, "label": "hiphop"} +{"file_name": "train_06817.png", "caption": "The song is an instrumental. The song is medium tempo with ethereal harmony tones that fade gently. The song is psychedelic and soul searching. The song quality is poor. The song is very emotional and haunting.", "data_idx": 3791, "number": 3, "label": "hiphop"} +{"file_name": "train_06818.png", "caption": "This clip features 2 distortion guitars playing a metal song. A high pitched male voice sings the main melody. This is accompanied by percussion playing a simple rock beat in common time. A bass guitar plays a bassline with a descending run. The distortion guitars play power chords followed by a guitar lick. One of the guitars plays one chord a little after the other guitar making it sound dissonant. This song can be played in an action movie.", "data_idx": 3793, "number": 0, "label": "metal"} +{"file_name": "train_06819.png", "caption": "This clip features 2 distortion guitars playing a metal song. A high pitched male voice sings the main melody. This is accompanied by percussion playing a simple rock beat in common time. A bass guitar plays a bassline with a descending run. The distortion guitars play power chords followed by a guitar lick. One of the guitars plays one chord a little after the other guitar making it sound dissonant. This song can be played in an action movie.", "data_idx": 3793, "number": 1, "label": "metal"} +{"file_name": "train_06820.png", "caption": "This clip features 2 distortion guitars playing a metal song. A high pitched male voice sings the main melody. This is accompanied by percussion playing a simple rock beat in common time. A bass guitar plays a bassline with a descending run. The distortion guitars play power chords followed by a guitar lick. One of the guitars plays one chord a little after the other guitar making it sound dissonant. This song can be played in an action movie.", "data_idx": 3793, "number": 2, "label": "metal"} +{"file_name": "train_06821.png", "caption": "This clip features 2 distortion guitars playing a metal song. A high pitched male voice sings the main melody. This is accompanied by percussion playing a simple rock beat in common time. A bass guitar plays a bassline with a descending run. The distortion guitars play power chords followed by a guitar lick. One of the guitars plays one chord a little after the other guitar making it sound dissonant. This song can be played in an action movie.", "data_idx": 3793, "number": 3, "label": "metal"} +{"file_name": "train_06822.png", "caption": "The low quality recording features a live performance of a rock song and it features a passionate male vocal singing over groovy double bass, acoustic rhythm guitar, plucked violin melody and simple piano chords. It sounds reverberant, emotional, groovy and smooth - like something you would sing along to at the concert.", "data_idx": 3794, "number": 0, "label": "rock"} +{"file_name": "train_06823.png", "caption": "The low quality recording features a live performance of a rock song and it features a passionate male vocal singing over groovy double bass, acoustic rhythm guitar, plucked violin melody and simple piano chords. It sounds reverberant, emotional, groovy and smooth - like something you would sing along to at the concert.", "data_idx": 3794, "number": 1, "label": "rock"} +{"file_name": "train_06824.png", "caption": "The low quality recording features a live performance of a rock song and it features a passionate male vocal singing over groovy double bass, acoustic rhythm guitar, plucked violin melody and simple piano chords. It sounds reverberant, emotional, groovy and smooth - like something you would sing along to at the concert.", "data_idx": 3794, "number": 2, "label": "rock"} +{"file_name": "train_06825.png", "caption": "The low quality recording features a live performance of a rock song and it features a passionate male vocal singing over groovy double bass, acoustic rhythm guitar, plucked violin melody and simple piano chords. It sounds reverberant, emotional, groovy and smooth - like something you would sing along to at the concert.", "data_idx": 3794, "number": 3, "label": "rock"} diff --git a/data/train/metadata_0014.jsonl b/data/train/metadata_0014.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d59b5faa5d553b7853b8ac9edc53fb3a7e67d3ca --- /dev/null +++ b/data/train/metadata_0014.jsonl @@ -0,0 +1,408 @@ +{"file_name": "train_06826.png", "caption": "The Soft rock song features a mellow female vocal singing the same melody as the lead electric guitar, followed by widely spread acoustic rhythm guitars, simple bass, soft kick hits, punchy snare, simple hi hats, shimmering open hats and energetic crash cymbals. There is a short snare roll at some point in the loop. The stereo bass guitar is what makes the stereo image imbalance and therefore the song sounds lower in quality.", "data_idx": 3802, "number": 0, "label": "rock"} +{"file_name": "train_06827.png", "caption": "The Soft rock song features a mellow female vocal singing the same melody as the lead electric guitar, followed by widely spread acoustic rhythm guitars, simple bass, soft kick hits, punchy snare, simple hi hats, shimmering open hats and energetic crash cymbals. There is a short snare roll at some point in the loop. The stereo bass guitar is what makes the stereo image imbalance and therefore the song sounds lower in quality.", "data_idx": 3802, "number": 1, "label": "rock"} +{"file_name": "train_06828.png", "caption": "The Soft rock song features a mellow female vocal singing the same melody as the lead electric guitar, followed by widely spread acoustic rhythm guitars, simple bass, soft kick hits, punchy snare, simple hi hats, shimmering open hats and energetic crash cymbals. There is a short snare roll at some point in the loop. The stereo bass guitar is what makes the stereo image imbalance and therefore the song sounds lower in quality.", "data_idx": 3802, "number": 2, "label": "rock"} +{"file_name": "train_06829.png", "caption": "The Soft rock song features a mellow female vocal singing the same melody as the lead electric guitar, followed by widely spread acoustic rhythm guitars, simple bass, soft kick hits, punchy snare, simple hi hats, shimmering open hats and energetic crash cymbals. There is a short snare roll at some point in the loop. The stereo bass guitar is what makes the stereo image imbalance and therefore the song sounds lower in quality.", "data_idx": 3802, "number": 3, "label": "rock"} +{"file_name": "train_06830.png", "caption": "Classic sped up video game music with vacuum sounds juxtaposed by 80's hard rock hair metal and thunder sounds effects.", "data_idx": 3804, "number": 0, "label": "hiphop"} +{"file_name": "train_06831.png", "caption": "Classic sped up video game music with vacuum sounds juxtaposed by 80's hard rock hair metal and thunder sounds effects.", "data_idx": 3804, "number": 1, "label": "hiphop"} +{"file_name": "train_06832.png", "caption": "Classic sped up video game music with vacuum sounds juxtaposed by 80's hard rock hair metal and thunder sounds effects.", "data_idx": 3804, "number": 2, "label": "hiphop"} +{"file_name": "train_06833.png", "caption": "Classic sped up video game music with vacuum sounds juxtaposed by 80's hard rock hair metal and thunder sounds effects.", "data_idx": 3804, "number": 3, "label": "hiphop"} +{"file_name": "train_06834.png", "caption": "This is a rock music piece. The male vocalist is singing melodically in the Spanish language. The keyboard is playing the chords of the song while the electric guitar joins with the occasional fills. There is a relatively quiet bass guitar supporting them in the background. The acoustic drums provide a basic rock beat for the rhythm. It has an easygoing feeling. This piece could be used in a teenage drama taking place in a Spanish-speaking country.", "data_idx": 3805, "number": 0, "label": "disco"} +{"file_name": "train_06835.png", "caption": "This is a rock music piece. The male vocalist is singing melodically in the Spanish language. The keyboard is playing the chords of the song while the electric guitar joins with the occasional fills. There is a relatively quiet bass guitar supporting them in the background. The acoustic drums provide a basic rock beat for the rhythm. It has an easygoing feeling. This piece could be used in a teenage drama taking place in a Spanish-speaking country.", "data_idx": 3805, "number": 1, "label": "disco"} +{"file_name": "train_06836.png", "caption": "This is a rock music piece. The male vocalist is singing melodically in the Spanish language. The keyboard is playing the chords of the song while the electric guitar joins with the occasional fills. There is a relatively quiet bass guitar supporting them in the background. The acoustic drums provide a basic rock beat for the rhythm. It has an easygoing feeling. This piece could be used in a teenage drama taking place in a Spanish-speaking country.", "data_idx": 3805, "number": 2, "label": "disco"} +{"file_name": "train_06837.png", "caption": "This is a rock music piece. The male vocalist is singing melodically in the Spanish language. The keyboard is playing the chords of the song while the electric guitar joins with the occasional fills. There is a relatively quiet bass guitar supporting them in the background. The acoustic drums provide a basic rock beat for the rhythm. It has an easygoing feeling. This piece could be used in a teenage drama taking place in a Spanish-speaking country.", "data_idx": 3805, "number": 3, "label": "disco"} +{"file_name": "train_06838.png", "caption": "The low quality recording features a pop song that consists of filtered, wide female vocal singing over mellow piano chords, sustained strings melody and filtered drums located in the left channel of the stereo image. At the very beginning there is a snap sound and at the end, there is a short snippet of another section which contains punchy kicks layered with energetic crash cymbals and arpeggiated synth melody. It sounds emotional and energetic, even though it sounds kind of papery and thin, since it lacks lower frequencies.", "data_idx": 3806, "number": 0, "label": "disco"} +{"file_name": "train_06839.png", "caption": "The low quality recording features a pop song that consists of filtered, wide female vocal singing over mellow piano chords, sustained strings melody and filtered drums located in the left channel of the stereo image. At the very beginning there is a snap sound and at the end, there is a short snippet of another section which contains punchy kicks layered with energetic crash cymbals and arpeggiated synth melody. It sounds emotional and energetic, even though it sounds kind of papery and thin, since it lacks lower frequencies.", "data_idx": 3806, "number": 1, "label": "disco"} +{"file_name": "train_06840.png", "caption": "The low quality recording features a pop song that consists of filtered, wide female vocal singing over mellow piano chords, sustained strings melody and filtered drums located in the left channel of the stereo image. At the very beginning there is a snap sound and at the end, there is a short snippet of another section which contains punchy kicks layered with energetic crash cymbals and arpeggiated synth melody. It sounds emotional and energetic, even though it sounds kind of papery and thin, since it lacks lower frequencies.", "data_idx": 3806, "number": 2, "label": "disco"} +{"file_name": "train_06841.png", "caption": "The low quality recording features a pop song that consists of filtered, wide female vocal singing over mellow piano chords, sustained strings melody and filtered drums located in the left channel of the stereo image. At the very beginning there is a snap sound and at the end, there is a short snippet of another section which contains punchy kicks layered with energetic crash cymbals and arpeggiated synth melody. It sounds emotional and energetic, even though it sounds kind of papery and thin, since it lacks lower frequencies.", "data_idx": 3806, "number": 3, "label": "disco"} +{"file_name": "train_06842.png", "caption": "This song is full of fast paced rhythm being played by percussion and a drumset. An e-guitar is playing a fast repeating melody with little changes along with an e-piano playing chords and melody. The e-bass is playing a groove along with the drums that sounds inviting to dance along. In the background you can hear voices cheering. This song may be playing live.", "data_idx": 3809, "number": 0, "label": "reggae"} +{"file_name": "train_06843.png", "caption": "This song is full of fast paced rhythm being played by percussion and a drumset. An e-guitar is playing a fast repeating melody with little changes along with an e-piano playing chords and melody. The e-bass is playing a groove along with the drums that sounds inviting to dance along. In the background you can hear voices cheering. This song may be playing live.", "data_idx": 3809, "number": 1, "label": "reggae"} +{"file_name": "train_06844.png", "caption": "Someone is playing tablas and a tambourine along with string instruments playing a melody in the background. The male higher register voice is singing the same melody as the string instruments. This song may be playing in an old hindi movie-scene.", "data_idx": 3813, "number": 0, "label": "country"} +{"file_name": "train_06845.png", "caption": "Someone is playing tablas and a tambourine along with string instruments playing a melody in the background. The male higher register voice is singing the same melody as the string instruments. This song may be playing in an old hindi movie-scene.", "data_idx": 3813, "number": 1, "label": "country"} +{"file_name": "train_06846.png", "caption": "Someone is playing tablas and a tambourine along with string instruments playing a melody in the background. The male higher register voice is singing the same melody as the string instruments. This song may be playing in an old hindi movie-scene.", "data_idx": 3813, "number": 2, "label": "country"} +{"file_name": "train_06847.png", "caption": "Someone is playing tablas and a tambourine along with string instruments playing a melody in the background. The male higher register voice is singing the same melody as the string instruments. This song may be playing in an old hindi movie-scene.", "data_idx": 3813, "number": 3, "label": "country"} +{"file_name": "train_06848.png", "caption": "Audio of an artificial solo guitar tuning two single notes, Ab and Db, one note at a time. No other instrumentation. For guitar tuning.", "data_idx": 3814, "number": 0, "label": "blues"} +{"file_name": "train_06849.png", "caption": "Audio of an artificial solo guitar tuning two single notes, Ab and Db, one note at a time. No other instrumentation. For guitar tuning.", "data_idx": 3814, "number": 1, "label": "blues"} +{"file_name": "train_06850.png", "caption": "Audio of an artificial solo guitar tuning two single notes, Ab and Db, one note at a time. No other instrumentation. For guitar tuning.", "data_idx": 3814, "number": 2, "label": "blues"} +{"file_name": "train_06851.png", "caption": "Audio of an artificial solo guitar tuning two single notes, Ab and Db, one note at a time. No other instrumentation. For guitar tuning.", "data_idx": 3814, "number": 3, "label": "blues"} +{"file_name": "train_06852.png", "caption": "Someone is playing an acoustic guitar while a male voice in the mid range is singing accompanied by kids singing with him. This is an amateur recording. This song may be playing live in a school during music class.", "data_idx": 3815, "number": 0, "label": "country"} +{"file_name": "train_06853.png", "caption": "Someone is playing an acoustic guitar while a male voice in the mid range is singing accompanied by kids singing with him. This is an amateur recording. This song may be playing live in a school during music class.", "data_idx": 3815, "number": 1, "label": "country"} +{"file_name": "train_06854.png", "caption": "Someone is playing an acoustic guitar while a male voice in the mid range is singing accompanied by kids singing with him. This is an amateur recording. This song may be playing live in a school during music class.", "data_idx": 3815, "number": 2, "label": "country"} +{"file_name": "train_06855.png", "caption": "Someone is playing an acoustic guitar while a male voice in the mid range is singing accompanied by kids singing with him. This is an amateur recording. This song may be playing live in a school during music class.", "data_idx": 3815, "number": 3, "label": "country"} +{"file_name": "train_06856.png", "caption": "There is a high-pitched computer-like sound effect in the piece. It gives this cold, uneasy feeling. It could be used in a cyberpunk video game or a dystopian movie.", "data_idx": 3817, "number": 0, "label": "hiphop"} +{"file_name": "train_06857.png", "caption": "There is a high-pitched computer-like sound effect in the piece. It gives this cold, uneasy feeling. It could be used in a cyberpunk video game or a dystopian movie.", "data_idx": 3817, "number": 1, "label": "hiphop"} +{"file_name": "train_06858.png", "caption": "There is a high-pitched computer-like sound effect in the piece. It gives this cold, uneasy feeling. It could be used in a cyberpunk video game or a dystopian movie.", "data_idx": 3817, "number": 2, "label": "hiphop"} +{"file_name": "train_06859.png", "caption": "There is a high-pitched computer-like sound effect in the piece. It gives this cold, uneasy feeling. It could be used in a cyberpunk video game or a dystopian movie.", "data_idx": 3817, "number": 3, "label": "hiphop"} +{"file_name": "train_06860.png", "caption": "The music features a glockenspiel playing a melody that starts off with a few notes and then develops into a fast-note arpeggio melody. Electronic sounds accompany the glockenspiel with a style that combines bass notes on beats one and three and chords on beats two and four. The whole atmosphere is playful.", "data_idx": 3820, "number": 0, "label": "reggae"} +{"file_name": "train_06861.png", "caption": "The music features a glockenspiel playing a melody that starts off with a few notes and then develops into a fast-note arpeggio melody. Electronic sounds accompany the glockenspiel with a style that combines bass notes on beats one and three and chords on beats two and four. The whole atmosphere is playful.", "data_idx": 3820, "number": 1, "label": "reggae"} +{"file_name": "train_06862.png", "caption": "The music features a glockenspiel playing a melody that starts off with a few notes and then develops into a fast-note arpeggio melody. Electronic sounds accompany the glockenspiel with a style that combines bass notes on beats one and three and chords on beats two and four. The whole atmosphere is playful.", "data_idx": 3820, "number": 2, "label": "reggae"} +{"file_name": "train_06863.png", "caption": "The music features a glockenspiel playing a melody that starts off with a few notes and then develops into a fast-note arpeggio melody. Electronic sounds accompany the glockenspiel with a style that combines bass notes on beats one and three and chords on beats two and four. The whole atmosphere is playful.", "data_idx": 3820, "number": 3, "label": "reggae"} +{"file_name": "train_06864.png", "caption": "This song contains digital, dubstep drums with a straight hi hat playing 8th notes. An aggressive bass sound full of modulation and other samples is playing a melody with a lot of pitch shifts and stutter effects. A voice sample is being used with a lot of reverb and delay as an atmospheric element. Some sounds are being arpeggiated playing a fast melody before leaving the scenario again. This song may be playing in an extreme sports advertisement.", "data_idx": 3822, "number": 0, "label": "hiphop"} +{"file_name": "train_06865.png", "caption": "This song contains digital, dubstep drums with a straight hi hat playing 8th notes. An aggressive bass sound full of modulation and other samples is playing a melody with a lot of pitch shifts and stutter effects. A voice sample is being used with a lot of reverb and delay as an atmospheric element. Some sounds are being arpeggiated playing a fast melody before leaving the scenario again. This song may be playing in an extreme sports advertisement.", "data_idx": 3822, "number": 1, "label": "hiphop"} +{"file_name": "train_06866.png", "caption": "This song contains digital, dubstep drums with a straight hi hat playing 8th notes. An aggressive bass sound full of modulation and other samples is playing a melody with a lot of pitch shifts and stutter effects. A voice sample is being used with a lot of reverb and delay as an atmospheric element. Some sounds are being arpeggiated playing a fast melody before leaving the scenario again. This song may be playing in an extreme sports advertisement.", "data_idx": 3822, "number": 2, "label": "hiphop"} +{"file_name": "train_06867.png", "caption": "This song contains digital, dubstep drums with a straight hi hat playing 8th notes. An aggressive bass sound full of modulation and other samples is playing a melody with a lot of pitch shifts and stutter effects. A voice sample is being used with a lot of reverb and delay as an atmospheric element. Some sounds are being arpeggiated playing a fast melody before leaving the scenario again. This song may be playing in an extreme sports advertisement.", "data_idx": 3822, "number": 3, "label": "hiphop"} +{"file_name": "train_06868.png", "caption": "An acoustic guitar and a piano are playing the same chords as single notes with strings underlining the composition. A female voice is singing, sounding fragile and sad. This song may be playing during a sad movie scene.", "data_idx": 3823, "number": 0, "label": "rock"} +{"file_name": "train_06869.png", "caption": "An acoustic guitar and a piano are playing the same chords as single notes with strings underlining the composition. A female voice is singing, sounding fragile and sad. This song may be playing during a sad movie scene.", "data_idx": 3823, "number": 1, "label": "rock"} +{"file_name": "train_06870.png", "caption": "An acoustic guitar and a piano are playing the same chords as single notes with strings underlining the composition. A female voice is singing, sounding fragile and sad. This song may be playing during a sad movie scene.", "data_idx": 3823, "number": 2, "label": "rock"} +{"file_name": "train_06871.png", "caption": "An acoustic guitar and a piano are playing the same chords as single notes with strings underlining the composition. A female voice is singing, sounding fragile and sad. This song may be playing during a sad movie scene.", "data_idx": 3823, "number": 3, "label": "rock"} +{"file_name": "train_06872.png", "caption": "The low quality recording features an afrobeats song played on speaker in a medium size room, and it consists at least syncopated rimshots, shimmering open hats, synth keys melody, groovy bass, repetitive male vocal melody and harmonizing vocals layered with it. Even though the recording is noisy, thin, messy and in mono, it still sounds groovy and like something you would want to dance to.", "data_idx": 3825, "number": 0, "label": "classical"} +{"file_name": "train_06873.png", "caption": "The low quality recording features an afrobeats song played on speaker in a medium size room, and it consists at least syncopated rimshots, shimmering open hats, synth keys melody, groovy bass, repetitive male vocal melody and harmonizing vocals layered with it. Even though the recording is noisy, thin, messy and in mono, it still sounds groovy and like something you would want to dance to.", "data_idx": 3825, "number": 1, "label": "classical"} +{"file_name": "train_06874.png", "caption": "The low quality recording features an afrobeats song played on speaker in a medium size room, and it consists at least syncopated rimshots, shimmering open hats, synth keys melody, groovy bass, repetitive male vocal melody and harmonizing vocals layered with it. Even though the recording is noisy, thin, messy and in mono, it still sounds groovy and like something you would want to dance to.", "data_idx": 3825, "number": 2, "label": "classical"} +{"file_name": "train_06875.png", "caption": "The low quality recording features an afrobeats song played on speaker in a medium size room, and it consists at least syncopated rimshots, shimmering open hats, synth keys melody, groovy bass, repetitive male vocal melody and harmonizing vocals layered with it. Even though the recording is noisy, thin, messy and in mono, it still sounds groovy and like something you would want to dance to.", "data_idx": 3825, "number": 3, "label": "classical"} +{"file_name": "train_06876.png", "caption": "A male vocalist sings this rap. The tempo is medium with the keyboard harmony, digital drum rhythm and boomy bass. The song is passionate, youthful, emotional, buoyant, insightful, intense and story telling in a rhythmic patter. This song is contemporary Rap/Hip.", "data_idx": 3827, "number": 0, "label": "hiphop"} +{"file_name": "train_06877.png", "caption": "A male vocalist sings this rap. The tempo is medium with the keyboard harmony, digital drum rhythm and boomy bass. The song is passionate, youthful, emotional, buoyant, insightful, intense and story telling in a rhythmic patter. This song is contemporary Rap/Hip.", "data_idx": 3827, "number": 1, "label": "hiphop"} +{"file_name": "train_06878.png", "caption": "A male vocalist sings this rap. The tempo is medium with the keyboard harmony, digital drum rhythm and boomy bass. The song is passionate, youthful, emotional, buoyant, insightful, intense and story telling in a rhythmic patter. This song is contemporary Rap/Hip.", "data_idx": 3827, "number": 2, "label": "hiphop"} +{"file_name": "train_06879.png", "caption": "A male vocalist sings this rap. The tempo is medium with the keyboard harmony, digital drum rhythm and boomy bass. The song is passionate, youthful, emotional, buoyant, insightful, intense and story telling in a rhythmic patter. This song is contemporary Rap/Hip.", "data_idx": 3827, "number": 3, "label": "hiphop"} +{"file_name": "train_06880.png", "caption": "This is a chant to a deity that is venerated in Yoruba, Candomble and Santeria religions. There are many people chanting in a devotional manner to this deity. There are a lot of percussive elements playing intertwined syncopations. The conflict of all the sounds and voices make the piece sound like a scene from a pandemonium. This piece can be used in a nightmare sequence at a horror movie.", "data_idx": 3828, "number": 0, "label": "metal"} +{"file_name": "train_06881.png", "caption": "This is a chant to a deity that is venerated in Yoruba, Candomble and Santeria religions. There are many people chanting in a devotional manner to this deity. There are a lot of percussive elements playing intertwined syncopations. The conflict of all the sounds and voices make the piece sound like a scene from a pandemonium. This piece can be used in a nightmare sequence at a horror movie.", "data_idx": 3828, "number": 1, "label": "metal"} +{"file_name": "train_06882.png", "caption": "This is a chant to a deity that is venerated in Yoruba, Candomble and Santeria religions. There are many people chanting in a devotional manner to this deity. There are a lot of percussive elements playing intertwined syncopations. The conflict of all the sounds and voices make the piece sound like a scene from a pandemonium. This piece can be used in a nightmare sequence at a horror movie.", "data_idx": 3828, "number": 2, "label": "metal"} +{"file_name": "train_06883.png", "caption": "This is a chant to a deity that is venerated in Yoruba, Candomble and Santeria religions. There are many people chanting in a devotional manner to this deity. There are a lot of percussive elements playing intertwined syncopations. The conflict of all the sounds and voices make the piece sound like a scene from a pandemonium. This piece can be used in a nightmare sequence at a horror movie.", "data_idx": 3828, "number": 3, "label": "metal"} +{"file_name": "train_06884.png", "caption": "A string section is playing a melody in the mid to high register. A bansuri flute is playing the same melody along. Digital and acoustic drum/percussion elements are playing a beat that does not occupy a lot of space. A male voice is singing at a higher pitch. This song may be playing in a hindi-movie.", "data_idx": 3829, "number": 0, "label": "country"} +{"file_name": "train_06885.png", "caption": "A string section is playing a melody in the mid to high register. A bansuri flute is playing the same melody along. Digital and acoustic drum/percussion elements are playing a beat that does not occupy a lot of space. A male voice is singing at a higher pitch. This song may be playing in a hindi-movie.", "data_idx": 3829, "number": 1, "label": "country"} +{"file_name": "train_06886.png", "caption": "A string section is playing a melody in the mid to high register. A bansuri flute is playing the same melody along. Digital and acoustic drum/percussion elements are playing a beat that does not occupy a lot of space. A male voice is singing at a higher pitch. This song may be playing in a hindi-movie.", "data_idx": 3829, "number": 2, "label": "country"} +{"file_name": "train_06887.png", "caption": "A string section is playing a melody in the mid to high register. A bansuri flute is playing the same melody along. Digital and acoustic drum/percussion elements are playing a beat that does not occupy a lot of space. A male voice is singing at a higher pitch. This song may be playing in a hindi-movie.", "data_idx": 3829, "number": 3, "label": "country"} +{"file_name": "train_06888.png", "caption": "This is a meditation piece. There are waves in the background sounding similar to sine waves. There is an evolving synth signifying a passage. There are various sound effects, especially in high pitch. There is a hypnotizing aura. This piece could be used in the background of a meditation video.", "data_idx": 3830, "number": 0, "label": "blues"} +{"file_name": "train_06889.png", "caption": "This is a meditation piece. There are waves in the background sounding similar to sine waves. There is an evolving synth signifying a passage. There are various sound effects, especially in high pitch. There is a hypnotizing aura. This piece could be used in the background of a meditation video.", "data_idx": 3830, "number": 1, "label": "blues"} +{"file_name": "train_06890.png", "caption": "This is a meditation piece. There are waves in the background sounding similar to sine waves. There is an evolving synth signifying a passage. There are various sound effects, especially in high pitch. There is a hypnotizing aura. This piece could be used in the background of a meditation video.", "data_idx": 3830, "number": 2, "label": "blues"} +{"file_name": "train_06891.png", "caption": "This is a meditation piece. There are waves in the background sounding similar to sine waves. There is an evolving synth signifying a passage. There are various sound effects, especially in high pitch. There is a hypnotizing aura. This piece could be used in the background of a meditation video.", "data_idx": 3830, "number": 3, "label": "blues"} +{"file_name": "train_06892.png", "caption": "This is a live performance of an art song piece. There is a male vocalist singing as if he is performing a role at a theater play. The grand piano is playing a melodic accompaniment piece in the background to support the vocals. The words are derived from English literature.", "data_idx": 3833, "number": 0, "label": "rock"} +{"file_name": "train_06893.png", "caption": "This is a live performance of an art song piece. There is a male vocalist singing as if he is performing a role at a theater play. The grand piano is playing a melodic accompaniment piece in the background to support the vocals. The words are derived from English literature.", "data_idx": 3833, "number": 1, "label": "rock"} +{"file_name": "train_06894.png", "caption": "This is a live performance of an art song piece. There is a male vocalist singing as if he is performing a role at a theater play. The grand piano is playing a melodic accompaniment piece in the background to support the vocals. The words are derived from English literature.", "data_idx": 3833, "number": 2, "label": "rock"} +{"file_name": "train_06895.png", "caption": "This is a live performance of an art song piece. There is a male vocalist singing as if he is performing a role at a theater play. The grand piano is playing a melodic accompaniment piece in the background to support the vocals. The words are derived from English literature.", "data_idx": 3833, "number": 3, "label": "rock"} +{"file_name": "train_06896.png", "caption": "Punk rock with a country twang, featuring an acoustic guitar strumming, an overdriven electric guitar playing lead, multiple male vocalists, male background vocals and a simple chord progression. The drums play an uptempo country beat, or \"train beat\" more specifically. The kind of band you might hear at a pub in a semi-rural suburb.", "data_idx": 3834, "number": 0, "label": "rock"} +{"file_name": "train_06897.png", "caption": "Punk rock with a country twang, featuring an acoustic guitar strumming, an overdriven electric guitar playing lead, multiple male vocalists, male background vocals and a simple chord progression. The drums play an uptempo country beat, or \"train beat\" more specifically. The kind of band you might hear at a pub in a semi-rural suburb.", "data_idx": 3834, "number": 1, "label": "rock"} +{"file_name": "train_06898.png", "caption": "Punk rock with a country twang, featuring an acoustic guitar strumming, an overdriven electric guitar playing lead, multiple male vocalists, male background vocals and a simple chord progression. The drums play an uptempo country beat, or \"train beat\" more specifically. The kind of band you might hear at a pub in a semi-rural suburb.", "data_idx": 3834, "number": 2, "label": "rock"} +{"file_name": "train_06899.png", "caption": "Punk rock with a country twang, featuring an acoustic guitar strumming, an overdriven electric guitar playing lead, multiple male vocalists, male background vocals and a simple chord progression. The drums play an uptempo country beat, or \"train beat\" more specifically. The kind of band you might hear at a pub in a semi-rural suburb.", "data_idx": 3834, "number": 3, "label": "rock"} +{"file_name": "train_06900.png", "caption": "This song is a romantic duet.the tempo is medium with a soft keyboard harmony, steady drumming, violin harmony, chimes, Cajun beat, bongos rhythm, steady bass line and acoustic guitar .the song is a proposal song.it is romantic, emotional, passionate, soft, ambient, mellifluous and dulcet. This song is a Soft Pop song.", "data_idx": 3837, "number": 0, "label": "rock"} +{"file_name": "train_06901.png", "caption": "This song is a romantic duet.the tempo is medium with a soft keyboard harmony, steady drumming, violin harmony, chimes, Cajun beat, bongos rhythm, steady bass line and acoustic guitar .the song is a proposal song.it is romantic, emotional, passionate, soft, ambient, mellifluous and dulcet. This song is a Soft Pop song.", "data_idx": 3837, "number": 1, "label": "rock"} +{"file_name": "train_06902.png", "caption": "This song is a romantic duet.the tempo is medium with a soft keyboard harmony, steady drumming, violin harmony, chimes, Cajun beat, bongos rhythm, steady bass line and acoustic guitar .the song is a proposal song.it is romantic, emotional, passionate, soft, ambient, mellifluous and dulcet. This song is a Soft Pop song.", "data_idx": 3837, "number": 2, "label": "rock"} +{"file_name": "train_06903.png", "caption": "This song is a romantic duet.the tempo is medium with a soft keyboard harmony, steady drumming, violin harmony, chimes, Cajun beat, bongos rhythm, steady bass line and acoustic guitar .the song is a proposal song.it is romantic, emotional, passionate, soft, ambient, mellifluous and dulcet. This song is a Soft Pop song.", "data_idx": 3837, "number": 3, "label": "rock"} +{"file_name": "train_06904.png", "caption": "The excerpt starts off with a brief silence after which a sound effect and two metallic sounds can be heard. After this section comes another brief silence and then a kind of light club/electronic music starts to play for a few seconds. Adding all of this up it sounds as if this isn't an actual song but rather background music and sound effects for a presentation of some sorts.", "data_idx": 3839, "number": 0, "label": "hiphop"} +{"file_name": "train_06905.png", "caption": "The excerpt starts off with a brief silence after which a sound effect and two metallic sounds can be heard. After this section comes another brief silence and then a kind of light club/electronic music starts to play for a few seconds. Adding all of this up it sounds as if this isn't an actual song but rather background music and sound effects for a presentation of some sorts.", "data_idx": 3839, "number": 1, "label": "hiphop"} +{"file_name": "train_06906.png", "caption": "This piece of audio contains a modern pop song with drums, effects panned to left and right, a female voice singing with delay before changing into a totally different song that sounds more like a fast paced country song with a synthesizer- melody; acoustic drums and a banjo playing a fast melody along. This recording is also full of voice samples, a tiger or lion roaring, a telephone ringing. According to all these sounds and fast paced changes, it can be assumed that this recording is best played at a comedic television show for kids.", "data_idx": 3841, "number": 0, "label": "disco"} +{"file_name": "train_06907.png", "caption": "This piece of audio contains a modern pop song with drums, effects panned to left and right, a female voice singing with delay before changing into a totally different song that sounds more like a fast paced country song with a synthesizer- melody; acoustic drums and a banjo playing a fast melody along. This recording is also full of voice samples, a tiger or lion roaring, a telephone ringing. According to all these sounds and fast paced changes, it can be assumed that this recording is best played at a comedic television show for kids.", "data_idx": 3841, "number": 1, "label": "disco"} +{"file_name": "train_06908.png", "caption": "This piece of audio contains a modern pop song with drums, effects panned to left and right, a female voice singing with delay before changing into a totally different song that sounds more like a fast paced country song with a synthesizer- melody; acoustic drums and a banjo playing a fast melody along. This recording is also full of voice samples, a tiger or lion roaring, a telephone ringing. According to all these sounds and fast paced changes, it can be assumed that this recording is best played at a comedic television show for kids.", "data_idx": 3841, "number": 2, "label": "disco"} +{"file_name": "train_06909.png", "caption": "This piece of audio contains a modern pop song with drums, effects panned to left and right, a female voice singing with delay before changing into a totally different song that sounds more like a fast paced country song with a synthesizer- melody; acoustic drums and a banjo playing a fast melody along. This recording is also full of voice samples, a tiger or lion roaring, a telephone ringing. According to all these sounds and fast paced changes, it can be assumed that this recording is best played at a comedic television show for kids.", "data_idx": 3841, "number": 3, "label": "disco"} +{"file_name": "train_06910.png", "caption": "A male vocalist sings this alap or raga. The tempo is medium with a rhythmic mridangam accompaniment. The song is vocalised with the vocalist singing a melody using notes not lyrics. It is engaging, energetic and controlled. This song is a Carnatic Classical.", "data_idx": 3844, "number": 0, "label": "reggae"} +{"file_name": "train_06911.png", "caption": "A male vocalist sings this alap or raga. The tempo is medium with a rhythmic mridangam accompaniment. The song is vocalised with the vocalist singing a melody using notes not lyrics. It is engaging, energetic and controlled. This song is a Carnatic Classical.", "data_idx": 3844, "number": 1, "label": "reggae"} +{"file_name": "train_06912.png", "caption": "A male vocalist sings this alap or raga. The tempo is medium with a rhythmic mridangam accompaniment. The song is vocalised with the vocalist singing a melody using notes not lyrics. It is engaging, energetic and controlled. This song is a Carnatic Classical.", "data_idx": 3844, "number": 2, "label": "reggae"} +{"file_name": "train_06913.png", "caption": "A male vocalist sings this alap or raga. The tempo is medium with a rhythmic mridangam accompaniment. The song is vocalised with the vocalist singing a melody using notes not lyrics. It is engaging, energetic and controlled. This song is a Carnatic Classical.", "data_idx": 3844, "number": 3, "label": "reggae"} +{"file_name": "train_06914.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with a guitar accompaniment and a subtle bass line with no percussion instruments. The song is emotional and romantic. The song is a wedding song.", "data_idx": 3845, "number": 0, "label": "country"} +{"file_name": "train_06915.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with a guitar accompaniment and a subtle bass line with no percussion instruments. The song is emotional and romantic. The song is a wedding song.", "data_idx": 3845, "number": 1, "label": "country"} +{"file_name": "train_06916.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with a guitar accompaniment and a subtle bass line with no percussion instruments. The song is emotional and romantic. The song is a wedding song.", "data_idx": 3845, "number": 2, "label": "country"} +{"file_name": "train_06917.png", "caption": "A female singer sings this emotional melody. The song is medium tempo with a guitar accompaniment and a subtle bass line with no percussion instruments. The song is emotional and romantic. The song is a wedding song.", "data_idx": 3845, "number": 3, "label": "country"} +{"file_name": "train_06918.png", "caption": "solo overdriven electric guitar playing arpeggios slowly through a tremolo effect. roots rock feel.", "data_idx": 3846, "number": 0, "label": "hiphop"} +{"file_name": "train_06919.png", "caption": "solo overdriven electric guitar playing arpeggios slowly through a tremolo effect. roots rock feel.", "data_idx": 3846, "number": 1, "label": "hiphop"} +{"file_name": "train_06920.png", "caption": "solo overdriven electric guitar playing arpeggios slowly through a tremolo effect. roots rock feel.", "data_idx": 3846, "number": 2, "label": "hiphop"} +{"file_name": "train_06921.png", "caption": "solo overdriven electric guitar playing arpeggios slowly through a tremolo effect. roots rock feel.", "data_idx": 3846, "number": 3, "label": "hiphop"} +{"file_name": "train_06922.png", "caption": "Acoustic guitars are strumming chords while a male voice is singing with his full voice but not loud. A bass is supported along with some very soft percussion that are barely noticeable. This song may be playing with friends at a bonfire.", "data_idx": 3849, "number": 0, "label": "blues"} +{"file_name": "train_06923.png", "caption": "Acoustic guitars are strumming chords while a male voice is singing with his full voice but not loud. A bass is supported along with some very soft percussion that are barely noticeable. This song may be playing with friends at a bonfire.", "data_idx": 3849, "number": 1, "label": "blues"} +{"file_name": "train_06924.png", "caption": "Acoustic guitars are strumming chords while a male voice is singing with his full voice but not loud. A bass is supported along with some very soft percussion that are barely noticeable. This song may be playing with friends at a bonfire.", "data_idx": 3849, "number": 2, "label": "blues"} +{"file_name": "train_06925.png", "caption": "Acoustic guitars are strumming chords while a male voice is singing with his full voice but not loud. A bass is supported along with some very soft percussion that are barely noticeable. This song may be playing with friends at a bonfire.", "data_idx": 3849, "number": 3, "label": "blues"} +{"file_name": "train_06926.png", "caption": "A digital melody is playing a lullaby. This is an amateur recording with poor audio-quality. This song may be playing to bring children to sleep.", "data_idx": 3850, "number": 0, "label": "classical"} +{"file_name": "train_06927.png", "caption": "A digital melody is playing a lullaby. This is an amateur recording with poor audio-quality. This song may be playing to bring children to sleep.", "data_idx": 3850, "number": 1, "label": "classical"} +{"file_name": "train_06928.png", "caption": "A digital melody is playing a lullaby. This is an amateur recording with poor audio-quality. This song may be playing to bring children to sleep.", "data_idx": 3850, "number": 2, "label": "classical"} +{"file_name": "train_06929.png", "caption": "A digital melody is playing a lullaby. This is an amateur recording with poor audio-quality. This song may be playing to bring children to sleep.", "data_idx": 3850, "number": 3, "label": "classical"} +{"file_name": "train_06930.png", "caption": "This is a low quality recording. This song features steel pans playing together. There are no voices in this song. The steel pans are accompanied by cymbals and other percussion playing a Latino beat. This music has a Caribbean feel and is upbeat. The mood of this song is happy. This song can be played at a dance party with a Caribbean theme.", "data_idx": 3853, "number": 0, "label": "classical"} +{"file_name": "train_06931.png", "caption": "This is a low quality recording. This song features steel pans playing together. There are no voices in this song. The steel pans are accompanied by cymbals and other percussion playing a Latino beat. This music has a Caribbean feel and is upbeat. The mood of this song is happy. This song can be played at a dance party with a Caribbean theme.", "data_idx": 3853, "number": 1, "label": "classical"} +{"file_name": "train_06932.png", "caption": "This is a low quality recording. This song features steel pans playing together. There are no voices in this song. The steel pans are accompanied by cymbals and other percussion playing a Latino beat. This music has a Caribbean feel and is upbeat. The mood of this song is happy. This song can be played at a dance party with a Caribbean theme.", "data_idx": 3853, "number": 2, "label": "classical"} +{"file_name": "train_06933.png", "caption": "This is a low quality recording. This song features steel pans playing together. There are no voices in this song. The steel pans are accompanied by cymbals and other percussion playing a Latino beat. This music has a Caribbean feel and is upbeat. The mood of this song is happy. This song can be played at a dance party with a Caribbean theme.", "data_idx": 3853, "number": 3, "label": "classical"} +{"file_name": "train_06934.png", "caption": "The song is an instrumental. The song is medium fast tempo with a bass guitar soloist playing a cool accompaniment groove with no other instrumentation. The song is passionate and energetic. The song is a bass guitar demo or a home music video.", "data_idx": 3856, "number": 0, "label": "blues"} +{"file_name": "train_06935.png", "caption": "The song is an instrumental. The song is medium fast tempo with a bass guitar soloist playing a cool accompaniment groove with no other instrumentation. The song is passionate and energetic. The song is a bass guitar demo or a home music video.", "data_idx": 3856, "number": 1, "label": "blues"} +{"file_name": "train_06936.png", "caption": "The song is an instrumental. The song is medium fast tempo with a bass guitar soloist playing a cool accompaniment groove with no other instrumentation. The song is passionate and energetic. The song is a bass guitar demo or a home music video.", "data_idx": 3856, "number": 2, "label": "blues"} +{"file_name": "train_06937.png", "caption": "The song is an instrumental. The song is medium fast tempo with a bass guitar soloist playing a cool accompaniment groove with no other instrumentation. The song is passionate and energetic. The song is a bass guitar demo or a home music video.", "data_idx": 3856, "number": 3, "label": "blues"} +{"file_name": "train_06938.png", "caption": "The low quality song features a country song that consists of an acoustic rhythm guitar chord progression over which a mellow male vocal is singing. The recording got noisy at the end of the loop, which sounded like a microphone was turned on. It sounds vintage, warm, happy and fun.", "data_idx": 3857, "number": 0, "label": "reggae"} +{"file_name": "train_06939.png", "caption": "The low quality song features a country song that consists of an acoustic rhythm guitar chord progression over which a mellow male vocal is singing. The recording got noisy at the end of the loop, which sounded like a microphone was turned on. It sounds vintage, warm, happy and fun.", "data_idx": 3857, "number": 1, "label": "reggae"} +{"file_name": "train_06940.png", "caption": "The low quality song features a country song that consists of an acoustic rhythm guitar chord progression over which a mellow male vocal is singing. The recording got noisy at the end of the loop, which sounded like a microphone was turned on. It sounds vintage, warm, happy and fun.", "data_idx": 3857, "number": 2, "label": "reggae"} +{"file_name": "train_06941.png", "caption": "The low quality song features a country song that consists of an acoustic rhythm guitar chord progression over which a mellow male vocal is singing. The recording got noisy at the end of the loop, which sounded like a microphone was turned on. It sounds vintage, warm, happy and fun.", "data_idx": 3857, "number": 3, "label": "reggae"} +{"file_name": "train_06942.png", "caption": "A child sings this playful melody accompanied by an adult in vocal harmony. The song is medium tempo with a steady drumming rhythm, tambourine percussion , keyboard harmony, horns playing and a playful keyboard bass line. The song is cheerful and playful. The song is an anime tv show tune or a children\u2019s song.", "data_idx": 3858, "number": 0, "label": "disco"} +{"file_name": "train_06943.png", "caption": "A child sings this playful melody accompanied by an adult in vocal harmony. The song is medium tempo with a steady drumming rhythm, tambourine percussion , keyboard harmony, horns playing and a playful keyboard bass line. The song is cheerful and playful. The song is an anime tv show tune or a children\u2019s song.", "data_idx": 3858, "number": 1, "label": "disco"} +{"file_name": "train_06944.png", "caption": "A child sings this playful melody accompanied by an adult in vocal harmony. The song is medium tempo with a steady drumming rhythm, tambourine percussion , keyboard harmony, horns playing and a playful keyboard bass line. The song is cheerful and playful. The song is an anime tv show tune or a children\u2019s song.", "data_idx": 3858, "number": 2, "label": "disco"} +{"file_name": "train_06945.png", "caption": "A child sings this playful melody accompanied by an adult in vocal harmony. The song is medium tempo with a steady drumming rhythm, tambourine percussion , keyboard harmony, horns playing and a playful keyboard bass line. The song is cheerful and playful. The song is an anime tv show tune or a children\u2019s song.", "data_idx": 3858, "number": 3, "label": "disco"} +{"file_name": "train_06946.png", "caption": "The instrumental music features a piano playing a romantic song. A group of strings accompany the pianist with warm harmonies. The overall atmosphere is romantic and touching.", "data_idx": 3859, "number": 0, "label": "classical"} +{"file_name": "train_06947.png", "caption": "The instrumental music features a piano playing a romantic song. A group of strings accompany the pianist with warm harmonies. The overall atmosphere is romantic and touching.", "data_idx": 3859, "number": 1, "label": "classical"} +{"file_name": "train_06948.png", "caption": "The instrumental music features a piano playing a romantic song. A group of strings accompany the pianist with warm harmonies. The overall atmosphere is romantic and touching.", "data_idx": 3859, "number": 2, "label": "classical"} +{"file_name": "train_06949.png", "caption": "The instrumental music features a piano playing a romantic song. A group of strings accompany the pianist with warm harmonies. The overall atmosphere is romantic and touching.", "data_idx": 3859, "number": 3, "label": "classical"} +{"file_name": "train_06950.png", "caption": "The Pop song features a passionate female vocal singing over synth keys melody, sustained synth strings chords, groovy bass guitar, shimmering shakers and tinny percussive elements. The second section has only vocals, synth keys, shimmering shakers and some tinny percussion, as it is a way calmer section. It sounds uplifting, emotional and easygoing.", "data_idx": 3862, "number": 0, "label": "rock"} +{"file_name": "train_06951.png", "caption": "The Pop song features a passionate female vocal singing over synth keys melody, sustained synth strings chords, groovy bass guitar, shimmering shakers and tinny percussive elements. The second section has only vocals, synth keys, shimmering shakers and some tinny percussion, as it is a way calmer section. It sounds uplifting, emotional and easygoing.", "data_idx": 3862, "number": 1, "label": "rock"} +{"file_name": "train_06952.png", "caption": "The Pop song features a passionate female vocal singing over synth keys melody, sustained synth strings chords, groovy bass guitar, shimmering shakers and tinny percussive elements. The second section has only vocals, synth keys, shimmering shakers and some tinny percussion, as it is a way calmer section. It sounds uplifting, emotional and easygoing.", "data_idx": 3862, "number": 2, "label": "rock"} +{"file_name": "train_06953.png", "caption": "The Pop song features a passionate female vocal singing over synth keys melody, sustained synth strings chords, groovy bass guitar, shimmering shakers and tinny percussive elements. The second section has only vocals, synth keys, shimmering shakers and some tinny percussion, as it is a way calmer section. It sounds uplifting, emotional and easygoing.", "data_idx": 3862, "number": 3, "label": "rock"} +{"file_name": "train_06954.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals over breathy flute melody and wooden percussion. It sounds harsh, muddy, passionate and soulful, as audio is distorted due to poor quality microphone.", "data_idx": 3864, "number": 0, "label": "hiphop"} +{"file_name": "train_06955.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals over breathy flute melody and wooden percussion. It sounds harsh, muddy, passionate and soulful, as audio is distorted due to poor quality microphone.", "data_idx": 3864, "number": 1, "label": "hiphop"} +{"file_name": "train_06956.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals over breathy flute melody and wooden percussion. It sounds harsh, muddy, passionate and soulful, as audio is distorted due to poor quality microphone.", "data_idx": 3864, "number": 2, "label": "hiphop"} +{"file_name": "train_06957.png", "caption": "The low quality recording features a traditional song sung by harmonizing female vocals over breathy flute melody and wooden percussion. It sounds harsh, muddy, passionate and soulful, as audio is distorted due to poor quality microphone.", "data_idx": 3864, "number": 3, "label": "hiphop"} +{"file_name": "train_06958.png", "caption": "The low quality recording features a metal song that consists of screaming male vocal singing over widely spread electric guitar riffs, distorted bass guitar, energetic cymbals and short snare rolls. It sounds loud, aggressive, energetic and manic - as every metal song should sound.", "data_idx": 3865, "number": 0, "label": "metal"} +{"file_name": "train_06959.png", "caption": "The low quality recording features a metal song that consists of screaming male vocal singing over widely spread electric guitar riffs, distorted bass guitar, energetic cymbals and short snare rolls. It sounds loud, aggressive, energetic and manic - as every metal song should sound.", "data_idx": 3865, "number": 1, "label": "metal"} +{"file_name": "train_06960.png", "caption": "The low quality recording features a classical song that consists of arpeggiated, soft piano melody, wide sustained string melody and a tom hit at the very beginning of the recording. The song is slowly fading in, by which we can conclude that it is an intro section of the song. It sounds cinematic, emotional, soft, mellow and passionate.", "data_idx": 3867, "number": 0, "label": "hiphop"} +{"file_name": "train_06961.png", "caption": "The low quality recording features a classical song that consists of arpeggiated, soft piano melody, wide sustained string melody and a tom hit at the very beginning of the recording. The song is slowly fading in, by which we can conclude that it is an intro section of the song. It sounds cinematic, emotional, soft, mellow and passionate.", "data_idx": 3867, "number": 1, "label": "hiphop"} +{"file_name": "train_06962.png", "caption": "The low quality recording features a classical song that consists of arpeggiated, soft piano melody, wide sustained string melody and a tom hit at the very beginning of the recording. The song is slowly fading in, by which we can conclude that it is an intro section of the song. It sounds cinematic, emotional, soft, mellow and passionate.", "data_idx": 3867, "number": 2, "label": "hiphop"} +{"file_name": "train_06963.png", "caption": "The low quality recording features a classical song that consists of arpeggiated, soft piano melody, wide sustained string melody and a tom hit at the very beginning of the recording. The song is slowly fading in, by which we can conclude that it is an intro section of the song. It sounds cinematic, emotional, soft, mellow and passionate.", "data_idx": 3867, "number": 3, "label": "hiphop"} +{"file_name": "train_06964.png", "caption": "This is an acoustic live performance of an alternative music piece. There is a female vocalist singing melodically at a soprano range. In the melodic background, there is an acoustic guitar playing a simple tune. The piece has an emotion-filled atmosphere. It could be used in the soundtrack of a drama movie or a TV show.", "data_idx": 3868, "number": 0, "label": "pop"} +{"file_name": "train_06965.png", "caption": "This is an acoustic live performance of an alternative music piece. There is a female vocalist singing melodically at a soprano range. In the melodic background, there is an acoustic guitar playing a simple tune. The piece has an emotion-filled atmosphere. It could be used in the soundtrack of a drama movie or a TV show.", "data_idx": 3868, "number": 1, "label": "pop"} +{"file_name": "train_06966.png", "caption": "This is an acoustic live performance of an alternative music piece. There is a female vocalist singing melodically at a soprano range. In the melodic background, there is an acoustic guitar playing a simple tune. The piece has an emotion-filled atmosphere. It could be used in the soundtrack of a drama movie or a TV show.", "data_idx": 3868, "number": 2, "label": "pop"} +{"file_name": "train_06967.png", "caption": "This is an acoustic live performance of an alternative music piece. There is a female vocalist singing melodically at a soprano range. In the melodic background, there is an acoustic guitar playing a simple tune. The piece has an emotion-filled atmosphere. It could be used in the soundtrack of a drama movie or a TV show.", "data_idx": 3868, "number": 3, "label": "pop"} +{"file_name": "train_06968.png", "caption": "This suspenseful song features synth sounds. At the beginning, a synth plays a constant sound in the background. Another synth plays a swell with a vibrato effect. After it pauses, a shaker is played. The mood of this song is eerie and suspenseful. This song can be played in a horror movie.", "data_idx": 3871, "number": 0, "label": "rock"} +{"file_name": "train_06969.png", "caption": "This suspenseful song features synth sounds. At the beginning, a synth plays a constant sound in the background. Another synth plays a swell with a vibrato effect. After it pauses, a shaker is played. The mood of this song is eerie and suspenseful. This song can be played in a horror movie.", "data_idx": 3871, "number": 1, "label": "rock"} +{"file_name": "train_06970.png", "caption": "This suspenseful song features synth sounds. At the beginning, a synth plays a constant sound in the background. Another synth plays a swell with a vibrato effect. After it pauses, a shaker is played. The mood of this song is eerie and suspenseful. This song can be played in a horror movie.", "data_idx": 3871, "number": 2, "label": "rock"} +{"file_name": "train_06971.png", "caption": "This suspenseful song features synth sounds. At the beginning, a synth plays a constant sound in the background. Another synth plays a swell with a vibrato effect. After it pauses, a shaker is played. The mood of this song is eerie and suspenseful. This song can be played in a horror movie.", "data_idx": 3871, "number": 3, "label": "rock"} +{"file_name": "train_06972.png", "caption": "This is a lullaby piece. There is a female voice singing softly with accentuations at specific parts. An acoustic guitar provides a melodic background. The song is played on a major scale, giving it an added soothing effect. This piece could be used in a playlist meant for babies to listen to before they go to sleep.", "data_idx": 3872, "number": 0, "label": "pop"} +{"file_name": "train_06973.png", "caption": "This is a lullaby piece. There is a female voice singing softly with accentuations at specific parts. An acoustic guitar provides a melodic background. The song is played on a major scale, giving it an added soothing effect. This piece could be used in a playlist meant for babies to listen to before they go to sleep.", "data_idx": 3872, "number": 1, "label": "pop"} +{"file_name": "train_06974.png", "caption": "This is a lullaby piece. There is a female voice singing softly with accentuations at specific parts. An acoustic guitar provides a melodic background. The song is played on a major scale, giving it an added soothing effect. This piece could be used in a playlist meant for babies to listen to before they go to sleep.", "data_idx": 3872, "number": 2, "label": "pop"} +{"file_name": "train_06975.png", "caption": "This is a lullaby piece. There is a female voice singing softly with accentuations at specific parts. An acoustic guitar provides a melodic background. The song is played on a major scale, giving it an added soothing effect. This piece could be used in a playlist meant for babies to listen to before they go to sleep.", "data_idx": 3872, "number": 3, "label": "pop"} +{"file_name": "train_06976.png", "caption": "The low quality recording features a soft rock song that consists of harmonizing mixed vocals singing passionately over mellow piano chords, soft synth pad chords, boomy kick and reverberant claps. It sounds boomy, muddy and dull, as the low frequencies are clashing, bu it is also emotional regardless.", "data_idx": 3874, "number": 0, "label": "disco"} +{"file_name": "train_06977.png", "caption": "The low quality recording features a soft rock song that consists of harmonizing mixed vocals singing passionately over mellow piano chords, soft synth pad chords, boomy kick and reverberant claps. It sounds boomy, muddy and dull, as the low frequencies are clashing, bu it is also emotional regardless.", "data_idx": 3874, "number": 1, "label": "disco"} +{"file_name": "train_06978.png", "caption": "The low quality recording features a soft rock song that consists of harmonizing mixed vocals singing passionately over mellow piano chords, soft synth pad chords, boomy kick and reverberant claps. It sounds boomy, muddy and dull, as the low frequencies are clashing, bu it is also emotional regardless.", "data_idx": 3874, "number": 2, "label": "disco"} +{"file_name": "train_06979.png", "caption": "The low quality recording features a soft rock song that consists of harmonizing mixed vocals singing passionately over mellow piano chords, soft synth pad chords, boomy kick and reverberant claps. It sounds boomy, muddy and dull, as the low frequencies are clashing, bu it is also emotional regardless.", "data_idx": 3874, "number": 3, "label": "disco"} +{"file_name": "train_06980.png", "caption": "The song is an instrumental. The tempo is medium with a percussive Arabic percussion groove, tambourine percussions, percussive bass line and a ethnic wind instrument playing an enthusiastic solo. The song has folk music influences and reminds us of a desert journey. The song audio quality is very poor.", "data_idx": 3875, "number": 0, "label": "jazz"} +{"file_name": "train_06981.png", "caption": "The song is an instrumental. The tempo is medium with a percussive Arabic percussion groove, tambourine percussions, percussive bass line and a ethnic wind instrument playing an enthusiastic solo. The song has folk music influences and reminds us of a desert journey. The song audio quality is very poor.", "data_idx": 3875, "number": 1, "label": "jazz"} +{"file_name": "train_06982.png", "caption": "The song is an instrumental. The tempo is medium with a percussive Arabic percussion groove, tambourine percussions, percussive bass line and a ethnic wind instrument playing an enthusiastic solo. The song has folk music influences and reminds us of a desert journey. The song audio quality is very poor.", "data_idx": 3875, "number": 2, "label": "jazz"} +{"file_name": "train_06983.png", "caption": "The song is an instrumental. The tempo is medium with a percussive Arabic percussion groove, tambourine percussions, percussive bass line and a ethnic wind instrument playing an enthusiastic solo. The song has folk music influences and reminds us of a desert journey. The song audio quality is very poor.", "data_idx": 3875, "number": 3, "label": "jazz"} +{"file_name": "train_06984.png", "caption": "The low quality recording features a harmonizing staccato vocals melody sung over groovy piano melody, wide shimmering shakers, punchy kick, thin snare hits and some nice sound effects in the background. It sounds fun and happy - almost like a jingle.", "data_idx": 3876, "number": 0, "label": "reggae"} +{"file_name": "train_06985.png", "caption": "The low quality recording features a harmonizing staccato vocals melody sung over groovy piano melody, wide shimmering shakers, punchy kick, thin snare hits and some nice sound effects in the background. It sounds fun and happy - almost like a jingle.", "data_idx": 3876, "number": 1, "label": "reggae"} +{"file_name": "train_06986.png", "caption": "The low quality recording features a harmonizing staccato vocals melody sung over groovy piano melody, wide shimmering shakers, punchy kick, thin snare hits and some nice sound effects in the background. It sounds fun and happy - almost like a jingle.", "data_idx": 3876, "number": 2, "label": "reggae"} +{"file_name": "train_06987.png", "caption": "The low quality recording features a harmonizing staccato vocals melody sung over groovy piano melody, wide shimmering shakers, punchy kick, thin snare hits and some nice sound effects in the background. It sounds fun and happy - almost like a jingle.", "data_idx": 3876, "number": 3, "label": "reggae"} +{"file_name": "train_06988.png", "caption": "This is a jingle piece in the background of a toy advertisement. The toy is a cash register toy, so there are a lot of beeping sounds. There is a synth playing the main tune that is constantly rising up to a higher note while a piano is playing staccato chords alongside it. A cymbal-heavy electronic drum beat can be heard. The atmosphere is uneasy. Samples could be lifted from this track to be used in beat-making or in the soundtrack of a horror movie.", "data_idx": 3877, "number": 0, "label": "reggae"} +{"file_name": "train_06989.png", "caption": "This is a jingle piece in the background of a toy advertisement. The toy is a cash register toy, so there are a lot of beeping sounds. There is a synth playing the main tune that is constantly rising up to a higher note while a piano is playing staccato chords alongside it. A cymbal-heavy electronic drum beat can be heard. The atmosphere is uneasy. Samples could be lifted from this track to be used in beat-making or in the soundtrack of a horror movie.", "data_idx": 3877, "number": 1, "label": "reggae"} +{"file_name": "train_06990.png", "caption": "This is a jingle piece in the background of a toy advertisement. The toy is a cash register toy, so there are a lot of beeping sounds. There is a synth playing the main tune that is constantly rising up to a higher note while a piano is playing staccato chords alongside it. A cymbal-heavy electronic drum beat can be heard. The atmosphere is uneasy. Samples could be lifted from this track to be used in beat-making or in the soundtrack of a horror movie.", "data_idx": 3877, "number": 2, "label": "reggae"} +{"file_name": "train_06991.png", "caption": "This is a jingle piece in the background of a toy advertisement. The toy is a cash register toy, so there are a lot of beeping sounds. There is a synth playing the main tune that is constantly rising up to a higher note while a piano is playing staccato chords alongside it. A cymbal-heavy electronic drum beat can be heard. The atmosphere is uneasy. Samples could be lifted from this track to be used in beat-making or in the soundtrack of a horror movie.", "data_idx": 3877, "number": 3, "label": "reggae"} +{"file_name": "train_06992.png", "caption": "A Latin club track with a thumping bass and a funky feel. The kick snare pattern is simple and the hi-hat is busy playing steady 16th notes. Distorted electric guitar plays a lead melody along with the autotuned harmonized male background vocals. The lead vocals feature a male and female duo singing in harmony, while synth strings fill in the beat with short chords.", "data_idx": 3879, "number": 0, "label": "blues"} +{"file_name": "train_06993.png", "caption": "A Latin club track with a thumping bass and a funky feel. The kick snare pattern is simple and the hi-hat is busy playing steady 16th notes. Distorted electric guitar plays a lead melody along with the autotuned harmonized male background vocals. The lead vocals feature a male and female duo singing in harmony, while synth strings fill in the beat with short chords.", "data_idx": 3879, "number": 1, "label": "blues"} +{"file_name": "train_06994.png", "caption": "The Classical song features wide sustained strings and subtle mellow piano chords. It sounds sad and emotional - like something you would hear in the video games, as a background music for a sad scene.", "data_idx": 3880, "number": 0, "label": "classical"} +{"file_name": "train_06995.png", "caption": "The Classical song features wide sustained strings and subtle mellow piano chords. It sounds sad and emotional - like something you would hear in the video games, as a background music for a sad scene.", "data_idx": 3880, "number": 1, "label": "classical"} +{"file_name": "train_06996.png", "caption": "The Classical song features wide sustained strings and subtle mellow piano chords. It sounds sad and emotional - like something you would hear in the video games, as a background music for a sad scene.", "data_idx": 3880, "number": 2, "label": "classical"} +{"file_name": "train_06997.png", "caption": "The Classical song features wide sustained strings and subtle mellow piano chords. It sounds sad and emotional - like something you would hear in the video games, as a background music for a sad scene.", "data_idx": 3880, "number": 3, "label": "classical"} +{"file_name": "train_06998.png", "caption": "The low quality recording features a passionate male vocal singing over a wooden percussive element and sustained strings melody. It sounds emotional, passionate - like a traditional middle eastern song.", "data_idx": 3882, "number": 0, "label": "reggae"} +{"file_name": "train_06999.png", "caption": "The low quality recording features a passionate male vocal singing over a wooden percussive element and sustained strings melody. It sounds emotional, passionate - like a traditional middle eastern song.", "data_idx": 3882, "number": 1, "label": "reggae"} +{"file_name": "train_07000.png", "caption": "The low quality recording features a passionate male vocal singing over a wooden percussive element and sustained strings melody. It sounds emotional, passionate - like a traditional middle eastern song.", "data_idx": 3882, "number": 2, "label": "reggae"} +{"file_name": "train_07001.png", "caption": "The low quality recording features a passionate male vocal singing over a wooden percussive element and sustained strings melody. It sounds emotional, passionate - like a traditional middle eastern song.", "data_idx": 3882, "number": 3, "label": "reggae"} +{"file_name": "train_07002.png", "caption": "The low quality recording features a live performance of a mellow classical piano melody and sustained passionate violin melody playing together. It is very noisy and there are some crackling noises, widely spread in the background. Sounds passionate, emotional and it seems like it was recorded with one stereo pair of microphones.", "data_idx": 3883, "number": 0, "label": "hiphop"} +{"file_name": "train_07003.png", "caption": "The low quality recording features a live performance of a mellow classical piano melody and sustained passionate violin melody playing together. It is very noisy and there are some crackling noises, widely spread in the background. Sounds passionate, emotional and it seems like it was recorded with one stereo pair of microphones.", "data_idx": 3883, "number": 1, "label": "hiphop"} +{"file_name": "train_07004.png", "caption": "The low quality recording features a live performance of a mellow classical piano melody and sustained passionate violin melody playing together. It is very noisy and there are some crackling noises, widely spread in the background. Sounds passionate, emotional and it seems like it was recorded with one stereo pair of microphones.", "data_idx": 3883, "number": 2, "label": "hiphop"} +{"file_name": "train_07005.png", "caption": "The low quality recording features a live performance of a mellow classical piano melody and sustained passionate violin melody playing together. It is very noisy and there are some crackling noises, widely spread in the background. Sounds passionate, emotional and it seems like it was recorded with one stereo pair of microphones.", "data_idx": 3883, "number": 3, "label": "hiphop"} +{"file_name": "train_07006.png", "caption": "The Alternative/Indie song cover features an acoustic ensemble that includes acoustic guitar chord progression, still guitar melody and tinny double bass playing it. It sounds narrow due to the fact that it is a mono recording. Everything, including the double bass, sounds kind of tinny and reverberant, because it was most likely recorded with one mono, room microphone. The sound could definitely be better, but it does not fall into the category of a low quality recording.", "data_idx": 3887, "number": 0, "label": "classical"} +{"file_name": "train_07007.png", "caption": "The Alternative/Indie song cover features an acoustic ensemble that includes acoustic guitar chord progression, still guitar melody and tinny double bass playing it. It sounds narrow due to the fact that it is a mono recording. Everything, including the double bass, sounds kind of tinny and reverberant, because it was most likely recorded with one mono, room microphone. The sound could definitely be better, but it does not fall into the category of a low quality recording.", "data_idx": 3887, "number": 1, "label": "classical"} +{"file_name": "train_07008.png", "caption": "The Alternative/Indie song cover features an acoustic ensemble that includes acoustic guitar chord progression, still guitar melody and tinny double bass playing it. It sounds narrow due to the fact that it is a mono recording. Everything, including the double bass, sounds kind of tinny and reverberant, because it was most likely recorded with one mono, room microphone. The sound could definitely be better, but it does not fall into the category of a low quality recording.", "data_idx": 3887, "number": 2, "label": "classical"} +{"file_name": "train_07009.png", "caption": "The Alternative/Indie song cover features an acoustic ensemble that includes acoustic guitar chord progression, still guitar melody and tinny double bass playing it. It sounds narrow due to the fact that it is a mono recording. Everything, including the double bass, sounds kind of tinny and reverberant, because it was most likely recorded with one mono, room microphone. The sound could definitely be better, but it does not fall into the category of a low quality recording.", "data_idx": 3887, "number": 3, "label": "classical"} +{"file_name": "train_07010.png", "caption": "This is a live recording to which music was later added. The main audio in the clip includes a squeaky toy being repeatedly pressed. The song that was later added is a slow ballad that includes piano and violin.", "data_idx": 3889, "number": 0, "label": "disco"} +{"file_name": "train_07011.png", "caption": "This is a live recording to which music was later added. The main audio in the clip includes a squeaky toy being repeatedly pressed. The song that was later added is a slow ballad that includes piano and violin.", "data_idx": 3889, "number": 1, "label": "disco"} +{"file_name": "train_07012.png", "caption": "This is a live recording to which music was later added. The main audio in the clip includes a squeaky toy being repeatedly pressed. The song that was later added is a slow ballad that includes piano and violin.", "data_idx": 3889, "number": 2, "label": "disco"} +{"file_name": "train_07013.png", "caption": "This is a live recording to which music was later added. The main audio in the clip includes a squeaky toy being repeatedly pressed. The song that was later added is a slow ballad that includes piano and violin.", "data_idx": 3889, "number": 3, "label": "disco"} +{"file_name": "train_07014.png", "caption": "This is a live acoustic performance of a rock music song. There is a male vocalist singing at a medium-to-high pitch in a melodic manner while two acoustic guitars are carrying the background with a simple tune composed of only four chords. The music might be played at a bar in the background.", "data_idx": 3891, "number": 0, "label": "country"} +{"file_name": "train_07015.png", "caption": "This is a live acoustic performance of a rock music song. There is a male vocalist singing at a medium-to-high pitch in a melodic manner while two acoustic guitars are carrying the background with a simple tune composed of only four chords. The music might be played at a bar in the background.", "data_idx": 3891, "number": 1, "label": "country"} +{"file_name": "train_07016.png", "caption": "This is a live acoustic performance of a rock music song. There is a male vocalist singing at a medium-to-high pitch in a melodic manner while two acoustic guitars are carrying the background with a simple tune composed of only four chords. The music might be played at a bar in the background.", "data_idx": 3891, "number": 2, "label": "country"} +{"file_name": "train_07017.png", "caption": "This is a live acoustic performance of a rock music song. There is a male vocalist singing at a medium-to-high pitch in a melodic manner while two acoustic guitars are carrying the background with a simple tune composed of only four chords. The music might be played at a bar in the background.", "data_idx": 3891, "number": 3, "label": "country"} +{"file_name": "train_07018.png", "caption": "The low quality recording features a pop song that consists of mellow female vocals, followed by female background vocals, singing over punchy kicks, claps, shimmering open hats, stuttering hi hats, buzzy synth bass and wide synth pad chords. It sounds aggressive, bright, punchy, energetic and kind of manic due to those hi hats.", "data_idx": 3892, "number": 0, "label": "metal"} +{"file_name": "train_07019.png", "caption": "The low quality recording features a pop song that consists of mellow female vocals, followed by female background vocals, singing over punchy kicks, claps, shimmering open hats, stuttering hi hats, buzzy synth bass and wide synth pad chords. It sounds aggressive, bright, punchy, energetic and kind of manic due to those hi hats.", "data_idx": 3892, "number": 1, "label": "metal"} +{"file_name": "train_07020.png", "caption": "The low quality recording features a pop song that consists of mellow female vocals, followed by female background vocals, singing over punchy kicks, claps, shimmering open hats, stuttering hi hats, buzzy synth bass and wide synth pad chords. It sounds aggressive, bright, punchy, energetic and kind of manic due to those hi hats.", "data_idx": 3892, "number": 2, "label": "metal"} +{"file_name": "train_07021.png", "caption": "The low quality recording features a pop song that consists of mellow female vocals, followed by female background vocals, singing over punchy kicks, claps, shimmering open hats, stuttering hi hats, buzzy synth bass and wide synth pad chords. It sounds aggressive, bright, punchy, energetic and kind of manic due to those hi hats.", "data_idx": 3892, "number": 3, "label": "metal"} +{"file_name": "train_07022.png", "caption": "a latin jazz ensemble performing in a recital hall. A trumpet solo is accompanied by acoustic bass, syncopated drums and piano. The rhythm is upbeat and danceable. You can hear the reverb of the recital hall as well as audience sounds, someone sneezing.", "data_idx": 3893, "number": 0, "label": "classical"} +{"file_name": "train_07023.png", "caption": "a latin jazz ensemble performing in a recital hall. A trumpet solo is accompanied by acoustic bass, syncopated drums and piano. The rhythm is upbeat and danceable. You can hear the reverb of the recital hall as well as audience sounds, someone sneezing.", "data_idx": 3893, "number": 1, "label": "classical"} +{"file_name": "train_07024.png", "caption": "a latin jazz ensemble performing in a recital hall. A trumpet solo is accompanied by acoustic bass, syncopated drums and piano. The rhythm is upbeat and danceable. You can hear the reverb of the recital hall as well as audience sounds, someone sneezing.", "data_idx": 3893, "number": 2, "label": "classical"} +{"file_name": "train_07025.png", "caption": "a latin jazz ensemble performing in a recital hall. A trumpet solo is accompanied by acoustic bass, syncopated drums and piano. The rhythm is upbeat and danceable. You can hear the reverb of the recital hall as well as audience sounds, someone sneezing.", "data_idx": 3893, "number": 3, "label": "classical"} +{"file_name": "train_07026.png", "caption": "Someone is strumming an acoustic guitar while a male voice is singing along. This may be playing at a bonfire.", "data_idx": 3894, "number": 0, "label": "rock"} +{"file_name": "train_07027.png", "caption": "Someone is strumming an acoustic guitar while a male voice is singing along. This may be playing at a bonfire.", "data_idx": 3894, "number": 1, "label": "rock"} +{"file_name": "train_07028.png", "caption": "Someone is strumming an acoustic guitar while a male voice is singing along. This may be playing at a bonfire.", "data_idx": 3894, "number": 2, "label": "rock"} +{"file_name": "train_07029.png", "caption": "Someone is strumming an acoustic guitar while a male voice is singing along. This may be playing at a bonfire.", "data_idx": 3894, "number": 3, "label": "rock"} +{"file_name": "train_07030.png", "caption": "The song sounds orchestrated. There is a string section playing swells and rising tremolos along to an acoustic piano playing minor chords. A cello is playing long low notes on top of that a saxophone is playing two notes to end the phrase. A deep and far percussive hit comes in every fourth count. The female singer's voice sounds sensitive and melancholic. There are female backing voices singing along. The whole composition is full of big reverb. This song may be playing at the end of a sad movie.", "data_idx": 3895, "number": 0, "label": "classical"} +{"file_name": "train_07031.png", "caption": "The song sounds orchestrated. There is a string section playing swells and rising tremolos along to an acoustic piano playing minor chords. A cello is playing long low notes on top of that a saxophone is playing two notes to end the phrase. A deep and far percussive hit comes in every fourth count. The female singer's voice sounds sensitive and melancholic. There are female backing voices singing along. The whole composition is full of big reverb. This song may be playing at the end of a sad movie.", "data_idx": 3895, "number": 1, "label": "classical"} +{"file_name": "train_07032.png", "caption": "The song sounds orchestrated. There is a string section playing swells and rising tremolos along to an acoustic piano playing minor chords. A cello is playing long low notes on top of that a saxophone is playing two notes to end the phrase. A deep and far percussive hit comes in every fourth count. The female singer's voice sounds sensitive and melancholic. There are female backing voices singing along. The whole composition is full of big reverb. This song may be playing at the end of a sad movie.", "data_idx": 3895, "number": 2, "label": "classical"} +{"file_name": "train_07033.png", "caption": "The song sounds orchestrated. There is a string section playing swells and rising tremolos along to an acoustic piano playing minor chords. A cello is playing long low notes on top of that a saxophone is playing two notes to end the phrase. A deep and far percussive hit comes in every fourth count. The female singer's voice sounds sensitive and melancholic. There are female backing voices singing along. The whole composition is full of big reverb. This song may be playing at the end of a sad movie.", "data_idx": 3895, "number": 3, "label": "classical"} +{"file_name": "train_07034.png", "caption": "This instrumental clip features a theremin being played. This is backed by acoustic plucking chords. There is no percussion in this song. There are no voices in this song. This is a slow tempo song and the melody is haunting. This song can be used in a dream sequence in a movie.", "data_idx": 3896, "number": 0, "label": "classical"} +{"file_name": "train_07035.png", "caption": "This instrumental clip features a theremin being played. This is backed by acoustic plucking chords. There is no percussion in this song. There are no voices in this song. This is a slow tempo song and the melody is haunting. This song can be used in a dream sequence in a movie.", "data_idx": 3896, "number": 1, "label": "classical"} +{"file_name": "train_07036.png", "caption": "This instrumental clip features a theremin being played. This is backed by acoustic plucking chords. There is no percussion in this song. There are no voices in this song. This is a slow tempo song and the melody is haunting. This song can be used in a dream sequence in a movie.", "data_idx": 3896, "number": 2, "label": "classical"} +{"file_name": "train_07037.png", "caption": "This instrumental clip features a theremin being played. This is backed by acoustic plucking chords. There is no percussion in this song. There are no voices in this song. This is a slow tempo song and the melody is haunting. This song can be used in a dream sequence in a movie.", "data_idx": 3896, "number": 3, "label": "classical"} +{"file_name": "train_07038.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a bright keyboard harmony, boomy bass drops, infectious drumming and atmospheric synthesiser and a vocal riff. The electronic arrangements and synthesised sounds give it a psychedelic, trippy, hypnotic vibe. It is perky, buoyant, thumping, youthful, vivacious with a dance groove. This song is an EDM/Synth Pop song.", "data_idx": 3901, "number": 0, "label": "disco"} +{"file_name": "train_07039.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a bright keyboard harmony, boomy bass drops, infectious drumming and atmospheric synthesiser and a vocal riff. The electronic arrangements and synthesised sounds give it a psychedelic, trippy, hypnotic vibe. It is perky, buoyant, thumping, youthful, vivacious with a dance groove. This song is an EDM/Synth Pop song.", "data_idx": 3901, "number": 1, "label": "disco"} +{"file_name": "train_07040.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a bright keyboard harmony, boomy bass drops, infectious drumming and atmospheric synthesiser and a vocal riff. The electronic arrangements and synthesised sounds give it a psychedelic, trippy, hypnotic vibe. It is perky, buoyant, thumping, youthful, vivacious with a dance groove. This song is an EDM/Synth Pop song.", "data_idx": 3901, "number": 2, "label": "disco"} +{"file_name": "train_07041.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a bright keyboard harmony, boomy bass drops, infectious drumming and atmospheric synthesiser and a vocal riff. The electronic arrangements and synthesised sounds give it a psychedelic, trippy, hypnotic vibe. It is perky, buoyant, thumping, youthful, vivacious with a dance groove. This song is an EDM/Synth Pop song.", "data_idx": 3901, "number": 3, "label": "disco"} +{"file_name": "train_07042.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by an acoustic guitar. A shaker plays in place of the percussion. Violins play a melody in the background. The mood of this song is romantic. This song can be played in a flashback scene of a movie.", "data_idx": 3902, "number": 0, "label": "rock"} +{"file_name": "train_07043.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by an acoustic guitar. A shaker plays in place of the percussion. Violins play a melody in the background. The mood of this song is romantic. This song can be played in a flashback scene of a movie.", "data_idx": 3902, "number": 1, "label": "rock"} +{"file_name": "train_07044.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by an acoustic guitar. A shaker plays in place of the percussion. Violins play a melody in the background. The mood of this song is romantic. This song can be played in a flashback scene of a movie.", "data_idx": 3902, "number": 2, "label": "rock"} +{"file_name": "train_07045.png", "caption": "This folk song features a male voice singing the main melody. This is accompanied by an acoustic guitar. A shaker plays in place of the percussion. Violins play a melody in the background. The mood of this song is romantic. This song can be played in a flashback scene of a movie.", "data_idx": 3902, "number": 3, "label": "rock"} +{"file_name": "train_07046.png", "caption": "A male singer sings this cheerful melody with backup singers in vocal harmony. The song is medium tempo with a reggae style drum and guitar accompaniment, guitar lead and a groovy bass line. The song is romantic and cheerful . The song is a Latin pop dance song. The audio quality is average.", "data_idx": 3903, "number": 0, "label": "reggae"} +{"file_name": "train_07047.png", "caption": "A male singer sings this cheerful melody with backup singers in vocal harmony. The song is medium tempo with a reggae style drum and guitar accompaniment, guitar lead and a groovy bass line. The song is romantic and cheerful . The song is a Latin pop dance song. The audio quality is average.", "data_idx": 3903, "number": 1, "label": "reggae"} +{"file_name": "train_07048.png", "caption": "A male singer sings this cheerful melody with backup singers in vocal harmony. The song is medium tempo with a reggae style drum and guitar accompaniment, guitar lead and a groovy bass line. The song is romantic and cheerful . The song is a Latin pop dance song. The audio quality is average.", "data_idx": 3903, "number": 2, "label": "reggae"} +{"file_name": "train_07049.png", "caption": "A male singer sings this cheerful melody with backup singers in vocal harmony. The song is medium tempo with a reggae style drum and guitar accompaniment, guitar lead and a groovy bass line. The song is romantic and cheerful . The song is a Latin pop dance song. The audio quality is average.", "data_idx": 3903, "number": 3, "label": "reggae"} +{"file_name": "train_07050.png", "caption": "The music features a female voice singing a repeating melody. The drums play a light repeating rhythm. A synth bass is playing long notes and sliding in-between them. An electronic sound imitating a sort of electronic organ is playing two chords per beat. The music invites the listener to dance.", "data_idx": 3904, "number": 0, "label": "reggae"} +{"file_name": "train_07051.png", "caption": "The music features a female voice singing a repeating melody. The drums play a light repeating rhythm. A synth bass is playing long notes and sliding in-between them. An electronic sound imitating a sort of electronic organ is playing two chords per beat. The music invites the listener to dance.", "data_idx": 3904, "number": 1, "label": "reggae"} +{"file_name": "train_07052.png", "caption": "The music features a female voice singing a repeating melody. The drums play a light repeating rhythm. A synth bass is playing long notes and sliding in-between them. An electronic sound imitating a sort of electronic organ is playing two chords per beat. The music invites the listener to dance.", "data_idx": 3904, "number": 2, "label": "reggae"} +{"file_name": "train_07053.png", "caption": "The music features a female voice singing a repeating melody. The drums play a light repeating rhythm. A synth bass is playing long notes and sliding in-between them. An electronic sound imitating a sort of electronic organ is playing two chords per beat. The music invites the listener to dance.", "data_idx": 3904, "number": 3, "label": "reggae"} +{"file_name": "train_07054.png", "caption": "A male vocalist sings this simple melody. The tempo is medium with a pleasant keyboard harmony, slick drumming, steady bass lines and an melodic electric guitar harmony. The song is a simple, insistent rhythm,recurring beat, youthful , emotional, sentimental and passionate classic Pop.", "data_idx": 3906, "number": 0, "label": "rock"} +{"file_name": "train_07055.png", "caption": "A male vocalist sings this simple melody. The tempo is medium with a pleasant keyboard harmony, slick drumming, steady bass lines and an melodic electric guitar harmony. The song is a simple, insistent rhythm,recurring beat, youthful , emotional, sentimental and passionate classic Pop.", "data_idx": 3906, "number": 1, "label": "rock"} +{"file_name": "train_07056.png", "caption": "The song is an instrumental piece. The song is fast tempo with a glass harpist playing an extremely intricate solo with no other instrumentation . The song is magical and mysterious. The song is a live performance with ambient sounds of people talking in the background.", "data_idx": 3908, "number": 0, "label": "classical"} +{"file_name": "train_07057.png", "caption": "The song is an instrumental piece. The song is fast tempo with a glass harpist playing an extremely intricate solo with no other instrumentation . The song is magical and mysterious. The song is a live performance with ambient sounds of people talking in the background.", "data_idx": 3908, "number": 1, "label": "classical"} +{"file_name": "train_07058.png", "caption": "The song is a country rock song with a charged up, potent sound. The guitar is grungry, and gives punchy and gritty energy. The singer has a smooth voice and sings with charisma and suave charm.", "data_idx": 3909, "number": 0, "label": "rock"} +{"file_name": "train_07059.png", "caption": "The song is a country rock song with a charged up, potent sound. The guitar is grungry, and gives punchy and gritty energy. The singer has a smooth voice and sings with charisma and suave charm.", "data_idx": 3909, "number": 1, "label": "rock"} +{"file_name": "train_07060.png", "caption": "The low quality recording features a steel guitar solo melody playing over smooth instrumental on playback that consists of snappy rimshots, wide acoustic rhythm guitar, groovy piano chords, soft bass guitar, soft kick hits and shimmering hi hats. It sounds easygoing and chill - something you would hear in a restaurant or a coffee shop.", "data_idx": 3911, "number": 0, "label": "reggae"} +{"file_name": "train_07061.png", "caption": "The low quality recording features a steel guitar solo melody playing over smooth instrumental on playback that consists of snappy rimshots, wide acoustic rhythm guitar, groovy piano chords, soft bass guitar, soft kick hits and shimmering hi hats. It sounds easygoing and chill - something you would hear in a restaurant or a coffee shop.", "data_idx": 3911, "number": 1, "label": "reggae"} +{"file_name": "train_07062.png", "caption": "The low quality recording features a steel guitar solo melody playing over smooth instrumental on playback that consists of snappy rimshots, wide acoustic rhythm guitar, groovy piano chords, soft bass guitar, soft kick hits and shimmering hi hats. It sounds easygoing and chill - something you would hear in a restaurant or a coffee shop.", "data_idx": 3911, "number": 2, "label": "reggae"} +{"file_name": "train_07063.png", "caption": "The low quality recording features a steel guitar solo melody playing over smooth instrumental on playback that consists of snappy rimshots, wide acoustic rhythm guitar, groovy piano chords, soft bass guitar, soft kick hits and shimmering hi hats. It sounds easygoing and chill - something you would hear in a restaurant or a coffee shop.", "data_idx": 3911, "number": 3, "label": "reggae"} +{"file_name": "train_07064.png", "caption": "The song is an instrumental. A bass guitarist is trying to tune his guitar with a tuning module creating bass tones that are played haphazardly. The song audio quality is very poor. .", "data_idx": 3913, "number": 0, "label": "blues"} +{"file_name": "train_07065.png", "caption": "The song is an instrumental. A bass guitarist is trying to tune his guitar with a tuning module creating bass tones that are played haphazardly. The song audio quality is very poor. .", "data_idx": 3913, "number": 1, "label": "blues"} +{"file_name": "train_07066.png", "caption": "The song is an instrumental. A bass guitarist is trying to tune his guitar with a tuning module creating bass tones that are played haphazardly. The song audio quality is very poor. .", "data_idx": 3913, "number": 2, "label": "blues"} +{"file_name": "train_07067.png", "caption": "The song is an instrumental. A bass guitarist is trying to tune his guitar with a tuning module creating bass tones that are played haphazardly. The song audio quality is very poor. .", "data_idx": 3913, "number": 3, "label": "blues"} +{"file_name": "train_07068.png", "caption": "This is a repeated chord progression that's arpeggiated on an electric guitar. The guitar signal has a chorus pedal effect applied to it, and so it doesn't sound like a clean tone. The arpeggio itself is mellow yet uplifting.", "data_idx": 3916, "number": 0, "label": "jazz"} +{"file_name": "train_07069.png", "caption": "This is a repeated chord progression that's arpeggiated on an electric guitar. The guitar signal has a chorus pedal effect applied to it, and so it doesn't sound like a clean tone. The arpeggio itself is mellow yet uplifting.", "data_idx": 3916, "number": 1, "label": "jazz"} +{"file_name": "train_07070.png", "caption": "This is a repeated chord progression that's arpeggiated on an electric guitar. The guitar signal has a chorus pedal effect applied to it, and so it doesn't sound like a clean tone. The arpeggio itself is mellow yet uplifting.", "data_idx": 3916, "number": 2, "label": "jazz"} +{"file_name": "train_07071.png", "caption": "This is a repeated chord progression that's arpeggiated on an electric guitar. The guitar signal has a chorus pedal effect applied to it, and so it doesn't sound like a clean tone. The arpeggio itself is mellow yet uplifting.", "data_idx": 3916, "number": 3, "label": "jazz"} +{"file_name": "train_07072.png", "caption": "A female voice is singing, sounding sensual while an acoustic piano is playing a ballad with a change in keys and strings being played with long strokes. The song sounds sensual and dramatic. You can hear some clicking sounds in the recording. This song may be played at a karaoke bar. This song seems to be an amateur recording.", "data_idx": 3917, "number": 0, "label": "disco"} +{"file_name": "train_07073.png", "caption": "A female voice is singing, sounding sensual while an acoustic piano is playing a ballad with a change in keys and strings being played with long strokes. The song sounds sensual and dramatic. You can hear some clicking sounds in the recording. This song may be played at a karaoke bar. This song seems to be an amateur recording.", "data_idx": 3917, "number": 1, "label": "disco"} +{"file_name": "train_07074.png", "caption": "A female voice is singing, sounding sensual while an acoustic piano is playing a ballad with a change in keys and strings being played with long strokes. The song sounds sensual and dramatic. You can hear some clicking sounds in the recording. This song may be played at a karaoke bar. This song seems to be an amateur recording.", "data_idx": 3917, "number": 2, "label": "disco"} +{"file_name": "train_07075.png", "caption": "A female voice is singing, sounding sensual while an acoustic piano is playing a ballad with a change in keys and strings being played with long strokes. The song sounds sensual and dramatic. You can hear some clicking sounds in the recording. This song may be played at a karaoke bar. This song seems to be an amateur recording.", "data_idx": 3917, "number": 3, "label": "disco"} +{"file_name": "train_07076.png", "caption": "The low quality recording features a metal song that consists of wide aggressive, distorted electric guitars, distorted bass, clean electric guitar solo melody, energetic crash cymbals, punchy snare, double pedal kick and throaty male vocal talking and screaming over it. There are some energetic snare rolls that serve as a breakbeat and transition to the next section. It sounds energetic, aggressive and manic. Putting the vocal so low in the mix, makes it a low quality sound.", "data_idx": 3919, "number": 0, "label": "metal"} +{"file_name": "train_07077.png", "caption": "The low quality recording features a metal song that consists of wide aggressive, distorted electric guitars, distorted bass, clean electric guitar solo melody, energetic crash cymbals, punchy snare, double pedal kick and throaty male vocal talking and screaming over it. There are some energetic snare rolls that serve as a breakbeat and transition to the next section. It sounds energetic, aggressive and manic. Putting the vocal so low in the mix, makes it a low quality sound.", "data_idx": 3919, "number": 1, "label": "metal"} +{"file_name": "train_07078.png", "caption": "The low quality recording features a metal song that consists of wide aggressive, distorted electric guitars, distorted bass, clean electric guitar solo melody, energetic crash cymbals, punchy snare, double pedal kick and throaty male vocal talking and screaming over it. There are some energetic snare rolls that serve as a breakbeat and transition to the next section. It sounds energetic, aggressive and manic. Putting the vocal so low in the mix, makes it a low quality sound.", "data_idx": 3919, "number": 2, "label": "metal"} +{"file_name": "train_07079.png", "caption": "The low quality recording features a metal song that consists of wide aggressive, distorted electric guitars, distorted bass, clean electric guitar solo melody, energetic crash cymbals, punchy snare, double pedal kick and throaty male vocal talking and screaming over it. There are some energetic snare rolls that serve as a breakbeat and transition to the next section. It sounds energetic, aggressive and manic. Putting the vocal so low in the mix, makes it a low quality sound.", "data_idx": 3919, "number": 3, "label": "metal"} +{"file_name": "train_07080.png", "caption": "Someone is scratching turntables to a backing track coming out of a speaker. This is an amateur recording. This song may be playing at home practicing alone.", "data_idx": 3920, "number": 0, "label": "disco"} +{"file_name": "train_07081.png", "caption": "Someone is scratching turntables to a backing track coming out of a speaker. This is an amateur recording. This song may be playing at home practicing alone.", "data_idx": 3920, "number": 1, "label": "disco"} +{"file_name": "train_07082.png", "caption": "Someone is scratching turntables to a backing track coming out of a speaker. This is an amateur recording. This song may be playing at home practicing alone.", "data_idx": 3920, "number": 2, "label": "disco"} +{"file_name": "train_07083.png", "caption": "Someone is scratching turntables to a backing track coming out of a speaker. This is an amateur recording. This song may be playing at home practicing alone.", "data_idx": 3920, "number": 3, "label": "disco"} +{"file_name": "train_07084.png", "caption": "This folk song is a duet and features a male and a female voice singing in harmony. This is accompanied by an acoustic guitar strumming chords. A banjo player fills in between lines. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be played in a coffee shop.", "data_idx": 3921, "number": 0, "label": "rock"} +{"file_name": "train_07085.png", "caption": "This folk song is a duet and features a male and a female voice singing in harmony. This is accompanied by an acoustic guitar strumming chords. A banjo player fills in between lines. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be played in a coffee shop.", "data_idx": 3921, "number": 1, "label": "rock"} +{"file_name": "train_07086.png", "caption": "This folk song is a duet and features a male and a female voice singing in harmony. This is accompanied by an acoustic guitar strumming chords. A banjo player fills in between lines. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be played in a coffee shop.", "data_idx": 3921, "number": 2, "label": "rock"} +{"file_name": "train_07087.png", "caption": "This folk song is a duet and features a male and a female voice singing in harmony. This is accompanied by an acoustic guitar strumming chords. A banjo player fills in between lines. There is no percussion in this song. The mood of this song is happy and upbeat. This song can be played in a coffee shop.", "data_idx": 3921, "number": 3, "label": "rock"} +{"file_name": "train_07088.png", "caption": "The low quality recording features a creepy music box melody followed by high pitched buzz, wide distorted low tone sounds and some growling noises. It sounds dark, suspenseful and intense - it almost feels like listening to a horror film.", "data_idx": 3924, "number": 0, "label": "hiphop"} +{"file_name": "train_07089.png", "caption": "The low quality recording features a creepy music box melody followed by high pitched buzz, wide distorted low tone sounds and some growling noises. It sounds dark, suspenseful and intense - it almost feels like listening to a horror film.", "data_idx": 3924, "number": 1, "label": "hiphop"} +{"file_name": "train_07090.png", "caption": "The low quality recording features a creepy music box melody followed by high pitched buzz, wide distorted low tone sounds and some growling noises. It sounds dark, suspenseful and intense - it almost feels like listening to a horror film.", "data_idx": 3924, "number": 2, "label": "hiphop"} +{"file_name": "train_07091.png", "caption": "The low quality recording features a creepy music box melody followed by high pitched buzz, wide distorted low tone sounds and some growling noises. It sounds dark, suspenseful and intense - it almost feels like listening to a horror film.", "data_idx": 3924, "number": 3, "label": "hiphop"} +{"file_name": "train_07092.png", "caption": "A female vocalist sings this spirited rap. The tempo is medium with punchy drumming and synthesiser arrangements. The song is youthful,energetic,spirited with a catchy recurring vocal riff. The song is an Electro Rap/Hip-Hop song.", "data_idx": 3925, "number": 0, "label": "pop"} +{"file_name": "train_07093.png", "caption": "A female vocalist sings this spirited rap. The tempo is medium with punchy drumming and synthesiser arrangements. The song is youthful,energetic,spirited with a catchy recurring vocal riff. The song is an Electro Rap/Hip-Hop song.", "data_idx": 3925, "number": 1, "label": "pop"} +{"file_name": "train_07094.png", "caption": "A female vocalist sings this spirited rap. The tempo is medium with punchy drumming and synthesiser arrangements. The song is youthful,energetic,spirited with a catchy recurring vocal riff. The song is an Electro Rap/Hip-Hop song.", "data_idx": 3925, "number": 2, "label": "pop"} +{"file_name": "train_07095.png", "caption": "A female vocalist sings this spirited rap. The tempo is medium with punchy drumming and synthesiser arrangements. The song is youthful,energetic,spirited with a catchy recurring vocal riff. The song is an Electro Rap/Hip-Hop song.", "data_idx": 3925, "number": 3, "label": "pop"} +{"file_name": "train_07096.png", "caption": "This clip starts with the sound of scribbling on a piece of paper. This is followed by an epic orchestral song. This has a string section playing notes on a high register. The bass plays the root notes of the chords. The bass drum plays strokes. Male voices sing in baritone like a choir.", "data_idx": 3926, "number": 0, "label": "hiphop"} +{"file_name": "train_07097.png", "caption": "This clip starts with the sound of scribbling on a piece of paper. This is followed by an epic orchestral song. This has a string section playing notes on a high register. The bass plays the root notes of the chords. The bass drum plays strokes. Male voices sing in baritone like a choir.", "data_idx": 3926, "number": 1, "label": "hiphop"} +{"file_name": "train_07098.png", "caption": "This instrumental song features a guitar playing a lick. This is a joyful melody played on the guitar with a delay effect. There is no percussion and no other instruments in this song. There are no voices in this song. At the end, the noise threshold of the guitar is crossed and the hum can be heard. This song is relaxing and can be played in a coffee shop.", "data_idx": 3927, "number": 0, "label": "rock"} +{"file_name": "train_07099.png", "caption": "This instrumental song features a guitar playing a lick. This is a joyful melody played on the guitar with a delay effect. There is no percussion and no other instruments in this song. There are no voices in this song. At the end, the noise threshold of the guitar is crossed and the hum can be heard. This song is relaxing and can be played in a coffee shop.", "data_idx": 3927, "number": 1, "label": "rock"} +{"file_name": "train_07100.png", "caption": "This instrumental song features a guitar playing a lick. This is a joyful melody played on the guitar with a delay effect. There is no percussion and no other instruments in this song. There are no voices in this song. At the end, the noise threshold of the guitar is crossed and the hum can be heard. This song is relaxing and can be played in a coffee shop.", "data_idx": 3927, "number": 2, "label": "rock"} +{"file_name": "train_07101.png", "caption": "This instrumental song features a guitar playing a lick. This is a joyful melody played on the guitar with a delay effect. There is no percussion and no other instruments in this song. There are no voices in this song. At the end, the noise threshold of the guitar is crossed and the hum can be heard. This song is relaxing and can be played in a coffee shop.", "data_idx": 3927, "number": 3, "label": "rock"} +{"file_name": "train_07102.png", "caption": "This song is an orchestral piece. The tempo is slow with the vocalist singing in soprano,alto, mezzo, treble and bass harmony. The song is intense, grim, sinister, indicative of danger, eerie, enigmatic, out worldly and mesmerising. There are incoherent vocal riffs and sounds towards the end of this clip.", "data_idx": 3928, "number": 0, "label": "classical"} +{"file_name": "train_07103.png", "caption": "This song is an orchestral piece. The tempo is slow with the vocalist singing in soprano,alto, mezzo, treble and bass harmony. The song is intense, grim, sinister, indicative of danger, eerie, enigmatic, out worldly and mesmerising. There are incoherent vocal riffs and sounds towards the end of this clip.", "data_idx": 3928, "number": 1, "label": "classical"} +{"file_name": "train_07104.png", "caption": "This song is an orchestral piece. The tempo is slow with the vocalist singing in soprano,alto, mezzo, treble and bass harmony. The song is intense, grim, sinister, indicative of danger, eerie, enigmatic, out worldly and mesmerising. There are incoherent vocal riffs and sounds towards the end of this clip.", "data_idx": 3928, "number": 2, "label": "classical"} +{"file_name": "train_07105.png", "caption": "This song is an orchestral piece. The tempo is slow with the vocalist singing in soprano,alto, mezzo, treble and bass harmony. The song is intense, grim, sinister, indicative of danger, eerie, enigmatic, out worldly and mesmerising. There are incoherent vocal riffs and sounds towards the end of this clip.", "data_idx": 3928, "number": 3, "label": "classical"} +{"file_name": "train_07106.png", "caption": "This music is a high energy Rock and Roll. The tempo is fast with a vivacious electric guitar melody, punchy drumming, animated trumpets, funky bass line, keyboard and acoustic guitar accompaniment . The music is high energy, vivacious, bright, groovy,enthusiastic and animated Rock and Roll instrumental.", "data_idx": 3933, "number": 0, "label": "classical"} +{"file_name": "train_07107.png", "caption": "This music is a high energy Rock and Roll. The tempo is fast with a vivacious electric guitar melody, punchy drumming, animated trumpets, funky bass line, keyboard and acoustic guitar accompaniment . The music is high energy, vivacious, bright, groovy,enthusiastic and animated Rock and Roll instrumental.", "data_idx": 3933, "number": 1, "label": "classical"} +{"file_name": "train_07108.png", "caption": "This music is a high energy Rock and Roll. The tempo is fast with a vivacious electric guitar melody, punchy drumming, animated trumpets, funky bass line, keyboard and acoustic guitar accompaniment . The music is high energy, vivacious, bright, groovy,enthusiastic and animated Rock and Roll instrumental.", "data_idx": 3933, "number": 2, "label": "classical"} +{"file_name": "train_07109.png", "caption": "This music is a high energy Rock and Roll. The tempo is fast with a vivacious electric guitar melody, punchy drumming, animated trumpets, funky bass line, keyboard and acoustic guitar accompaniment . The music is high energy, vivacious, bright, groovy,enthusiastic and animated Rock and Roll instrumental.", "data_idx": 3933, "number": 3, "label": "classical"} +{"file_name": "train_07110.png", "caption": "The excerpt features a synth sound playing a few notes and then a short melody. Throughout the passage and from time to time the synth sound slides from one note to another. This doesn't sound like music but instead it does sound like someone's playing around with a synth sound.", "data_idx": 3934, "number": 0, "label": "hiphop"} +{"file_name": "train_07111.png", "caption": "The excerpt features a synth sound playing a few notes and then a short melody. Throughout the passage and from time to time the synth sound slides from one note to another. This doesn't sound like music but instead it does sound like someone's playing around with a synth sound.", "data_idx": 3934, "number": 1, "label": "hiphop"} +{"file_name": "train_07112.png", "caption": "The excerpt features a synth sound playing a few notes and then a short melody. Throughout the passage and from time to time the synth sound slides from one note to another. This doesn't sound like music but instead it does sound like someone's playing around with a synth sound.", "data_idx": 3934, "number": 2, "label": "hiphop"} +{"file_name": "train_07113.png", "caption": "The excerpt features a synth sound playing a few notes and then a short melody. Throughout the passage and from time to time the synth sound slides from one note to another. This doesn't sound like music but instead it does sound like someone's playing around with a synth sound.", "data_idx": 3934, "number": 3, "label": "hiphop"} +{"file_name": "train_07114.png", "caption": "This recording is full of digital game noises along with short instrumentation sounds. Then a country song starts to play a composition in a very bad quality along with duck sounds. Nature sounds like water and birds chirping can be noticed. This recording is of poor audio quality and may be playing for a simple videogame.", "data_idx": 3935, "number": 0, "label": "reggae"} +{"file_name": "train_07115.png", "caption": "This recording is full of digital game noises along with short instrumentation sounds. Then a country song starts to play a composition in a very bad quality along with duck sounds. Nature sounds like water and birds chirping can be noticed. This recording is of poor audio quality and may be playing for a simple videogame.", "data_idx": 3935, "number": 1, "label": "reggae"} +{"file_name": "train_07116.png", "caption": "This recording is full of digital game noises along with short instrumentation sounds. Then a country song starts to play a composition in a very bad quality along with duck sounds. Nature sounds like water and birds chirping can be noticed. This recording is of poor audio quality and may be playing for a simple videogame.", "data_idx": 3935, "number": 2, "label": "reggae"} +{"file_name": "train_07117.png", "caption": "This recording is full of digital game noises along with short instrumentation sounds. Then a country song starts to play a composition in a very bad quality along with duck sounds. Nature sounds like water and birds chirping can be noticed. This recording is of poor audio quality and may be playing for a simple videogame.", "data_idx": 3935, "number": 3, "label": "reggae"} +{"file_name": "train_07118.png", "caption": "The low quality recording features a compilation of a few different recordings that mostly consist of female vocals talking with each other and a loud crowd talking in the background. However, in the first section, there are also some claps and female vocals mumbling a song. The arrangement of the recordings is weird, but in context it probably makes sense.", "data_idx": 3937, "number": 0, "label": "hiphop"} +{"file_name": "train_07119.png", "caption": "The low quality recording features a compilation of a few different recordings that mostly consist of female vocals talking with each other and a loud crowd talking in the background. However, in the first section, there are also some claps and female vocals mumbling a song. The arrangement of the recordings is weird, but in context it probably makes sense.", "data_idx": 3937, "number": 1, "label": "hiphop"} +{"file_name": "train_07120.png", "caption": "The low quality recording features a compilation of a few different recordings that mostly consist of female vocals talking with each other and a loud crowd talking in the background. However, in the first section, there are also some claps and female vocals mumbling a song. The arrangement of the recordings is weird, but in context it probably makes sense.", "data_idx": 3937, "number": 2, "label": "hiphop"} +{"file_name": "train_07121.png", "caption": "The low quality recording features a compilation of a few different recordings that mostly consist of female vocals talking with each other and a loud crowd talking in the background. However, in the first section, there are also some claps and female vocals mumbling a song. The arrangement of the recordings is weird, but in context it probably makes sense.", "data_idx": 3937, "number": 3, "label": "hiphop"} +{"file_name": "train_07122.png", "caption": "This instrumental clip features a bass guitar playing a repetitive lick. This is accompanied by a shaker and a tambourine. After one bar, the tambourine stops playing. There are no voices in this song. There is no percussion in this song. The mood of this song is trippy. It can be used in a bank robbery movie.", "data_idx": 3938, "number": 0, "label": "rock"} +{"file_name": "train_07123.png", "caption": "This instrumental clip features a bass guitar playing a repetitive lick. This is accompanied by a shaker and a tambourine. After one bar, the tambourine stops playing. There are no voices in this song. There is no percussion in this song. The mood of this song is trippy. It can be used in a bank robbery movie.", "data_idx": 3938, "number": 1, "label": "rock"} +{"file_name": "train_07124.png", "caption": "This instrumental clip features a bass guitar playing a repetitive lick. This is accompanied by a shaker and a tambourine. After one bar, the tambourine stops playing. There are no voices in this song. There is no percussion in this song. The mood of this song is trippy. It can be used in a bank robbery movie.", "data_idx": 3938, "number": 2, "label": "rock"} +{"file_name": "train_07125.png", "caption": "This instrumental clip features a bass guitar playing a repetitive lick. This is accompanied by a shaker and a tambourine. After one bar, the tambourine stops playing. There are no voices in this song. There is no percussion in this song. The mood of this song is trippy. It can be used in a bank robbery movie.", "data_idx": 3938, "number": 3, "label": "rock"} +{"file_name": "train_07126.png", "caption": "A female vocalist sings this spirited latin song.the tempo is medium fast with an animated piano accompaniment, rhythmic congas and bongos, funky bass line and bright trumpet harmony. The song is lively, spirited, upbeat, catchy, vivacious;vibrant and peppy with a salsa dance groove. This song is Latin Pop.", "data_idx": 3943, "number": 0, "label": "reggae"} +{"file_name": "train_07127.png", "caption": "A female vocalist sings this spirited latin song.the tempo is medium fast with an animated piano accompaniment, rhythmic congas and bongos, funky bass line and bright trumpet harmony. The song is lively, spirited, upbeat, catchy, vivacious;vibrant and peppy with a salsa dance groove. This song is Latin Pop.", "data_idx": 3943, "number": 1, "label": "reggae"} +{"file_name": "train_07128.png", "caption": "A female vocalist sings this spirited latin song.the tempo is medium fast with an animated piano accompaniment, rhythmic congas and bongos, funky bass line and bright trumpet harmony. The song is lively, spirited, upbeat, catchy, vivacious;vibrant and peppy with a salsa dance groove. This song is Latin Pop.", "data_idx": 3943, "number": 2, "label": "reggae"} +{"file_name": "train_07129.png", "caption": "A female vocalist sings this spirited latin song.the tempo is medium fast with an animated piano accompaniment, rhythmic congas and bongos, funky bass line and bright trumpet harmony. The song is lively, spirited, upbeat, catchy, vivacious;vibrant and peppy with a salsa dance groove. This song is Latin Pop.", "data_idx": 3943, "number": 3, "label": "reggae"} +{"file_name": "train_07130.png", "caption": "This alternative rock song features a male voice singing the main melody at a high pitch. Other male voices sing in harmony after the main voice pauses. This is accompanied by powerful percussion playing a rock beat in common time. Distortion guitars play power chords. One of the guitars plays the same melody as the backing voices on the lead guitar. The bass plays the root notes of the chords. This song is played at a moderate tempo. The mood of this song is upbeat. This song can be played in a Transformers style movie.", "data_idx": 3945, "number": 0, "label": "metal"} +{"file_name": "train_07131.png", "caption": "This alternative rock song features a male voice singing the main melody at a high pitch. Other male voices sing in harmony after the main voice pauses. This is accompanied by powerful percussion playing a rock beat in common time. Distortion guitars play power chords. One of the guitars plays the same melody as the backing voices on the lead guitar. The bass plays the root notes of the chords. This song is played at a moderate tempo. The mood of this song is upbeat. This song can be played in a Transformers style movie.", "data_idx": 3945, "number": 1, "label": "metal"} +{"file_name": "train_07132.png", "caption": "This alternative rock song features a male voice singing the main melody at a high pitch. Other male voices sing in harmony after the main voice pauses. This is accompanied by powerful percussion playing a rock beat in common time. Distortion guitars play power chords. One of the guitars plays the same melody as the backing voices on the lead guitar. The bass plays the root notes of the chords. This song is played at a moderate tempo. The mood of this song is upbeat. This song can be played in a Transformers style movie.", "data_idx": 3945, "number": 2, "label": "metal"} +{"file_name": "train_07133.png", "caption": "This alternative rock song features a male voice singing the main melody at a high pitch. Other male voices sing in harmony after the main voice pauses. This is accompanied by powerful percussion playing a rock beat in common time. Distortion guitars play power chords. One of the guitars plays the same melody as the backing voices on the lead guitar. The bass plays the root notes of the chords. This song is played at a moderate tempo. The mood of this song is upbeat. This song can be played in a Transformers style movie.", "data_idx": 3945, "number": 3, "label": "metal"} +{"file_name": "train_07134.png", "caption": "The song is an instrumental music section. The song is medium tempo with a string section playing percussively with violins and cellos in harmony, flute playing a melancholic solo, percussive hits and steady bass line. The song is full of suspense and passion. The song is a Tamil movie instrumental soundtrack.", "data_idx": 3946, "number": 0, "label": "jazz"} +{"file_name": "train_07135.png", "caption": "The song is an instrumental music section. The song is medium tempo with a string section playing percussively with violins and cellos in harmony, flute playing a melancholic solo, percussive hits and steady bass line. The song is full of suspense and passion. The song is a Tamil movie instrumental soundtrack.", "data_idx": 3946, "number": 1, "label": "jazz"} +{"file_name": "train_07136.png", "caption": "The song is an instrumental music section. The song is medium tempo with a string section playing percussively with violins and cellos in harmony, flute playing a melancholic solo, percussive hits and steady bass line. The song is full of suspense and passion. The song is a Tamil movie instrumental soundtrack.", "data_idx": 3946, "number": 2, "label": "jazz"} +{"file_name": "train_07137.png", "caption": "The song is an instrumental music section. The song is medium tempo with a string section playing percussively with violins and cellos in harmony, flute playing a melancholic solo, percussive hits and steady bass line. The song is full of suspense and passion. The song is a Tamil movie instrumental soundtrack.", "data_idx": 3946, "number": 3, "label": "jazz"} +{"file_name": "train_07138.png", "caption": "The low quality recording features an echoing electric guitar arpeggiated melody. At the very end of the loop, the guitar is pitched and bent down. It is noisy and in mono and it sounds like someone is trying out guitar amp effects.", "data_idx": 3947, "number": 0, "label": "classical"} +{"file_name": "train_07139.png", "caption": "The low quality recording features an echoing electric guitar arpeggiated melody. At the very end of the loop, the guitar is pitched and bent down. It is noisy and in mono and it sounds like someone is trying out guitar amp effects.", "data_idx": 3947, "number": 1, "label": "classical"} +{"file_name": "train_07140.png", "caption": "The low quality recording features an echoing electric guitar arpeggiated melody. At the very end of the loop, the guitar is pitched and bent down. It is noisy and in mono and it sounds like someone is trying out guitar amp effects.", "data_idx": 3947, "number": 2, "label": "classical"} +{"file_name": "train_07141.png", "caption": "The low quality recording features an echoing electric guitar arpeggiated melody. At the very end of the loop, the guitar is pitched and bent down. It is noisy and in mono and it sounds like someone is trying out guitar amp effects.", "data_idx": 3947, "number": 3, "label": "classical"} +{"file_name": "train_07142.png", "caption": "The low quality recording features laser, buzzy and metallic sound effects with a haunting background music, which makes it sound like it was recorded in a game room. The recording is noisy, mono, distorted and it sounds creepy.", "data_idx": 3950, "number": 0, "label": "metal"} +{"file_name": "train_07143.png", "caption": "The low quality recording features laser, buzzy and metallic sound effects with a haunting background music, which makes it sound like it was recorded in a game room. The recording is noisy, mono, distorted and it sounds creepy.", "data_idx": 3950, "number": 1, "label": "metal"} +{"file_name": "train_07144.png", "caption": "The low quality recording features laser, buzzy and metallic sound effects with a haunting background music, which makes it sound like it was recorded in a game room. The recording is noisy, mono, distorted and it sounds creepy.", "data_idx": 3950, "number": 2, "label": "metal"} +{"file_name": "train_07145.png", "caption": "The low quality recording features laser, buzzy and metallic sound effects with a haunting background music, which makes it sound like it was recorded in a game room. The recording is noisy, mono, distorted and it sounds creepy.", "data_idx": 3950, "number": 3, "label": "metal"} +{"file_name": "train_07146.png", "caption": "An acoustic drum with a lot of reverb is playing a minimalistic slow groove along with an e-bass playing long single notes. A synth hit comes in for a moment and then an e-guitar is talking over it with a melody. The male voice sings with a lot of reverb, reverb and a chorus/flanger on his voice. The whole recording is full of reverb and the voice of the singer is using a ping pong delay. This song may be playing on a lazy day at home.", "data_idx": 3953, "number": 0, "label": "metal"} +{"file_name": "train_07147.png", "caption": "An acoustic drum with a lot of reverb is playing a minimalistic slow groove along with an e-bass playing long single notes. A synth hit comes in for a moment and then an e-guitar is talking over it with a melody. The male voice sings with a lot of reverb, reverb and a chorus/flanger on his voice. The whole recording is full of reverb and the voice of the singer is using a ping pong delay. This song may be playing on a lazy day at home.", "data_idx": 3953, "number": 1, "label": "metal"} +{"file_name": "train_07148.png", "caption": "An acoustic drum with a lot of reverb is playing a minimalistic slow groove along with an e-bass playing long single notes. A synth hit comes in for a moment and then an e-guitar is talking over it with a melody. The male voice sings with a lot of reverb, reverb and a chorus/flanger on his voice. The whole recording is full of reverb and the voice of the singer is using a ping pong delay. This song may be playing on a lazy day at home.", "data_idx": 3953, "number": 2, "label": "metal"} +{"file_name": "train_07149.png", "caption": "An acoustic drum with a lot of reverb is playing a minimalistic slow groove along with an e-bass playing long single notes. A synth hit comes in for a moment and then an e-guitar is talking over it with a melody. The male voice sings with a lot of reverb, reverb and a chorus/flanger on his voice. The whole recording is full of reverb and the voice of the singer is using a ping pong delay. This song may be playing on a lazy day at home.", "data_idx": 3953, "number": 3, "label": "metal"} +{"file_name": "train_07150.png", "caption": "A male singer sings this reggae melody with a live audience. The song is medium tempo with a groovy drum rhythm, trumpet playing rhythmically, guitar playing accompaniment and a groovy bass line. The song is exciting and cheerful. The song is a modern reggae tune and played in both a live audience situation and studio recording quality.", "data_idx": 3954, "number": 0, "label": "reggae"} +{"file_name": "train_07151.png", "caption": "A male singer sings this reggae melody with a live audience. The song is medium tempo with a groovy drum rhythm, trumpet playing rhythmically, guitar playing accompaniment and a groovy bass line. The song is exciting and cheerful. The song is a modern reggae tune and played in both a live audience situation and studio recording quality.", "data_idx": 3954, "number": 1, "label": "reggae"} +{"file_name": "train_07152.png", "caption": "A male singer sings this reggae melody with a live audience. The song is medium tempo with a groovy drum rhythm, trumpet playing rhythmically, guitar playing accompaniment and a groovy bass line. The song is exciting and cheerful. The song is a modern reggae tune and played in both a live audience situation and studio recording quality.", "data_idx": 3954, "number": 2, "label": "reggae"} +{"file_name": "train_07153.png", "caption": "A male singer sings this reggae melody with a live audience. The song is medium tempo with a groovy drum rhythm, trumpet playing rhythmically, guitar playing accompaniment and a groovy bass line. The song is exciting and cheerful. The song is a modern reggae tune and played in both a live audience situation and studio recording quality.", "data_idx": 3954, "number": 3, "label": "reggae"} +{"file_name": "train_07154.png", "caption": "Someone is playing an e-bass along with somebody playing percussion with fast rhythms. A male voice is singing in a higher register. This is an amateur recording and of poor audio-quality. This song may be playing in a live scenario.", "data_idx": 3955, "number": 0, "label": "jazz"} +{"file_name": "train_07155.png", "caption": "Someone is playing an e-bass along with somebody playing percussion with fast rhythms. A male voice is singing in a higher register. This is an amateur recording and of poor audio-quality. This song may be playing in a live scenario.", "data_idx": 3955, "number": 1, "label": "jazz"} +{"file_name": "train_07156.png", "caption": "A male singer sings this rock melody. The song is medium fast tempo with a strong rock drumming rhythm, percussive bass line, distorted guitars playing rhythm and lead along with tambourine percussion. The song is energetic and cheerful. The song is a rock song with an average quality audio.", "data_idx": 3956, "number": 0, "label": "metal"} +{"file_name": "train_07157.png", "caption": "A male singer sings this rock melody. The song is medium fast tempo with a strong rock drumming rhythm, percussive bass line, distorted guitars playing rhythm and lead along with tambourine percussion. The song is energetic and cheerful. The song is a rock song with an average quality audio.", "data_idx": 3956, "number": 1, "label": "metal"} +{"file_name": "train_07158.png", "caption": "A male singer sings this rock melody. The song is medium fast tempo with a strong rock drumming rhythm, percussive bass line, distorted guitars playing rhythm and lead along with tambourine percussion. The song is energetic and cheerful. The song is a rock song with an average quality audio.", "data_idx": 3956, "number": 2, "label": "metal"} +{"file_name": "train_07159.png", "caption": "A male singer sings this rock melody. The song is medium fast tempo with a strong rock drumming rhythm, percussive bass line, distorted guitars playing rhythm and lead along with tambourine percussion. The song is energetic and cheerful. The song is a rock song with an average quality audio.", "data_idx": 3956, "number": 3, "label": "metal"} +{"file_name": "train_07160.png", "caption": "The Electro song features a widely spread intimate percussive elements, stuttering hi hats, soft shakers, synth pad chords, groovy bass and punchy snare and kick hits. It sounds relaxing, calming and kind of satisfying, as it literally sounds like liquid dripping through the stereo image.", "data_idx": 3957, "number": 0, "label": "reggae"} +{"file_name": "train_07161.png", "caption": "The Electro song features a widely spread intimate percussive elements, stuttering hi hats, soft shakers, synth pad chords, groovy bass and punchy snare and kick hits. It sounds relaxing, calming and kind of satisfying, as it literally sounds like liquid dripping through the stereo image.", "data_idx": 3957, "number": 1, "label": "reggae"} +{"file_name": "train_07162.png", "caption": "The Electro song features a widely spread intimate percussive elements, stuttering hi hats, soft shakers, synth pad chords, groovy bass and punchy snare and kick hits. It sounds relaxing, calming and kind of satisfying, as it literally sounds like liquid dripping through the stereo image.", "data_idx": 3957, "number": 2, "label": "reggae"} +{"file_name": "train_07163.png", "caption": "The Electro song features a widely spread intimate percussive elements, stuttering hi hats, soft shakers, synth pad chords, groovy bass and punchy snare and kick hits. It sounds relaxing, calming and kind of satisfying, as it literally sounds like liquid dripping through the stereo image.", "data_idx": 3957, "number": 3, "label": "reggae"} +{"file_name": "train_07164.png", "caption": "This is a rock opera piece that is being sung by a female vocalist in a medium-to-high pitch range. There is an orchestra playing the melody in the background composed of strings, flute and a piano. The atmosphere of the piece is dreamy and sentimental. It could be used in the soundtrack of a fairytale movie.", "data_idx": 3959, "number": 0, "label": "classical"} +{"file_name": "train_07165.png", "caption": "This is a rock opera piece that is being sung by a female vocalist in a medium-to-high pitch range. There is an orchestra playing the melody in the background composed of strings, flute and a piano. The atmosphere of the piece is dreamy and sentimental. It could be used in the soundtrack of a fairytale movie.", "data_idx": 3959, "number": 1, "label": "classical"} +{"file_name": "train_07166.png", "caption": "This is a rock opera piece that is being sung by a female vocalist in a medium-to-high pitch range. There is an orchestra playing the melody in the background composed of strings, flute and a piano. The atmosphere of the piece is dreamy and sentimental. It could be used in the soundtrack of a fairytale movie.", "data_idx": 3959, "number": 2, "label": "classical"} +{"file_name": "train_07167.png", "caption": "This is a rock opera piece that is being sung by a female vocalist in a medium-to-high pitch range. There is an orchestra playing the melody in the background composed of strings, flute and a piano. The atmosphere of the piece is dreamy and sentimental. It could be used in the soundtrack of a fairytale movie.", "data_idx": 3959, "number": 3, "label": "classical"} +{"file_name": "train_07168.png", "caption": "The low quality recording features a shimmering bells alongside mellow sustained brass melody and tinny bells melody. It gives off nostalgic and euphoric vibes and it also sounds soft and mellow - almost like a lullaby.", "data_idx": 3962, "number": 0, "label": "classical"} +{"file_name": "train_07169.png", "caption": "The low quality recording features a shimmering bells alongside mellow sustained brass melody and tinny bells melody. It gives off nostalgic and euphoric vibes and it also sounds soft and mellow - almost like a lullaby.", "data_idx": 3962, "number": 1, "label": "classical"} +{"file_name": "train_07170.png", "caption": "The low quality recording features a shimmering bells alongside mellow sustained brass melody and tinny bells melody. It gives off nostalgic and euphoric vibes and it also sounds soft and mellow - almost like a lullaby.", "data_idx": 3962, "number": 2, "label": "classical"} +{"file_name": "train_07171.png", "caption": "The low quality recording features a shimmering bells alongside mellow sustained brass melody and tinny bells melody. It gives off nostalgic and euphoric vibes and it also sounds soft and mellow - almost like a lullaby.", "data_idx": 3962, "number": 3, "label": "classical"} +{"file_name": "train_07172.png", "caption": "Solo sitar using microtonality, droning and string bending. The music is hypnotic and meditative and there is the sound of tape hiss and warble in the recording.", "data_idx": 3965, "number": 0, "label": "classical"} +{"file_name": "train_07173.png", "caption": "Solo sitar using microtonality, droning and string bending. The music is hypnotic and meditative and there is the sound of tape hiss and warble in the recording.", "data_idx": 3965, "number": 1, "label": "classical"} +{"file_name": "train_07174.png", "caption": "Solo sitar using microtonality, droning and string bending. The music is hypnotic and meditative and there is the sound of tape hiss and warble in the recording.", "data_idx": 3965, "number": 2, "label": "classical"} +{"file_name": "train_07175.png", "caption": "Solo sitar using microtonality, droning and string bending. The music is hypnotic and meditative and there is the sound of tape hiss and warble in the recording.", "data_idx": 3965, "number": 3, "label": "classical"} +{"file_name": "train_07176.png", "caption": "The song is an instrumental track for a live performance act. The song is medium tempo with a male singer singing to a strong drumming rhythm, groovy bass line, keyboard accompaniment along with an amateur playing tambourine percussion. The song has poor audio quality.", "data_idx": 3966, "number": 0, "label": "classical"} +{"file_name": "train_07177.png", "caption": "The song is an instrumental track for a live performance act. The song is medium tempo with a male singer singing to a strong drumming rhythm, groovy bass line, keyboard accompaniment along with an amateur playing tambourine percussion. The song has poor audio quality.", "data_idx": 3966, "number": 1, "label": "classical"} +{"file_name": "train_07178.png", "caption": "The song is an instrumental track for a live performance act. The song is medium tempo with a male singer singing to a strong drumming rhythm, groovy bass line, keyboard accompaniment along with an amateur playing tambourine percussion. The song has poor audio quality.", "data_idx": 3966, "number": 2, "label": "classical"} +{"file_name": "train_07179.png", "caption": "The song is an instrumental track for a live performance act. The song is medium tempo with a male singer singing to a strong drumming rhythm, groovy bass line, keyboard accompaniment along with an amateur playing tambourine percussion. The song has poor audio quality.", "data_idx": 3966, "number": 3, "label": "classical"} +{"file_name": "train_07180.png", "caption": "The music features a female voice singing a melody while being accompanied by a harp and strings synth played on a keyboard. The music has a ternary feel which is being emphasized by the harp that plays 3 equal notes every beat. The keyboard strings synth plays harmony as well as a melody that towards the end of the music excerpt is played in unison with the singer's melody.", "data_idx": 3967, "number": 0, "label": "rock"} +{"file_name": "train_07181.png", "caption": "The music features a female voice singing a melody while being accompanied by a harp and strings synth played on a keyboard. The music has a ternary feel which is being emphasized by the harp that plays 3 equal notes every beat. The keyboard strings synth plays harmony as well as a melody that towards the end of the music excerpt is played in unison with the singer's melody.", "data_idx": 3967, "number": 1, "label": "rock"} +{"file_name": "train_07182.png", "caption": "The music features a female voice singing a melody while being accompanied by a harp and strings synth played on a keyboard. The music has a ternary feel which is being emphasized by the harp that plays 3 equal notes every beat. The keyboard strings synth plays harmony as well as a melody that towards the end of the music excerpt is played in unison with the singer's melody.", "data_idx": 3967, "number": 2, "label": "rock"} +{"file_name": "train_07183.png", "caption": "The music features a female voice singing a melody while being accompanied by a harp and strings synth played on a keyboard. The music has a ternary feel which is being emphasized by the harp that plays 3 equal notes every beat. The keyboard strings synth plays harmony as well as a melody that towards the end of the music excerpt is played in unison with the singer's melody.", "data_idx": 3967, "number": 3, "label": "rock"} +{"file_name": "train_07184.png", "caption": "The low quality recording features a Northern Soul song that consists of passionate female vocal singing over groovy piano chords, groovy bass, shimmering tambourine layered with punchy snare hits, muddy kick hits and groovy church organ melody. It sounds thin, but also easygoing, nostalgic, sentimental and passionate - like something you would hear in clubs during 60s and 70s.", "data_idx": 3968, "number": 0, "label": "disco"} +{"file_name": "train_07185.png", "caption": "The low quality recording features a Northern Soul song that consists of passionate female vocal singing over groovy piano chords, groovy bass, shimmering tambourine layered with punchy snare hits, muddy kick hits and groovy church organ melody. It sounds thin, but also easygoing, nostalgic, sentimental and passionate - like something you would hear in clubs during 60s and 70s.", "data_idx": 3968, "number": 1, "label": "disco"} +{"file_name": "train_07186.png", "caption": "The low quality recording features a Northern Soul song that consists of passionate female vocal singing over groovy piano chords, groovy bass, shimmering tambourine layered with punchy snare hits, muddy kick hits and groovy church organ melody. It sounds thin, but also easygoing, nostalgic, sentimental and passionate - like something you would hear in clubs during 60s and 70s.", "data_idx": 3968, "number": 2, "label": "disco"} +{"file_name": "train_07187.png", "caption": "The low quality recording features a Northern Soul song that consists of passionate female vocal singing over groovy piano chords, groovy bass, shimmering tambourine layered with punchy snare hits, muddy kick hits and groovy church organ melody. It sounds thin, but also easygoing, nostalgic, sentimental and passionate - like something you would hear in clubs during 60s and 70s.", "data_idx": 3968, "number": 3, "label": "disco"} +{"file_name": "train_07188.png", "caption": "This is an instrumental rock-sounding gear showcase jam. There is an electric guitar playing improvised disconnected riffs with varying accentuations. There is an echo delay pedal being used on the guitar that makes the notes being played echo repeatedly in a fading manner. Due to the usage of numerous riffs, an electric guitar sample could be lifted from this piece to be used in a beat.", "data_idx": 3969, "number": 0, "label": "reggae"} +{"file_name": "train_07189.png", "caption": "This is an instrumental rock-sounding gear showcase jam. There is an electric guitar playing improvised disconnected riffs with varying accentuations. There is an echo delay pedal being used on the guitar that makes the notes being played echo repeatedly in a fading manner. Due to the usage of numerous riffs, an electric guitar sample could be lifted from this piece to be used in a beat.", "data_idx": 3969, "number": 1, "label": "reggae"} +{"file_name": "train_07190.png", "caption": "This is an instrumental rock-sounding gear showcase jam. There is an electric guitar playing improvised disconnected riffs with varying accentuations. There is an echo delay pedal being used on the guitar that makes the notes being played echo repeatedly in a fading manner. Due to the usage of numerous riffs, an electric guitar sample could be lifted from this piece to be used in a beat.", "data_idx": 3969, "number": 2, "label": "reggae"} +{"file_name": "train_07191.png", "caption": "This is an instrumental rock-sounding gear showcase jam. There is an electric guitar playing improvised disconnected riffs with varying accentuations. There is an echo delay pedal being used on the guitar that makes the notes being played echo repeatedly in a fading manner. Due to the usage of numerous riffs, an electric guitar sample could be lifted from this piece to be used in a beat.", "data_idx": 3969, "number": 3, "label": "reggae"} +{"file_name": "train_07192.png", "caption": "This recording contains breaking and shooting sounds. There is also a lot of deep rumbling noise. The whole audio is panned to the right side of the speakers. This is an amateur recording and of poor audio-quality. This audio may be playing in a video-game.", "data_idx": 3971, "number": 0, "label": "metal"} +{"file_name": "train_07193.png", "caption": "This recording contains breaking and shooting sounds. There is also a lot of deep rumbling noise. The whole audio is panned to the right side of the speakers. This is an amateur recording and of poor audio-quality. This audio may be playing in a video-game.", "data_idx": 3971, "number": 1, "label": "metal"} +{"file_name": "train_07194.png", "caption": "This recording contains breaking and shooting sounds. There is also a lot of deep rumbling noise. The whole audio is panned to the right side of the speakers. This is an amateur recording and of poor audio-quality. This audio may be playing in a video-game.", "data_idx": 3971, "number": 2, "label": "metal"} +{"file_name": "train_07195.png", "caption": "This recording contains breaking and shooting sounds. There is also a lot of deep rumbling noise. The whole audio is panned to the right side of the speakers. This is an amateur recording and of poor audio-quality. This audio may be playing in a video-game.", "data_idx": 3971, "number": 3, "label": "metal"} +{"file_name": "train_07196.png", "caption": "The folk music features a bouzouki playing a Greek traditional song. An acoustic guitar accompanies the bouzouki with two strummed chords every measure. Two pairs of bongos or one of bongos and one of congas provide rhythmic variety and drive the pulse of the music.", "data_idx": 3973, "number": 0, "label": "rock"} +{"file_name": "train_07197.png", "caption": "The folk music features a bouzouki playing a Greek traditional song. An acoustic guitar accompanies the bouzouki with two strummed chords every measure. Two pairs of bongos or one of bongos and one of congas provide rhythmic variety and drive the pulse of the music.", "data_idx": 3973, "number": 1, "label": "rock"} +{"file_name": "train_07198.png", "caption": "The folk music features a bouzouki playing a Greek traditional song. An acoustic guitar accompanies the bouzouki with two strummed chords every measure. Two pairs of bongos or one of bongos and one of congas provide rhythmic variety and drive the pulse of the music.", "data_idx": 3973, "number": 2, "label": "rock"} +{"file_name": "train_07199.png", "caption": "The folk music features a bouzouki playing a Greek traditional song. An acoustic guitar accompanies the bouzouki with two strummed chords every measure. Two pairs of bongos or one of bongos and one of congas provide rhythmic variety and drive the pulse of the music.", "data_idx": 3973, "number": 3, "label": "rock"} +{"file_name": "train_07200.png", "caption": "This is an instrumental folk song with the melody played both by a banjo and a violin at the same time. The combination of these instruments creates a very American, western-movie type of atmosphere. It could be used in opening sequences of movies/shows taking place in rural USA.", "data_idx": 3974, "number": 0, "label": "classical"} +{"file_name": "train_07201.png", "caption": "This is an instrumental folk song with the melody played both by a banjo and a violin at the same time. The combination of these instruments creates a very American, western-movie type of atmosphere. It could be used in opening sequences of movies/shows taking place in rural USA.", "data_idx": 3974, "number": 1, "label": "classical"} +{"file_name": "train_07202.png", "caption": "This is an instrumental folk song with the melody played both by a banjo and a violin at the same time. The combination of these instruments creates a very American, western-movie type of atmosphere. It could be used in opening sequences of movies/shows taking place in rural USA.", "data_idx": 3974, "number": 2, "label": "classical"} +{"file_name": "train_07203.png", "caption": "This is an instrumental folk song with the melody played both by a banjo and a violin at the same time. The combination of these instruments creates a very American, western-movie type of atmosphere. It could be used in opening sequences of movies/shows taking place in rural USA.", "data_idx": 3974, "number": 3, "label": "classical"} +{"file_name": "train_07204.png", "caption": "This music is a flamenco piece. There are two acoustic guitars, one playing the leading arpeggio melody and the other creating the rhythmic background by strumming the chords. The characteristics of the song makes it clear that it is influenced by Spanish music. It could be used in a thriller movie soundtrack or as a flamenco dance accompaniment piece for dancing courses.", "data_idx": 3976, "number": 0, "label": "reggae"} +{"file_name": "train_07205.png", "caption": "This music is a flamenco piece. There are two acoustic guitars, one playing the leading arpeggio melody and the other creating the rhythmic background by strumming the chords. The characteristics of the song makes it clear that it is influenced by Spanish music. It could be used in a thriller movie soundtrack or as a flamenco dance accompaniment piece for dancing courses.", "data_idx": 3976, "number": 1, "label": "reggae"} +{"file_name": "train_07206.png", "caption": "This music is a flamenco piece. There are two acoustic guitars, one playing the leading arpeggio melody and the other creating the rhythmic background by strumming the chords. The characteristics of the song makes it clear that it is influenced by Spanish music. It could be used in a thriller movie soundtrack or as a flamenco dance accompaniment piece for dancing courses.", "data_idx": 3976, "number": 2, "label": "reggae"} +{"file_name": "train_07207.png", "caption": "This music is a flamenco piece. There are two acoustic guitars, one playing the leading arpeggio melody and the other creating the rhythmic background by strumming the chords. The characteristics of the song makes it clear that it is influenced by Spanish music. It could be used in a thriller movie soundtrack or as a flamenco dance accompaniment piece for dancing courses.", "data_idx": 3976, "number": 3, "label": "reggae"} +{"file_name": "train_07208.png", "caption": "The Alternative/Indie song features an echoing, passionate female vocal singing over groovy, buzzy synth bass, punchy kick, soft claps, tinny offbeat percussion and synth keys chords that appear at the end of the loop. It sounds groovy, energetic, passionate and addictive.", "data_idx": 3978, "number": 0, "label": "pop"} +{"file_name": "train_07209.png", "caption": "The Alternative/Indie song features an echoing, passionate female vocal singing over groovy, buzzy synth bass, punchy kick, soft claps, tinny offbeat percussion and synth keys chords that appear at the end of the loop. It sounds groovy, energetic, passionate and addictive.", "data_idx": 3978, "number": 1, "label": "pop"} +{"file_name": "train_07210.png", "caption": "The Alternative/Indie song features an echoing, passionate female vocal singing over groovy, buzzy synth bass, punchy kick, soft claps, tinny offbeat percussion and synth keys chords that appear at the end of the loop. It sounds groovy, energetic, passionate and addictive.", "data_idx": 3978, "number": 2, "label": "pop"} +{"file_name": "train_07211.png", "caption": "The Alternative/Indie song features an echoing, passionate female vocal singing over groovy, buzzy synth bass, punchy kick, soft claps, tinny offbeat percussion and synth keys chords that appear at the end of the loop. It sounds groovy, energetic, passionate and addictive.", "data_idx": 3978, "number": 3, "label": "pop"} +{"file_name": "train_07212.png", "caption": "The rock music features a nasal male voice. The voice follows a strummed electric guitar with a clean sound. The bass is backing the guitar strumms. The beat is made first with ticking sounds but then it's played by a drum kit.", "data_idx": 3982, "number": 0, "label": "country"} +{"file_name": "train_07213.png", "caption": "The rock music features a nasal male voice. The voice follows a strummed electric guitar with a clean sound. The bass is backing the guitar strumms. The beat is made first with ticking sounds but then it's played by a drum kit.", "data_idx": 3982, "number": 1, "label": "country"} +{"file_name": "train_07214.png", "caption": "The rock music features a nasal male voice. The voice follows a strummed electric guitar with a clean sound. The bass is backing the guitar strumms. The beat is made first with ticking sounds but then it's played by a drum kit.", "data_idx": 3982, "number": 2, "label": "country"} +{"file_name": "train_07215.png", "caption": "The rock music features a nasal male voice. The voice follows a strummed electric guitar with a clean sound. The bass is backing the guitar strumms. The beat is made first with ticking sounds but then it's played by a drum kit.", "data_idx": 3982, "number": 3, "label": "country"} +{"file_name": "train_07216.png", "caption": "The Pop song features a flat female vocal rapping, alongside passionate background female vocal singing, over straight piano chords, simple synth bass, wide distorted synth and wide synth brass chords, followed by groovy hi hats, punchy kick and snare hits. It sounds uplifting and energetic.", "data_idx": 3984, "number": 0, "label": "hiphop"} +{"file_name": "train_07217.png", "caption": "The Pop song features a flat female vocal rapping, alongside passionate background female vocal singing, over straight piano chords, simple synth bass, wide distorted synth and wide synth brass chords, followed by groovy hi hats, punchy kick and snare hits. It sounds uplifting and energetic.", "data_idx": 3984, "number": 1, "label": "hiphop"} +{"file_name": "train_07218.png", "caption": "The Pop song features a flat female vocal rapping, alongside passionate background female vocal singing, over straight piano chords, simple synth bass, wide distorted synth and wide synth brass chords, followed by groovy hi hats, punchy kick and snare hits. It sounds uplifting and energetic.", "data_idx": 3984, "number": 2, "label": "hiphop"} +{"file_name": "train_07219.png", "caption": "The Pop song features a flat female vocal rapping, alongside passionate background female vocal singing, over straight piano chords, simple synth bass, wide distorted synth and wide synth brass chords, followed by groovy hi hats, punchy kick and snare hits. It sounds uplifting and energetic.", "data_idx": 3984, "number": 3, "label": "hiphop"} +{"file_name": "train_07220.png", "caption": "The song is an instrumental tune. The song is medium tempo with a steady drumming rhythm, groovy bass line, trumpets playing, brass band section and keyboard harmony. The song is exciting and energetic. The song is a tv show tune and has fun jazz roots.", "data_idx": 3986, "number": 0, "label": "hiphop"} +{"file_name": "train_07221.png", "caption": "The song is an instrumental tune. The song is medium tempo with a steady drumming rhythm, groovy bass line, trumpets playing, brass band section and keyboard harmony. The song is exciting and energetic. The song is a tv show tune and has fun jazz roots.", "data_idx": 3986, "number": 1, "label": "hiphop"} +{"file_name": "train_07222.png", "caption": "The song is an instrumental tune. The song is medium tempo with a steady drumming rhythm, groovy bass line, trumpets playing, brass band section and keyboard harmony. The song is exciting and energetic. The song is a tv show tune and has fun jazz roots.", "data_idx": 3986, "number": 2, "label": "hiphop"} +{"file_name": "train_07223.png", "caption": "The song is an instrumental tune. The song is medium tempo with a steady drumming rhythm, groovy bass line, trumpets playing, brass band section and keyboard harmony. The song is exciting and energetic. The song is a tv show tune and has fun jazz roots.", "data_idx": 3986, "number": 3, "label": "hiphop"} +{"file_name": "train_07224.png", "caption": "The excerpt starts off with 2 seconds of background music after which one can hear a lot of belching of various pitches.", "data_idx": 3988, "number": 0, "label": "hiphop"} +{"file_name": "train_07225.png", "caption": "The excerpt starts off with 2 seconds of background music after which one can hear a lot of belching of various pitches.", "data_idx": 3988, "number": 1, "label": "hiphop"} +{"file_name": "train_07226.png", "caption": "The music features a group of female and male voices singing a melody in unison. An acoustic guitar is accompanying the group with strummed chords and a tambourine is highlighting every beat. The overall atmosphere is joyful.", "data_idx": 3990, "number": 0, "label": "disco"} +{"file_name": "train_07227.png", "caption": "The music features a group of female and male voices singing a melody in unison. An acoustic guitar is accompanying the group with strummed chords and a tambourine is highlighting every beat. The overall atmosphere is joyful.", "data_idx": 3990, "number": 1, "label": "disco"} +{"file_name": "train_07228.png", "caption": "The music features a group of female and male voices singing a melody in unison. An acoustic guitar is accompanying the group with strummed chords and a tambourine is highlighting every beat. The overall atmosphere is joyful.", "data_idx": 3990, "number": 2, "label": "disco"} +{"file_name": "train_07229.png", "caption": "The music features a group of female and male voices singing a melody in unison. An acoustic guitar is accompanying the group with strummed chords and a tambourine is highlighting every beat. The overall atmosphere is joyful.", "data_idx": 3990, "number": 3, "label": "disco"} +{"file_name": "train_07230.png", "caption": "The song is a rock track that features distorted and energetic guitar strumming chords. A secondary guitar does a solo melody in the foreground. A drum kit plays a typical upbeat rock pattern with an energetic mood. A bass adds deepness to the track while playing the same progression as the strummed guitar.", "data_idx": 3993, "number": 0, "label": "metal"} +{"file_name": "train_07231.png", "caption": "The song is a rock track that features distorted and energetic guitar strumming chords. A secondary guitar does a solo melody in the foreground. A drum kit plays a typical upbeat rock pattern with an energetic mood. A bass adds deepness to the track while playing the same progression as the strummed guitar.", "data_idx": 3993, "number": 1, "label": "metal"} +{"file_name": "train_07232.png", "caption": "The song is a rock track that features distorted and energetic guitar strumming chords. A secondary guitar does a solo melody in the foreground. A drum kit plays a typical upbeat rock pattern with an energetic mood. A bass adds deepness to the track while playing the same progression as the strummed guitar.", "data_idx": 3993, "number": 2, "label": "metal"} +{"file_name": "train_07233.png", "caption": "The song is a rock track that features distorted and energetic guitar strumming chords. A secondary guitar does a solo melody in the foreground. A drum kit plays a typical upbeat rock pattern with an energetic mood. A bass adds deepness to the track while playing the same progression as the strummed guitar.", "data_idx": 3993, "number": 3, "label": "metal"} diff --git a/data/train/metadata_0015.jsonl b/data/train/metadata_0015.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2919b563ddbe30fabdee380b90395cffeeef4840 --- /dev/null +++ b/data/train/metadata_0015.jsonl @@ -0,0 +1,378 @@ +{"file_name": "train_07234.png", "caption": "Someone is playing a fast shred solo on a distorted e-guitar with a lot of reverb and delay panning to both sides of the speakers. This song may be playing in a youtube video showing off your progress.", "data_idx": 4000, "number": 0, "label": "metal"} +{"file_name": "train_07235.png", "caption": "Someone is playing a fast shred solo on a distorted e-guitar with a lot of reverb and delay panning to both sides of the speakers. This song may be playing in a youtube video showing off your progress.", "data_idx": 4000, "number": 1, "label": "metal"} +{"file_name": "train_07236.png", "caption": "Someone is playing a fast shred solo on a distorted e-guitar with a lot of reverb and delay panning to both sides of the speakers. This song may be playing in a youtube video showing off your progress.", "data_idx": 4000, "number": 2, "label": "metal"} +{"file_name": "train_07237.png", "caption": "Someone is playing a fast shred solo on a distorted e-guitar with a lot of reverb and delay panning to both sides of the speakers. This song may be playing in a youtube video showing off your progress.", "data_idx": 4000, "number": 3, "label": "metal"} +{"file_name": "train_07238.png", "caption": "The ballad song features a mellow female vocal singing over a mellow organ keys melody, groovy hi hats, soft snare and kick hits and smooth bass. It sounds emotional, heartfelt and romantic - like something you would hear at a wedding.", "data_idx": 4002, "number": 0, "label": "metal"} +{"file_name": "train_07239.png", "caption": "The ballad song features a mellow female vocal singing over a mellow organ keys melody, groovy hi hats, soft snare and kick hits and smooth bass. It sounds emotional, heartfelt and romantic - like something you would hear at a wedding.", "data_idx": 4002, "number": 1, "label": "metal"} +{"file_name": "train_07240.png", "caption": "The ballad song features a mellow female vocal singing over a mellow organ keys melody, groovy hi hats, soft snare and kick hits and smooth bass. It sounds emotional, heartfelt and romantic - like something you would hear at a wedding.", "data_idx": 4002, "number": 2, "label": "metal"} +{"file_name": "train_07241.png", "caption": "The ballad song features a mellow female vocal singing over a mellow organ keys melody, groovy hi hats, soft snare and kick hits and smooth bass. It sounds emotional, heartfelt and romantic - like something you would hear at a wedding.", "data_idx": 4002, "number": 3, "label": "metal"} +{"file_name": "train_07242.png", "caption": "A male vocalist sings this classic song. The tempo is slow with guitar accompaniment. The song has minimal instruments and is mellow, soft, sentimental, emotional, nostalgic, calming, soothing and mellifluous with vocal emphasis. This song is classic pop.", "data_idx": 4004, "number": 0, "label": "rock"} +{"file_name": "train_07243.png", "caption": "A male vocalist sings this classic song. The tempo is slow with guitar accompaniment. The song has minimal instruments and is mellow, soft, sentimental, emotional, nostalgic, calming, soothing and mellifluous with vocal emphasis. This song is classic pop.", "data_idx": 4004, "number": 1, "label": "rock"} +{"file_name": "train_07244.png", "caption": "A male vocalist sings this classic song. The tempo is slow with guitar accompaniment. The song has minimal instruments and is mellow, soft, sentimental, emotional, nostalgic, calming, soothing and mellifluous with vocal emphasis. This song is classic pop.", "data_idx": 4004, "number": 2, "label": "rock"} +{"file_name": "train_07245.png", "caption": "A male vocalist sings this classic song. The tempo is slow with guitar accompaniment. The song has minimal instruments and is mellow, soft, sentimental, emotional, nostalgic, calming, soothing and mellifluous with vocal emphasis. This song is classic pop.", "data_idx": 4004, "number": 3, "label": "rock"} +{"file_name": "train_07246.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, rock drumming, tambourine percussion, guitar rhythm and guitar lead. The song is adventurous and emotional. The song is classic rock and has a poor audio quality.", "data_idx": 4005, "number": 0, "label": "jazz"} +{"file_name": "train_07247.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, rock drumming, tambourine percussion, guitar rhythm and guitar lead. The song is adventurous and emotional. The song is classic rock and has a poor audio quality.", "data_idx": 4005, "number": 1, "label": "jazz"} +{"file_name": "train_07248.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, rock drumming, tambourine percussion, guitar rhythm and guitar lead. The song is adventurous and emotional. The song is classic rock and has a poor audio quality.", "data_idx": 4005, "number": 2, "label": "jazz"} +{"file_name": "train_07249.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, rock drumming, tambourine percussion, guitar rhythm and guitar lead. The song is adventurous and emotional. The song is classic rock and has a poor audio quality.", "data_idx": 4005, "number": 3, "label": "jazz"} +{"file_name": "train_07250.png", "caption": "A male singer sings this screaming metal melody. The song is medium fast tempo with a fast metal drumming rhythm, percussive bass line and guitars playing accompaniment. The song is rebellious and highly spirited. The audio quality is very poor and vintage.", "data_idx": 4006, "number": 0, "label": "metal"} +{"file_name": "train_07251.png", "caption": "A male singer sings this screaming metal melody. The song is medium fast tempo with a fast metal drumming rhythm, percussive bass line and guitars playing accompaniment. The song is rebellious and highly spirited. The audio quality is very poor and vintage.", "data_idx": 4006, "number": 1, "label": "metal"} +{"file_name": "train_07252.png", "caption": "A male singer sings this screaming metal melody. The song is medium fast tempo with a fast metal drumming rhythm, percussive bass line and guitars playing accompaniment. The song is rebellious and highly spirited. The audio quality is very poor and vintage.", "data_idx": 4006, "number": 2, "label": "metal"} +{"file_name": "train_07253.png", "caption": "A male singer sings this screaming metal melody. The song is medium fast tempo with a fast metal drumming rhythm, percussive bass line and guitars playing accompaniment. The song is rebellious and highly spirited. The audio quality is very poor and vintage.", "data_idx": 4006, "number": 3, "label": "metal"} +{"file_name": "train_07254.png", "caption": "A live recording of an instrumental piano trio. The recording is boomy and low fidelity. The drumming is active and the piano playing is pretty. The drum kit features a sidestick. Electric bass is also present. Crowd noise can be heard. Sounds like gospel music that might be heard at a church service.", "data_idx": 4010, "number": 0, "label": "rock"} +{"file_name": "train_07255.png", "caption": "A live recording of an instrumental piano trio. The recording is boomy and low fidelity. The drumming is active and the piano playing is pretty. The drum kit features a sidestick. Electric bass is also present. Crowd noise can be heard. Sounds like gospel music that might be heard at a church service.", "data_idx": 4010, "number": 1, "label": "rock"} +{"file_name": "train_07256.png", "caption": "A live recording of an instrumental piano trio. The recording is boomy and low fidelity. The drumming is active and the piano playing is pretty. The drum kit features a sidestick. Electric bass is also present. Crowd noise can be heard. Sounds like gospel music that might be heard at a church service.", "data_idx": 4010, "number": 2, "label": "rock"} +{"file_name": "train_07257.png", "caption": "A live recording of an instrumental piano trio. The recording is boomy and low fidelity. The drumming is active and the piano playing is pretty. The drum kit features a sidestick. Electric bass is also present. Crowd noise can be heard. Sounds like gospel music that might be heard at a church service.", "data_idx": 4010, "number": 3, "label": "rock"} +{"file_name": "train_07258.png", "caption": "A female vocalist sings this chirpy song. The tempo is medium with a melodic electric guitar harmony, acoustic guitar lead, sprightly drumming, funky bass lines and peppy backup. The song is youthful, perky, cheerful, vivacious ,bubbly and in a foreign language.This song is teen pop/ Pop.", "data_idx": 4011, "number": 0, "label": "rock"} +{"file_name": "train_07259.png", "caption": "A female vocalist sings this chirpy song. The tempo is medium with a melodic electric guitar harmony, acoustic guitar lead, sprightly drumming, funky bass lines and peppy backup. The song is youthful, perky, cheerful, vivacious ,bubbly and in a foreign language.This song is teen pop/ Pop.", "data_idx": 4011, "number": 1, "label": "rock"} +{"file_name": "train_07260.png", "caption": "A female vocalist sings this chirpy song. The tempo is medium with a melodic electric guitar harmony, acoustic guitar lead, sprightly drumming, funky bass lines and peppy backup. The song is youthful, perky, cheerful, vivacious ,bubbly and in a foreign language.This song is teen pop/ Pop.", "data_idx": 4011, "number": 2, "label": "rock"} +{"file_name": "train_07261.png", "caption": "A female vocalist sings this chirpy song. The tempo is medium with a melodic electric guitar harmony, acoustic guitar lead, sprightly drumming, funky bass lines and peppy backup. The song is youthful, perky, cheerful, vivacious ,bubbly and in a foreign language.This song is teen pop/ Pop.", "data_idx": 4011, "number": 3, "label": "rock"} +{"file_name": "train_07262.png", "caption": "A synthesizer pluck sounds in playing a melody while a synthesizer pad rises from the background as a filter opens and reveals the full force of the synthesizer pad along with a synthetic bass underlining the rise. This song may be playing in a techno club.", "data_idx": 4013, "number": 0, "label": "metal"} +{"file_name": "train_07263.png", "caption": "A synthesizer pluck sounds in playing a melody while a synthesizer pad rises from the background as a filter opens and reveals the full force of the synthesizer pad along with a synthetic bass underlining the rise. This song may be playing in a techno club.", "data_idx": 4013, "number": 1, "label": "metal"} +{"file_name": "train_07264.png", "caption": "A synthesizer pluck sounds in playing a melody while a synthesizer pad rises from the background as a filter opens and reveals the full force of the synthesizer pad along with a synthetic bass underlining the rise. This song may be playing in a techno club.", "data_idx": 4013, "number": 2, "label": "metal"} +{"file_name": "train_07265.png", "caption": "A synthesizer pluck sounds in playing a melody while a synthesizer pad rises from the background as a filter opens and reveals the full force of the synthesizer pad along with a synthetic bass underlining the rise. This song may be playing in a techno club.", "data_idx": 4013, "number": 3, "label": "metal"} +{"file_name": "train_07266.png", "caption": "The low quality recording features a sizzling glassy melody arpeggiated in high pitch register. Sounds mystical and it gives off some euphoric Christmas feelings. There are also some tapping noises, mostly in the left channel of the stereo image.", "data_idx": 4014, "number": 0, "label": "hiphop"} +{"file_name": "train_07267.png", "caption": "The low quality recording features a sizzling glassy melody arpeggiated in high pitch register. Sounds mystical and it gives off some euphoric Christmas feelings. There are also some tapping noises, mostly in the left channel of the stereo image.", "data_idx": 4014, "number": 1, "label": "hiphop"} +{"file_name": "train_07268.png", "caption": "The low quality recording features a sizzling glassy melody arpeggiated in high pitch register. Sounds mystical and it gives off some euphoric Christmas feelings. There are also some tapping noises, mostly in the left channel of the stereo image.", "data_idx": 4014, "number": 2, "label": "hiphop"} +{"file_name": "train_07269.png", "caption": "The low quality recording features a sizzling glassy melody arpeggiated in high pitch register. Sounds mystical and it gives off some euphoric Christmas feelings. There are also some tapping noises, mostly in the left channel of the stereo image.", "data_idx": 4014, "number": 3, "label": "hiphop"} +{"file_name": "train_07270.png", "caption": "A lot of tambourines are playing in synchronicity. In between the rhythm a choir is singing a short phrase. This song may be played as a tutorial to follow along.", "data_idx": 4015, "number": 0, "label": "blues"} +{"file_name": "train_07271.png", "caption": "A lot of tambourines are playing in synchronicity. In between the rhythm a choir is singing a short phrase. This song may be played as a tutorial to follow along.", "data_idx": 4015, "number": 1, "label": "blues"} +{"file_name": "train_07272.png", "caption": "A lot of tambourines are playing in synchronicity. In between the rhythm a choir is singing a short phrase. This song may be played as a tutorial to follow along.", "data_idx": 4015, "number": 2, "label": "blues"} +{"file_name": "train_07273.png", "caption": "A lot of tambourines are playing in synchronicity. In between the rhythm a choir is singing a short phrase. This song may be played as a tutorial to follow along.", "data_idx": 4015, "number": 3, "label": "blues"} +{"file_name": "train_07274.png", "caption": "This is a japanese jazz music piece that is used in an anime soundtrack. There is a female lead vocal singing gently in the lead. The melody is being played by the piano, the electric guitar and the upright bass. In the rhythmic background, there is an acoustic jazz drum beat in the style of swing. There is an exhilarating atmosphere, full of rich sounds. The mix is perfect. This piece could be used in the soundtrack of a romance/drama movie as well as its original use in an anime. It could also be playing in the background at a coffee shop or a classy restaurant.", "data_idx": 4016, "number": 0, "label": "classical"} +{"file_name": "train_07275.png", "caption": "This is a japanese jazz music piece that is used in an anime soundtrack. There is a female lead vocal singing gently in the lead. The melody is being played by the piano, the electric guitar and the upright bass. In the rhythmic background, there is an acoustic jazz drum beat in the style of swing. There is an exhilarating atmosphere, full of rich sounds. The mix is perfect. This piece could be used in the soundtrack of a romance/drama movie as well as its original use in an anime. It could also be playing in the background at a coffee shop or a classy restaurant.", "data_idx": 4016, "number": 1, "label": "classical"} +{"file_name": "train_07276.png", "caption": "This is a japanese jazz music piece that is used in an anime soundtrack. There is a female lead vocal singing gently in the lead. The melody is being played by the piano, the electric guitar and the upright bass. In the rhythmic background, there is an acoustic jazz drum beat in the style of swing. There is an exhilarating atmosphere, full of rich sounds. The mix is perfect. This piece could be used in the soundtrack of a romance/drama movie as well as its original use in an anime. It could also be playing in the background at a coffee shop or a classy restaurant.", "data_idx": 4016, "number": 2, "label": "classical"} +{"file_name": "train_07277.png", "caption": "This is a japanese jazz music piece that is used in an anime soundtrack. There is a female lead vocal singing gently in the lead. The melody is being played by the piano, the electric guitar and the upright bass. In the rhythmic background, there is an acoustic jazz drum beat in the style of swing. There is an exhilarating atmosphere, full of rich sounds. The mix is perfect. This piece could be used in the soundtrack of a romance/drama movie as well as its original use in an anime. It could also be playing in the background at a coffee shop or a classy restaurant.", "data_idx": 4016, "number": 3, "label": "classical"} +{"file_name": "train_07278.png", "caption": "A female vocalist sings this enthusiastic song.The tempo is medium with loud , emphatic vocals and subdued music in the background .The song is a karaoke with enthusiastic drumming, melodious violin harmony, keyboard accompaniment, groovy bass line and rhythmic acoustic guitar.", "data_idx": 4018, "number": 0, "label": "country"} +{"file_name": "train_07279.png", "caption": "A female vocalist sings this enthusiastic song.The tempo is medium with loud , emphatic vocals and subdued music in the background .The song is a karaoke with enthusiastic drumming, melodious violin harmony, keyboard accompaniment, groovy bass line and rhythmic acoustic guitar.", "data_idx": 4018, "number": 1, "label": "country"} +{"file_name": "train_07280.png", "caption": "A female vocalist sings this enthusiastic song.The tempo is medium with loud , emphatic vocals and subdued music in the background .The song is a karaoke with enthusiastic drumming, melodious violin harmony, keyboard accompaniment, groovy bass line and rhythmic acoustic guitar.", "data_idx": 4018, "number": 2, "label": "country"} +{"file_name": "train_07281.png", "caption": "A female vocalist sings this enthusiastic song.The tempo is medium with loud , emphatic vocals and subdued music in the background .The song is a karaoke with enthusiastic drumming, melodious violin harmony, keyboard accompaniment, groovy bass line and rhythmic acoustic guitar.", "data_idx": 4018, "number": 3, "label": "country"} +{"file_name": "train_07282.png", "caption": "The music features a melody being played in unison by a piano and a group of strings. At the same time these two also fill up the music space with harmony. A type of drum that resembles the taiko drum but I think is smaller in size can be heard in the background. In the background a synth pad provides soft harmony.", "data_idx": 4019, "number": 0, "label": "classical"} +{"file_name": "train_07283.png", "caption": "The music features a melody being played in unison by a piano and a group of strings. At the same time these two also fill up the music space with harmony. A type of drum that resembles the taiko drum but I think is smaller in size can be heard in the background. In the background a synth pad provides soft harmony.", "data_idx": 4019, "number": 1, "label": "classical"} +{"file_name": "train_07284.png", "caption": "The music features a melody being played in unison by a piano and a group of strings. At the same time these two also fill up the music space with harmony. A type of drum that resembles the taiko drum but I think is smaller in size can be heard in the background. In the background a synth pad provides soft harmony.", "data_idx": 4019, "number": 2, "label": "classical"} +{"file_name": "train_07285.png", "caption": "The music features a melody being played in unison by a piano and a group of strings. At the same time these two also fill up the music space with harmony. A type of drum that resembles the taiko drum but I think is smaller in size can be heard in the background. In the background a synth pad provides soft harmony.", "data_idx": 4019, "number": 3, "label": "classical"} +{"file_name": "train_07286.png", "caption": "Stoic music featuring steady acoustic guitar arpeggios, a clave, and a measured female singer. There is a slight tape hiss. The source material may be old.", "data_idx": 4020, "number": 0, "label": "hiphop"} +{"file_name": "train_07287.png", "caption": "Stoic music featuring steady acoustic guitar arpeggios, a clave, and a measured female singer. There is a slight tape hiss. The source material may be old.", "data_idx": 4020, "number": 1, "label": "hiphop"} +{"file_name": "train_07288.png", "caption": "Stoic music featuring steady acoustic guitar arpeggios, a clave, and a measured female singer. There is a slight tape hiss. The source material may be old.", "data_idx": 4020, "number": 2, "label": "hiphop"} +{"file_name": "train_07289.png", "caption": "Stoic music featuring steady acoustic guitar arpeggios, a clave, and a measured female singer. There is a slight tape hiss. The source material may be old.", "data_idx": 4020, "number": 3, "label": "hiphop"} +{"file_name": "train_07290.png", "caption": "The low quality recording features a live performance of a folk song and it contains harmonized mixed vocals singing over groovy bass, groovy accordion melody and arpeggiated acoustic guitar solo melody. The recording took place outdoors, since there was some crowd chattering and nature sounds. It sounds happy and fun.", "data_idx": 4025, "number": 0, "label": "classical"} +{"file_name": "train_07291.png", "caption": "The low quality recording features a live performance of a folk song and it contains harmonized mixed vocals singing over groovy bass, groovy accordion melody and arpeggiated acoustic guitar solo melody. The recording took place outdoors, since there was some crowd chattering and nature sounds. It sounds happy and fun.", "data_idx": 4025, "number": 1, "label": "classical"} +{"file_name": "train_07292.png", "caption": "The low quality recording features a live performance of a folk song and it contains harmonized mixed vocals singing over groovy bass, groovy accordion melody and arpeggiated acoustic guitar solo melody. The recording took place outdoors, since there was some crowd chattering and nature sounds. It sounds happy and fun.", "data_idx": 4025, "number": 2, "label": "classical"} +{"file_name": "train_07293.png", "caption": "The low quality recording features a live performance of a folk song and it contains harmonized mixed vocals singing over groovy bass, groovy accordion melody and arpeggiated acoustic guitar solo melody. The recording took place outdoors, since there was some crowd chattering and nature sounds. It sounds happy and fun.", "data_idx": 4025, "number": 3, "label": "classical"} +{"file_name": "train_07294.png", "caption": "The song is upbeat, groovy and jazzy. The main percussive elements are created by live tap dancing on a stage, as well as more base oriented percussion from a cajon drum. There's a grand piano playing an intricate melody.", "data_idx": 4029, "number": 0, "label": "reggae"} +{"file_name": "train_07295.png", "caption": "The song is upbeat, groovy and jazzy. The main percussive elements are created by live tap dancing on a stage, as well as more base oriented percussion from a cajon drum. There's a grand piano playing an intricate melody.", "data_idx": 4029, "number": 1, "label": "reggae"} +{"file_name": "train_07296.png", "caption": "The song is upbeat, groovy and jazzy. The main percussive elements are created by live tap dancing on a stage, as well as more base oriented percussion from a cajon drum. There's a grand piano playing an intricate melody.", "data_idx": 4029, "number": 2, "label": "reggae"} +{"file_name": "train_07297.png", "caption": "The song is upbeat, groovy and jazzy. The main percussive elements are created by live tap dancing on a stage, as well as more base oriented percussion from a cajon drum. There's a grand piano playing an intricate melody.", "data_idx": 4029, "number": 3, "label": "reggae"} +{"file_name": "train_07298.png", "caption": "This music is instrumental. The tempo is slow with synthesiser arrangements. There are sounds of howling winds and footsteps and a droning cello harmony. The music is eerie, spooky, terrifying, sinister, dangerous and scary.", "data_idx": 4030, "number": 0, "label": "hiphop"} +{"file_name": "train_07299.png", "caption": "This music is instrumental. The tempo is slow with synthesiser arrangements. There are sounds of howling winds and footsteps and a droning cello harmony. The music is eerie, spooky, terrifying, sinister, dangerous and scary.", "data_idx": 4030, "number": 1, "label": "hiphop"} +{"file_name": "train_07300.png", "caption": "This music is instrumental. The tempo is slow with synthesiser arrangements. There are sounds of howling winds and footsteps and a droning cello harmony. The music is eerie, spooky, terrifying, sinister, dangerous and scary.", "data_idx": 4030, "number": 2, "label": "hiphop"} +{"file_name": "train_07301.png", "caption": "This music is instrumental. The tempo is slow with synthesiser arrangements. There are sounds of howling winds and footsteps and a droning cello harmony. The music is eerie, spooky, terrifying, sinister, dangerous and scary.", "data_idx": 4030, "number": 3, "label": "hiphop"} +{"file_name": "train_07302.png", "caption": "This reggae song features a male voice. He sings the first line and laughs at the end of the first sentence. He continues to sing the melody. The voice is accompanied by programmed percussion playing a simple beat. The bass plays the root notes of the chords. A keyboard plays chords in the background with a reggae feel. Another keyboard plays a fill in between lines. At the end, backing singers sing in harmony. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 4034, "number": 0, "label": "reggae"} +{"file_name": "train_07303.png", "caption": "This reggae song features a male voice. He sings the first line and laughs at the end of the first sentence. He continues to sing the melody. The voice is accompanied by programmed percussion playing a simple beat. The bass plays the root notes of the chords. A keyboard plays chords in the background with a reggae feel. Another keyboard plays a fill in between lines. At the end, backing singers sing in harmony. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 4034, "number": 1, "label": "reggae"} +{"file_name": "train_07304.png", "caption": "This reggae song features a male voice. He sings the first line and laughs at the end of the first sentence. He continues to sing the melody. The voice is accompanied by programmed percussion playing a simple beat. The bass plays the root notes of the chords. A keyboard plays chords in the background with a reggae feel. Another keyboard plays a fill in between lines. At the end, backing singers sing in harmony. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 4034, "number": 2, "label": "reggae"} +{"file_name": "train_07305.png", "caption": "This reggae song features a male voice. He sings the first line and laughs at the end of the first sentence. He continues to sing the melody. The voice is accompanied by programmed percussion playing a simple beat. The bass plays the root notes of the chords. A keyboard plays chords in the background with a reggae feel. Another keyboard plays a fill in between lines. At the end, backing singers sing in harmony. This song has a holiday mood. This song can be played in a holiday movie.", "data_idx": 4034, "number": 3, "label": "reggae"} +{"file_name": "train_07306.png", "caption": "Someone is strumming chords on an acoustic guitar singing along with a male voice in the higher register. male backing vocalists are supporting the singer. A piano is playing supportive chords along with congas and a tambourine. This is an amateur recording but of decent quality. This song may be playing live.", "data_idx": 4036, "number": 0, "label": "blues"} +{"file_name": "train_07307.png", "caption": "Someone is strumming chords on an acoustic guitar singing along with a male voice in the higher register. male backing vocalists are supporting the singer. A piano is playing supportive chords along with congas and a tambourine. This is an amateur recording but of decent quality. This song may be playing live.", "data_idx": 4036, "number": 1, "label": "blues"} +{"file_name": "train_07308.png", "caption": "Someone is strumming chords on an acoustic guitar singing along with a male voice in the higher register. male backing vocalists are supporting the singer. A piano is playing supportive chords along with congas and a tambourine. This is an amateur recording but of decent quality. This song may be playing live.", "data_idx": 4036, "number": 2, "label": "blues"} +{"file_name": "train_07309.png", "caption": "Someone is strumming chords on an acoustic guitar singing along with a male voice in the higher register. male backing vocalists are supporting the singer. A piano is playing supportive chords along with congas and a tambourine. This is an amateur recording but of decent quality. This song may be playing live.", "data_idx": 4036, "number": 3, "label": "blues"} +{"file_name": "train_07310.png", "caption": "The low quality recording features a metal song that consists male vocals with a wide echoing effect on, wide filter modulated electric guitar chords, noisy snare hits, punchy kick and pulsating synth riser that appears towards the end of the loop. It sounds exciting, as it prepares the listener for an energetic drop.", "data_idx": 4037, "number": 0, "label": "metal"} +{"file_name": "train_07311.png", "caption": "The low quality recording features a metal song that consists male vocals with a wide echoing effect on, wide filter modulated electric guitar chords, noisy snare hits, punchy kick and pulsating synth riser that appears towards the end of the loop. It sounds exciting, as it prepares the listener for an energetic drop.", "data_idx": 4037, "number": 1, "label": "metal"} +{"file_name": "train_07312.png", "caption": "The low quality recording features a metal song that consists male vocals with a wide echoing effect on, wide filter modulated electric guitar chords, noisy snare hits, punchy kick and pulsating synth riser that appears towards the end of the loop. It sounds exciting, as it prepares the listener for an energetic drop.", "data_idx": 4037, "number": 2, "label": "metal"} +{"file_name": "train_07313.png", "caption": "The low quality recording features a metal song that consists male vocals with a wide echoing effect on, wide filter modulated electric guitar chords, noisy snare hits, punchy kick and pulsating synth riser that appears towards the end of the loop. It sounds exciting, as it prepares the listener for an energetic drop.", "data_idx": 4037, "number": 3, "label": "metal"} +{"file_name": "train_07314.png", "caption": "The low quality recording features an acoustic guitar blues melody. The recording is very noisy, roomy and you can hear cars passing by in the background.", "data_idx": 4038, "number": 0, "label": "jazz"} +{"file_name": "train_07315.png", "caption": "The low quality recording features an acoustic guitar blues melody. The recording is very noisy, roomy and you can hear cars passing by in the background.", "data_idx": 4038, "number": 1, "label": "jazz"} +{"file_name": "train_07316.png", "caption": "The low quality recording features an acoustic guitar blues melody. The recording is very noisy, roomy and you can hear cars passing by in the background.", "data_idx": 4038, "number": 2, "label": "jazz"} +{"file_name": "train_07317.png", "caption": "The low quality recording features an acoustic guitar blues melody. The recording is very noisy, roomy and you can hear cars passing by in the background.", "data_idx": 4038, "number": 3, "label": "jazz"} +{"file_name": "train_07318.png", "caption": "This is the live recording of a dance performance that uses a pop music piece as accompaniment. There is a male and a female vocalist singing melodically. The tune of the piece is being played by the electric guitar, the bass guitar and the synth. There is an upbeat acoustic drum beat in the rhythmic background. The audience can be heard clapping to the beat. The atmosphere is loud and lively. It could work well as the backing track in a modern dance course.", "data_idx": 4044, "number": 0, "label": "metal"} +{"file_name": "train_07319.png", "caption": "This is the live recording of a dance performance that uses a pop music piece as accompaniment. There is a male and a female vocalist singing melodically. The tune of the piece is being played by the electric guitar, the bass guitar and the synth. There is an upbeat acoustic drum beat in the rhythmic background. The audience can be heard clapping to the beat. The atmosphere is loud and lively. It could work well as the backing track in a modern dance course.", "data_idx": 4044, "number": 1, "label": "metal"} +{"file_name": "train_07320.png", "caption": "This is the live recording of a dance performance that uses a pop music piece as accompaniment. There is a male and a female vocalist singing melodically. The tune of the piece is being played by the electric guitar, the bass guitar and the synth. There is an upbeat acoustic drum beat in the rhythmic background. The audience can be heard clapping to the beat. The atmosphere is loud and lively. It could work well as the backing track in a modern dance course.", "data_idx": 4044, "number": 2, "label": "metal"} +{"file_name": "train_07321.png", "caption": "This is the live recording of a dance performance that uses a pop music piece as accompaniment. There is a male and a female vocalist singing melodically. The tune of the piece is being played by the electric guitar, the bass guitar and the synth. There is an upbeat acoustic drum beat in the rhythmic background. The audience can be heard clapping to the beat. The atmosphere is loud and lively. It could work well as the backing track in a modern dance course.", "data_idx": 4044, "number": 3, "label": "metal"} +{"file_name": "train_07322.png", "caption": "This is a Sikh religious music piece. The male vocalist is singing in the Hindi language in a devoted manner. There is an organ in the background playing the melody accompanying the male vocal. Electronic drums and electronic percussion provide the rhythmic background for the piece.", "data_idx": 4046, "number": 0, "label": "country"} +{"file_name": "train_07323.png", "caption": "This is a Sikh religious music piece. The male vocalist is singing in the Hindi language in a devoted manner. There is an organ in the background playing the melody accompanying the male vocal. Electronic drums and electronic percussion provide the rhythmic background for the piece.", "data_idx": 4046, "number": 1, "label": "country"} +{"file_name": "train_07324.png", "caption": "This is a Sikh religious music piece. The male vocalist is singing in the Hindi language in a devoted manner. There is an organ in the background playing the melody accompanying the male vocal. Electronic drums and electronic percussion provide the rhythmic background for the piece.", "data_idx": 4046, "number": 2, "label": "country"} +{"file_name": "train_07325.png", "caption": "This is a Sikh religious music piece. The male vocalist is singing in the Hindi language in a devoted manner. There is an organ in the background playing the melody accompanying the male vocal. Electronic drums and electronic percussion provide the rhythmic background for the piece.", "data_idx": 4046, "number": 3, "label": "country"} +{"file_name": "train_07326.png", "caption": "A male singer sings this cool melody in the background with a bunch of female singers singing a little jig in a different key. The song is medium tempo with steady drumming, tambourine percussion, trumpets blaring, strong bass line and a piano accompaniment. The song serves as a background music to a group of females singing a jig in a different key. The song is a modern pop dance tune.", "data_idx": 4047, "number": 0, "label": "hiphop"} +{"file_name": "train_07327.png", "caption": "A male singer sings this cool melody in the background with a bunch of female singers singing a little jig in a different key. The song is medium tempo with steady drumming, tambourine percussion, trumpets blaring, strong bass line and a piano accompaniment. The song serves as a background music to a group of females singing a jig in a different key. The song is a modern pop dance tune.", "data_idx": 4047, "number": 1, "label": "hiphop"} +{"file_name": "train_07328.png", "caption": "A male singer sings this cool melody in the background with a bunch of female singers singing a little jig in a different key. The song is medium tempo with steady drumming, tambourine percussion, trumpets blaring, strong bass line and a piano accompaniment. The song serves as a background music to a group of females singing a jig in a different key. The song is a modern pop dance tune.", "data_idx": 4047, "number": 2, "label": "hiphop"} +{"file_name": "train_07329.png", "caption": "A male singer sings this cool melody in the background with a bunch of female singers singing a little jig in a different key. The song is medium tempo with steady drumming, tambourine percussion, trumpets blaring, strong bass line and a piano accompaniment. The song serves as a background music to a group of females singing a jig in a different key. The song is a modern pop dance tune.", "data_idx": 4047, "number": 3, "label": "hiphop"} +{"file_name": "train_07330.png", "caption": "This slow rock song starts off with a male voice that pauses after one word. This is accompanied by percussion playing a marching beat. Synth strings play chords in the background. Bass notes follow the root notes of the chords. After the voice pauses, a repetitive melody is played on the synth and the chords change on the other instruments. The percussion continues to play the marching beat. This song can be played in a war scene in a movie.", "data_idx": 4048, "number": 0, "label": "rock"} +{"file_name": "train_07331.png", "caption": "This slow rock song starts off with a male voice that pauses after one word. This is accompanied by percussion playing a marching beat. Synth strings play chords in the background. Bass notes follow the root notes of the chords. After the voice pauses, a repetitive melody is played on the synth and the chords change on the other instruments. The percussion continues to play the marching beat. This song can be played in a war scene in a movie.", "data_idx": 4048, "number": 1, "label": "rock"} +{"file_name": "train_07332.png", "caption": "This slow rock song starts off with a male voice that pauses after one word. This is accompanied by percussion playing a marching beat. Synth strings play chords in the background. Bass notes follow the root notes of the chords. After the voice pauses, a repetitive melody is played on the synth and the chords change on the other instruments. The percussion continues to play the marching beat. This song can be played in a war scene in a movie.", "data_idx": 4048, "number": 2, "label": "rock"} +{"file_name": "train_07333.png", "caption": "This slow rock song starts off with a male voice that pauses after one word. This is accompanied by percussion playing a marching beat. Synth strings play chords in the background. Bass notes follow the root notes of the chords. After the voice pauses, a repetitive melody is played on the synth and the chords change on the other instruments. The percussion continues to play the marching beat. This song can be played in a war scene in a movie.", "data_idx": 4048, "number": 3, "label": "rock"} +{"file_name": "train_07334.png", "caption": "This amateur recording features two guitars being played. One guitar is playing a blues rhythm. The other guitar is strumming the main chord once and then playing fills on the higher register. This is accompanied by a tambourine as the percussion. There are no voices in this song. This is an instrumental blues rock song. The mood of this song is suspenseful. This song can be used in a detective movie.", "data_idx": 4054, "number": 0, "label": "rock"} +{"file_name": "train_07335.png", "caption": "This amateur recording features two guitars being played. One guitar is playing a blues rhythm. The other guitar is strumming the main chord once and then playing fills on the higher register. This is accompanied by a tambourine as the percussion. There are no voices in this song. This is an instrumental blues rock song. The mood of this song is suspenseful. This song can be used in a detective movie.", "data_idx": 4054, "number": 1, "label": "rock"} +{"file_name": "train_07336.png", "caption": "This amateur recording features two guitars being played. One guitar is playing a blues rhythm. The other guitar is strumming the main chord once and then playing fills on the higher register. This is accompanied by a tambourine as the percussion. There are no voices in this song. This is an instrumental blues rock song. The mood of this song is suspenseful. This song can be used in a detective movie.", "data_idx": 4054, "number": 2, "label": "rock"} +{"file_name": "train_07337.png", "caption": "This amateur recording features two guitars being played. One guitar is playing a blues rhythm. The other guitar is strumming the main chord once and then playing fills on the higher register. This is accompanied by a tambourine as the percussion. There are no voices in this song. This is an instrumental blues rock song. The mood of this song is suspenseful. This song can be used in a detective movie.", "data_idx": 4054, "number": 3, "label": "rock"} +{"file_name": "train_07338.png", "caption": "The low quality recording features an aggressive sound of synth feedback. In the second half of the loop, the sound is very noisy. It is loud and it sounds really harsh.", "data_idx": 4057, "number": 0, "label": "hiphop"} +{"file_name": "train_07339.png", "caption": "The low quality recording features an aggressive sound of synth feedback. In the second half of the loop, the sound is very noisy. It is loud and it sounds really harsh.", "data_idx": 4057, "number": 1, "label": "hiphop"} +{"file_name": "train_07340.png", "caption": "The low quality recording features an aggressive sound of synth feedback. In the second half of the loop, the sound is very noisy. It is loud and it sounds really harsh.", "data_idx": 4057, "number": 2, "label": "hiphop"} +{"file_name": "train_07341.png", "caption": "The low quality recording features an aggressive sound of synth feedback. In the second half of the loop, the sound is very noisy. It is loud and it sounds really harsh.", "data_idx": 4057, "number": 3, "label": "hiphop"} +{"file_name": "train_07342.png", "caption": "Salsa music featuring heavy percussion including timbale, bongos, guiro among others, a brass section with trumpet and trombone. The music features full band melodies and drum breaks with complex chord progressions and group male vocals.", "data_idx": 4061, "number": 0, "label": "classical"} +{"file_name": "train_07343.png", "caption": "Salsa music featuring heavy percussion including timbale, bongos, guiro among others, a brass section with trumpet and trombone. The music features full band melodies and drum breaks with complex chord progressions and group male vocals.", "data_idx": 4061, "number": 1, "label": "classical"} +{"file_name": "train_07344.png", "caption": "Salsa music featuring heavy percussion including timbale, bongos, guiro among others, a brass section with trumpet and trombone. The music features full band melodies and drum breaks with complex chord progressions and group male vocals.", "data_idx": 4061, "number": 2, "label": "classical"} +{"file_name": "train_07345.png", "caption": "Salsa music featuring heavy percussion including timbale, bongos, guiro among others, a brass section with trumpet and trombone. The music features full band melodies and drum breaks with complex chord progressions and group male vocals.", "data_idx": 4061, "number": 3, "label": "classical"} +{"file_name": "train_07346.png", "caption": "This is a cover performance of a pop music song. There is a male vocalist singing very loudly, but at the same time slightly out of tune. The piano track plays the melody, however there is a poor transposition of the piano sound making it sound corrupted.", "data_idx": 4064, "number": 0, "label": "country"} +{"file_name": "train_07347.png", "caption": "This is a cover performance of a pop music song. There is a male vocalist singing very loudly, but at the same time slightly out of tune. The piano track plays the melody, however there is a poor transposition of the piano sound making it sound corrupted.", "data_idx": 4064, "number": 1, "label": "country"} +{"file_name": "train_07348.png", "caption": "This is a cover performance of a pop music song. There is a male vocalist singing very loudly, but at the same time slightly out of tune. The piano track plays the melody, however there is a poor transposition of the piano sound making it sound corrupted.", "data_idx": 4064, "number": 2, "label": "country"} +{"file_name": "train_07349.png", "caption": "This is a cover performance of a pop music song. There is a male vocalist singing very loudly, but at the same time slightly out of tune. The piano track plays the melody, however there is a poor transposition of the piano sound making it sound corrupted.", "data_idx": 4064, "number": 3, "label": "country"} +{"file_name": "train_07350.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with an animated electric guitar riff without any accompaniment. The music is loud, powerful, rhythmic and youthful with a bit of static or white noise .", "data_idx": 4065, "number": 0, "label": "jazz"} +{"file_name": "train_07351.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with an animated electric guitar riff without any accompaniment. The music is loud, powerful, rhythmic and youthful with a bit of static or white noise .", "data_idx": 4065, "number": 1, "label": "jazz"} +{"file_name": "train_07352.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with an animated electric guitar riff without any accompaniment. The music is loud, powerful, rhythmic and youthful with a bit of static or white noise .", "data_idx": 4065, "number": 2, "label": "jazz"} +{"file_name": "train_07353.png", "caption": "This music is an electric guitar solo. The tempo is medium fast with an animated electric guitar riff without any accompaniment. The music is loud, powerful, rhythmic and youthful with a bit of static or white noise .", "data_idx": 4065, "number": 3, "label": "jazz"} +{"file_name": "train_07354.png", "caption": "The low quality recording features a live performance of a flamenco song sung by passionate male vocalists and followed by aggressive strumming of flamenco rhythm guitar. It is reverberant and noisy, as it was probably recorded with a phone, and it sounds passionate and emotional.", "data_idx": 4068, "number": 0, "label": "rock"} +{"file_name": "train_07355.png", "caption": "The low quality recording features a live performance of a flamenco song sung by passionate male vocalists and followed by aggressive strumming of flamenco rhythm guitar. It is reverberant and noisy, as it was probably recorded with a phone, and it sounds passionate and emotional.", "data_idx": 4068, "number": 1, "label": "rock"} +{"file_name": "train_07356.png", "caption": "The low quality recording features a live performance of a flamenco song sung by passionate male vocalists and followed by aggressive strumming of flamenco rhythm guitar. It is reverberant and noisy, as it was probably recorded with a phone, and it sounds passionate and emotional.", "data_idx": 4068, "number": 2, "label": "rock"} +{"file_name": "train_07357.png", "caption": "The low quality recording features a live performance of a flamenco song sung by passionate male vocalists and followed by aggressive strumming of flamenco rhythm guitar. It is reverberant and noisy, as it was probably recorded with a phone, and it sounds passionate and emotional.", "data_idx": 4068, "number": 3, "label": "rock"} +{"file_name": "train_07358.png", "caption": "This is a dance song which would fit in the afrobeats genre. There's a rhythmic vibrant synth with a fuzzy tone playing the main instrumental melody. There's also a groovy bassline. The percussion includes intermittent hits on a bongo drum, clapping hands, and a kick drum. This would be a good afrobeats club song.", "data_idx": 4069, "number": 0, "label": "reggae"} +{"file_name": "train_07359.png", "caption": "This is a dance song which would fit in the afrobeats genre. There's a rhythmic vibrant synth with a fuzzy tone playing the main instrumental melody. There's also a groovy bassline. The percussion includes intermittent hits on a bongo drum, clapping hands, and a kick drum. This would be a good afrobeats club song.", "data_idx": 4069, "number": 1, "label": "reggae"} +{"file_name": "train_07360.png", "caption": "This is a dance song which would fit in the afrobeats genre. There's a rhythmic vibrant synth with a fuzzy tone playing the main instrumental melody. There's also a groovy bassline. The percussion includes intermittent hits on a bongo drum, clapping hands, and a kick drum. This would be a good afrobeats club song.", "data_idx": 4069, "number": 2, "label": "reggae"} +{"file_name": "train_07361.png", "caption": "This is a dance song which would fit in the afrobeats genre. There's a rhythmic vibrant synth with a fuzzy tone playing the main instrumental melody. There's also a groovy bassline. The percussion includes intermittent hits on a bongo drum, clapping hands, and a kick drum. This would be a good afrobeats club song.", "data_idx": 4069, "number": 3, "label": "reggae"} +{"file_name": "train_07362.png", "caption": "The low quality recording features an electro song that consists stuttering \"4 on the floor\" kick pattern, punchy snare, shimmering hi hats and open hats, soft crash cymbal, repetitive synth melody, spacey, echoing synth lead melody, buzzy synth bass and fading out stuttering female vocal sound effects. It is reverberant, messy, crushed and thin, as the frequencies are clashing with each other, but it still sounds energetic.", "data_idx": 4071, "number": 0, "label": "hiphop"} +{"file_name": "train_07363.png", "caption": "The low quality recording features an electro song that consists stuttering \"4 on the floor\" kick pattern, punchy snare, shimmering hi hats and open hats, soft crash cymbal, repetitive synth melody, spacey, echoing synth lead melody, buzzy synth bass and fading out stuttering female vocal sound effects. It is reverberant, messy, crushed and thin, as the frequencies are clashing with each other, but it still sounds energetic.", "data_idx": 4071, "number": 1, "label": "hiphop"} +{"file_name": "train_07364.png", "caption": "This is a Nepali music piece. There is a string instrument and a local flute playing the melody. The rhythmic background is provided by percussion. It has a vibrant, dreamy feeling to it. This piece could be used in a dream sequence of a movie or TV show taking place in South Asian countries.", "data_idx": 4073, "number": 0, "label": "classical"} +{"file_name": "train_07365.png", "caption": "This is a Nepali music piece. There is a string instrument and a local flute playing the melody. The rhythmic background is provided by percussion. It has a vibrant, dreamy feeling to it. This piece could be used in a dream sequence of a movie or TV show taking place in South Asian countries.", "data_idx": 4073, "number": 1, "label": "classical"} +{"file_name": "train_07366.png", "caption": "This is a Nepali music piece. There is a string instrument and a local flute playing the melody. The rhythmic background is provided by percussion. It has a vibrant, dreamy feeling to it. This piece could be used in a dream sequence of a movie or TV show taking place in South Asian countries.", "data_idx": 4073, "number": 2, "label": "classical"} +{"file_name": "train_07367.png", "caption": "This is a Nepali music piece. There is a string instrument and a local flute playing the melody. The rhythmic background is provided by percussion. It has a vibrant, dreamy feeling to it. This piece could be used in a dream sequence of a movie or TV show taking place in South Asian countries.", "data_idx": 4073, "number": 3, "label": "classical"} +{"file_name": "train_07368.png", "caption": "The song is instrumental. The song is medium tempo with an electric guitar lead, groovy bass line, steady drumming rhythm, cymbal crashes and keyboard harmony. The song is exciting and energetic. The song is a rock tune with poor audio quality.", "data_idx": 4074, "number": 0, "label": "metal"} +{"file_name": "train_07369.png", "caption": "The song is instrumental. The song is medium tempo with an electric guitar lead, groovy bass line, steady drumming rhythm, cymbal crashes and keyboard harmony. The song is exciting and energetic. The song is a rock tune with poor audio quality.", "data_idx": 4074, "number": 1, "label": "metal"} +{"file_name": "train_07370.png", "caption": "The song is instrumental. The song is medium tempo with an electric guitar lead, groovy bass line, steady drumming rhythm, cymbal crashes and keyboard harmony. The song is exciting and energetic. The song is a rock tune with poor audio quality.", "data_idx": 4074, "number": 2, "label": "metal"} +{"file_name": "train_07371.png", "caption": "The song is instrumental. The song is medium tempo with an electric guitar lead, groovy bass line, steady drumming rhythm, cymbal crashes and keyboard harmony. The song is exciting and energetic. The song is a rock tune with poor audio quality.", "data_idx": 4074, "number": 3, "label": "metal"} +{"file_name": "train_07372.png", "caption": "This song is from a game. This clip starts with the sound of fireballs. This is followed by distant blasting sounds. A stringed instrument plays chords at a high pitch. There is no percussion in this song. There are no other instruments in this clip.", "data_idx": 4075, "number": 0, "label": "metal"} +{"file_name": "train_07373.png", "caption": "This song is from a game. This clip starts with the sound of fireballs. This is followed by distant blasting sounds. A stringed instrument plays chords at a high pitch. There is no percussion in this song. There are no other instruments in this clip.", "data_idx": 4075, "number": 1, "label": "metal"} +{"file_name": "train_07374.png", "caption": "This song is from a game. This clip starts with the sound of fireballs. This is followed by distant blasting sounds. A stringed instrument plays chords at a high pitch. There is no percussion in this song. There are no other instruments in this clip.", "data_idx": 4075, "number": 2, "label": "metal"} +{"file_name": "train_07375.png", "caption": "This song is from a game. This clip starts with the sound of fireballs. This is followed by distant blasting sounds. A stringed instrument plays chords at a high pitch. There is no percussion in this song. There are no other instruments in this clip.", "data_idx": 4075, "number": 3, "label": "metal"} +{"file_name": "train_07376.png", "caption": "This song features a high pitched whistling instrument. At the beginning, two hand claps are played. The high pitched whistling instrument plays a high pitched sound, then goes lower and again goes high to an almost ear deafening shriek. This is accompanied by programmed percussion playing a simple beat. There are no voices in this song and no other instruments.", "data_idx": 4077, "number": 0, "label": "hiphop"} +{"file_name": "train_07377.png", "caption": "This song features a high pitched whistling instrument. At the beginning, two hand claps are played. The high pitched whistling instrument plays a high pitched sound, then goes lower and again goes high to an almost ear deafening shriek. This is accompanied by programmed percussion playing a simple beat. There are no voices in this song and no other instruments.", "data_idx": 4077, "number": 1, "label": "hiphop"} +{"file_name": "train_07378.png", "caption": "This song features a high pitched whistling instrument. At the beginning, two hand claps are played. The high pitched whistling instrument plays a high pitched sound, then goes lower and again goes high to an almost ear deafening shriek. This is accompanied by programmed percussion playing a simple beat. There are no voices in this song and no other instruments.", "data_idx": 4077, "number": 2, "label": "hiphop"} +{"file_name": "train_07379.png", "caption": "This song features a high pitched whistling instrument. At the beginning, two hand claps are played. The high pitched whistling instrument plays a high pitched sound, then goes lower and again goes high to an almost ear deafening shriek. This is accompanied by programmed percussion playing a simple beat. There are no voices in this song and no other instruments.", "data_idx": 4077, "number": 3, "label": "hiphop"} +{"file_name": "train_07380.png", "caption": "The song radiates the sound of late 2000s and early 2010s R&B. There are various synths and pads used, some of which are rhythmic and wobbly. The singer has a soulful voice.", "data_idx": 4079, "number": 0, "label": "disco"} +{"file_name": "train_07381.png", "caption": "The song radiates the sound of late 2000s and early 2010s R&B. There are various synths and pads used, some of which are rhythmic and wobbly. The singer has a soulful voice.", "data_idx": 4079, "number": 1, "label": "disco"} +{"file_name": "train_07382.png", "caption": "This music is an Electric Guitar instrumental. The tempo is fast with a dissonant background score . There is the sound of people talking in the background. The music is superimposed on a track which doesn\u2019t seem to be in sync. The lead however is powerful, loud, intense and emphatic. This is a Rock Instrumental.", "data_idx": 4081, "number": 0, "label": "metal"} +{"file_name": "train_07383.png", "caption": "This music is an Electric Guitar instrumental. The tempo is fast with a dissonant background score . There is the sound of people talking in the background. The music is superimposed on a track which doesn\u2019t seem to be in sync. The lead however is powerful, loud, intense and emphatic. This is a Rock Instrumental.", "data_idx": 4081, "number": 1, "label": "metal"} +{"file_name": "train_07384.png", "caption": "This music is an Electric Guitar instrumental. The tempo is fast with a dissonant background score . There is the sound of people talking in the background. The music is superimposed on a track which doesn\u2019t seem to be in sync. The lead however is powerful, loud, intense and emphatic. This is a Rock Instrumental.", "data_idx": 4081, "number": 2, "label": "metal"} +{"file_name": "train_07385.png", "caption": "This music is an Electric Guitar instrumental. The tempo is fast with a dissonant background score . There is the sound of people talking in the background. The music is superimposed on a track which doesn\u2019t seem to be in sync. The lead however is powerful, loud, intense and emphatic. This is a Rock Instrumental.", "data_idx": 4081, "number": 3, "label": "metal"} +{"file_name": "train_07386.png", "caption": "The song is an upbeat, soulful song which has a motif repeated on a woodwind instrument. The song would be suitable for some mellow dancing. The singer has a raspy voice.", "data_idx": 4085, "number": 0, "label": "reggae"} +{"file_name": "train_07387.png", "caption": "The song is an upbeat, soulful song which has a motif repeated on a woodwind instrument. The song would be suitable for some mellow dancing. The singer has a raspy voice.", "data_idx": 4085, "number": 1, "label": "reggae"} +{"file_name": "train_07388.png", "caption": "The song is an upbeat, soulful song which has a motif repeated on a woodwind instrument. The song would be suitable for some mellow dancing. The singer has a raspy voice.", "data_idx": 4085, "number": 2, "label": "reggae"} +{"file_name": "train_07389.png", "caption": "The song is an upbeat, soulful song which has a motif repeated on a woodwind instrument. The song would be suitable for some mellow dancing. The singer has a raspy voice.", "data_idx": 4085, "number": 3, "label": "reggae"} +{"file_name": "train_07390.png", "caption": "The low quality recording features a cover with a steel drums tropical melody that plays over the playback instrumental in the background that consists of groovy bass, claps, \"4 on the floor\" kick pattern, shimmering shakers and tinny percussive elements. It sounds tropical, exotic and groovy, but it also has an unbalanced stereo image.", "data_idx": 4086, "number": 0, "label": "blues"} +{"file_name": "train_07391.png", "caption": "The low quality recording features a cover with a steel drums tropical melody that plays over the playback instrumental in the background that consists of groovy bass, claps, \"4 on the floor\" kick pattern, shimmering shakers and tinny percussive elements. It sounds tropical, exotic and groovy, but it also has an unbalanced stereo image.", "data_idx": 4086, "number": 1, "label": "blues"} +{"file_name": "train_07392.png", "caption": "The low quality recording features a cover with a steel drums tropical melody that plays over the playback instrumental in the background that consists of groovy bass, claps, \"4 on the floor\" kick pattern, shimmering shakers and tinny percussive elements. It sounds tropical, exotic and groovy, but it also has an unbalanced stereo image.", "data_idx": 4086, "number": 2, "label": "blues"} +{"file_name": "train_07393.png", "caption": "The low quality recording features a cover with a steel drums tropical melody that plays over the playback instrumental in the background that consists of groovy bass, claps, \"4 on the floor\" kick pattern, shimmering shakers and tinny percussive elements. It sounds tropical, exotic and groovy, but it also has an unbalanced stereo image.", "data_idx": 4086, "number": 3, "label": "blues"} +{"file_name": "train_07394.png", "caption": "This clip features a live recording of low quality. The song is mixed into a video clip. The sound of crowd cheering is heard. The song features a male voice using a vocoder. The song is in the techno genre. The percussion is programmed and plays a techno beat. The bass plays simple root notes of chords. Synth bursts are played at the beginning and at the end of the song. The referee whistle is heard toward the middle of the clip.", "data_idx": 4087, "number": 0, "label": "hiphop"} +{"file_name": "train_07395.png", "caption": "This clip features a live recording of low quality. The song is mixed into a video clip. The sound of crowd cheering is heard. The song features a male voice using a vocoder. The song is in the techno genre. The percussion is programmed and plays a techno beat. The bass plays simple root notes of chords. Synth bursts are played at the beginning and at the end of the song. The referee whistle is heard toward the middle of the clip.", "data_idx": 4087, "number": 1, "label": "hiphop"} +{"file_name": "train_07396.png", "caption": "This clip features a live recording of low quality. The song is mixed into a video clip. The sound of crowd cheering is heard. The song features a male voice using a vocoder. The song is in the techno genre. The percussion is programmed and plays a techno beat. The bass plays simple root notes of chords. Synth bursts are played at the beginning and at the end of the song. The referee whistle is heard toward the middle of the clip.", "data_idx": 4087, "number": 2, "label": "hiphop"} +{"file_name": "train_07397.png", "caption": "This clip features a live recording of low quality. The song is mixed into a video clip. The sound of crowd cheering is heard. The song features a male voice using a vocoder. The song is in the techno genre. The percussion is programmed and plays a techno beat. The bass plays simple root notes of chords. Synth bursts are played at the beginning and at the end of the song. The referee whistle is heard toward the middle of the clip.", "data_idx": 4087, "number": 3, "label": "hiphop"} +{"file_name": "train_07398.png", "caption": "The low quality recording features a live performance of shoe tapping over a jazz song that consists of passionate female vocal singing over smooth bass and groovy key chords. There are crowd clapping sounds in the background. The actual sounds of shoe tappings is widely spread in the stereo image and it is reverberant, as it was probably performed in a huge space.", "data_idx": 4088, "number": 0, "label": "reggae"} +{"file_name": "train_07399.png", "caption": "The low quality recording features a live performance of shoe tapping over a jazz song that consists of passionate female vocal singing over smooth bass and groovy key chords. There are crowd clapping sounds in the background. The actual sounds of shoe tappings is widely spread in the stereo image and it is reverberant, as it was probably performed in a huge space.", "data_idx": 4088, "number": 1, "label": "reggae"} +{"file_name": "train_07400.png", "caption": "The low quality recording features a live performance of shoe tapping over a jazz song that consists of passionate female vocal singing over smooth bass and groovy key chords. There are crowd clapping sounds in the background. The actual sounds of shoe tappings is widely spread in the stereo image and it is reverberant, as it was probably performed in a huge space.", "data_idx": 4088, "number": 2, "label": "reggae"} +{"file_name": "train_07401.png", "caption": "The low quality recording features a live performance of shoe tapping over a jazz song that consists of passionate female vocal singing over smooth bass and groovy key chords. There are crowd clapping sounds in the background. The actual sounds of shoe tappings is widely spread in the stereo image and it is reverberant, as it was probably performed in a huge space.", "data_idx": 4088, "number": 3, "label": "reggae"} +{"file_name": "train_07402.png", "caption": "This is a bluegrass music piece. The acoustic guitar follows an offbeat strumming pattern, providing a rhythmic background. The violin and the banjo take turns to play rapid, upbeat solos. The atmosphere is very lively. This piece could be used at a definitively American setting such as a rodeo venue.", "data_idx": 4089, "number": 0, "label": "classical"} +{"file_name": "train_07403.png", "caption": "This is a bluegrass music piece. The acoustic guitar follows an offbeat strumming pattern, providing a rhythmic background. The violin and the banjo take turns to play rapid, upbeat solos. The atmosphere is very lively. This piece could be used at a definitively American setting such as a rodeo venue.", "data_idx": 4089, "number": 1, "label": "classical"} +{"file_name": "train_07404.png", "caption": "This is a bluegrass music piece. The acoustic guitar follows an offbeat strumming pattern, providing a rhythmic background. The violin and the banjo take turns to play rapid, upbeat solos. The atmosphere is very lively. This piece could be used at a definitively American setting such as a rodeo venue.", "data_idx": 4089, "number": 2, "label": "classical"} +{"file_name": "train_07405.png", "caption": "This is a bluegrass music piece. The acoustic guitar follows an offbeat strumming pattern, providing a rhythmic background. The violin and the banjo take turns to play rapid, upbeat solos. The atmosphere is very lively. This piece could be used at a definitively American setting such as a rodeo venue.", "data_idx": 4089, "number": 3, "label": "classical"} +{"file_name": "train_07406.png", "caption": "This is a synth-pop piece played in the background of a skateboarding video. There is a male vocalist singing in an emotionally distant manner. There is a keyboard and an electric guitar playing the melody with the bass guitar playing a repetitive bass line in the background. The acoustic drums are playing a simple beat. Skateboarding sounds from the video can be heard very clearly. The recording has an urban atmosphere.", "data_idx": 4091, "number": 0, "label": "hiphop"} +{"file_name": "train_07407.png", "caption": "This is a synth-pop piece played in the background of a skateboarding video. There is a male vocalist singing in an emotionally distant manner. There is a keyboard and an electric guitar playing the melody with the bass guitar playing a repetitive bass line in the background. The acoustic drums are playing a simple beat. Skateboarding sounds from the video can be heard very clearly. The recording has an urban atmosphere.", "data_idx": 4091, "number": 1, "label": "hiphop"} +{"file_name": "train_07408.png", "caption": "The Rock song features a passionate male vocal, layered with harmonizing background male vocals, singing over electric rhythm guitar chords spread widely in the stereo image, thin snare, energetic crash, groovy bass, shimmering hi hats and punchy kick hits. The drums are very reverberant, which is probably the reason why they sound softer. It sounds addictive, thanks to those harmonizing vocals, and energetic overall.", "data_idx": 4094, "number": 0, "label": "metal"} +{"file_name": "train_07409.png", "caption": "The Rock song features a passionate male vocal, layered with harmonizing background male vocals, singing over electric rhythm guitar chords spread widely in the stereo image, thin snare, energetic crash, groovy bass, shimmering hi hats and punchy kick hits. The drums are very reverberant, which is probably the reason why they sound softer. It sounds addictive, thanks to those harmonizing vocals, and energetic overall.", "data_idx": 4094, "number": 1, "label": "metal"} +{"file_name": "train_07410.png", "caption": "The Rock song features a passionate male vocal, layered with harmonizing background male vocals, singing over electric rhythm guitar chords spread widely in the stereo image, thin snare, energetic crash, groovy bass, shimmering hi hats and punchy kick hits. The drums are very reverberant, which is probably the reason why they sound softer. It sounds addictive, thanks to those harmonizing vocals, and energetic overall.", "data_idx": 4094, "number": 2, "label": "metal"} +{"file_name": "train_07411.png", "caption": "The Rock song features a passionate male vocal, layered with harmonizing background male vocals, singing over electric rhythm guitar chords spread widely in the stereo image, thin snare, energetic crash, groovy bass, shimmering hi hats and punchy kick hits. The drums are very reverberant, which is probably the reason why they sound softer. It sounds addictive, thanks to those harmonizing vocals, and energetic overall.", "data_idx": 4094, "number": 3, "label": "metal"} +{"file_name": "train_07412.png", "caption": "Audio from two songs of EDM music featuring four on the floor kick pattern, synthesized pan flute, syncopated synth chords sidechained to the kick, piano and hand percussion.", "data_idx": 4095, "number": 0, "label": "reggae"} +{"file_name": "train_07413.png", "caption": "Audio from two songs of EDM music featuring four on the floor kick pattern, synthesized pan flute, syncopated synth chords sidechained to the kick, piano and hand percussion.", "data_idx": 4095, "number": 1, "label": "reggae"} +{"file_name": "train_07414.png", "caption": "Audio from two songs of EDM music featuring four on the floor kick pattern, synthesized pan flute, syncopated synth chords sidechained to the kick, piano and hand percussion.", "data_idx": 4095, "number": 2, "label": "reggae"} +{"file_name": "train_07415.png", "caption": "Audio from two songs of EDM music featuring four on the floor kick pattern, synthesized pan flute, syncopated synth chords sidechained to the kick, piano and hand percussion.", "data_idx": 4095, "number": 3, "label": "reggae"} +{"file_name": "train_07416.png", "caption": "This amateur recording features a guitar plucking chords. This is accompanied by percussion playing an outro beat. The recording is of low quality. The bass plays one note on the first count of each bar. There are no voices in the song. This song can be played in a highway scene in a movie.", "data_idx": 4096, "number": 0, "label": "rock"} +{"file_name": "train_07417.png", "caption": "This amateur recording features a guitar plucking chords. This is accompanied by percussion playing an outro beat. The recording is of low quality. The bass plays one note on the first count of each bar. There are no voices in the song. This song can be played in a highway scene in a movie.", "data_idx": 4096, "number": 1, "label": "rock"} +{"file_name": "train_07418.png", "caption": "This amateur recording features a guitar plucking chords. This is accompanied by percussion playing an outro beat. The recording is of low quality. The bass plays one note on the first count of each bar. There are no voices in the song. This song can be played in a highway scene in a movie.", "data_idx": 4096, "number": 2, "label": "rock"} +{"file_name": "train_07419.png", "caption": "This amateur recording features a guitar plucking chords. This is accompanied by percussion playing an outro beat. The recording is of low quality. The bass plays one note on the first count of each bar. There are no voices in the song. This song can be played in a highway scene in a movie.", "data_idx": 4096, "number": 3, "label": "rock"} +{"file_name": "train_07420.png", "caption": "This music is instrumental. The tempo is fast with vigours, intense drumming, electronic sounds like shooting, blasts, boomy bass and Rapid clicking sound . The music is loud,boisterous, aggressive, insistent, intense and clamorous . This is video game music.", "data_idx": 4100, "number": 0, "label": "disco"} +{"file_name": "train_07421.png", "caption": "This music is instrumental. The tempo is fast with vigours, intense drumming, electronic sounds like shooting, blasts, boomy bass and Rapid clicking sound . The music is loud,boisterous, aggressive, insistent, intense and clamorous . This is video game music.", "data_idx": 4100, "number": 1, "label": "disco"} +{"file_name": "train_07422.png", "caption": "The low quality recording features a live performance of percussive elements, sitar guitar melody, sustained strings melody, groovy percussive elements and flute solo melody. The recording is noisy and it sounds compressed and loud.", "data_idx": 4101, "number": 0, "label": "disco"} +{"file_name": "train_07423.png", "caption": "The low quality recording features a live performance of percussive elements, sitar guitar melody, sustained strings melody, groovy percussive elements and flute solo melody. The recording is noisy and it sounds compressed and loud.", "data_idx": 4101, "number": 1, "label": "disco"} +{"file_name": "train_07424.png", "caption": "The low quality recording features a live performance of percussive elements, sitar guitar melody, sustained strings melody, groovy percussive elements and flute solo melody. The recording is noisy and it sounds compressed and loud.", "data_idx": 4101, "number": 2, "label": "disco"} +{"file_name": "train_07425.png", "caption": "The low quality recording features a live performance of percussive elements, sitar guitar melody, sustained strings melody, groovy percussive elements and flute solo melody. The recording is noisy and it sounds compressed and loud.", "data_idx": 4101, "number": 3, "label": "disco"} +{"file_name": "train_07426.png", "caption": "This is a chiptune piece. The only instrument being used in this track is a granular synth playing the melody at a medium-to-high pitch. It is an analog sounding piece. There is a nostalgic atmosphere to it. This piece could be used in the soundtracks of cartoons and arcade video games.", "data_idx": 4103, "number": 0, "label": "classical"} +{"file_name": "train_07427.png", "caption": "This is a chiptune piece. The only instrument being used in this track is a granular synth playing the melody at a medium-to-high pitch. It is an analog sounding piece. There is a nostalgic atmosphere to it. This piece could be used in the soundtracks of cartoons and arcade video games.", "data_idx": 4103, "number": 1, "label": "classical"} +{"file_name": "train_07428.png", "caption": "The acoustic drums are playing a groove with crash hits and a bass that sounds distorted while a female voice is singing. Then a male singer with an effect on his voice is almost screaming while an e-guitar is playing a melody. This song may be playing in a rock&roll bar.", "data_idx": 4104, "number": 0, "label": "disco"} +{"file_name": "train_07429.png", "caption": "The acoustic drums are playing a groove with crash hits and a bass that sounds distorted while a female voice is singing. Then a male singer with an effect on his voice is almost screaming while an e-guitar is playing a melody. This song may be playing in a rock&roll bar.", "data_idx": 4104, "number": 1, "label": "disco"} +{"file_name": "train_07430.png", "caption": "The acoustic drums are playing a groove with crash hits and a bass that sounds distorted while a female voice is singing. Then a male singer with an effect on his voice is almost screaming while an e-guitar is playing a melody. This song may be playing in a rock&roll bar.", "data_idx": 4104, "number": 2, "label": "disco"} +{"file_name": "train_07431.png", "caption": "The acoustic drums are playing a groove with crash hits and a bass that sounds distorted while a female voice is singing. Then a male singer with an effect on his voice is almost screaming while an e-guitar is playing a melody. This song may be playing in a rock&roll bar.", "data_idx": 4104, "number": 3, "label": "disco"} +{"file_name": "train_07432.png", "caption": "The low quality recording features an orchestra playing arpeggiated harp melody, low sustained strings and mellow flute melody. It sounds mystical, mellow and calming. The recording is a bit noisy too.", "data_idx": 4105, "number": 0, "label": "classical"} +{"file_name": "train_07433.png", "caption": "The low quality recording features an orchestra playing arpeggiated harp melody, low sustained strings and mellow flute melody. It sounds mystical, mellow and calming. The recording is a bit noisy too.", "data_idx": 4105, "number": 1, "label": "classical"} +{"file_name": "train_07434.png", "caption": "The low quality recording features an orchestra playing arpeggiated harp melody, low sustained strings and mellow flute melody. It sounds mystical, mellow and calming. The recording is a bit noisy too.", "data_idx": 4105, "number": 2, "label": "classical"} +{"file_name": "train_07435.png", "caption": "The low quality recording features an orchestra playing arpeggiated harp melody, low sustained strings and mellow flute melody. It sounds mystical, mellow and calming. The recording is a bit noisy too.", "data_idx": 4105, "number": 3, "label": "classical"} +{"file_name": "train_07436.png", "caption": "This song contains a male voice singing in a higher pitch, a digital drum string playing a simple repeating melody. This song may be playing at home having a romantic time with your partner dancing.", "data_idx": 4106, "number": 0, "label": "hiphop"} +{"file_name": "train_07437.png", "caption": "This song contains a male voice singing in a higher pitch, a digital drum string playing a simple repeating melody. This song may be playing at home having a romantic time with your partner dancing.", "data_idx": 4106, "number": 1, "label": "hiphop"} +{"file_name": "train_07438.png", "caption": "This song contains a male voice singing in a higher pitch, a digital drum string playing a simple repeating melody. This song may be playing at home having a romantic time with your partner dancing.", "data_idx": 4106, "number": 2, "label": "hiphop"} +{"file_name": "train_07439.png", "caption": "This song contains a male voice singing in a higher pitch, a digital drum string playing a simple repeating melody. This song may be playing at home having a romantic time with your partner dancing.", "data_idx": 4106, "number": 3, "label": "hiphop"} +{"file_name": "train_07440.png", "caption": "The low quality recording features a baby goat bleating sound effects and regional Mexican song, that consists of wide acoustic guitar chords, groovy piano melody, drum roll, bagpipe melody and groovy, playing in the background. It sounds fun and happy and it seems like it is some kind of animal related TV show.", "data_idx": 4107, "number": 0, "label": "pop"} +{"file_name": "train_07441.png", "caption": "The low quality recording features a baby goat bleating sound effects and regional Mexican song, that consists of wide acoustic guitar chords, groovy piano melody, drum roll, bagpipe melody and groovy, playing in the background. It sounds fun and happy and it seems like it is some kind of animal related TV show.", "data_idx": 4107, "number": 1, "label": "pop"} +{"file_name": "train_07442.png", "caption": "The low quality recording features a baby goat bleating sound effects and regional Mexican song, that consists of wide acoustic guitar chords, groovy piano melody, drum roll, bagpipe melody and groovy, playing in the background. It sounds fun and happy and it seems like it is some kind of animal related TV show.", "data_idx": 4107, "number": 2, "label": "pop"} +{"file_name": "train_07443.png", "caption": "The low quality recording features a baby goat bleating sound effects and regional Mexican song, that consists of wide acoustic guitar chords, groovy piano melody, drum roll, bagpipe melody and groovy, playing in the background. It sounds fun and happy and it seems like it is some kind of animal related TV show.", "data_idx": 4107, "number": 3, "label": "pop"} +{"file_name": "train_07444.png", "caption": "Someone is playing a melody on a sitar along with a tabla providing rhythms. This song may be playing in a movie scene in the desert.", "data_idx": 4108, "number": 0, "label": "jazz"} +{"file_name": "train_07445.png", "caption": "Someone is playing a melody on a sitar along with a tabla providing rhythms. This song may be playing in a movie scene in the desert.", "data_idx": 4108, "number": 1, "label": "jazz"} +{"file_name": "train_07446.png", "caption": "Someone is playing a melody on a sitar along with a tabla providing rhythms. This song may be playing in a movie scene in the desert.", "data_idx": 4108, "number": 2, "label": "jazz"} +{"file_name": "train_07447.png", "caption": "Someone is playing a melody on a sitar along with a tabla providing rhythms. This song may be playing in a movie scene in the desert.", "data_idx": 4108, "number": 3, "label": "jazz"} +{"file_name": "train_07448.png", "caption": "The low quality recording features an indie folk song that consists of wide harmonizing male vocals and acoustic rhythm guitar. In the second half of the loop, the lead female vocal appears, creating a perfect harmony with the previously mentioned male vocals. It sounds passionate, emotional and sad.", "data_idx": 4109, "number": 0, "label": "rock"} +{"file_name": "train_07449.png", "caption": "The low quality recording features an indie folk song that consists of wide harmonizing male vocals and acoustic rhythm guitar. In the second half of the loop, the lead female vocal appears, creating a perfect harmony with the previously mentioned male vocals. It sounds passionate, emotional and sad.", "data_idx": 4109, "number": 1, "label": "rock"} +{"file_name": "train_07450.png", "caption": "The low quality recording features an indie folk song that consists of wide harmonizing male vocals and acoustic rhythm guitar. In the second half of the loop, the lead female vocal appears, creating a perfect harmony with the previously mentioned male vocals. It sounds passionate, emotional and sad.", "data_idx": 4109, "number": 2, "label": "rock"} +{"file_name": "train_07451.png", "caption": "The low quality recording features an indie folk song that consists of wide harmonizing male vocals and acoustic rhythm guitar. In the second half of the loop, the lead female vocal appears, creating a perfect harmony with the previously mentioned male vocals. It sounds passionate, emotional and sad.", "data_idx": 4109, "number": 3, "label": "rock"} +{"file_name": "train_07452.png", "caption": "The low quality recording features a groovy bass guitar playing with guitar pedal chorus effect. In the first half of the loop, there is a modulated chorus effect, while in the second part, there is a classic chorus effect on.", "data_idx": 4110, "number": 0, "label": "reggae"} +{"file_name": "train_07453.png", "caption": "The low quality recording features a groovy bass guitar playing with guitar pedal chorus effect. In the first half of the loop, there is a modulated chorus effect, while in the second part, there is a classic chorus effect on.", "data_idx": 4110, "number": 1, "label": "reggae"} +{"file_name": "train_07454.png", "caption": "The low quality recording features a groovy bass guitar playing with guitar pedal chorus effect. In the first half of the loop, there is a modulated chorus effect, while in the second part, there is a classic chorus effect on.", "data_idx": 4110, "number": 2, "label": "reggae"} +{"file_name": "train_07455.png", "caption": "The low quality recording features a groovy bass guitar playing with guitar pedal chorus effect. In the first half of the loop, there is a modulated chorus effect, while in the second part, there is a classic chorus effect on.", "data_idx": 4110, "number": 3, "label": "reggae"} +{"file_name": "train_07456.png", "caption": "The low quality recording features a traditional song that consists of wooden percussive elements, addictive accordion melody, smooth bass and some metallic buzzing sounds. Even though it is mono and noisy, it still sounds soulful and addictive.", "data_idx": 4111, "number": 0, "label": "classical"} +{"file_name": "train_07457.png", "caption": "The low quality recording features a traditional song that consists of wooden percussive elements, addictive accordion melody, smooth bass and some metallic buzzing sounds. Even though it is mono and noisy, it still sounds soulful and addictive.", "data_idx": 4111, "number": 1, "label": "classical"} +{"file_name": "train_07458.png", "caption": "The low quality recording features a traditional song that consists of wooden percussive elements, addictive accordion melody, smooth bass and some metallic buzzing sounds. Even though it is mono and noisy, it still sounds soulful and addictive.", "data_idx": 4111, "number": 2, "label": "classical"} +{"file_name": "train_07459.png", "caption": "The low quality recording features a traditional song that consists of wooden percussive elements, addictive accordion melody, smooth bass and some metallic buzzing sounds. Even though it is mono and noisy, it still sounds soulful and addictive.", "data_idx": 4111, "number": 3, "label": "classical"} +{"file_name": "train_07460.png", "caption": "A young female vocalist sings this upbeat country song. The tempo is fast with keyboard harmony,enthusiastic drumming , rhythmic accompaniment of acoustic guitar, mandolin, fiddle, resonator, auto harp and dobro and tambourine beats. The song is fresh, youthful, energetic, vivacious, catchy, upbeat, simple and peppy. This song is Country Pop.", "data_idx": 4121, "number": 0, "label": "pop"} +{"file_name": "train_07461.png", "caption": "A young female vocalist sings this upbeat country song. The tempo is fast with keyboard harmony,enthusiastic drumming , rhythmic accompaniment of acoustic guitar, mandolin, fiddle, resonator, auto harp and dobro and tambourine beats. The song is fresh, youthful, energetic, vivacious, catchy, upbeat, simple and peppy. This song is Country Pop.", "data_idx": 4121, "number": 1, "label": "pop"} +{"file_name": "train_07462.png", "caption": "A young female vocalist sings this upbeat country song. The tempo is fast with keyboard harmony,enthusiastic drumming , rhythmic accompaniment of acoustic guitar, mandolin, fiddle, resonator, auto harp and dobro and tambourine beats. The song is fresh, youthful, energetic, vivacious, catchy, upbeat, simple and peppy. This song is Country Pop.", "data_idx": 4121, "number": 2, "label": "pop"} +{"file_name": "train_07463.png", "caption": "A young female vocalist sings this upbeat country song. The tempo is fast with keyboard harmony,enthusiastic drumming , rhythmic accompaniment of acoustic guitar, mandolin, fiddle, resonator, auto harp and dobro and tambourine beats. The song is fresh, youthful, energetic, vivacious, catchy, upbeat, simple and peppy. This song is Country Pop.", "data_idx": 4121, "number": 3, "label": "pop"} +{"file_name": "train_07464.png", "caption": "This clip is an instrumental with dissonant sounds like whirring, an engine starting, door bell or elevator bell , clattering and rustling. This is an amateur home recording.", "data_idx": 4122, "number": 0, "label": "classical"} +{"file_name": "train_07465.png", "caption": "This clip is an instrumental with dissonant sounds like whirring, an engine starting, door bell or elevator bell , clattering and rustling. This is an amateur home recording.", "data_idx": 4122, "number": 1, "label": "classical"} +{"file_name": "train_07466.png", "caption": "This clip is an instrumental with dissonant sounds like whirring, an engine starting, door bell or elevator bell , clattering and rustling. This is an amateur home recording.", "data_idx": 4122, "number": 2, "label": "classical"} +{"file_name": "train_07467.png", "caption": "This clip is an instrumental with dissonant sounds like whirring, an engine starting, door bell or elevator bell , clattering and rustling. This is an amateur home recording.", "data_idx": 4122, "number": 3, "label": "classical"} +{"file_name": "train_07468.png", "caption": "The song is an instrumental. The tempo is medium with a booming bass line, grooving drum rhythm, sweeping keyboard harmony, sonic sound effects, and pin pong ball sound effects. The song has trance vibes and is very groovy. The song has poor audio quality.", "data_idx": 4123, "number": 0, "label": "hiphop"} +{"file_name": "train_07469.png", "caption": "The song is an instrumental. The tempo is medium with a booming bass line, grooving drum rhythm, sweeping keyboard harmony, sonic sound effects, and pin pong ball sound effects. The song has trance vibes and is very groovy. The song has poor audio quality.", "data_idx": 4123, "number": 1, "label": "hiphop"} +{"file_name": "train_07470.png", "caption": "The song is an instrumental. The tempo is medium with a booming bass line, grooving drum rhythm, sweeping keyboard harmony, sonic sound effects, and pin pong ball sound effects. The song has trance vibes and is very groovy. The song has poor audio quality.", "data_idx": 4123, "number": 2, "label": "hiphop"} +{"file_name": "train_07471.png", "caption": "The song is an instrumental. The tempo is medium with a booming bass line, grooving drum rhythm, sweeping keyboard harmony, sonic sound effects, and pin pong ball sound effects. The song has trance vibes and is very groovy. The song has poor audio quality.", "data_idx": 4123, "number": 3, "label": "hiphop"} +{"file_name": "train_07472.png", "caption": "The low quality recording features a live performance that consists of an acoustic flamenco guitar melody. The recording is very noisy and buzzy, but you can still hear the passion and the emotion.", "data_idx": 4125, "number": 0, "label": "hiphop"} +{"file_name": "train_07473.png", "caption": "The low quality recording features a live performance that consists of an acoustic flamenco guitar melody. The recording is very noisy and buzzy, but you can still hear the passion and the emotion.", "data_idx": 4125, "number": 1, "label": "hiphop"} +{"file_name": "train_07474.png", "caption": "The low quality recording features a live performance that consists of an acoustic flamenco guitar melody. The recording is very noisy and buzzy, but you can still hear the passion and the emotion.", "data_idx": 4125, "number": 2, "label": "hiphop"} +{"file_name": "train_07475.png", "caption": "The low quality recording features a live performance that consists of an acoustic flamenco guitar melody. The recording is very noisy and buzzy, but you can still hear the passion and the emotion.", "data_idx": 4125, "number": 3, "label": "hiphop"} +{"file_name": "train_07476.png", "caption": "This song is a mixture of punk rock with acoustic drums with crash hits, e-guitar playing low notes along with the bassline, a male voice aggressively, loud screaming and digital higher pitched sample sounds being panned to the left and right side of the speakers. This song may be playing at a live concert in an underground club.", "data_idx": 4130, "number": 0, "label": "metal"} +{"file_name": "train_07477.png", "caption": "This song is a mixture of punk rock with acoustic drums with crash hits, e-guitar playing low notes along with the bassline, a male voice aggressively, loud screaming and digital higher pitched sample sounds being panned to the left and right side of the speakers. This song may be playing at a live concert in an underground club.", "data_idx": 4130, "number": 1, "label": "metal"} +{"file_name": "train_07478.png", "caption": "This song is a mixture of punk rock with acoustic drums with crash hits, e-guitar playing low notes along with the bassline, a male voice aggressively, loud screaming and digital higher pitched sample sounds being panned to the left and right side of the speakers. This song may be playing at a live concert in an underground club.", "data_idx": 4130, "number": 2, "label": "metal"} +{"file_name": "train_07479.png", "caption": "This song is a mixture of punk rock with acoustic drums with crash hits, e-guitar playing low notes along with the bassline, a male voice aggressively, loud screaming and digital higher pitched sample sounds being panned to the left and right side of the speakers. This song may be playing at a live concert in an underground club.", "data_idx": 4130, "number": 3, "label": "metal"} +{"file_name": "train_07480.png", "caption": "The song is an instrumental. The song is medium tempo with a violin playing a solo with a piano accompaniment. The song is emotional and positive. The song is a classic western hit and has poor audio quality in general.", "data_idx": 4134, "number": 0, "label": "classical"} +{"file_name": "train_07481.png", "caption": "The song is an instrumental. The song is medium tempo with a violin playing a solo with a piano accompaniment. The song is emotional and positive. The song is a classic western hit and has poor audio quality in general.", "data_idx": 4134, "number": 1, "label": "classical"} +{"file_name": "train_07482.png", "caption": "The song is an instrumental. The song is medium tempo with a violin playing a solo with a piano accompaniment. The song is emotional and positive. The song is a classic western hit and has poor audio quality in general.", "data_idx": 4134, "number": 2, "label": "classical"} +{"file_name": "train_07483.png", "caption": "The song is an instrumental. The song is medium tempo with a violin playing a solo with a piano accompaniment. The song is emotional and positive. The song is a classic western hit and has poor audio quality in general.", "data_idx": 4134, "number": 3, "label": "classical"} +{"file_name": "train_07484.png", "caption": "The recording starts with a synth pad sound in the higher register and also with a tunes airy sounds slowly pitching down. Then a separate techno song starts playing with a monotone digital drum groove. The kick is overdriven and has some punch to it. The fast hihat sounds are panned to the left and right side of the speakers. This song may be playing in a night club.", "data_idx": 4136, "number": 0, "label": "hiphop"} +{"file_name": "train_07485.png", "caption": "The recording starts with a synth pad sound in the higher register and also with a tunes airy sounds slowly pitching down. Then a separate techno song starts playing with a monotone digital drum groove. The kick is overdriven and has some punch to it. The fast hihat sounds are panned to the left and right side of the speakers. This song may be playing in a night club.", "data_idx": 4136, "number": 1, "label": "hiphop"} +{"file_name": "train_07486.png", "caption": "The recording starts with a synth pad sound in the higher register and also with a tunes airy sounds slowly pitching down. Then a separate techno song starts playing with a monotone digital drum groove. The kick is overdriven and has some punch to it. The fast hihat sounds are panned to the left and right side of the speakers. This song may be playing in a night club.", "data_idx": 4136, "number": 2, "label": "hiphop"} +{"file_name": "train_07487.png", "caption": "The recording starts with a synth pad sound in the higher register and also with a tunes airy sounds slowly pitching down. Then a separate techno song starts playing with a monotone digital drum groove. The kick is overdriven and has some punch to it. The fast hihat sounds are panned to the left and right side of the speakers. This song may be playing in a night club.", "data_idx": 4136, "number": 3, "label": "hiphop"} +{"file_name": "train_07488.png", "caption": "This is a Christian pop piece. There is a telephone sound effect in the opening. There is a female vocalist singing melodically as the lead. The melody is being played on the acoustic guitar and the keyboard. The rhythm is provided by an electronic drum beat. There is a modern feel to this piece. It could be used in the background of social media content related to Christianity.", "data_idx": 4137, "number": 0, "label": "hiphop"} +{"file_name": "train_07489.png", "caption": "This is a Christian pop piece. There is a telephone sound effect in the opening. There is a female vocalist singing melodically as the lead. The melody is being played on the acoustic guitar and the keyboard. The rhythm is provided by an electronic drum beat. There is a modern feel to this piece. It could be used in the background of social media content related to Christianity.", "data_idx": 4137, "number": 1, "label": "hiphop"} +{"file_name": "train_07490.png", "caption": "This is a Christian pop piece. There is a telephone sound effect in the opening. There is a female vocalist singing melodically as the lead. The melody is being played on the acoustic guitar and the keyboard. The rhythm is provided by an electronic drum beat. There is a modern feel to this piece. It could be used in the background of social media content related to Christianity.", "data_idx": 4137, "number": 2, "label": "hiphop"} +{"file_name": "train_07491.png", "caption": "This is a Christian pop piece. There is a telephone sound effect in the opening. There is a female vocalist singing melodically as the lead. The melody is being played on the acoustic guitar and the keyboard. The rhythm is provided by an electronic drum beat. There is a modern feel to this piece. It could be used in the background of social media content related to Christianity.", "data_idx": 4137, "number": 3, "label": "hiphop"} +{"file_name": "train_07492.png", "caption": "This music is an electronic instrumental. The tempo is fast with punchy drumming rhythm, keyboard harmony, vigorous guitar rhythm and electronically arranged sounds like a dissonant booming drum, water bubbling, hissing and whistle like instrument playing harmony. The song is youthful, energetic, enthusiastic, vigorous, vivacious and youthful with a dance groove. This music is EDM.", "data_idx": 4139, "number": 0, "label": "disco"} +{"file_name": "train_07493.png", "caption": "This music is an electronic instrumental. The tempo is fast with punchy drumming rhythm, keyboard harmony, vigorous guitar rhythm and electronically arranged sounds like a dissonant booming drum, water bubbling, hissing and whistle like instrument playing harmony. The song is youthful, energetic, enthusiastic, vigorous, vivacious and youthful with a dance groove. This music is EDM.", "data_idx": 4139, "number": 1, "label": "disco"} +{"file_name": "train_07494.png", "caption": "This music is an electronic instrumental. The tempo is fast with punchy drumming rhythm, keyboard harmony, vigorous guitar rhythm and electronically arranged sounds like a dissonant booming drum, water bubbling, hissing and whistle like instrument playing harmony. The song is youthful, energetic, enthusiastic, vigorous, vivacious and youthful with a dance groove. This music is EDM.", "data_idx": 4139, "number": 2, "label": "disco"} +{"file_name": "train_07495.png", "caption": "This music is an electronic instrumental. The tempo is fast with punchy drumming rhythm, keyboard harmony, vigorous guitar rhythm and electronically arranged sounds like a dissonant booming drum, water bubbling, hissing and whistle like instrument playing harmony. The song is youthful, energetic, enthusiastic, vigorous, vivacious and youthful with a dance groove. This music is EDM.", "data_idx": 4139, "number": 3, "label": "disco"} +{"file_name": "train_07496.png", "caption": "The instrumental music features a sort of calm before the storm. In the low register one can barely hear a double bass playing a long note softly. Another stringed instrument plays a short melody that fades out. A bigger group of strings then play a short long-note melody. The music is playing softly, almost quiet. This could work well as music for a movie scene.", "data_idx": 4141, "number": 0, "label": "classical"} +{"file_name": "train_07497.png", "caption": "The instrumental music features a sort of calm before the storm. In the low register one can barely hear a double bass playing a long note softly. Another stringed instrument plays a short melody that fades out. A bigger group of strings then play a short long-note melody. The music is playing softly, almost quiet. This could work well as music for a movie scene.", "data_idx": 4141, "number": 1, "label": "classical"} +{"file_name": "train_07498.png", "caption": "The instrumental music features a sort of calm before the storm. In the low register one can barely hear a double bass playing a long note softly. Another stringed instrument plays a short melody that fades out. A bigger group of strings then play a short long-note melody. The music is playing softly, almost quiet. This could work well as music for a movie scene.", "data_idx": 4141, "number": 2, "label": "classical"} +{"file_name": "train_07499.png", "caption": "The instrumental music features a sort of calm before the storm. In the low register one can barely hear a double bass playing a long note softly. Another stringed instrument plays a short melody that fades out. A bigger group of strings then play a short long-note melody. The music is playing softly, almost quiet. This could work well as music for a movie scene.", "data_idx": 4141, "number": 3, "label": "classical"} +{"file_name": "train_07500.png", "caption": "The Latin/African song features a flat, echoing male vocals singing over exotic percussive elements and groovy bass. It sounds easygoing and low quality as it is recorded in mono and the vocals are kind of distorted.", "data_idx": 4142, "number": 0, "label": "reggae"} +{"file_name": "train_07501.png", "caption": "The Latin/African song features a flat, echoing male vocals singing over exotic percussive elements and groovy bass. It sounds easygoing and low quality as it is recorded in mono and the vocals are kind of distorted.", "data_idx": 4142, "number": 1, "label": "reggae"} +{"file_name": "train_07502.png", "caption": "The Latin/African song features a flat, echoing male vocals singing over exotic percussive elements and groovy bass. It sounds easygoing and low quality as it is recorded in mono and the vocals are kind of distorted.", "data_idx": 4142, "number": 2, "label": "reggae"} +{"file_name": "train_07503.png", "caption": "The Latin/African song features a flat, echoing male vocals singing over exotic percussive elements and groovy bass. It sounds easygoing and low quality as it is recorded in mono and the vocals are kind of distorted.", "data_idx": 4142, "number": 3, "label": "reggae"} +{"file_name": "train_07504.png", "caption": "A male voice is rapping in a higher pitch while having backing voices creating a harmony. There is some delay in his voice. A synth melody/arpeggio is playing in the middle range getting louder while a warm digital kick sound is holding the rhythm. A cymbal sound is coming in to make it clear that the song will break into the next part. This song may be playing in a music video.", "data_idx": 4144, "number": 0, "label": "hiphop"} +{"file_name": "train_07505.png", "caption": "A male voice is rapping in a higher pitch while having backing voices creating a harmony. There is some delay in his voice. A synth melody/arpeggio is playing in the middle range getting louder while a warm digital kick sound is holding the rhythm. A cymbal sound is coming in to make it clear that the song will break into the next part. This song may be playing in a music video.", "data_idx": 4144, "number": 1, "label": "hiphop"} +{"file_name": "train_07506.png", "caption": "A male voice is rapping in a higher pitch while having backing voices creating a harmony. There is some delay in his voice. A synth melody/arpeggio is playing in the middle range getting louder while a warm digital kick sound is holding the rhythm. A cymbal sound is coming in to make it clear that the song will break into the next part. This song may be playing in a music video.", "data_idx": 4144, "number": 2, "label": "hiphop"} +{"file_name": "train_07507.png", "caption": "A male voice is rapping in a higher pitch while having backing voices creating a harmony. There is some delay in his voice. A synth melody/arpeggio is playing in the middle range getting louder while a warm digital kick sound is holding the rhythm. A cymbal sound is coming in to make it clear that the song will break into the next part. This song may be playing in a music video.", "data_idx": 4144, "number": 3, "label": "hiphop"} +{"file_name": "train_07508.png", "caption": "The low quality recording features an acoustic rhythm guitar and flat female vocal singing on top of it. There is a lot of reverb on vocals, which makes it sound too separate from the guitar. The guitar, in the second half of the loop, is played a bit sloppy.", "data_idx": 4146, "number": 0, "label": "pop"} +{"file_name": "train_07509.png", "caption": "The low quality recording features an acoustic rhythm guitar and flat female vocal singing on top of it. There is a lot of reverb on vocals, which makes it sound too separate from the guitar. The guitar, in the second half of the loop, is played a bit sloppy.", "data_idx": 4146, "number": 1, "label": "pop"} +{"file_name": "train_07510.png", "caption": "The low quality recording features an acoustic rhythm guitar and flat female vocal singing on top of it. There is a lot of reverb on vocals, which makes it sound too separate from the guitar. The guitar, in the second half of the loop, is played a bit sloppy.", "data_idx": 4146, "number": 2, "label": "pop"} +{"file_name": "train_07511.png", "caption": "The low quality recording features an acoustic rhythm guitar and flat female vocal singing on top of it. There is a lot of reverb on vocals, which makes it sound too separate from the guitar. The guitar, in the second half of the loop, is played a bit sloppy.", "data_idx": 4146, "number": 3, "label": "pop"} +{"file_name": "train_07512.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song that consists of punchy kick and snare, repetitive wooden percussive elements, shimmering hi hats and open hats and soft crash cymbals. It sounds manic, energetic and kind of muffled, since it was probably recorded with a poor quality microphone.", "data_idx": 4148, "number": 0, "label": "hiphop"} +{"file_name": "train_07513.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song that consists of punchy kick and snare, repetitive wooden percussive elements, shimmering hi hats and open hats and soft crash cymbals. It sounds manic, energetic and kind of muffled, since it was probably recorded with a poor quality microphone.", "data_idx": 4148, "number": 1, "label": "hiphop"} +{"file_name": "train_07514.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song that consists of punchy kick and snare, repetitive wooden percussive elements, shimmering hi hats and open hats and soft crash cymbals. It sounds manic, energetic and kind of muffled, since it was probably recorded with a poor quality microphone.", "data_idx": 4148, "number": 2, "label": "hiphop"} +{"file_name": "train_07515.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop song that consists of punchy kick and snare, repetitive wooden percussive elements, shimmering hi hats and open hats and soft crash cymbals. It sounds manic, energetic and kind of muffled, since it was probably recorded with a poor quality microphone.", "data_idx": 4148, "number": 3, "label": "hiphop"} +{"file_name": "train_07516.png", "caption": "This composition contains percussion and percussive hits taking the main focus. A string section is playing a short melody along with flutes/oboes. This song sounds cinematic and may be playing in a dangerous movie-scene.", "data_idx": 4153, "number": 0, "label": "classical"} +{"file_name": "train_07517.png", "caption": "This composition contains percussion and percussive hits taking the main focus. A string section is playing a short melody along with flutes/oboes. This song sounds cinematic and may be playing in a dangerous movie-scene.", "data_idx": 4153, "number": 1, "label": "classical"} +{"file_name": "train_07518.png", "caption": "This composition contains percussion and percussive hits taking the main focus. A string section is playing a short melody along with flutes/oboes. This song sounds cinematic and may be playing in a dangerous movie-scene.", "data_idx": 4153, "number": 2, "label": "classical"} +{"file_name": "train_07519.png", "caption": "This composition contains percussion and percussive hits taking the main focus. A string section is playing a short melody along with flutes/oboes. This song sounds cinematic and may be playing in a dangerous movie-scene.", "data_idx": 4153, "number": 3, "label": "classical"} +{"file_name": "train_07520.png", "caption": "This is an instrumental rock and roll music piece. An overdriven electric guitar is playing the melody while a bass guitar is playing the background. There is a basic rock drum beat keeping the rhythmic structure. There is a groovy, easygoing atmosphere. This music could be played in the background at a rock bar or a sports venue.", "data_idx": 4154, "number": 0, "label": "reggae"} +{"file_name": "train_07521.png", "caption": "This is an instrumental rock and roll music piece. An overdriven electric guitar is playing the melody while a bass guitar is playing the background. There is a basic rock drum beat keeping the rhythmic structure. There is a groovy, easygoing atmosphere. This music could be played in the background at a rock bar or a sports venue.", "data_idx": 4154, "number": 1, "label": "reggae"} +{"file_name": "train_07522.png", "caption": "This is an instrumental rock and roll music piece. An overdriven electric guitar is playing the melody while a bass guitar is playing the background. There is a basic rock drum beat keeping the rhythmic structure. There is a groovy, easygoing atmosphere. This music could be played in the background at a rock bar or a sports venue.", "data_idx": 4154, "number": 2, "label": "reggae"} +{"file_name": "train_07523.png", "caption": "This is an instrumental rock and roll music piece. An overdriven electric guitar is playing the melody while a bass guitar is playing the background. There is a basic rock drum beat keeping the rhythmic structure. There is a groovy, easygoing atmosphere. This music could be played in the background at a rock bar or a sports venue.", "data_idx": 4154, "number": 3, "label": "reggae"} +{"file_name": "train_07524.png", "caption": "Classical music features a full orchestra playing beautiful sustained strings melody, arpeggiated brass melodies, shimmering bells, pumping drums and energetic cymbals. It sounds like a background movie soundtrack - mystical, epic, uplifting and suspenseful.", "data_idx": 4156, "number": 0, "label": "country"} +{"file_name": "train_07525.png", "caption": "Classical music features a full orchestra playing beautiful sustained strings melody, arpeggiated brass melodies, shimmering bells, pumping drums and energetic cymbals. It sounds like a background movie soundtrack - mystical, epic, uplifting and suspenseful.", "data_idx": 4156, "number": 1, "label": "country"} +{"file_name": "train_07526.png", "caption": "A male rapper sings this emotional melody. The song is medium tempo with a steady techno drumming rhythm, strong bass line, various percussion hits, piano playing accompaniment and synth horns playing countermelody. The song is emotional and storytelling in nature. The song is a modern hip hop song.", "data_idx": 4157, "number": 0, "label": "pop"} +{"file_name": "train_07527.png", "caption": "A male rapper sings this emotional melody. The song is medium tempo with a steady techno drumming rhythm, strong bass line, various percussion hits, piano playing accompaniment and synth horns playing countermelody. The song is emotional and storytelling in nature. The song is a modern hip hop song.", "data_idx": 4157, "number": 1, "label": "pop"} +{"file_name": "train_07528.png", "caption": "A male rapper sings this emotional melody. The song is medium tempo with a steady techno drumming rhythm, strong bass line, various percussion hits, piano playing accompaniment and synth horns playing countermelody. The song is emotional and storytelling in nature. The song is a modern hip hop song.", "data_idx": 4157, "number": 2, "label": "pop"} +{"file_name": "train_07529.png", "caption": "A male rapper sings this emotional melody. The song is medium tempo with a steady techno drumming rhythm, strong bass line, various percussion hits, piano playing accompaniment and synth horns playing countermelody. The song is emotional and storytelling in nature. The song is a modern hip hop song.", "data_idx": 4157, "number": 3, "label": "pop"} +{"file_name": "train_07530.png", "caption": "The romantic music features a male voice singing a melody. An acoustic guitar accompanies the singer by playing chords. The drums play a light rhythm. Other percussion instruments such as triangles can be heard.", "data_idx": 4159, "number": 0, "label": "country"} +{"file_name": "train_07531.png", "caption": "The romantic music features a male voice singing a melody. An acoustic guitar accompanies the singer by playing chords. The drums play a light rhythm. Other percussion instruments such as triangles can be heard.", "data_idx": 4159, "number": 1, "label": "country"} +{"file_name": "train_07532.png", "caption": "The romantic music features a male voice singing a melody. An acoustic guitar accompanies the singer by playing chords. The drums play a light rhythm. Other percussion instruments such as triangles can be heard.", "data_idx": 4159, "number": 2, "label": "country"} +{"file_name": "train_07533.png", "caption": "The romantic music features a male voice singing a melody. An acoustic guitar accompanies the singer by playing chords. The drums play a light rhythm. Other percussion instruments such as triangles can be heard.", "data_idx": 4159, "number": 3, "label": "country"} +{"file_name": "train_07534.png", "caption": "The low quality recording features a huge orchestra playing drums alongside a tiny percussive element in the first half of the loop. In the second half, drums are played at half time. It sounds groovy, percussive, suspenseful and intense - like a background soundtrack for an action movie scene.", "data_idx": 4162, "number": 0, "label": "hiphop"} +{"file_name": "train_07535.png", "caption": "The low quality recording features a huge orchestra playing drums alongside a tiny percussive element in the first half of the loop. In the second half, drums are played at half time. It sounds groovy, percussive, suspenseful and intense - like a background soundtrack for an action movie scene.", "data_idx": 4162, "number": 1, "label": "hiphop"} +{"file_name": "train_07536.png", "caption": "The low quality recording features a huge orchestra playing drums alongside a tiny percussive element in the first half of the loop. In the second half, drums are played at half time. It sounds groovy, percussive, suspenseful and intense - like a background soundtrack for an action movie scene.", "data_idx": 4162, "number": 2, "label": "hiphop"} +{"file_name": "train_07537.png", "caption": "The low quality recording features a huge orchestra playing drums alongside a tiny percussive element in the first half of the loop. In the second half, drums are played at half time. It sounds groovy, percussive, suspenseful and intense - like a background soundtrack for an action movie scene.", "data_idx": 4162, "number": 3, "label": "hiphop"} +{"file_name": "train_07538.png", "caption": "This jazz song features a guitar solo. This is accompanied by percussion playing a simple beat. An acoustic guitar strums chords on each count of the bar. The bass plays the root notes of the chords. There are no voices in this song. The song has a happy mood. This song can be played in a coffee shop.", "data_idx": 4163, "number": 0, "label": "jazz"} +{"file_name": "train_07539.png", "caption": "This jazz song features a guitar solo. This is accompanied by percussion playing a simple beat. An acoustic guitar strums chords on each count of the bar. The bass plays the root notes of the chords. There are no voices in this song. The song has a happy mood. This song can be played in a coffee shop.", "data_idx": 4163, "number": 1, "label": "jazz"} +{"file_name": "train_07540.png", "caption": "This jazz song features a guitar solo. This is accompanied by percussion playing a simple beat. An acoustic guitar strums chords on each count of the bar. The bass plays the root notes of the chords. There are no voices in this song. The song has a happy mood. This song can be played in a coffee shop.", "data_idx": 4163, "number": 2, "label": "jazz"} +{"file_name": "train_07541.png", "caption": "This jazz song features a guitar solo. This is accompanied by percussion playing a simple beat. An acoustic guitar strums chords on each count of the bar. The bass plays the root notes of the chords. There are no voices in this song. The song has a happy mood. This song can be played in a coffee shop.", "data_idx": 4163, "number": 3, "label": "jazz"} +{"file_name": "train_07542.png", "caption": "The music features a female voice singing a melody in an unusual way. She's being accompanied by a usual setup: drums, bass guitar, electric guitar. The drummer relies more on the hi-hat and less on the other parts of the drum kit. The electric guitar strums chords.", "data_idx": 4164, "number": 0, "label": "disco"} +{"file_name": "train_07543.png", "caption": "The music features a female voice singing a melody in an unusual way. She's being accompanied by a usual setup: drums, bass guitar, electric guitar. The drummer relies more on the hi-hat and less on the other parts of the drum kit. The electric guitar strums chords.", "data_idx": 4164, "number": 1, "label": "disco"} +{"file_name": "train_07544.png", "caption": "The music features a female voice singing a melody in an unusual way. She's being accompanied by a usual setup: drums, bass guitar, electric guitar. The drummer relies more on the hi-hat and less on the other parts of the drum kit. The electric guitar strums chords.", "data_idx": 4164, "number": 2, "label": "disco"} +{"file_name": "train_07545.png", "caption": "The music features a female voice singing a melody in an unusual way. She's being accompanied by a usual setup: drums, bass guitar, electric guitar. The drummer relies more on the hi-hat and less on the other parts of the drum kit. The electric guitar strums chords.", "data_idx": 4164, "number": 3, "label": "disco"} +{"file_name": "train_07546.png", "caption": "The low quality recording features a live performance of a rock song that features wide electric guitar chords, distorted bass, reverberant toms, punchy kick hits and energetic crash cymbals. There are a few electric guitar slides. The recording is very noisy and it sounds energetic.", "data_idx": 4166, "number": 0, "label": "metal"} +{"file_name": "train_07547.png", "caption": "The low quality recording features a live performance of a rock song that features wide electric guitar chords, distorted bass, reverberant toms, punchy kick hits and energetic crash cymbals. There are a few electric guitar slides. The recording is very noisy and it sounds energetic.", "data_idx": 4166, "number": 1, "label": "metal"} +{"file_name": "train_07548.png", "caption": "The low quality recording features a live performance of a rock song that features wide electric guitar chords, distorted bass, reverberant toms, punchy kick hits and energetic crash cymbals. There are a few electric guitar slides. The recording is very noisy and it sounds energetic.", "data_idx": 4166, "number": 2, "label": "metal"} +{"file_name": "train_07549.png", "caption": "The low quality recording features a live performance of a rock song that features wide electric guitar chords, distorted bass, reverberant toms, punchy kick hits and energetic crash cymbals. There are a few electric guitar slides. The recording is very noisy and it sounds energetic.", "data_idx": 4166, "number": 3, "label": "metal"} +{"file_name": "train_07550.png", "caption": "The low quality recording features a cover of a ragtime song and it consists of arpeggiated acoustic guitar melody. The recording is noisy, but it sounds happy and fun regardless.", "data_idx": 4167, "number": 0, "label": "classical"} +{"file_name": "train_07551.png", "caption": "The low quality recording features a cover of a ragtime song and it consists of arpeggiated acoustic guitar melody. The recording is noisy, but it sounds happy and fun regardless.", "data_idx": 4167, "number": 1, "label": "classical"} +{"file_name": "train_07552.png", "caption": "The low quality recording features a cover of a ragtime song and it consists of arpeggiated acoustic guitar melody. The recording is noisy, but it sounds happy and fun regardless.", "data_idx": 4167, "number": 2, "label": "classical"} +{"file_name": "train_07553.png", "caption": "The low quality recording features a cover of a ragtime song and it consists of arpeggiated acoustic guitar melody. The recording is noisy, but it sounds happy and fun regardless.", "data_idx": 4167, "number": 3, "label": "classical"} +{"file_name": "train_07554.png", "caption": "The low quality recording features a didgeridoo melody played on top of shimmering shakers, plucked strings melody and low percussive hits. It sounds groovy, passionate and on an average ear, weird.", "data_idx": 4168, "number": 0, "label": "metal"} +{"file_name": "train_07555.png", "caption": "The low quality recording features a didgeridoo melody played on top of shimmering shakers, plucked strings melody and low percussive hits. It sounds groovy, passionate and on an average ear, weird.", "data_idx": 4168, "number": 1, "label": "metal"} +{"file_name": "train_07556.png", "caption": "The low quality recording features a didgeridoo melody played on top of shimmering shakers, plucked strings melody and low percussive hits. It sounds groovy, passionate and on an average ear, weird.", "data_idx": 4168, "number": 2, "label": "metal"} +{"file_name": "train_07557.png", "caption": "The low quality recording features a didgeridoo melody played on top of shimmering shakers, plucked strings melody and low percussive hits. It sounds groovy, passionate and on an average ear, weird.", "data_idx": 4168, "number": 3, "label": "metal"} +{"file_name": "train_07558.png", "caption": "The low quality recording features a ballad song sung by passionate female vocalists over groovy, mellow piano chords and shimmering shakers and tambourine. It sounds emotional and heartfelt - like something you would sing to your partner, out of love.", "data_idx": 4169, "number": 0, "label": "pop"} +{"file_name": "train_07559.png", "caption": "The low quality recording features a ballad song sung by passionate female vocalists over groovy, mellow piano chords and shimmering shakers and tambourine. It sounds emotional and heartfelt - like something you would sing to your partner, out of love.", "data_idx": 4169, "number": 1, "label": "pop"} +{"file_name": "train_07560.png", "caption": "The low quality recording features a ballad song sung by passionate female vocalists over groovy, mellow piano chords and shimmering shakers and tambourine. It sounds emotional and heartfelt - like something you would sing to your partner, out of love.", "data_idx": 4169, "number": 2, "label": "pop"} +{"file_name": "train_07561.png", "caption": "The low quality recording features a ballad song sung by passionate female vocalists over groovy, mellow piano chords and shimmering shakers and tambourine. It sounds emotional and heartfelt - like something you would sing to your partner, out of love.", "data_idx": 4169, "number": 3, "label": "pop"} +{"file_name": "train_07562.png", "caption": "This song is a Retro Hindi movie song. The tempo is fast with rhythmic guitar, vigorous guitar, keyboard harmony, congas and bongos. The music is minimalistic and simple with speech like singing. The song is playful, cheerful, upbeat, youthful and energetic.", "data_idx": 4170, "number": 0, "label": "hiphop"} +{"file_name": "train_07563.png", "caption": "This song is a Retro Hindi movie song. The tempo is fast with rhythmic guitar, vigorous guitar, keyboard harmony, congas and bongos. The music is minimalistic and simple with speech like singing. The song is playful, cheerful, upbeat, youthful and energetic.", "data_idx": 4170, "number": 1, "label": "hiphop"} +{"file_name": "train_07564.png", "caption": "This song is a Retro Hindi movie song. The tempo is fast with rhythmic guitar, vigorous guitar, keyboard harmony, congas and bongos. The music is minimalistic and simple with speech like singing. The song is playful, cheerful, upbeat, youthful and energetic.", "data_idx": 4170, "number": 2, "label": "hiphop"} +{"file_name": "train_07565.png", "caption": "This song is a Retro Hindi movie song. The tempo is fast with rhythmic guitar, vigorous guitar, keyboard harmony, congas and bongos. The music is minimalistic and simple with speech like singing. The song is playful, cheerful, upbeat, youthful and energetic.", "data_idx": 4170, "number": 3, "label": "hiphop"} +{"file_name": "train_07566.png", "caption": "This pop rock song features a female voice singing the main melody. The song starts off with the sound of folding paper. Then the voice starts singing. This is accompanied by rock drums playing the kick drum. The snare is struck at every alternate count. The reverb effect is added to the percussion. There are no other instruments in this song. This song has a happy mood. This song can be played in an intro scene of a coming-of-age movie.", "data_idx": 4172, "number": 0, "label": "hiphop"} +{"file_name": "train_07567.png", "caption": "This pop rock song features a female voice singing the main melody. The song starts off with the sound of folding paper. Then the voice starts singing. This is accompanied by rock drums playing the kick drum. The snare is struck at every alternate count. The reverb effect is added to the percussion. There are no other instruments in this song. This song has a happy mood. This song can be played in an intro scene of a coming-of-age movie.", "data_idx": 4172, "number": 1, "label": "hiphop"} +{"file_name": "train_07568.png", "caption": "The low quality recording features an electro song played on a small device that reproduces thin, mono sounds, especially since it was recorded with a phone. The song consists of a repetitive synth melody, flat male vocal, \"4 on the floor\" kick pattern, claps and shimmering shakers. There are some papery sound effects too. Overall it is noisy and it sounds fun and happy.", "data_idx": 4175, "number": 0, "label": "reggae"} +{"file_name": "train_07569.png", "caption": "The low quality recording features an electro song played on a small device that reproduces thin, mono sounds, especially since it was recorded with a phone. The song consists of a repetitive synth melody, flat male vocal, \"4 on the floor\" kick pattern, claps and shimmering shakers. There are some papery sound effects too. Overall it is noisy and it sounds fun and happy.", "data_idx": 4175, "number": 1, "label": "reggae"} +{"file_name": "train_07570.png", "caption": "This instrumental song features a piano melody playing at an odd time signature. After two bars, the piano melody shifts by one semi-tone. This is accompanied by the sound of hissing and crying voices. There are ghostly sounds being played in the background. The theme of this song is scary. This song can be used in a horror movie. A sound like that of a fast clock is played in the background.", "data_idx": 4178, "number": 0, "label": "classical"} +{"file_name": "train_07571.png", "caption": "This instrumental song features a piano melody playing at an odd time signature. After two bars, the piano melody shifts by one semi-tone. This is accompanied by the sound of hissing and crying voices. There are ghostly sounds being played in the background. The theme of this song is scary. This song can be used in a horror movie. A sound like that of a fast clock is played in the background.", "data_idx": 4178, "number": 1, "label": "classical"} +{"file_name": "train_07572.png", "caption": "This instrumental song features a piano melody playing at an odd time signature. After two bars, the piano melody shifts by one semi-tone. This is accompanied by the sound of hissing and crying voices. There are ghostly sounds being played in the background. The theme of this song is scary. This song can be used in a horror movie. A sound like that of a fast clock is played in the background.", "data_idx": 4178, "number": 2, "label": "classical"} +{"file_name": "train_07573.png", "caption": "This instrumental song features a piano melody playing at an odd time signature. After two bars, the piano melody shifts by one semi-tone. This is accompanied by the sound of hissing and crying voices. There are ghostly sounds being played in the background. The theme of this song is scary. This song can be used in a horror movie. A sound like that of a fast clock is played in the background.", "data_idx": 4178, "number": 3, "label": "classical"} +{"file_name": "train_07574.png", "caption": "This song contains acoustic drums playing a simple rhythm along with an e-bass. The same rhythmic pattern gets played by an acoustic guitar and e-guitar strumming chords. In the background female voices are happily screaming to the sound of waves. This song may be playing for an advertisement.", "data_idx": 4179, "number": 0, "label": "hiphop"} +{"file_name": "train_07575.png", "caption": "This song contains acoustic drums playing a simple rhythm along with an e-bass. The same rhythmic pattern gets played by an acoustic guitar and e-guitar strumming chords. In the background female voices are happily screaming to the sound of waves. This song may be playing for an advertisement.", "data_idx": 4179, "number": 1, "label": "hiphop"} +{"file_name": "train_07576.png", "caption": "This song contains acoustic drums playing a simple rhythm along with an e-bass. The same rhythmic pattern gets played by an acoustic guitar and e-guitar strumming chords. In the background female voices are happily screaming to the sound of waves. This song may be playing for an advertisement.", "data_idx": 4179, "number": 2, "label": "hiphop"} +{"file_name": "train_07577.png", "caption": "This song contains acoustic drums playing a simple rhythm along with an e-bass. The same rhythmic pattern gets played by an acoustic guitar and e-guitar strumming chords. In the background female voices are happily screaming to the sound of waves. This song may be playing for an advertisement.", "data_idx": 4179, "number": 3, "label": "hiphop"} +{"file_name": "train_07578.png", "caption": "This clip features a guitar being tuned. The first note played is the open note on the D string. Then the third string, G, is plucked three times. There are no other instruments in this clip. This is a low quality recording and sounds of birds can be faintly heard in the background.", "data_idx": 4180, "number": 0, "label": "blues"} +{"file_name": "train_07579.png", "caption": "This clip features a guitar being tuned. The first note played is the open note on the D string. Then the third string, G, is plucked three times. There are no other instruments in this clip. This is a low quality recording and sounds of birds can be faintly heard in the background.", "data_idx": 4180, "number": 1, "label": "blues"} +{"file_name": "train_07580.png", "caption": "This clip features a guitar being tuned. The first note played is the open note on the D string. Then the third string, G, is plucked three times. There are no other instruments in this clip. This is a low quality recording and sounds of birds can be faintly heard in the background.", "data_idx": 4180, "number": 2, "label": "blues"} +{"file_name": "train_07581.png", "caption": "This clip features a guitar being tuned. The first note played is the open note on the D string. Then the third string, G, is plucked three times. There are no other instruments in this clip. This is a low quality recording and sounds of birds can be faintly heard in the background.", "data_idx": 4180, "number": 3, "label": "blues"} +{"file_name": "train_07582.png", "caption": "This song would be suitable as the soundtrack to a coming of age movie. It is an alternative rock/indie rock song which features a crunchy electric guitar progression as its main basis. There's a high pitched, sustained beeping tone in the background which almost sounds like it is part of an organ.", "data_idx": 4182, "number": 0, "label": "hiphop"} +{"file_name": "train_07583.png", "caption": "This song would be suitable as the soundtrack to a coming of age movie. It is an alternative rock/indie rock song which features a crunchy electric guitar progression as its main basis. There's a high pitched, sustained beeping tone in the background which almost sounds like it is part of an organ.", "data_idx": 4182, "number": 1, "label": "hiphop"} +{"file_name": "train_07584.png", "caption": "This is a song from a game. It features the main melody being played by a wind instrument. Stringed instruments play staccato notes in the background. The sound of a person running can be heard. The sound of running water is playing. A door is being opened and a squeaky sound is heard when the door is closed. There is no percussion in this song and no voices. The bass notes are loud and unclear. The quality of this recording is low. This is an instrumental song.", "data_idx": 4183, "number": 0, "label": "hiphop"} +{"file_name": "train_07585.png", "caption": "This is a song from a game. It features the main melody being played by a wind instrument. Stringed instruments play staccato notes in the background. The sound of a person running can be heard. The sound of running water is playing. A door is being opened and a squeaky sound is heard when the door is closed. There is no percussion in this song and no voices. The bass notes are loud and unclear. The quality of this recording is low. This is an instrumental song.", "data_idx": 4183, "number": 1, "label": "hiphop"} +{"file_name": "train_07586.png", "caption": "This is a song from a game. It features the main melody being played by a wind instrument. Stringed instruments play staccato notes in the background. The sound of a person running can be heard. The sound of running water is playing. A door is being opened and a squeaky sound is heard when the door is closed. There is no percussion in this song and no voices. The bass notes are loud and unclear. The quality of this recording is low. This is an instrumental song.", "data_idx": 4183, "number": 2, "label": "hiphop"} +{"file_name": "train_07587.png", "caption": "This is a song from a game. It features the main melody being played by a wind instrument. Stringed instruments play staccato notes in the background. The sound of a person running can be heard. The sound of running water is playing. A door is being opened and a squeaky sound is heard when the door is closed. There is no percussion in this song and no voices. The bass notes are loud and unclear. The quality of this recording is low. This is an instrumental song.", "data_idx": 4183, "number": 3, "label": "hiphop"} +{"file_name": "train_07588.png", "caption": "This is a comedic electronic remix. It is a commercial that was transformed into a hip-hop beat. The male voice narrating in the original video was put through an autotune effect to give the impression that he is rapping the words. There is a keyboard and a synth bass in the melodic background while an electronic drum beat provides the rhythmic background. The atmosphere in this piece is amusing. The tempo of the piece is slightly fast-paced.", "data_idx": 4185, "number": 0, "label": "hiphop"} +{"file_name": "train_07589.png", "caption": "This is a comedic electronic remix. It is a commercial that was transformed into a hip-hop beat. The male voice narrating in the original video was put through an autotune effect to give the impression that he is rapping the words. There is a keyboard and a synth bass in the melodic background while an electronic drum beat provides the rhythmic background. The atmosphere in this piece is amusing. The tempo of the piece is slightly fast-paced.", "data_idx": 4185, "number": 1, "label": "hiphop"} +{"file_name": "train_07590.png", "caption": "This is a comedic electronic remix. It is a commercial that was transformed into a hip-hop beat. The male voice narrating in the original video was put through an autotune effect to give the impression that he is rapping the words. There is a keyboard and a synth bass in the melodic background while an electronic drum beat provides the rhythmic background. The atmosphere in this piece is amusing. The tempo of the piece is slightly fast-paced.", "data_idx": 4185, "number": 2, "label": "hiphop"} +{"file_name": "train_07591.png", "caption": "This is a comedic electronic remix. It is a commercial that was transformed into a hip-hop beat. The male voice narrating in the original video was put through an autotune effect to give the impression that he is rapping the words. There is a keyboard and a synth bass in the melodic background while an electronic drum beat provides the rhythmic background. The atmosphere in this piece is amusing. The tempo of the piece is slightly fast-paced.", "data_idx": 4185, "number": 3, "label": "hiphop"} +{"file_name": "train_07592.png", "caption": "This file contains a guitar tuner playing every single string repeating it for a while before jumping to the next one. This tune may be playing at home tuning your guitar.", "data_idx": 4187, "number": 0, "label": "hiphop"} +{"file_name": "train_07593.png", "caption": "This file contains a guitar tuner playing every single string repeating it for a while before jumping to the next one. This tune may be playing at home tuning your guitar.", "data_idx": 4187, "number": 1, "label": "hiphop"} +{"file_name": "train_07594.png", "caption": "This file contains a guitar tuner playing every single string repeating it for a while before jumping to the next one. This tune may be playing at home tuning your guitar.", "data_idx": 4187, "number": 2, "label": "hiphop"} +{"file_name": "train_07595.png", "caption": "This file contains a guitar tuner playing every single string repeating it for a while before jumping to the next one. This tune may be playing at home tuning your guitar.", "data_idx": 4187, "number": 3, "label": "hiphop"} +{"file_name": "train_07596.png", "caption": "The low quality recording features a breathy reverberant flute melody played over a low sustained piano bass note in the background. It sounds mystical, calming and relaxing.", "data_idx": 4189, "number": 0, "label": "jazz"} +{"file_name": "train_07597.png", "caption": "The low quality recording features a breathy reverberant flute melody played over a low sustained piano bass note in the background. It sounds mystical, calming and relaxing.", "data_idx": 4189, "number": 1, "label": "jazz"} +{"file_name": "train_07598.png", "caption": "The low quality recording features a breathy reverberant flute melody played over a low sustained piano bass note in the background. It sounds mystical, calming and relaxing.", "data_idx": 4189, "number": 2, "label": "jazz"} +{"file_name": "train_07599.png", "caption": "The low quality recording features a breathy reverberant flute melody played over a low sustained piano bass note in the background. It sounds mystical, calming and relaxing.", "data_idx": 4189, "number": 3, "label": "jazz"} +{"file_name": "train_07600.png", "caption": "The low quality recording features a live performance that consists of a Spanish guitar solo melody, groovy double bass and acoustic rhythm guitar chords. The recording is noisy, in mono and it sounds passionate and uptempo - like something you would dance to with your friends in a latin club.", "data_idx": 4190, "number": 0, "label": "blues"} +{"file_name": "train_07601.png", "caption": "The low quality recording features a live performance that consists of a Spanish guitar solo melody, groovy double bass and acoustic rhythm guitar chords. The recording is noisy, in mono and it sounds passionate and uptempo - like something you would dance to with your friends in a latin club.", "data_idx": 4190, "number": 1, "label": "blues"} +{"file_name": "train_07602.png", "caption": "The low quality recording features a live performance that consists of a Spanish guitar solo melody, groovy double bass and acoustic rhythm guitar chords. The recording is noisy, in mono and it sounds passionate and uptempo - like something you would dance to with your friends in a latin club.", "data_idx": 4190, "number": 2, "label": "blues"} +{"file_name": "train_07603.png", "caption": "The low quality recording features a live performance that consists of a Spanish guitar solo melody, groovy double bass and acoustic rhythm guitar chords. The recording is noisy, in mono and it sounds passionate and uptempo - like something you would dance to with your friends in a latin club.", "data_idx": 4190, "number": 3, "label": "blues"} +{"file_name": "train_07604.png", "caption": "The two main elements in this clip are a futuristic sounding synth arpeggio melody being repeated. There's a laser gun sound effect being fired off repeatedly. There's also a low droning synth sound that's sustained throughout the clip. This clip could feature in a spacey video game.", "data_idx": 4192, "number": 0, "label": "metal"} +{"file_name": "train_07605.png", "caption": "The two main elements in this clip are a futuristic sounding synth arpeggio melody being repeated. There's a laser gun sound effect being fired off repeatedly. There's also a low droning synth sound that's sustained throughout the clip. This clip could feature in a spacey video game.", "data_idx": 4192, "number": 1, "label": "metal"} +{"file_name": "train_07606.png", "caption": "The two main elements in this clip are a futuristic sounding synth arpeggio melody being repeated. There's a laser gun sound effect being fired off repeatedly. There's also a low droning synth sound that's sustained throughout the clip. This clip could feature in a spacey video game.", "data_idx": 4192, "number": 2, "label": "metal"} +{"file_name": "train_07607.png", "caption": "The two main elements in this clip are a futuristic sounding synth arpeggio melody being repeated. There's a laser gun sound effect being fired off repeatedly. There's also a low droning synth sound that's sustained throughout the clip. This clip could feature in a spacey video game.", "data_idx": 4192, "number": 3, "label": "metal"} +{"file_name": "train_07608.png", "caption": "These are sound effects taken from a movie trailer. There is a container door closing in the beginning. Then a monster can be heard roaring loudly. Numerous other effects were used to create an ominous feeling. The atmosphere is horrifying. Samples from this track can be lifted to be used in beat-making. These samples could also be used in horror movies or video games.", "data_idx": 4193, "number": 0, "label": "hiphop"} +{"file_name": "train_07609.png", "caption": "These are sound effects taken from a movie trailer. There is a container door closing in the beginning. Then a monster can be heard roaring loudly. Numerous other effects were used to create an ominous feeling. The atmosphere is horrifying. Samples from this track can be lifted to be used in beat-making. These samples could also be used in horror movies or video games.", "data_idx": 4193, "number": 1, "label": "hiphop"} +{"file_name": "train_07610.png", "caption": "These are sound effects taken from a movie trailer. There is a container door closing in the beginning. Then a monster can be heard roaring loudly. Numerous other effects were used to create an ominous feeling. The atmosphere is horrifying. Samples from this track can be lifted to be used in beat-making. These samples could also be used in horror movies or video games.", "data_idx": 4193, "number": 2, "label": "hiphop"} +{"file_name": "train_07611.png", "caption": "These are sound effects taken from a movie trailer. There is a container door closing in the beginning. Then a monster can be heard roaring loudly. Numerous other effects were used to create an ominous feeling. The atmosphere is horrifying. Samples from this track can be lifted to be used in beat-making. These samples could also be used in horror movies or video games.", "data_idx": 4193, "number": 3, "label": "hiphop"} diff --git a/data/train/metadata_0016.jsonl b/data/train/metadata_0016.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..63226b72879e5a2ce44cb3ac4b0d552257c4d819 --- /dev/null +++ b/data/train/metadata_0016.jsonl @@ -0,0 +1,342 @@ +{"file_name": "train_07612.png", "caption": "This is a Finnish pop piece. There is a male vocalist singing melodically in the Finnish language. In the background, a clean guitar and a groovy bass guitar can be heard playing the theme with the accompaniment of a keyboard. An 80s disco type beat is being played by the acoustic drums in the rhythmic background. There is a danceable aura to it. This piece could be used in the soundtrack of teenage dramas taking place in Finland. It could also be used in retro-themed disco party playlists.", "data_idx": 4200, "number": 0, "label": "rock"} +{"file_name": "train_07613.png", "caption": "This is a Finnish pop piece. There is a male vocalist singing melodically in the Finnish language. In the background, a clean guitar and a groovy bass guitar can be heard playing the theme with the accompaniment of a keyboard. An 80s disco type beat is being played by the acoustic drums in the rhythmic background. There is a danceable aura to it. This piece could be used in the soundtrack of teenage dramas taking place in Finland. It could also be used in retro-themed disco party playlists.", "data_idx": 4200, "number": 1, "label": "rock"} +{"file_name": "train_07614.png", "caption": "This is a Finnish pop piece. There is a male vocalist singing melodically in the Finnish language. In the background, a clean guitar and a groovy bass guitar can be heard playing the theme with the accompaniment of a keyboard. An 80s disco type beat is being played by the acoustic drums in the rhythmic background. There is a danceable aura to it. This piece could be used in the soundtrack of teenage dramas taking place in Finland. It could also be used in retro-themed disco party playlists.", "data_idx": 4200, "number": 2, "label": "rock"} +{"file_name": "train_07615.png", "caption": "This is a Finnish pop piece. There is a male vocalist singing melodically in the Finnish language. In the background, a clean guitar and a groovy bass guitar can be heard playing the theme with the accompaniment of a keyboard. An 80s disco type beat is being played by the acoustic drums in the rhythmic background. There is a danceable aura to it. This piece could be used in the soundtrack of teenage dramas taking place in Finland. It could also be used in retro-themed disco party playlists.", "data_idx": 4200, "number": 3, "label": "rock"} +{"file_name": "train_07616.png", "caption": "This song is a male vocal harmony. The tempo is medium with banjo and guitar accompaniment. The song is merry, naughty, suggestive and harmless fun with the sound of stifled laughter in the background and with the expletives drowned with the sound of a beep. This song is Country pop/Country Folk.", "data_idx": 4202, "number": 0, "label": "hiphop"} +{"file_name": "train_07617.png", "caption": "This song is a male vocal harmony. The tempo is medium with banjo and guitar accompaniment. The song is merry, naughty, suggestive and harmless fun with the sound of stifled laughter in the background and with the expletives drowned with the sound of a beep. This song is Country pop/Country Folk.", "data_idx": 4202, "number": 1, "label": "hiphop"} +{"file_name": "train_07618.png", "caption": "This song is a male vocal harmony. The tempo is medium with banjo and guitar accompaniment. The song is merry, naughty, suggestive and harmless fun with the sound of stifled laughter in the background and with the expletives drowned with the sound of a beep. This song is Country pop/Country Folk.", "data_idx": 4202, "number": 2, "label": "hiphop"} +{"file_name": "train_07619.png", "caption": "This song is a male vocal harmony. The tempo is medium with banjo and guitar accompaniment. The song is merry, naughty, suggestive and harmless fun with the sound of stifled laughter in the background and with the expletives drowned with the sound of a beep. This song is Country pop/Country Folk.", "data_idx": 4202, "number": 3, "label": "hiphop"} +{"file_name": "train_07620.png", "caption": "The low quality recording features a reggae song sung by emotional male vocalists, followed by percussive elements, groovy bass, offbeat electric guitar and organ chords. There are some crowd noises in the background. The audio is crackling, making it low quality, but regardless it sounds easygoing.", "data_idx": 4206, "number": 0, "label": "pop"} +{"file_name": "train_07621.png", "caption": "The low quality recording features a reggae song sung by emotional male vocalists, followed by percussive elements, groovy bass, offbeat electric guitar and organ chords. There are some crowd noises in the background. The audio is crackling, making it low quality, but regardless it sounds easygoing.", "data_idx": 4206, "number": 1, "label": "pop"} +{"file_name": "train_07622.png", "caption": "The low quality recording features a reggae song sung by emotional male vocalists, followed by percussive elements, groovy bass, offbeat electric guitar and organ chords. There are some crowd noises in the background. The audio is crackling, making it low quality, but regardless it sounds easygoing.", "data_idx": 4206, "number": 2, "label": "pop"} +{"file_name": "train_07623.png", "caption": "The low quality recording features a reggae song sung by emotional male vocalists, followed by percussive elements, groovy bass, offbeat electric guitar and organ chords. There are some crowd noises in the background. The audio is crackling, making it low quality, but regardless it sounds easygoing.", "data_idx": 4206, "number": 3, "label": "pop"} +{"file_name": "train_07624.png", "caption": "A female vocalist sings this spirited pop song. The tempo is fast with vigorous drumming, animated electric guitar harmony, keyboard accompaniment and groovy bass lines along with backup vocals. The first bit of the song is sung in foreign language. The song is energetic, youthful, passionate, vibrant and vivacious with a dance groove. This song is Teen Pop/Pop Rock.", "data_idx": 4207, "number": 0, "label": "metal"} +{"file_name": "train_07625.png", "caption": "A female vocalist sings this spirited pop song. The tempo is fast with vigorous drumming, animated electric guitar harmony, keyboard accompaniment and groovy bass lines along with backup vocals. The first bit of the song is sung in foreign language. The song is energetic, youthful, passionate, vibrant and vivacious with a dance groove. This song is Teen Pop/Pop Rock.", "data_idx": 4207, "number": 1, "label": "metal"} +{"file_name": "train_07626.png", "caption": "A female vocalist sings this spirited pop song. The tempo is fast with vigorous drumming, animated electric guitar harmony, keyboard accompaniment and groovy bass lines along with backup vocals. The first bit of the song is sung in foreign language. The song is energetic, youthful, passionate, vibrant and vivacious with a dance groove. This song is Teen Pop/Pop Rock.", "data_idx": 4207, "number": 2, "label": "metal"} +{"file_name": "train_07627.png", "caption": "A female vocalist sings this spirited pop song. The tempo is fast with vigorous drumming, animated electric guitar harmony, keyboard accompaniment and groovy bass lines along with backup vocals. The first bit of the song is sung in foreign language. The song is energetic, youthful, passionate, vibrant and vivacious with a dance groove. This song is Teen Pop/Pop Rock.", "data_idx": 4207, "number": 3, "label": "metal"} +{"file_name": "train_07628.png", "caption": "Someone is playing a e-guitar melody and strumming chords using a lot of reverb and delay over a drum backing track. This is an amateur recording. This song may be playing at home practicing guitar.", "data_idx": 4208, "number": 0, "label": "blues"} +{"file_name": "train_07629.png", "caption": "Someone is playing a e-guitar melody and strumming chords using a lot of reverb and delay over a drum backing track. This is an amateur recording. This song may be playing at home practicing guitar.", "data_idx": 4208, "number": 1, "label": "blues"} +{"file_name": "train_07630.png", "caption": "Someone is playing a e-guitar melody and strumming chords using a lot of reverb and delay over a drum backing track. This is an amateur recording. This song may be playing at home practicing guitar.", "data_idx": 4208, "number": 2, "label": "blues"} +{"file_name": "train_07631.png", "caption": "Someone is playing a e-guitar melody and strumming chords using a lot of reverb and delay over a drum backing track. This is an amateur recording. This song may be playing at home practicing guitar.", "data_idx": 4208, "number": 3, "label": "blues"} +{"file_name": "train_07632.png", "caption": "Someone is playing a classical piece on the acoustic piano while someone is playing/singing along with a kazoo. This song may be playing in a live concert.", "data_idx": 4216, "number": 0, "label": "classical"} +{"file_name": "train_07633.png", "caption": "Someone is playing a classical piece on the acoustic piano while someone is playing/singing along with a kazoo. This song may be playing in a live concert.", "data_idx": 4216, "number": 1, "label": "classical"} +{"file_name": "train_07634.png", "caption": "Someone is playing a classical piece on the acoustic piano while someone is playing/singing along with a kazoo. This song may be playing in a live concert.", "data_idx": 4216, "number": 2, "label": "classical"} +{"file_name": "train_07635.png", "caption": "Someone is playing a classical piece on the acoustic piano while someone is playing/singing along with a kazoo. This song may be playing in a live concert.", "data_idx": 4216, "number": 3, "label": "classical"} +{"file_name": "train_07636.png", "caption": "This folk rock song features two male voices singing in harmony. This is accompanied by a guitar playing a fingerpicking pattern. The bass plays the root notes of the chords. There is no percussion in this song. The voices are calming and the song is relaxing to listen to. The voice sings in a story-telling mood. This song can be played in a coming of age movie.", "data_idx": 4218, "number": 0, "label": "rock"} +{"file_name": "train_07637.png", "caption": "This folk rock song features two male voices singing in harmony. This is accompanied by a guitar playing a fingerpicking pattern. The bass plays the root notes of the chords. There is no percussion in this song. The voices are calming and the song is relaxing to listen to. The voice sings in a story-telling mood. This song can be played in a coming of age movie.", "data_idx": 4218, "number": 1, "label": "rock"} +{"file_name": "train_07638.png", "caption": "This folk rock song features two male voices singing in harmony. This is accompanied by a guitar playing a fingerpicking pattern. The bass plays the root notes of the chords. There is no percussion in this song. The voices are calming and the song is relaxing to listen to. The voice sings in a story-telling mood. This song can be played in a coming of age movie.", "data_idx": 4218, "number": 2, "label": "rock"} +{"file_name": "train_07639.png", "caption": "This folk rock song features two male voices singing in harmony. This is accompanied by a guitar playing a fingerpicking pattern. The bass plays the root notes of the chords. There is no percussion in this song. The voices are calming and the song is relaxing to listen to. The voice sings in a story-telling mood. This song can be played in a coming of age movie.", "data_idx": 4218, "number": 3, "label": "rock"} +{"file_name": "train_07640.png", "caption": "The low quality recording features a lullaby sung by passionate male vocalists over an arpeggiated acoustic guitar melody. It sounds mellow, soft, sad and so emotional that you forget about how noisy the recording actually is.", "data_idx": 4219, "number": 0, "label": "rock"} +{"file_name": "train_07641.png", "caption": "The low quality recording features a lullaby sung by passionate male vocalists over an arpeggiated acoustic guitar melody. It sounds mellow, soft, sad and so emotional that you forget about how noisy the recording actually is.", "data_idx": 4219, "number": 1, "label": "rock"} +{"file_name": "train_07642.png", "caption": "The low quality recording features a lullaby sung by passionate male vocalists over an arpeggiated acoustic guitar melody. It sounds mellow, soft, sad and so emotional that you forget about how noisy the recording actually is.", "data_idx": 4219, "number": 2, "label": "rock"} +{"file_name": "train_07643.png", "caption": "The low quality recording features a lullaby sung by passionate male vocalists over an arpeggiated acoustic guitar melody. It sounds mellow, soft, sad and so emotional that you forget about how noisy the recording actually is.", "data_idx": 4219, "number": 3, "label": "rock"} +{"file_name": "train_07644.png", "caption": "This music clip is an instrumental. The tempo is slow with a violin playing sharp ,sudden notes. The scale change is random with no harmony or melody. This music sounds like a violin being tuned.", "data_idx": 4227, "number": 0, "label": "classical"} +{"file_name": "train_07645.png", "caption": "This music clip is an instrumental. The tempo is slow with a violin playing sharp ,sudden notes. The scale change is random with no harmony or melody. This music sounds like a violin being tuned.", "data_idx": 4227, "number": 1, "label": "classical"} +{"file_name": "train_07646.png", "caption": "This music clip is an instrumental. The tempo is slow with a violin playing sharp ,sudden notes. The scale change is random with no harmony or melody. This music sounds like a violin being tuned.", "data_idx": 4227, "number": 2, "label": "classical"} +{"file_name": "train_07647.png", "caption": "This music clip is an instrumental. The tempo is slow with a violin playing sharp ,sudden notes. The scale change is random with no harmony or melody. This music sounds like a violin being tuned.", "data_idx": 4227, "number": 3, "label": "classical"} +{"file_name": "train_07648.png", "caption": "someone is playing a didgeridoo beatboxing at the same time. Changing up rhythms sounding complex and skillfull. This is an amateur recording. This song may be playing in a talent show.", "data_idx": 4229, "number": 0, "label": "jazz"} +{"file_name": "train_07649.png", "caption": "someone is playing a didgeridoo beatboxing at the same time. Changing up rhythms sounding complex and skillfull. This is an amateur recording. This song may be playing in a talent show.", "data_idx": 4229, "number": 1, "label": "jazz"} +{"file_name": "train_07650.png", "caption": "someone is playing a didgeridoo beatboxing at the same time. Changing up rhythms sounding complex and skillfull. This is an amateur recording. This song may be playing in a talent show.", "data_idx": 4229, "number": 2, "label": "jazz"} +{"file_name": "train_07651.png", "caption": "someone is playing a didgeridoo beatboxing at the same time. Changing up rhythms sounding complex and skillfull. This is an amateur recording. This song may be playing in a talent show.", "data_idx": 4229, "number": 3, "label": "jazz"} +{"file_name": "train_07652.png", "caption": "A male ukulele player plays this emotional solo. The song is medium tempo with no other instrumentation than an ukulele playing. The song is emotional and poignant. The song is an instrumental tune.", "data_idx": 4230, "number": 0, "label": "classical"} +{"file_name": "train_07653.png", "caption": "A male ukulele player plays this emotional solo. The song is medium tempo with no other instrumentation than an ukulele playing. The song is emotional and poignant. The song is an instrumental tune.", "data_idx": 4230, "number": 1, "label": "classical"} +{"file_name": "train_07654.png", "caption": "A male ukulele player plays this emotional solo. The song is medium tempo with no other instrumentation than an ukulele playing. The song is emotional and poignant. The song is an instrumental tune.", "data_idx": 4230, "number": 2, "label": "classical"} +{"file_name": "train_07655.png", "caption": "A male ukulele player plays this emotional solo. The song is medium tempo with no other instrumentation than an ukulele playing. The song is emotional and poignant. The song is an instrumental tune.", "data_idx": 4230, "number": 3, "label": "classical"} +{"file_name": "train_07656.png", "caption": "This beat contains a bassline that stands out also serving as melody. A rather complex digital drum is played along with male and female short vocal samples. A little tabla samples spices up the rhythm section along with a synthesizer hit. This instrumental is full of rhythmic elements. This song may be playing at home practicing rapping.", "data_idx": 4231, "number": 0, "label": "reggae"} +{"file_name": "train_07657.png", "caption": "This beat contains a bassline that stands out also serving as melody. A rather complex digital drum is played along with male and female short vocal samples. A little tabla samples spices up the rhythm section along with a synthesizer hit. This instrumental is full of rhythmic elements. This song may be playing at home practicing rapping.", "data_idx": 4231, "number": 1, "label": "reggae"} +{"file_name": "train_07658.png", "caption": "This beat contains a bassline that stands out also serving as melody. A rather complex digital drum is played along with male and female short vocal samples. A little tabla samples spices up the rhythm section along with a synthesizer hit. This instrumental is full of rhythmic elements. This song may be playing at home practicing rapping.", "data_idx": 4231, "number": 2, "label": "reggae"} +{"file_name": "train_07659.png", "caption": "This beat contains a bassline that stands out also serving as melody. A rather complex digital drum is played along with male and female short vocal samples. A little tabla samples spices up the rhythm section along with a synthesizer hit. This instrumental is full of rhythmic elements. This song may be playing at home practicing rapping.", "data_idx": 4231, "number": 3, "label": "reggae"} +{"file_name": "train_07660.png", "caption": "A male singer raises this passionate melody. The song is medium tempo with an acoustic guitar accompaniment, groovy bass line and a subtle drumming rhythm. The song is passionate and relaxing. The song is played live and has poor audio quality.", "data_idx": 4242, "number": 0, "label": "rock"} +{"file_name": "train_07661.png", "caption": "A male singer raises this passionate melody. The song is medium tempo with an acoustic guitar accompaniment, groovy bass line and a subtle drumming rhythm. The song is passionate and relaxing. The song is played live and has poor audio quality.", "data_idx": 4242, "number": 1, "label": "rock"} +{"file_name": "train_07662.png", "caption": "This clip features aboriginal music. This music is produced through a didgeridoo. There is no percussion in this song. There are no voices singing this song. This song can be played in a movie scene where people are navigating the tribal areas of an uninhabited island.", "data_idx": 4246, "number": 0, "label": "jazz"} +{"file_name": "train_07663.png", "caption": "This clip features aboriginal music. This music is produced through a didgeridoo. There is no percussion in this song. There are no voices singing this song. This song can be played in a movie scene where people are navigating the tribal areas of an uninhabited island.", "data_idx": 4246, "number": 1, "label": "jazz"} +{"file_name": "train_07664.png", "caption": "This clip features aboriginal music. This music is produced through a didgeridoo. There is no percussion in this song. There are no voices singing this song. This song can be played in a movie scene where people are navigating the tribal areas of an uninhabited island.", "data_idx": 4246, "number": 2, "label": "jazz"} +{"file_name": "train_07665.png", "caption": "This clip features aboriginal music. This music is produced through a didgeridoo. There is no percussion in this song. There are no voices singing this song. This song can be played in a movie scene where people are navigating the tribal areas of an uninhabited island.", "data_idx": 4246, "number": 3, "label": "jazz"} +{"file_name": "train_07666.png", "caption": "The low quality recording features a big band song that consists of an addictive trumpet melody, simple woodwind melody, groovy trombone and muffled drums that include snare and crash hits. Overall it sounds dull and muffled, but still happy and fun.", "data_idx": 4248, "number": 0, "label": "reggae"} +{"file_name": "train_07667.png", "caption": "The low quality recording features a big band song that consists of an addictive trumpet melody, simple woodwind melody, groovy trombone and muffled drums that include snare and crash hits. Overall it sounds dull and muffled, but still happy and fun.", "data_idx": 4248, "number": 1, "label": "reggae"} +{"file_name": "train_07668.png", "caption": "The low quality recording features a big band song that consists of an addictive trumpet melody, simple woodwind melody, groovy trombone and muffled drums that include snare and crash hits. Overall it sounds dull and muffled, but still happy and fun.", "data_idx": 4248, "number": 2, "label": "reggae"} +{"file_name": "train_07669.png", "caption": "The low quality recording features a big band song that consists of an addictive trumpet melody, simple woodwind melody, groovy trombone and muffled drums that include snare and crash hits. Overall it sounds dull and muffled, but still happy and fun.", "data_idx": 4248, "number": 3, "label": "reggae"} +{"file_name": "train_07670.png", "caption": "The low quality recording features a Christian Music that contains wide harmonizing vocals singing over shimmering hi hats, simple punchy kick and organ keys playing in the background. It sounds messy, as the vocals are way too loud, relative to the other instruments.", "data_idx": 4251, "number": 0, "label": "rock"} +{"file_name": "train_07671.png", "caption": "The low quality recording features a Christian Music that contains wide harmonizing vocals singing over shimmering hi hats, simple punchy kick and organ keys playing in the background. It sounds messy, as the vocals are way too loud, relative to the other instruments.", "data_idx": 4251, "number": 1, "label": "rock"} +{"file_name": "train_07672.png", "caption": "The low quality recording features a Christian Music that contains wide harmonizing vocals singing over shimmering hi hats, simple punchy kick and organ keys playing in the background. It sounds messy, as the vocals are way too loud, relative to the other instruments.", "data_idx": 4251, "number": 2, "label": "rock"} +{"file_name": "train_07673.png", "caption": "The low quality recording features a Christian Music that contains wide harmonizing vocals singing over shimmering hi hats, simple punchy kick and organ keys playing in the background. It sounds messy, as the vocals are way too loud, relative to the other instruments.", "data_idx": 4251, "number": 3, "label": "rock"} +{"file_name": "train_07674.png", "caption": "The song is an instrumental. The tempo is slow with a classical guitar playing harmony style with a subtle bass line and no other instrumentation. The song is emotional and relaxing. The audio quality is worth average.", "data_idx": 4254, "number": 0, "label": "jazz"} +{"file_name": "train_07675.png", "caption": "The song is an instrumental. The tempo is slow with a classical guitar playing harmony style with a subtle bass line and no other instrumentation. The song is emotional and relaxing. The audio quality is worth average.", "data_idx": 4254, "number": 1, "label": "jazz"} +{"file_name": "train_07676.png", "caption": "The song is an instrumental. The tempo is slow with a classical guitar playing harmony style with a subtle bass line and no other instrumentation. The song is emotional and relaxing. The audio quality is worth average.", "data_idx": 4254, "number": 2, "label": "jazz"} +{"file_name": "train_07677.png", "caption": "The song is an instrumental. The tempo is slow with a classical guitar playing harmony style with a subtle bass line and no other instrumentation. The song is emotional and relaxing. The audio quality is worth average.", "data_idx": 4254, "number": 3, "label": "jazz"} +{"file_name": "train_07678.png", "caption": "This song is a percussion instrumental. The tempo is fast with intense and rapid drum rhythm along with sound rhythmic clashing of cymbals with sound of clapping in the background and a man grunting. The music is animated,vigorous ,energetic, and enthusiastic.", "data_idx": 4255, "number": 0, "label": "classical"} +{"file_name": "train_07679.png", "caption": "This song is a percussion instrumental. The tempo is fast with intense and rapid drum rhythm along with sound rhythmic clashing of cymbals with sound of clapping in the background and a man grunting. The music is animated,vigorous ,energetic, and enthusiastic.", "data_idx": 4255, "number": 1, "label": "classical"} +{"file_name": "train_07680.png", "caption": "This song is a percussion instrumental. The tempo is fast with intense and rapid drum rhythm along with sound rhythmic clashing of cymbals with sound of clapping in the background and a man grunting. The music is animated,vigorous ,energetic, and enthusiastic.", "data_idx": 4255, "number": 2, "label": "classical"} +{"file_name": "train_07681.png", "caption": "This song is a percussion instrumental. The tempo is fast with intense and rapid drum rhythm along with sound rhythmic clashing of cymbals with sound of clapping in the background and a man grunting. The music is animated,vigorous ,energetic, and enthusiastic.", "data_idx": 4255, "number": 3, "label": "classical"} +{"file_name": "train_07682.png", "caption": "A female voice is singing in a high key along to a piano supported with the suited chords. This is an amateur recording. This song may be playing in a musical.", "data_idx": 4257, "number": 0, "label": "classical"} +{"file_name": "train_07683.png", "caption": "A female voice is singing in a high key along to a piano supported with the suited chords. This is an amateur recording. This song may be playing in a musical.", "data_idx": 4257, "number": 1, "label": "classical"} +{"file_name": "train_07684.png", "caption": "A female voice is singing in a high key along to a piano supported with the suited chords. This is an amateur recording. This song may be playing in a musical.", "data_idx": 4257, "number": 2, "label": "classical"} +{"file_name": "train_07685.png", "caption": "A female voice is singing in a high key along to a piano supported with the suited chords. This is an amateur recording. This song may be playing in a musical.", "data_idx": 4257, "number": 3, "label": "classical"} +{"file_name": "train_07686.png", "caption": "This song contains mallet instruments playing a fast melody in the mid and high register along with low notes as bassline. The marimba is full of reverb. Then a bass drum comes in playing on every beat. This song may be playing in an advertisement.", "data_idx": 4261, "number": 0, "label": "classical"} +{"file_name": "train_07687.png", "caption": "This song contains mallet instruments playing a fast melody in the mid and high register along with low notes as bassline. The marimba is full of reverb. Then a bass drum comes in playing on every beat. This song may be playing in an advertisement.", "data_idx": 4261, "number": 1, "label": "classical"} +{"file_name": "train_07688.png", "caption": "This song contains mallet instruments playing a fast melody in the mid and high register along with low notes as bassline. The marimba is full of reverb. Then a bass drum comes in playing on every beat. This song may be playing in an advertisement.", "data_idx": 4261, "number": 2, "label": "classical"} +{"file_name": "train_07689.png", "caption": "This song contains mallet instruments playing a fast melody in the mid and high register along with low notes as bassline. The marimba is full of reverb. Then a bass drum comes in playing on every beat. This song may be playing in an advertisement.", "data_idx": 4261, "number": 3, "label": "classical"} +{"file_name": "train_07690.png", "caption": "An e-bass is playing a funky bassline with a drumbeat that sounds like the high frequencies have been filtered out. You can hear a lot of background noises that do not belong to the recording. Such as a dog barking, glass shattering, a male voice shouting and a female voice singing. All these sounds are using a reverb. This song may be playing as part of a movie scene.", "data_idx": 4263, "number": 0, "label": "reggae"} +{"file_name": "train_07691.png", "caption": "An e-bass is playing a funky bassline with a drumbeat that sounds like the high frequencies have been filtered out. You can hear a lot of background noises that do not belong to the recording. Such as a dog barking, glass shattering, a male voice shouting and a female voice singing. All these sounds are using a reverb. This song may be playing as part of a movie scene.", "data_idx": 4263, "number": 1, "label": "reggae"} +{"file_name": "train_07692.png", "caption": "An e-bass is playing a funky bassline with a drumbeat that sounds like the high frequencies have been filtered out. You can hear a lot of background noises that do not belong to the recording. Such as a dog barking, glass shattering, a male voice shouting and a female voice singing. All these sounds are using a reverb. This song may be playing as part of a movie scene.", "data_idx": 4263, "number": 2, "label": "reggae"} +{"file_name": "train_07693.png", "caption": "An e-bass is playing a funky bassline with a drumbeat that sounds like the high frequencies have been filtered out. You can hear a lot of background noises that do not belong to the recording. Such as a dog barking, glass shattering, a male voice shouting and a female voice singing. All these sounds are using a reverb. This song may be playing as part of a movie scene.", "data_idx": 4263, "number": 3, "label": "reggae"} +{"file_name": "train_07694.png", "caption": "The Afrobeats song features a fruity male vocal rapping over stuttering and echoing siren sounds effects, echoing laser effects, punchy kick and snare hits, shimmering hi hats, smooth bass and short strings hits. It sounds groovy, energetic and chaotic due to the many siren sound effects.", "data_idx": 4267, "number": 0, "label": "hiphop"} +{"file_name": "train_07695.png", "caption": "The Afrobeats song features a fruity male vocal rapping over stuttering and echoing siren sounds effects, echoing laser effects, punchy kick and snare hits, shimmering hi hats, smooth bass and short strings hits. It sounds groovy, energetic and chaotic due to the many siren sound effects.", "data_idx": 4267, "number": 1, "label": "hiphop"} +{"file_name": "train_07696.png", "caption": "The Afrobeats song features a fruity male vocal rapping over stuttering and echoing siren sounds effects, echoing laser effects, punchy kick and snare hits, shimmering hi hats, smooth bass and short strings hits. It sounds groovy, energetic and chaotic due to the many siren sound effects.", "data_idx": 4267, "number": 2, "label": "hiphop"} +{"file_name": "train_07697.png", "caption": "The Afrobeats song features a fruity male vocal rapping over stuttering and echoing siren sounds effects, echoing laser effects, punchy kick and snare hits, shimmering hi hats, smooth bass and short strings hits. It sounds groovy, energetic and chaotic due to the many siren sound effects.", "data_idx": 4267, "number": 3, "label": "hiphop"} +{"file_name": "train_07698.png", "caption": "The low quality recording features an intense, suspenseful movie scene that consists of panicked female breathing, whining and mellow wide synth chords playing in the background.", "data_idx": 4270, "number": 0, "label": "hiphop"} +{"file_name": "train_07699.png", "caption": "The low quality recording features an intense, suspenseful movie scene that consists of panicked female breathing, whining and mellow wide synth chords playing in the background.", "data_idx": 4270, "number": 1, "label": "hiphop"} +{"file_name": "train_07700.png", "caption": "The low quality recording features an intense, suspenseful movie scene that consists of panicked female breathing, whining and mellow wide synth chords playing in the background.", "data_idx": 4270, "number": 2, "label": "hiphop"} +{"file_name": "train_07701.png", "caption": "The low quality recording features an intense, suspenseful movie scene that consists of panicked female breathing, whining and mellow wide synth chords playing in the background.", "data_idx": 4270, "number": 3, "label": "hiphop"} +{"file_name": "train_07702.png", "caption": "The instrumental contains digital drums repeating a simple groove that is mostly kick and snare that sounds like a strong clap. In the background synthesizer sounds playing melodies all over the place being panned to the left and right side of the speakers. Male voices singing in a higher key and overlapping each other. The bass sounds digital and soft. This song may be playing while practicing dancing.", "data_idx": 4272, "number": 0, "label": "disco"} +{"file_name": "train_07703.png", "caption": "The instrumental contains digital drums repeating a simple groove that is mostly kick and snare that sounds like a strong clap. In the background synthesizer sounds playing melodies all over the place being panned to the left and right side of the speakers. Male voices singing in a higher key and overlapping each other. The bass sounds digital and soft. This song may be playing while practicing dancing.", "data_idx": 4272, "number": 1, "label": "disco"} +{"file_name": "train_07704.png", "caption": "The instrumental contains digital drums repeating a simple groove that is mostly kick and snare that sounds like a strong clap. In the background synthesizer sounds playing melodies all over the place being panned to the left and right side of the speakers. Male voices singing in a higher key and overlapping each other. The bass sounds digital and soft. This song may be playing while practicing dancing.", "data_idx": 4272, "number": 2, "label": "disco"} +{"file_name": "train_07705.png", "caption": "The instrumental contains digital drums repeating a simple groove that is mostly kick and snare that sounds like a strong clap. In the background synthesizer sounds playing melodies all over the place being panned to the left and right side of the speakers. Male voices singing in a higher key and overlapping each other. The bass sounds digital and soft. This song may be playing while practicing dancing.", "data_idx": 4272, "number": 3, "label": "disco"} +{"file_name": "train_07706.png", "caption": "This is a hmong pop music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the piano, the acoustic guitar and the bass guitar. The rhythm is being played on the acoustic drums. There is a sentimental, romantic feel to it. The piece could be used in a romantic movie/TV show with a Hmong-language speaking setting.", "data_idx": 4273, "number": 0, "label": "disco"} +{"file_name": "train_07707.png", "caption": "This is a hmong pop music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the piano, the acoustic guitar and the bass guitar. The rhythm is being played on the acoustic drums. There is a sentimental, romantic feel to it. The piece could be used in a romantic movie/TV show with a Hmong-language speaking setting.", "data_idx": 4273, "number": 1, "label": "disco"} +{"file_name": "train_07708.png", "caption": "This is a hmong pop music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the piano, the acoustic guitar and the bass guitar. The rhythm is being played on the acoustic drums. There is a sentimental, romantic feel to it. The piece could be used in a romantic movie/TV show with a Hmong-language speaking setting.", "data_idx": 4273, "number": 2, "label": "disco"} +{"file_name": "train_07709.png", "caption": "This is a hmong pop music piece. There is a male vocalist singing melodically in the lead. The melody is being played by the piano, the acoustic guitar and the bass guitar. The rhythm is being played on the acoustic drums. There is a sentimental, romantic feel to it. The piece could be used in a romantic movie/TV show with a Hmong-language speaking setting.", "data_idx": 4273, "number": 3, "label": "disco"} +{"file_name": "train_07710.png", "caption": "This song contains bellsound playing a melody with a lot of reverb and lasting overtones. A strongly processed male voice is singing long low notes with a monotone melody. Panning from the right to the left side of the speakers. This song may be playing while meditating.", "data_idx": 4274, "number": 0, "label": "classical"} +{"file_name": "train_07711.png", "caption": "This song contains bellsound playing a melody with a lot of reverb and lasting overtones. A strongly processed male voice is singing long low notes with a monotone melody. Panning from the right to the left side of the speakers. This song may be playing while meditating.", "data_idx": 4274, "number": 1, "label": "classical"} +{"file_name": "train_07712.png", "caption": "This song contains bellsound playing a melody with a lot of reverb and lasting overtones. A strongly processed male voice is singing long low notes with a monotone melody. Panning from the right to the left side of the speakers. This song may be playing while meditating.", "data_idx": 4274, "number": 2, "label": "classical"} +{"file_name": "train_07713.png", "caption": "This song contains bellsound playing a melody with a lot of reverb and lasting overtones. A strongly processed male voice is singing long low notes with a monotone melody. Panning from the right to the left side of the speakers. This song may be playing while meditating.", "data_idx": 4274, "number": 3, "label": "classical"} +{"file_name": "train_07714.png", "caption": "The low quality recording features a passionate female vocalist singing over a hollow piano melody. It sounds thin and noisy, and you can really hear the unprofessional recording technique, especially in vocals.", "data_idx": 4278, "number": 0, "label": "rock"} +{"file_name": "train_07715.png", "caption": "The low quality recording features a passionate female vocalist singing over a hollow piano melody. It sounds thin and noisy, and you can really hear the unprofessional recording technique, especially in vocals.", "data_idx": 4278, "number": 1, "label": "rock"} +{"file_name": "train_07716.png", "caption": "The low quality recording features a passionate female vocalist singing over a hollow piano melody. It sounds thin and noisy, and you can really hear the unprofessional recording technique, especially in vocals.", "data_idx": 4278, "number": 2, "label": "rock"} +{"file_name": "train_07717.png", "caption": "The low quality recording features a passionate female vocalist singing over a hollow piano melody. It sounds thin and noisy, and you can really hear the unprofessional recording technique, especially in vocals.", "data_idx": 4278, "number": 3, "label": "rock"} +{"file_name": "train_07718.png", "caption": "This is a Bali folk music piece. The instruments that are used are mostly percussive in nature traditional to the music of Bali such as gamelan, kendang and gong. There is a hypnotic atmosphere in this piece. It could be used in dream/hypnosis sequences in the soundtracks of movies and TV shows.", "data_idx": 4282, "number": 0, "label": "classical"} +{"file_name": "train_07719.png", "caption": "This is a Bali folk music piece. The instruments that are used are mostly percussive in nature traditional to the music of Bali such as gamelan, kendang and gong. There is a hypnotic atmosphere in this piece. It could be used in dream/hypnosis sequences in the soundtracks of movies and TV shows.", "data_idx": 4282, "number": 1, "label": "classical"} +{"file_name": "train_07720.png", "caption": "This is a Bali folk music piece. The instruments that are used are mostly percussive in nature traditional to the music of Bali such as gamelan, kendang and gong. There is a hypnotic atmosphere in this piece. It could be used in dream/hypnosis sequences in the soundtracks of movies and TV shows.", "data_idx": 4282, "number": 2, "label": "classical"} +{"file_name": "train_07721.png", "caption": "This is a Bali folk music piece. The instruments that are used are mostly percussive in nature traditional to the music of Bali such as gamelan, kendang and gong. There is a hypnotic atmosphere in this piece. It could be used in dream/hypnosis sequences in the soundtracks of movies and TV shows.", "data_idx": 4282, "number": 3, "label": "classical"} +{"file_name": "train_07722.png", "caption": "The low quality recording features a mixed background vocals singing over acoustic rhythm guitar. There is also a child talking over the song. The recording is noisy and muffled, but it sounds fun and happy.", "data_idx": 4283, "number": 0, "label": "blues"} +{"file_name": "train_07723.png", "caption": "The low quality recording features a mixed background vocals singing over acoustic rhythm guitar. There is also a child talking over the song. The recording is noisy and muffled, but it sounds fun and happy.", "data_idx": 4283, "number": 1, "label": "blues"} +{"file_name": "train_07724.png", "caption": "The music is a country song instrumental. The tempo is slow with an auto harp harmony and lively acoustic guitar accompaniment. The music is soft, mellow, mellifluous,dulcet, sentimental, simple and nostalgic.", "data_idx": 4284, "number": 0, "label": "jazz"} +{"file_name": "train_07725.png", "caption": "The music is a country song instrumental. The tempo is slow with an auto harp harmony and lively acoustic guitar accompaniment. The music is soft, mellow, mellifluous,dulcet, sentimental, simple and nostalgic.", "data_idx": 4284, "number": 1, "label": "jazz"} +{"file_name": "train_07726.png", "caption": "The music is a country song instrumental. The tempo is slow with an auto harp harmony and lively acoustic guitar accompaniment. The music is soft, mellow, mellifluous,dulcet, sentimental, simple and nostalgic.", "data_idx": 4284, "number": 2, "label": "jazz"} +{"file_name": "train_07727.png", "caption": "The music is a country song instrumental. The tempo is slow with an auto harp harmony and lively acoustic guitar accompaniment. The music is soft, mellow, mellifluous,dulcet, sentimental, simple and nostalgic.", "data_idx": 4284, "number": 3, "label": "jazz"} +{"file_name": "train_07728.png", "caption": "A female singer sings this traditional melody. The song is medium tempo with a clicking percussion rhythm, guitar strumming accompaniment and tap dancing tones. The song is energetic and passionate. The song has very poor audio quality.", "data_idx": 4285, "number": 0, "label": "pop"} +{"file_name": "train_07729.png", "caption": "A female singer sings this traditional melody. The song is medium tempo with a clicking percussion rhythm, guitar strumming accompaniment and tap dancing tones. The song is energetic and passionate. The song has very poor audio quality.", "data_idx": 4285, "number": 1, "label": "pop"} +{"file_name": "train_07730.png", "caption": "An e-piano is playing a melody and chords with a lot of tremolo while thin, airy synth pads are playing long evolving sounds. A male voice is singing in a higher register with effects on his voice. It sounds like a voice sample. This song may be playing in a club.", "data_idx": 4287, "number": 0, "label": "blues"} +{"file_name": "train_07731.png", "caption": "An e-piano is playing a melody and chords with a lot of tremolo while thin, airy synth pads are playing long evolving sounds. A male voice is singing in a higher register with effects on his voice. It sounds like a voice sample. This song may be playing in a club.", "data_idx": 4287, "number": 1, "label": "blues"} +{"file_name": "train_07732.png", "caption": "An e-piano is playing a melody and chords with a lot of tremolo while thin, airy synth pads are playing long evolving sounds. A male voice is singing in a higher register with effects on his voice. It sounds like a voice sample. This song may be playing in a club.", "data_idx": 4287, "number": 2, "label": "blues"} +{"file_name": "train_07733.png", "caption": "An e-piano is playing a melody and chords with a lot of tremolo while thin, airy synth pads are playing long evolving sounds. A male voice is singing in a higher register with effects on his voice. It sounds like a voice sample. This song may be playing in a club.", "data_idx": 4287, "number": 3, "label": "blues"} +{"file_name": "train_07734.png", "caption": "A hip hop dance song with female vocals plays as a dance track for three dancers. The song is fast tempo with faint audio signal with a lot of ambient room noises like footsteps sounds,body movements sounds and ambient room noise. The audio quality is very poor.", "data_idx": 4288, "number": 0, "label": "metal"} +{"file_name": "train_07735.png", "caption": "A hip hop dance song with female vocals plays as a dance track for three dancers. The song is fast tempo with faint audio signal with a lot of ambient room noises like footsteps sounds,body movements sounds and ambient room noise. The audio quality is very poor.", "data_idx": 4288, "number": 1, "label": "metal"} +{"file_name": "train_07736.png", "caption": "A hip hop dance song with female vocals plays as a dance track for three dancers. The song is fast tempo with faint audio signal with a lot of ambient room noises like footsteps sounds,body movements sounds and ambient room noise. The audio quality is very poor.", "data_idx": 4288, "number": 2, "label": "metal"} +{"file_name": "train_07737.png", "caption": "A hip hop dance song with female vocals plays as a dance track for three dancers. The song is fast tempo with faint audio signal with a lot of ambient room noises like footsteps sounds,body movements sounds and ambient room noise. The audio quality is very poor.", "data_idx": 4288, "number": 3, "label": "metal"} +{"file_name": "train_07738.png", "caption": "The Low Quality recording features a person trying to tune an acoustic guitar and background nature ambient sounds that include birds chirping, distant and unclear chatting and wind blowing sounds. You could tell that it is low quality by the amount of noise in the recording.", "data_idx": 4290, "number": 0, "label": "classical"} +{"file_name": "train_07739.png", "caption": "The Low Quality recording features a person trying to tune an acoustic guitar and background nature ambient sounds that include birds chirping, distant and unclear chatting and wind blowing sounds. You could tell that it is low quality by the amount of noise in the recording.", "data_idx": 4290, "number": 1, "label": "classical"} +{"file_name": "train_07740.png", "caption": "The Low Quality recording features a person trying to tune an acoustic guitar and background nature ambient sounds that include birds chirping, distant and unclear chatting and wind blowing sounds. You could tell that it is low quality by the amount of noise in the recording.", "data_idx": 4290, "number": 2, "label": "classical"} +{"file_name": "train_07741.png", "caption": "The Low Quality recording features a person trying to tune an acoustic guitar and background nature ambient sounds that include birds chirping, distant and unclear chatting and wind blowing sounds. You could tell that it is low quality by the amount of noise in the recording.", "data_idx": 4290, "number": 3, "label": "classical"} +{"file_name": "train_07742.png", "caption": "Single sounds, noises and melodies being played with a lot of reverb and delay. Long waving notes, deep drum hits; a processed choir melody and a piano playing a chord with effects on it. The whole composition sounds very atmospherically dark and scary. This song may be playing in a videogame.", "data_idx": 4291, "number": 0, "label": "classical"} +{"file_name": "train_07743.png", "caption": "Single sounds, noises and melodies being played with a lot of reverb and delay. Long waving notes, deep drum hits; a processed choir melody and a piano playing a chord with effects on it. The whole composition sounds very atmospherically dark and scary. This song may be playing in a videogame.", "data_idx": 4291, "number": 1, "label": "classical"} +{"file_name": "train_07744.png", "caption": "Single sounds, noises and melodies being played with a lot of reverb and delay. Long waving notes, deep drum hits; a processed choir melody and a piano playing a chord with effects on it. The whole composition sounds very atmospherically dark and scary. This song may be playing in a videogame.", "data_idx": 4291, "number": 2, "label": "classical"} +{"file_name": "train_07745.png", "caption": "Single sounds, noises and melodies being played with a lot of reverb and delay. Long waving notes, deep drum hits; a processed choir melody and a piano playing a chord with effects on it. The whole composition sounds very atmospherically dark and scary. This song may be playing in a videogame.", "data_idx": 4291, "number": 3, "label": "classical"} +{"file_name": "train_07746.png", "caption": "The excerpt features an electric guitar playing a descending melody note by note with a slight distortion effect on. This doesn't sound like actual music but more like an exercise.", "data_idx": 4293, "number": 0, "label": "jazz"} +{"file_name": "train_07747.png", "caption": "The excerpt features an electric guitar playing a descending melody note by note with a slight distortion effect on. This doesn't sound like actual music but more like an exercise.", "data_idx": 4293, "number": 1, "label": "jazz"} +{"file_name": "train_07748.png", "caption": "The excerpt features an electric guitar playing a descending melody note by note with a slight distortion effect on. This doesn't sound like actual music but more like an exercise.", "data_idx": 4293, "number": 2, "label": "jazz"} +{"file_name": "train_07749.png", "caption": "The excerpt features an electric guitar playing a descending melody note by note with a slight distortion effect on. This doesn't sound like actual music but more like an exercise.", "data_idx": 4293, "number": 3, "label": "jazz"} +{"file_name": "train_07750.png", "caption": "A male singer sings this soaring melody. The song is medium tempo with a guitar accompaniment, strong bass line and a violin accompaniment. The song quality is poor and badly deteriorated. The song is a romantic love song from a Tamil movie.", "data_idx": 4294, "number": 0, "label": "classical"} +{"file_name": "train_07751.png", "caption": "A male singer sings this soaring melody. The song is medium tempo with a guitar accompaniment, strong bass line and a violin accompaniment. The song quality is poor and badly deteriorated. The song is a romantic love song from a Tamil movie.", "data_idx": 4294, "number": 1, "label": "classical"} +{"file_name": "train_07752.png", "caption": "A male singer sings this soaring melody. The song is medium tempo with a guitar accompaniment, strong bass line and a violin accompaniment. The song quality is poor and badly deteriorated. The song is a romantic love song from a Tamil movie.", "data_idx": 4294, "number": 2, "label": "classical"} +{"file_name": "train_07753.png", "caption": "A male singer sings this soaring melody. The song is medium tempo with a guitar accompaniment, strong bass line and a violin accompaniment. The song quality is poor and badly deteriorated. The song is a romantic love song from a Tamil movie.", "data_idx": 4294, "number": 3, "label": "classical"} +{"file_name": "train_07754.png", "caption": "The low quality recording features a live performance of shimmering shakers, acoustic rhythm guitar and arpeggiated harp melody. It sounds tropical and exotic even though the recording is very noisy, as it was probably recorded with a phone.", "data_idx": 4297, "number": 0, "label": "disco"} +{"file_name": "train_07755.png", "caption": "The low quality recording features a live performance of shimmering shakers, acoustic rhythm guitar and arpeggiated harp melody. It sounds tropical and exotic even though the recording is very noisy, as it was probably recorded with a phone.", "data_idx": 4297, "number": 1, "label": "disco"} +{"file_name": "train_07756.png", "caption": "The low quality recording features a live performance of shimmering shakers, acoustic rhythm guitar and arpeggiated harp melody. It sounds tropical and exotic even though the recording is very noisy, as it was probably recorded with a phone.", "data_idx": 4297, "number": 2, "label": "disco"} +{"file_name": "train_07757.png", "caption": "The low quality recording features a live performance of shimmering shakers, acoustic rhythm guitar and arpeggiated harp melody. It sounds tropical and exotic even though the recording is very noisy, as it was probably recorded with a phone.", "data_idx": 4297, "number": 3, "label": "disco"} +{"file_name": "train_07758.png", "caption": "The low quality recording features a happy sounding background song playing in the background and some plastic impact, breaking and plastic scraping sound effects. It seems like it is a tutorial for a kids game.", "data_idx": 4300, "number": 0, "label": "disco"} +{"file_name": "train_07759.png", "caption": "The low quality recording features a happy sounding background song playing in the background and some plastic impact, breaking and plastic scraping sound effects. It seems like it is a tutorial for a kids game.", "data_idx": 4300, "number": 1, "label": "disco"} +{"file_name": "train_07760.png", "caption": "The low quality recording features a happy sounding background song playing in the background and some plastic impact, breaking and plastic scraping sound effects. It seems like it is a tutorial for a kids game.", "data_idx": 4300, "number": 2, "label": "disco"} +{"file_name": "train_07761.png", "caption": "The low quality recording features a happy sounding background song playing in the background and some plastic impact, breaking and plastic scraping sound effects. It seems like it is a tutorial for a kids game.", "data_idx": 4300, "number": 3, "label": "disco"} +{"file_name": "train_07762.png", "caption": "This is a low audio clip. This song is a contemporary gospel song. This song features a male voice. This is accompanied by a tambourine and hand claps. The bass plays the root notes of the chords. The piano plays chords and fills. The sounds of the crowd are heard in this clip. The tempo of this song is moderate.", "data_idx": 4302, "number": 0, "label": "rock"} +{"file_name": "train_07763.png", "caption": "This is a low audio clip. This song is a contemporary gospel song. This song features a male voice. This is accompanied by a tambourine and hand claps. The bass plays the root notes of the chords. The piano plays chords and fills. The sounds of the crowd are heard in this clip. The tempo of this song is moderate.", "data_idx": 4302, "number": 1, "label": "rock"} +{"file_name": "train_07764.png", "caption": "This is a low audio clip. This song is a contemporary gospel song. This song features a male voice. This is accompanied by a tambourine and hand claps. The bass plays the root notes of the chords. The piano plays chords and fills. The sounds of the crowd are heard in this clip. The tempo of this song is moderate.", "data_idx": 4302, "number": 2, "label": "rock"} +{"file_name": "train_07765.png", "caption": "This is a low audio clip. This song is a contemporary gospel song. This song features a male voice. This is accompanied by a tambourine and hand claps. The bass plays the root notes of the chords. The piano plays chords and fills. The sounds of the crowd are heard in this clip. The tempo of this song is moderate.", "data_idx": 4302, "number": 3, "label": "rock"} +{"file_name": "train_07766.png", "caption": "This music is an enthralling Sitar instrumental. The tempo is fast with an animated and melodic Sitar lead Harmony and tanpura accompaniment. The music is based on Hindustani Classical notes. It is captivating, intense, mellifluous, engaging,and fervent.", "data_idx": 4303, "number": 0, "label": "classical"} +{"file_name": "train_07767.png", "caption": "This music is an enthralling Sitar instrumental. The tempo is fast with an animated and melodic Sitar lead Harmony and tanpura accompaniment. The music is based on Hindustani Classical notes. It is captivating, intense, mellifluous, engaging,and fervent.", "data_idx": 4303, "number": 1, "label": "classical"} +{"file_name": "train_07768.png", "caption": "This music is an enthralling Sitar instrumental. The tempo is fast with an animated and melodic Sitar lead Harmony and tanpura accompaniment. The music is based on Hindustani Classical notes. It is captivating, intense, mellifluous, engaging,and fervent.", "data_idx": 4303, "number": 2, "label": "classical"} +{"file_name": "train_07769.png", "caption": "This music is an enthralling Sitar instrumental. The tempo is fast with an animated and melodic Sitar lead Harmony and tanpura accompaniment. The music is based on Hindustani Classical notes. It is captivating, intense, mellifluous, engaging,and fervent.", "data_idx": 4303, "number": 3, "label": "classical"} +{"file_name": "train_07770.png", "caption": "someone is playing a distorted e-guitar. Playing a melody using finger tapping. This is an amateur recording. This song may be playing at home practicing finger tapping guitar.", "data_idx": 4304, "number": 0, "label": "classical"} +{"file_name": "train_07771.png", "caption": "someone is playing a distorted e-guitar. Playing a melody using finger tapping. This is an amateur recording. This song may be playing at home practicing finger tapping guitar.", "data_idx": 4304, "number": 1, "label": "classical"} +{"file_name": "train_07772.png", "caption": "The song is an instrumental. The tempo is slow with an electric guitar playing lead and a strong bass line in a rhythmic manner. The song is strong and mysterious like a secret agent movie theme. The song is recorded at home and has an average sound quality. The song is a music demo.", "data_idx": 4308, "number": 0, "label": "hiphop"} +{"file_name": "train_07773.png", "caption": "The song is an instrumental. The tempo is slow with an electric guitar playing lead and a strong bass line in a rhythmic manner. The song is strong and mysterious like a secret agent movie theme. The song is recorded at home and has an average sound quality. The song is a music demo.", "data_idx": 4308, "number": 1, "label": "hiphop"} +{"file_name": "train_07774.png", "caption": "The song is an instrumental. The tempo is slow with an electric guitar playing lead and a strong bass line in a rhythmic manner. The song is strong and mysterious like a secret agent movie theme. The song is recorded at home and has an average sound quality. The song is a music demo.", "data_idx": 4308, "number": 2, "label": "hiphop"} +{"file_name": "train_07775.png", "caption": "The song is an instrumental. The tempo is slow with an electric guitar playing lead and a strong bass line in a rhythmic manner. The song is strong and mysterious like a secret agent movie theme. The song is recorded at home and has an average sound quality. The song is a music demo.", "data_idx": 4308, "number": 3, "label": "hiphop"} +{"file_name": "train_07776.png", "caption": "A synthesizer is playing soothing pad sounds with a lot of reverb. In the background you can hear external noises and some water sounds. This may be playing in a videogame.", "data_idx": 4309, "number": 0, "label": "jazz"} +{"file_name": "train_07777.png", "caption": "A synthesizer is playing soothing pad sounds with a lot of reverb. In the background you can hear external noises and some water sounds. This may be playing in a videogame.", "data_idx": 4309, "number": 1, "label": "jazz"} +{"file_name": "train_07778.png", "caption": "A synthesizer is playing soothing pad sounds with a lot of reverb. In the background you can hear external noises and some water sounds. This may be playing in a videogame.", "data_idx": 4309, "number": 2, "label": "jazz"} +{"file_name": "train_07779.png", "caption": "A synthesizer is playing soothing pad sounds with a lot of reverb. In the background you can hear external noises and some water sounds. This may be playing in a videogame.", "data_idx": 4309, "number": 3, "label": "jazz"} +{"file_name": "train_07780.png", "caption": "A female singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a groovy bass line and guitar rhythm, steady drums g rhythm and keyboard harmony. The song is catchy and has a dance groove. The song is a retro dance hit. The song has a poor audio quality issue.", "data_idx": 4314, "number": 0, "label": "hiphop"} +{"file_name": "train_07781.png", "caption": "A female singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a groovy bass line and guitar rhythm, steady drums g rhythm and keyboard harmony. The song is catchy and has a dance groove. The song is a retro dance hit. The song has a poor audio quality issue.", "data_idx": 4314, "number": 1, "label": "hiphop"} +{"file_name": "train_07782.png", "caption": "A female singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a groovy bass line and guitar rhythm, steady drums g rhythm and keyboard harmony. The song is catchy and has a dance groove. The song is a retro dance hit. The song has a poor audio quality issue.", "data_idx": 4314, "number": 2, "label": "hiphop"} +{"file_name": "train_07783.png", "caption": "A female singer sings this cool melody with backup singers in vocal harmony. The song is medium tempo with a groovy bass line and guitar rhythm, steady drums g rhythm and keyboard harmony. The song is catchy and has a dance groove. The song is a retro dance hit. The song has a poor audio quality issue.", "data_idx": 4314, "number": 3, "label": "hiphop"} +{"file_name": "train_07784.png", "caption": "The low quality recording features a printer that produces printing sounds and some muffled music playing in the background, probably on a radio. It is noisy and in mono.", "data_idx": 4316, "number": 0, "label": "classical"} +{"file_name": "train_07785.png", "caption": "The low quality recording features a printer that produces printing sounds and some muffled music playing in the background, probably on a radio. It is noisy and in mono.", "data_idx": 4316, "number": 1, "label": "classical"} +{"file_name": "train_07786.png", "caption": "The low quality recording features a printer that produces printing sounds and some muffled music playing in the background, probably on a radio. It is noisy and in mono.", "data_idx": 4316, "number": 2, "label": "classical"} +{"file_name": "train_07787.png", "caption": "The low quality recording features a printer that produces printing sounds and some muffled music playing in the background, probably on a radio. It is noisy and in mono.", "data_idx": 4316, "number": 3, "label": "classical"} +{"file_name": "train_07788.png", "caption": "The low quality recording features a cover of a soft rock song and it consists of a mellow electric guitar melody. The recording is a bit noisy. It sounds like an intro section of the song.", "data_idx": 4317, "number": 0, "label": "hiphop"} +{"file_name": "train_07789.png", "caption": "The low quality recording features a cover of a soft rock song and it consists of a mellow electric guitar melody. The recording is a bit noisy. It sounds like an intro section of the song.", "data_idx": 4317, "number": 1, "label": "hiphop"} +{"file_name": "train_07790.png", "caption": "The low quality recording features a cover of a soft rock song and it consists of a mellow electric guitar melody. The recording is a bit noisy. It sounds like an intro section of the song.", "data_idx": 4317, "number": 2, "label": "hiphop"} +{"file_name": "train_07791.png", "caption": "The low quality recording features a cover of a soft rock song and it consists of a mellow electric guitar melody. The recording is a bit noisy. It sounds like an intro section of the song.", "data_idx": 4317, "number": 3, "label": "hiphop"} +{"file_name": "train_07792.png", "caption": "This song is a spirited instrumental. The tempo is fast with enthusiastic brass harmony , with trumpet flourish, trombone and violins, cello and viola playing an upbeat melody along with vigorous drumming, piano accompaniment and cheerful, animated choral backup. The song is animated, vibrant, energetic and full of life. The sound of the hooves of horses and whistling indicates that this is Country music.", "data_idx": 4318, "number": 0, "label": "rock"} +{"file_name": "train_07793.png", "caption": "This song is a spirited instrumental. The tempo is fast with enthusiastic brass harmony , with trumpet flourish, trombone and violins, cello and viola playing an upbeat melody along with vigorous drumming, piano accompaniment and cheerful, animated choral backup. The song is animated, vibrant, energetic and full of life. The sound of the hooves of horses and whistling indicates that this is Country music.", "data_idx": 4318, "number": 1, "label": "rock"} +{"file_name": "train_07794.png", "caption": "This song is a spirited instrumental. The tempo is fast with enthusiastic brass harmony , with trumpet flourish, trombone and violins, cello and viola playing an upbeat melody along with vigorous drumming, piano accompaniment and cheerful, animated choral backup. The song is animated, vibrant, energetic and full of life. The sound of the hooves of horses and whistling indicates that this is Country music.", "data_idx": 4318, "number": 2, "label": "rock"} +{"file_name": "train_07795.png", "caption": "This song is a spirited instrumental. The tempo is fast with enthusiastic brass harmony , with trumpet flourish, trombone and violins, cello and viola playing an upbeat melody along with vigorous drumming, piano accompaniment and cheerful, animated choral backup. The song is animated, vibrant, energetic and full of life. The sound of the hooves of horses and whistling indicates that this is Country music.", "data_idx": 4318, "number": 3, "label": "rock"} +{"file_name": "train_07796.png", "caption": "This song contains a piano playing minor chords with a lot of reverb, a synthesizer playing a countermelody with short notes and something like a processed and cut voice sample that gets repeated in a very short and rhythmical ways serving as percussive element and is panned to the left and the right side of the speakers along with white noise processed with delay. For a moment a short digital bass sound is coming in. This song may be playing in a club.", "data_idx": 4320, "number": 0, "label": "hiphop"} +{"file_name": "train_07797.png", "caption": "This song contains a piano playing minor chords with a lot of reverb, a synthesizer playing a countermelody with short notes and something like a processed and cut voice sample that gets repeated in a very short and rhythmical ways serving as percussive element and is panned to the left and the right side of the speakers along with white noise processed with delay. For a moment a short digital bass sound is coming in. This song may be playing in a club.", "data_idx": 4320, "number": 1, "label": "hiphop"} +{"file_name": "train_07798.png", "caption": "This song contains a piano playing minor chords with a lot of reverb, a synthesizer playing a countermelody with short notes and something like a processed and cut voice sample that gets repeated in a very short and rhythmical ways serving as percussive element and is panned to the left and the right side of the speakers along with white noise processed with delay. For a moment a short digital bass sound is coming in. This song may be playing in a club.", "data_idx": 4320, "number": 2, "label": "hiphop"} +{"file_name": "train_07799.png", "caption": "This song contains a piano playing minor chords with a lot of reverb, a synthesizer playing a countermelody with short notes and something like a processed and cut voice sample that gets repeated in a very short and rhythmical ways serving as percussive element and is panned to the left and the right side of the speakers along with white noise processed with delay. For a moment a short digital bass sound is coming in. This song may be playing in a club.", "data_idx": 4320, "number": 3, "label": "hiphop"} +{"file_name": "train_07800.png", "caption": "A lot of percussive instruments are being played and panned to the left and right side of the speakers. A funky bassline is repeating the same pattern with fill-ins. An acoustic guitar is strumming funky chords and another guitar-like instrument is playing a melody on top. Male voices are singing in unison and kids voices are responding as backing vocals. This is an amateur recording.", "data_idx": 4321, "number": 0, "label": "disco"} +{"file_name": "train_07801.png", "caption": "A lot of percussive instruments are being played and panned to the left and right side of the speakers. A funky bassline is repeating the same pattern with fill-ins. An acoustic guitar is strumming funky chords and another guitar-like instrument is playing a melody on top. Male voices are singing in unison and kids voices are responding as backing vocals. This is an amateur recording.", "data_idx": 4321, "number": 1, "label": "disco"} +{"file_name": "train_07802.png", "caption": "A lot of percussive instruments are being played and panned to the left and right side of the speakers. A funky bassline is repeating the same pattern with fill-ins. An acoustic guitar is strumming funky chords and another guitar-like instrument is playing a melody on top. Male voices are singing in unison and kids voices are responding as backing vocals. This is an amateur recording.", "data_idx": 4321, "number": 2, "label": "disco"} +{"file_name": "train_07803.png", "caption": "A lot of percussive instruments are being played and panned to the left and right side of the speakers. A funky bassline is repeating the same pattern with fill-ins. An acoustic guitar is strumming funky chords and another guitar-like instrument is playing a melody on top. Male voices are singing in unison and kids voices are responding as backing vocals. This is an amateur recording.", "data_idx": 4321, "number": 3, "label": "disco"} +{"file_name": "train_07804.png", "caption": "This music is an electronic instrumental; the tempo is medium with a solo electric guitar lead and no accompanying instruments. The music is melodic, rhythmic, and groovy.", "data_idx": 4322, "number": 0, "label": "classical"} +{"file_name": "train_07805.png", "caption": "This music is an electronic instrumental; the tempo is medium with a solo electric guitar lead and no accompanying instruments. The music is melodic, rhythmic, and groovy.", "data_idx": 4322, "number": 1, "label": "classical"} +{"file_name": "train_07806.png", "caption": "This music is an electronic instrumental; the tempo is medium with a solo electric guitar lead and no accompanying instruments. The music is melodic, rhythmic, and groovy.", "data_idx": 4322, "number": 2, "label": "classical"} +{"file_name": "train_07807.png", "caption": "This music is an electronic instrumental; the tempo is medium with a solo electric guitar lead and no accompanying instruments. The music is melodic, rhythmic, and groovy.", "data_idx": 4322, "number": 3, "label": "classical"} +{"file_name": "train_07808.png", "caption": "An acoustic drum set is playing a shuffle groove with hits on the ride along with an e-bass playing a blues walking bassline. Someone is playing a slide-e-guitar. This song may be playing at a live concert.", "data_idx": 4324, "number": 0, "label": "rock"} +{"file_name": "train_07809.png", "caption": "An acoustic drum set is playing a shuffle groove with hits on the ride along with an e-bass playing a blues walking bassline. Someone is playing a slide-e-guitar. This song may be playing at a live concert.", "data_idx": 4324, "number": 1, "label": "rock"} +{"file_name": "train_07810.png", "caption": "An acoustic drum set is playing a shuffle groove with hits on the ride along with an e-bass playing a blues walking bassline. Someone is playing a slide-e-guitar. This song may be playing at a live concert.", "data_idx": 4324, "number": 2, "label": "rock"} +{"file_name": "train_07811.png", "caption": "An acoustic drum set is playing a shuffle groove with hits on the ride along with an e-bass playing a blues walking bassline. Someone is playing a slide-e-guitar. This song may be playing at a live concert.", "data_idx": 4324, "number": 3, "label": "rock"} +{"file_name": "train_07812.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with boomy bass lines, steady drumming, keyboard harmony and enthusiastic electric guitar riff with vocal backup. The audio quality is very bad and the song is muffled and muddy. This song is a live performance with ambient sounds of people clapping and cheering.", "data_idx": 4327, "number": 0, "label": "hiphop"} +{"file_name": "train_07813.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with boomy bass lines, steady drumming, keyboard harmony and enthusiastic electric guitar riff with vocal backup. The audio quality is very bad and the song is muffled and muddy. This song is a live performance with ambient sounds of people clapping and cheering.", "data_idx": 4327, "number": 1, "label": "hiphop"} +{"file_name": "train_07814.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with boomy bass lines, steady drumming, keyboard harmony and enthusiastic electric guitar riff with vocal backup. The audio quality is very bad and the song is muffled and muddy. This song is a live performance with ambient sounds of people clapping and cheering.", "data_idx": 4327, "number": 2, "label": "hiphop"} +{"file_name": "train_07815.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with boomy bass lines, steady drumming, keyboard harmony and enthusiastic electric guitar riff with vocal backup. The audio quality is very bad and the song is muffled and muddy. This song is a live performance with ambient sounds of people clapping and cheering.", "data_idx": 4327, "number": 3, "label": "hiphop"} +{"file_name": "train_07816.png", "caption": "Two e-guitars playing a melody. An electric bass is playing the rootnotes. They run through a chorus/vibrato effect. This song may be playing at home building a song with a loopstation.", "data_idx": 4329, "number": 0, "label": "classical"} +{"file_name": "train_07817.png", "caption": "Two e-guitars playing a melody. An electric bass is playing the rootnotes. They run through a chorus/vibrato effect. This song may be playing at home building a song with a loopstation.", "data_idx": 4329, "number": 1, "label": "classical"} +{"file_name": "train_07818.png", "caption": "Two e-guitars playing a melody. An electric bass is playing the rootnotes. They run through a chorus/vibrato effect. This song may be playing at home building a song with a loopstation.", "data_idx": 4329, "number": 2, "label": "classical"} +{"file_name": "train_07819.png", "caption": "Two e-guitars playing a melody. An electric bass is playing the rootnotes. They run through a chorus/vibrato effect. This song may be playing at home building a song with a loopstation.", "data_idx": 4329, "number": 3, "label": "classical"} +{"file_name": "train_07820.png", "caption": "This music clip is an electric guitar solo lead instrumental. The tempo is fast with the guitarist playing a very emphatic, intense riff. No other instruments have been used. The music is loud, intense, engaging and catchy.", "data_idx": 4331, "number": 0, "label": "hiphop"} +{"file_name": "train_07821.png", "caption": "This music clip is an electric guitar solo lead instrumental. The tempo is fast with the guitarist playing a very emphatic, intense riff. No other instruments have been used. The music is loud, intense, engaging and catchy.", "data_idx": 4331, "number": 1, "label": "hiphop"} +{"file_name": "train_07822.png", "caption": "This music clip is an electric guitar solo lead instrumental. The tempo is fast with the guitarist playing a very emphatic, intense riff. No other instruments have been used. The music is loud, intense, engaging and catchy.", "data_idx": 4331, "number": 2, "label": "hiphop"} +{"file_name": "train_07823.png", "caption": "This music clip is an electric guitar solo lead instrumental. The tempo is fast with the guitarist playing a very emphatic, intense riff. No other instruments have been used. The music is loud, intense, engaging and catchy.", "data_idx": 4331, "number": 3, "label": "hiphop"} +{"file_name": "train_07824.png", "caption": "The low quality recording features a live performance that contains harmonizing male vocals singing over repetitive synth keys and electric guitar melody, followed by groovy bass, shimmering hats and punchy \"4 on the floor\" kick pattern. The recording is noisy, distorted and crushed, but it sounds energetic and exciting.", "data_idx": 4332, "number": 0, "label": "hiphop"} +{"file_name": "train_07825.png", "caption": "The low quality recording features a live performance that contains harmonizing male vocals singing over repetitive synth keys and electric guitar melody, followed by groovy bass, shimmering hats and punchy \"4 on the floor\" kick pattern. The recording is noisy, distorted and crushed, but it sounds energetic and exciting.", "data_idx": 4332, "number": 1, "label": "hiphop"} +{"file_name": "train_07826.png", "caption": "The low quality recording features a live performance that contains harmonizing male vocals singing over repetitive synth keys and electric guitar melody, followed by groovy bass, shimmering hats and punchy \"4 on the floor\" kick pattern. The recording is noisy, distorted and crushed, but it sounds energetic and exciting.", "data_idx": 4332, "number": 2, "label": "hiphop"} +{"file_name": "train_07827.png", "caption": "The low quality recording features a live performance that contains harmonizing male vocals singing over repetitive synth keys and electric guitar melody, followed by groovy bass, shimmering hats and punchy \"4 on the floor\" kick pattern. The recording is noisy, distorted and crushed, but it sounds energetic and exciting.", "data_idx": 4332, "number": 3, "label": "hiphop"} +{"file_name": "train_07828.png", "caption": "A steeldrum-orchestra in playing a composition containing bass sounds, mid range chords and melodies in the higher register. This sounds soothing. This song may be playing as a live performance.", "data_idx": 4333, "number": 0, "label": "classical"} +{"file_name": "train_07829.png", "caption": "A steeldrum-orchestra in playing a composition containing bass sounds, mid range chords and melodies in the higher register. This sounds soothing. This song may be playing as a live performance.", "data_idx": 4333, "number": 1, "label": "classical"} +{"file_name": "train_07830.png", "caption": "A steeldrum-orchestra in playing a composition containing bass sounds, mid range chords and melodies in the higher register. This sounds soothing. This song may be playing as a live performance.", "data_idx": 4333, "number": 2, "label": "classical"} +{"file_name": "train_07831.png", "caption": "A steeldrum-orchestra in playing a composition containing bass sounds, mid range chords and melodies in the higher register. This sounds soothing. This song may be playing as a live performance.", "data_idx": 4333, "number": 3, "label": "classical"} +{"file_name": "train_07832.png", "caption": "The low quality recording features a folk song sung by passionate echoing male vocals over mellow organ keys, chords and sitar melody. It sounds narrow, because it was recorded with a mono microphone setup, but it is also very passionate, regardless.", "data_idx": 4334, "number": 0, "label": "country"} +{"file_name": "train_07833.png", "caption": "The low quality recording features a folk song sung by passionate echoing male vocals over mellow organ keys, chords and sitar melody. It sounds narrow, because it was recorded with a mono microphone setup, but it is also very passionate, regardless.", "data_idx": 4334, "number": 1, "label": "country"} +{"file_name": "train_07834.png", "caption": "The low quality recording features a folk song sung by passionate echoing male vocals over mellow organ keys, chords and sitar melody. It sounds narrow, because it was recorded with a mono microphone setup, but it is also very passionate, regardless.", "data_idx": 4334, "number": 2, "label": "country"} +{"file_name": "train_07835.png", "caption": "The low quality recording features a folk song sung by passionate echoing male vocals over mellow organ keys, chords and sitar melody. It sounds narrow, because it was recorded with a mono microphone setup, but it is also very passionate, regardless.", "data_idx": 4334, "number": 3, "label": "country"} +{"file_name": "train_07836.png", "caption": "This is an Indian classical music piece. The female vocals are singing in a syncopated manner at the same time with the rhythmic background of the tabla, the cajon and the acoustic drums. The melodic background is provided by a sitar. The piece is used as an accompaniment for the kathak dance. It could be used for the same task in dancing courses.", "data_idx": 4337, "number": 0, "label": "disco"} +{"file_name": "train_07837.png", "caption": "This is an Indian classical music piece. The female vocals are singing in a syncopated manner at the same time with the rhythmic background of the tabla, the cajon and the acoustic drums. The melodic background is provided by a sitar. The piece is used as an accompaniment for the kathak dance. It could be used for the same task in dancing courses.", "data_idx": 4337, "number": 1, "label": "disco"} +{"file_name": "train_07838.png", "caption": "This is an Indian classical music piece. The female vocals are singing in a syncopated manner at the same time with the rhythmic background of the tabla, the cajon and the acoustic drums. The melodic background is provided by a sitar. The piece is used as an accompaniment for the kathak dance. It could be used for the same task in dancing courses.", "data_idx": 4337, "number": 2, "label": "disco"} +{"file_name": "train_07839.png", "caption": "This is an Indian classical music piece. The female vocals are singing in a syncopated manner at the same time with the rhythmic background of the tabla, the cajon and the acoustic drums. The melodic background is provided by a sitar. The piece is used as an accompaniment for the kathak dance. It could be used for the same task in dancing courses.", "data_idx": 4337, "number": 3, "label": "disco"} +{"file_name": "train_07840.png", "caption": "A male vocalist sings this soft country song. The tempo is slow with a gentle acoustic guitar and resonator rhythm, subtle keyboard, soft drumming, tambourine beats and soft auto harp strains. The vocals are mellow, gentle, sentimental, emotional, poignant, melancholic and nostalgic. This song is a Classic Country song.", "data_idx": 4338, "number": 0, "label": "blues"} +{"file_name": "train_07841.png", "caption": "A male vocalist sings this soft country song. The tempo is slow with a gentle acoustic guitar and resonator rhythm, subtle keyboard, soft drumming, tambourine beats and soft auto harp strains. The vocals are mellow, gentle, sentimental, emotional, poignant, melancholic and nostalgic. This song is a Classic Country song.", "data_idx": 4338, "number": 1, "label": "blues"} +{"file_name": "train_07842.png", "caption": "A male vocalist sings this soft country song. The tempo is slow with a gentle acoustic guitar and resonator rhythm, subtle keyboard, soft drumming, tambourine beats and soft auto harp strains. The vocals are mellow, gentle, sentimental, emotional, poignant, melancholic and nostalgic. This song is a Classic Country song.", "data_idx": 4338, "number": 2, "label": "blues"} +{"file_name": "train_07843.png", "caption": "A male vocalist sings this soft country song. The tempo is slow with a gentle acoustic guitar and resonator rhythm, subtle keyboard, soft drumming, tambourine beats and soft auto harp strains. The vocals are mellow, gentle, sentimental, emotional, poignant, melancholic and nostalgic. This song is a Classic Country song.", "data_idx": 4338, "number": 3, "label": "blues"} +{"file_name": "train_07844.png", "caption": "A female singer sings this lilting melody. The song is medium tempo with a string section playing an emotional harmony, piano accompaniment and steady bass line playing rhythmically. The song is emotional and heartfelt. The song is a movie soundtrack but has a poor audio quality.", "data_idx": 4340, "number": 0, "label": "country"} +{"file_name": "train_07845.png", "caption": "A female singer sings this lilting melody. The song is medium tempo with a string section playing an emotional harmony, piano accompaniment and steady bass line playing rhythmically. The song is emotional and heartfelt. The song is a movie soundtrack but has a poor audio quality.", "data_idx": 4340, "number": 1, "label": "country"} +{"file_name": "train_07846.png", "caption": "The music is purely instrumental and it features two acoustic guitars. One of them is playing a melody in the high register while the other one is providing accompaniment by strumming chords.", "data_idx": 4341, "number": 0, "label": "blues"} +{"file_name": "train_07847.png", "caption": "The music is purely instrumental and it features two acoustic guitars. One of them is playing a melody in the high register while the other one is providing accompaniment by strumming chords.", "data_idx": 4341, "number": 1, "label": "blues"} +{"file_name": "train_07848.png", "caption": "Here we hear a calm acoustic rendition of a song. The ukulele is played in a simple, chord-based way, and the female singer has a gentle and soothing voice. She also performs in a way that radiates tranquility.", "data_idx": 4342, "number": 0, "label": "pop"} +{"file_name": "train_07849.png", "caption": "Here we hear a calm acoustic rendition of a song. The ukulele is played in a simple, chord-based way, and the female singer has a gentle and soothing voice. She also performs in a way that radiates tranquility.", "data_idx": 4342, "number": 1, "label": "pop"} +{"file_name": "train_07850.png", "caption": "Here we hear a calm acoustic rendition of a song. The ukulele is played in a simple, chord-based way, and the female singer has a gentle and soothing voice. She also performs in a way that radiates tranquility.", "data_idx": 4342, "number": 2, "label": "pop"} +{"file_name": "train_07851.png", "caption": "Here we hear a calm acoustic rendition of a song. The ukulele is played in a simple, chord-based way, and the female singer has a gentle and soothing voice. She also performs in a way that radiates tranquility.", "data_idx": 4342, "number": 3, "label": "pop"} +{"file_name": "train_07852.png", "caption": "Big band jazz style music featuring a lead clarinetist soloing over a walking bassline, electric jazz guitar, a wind section, brass, string section, and a choir.", "data_idx": 4345, "number": 0, "label": "classical"} +{"file_name": "train_07853.png", "caption": "Big band jazz style music featuring a lead clarinetist soloing over a walking bassline, electric jazz guitar, a wind section, brass, string section, and a choir.", "data_idx": 4345, "number": 1, "label": "classical"} +{"file_name": "train_07854.png", "caption": "Big band jazz style music featuring a lead clarinetist soloing over a walking bassline, electric jazz guitar, a wind section, brass, string section, and a choir.", "data_idx": 4345, "number": 2, "label": "classical"} +{"file_name": "train_07855.png", "caption": "Big band jazz style music featuring a lead clarinetist soloing over a walking bassline, electric jazz guitar, a wind section, brass, string section, and a choir.", "data_idx": 4345, "number": 3, "label": "classical"} +{"file_name": "train_07856.png", "caption": "Two male voices are singing loudly together: One backing the other one. A e-guitar can be heard at the end of the phrase. In the background a e-bass and an acoustic drum can be heard but they get overthrown by the sound of the cheering and Screaming crowd. This song may be playing at a live concert.", "data_idx": 4348, "number": 0, "label": "classical"} +{"file_name": "train_07857.png", "caption": "Two male voices are singing loudly together: One backing the other one. A e-guitar can be heard at the end of the phrase. In the background a e-bass and an acoustic drum can be heard but they get overthrown by the sound of the cheering and Screaming crowd. This song may be playing at a live concert.", "data_idx": 4348, "number": 1, "label": "classical"} +{"file_name": "train_07858.png", "caption": "Two male voices are singing loudly together: One backing the other one. A e-guitar can be heard at the end of the phrase. In the background a e-bass and an acoustic drum can be heard but they get overthrown by the sound of the cheering and Screaming crowd. This song may be playing at a live concert.", "data_idx": 4348, "number": 2, "label": "classical"} +{"file_name": "train_07859.png", "caption": "Two male voices are singing loudly together: One backing the other one. A e-guitar can be heard at the end of the phrase. In the background a e-bass and an acoustic drum can be heard but they get overthrown by the sound of the cheering and Screaming crowd. This song may be playing at a live concert.", "data_idx": 4348, "number": 3, "label": "classical"} +{"file_name": "train_07860.png", "caption": "Someone is playing a clean e-guitar that is doubled and panned to both sides of the speakers. A female voice is singing in the mid to high range. This song may be playing at a live performance.", "data_idx": 4350, "number": 0, "label": "country"} +{"file_name": "train_07861.png", "caption": "Someone is playing a clean e-guitar that is doubled and panned to both sides of the speakers. A female voice is singing in the mid to high range. This song may be playing at a live performance.", "data_idx": 4350, "number": 1, "label": "country"} +{"file_name": "train_07862.png", "caption": "Someone is playing a clean e-guitar that is doubled and panned to both sides of the speakers. A female voice is singing in the mid to high range. This song may be playing at a live performance.", "data_idx": 4350, "number": 2, "label": "country"} +{"file_name": "train_07863.png", "caption": "Someone is playing a clean e-guitar that is doubled and panned to both sides of the speakers. A female voice is singing in the mid to high range. This song may be playing at a live performance.", "data_idx": 4350, "number": 3, "label": "country"} +{"file_name": "train_07864.png", "caption": "This is a pop soul/modern r&b piece that is sung by a mellow male vocal in medium pitch. The main tune is played by the acoustic guitar with the bass guitar and the ambient synth supporting the melody in the background. There is a calm and simple acoustic drum beat in the rhythmic background. The song is played on a major scale giving it a positive, optimistic atmosphere. This piece could be used in a romantic setting. It could also be playing in the background of a coffee house or a bookstore.", "data_idx": 4352, "number": 0, "label": "rock"} +{"file_name": "train_07865.png", "caption": "This is a pop soul/modern r&b piece that is sung by a mellow male vocal in medium pitch. The main tune is played by the acoustic guitar with the bass guitar and the ambient synth supporting the melody in the background. There is a calm and simple acoustic drum beat in the rhythmic background. The song is played on a major scale giving it a positive, optimistic atmosphere. This piece could be used in a romantic setting. It could also be playing in the background of a coffee house or a bookstore.", "data_idx": 4352, "number": 1, "label": "rock"} +{"file_name": "train_07866.png", "caption": "This is a pop soul/modern r&b piece that is sung by a mellow male vocal in medium pitch. The main tune is played by the acoustic guitar with the bass guitar and the ambient synth supporting the melody in the background. There is a calm and simple acoustic drum beat in the rhythmic background. The song is played on a major scale giving it a positive, optimistic atmosphere. This piece could be used in a romantic setting. It could also be playing in the background of a coffee house or a bookstore.", "data_idx": 4352, "number": 2, "label": "rock"} +{"file_name": "train_07867.png", "caption": "This is a pop soul/modern r&b piece that is sung by a mellow male vocal in medium pitch. The main tune is played by the acoustic guitar with the bass guitar and the ambient synth supporting the melody in the background. There is a calm and simple acoustic drum beat in the rhythmic background. The song is played on a major scale giving it a positive, optimistic atmosphere. This piece could be used in a romantic setting. It could also be playing in the background of a coffee house or a bookstore.", "data_idx": 4352, "number": 3, "label": "rock"} +{"file_name": "train_07868.png", "caption": "This is an amateur recording of a solo banjo player. The piece is played in the major scale, creating a friendly, calming atmosphere giving it a definitive characteristic of a folk song. It could be used as background music in pastoral content, touristic videos of rural locations.", "data_idx": 4354, "number": 0, "label": "classical"} +{"file_name": "train_07869.png", "caption": "This is an amateur recording of a solo banjo player. The piece is played in the major scale, creating a friendly, calming atmosphere giving it a definitive characteristic of a folk song. It could be used as background music in pastoral content, touristic videos of rural locations.", "data_idx": 4354, "number": 1, "label": "classical"} +{"file_name": "train_07870.png", "caption": "This is an amateur recording of a solo banjo player. The piece is played in the major scale, creating a friendly, calming atmosphere giving it a definitive characteristic of a folk song. It could be used as background music in pastoral content, touristic videos of rural locations.", "data_idx": 4354, "number": 2, "label": "classical"} +{"file_name": "train_07871.png", "caption": "This is an amateur recording of a solo banjo player. The piece is played in the major scale, creating a friendly, calming atmosphere giving it a definitive characteristic of a folk song. It could be used as background music in pastoral content, touristic videos of rural locations.", "data_idx": 4354, "number": 3, "label": "classical"} +{"file_name": "train_07872.png", "caption": "The recording is full of natural sounds. Birds chirping, a river running and wind shaking the leaves. Then a percussive mid range instrument comes in with a steady repetitive rhythm. This instrument seems to be recorded in another environment than the natural sounds. The sound quality is different. This is not a professional recording. This song may be playing for a documentary.", "data_idx": 4357, "number": 0, "label": "hiphop"} +{"file_name": "train_07873.png", "caption": "The recording is full of natural sounds. Birds chirping, a river running and wind shaking the leaves. Then a percussive mid range instrument comes in with a steady repetitive rhythm. This instrument seems to be recorded in another environment than the natural sounds. The sound quality is different. This is not a professional recording. This song may be playing for a documentary.", "data_idx": 4357, "number": 1, "label": "hiphop"} +{"file_name": "train_07874.png", "caption": "This music is a spirited Latin music instrumental. The tempo is fast with a lively accordion harmony, spirited congas beat and guiro accompaniment. The music is happy, vivacious, upbeat, vigorous, cheerful , celebratory and cheerful with ambient outdoor sounds like wind, people talking, clapping and a lot of static indicating that this is a live performance. The audio quality is inferior and this looks like an amateur home recording.", "data_idx": 4359, "number": 0, "label": "reggae"} +{"file_name": "train_07875.png", "caption": "This music is a spirited Latin music instrumental. The tempo is fast with a lively accordion harmony, spirited congas beat and guiro accompaniment. The music is happy, vivacious, upbeat, vigorous, cheerful , celebratory and cheerful with ambient outdoor sounds like wind, people talking, clapping and a lot of static indicating that this is a live performance. The audio quality is inferior and this looks like an amateur home recording.", "data_idx": 4359, "number": 1, "label": "reggae"} +{"file_name": "train_07876.png", "caption": "This music is a spirited Latin music instrumental. The tempo is fast with a lively accordion harmony, spirited congas beat and guiro accompaniment. The music is happy, vivacious, upbeat, vigorous, cheerful , celebratory and cheerful with ambient outdoor sounds like wind, people talking, clapping and a lot of static indicating that this is a live performance. The audio quality is inferior and this looks like an amateur home recording.", "data_idx": 4359, "number": 2, "label": "reggae"} +{"file_name": "train_07877.png", "caption": "This music is a spirited Latin music instrumental. The tempo is fast with a lively accordion harmony, spirited congas beat and guiro accompaniment. The music is happy, vivacious, upbeat, vigorous, cheerful , celebratory and cheerful with ambient outdoor sounds like wind, people talking, clapping and a lot of static indicating that this is a live performance. The audio quality is inferior and this looks like an amateur home recording.", "data_idx": 4359, "number": 3, "label": "reggae"} +{"file_name": "train_07878.png", "caption": "The low quality recording features a groovy piano and plucked strings melody playing over some animal sound effects. Some of the sounds that can be heard are chickens, cats and sheep sound effects. It sounds happy and fun, like something a kid would listen to.", "data_idx": 4360, "number": 0, "label": "blues"} +{"file_name": "train_07879.png", "caption": "The low quality recording features a groovy piano and plucked strings melody playing over some animal sound effects. Some of the sounds that can be heard are chickens, cats and sheep sound effects. It sounds happy and fun, like something a kid would listen to.", "data_idx": 4360, "number": 1, "label": "blues"} +{"file_name": "train_07880.png", "caption": "The low quality recording features a groovy piano and plucked strings melody playing over some animal sound effects. Some of the sounds that can be heard are chickens, cats and sheep sound effects. It sounds happy and fun, like something a kid would listen to.", "data_idx": 4360, "number": 2, "label": "blues"} +{"file_name": "train_07881.png", "caption": "The low quality recording features a groovy piano and plucked strings melody playing over some animal sound effects. Some of the sounds that can be heard are chickens, cats and sheep sound effects. It sounds happy and fun, like something a kid would listen to.", "data_idx": 4360, "number": 3, "label": "blues"} +{"file_name": "train_07882.png", "caption": "This music is an electronic instrumental. The tempo is medium with a steady, rhythmic keyboard harmony, simple drumming and groovy bass lines. There are sounds of crashing, glass breaking, explosions or gunshots in the background superimposing over the music. The sounds are in stark contrast to the melodious music, with the crashing and shooting giving it an aggressive vibe;", "data_idx": 4361, "number": 0, "label": "reggae"} +{"file_name": "train_07883.png", "caption": "This music is an electronic instrumental. The tempo is medium with a steady, rhythmic keyboard harmony, simple drumming and groovy bass lines. There are sounds of crashing, glass breaking, explosions or gunshots in the background superimposing over the music. The sounds are in stark contrast to the melodious music, with the crashing and shooting giving it an aggressive vibe;", "data_idx": 4361, "number": 1, "label": "reggae"} +{"file_name": "train_07884.png", "caption": "This music is an electronic instrumental. The tempo is medium with a steady, rhythmic keyboard harmony, simple drumming and groovy bass lines. There are sounds of crashing, glass breaking, explosions or gunshots in the background superimposing over the music. The sounds are in stark contrast to the melodious music, with the crashing and shooting giving it an aggressive vibe;", "data_idx": 4361, "number": 2, "label": "reggae"} +{"file_name": "train_07885.png", "caption": "This music is an electronic instrumental. The tempo is medium with a steady, rhythmic keyboard harmony, simple drumming and groovy bass lines. There are sounds of crashing, glass breaking, explosions or gunshots in the background superimposing over the music. The sounds are in stark contrast to the melodious music, with the crashing and shooting giving it an aggressive vibe;", "data_idx": 4361, "number": 3, "label": "reggae"} +{"file_name": "train_07886.png", "caption": "The low quality recording features a groovy Spanish acoustic guitar. It sounds very noisy, vintage and the guitar was recorded in mono.", "data_idx": 4362, "number": 0, "label": "jazz"} +{"file_name": "train_07887.png", "caption": "The low quality recording features a groovy Spanish acoustic guitar. It sounds very noisy, vintage and the guitar was recorded in mono.", "data_idx": 4362, "number": 1, "label": "jazz"} +{"file_name": "train_07888.png", "caption": "The low quality recording features a groovy Spanish acoustic guitar. It sounds very noisy, vintage and the guitar was recorded in mono.", "data_idx": 4362, "number": 2, "label": "jazz"} +{"file_name": "train_07889.png", "caption": "The low quality recording features a groovy Spanish acoustic guitar. It sounds very noisy, vintage and the guitar was recorded in mono.", "data_idx": 4362, "number": 3, "label": "jazz"} +{"file_name": "train_07890.png", "caption": "A male voice is singing with reverb and delay in his voice. An acoustic drum is playing a faster groove on the piano, a tambourine can be heard. An electric bass is playing repeating notes without a lot of changes. A brass section is repeating a theme while keyboards and a guitar are playing along. This song may be playing live in-between an entertainment-show.", "data_idx": 4363, "number": 0, "label": "country"} +{"file_name": "train_07891.png", "caption": "A male voice is singing with reverb and delay in his voice. An acoustic drum is playing a faster groove on the piano, a tambourine can be heard. An electric bass is playing repeating notes without a lot of changes. A brass section is repeating a theme while keyboards and a guitar are playing along. This song may be playing live in-between an entertainment-show.", "data_idx": 4363, "number": 1, "label": "country"} +{"file_name": "train_07892.png", "caption": "A male voice is singing with reverb and delay in his voice. An acoustic drum is playing a faster groove on the piano, a tambourine can be heard. An electric bass is playing repeating notes without a lot of changes. A brass section is repeating a theme while keyboards and a guitar are playing along. This song may be playing live in-between an entertainment-show.", "data_idx": 4363, "number": 2, "label": "country"} +{"file_name": "train_07893.png", "caption": "A male voice is singing with reverb and delay in his voice. An acoustic drum is playing a faster groove on the piano, a tambourine can be heard. An electric bass is playing repeating notes without a lot of changes. A brass section is repeating a theme while keyboards and a guitar are playing along. This song may be playing live in-between an entertainment-show.", "data_idx": 4363, "number": 3, "label": "country"} +{"file_name": "train_07894.png", "caption": "The low quality recording features a soft rock song playing over pigs oinks sound effects. The song contains a short drum break at the beginning, punchy snare, simple kick pattern, smooth bass guitar, wide acoustic rhythm guitar, shimmering cymbals and flat female vocals singing over it. Sounds like it is some kind of documentary about pigs, as the song is playing in the background.", "data_idx": 4365, "number": 0, "label": "rock"} +{"file_name": "train_07895.png", "caption": "The low quality recording features a soft rock song playing over pigs oinks sound effects. The song contains a short drum break at the beginning, punchy snare, simple kick pattern, smooth bass guitar, wide acoustic rhythm guitar, shimmering cymbals and flat female vocals singing over it. Sounds like it is some kind of documentary about pigs, as the song is playing in the background.", "data_idx": 4365, "number": 1, "label": "rock"} +{"file_name": "train_07896.png", "caption": "The low quality recording features a soft rock song playing over pigs oinks sound effects. The song contains a short drum break at the beginning, punchy snare, simple kick pattern, smooth bass guitar, wide acoustic rhythm guitar, shimmering cymbals and flat female vocals singing over it. Sounds like it is some kind of documentary about pigs, as the song is playing in the background.", "data_idx": 4365, "number": 2, "label": "rock"} +{"file_name": "train_07897.png", "caption": "The low quality recording features a soft rock song playing over pigs oinks sound effects. The song contains a short drum break at the beginning, punchy snare, simple kick pattern, smooth bass guitar, wide acoustic rhythm guitar, shimmering cymbals and flat female vocals singing over it. Sounds like it is some kind of documentary about pigs, as the song is playing in the background.", "data_idx": 4365, "number": 3, "label": "rock"} +{"file_name": "train_07898.png", "caption": "The low quality recording features a live performance of a soul song and it consists of passionate male vocal singing over playback instrumentals. The instrumental consists of a shimmering tambourine layered with punchy snare hits, soft kick hits, some toms rolls, groovy bass, electric guitar melody and harmonizing male vocals. It sounds emotional, soulful, hopeful and joyful.", "data_idx": 4369, "number": 0, "label": "rock"} +{"file_name": "train_07899.png", "caption": "The low quality recording features a live performance of a soul song and it consists of passionate male vocal singing over playback instrumentals. The instrumental consists of a shimmering tambourine layered with punchy snare hits, soft kick hits, some toms rolls, groovy bass, electric guitar melody and harmonizing male vocals. It sounds emotional, soulful, hopeful and joyful.", "data_idx": 4369, "number": 1, "label": "rock"} +{"file_name": "train_07900.png", "caption": "The low quality recording features a live performance of a soul song and it consists of passionate male vocal singing over playback instrumentals. The instrumental consists of a shimmering tambourine layered with punchy snare hits, soft kick hits, some toms rolls, groovy bass, electric guitar melody and harmonizing male vocals. It sounds emotional, soulful, hopeful and joyful.", "data_idx": 4369, "number": 2, "label": "rock"} +{"file_name": "train_07901.png", "caption": "The low quality recording features a live performance of a soul song and it consists of passionate male vocal singing over playback instrumentals. The instrumental consists of a shimmering tambourine layered with punchy snare hits, soft kick hits, some toms rolls, groovy bass, electric guitar melody and harmonizing male vocals. It sounds emotional, soulful, hopeful and joyful.", "data_idx": 4369, "number": 3, "label": "rock"} +{"file_name": "train_07902.png", "caption": "A female vocalist sings an enthralling electronic melody. The tempo is medium with heavily synthesised instrumentation and vocals. The synthesiser articulated music and heavy bass synth add intensity and dense layers to the music giving it a psychedelic, trippy, hallucinatory, enigmatic and trance like vibe. This song is an EDM/Synth Pop song.", "data_idx": 4372, "number": 0, "label": "rock"} +{"file_name": "train_07903.png", "caption": "A female vocalist sings an enthralling electronic melody. The tempo is medium with heavily synthesised instrumentation and vocals. The synthesiser articulated music and heavy bass synth add intensity and dense layers to the music giving it a psychedelic, trippy, hallucinatory, enigmatic and trance like vibe. This song is an EDM/Synth Pop song.", "data_idx": 4372, "number": 1, "label": "rock"} +{"file_name": "train_07904.png", "caption": "A female vocalist sings an enthralling electronic melody. The tempo is medium with heavily synthesised instrumentation and vocals. The synthesiser articulated music and heavy bass synth add intensity and dense layers to the music giving it a psychedelic, trippy, hallucinatory, enigmatic and trance like vibe. This song is an EDM/Synth Pop song.", "data_idx": 4372, "number": 2, "label": "rock"} +{"file_name": "train_07905.png", "caption": "A female vocalist sings an enthralling electronic melody. The tempo is medium with heavily synthesised instrumentation and vocals. The synthesiser articulated music and heavy bass synth add intensity and dense layers to the music giving it a psychedelic, trippy, hallucinatory, enigmatic and trance like vibe. This song is an EDM/Synth Pop song.", "data_idx": 4372, "number": 3, "label": "rock"} +{"file_name": "train_07906.png", "caption": "The music features a piano playing short interventions/melodies. A bass guitar (could be synth too) plays long notes. In the background, but very noticeable, is an electronic sound playing one long note throughout the music excerpt. The overall atmosphere is introspective.", "data_idx": 4373, "number": 0, "label": "jazz"} +{"file_name": "train_07907.png", "caption": "The music features a piano playing short interventions/melodies. A bass guitar (could be synth too) plays long notes. In the background, but very noticeable, is an electronic sound playing one long note throughout the music excerpt. The overall atmosphere is introspective.", "data_idx": 4373, "number": 1, "label": "jazz"} +{"file_name": "train_07908.png", "caption": "The music features a piano playing short interventions/melodies. A bass guitar (could be synth too) plays long notes. In the background, but very noticeable, is an electronic sound playing one long note throughout the music excerpt. The overall atmosphere is introspective.", "data_idx": 4373, "number": 2, "label": "jazz"} +{"file_name": "train_07909.png", "caption": "The music features a piano playing short interventions/melodies. A bass guitar (could be synth too) plays long notes. In the background, but very noticeable, is an electronic sound playing one long note throughout the music excerpt. The overall atmosphere is introspective.", "data_idx": 4373, "number": 3, "label": "jazz"} +{"file_name": "train_07910.png", "caption": "A male vocalist sings this melodic pop song.The tempo is medium with energetic drumming, keyboard harmony, groovy bass lines, electric guitar harmony, acoustic guitar rhythm and dissonant tambourine beats. The is soft, calming, mellow, sentimental, emotional and nostalgic. This song is Pop Rock/Soft Rock.", "data_idx": 4376, "number": 0, "label": "rock"} +{"file_name": "train_07911.png", "caption": "A male vocalist sings this melodic pop song.The tempo is medium with energetic drumming, keyboard harmony, groovy bass lines, electric guitar harmony, acoustic guitar rhythm and dissonant tambourine beats. The is soft, calming, mellow, sentimental, emotional and nostalgic. This song is Pop Rock/Soft Rock.", "data_idx": 4376, "number": 1, "label": "rock"} +{"file_name": "train_07912.png", "caption": "A male vocalist sings this melodic pop song.The tempo is medium with energetic drumming, keyboard harmony, groovy bass lines, electric guitar harmony, acoustic guitar rhythm and dissonant tambourine beats. The is soft, calming, mellow, sentimental, emotional and nostalgic. This song is Pop Rock/Soft Rock.", "data_idx": 4376, "number": 2, "label": "rock"} +{"file_name": "train_07913.png", "caption": "A male vocalist sings this melodic pop song.The tempo is medium with energetic drumming, keyboard harmony, groovy bass lines, electric guitar harmony, acoustic guitar rhythm and dissonant tambourine beats. The is soft, calming, mellow, sentimental, emotional and nostalgic. This song is Pop Rock/Soft Rock.", "data_idx": 4376, "number": 3, "label": "rock"} +{"file_name": "train_07914.png", "caption": "Someone is playing an acoustic guitar finger picking a melody. On top of that, a distorted e-guitar is playing a solo melody with delay on it. This song may be playing at home creating a song in a DAW.", "data_idx": 4379, "number": 0, "label": "blues"} +{"file_name": "train_07915.png", "caption": "Someone is playing an acoustic guitar finger picking a melody. On top of that, a distorted e-guitar is playing a solo melody with delay on it. This song may be playing at home creating a song in a DAW.", "data_idx": 4379, "number": 1, "label": "blues"} +{"file_name": "train_07916.png", "caption": "Someone is playing an acoustic guitar finger picking a melody. On top of that, a distorted e-guitar is playing a solo melody with delay on it. This song may be playing at home creating a song in a DAW.", "data_idx": 4379, "number": 2, "label": "blues"} +{"file_name": "train_07917.png", "caption": "Someone is playing an acoustic guitar finger picking a melody. On top of that, a distorted e-guitar is playing a solo melody with delay on it. This song may be playing at home creating a song in a DAW.", "data_idx": 4379, "number": 3, "label": "blues"} +{"file_name": "train_07918.png", "caption": "This is an instrumental music piece with Chinese characteristics. The main tune is being played by a small xiao flute. There is a mellow acoustic guitar backing keeping a repeated theme in the background. The song is played on a major scale, giving it a feeling of hopefulness. The atmosphere of the song is soothing. This piece could be played as an opening soundtrack for a romantic anime movie.", "data_idx": 4380, "number": 0, "label": "classical"} +{"file_name": "train_07919.png", "caption": "This is an instrumental music piece with Chinese characteristics. The main tune is being played by a small xiao flute. There is a mellow acoustic guitar backing keeping a repeated theme in the background. The song is played on a major scale, giving it a feeling of hopefulness. The atmosphere of the song is soothing. This piece could be played as an opening soundtrack for a romantic anime movie.", "data_idx": 4380, "number": 1, "label": "classical"} +{"file_name": "train_07920.png", "caption": "The low quality recording features a jazz song playing on a speaker and it consists of groovy hi hats, brass melody, bells melody, punchy snare and smooth trombone. The recording is noisy and it sounds thin and like it is played in a lobby.", "data_idx": 4381, "number": 0, "label": "pop"} +{"file_name": "train_07921.png", "caption": "The low quality recording features a jazz song playing on a speaker and it consists of groovy hi hats, brass melody, bells melody, punchy snare and smooth trombone. The recording is noisy and it sounds thin and like it is played in a lobby.", "data_idx": 4381, "number": 1, "label": "pop"} +{"file_name": "train_07922.png", "caption": "The low quality recording features a jazz song playing on a speaker and it consists of groovy hi hats, brass melody, bells melody, punchy snare and smooth trombone. The recording is noisy and it sounds thin and like it is played in a lobby.", "data_idx": 4381, "number": 2, "label": "pop"} +{"file_name": "train_07923.png", "caption": "The low quality recording features a jazz song playing on a speaker and it consists of groovy hi hats, brass melody, bells melody, punchy snare and smooth trombone. The recording is noisy and it sounds thin and like it is played in a lobby.", "data_idx": 4381, "number": 3, "label": "pop"} +{"file_name": "train_07924.png", "caption": "A full orchestra is playing a descending melody with a string section, a horn section and oboes. Then you can hear something falling to the ground and breaking. This may be playing in a sad disnemovie scene.", "data_idx": 4384, "number": 0, "label": "classical"} +{"file_name": "train_07925.png", "caption": "A full orchestra is playing a descending melody with a string section, a horn section and oboes. Then you can hear something falling to the ground and breaking. This may be playing in a sad disnemovie scene.", "data_idx": 4384, "number": 1, "label": "classical"} +{"file_name": "train_07926.png", "caption": "A full orchestra is playing a descending melody with a string section, a horn section and oboes. Then you can hear something falling to the ground and breaking. This may be playing in a sad disnemovie scene.", "data_idx": 4384, "number": 2, "label": "classical"} +{"file_name": "train_07927.png", "caption": "A full orchestra is playing a descending melody with a string section, a horn section and oboes. Then you can hear something falling to the ground and breaking. This may be playing in a sad disnemovie scene.", "data_idx": 4384, "number": 3, "label": "classical"} +{"file_name": "train_07928.png", "caption": "This song is an electronic instrumental. The song is fast tempo with vigorous drumming and electronic instrumentation and synthesiser articulation with catchy synthesised vocal riff which. The song is upbeat, vibrant, vivacious, vigorous, psychedelic, enigmatic and youthful with a trance like dance vibe. This song is an EDM/Synth pop.", "data_idx": 4386, "number": 0, "label": "hiphop"} +{"file_name": "train_07929.png", "caption": "This song is an electronic instrumental. The song is fast tempo with vigorous drumming and electronic instrumentation and synthesiser articulation with catchy synthesised vocal riff which. The song is upbeat, vibrant, vivacious, vigorous, psychedelic, enigmatic and youthful with a trance like dance vibe. This song is an EDM/Synth pop.", "data_idx": 4386, "number": 1, "label": "hiphop"} +{"file_name": "train_07930.png", "caption": "This song is an electronic instrumental. The song is fast tempo with vigorous drumming and electronic instrumentation and synthesiser articulation with catchy synthesised vocal riff which. The song is upbeat, vibrant, vivacious, vigorous, psychedelic, enigmatic and youthful with a trance like dance vibe. This song is an EDM/Synth pop.", "data_idx": 4386, "number": 2, "label": "hiphop"} +{"file_name": "train_07931.png", "caption": "This song is an electronic instrumental. The song is fast tempo with vigorous drumming and electronic instrumentation and synthesiser articulation with catchy synthesised vocal riff which. The song is upbeat, vibrant, vivacious, vigorous, psychedelic, enigmatic and youthful with a trance like dance vibe. This song is an EDM/Synth pop.", "data_idx": 4386, "number": 3, "label": "hiphop"} +{"file_name": "train_07932.png", "caption": "The low quality recording features an uptempo rock song that consists of suspenseful electric guitar melody, punchy snare, simple kick pattern, groovy bass guitar, tinny percussive elements and passionate male vocal singing over it. The recording is in mono and it sounds energetic, groovy and like something you would dance to with your friends.", "data_idx": 4387, "number": 0, "label": "disco"} +{"file_name": "train_07933.png", "caption": "The low quality recording features an uptempo rock song that consists of suspenseful electric guitar melody, punchy snare, simple kick pattern, groovy bass guitar, tinny percussive elements and passionate male vocal singing over it. The recording is in mono and it sounds energetic, groovy and like something you would dance to with your friends.", "data_idx": 4387, "number": 1, "label": "disco"} +{"file_name": "train_07934.png", "caption": "The low quality recording features an uptempo rock song that consists of suspenseful electric guitar melody, punchy snare, simple kick pattern, groovy bass guitar, tinny percussive elements and passionate male vocal singing over it. The recording is in mono and it sounds energetic, groovy and like something you would dance to with your friends.", "data_idx": 4387, "number": 2, "label": "disco"} +{"file_name": "train_07935.png", "caption": "The low quality recording features an uptempo rock song that consists of suspenseful electric guitar melody, punchy snare, simple kick pattern, groovy bass guitar, tinny percussive elements and passionate male vocal singing over it. The recording is in mono and it sounds energetic, groovy and like something you would dance to with your friends.", "data_idx": 4387, "number": 3, "label": "disco"} +{"file_name": "train_07936.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of a passionate male vocalist singing over acoustic rhythm guitar. There are some crowd chattering and asphalt sounds in the background. The recording is noisy, in mono and it sounds passionate and emotional.", "data_idx": 4388, "number": 0, "label": "classical"} +{"file_name": "train_07937.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of a passionate male vocalist singing over acoustic rhythm guitar. There are some crowd chattering and asphalt sounds in the background. The recording is noisy, in mono and it sounds passionate and emotional.", "data_idx": 4388, "number": 1, "label": "classical"} +{"file_name": "train_07938.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of a passionate male vocalist singing over acoustic rhythm guitar. There are some crowd chattering and asphalt sounds in the background. The recording is noisy, in mono and it sounds passionate and emotional.", "data_idx": 4388, "number": 2, "label": "classical"} +{"file_name": "train_07939.png", "caption": "The low quality recording features a cover of a regional Mexican song and it consists of a passionate male vocalist singing over acoustic rhythm guitar. There are some crowd chattering and asphalt sounds in the background. The recording is noisy, in mono and it sounds passionate and emotional.", "data_idx": 4388, "number": 3, "label": "classical"} +{"file_name": "train_07940.png", "caption": "A male vocalist sings this soft pop. The tempo is medium with an acoustic guitar accompaniment and sound of static in the background. The song has simple lyrics and melody . It is informative and educational. This song is a Children\u2019s song/Alternative Pop.", "data_idx": 4389, "number": 0, "label": "rock"} +{"file_name": "train_07941.png", "caption": "A male vocalist sings this soft pop. The tempo is medium with an acoustic guitar accompaniment and sound of static in the background. The song has simple lyrics and melody . It is informative and educational. This song is a Children\u2019s song/Alternative Pop.", "data_idx": 4389, "number": 1, "label": "rock"} +{"file_name": "train_07942.png", "caption": "A male vocalist sings this soft pop. The tempo is medium with an acoustic guitar accompaniment and sound of static in the background. The song has simple lyrics and melody . It is informative and educational. This song is a Children\u2019s song/Alternative Pop.", "data_idx": 4389, "number": 2, "label": "rock"} +{"file_name": "train_07943.png", "caption": "A male vocalist sings this soft pop. The tempo is medium with an acoustic guitar accompaniment and sound of static in the background. The song has simple lyrics and melody . It is informative and educational. This song is a Children\u2019s song/Alternative Pop.", "data_idx": 4389, "number": 3, "label": "rock"} +{"file_name": "train_07944.png", "caption": "This is an Arabian themed instrumental music piece. The tune is played by a virtual eastern-sounding instrument while there is a virtual strings backing for the bass notes. The rhythmic background consists of a repeated percussion beat. There is an intriguing feel coming from the back-and-forth movement of the tune. The piece could be used in an eastern historical drama.", "data_idx": 4390, "number": 0, "label": "disco"} +{"file_name": "train_07945.png", "caption": "This is an Arabian themed instrumental music piece. The tune is played by a virtual eastern-sounding instrument while there is a virtual strings backing for the bass notes. The rhythmic background consists of a repeated percussion beat. There is an intriguing feel coming from the back-and-forth movement of the tune. The piece could be used in an eastern historical drama.", "data_idx": 4390, "number": 1, "label": "disco"} +{"file_name": "train_07946.png", "caption": "This is an Arabian themed instrumental music piece. The tune is played by a virtual eastern-sounding instrument while there is a virtual strings backing for the bass notes. The rhythmic background consists of a repeated percussion beat. There is an intriguing feel coming from the back-and-forth movement of the tune. The piece could be used in an eastern historical drama.", "data_idx": 4390, "number": 2, "label": "disco"} +{"file_name": "train_07947.png", "caption": "This is an Arabian themed instrumental music piece. The tune is played by a virtual eastern-sounding instrument while there is a virtual strings backing for the bass notes. The rhythmic background consists of a repeated percussion beat. There is an intriguing feel coming from the back-and-forth movement of the tune. The piece could be used in an eastern historical drama.", "data_idx": 4390, "number": 3, "label": "disco"} +{"file_name": "train_07948.png", "caption": "The song is an instrumental. The tempo is fast with trumpets playing percussively along with other brass instruments, piano accompaniment, groovy bass line jazz drumming rhythm. The song is energetic and passionate. The song is a retro big band jazz classic with poor audio quality.", "data_idx": 4391, "number": 0, "label": "classical"} +{"file_name": "train_07949.png", "caption": "The song is an instrumental. The tempo is fast with trumpets playing percussively along with other brass instruments, piano accompaniment, groovy bass line jazz drumming rhythm. The song is energetic and passionate. The song is a retro big band jazz classic with poor audio quality.", "data_idx": 4391, "number": 1, "label": "classical"} +{"file_name": "train_07950.png", "caption": "The song is an instrumental. The tempo is fast with trumpets playing percussively along with other brass instruments, piano accompaniment, groovy bass line jazz drumming rhythm. The song is energetic and passionate. The song is a retro big band jazz classic with poor audio quality.", "data_idx": 4391, "number": 2, "label": "classical"} +{"file_name": "train_07951.png", "caption": "The song is an instrumental. The tempo is fast with trumpets playing percussively along with other brass instruments, piano accompaniment, groovy bass line jazz drumming rhythm. The song is energetic and passionate. The song is a retro big band jazz classic with poor audio quality.", "data_idx": 4391, "number": 3, "label": "classical"} +{"file_name": "train_07952.png", "caption": "The low quality recording features a rock song that consists of groovy electric guitar chord progression, smooth bass guitar, punchy snare and kick hits, shimmering hi hats and flat female vocals singing over it. At the end of the first half of the loop, there is a short snare roll alongside glissando organ keys melody, sliding perfectly into the next section, which begins with the energetic crash hit. It sounds energetic, groovy, and kind of vintage and warm, since it really sounds old - especially because the song is in mono.", "data_idx": 4392, "number": 0, "label": "disco"} +{"file_name": "train_07953.png", "caption": "The low quality recording features a rock song that consists of groovy electric guitar chord progression, smooth bass guitar, punchy snare and kick hits, shimmering hi hats and flat female vocals singing over it. At the end of the first half of the loop, there is a short snare roll alongside glissando organ keys melody, sliding perfectly into the next section, which begins with the energetic crash hit. It sounds energetic, groovy, and kind of vintage and warm, since it really sounds old - especially because the song is in mono.", "data_idx": 4392, "number": 1, "label": "disco"} diff --git a/data/train/metadata_0017.jsonl b/data/train/metadata_0017.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a095450890db839f02c343c5c418b54abf4416c6 --- /dev/null +++ b/data/train/metadata_0017.jsonl @@ -0,0 +1,326 @@ +{"file_name": "train_07954.png", "caption": "The song is a movie soundtrack. Violins play in a mysterious harmony while ambient room noises are heard. Groaning, screams of agony, shouts, metal cupboards falling, glass shattering and wrecking noses are heard. The track is an animated movie sound track and of poor quality.", "data_idx": 4401, "number": 0, "label": "hiphop"} +{"file_name": "train_07955.png", "caption": "The song is a movie soundtrack. Violins play in a mysterious harmony while ambient room noises are heard. Groaning, screams of agony, shouts, metal cupboards falling, glass shattering and wrecking noses are heard. The track is an animated movie sound track and of poor quality.", "data_idx": 4401, "number": 1, "label": "hiphop"} +{"file_name": "train_07956.png", "caption": "The song is a movie soundtrack. Violins play in a mysterious harmony while ambient room noises are heard. Groaning, screams of agony, shouts, metal cupboards falling, glass shattering and wrecking noses are heard. The track is an animated movie sound track and of poor quality.", "data_idx": 4401, "number": 2, "label": "hiphop"} +{"file_name": "train_07957.png", "caption": "The song is a movie soundtrack. Violins play in a mysterious harmony while ambient room noises are heard. Groaning, screams of agony, shouts, metal cupboards falling, glass shattering and wrecking noses are heard. The track is an animated movie sound track and of poor quality.", "data_idx": 4401, "number": 3, "label": "hiphop"} +{"file_name": "train_07958.png", "caption": "This pop ballad features two male voices singing in octaves. This is accompanied by percussion playing a simple beat. A bass plays the root notes of the chords. A piano plays the chords by striking them just once per bar. When the voice pauses between verses, another voice sings descending pattern vocables in falsetto. When the main voice resumes, a synth fill is played along with a muted guitar. The rest of the instruments continue to play their respective parts. This song has a romantic mood. This song can be played in a romantic movie.", "data_idx": 4404, "number": 0, "label": "disco"} +{"file_name": "train_07959.png", "caption": "This pop ballad features two male voices singing in octaves. This is accompanied by percussion playing a simple beat. A bass plays the root notes of the chords. A piano plays the chords by striking them just once per bar. When the voice pauses between verses, another voice sings descending pattern vocables in falsetto. When the main voice resumes, a synth fill is played along with a muted guitar. The rest of the instruments continue to play their respective parts. This song has a romantic mood. This song can be played in a romantic movie.", "data_idx": 4404, "number": 1, "label": "disco"} +{"file_name": "train_07960.png", "caption": "This pop ballad features two male voices singing in octaves. This is accompanied by percussion playing a simple beat. A bass plays the root notes of the chords. A piano plays the chords by striking them just once per bar. When the voice pauses between verses, another voice sings descending pattern vocables in falsetto. When the main voice resumes, a synth fill is played along with a muted guitar. The rest of the instruments continue to play their respective parts. This song has a romantic mood. This song can be played in a romantic movie.", "data_idx": 4404, "number": 2, "label": "disco"} +{"file_name": "train_07961.png", "caption": "This pop ballad features two male voices singing in octaves. This is accompanied by percussion playing a simple beat. A bass plays the root notes of the chords. A piano plays the chords by striking them just once per bar. When the voice pauses between verses, another voice sings descending pattern vocables in falsetto. When the main voice resumes, a synth fill is played along with a muted guitar. The rest of the instruments continue to play their respective parts. This song has a romantic mood. This song can be played in a romantic movie.", "data_idx": 4404, "number": 3, "label": "disco"} +{"file_name": "train_07962.png", "caption": "The low quality recording features a synth wave disco instrumental that consists of punchy \"4 on the floor\" kick patter, reverberant snare hits, shimmering hi hats, widely spread high pitched synth lead, groovy synth bass and repetitive percussive element. It is noisy, but also energetic and groovy- like something you would hear in a disco club.", "data_idx": 4409, "number": 0, "label": "disco"} +{"file_name": "train_07963.png", "caption": "The low quality recording features a synth wave disco instrumental that consists of punchy \"4 on the floor\" kick patter, reverberant snare hits, shimmering hi hats, widely spread high pitched synth lead, groovy synth bass and repetitive percussive element. It is noisy, but also energetic and groovy- like something you would hear in a disco club.", "data_idx": 4409, "number": 1, "label": "disco"} +{"file_name": "train_07964.png", "caption": "The low quality recording features a synth wave disco instrumental that consists of punchy \"4 on the floor\" kick patter, reverberant snare hits, shimmering hi hats, widely spread high pitched synth lead, groovy synth bass and repetitive percussive element. It is noisy, but also energetic and groovy- like something you would hear in a disco club.", "data_idx": 4409, "number": 2, "label": "disco"} +{"file_name": "train_07965.png", "caption": "The low quality recording features a synth wave disco instrumental that consists of punchy \"4 on the floor\" kick patter, reverberant snare hits, shimmering hi hats, widely spread high pitched synth lead, groovy synth bass and repetitive percussive element. It is noisy, but also energetic and groovy- like something you would hear in a disco club.", "data_idx": 4409, "number": 3, "label": "disco"} +{"file_name": "train_07966.png", "caption": "This is a dance music compilation. There is a variety of music pieces ranging from pop to electronic to folk. The sounds made by the shoes of the dancers can also be heard. The atmosphere is rather random. Parts of this recording could be lifted as samples to be used in beat-making.", "data_idx": 4410, "number": 0, "label": "reggae"} +{"file_name": "train_07967.png", "caption": "This is a dance music compilation. There is a variety of music pieces ranging from pop to electronic to folk. The sounds made by the shoes of the dancers can also be heard. The atmosphere is rather random. Parts of this recording could be lifted as samples to be used in beat-making.", "data_idx": 4410, "number": 1, "label": "reggae"} +{"file_name": "train_07968.png", "caption": "This is a dance music compilation. There is a variety of music pieces ranging from pop to electronic to folk. The sounds made by the shoes of the dancers can also be heard. The atmosphere is rather random. Parts of this recording could be lifted as samples to be used in beat-making.", "data_idx": 4410, "number": 2, "label": "reggae"} +{"file_name": "train_07969.png", "caption": "This is a dance music compilation. There is a variety of music pieces ranging from pop to electronic to folk. The sounds made by the shoes of the dancers can also be heard. The atmosphere is rather random. Parts of this recording could be lifted as samples to be used in beat-making.", "data_idx": 4410, "number": 3, "label": "reggae"} +{"file_name": "train_07970.png", "caption": "This orchestral music features violins playing the main melody using staccato notes. The volume of the violins increases over time in the song. The bass plays a booming note on the alternate count of every bar. The bass resonates like a heartbeat. A single percussion beat is played on the second count of the second bar. There is the sound of a victory chant in the background. This song is at a slow tempo. This song can be used in the trailer of an epic movie.", "data_idx": 4414, "number": 0, "label": "classical"} +{"file_name": "train_07971.png", "caption": "This orchestral music features violins playing the main melody using staccato notes. The volume of the violins increases over time in the song. The bass plays a booming note on the alternate count of every bar. The bass resonates like a heartbeat. A single percussion beat is played on the second count of the second bar. There is the sound of a victory chant in the background. This song is at a slow tempo. This song can be used in the trailer of an epic movie.", "data_idx": 4414, "number": 1, "label": "classical"} +{"file_name": "train_07972.png", "caption": "This orchestral music features violins playing the main melody using staccato notes. The volume of the violins increases over time in the song. The bass plays a booming note on the alternate count of every bar. The bass resonates like a heartbeat. A single percussion beat is played on the second count of the second bar. There is the sound of a victory chant in the background. This song is at a slow tempo. This song can be used in the trailer of an epic movie.", "data_idx": 4414, "number": 2, "label": "classical"} +{"file_name": "train_07973.png", "caption": "This orchestral music features violins playing the main melody using staccato notes. The volume of the violins increases over time in the song. The bass plays a booming note on the alternate count of every bar. The bass resonates like a heartbeat. A single percussion beat is played on the second count of the second bar. There is the sound of a victory chant in the background. This song is at a slow tempo. This song can be used in the trailer of an epic movie.", "data_idx": 4414, "number": 3, "label": "classical"} +{"file_name": "train_07974.png", "caption": "Latin electronic music with a Cumbia feel featuring an autotuned male vocal, female vocal response and syncopated drum pattern with a large room ambience which is muffling the music.", "data_idx": 4416, "number": 0, "label": "classical"} +{"file_name": "train_07975.png", "caption": "Latin electronic music with a Cumbia feel featuring an autotuned male vocal, female vocal response and syncopated drum pattern with a large room ambience which is muffling the music.", "data_idx": 4416, "number": 1, "label": "classical"} +{"file_name": "train_07976.png", "caption": "Latin electronic music with a Cumbia feel featuring an autotuned male vocal, female vocal response and syncopated drum pattern with a large room ambience which is muffling the music.", "data_idx": 4416, "number": 2, "label": "classical"} +{"file_name": "train_07977.png", "caption": "Latin electronic music with a Cumbia feel featuring an autotuned male vocal, female vocal response and syncopated drum pattern with a large room ambience which is muffling the music.", "data_idx": 4416, "number": 3, "label": "classical"} +{"file_name": "train_07978.png", "caption": "This is a famous disco piece. There are female vocals singing the lyrics joyfully. The main tune is played in major scale by a keyboard while it is supported by a syncopated synth bass in the background. The rhythm is kept by a repetitive electronic drum beat accompanied by percussion. The atmosphere is groovy and danceable. It is perfect for an 80s themed party setlist. It could also be playing in the background of an 80s themed bar.", "data_idx": 4417, "number": 0, "label": "disco"} +{"file_name": "train_07979.png", "caption": "This is a famous disco piece. There are female vocals singing the lyrics joyfully. The main tune is played in major scale by a keyboard while it is supported by a syncopated synth bass in the background. The rhythm is kept by a repetitive electronic drum beat accompanied by percussion. The atmosphere is groovy and danceable. It is perfect for an 80s themed party setlist. It could also be playing in the background of an 80s themed bar.", "data_idx": 4417, "number": 1, "label": "disco"} +{"file_name": "train_07980.png", "caption": "This is a famous disco piece. There are female vocals singing the lyrics joyfully. The main tune is played in major scale by a keyboard while it is supported by a syncopated synth bass in the background. The rhythm is kept by a repetitive electronic drum beat accompanied by percussion. The atmosphere is groovy and danceable. It is perfect for an 80s themed party setlist. It could also be playing in the background of an 80s themed bar.", "data_idx": 4417, "number": 2, "label": "disco"} +{"file_name": "train_07981.png", "caption": "This is a famous disco piece. There are female vocals singing the lyrics joyfully. The main tune is played in major scale by a keyboard while it is supported by a syncopated synth bass in the background. The rhythm is kept by a repetitive electronic drum beat accompanied by percussion. The atmosphere is groovy and danceable. It is perfect for an 80s themed party setlist. It could also be playing in the background of an 80s themed bar.", "data_idx": 4417, "number": 3, "label": "disco"} +{"file_name": "train_07982.png", "caption": "An acoustic piano is playing a melody along with a flute-sound and an acoustic guitar picking two notes repeatedly. Then the song breaks softly into a new part as the acoustic guitar and piano are fading out. In the background you can hear some insects chirping. Now an electric piano sound is playing a melody along with a male voice singing. His voice sounds sensitive. This song may be playing for a movie scene.", "data_idx": 4418, "number": 0, "label": "blues"} +{"file_name": "train_07983.png", "caption": "An acoustic piano is playing a melody along with a flute-sound and an acoustic guitar picking two notes repeatedly. Then the song breaks softly into a new part as the acoustic guitar and piano are fading out. In the background you can hear some insects chirping. Now an electric piano sound is playing a melody along with a male voice singing. His voice sounds sensitive. This song may be playing for a movie scene.", "data_idx": 4418, "number": 1, "label": "blues"} +{"file_name": "train_07984.png", "caption": "An acoustic piano is playing a melody along with a flute-sound and an acoustic guitar picking two notes repeatedly. Then the song breaks softly into a new part as the acoustic guitar and piano are fading out. In the background you can hear some insects chirping. Now an electric piano sound is playing a melody along with a male voice singing. His voice sounds sensitive. This song may be playing for a movie scene.", "data_idx": 4418, "number": 2, "label": "blues"} +{"file_name": "train_07985.png", "caption": "An acoustic piano is playing a melody along with a flute-sound and an acoustic guitar picking two notes repeatedly. Then the song breaks softly into a new part as the acoustic guitar and piano are fading out. In the background you can hear some insects chirping. Now an electric piano sound is playing a melody along with a male voice singing. His voice sounds sensitive. This song may be playing for a movie scene.", "data_idx": 4418, "number": 3, "label": "blues"} +{"file_name": "train_07986.png", "caption": "A synthesizer lead sound is being played loudly and not in tune with the background music that sounds like a folklore song. This song may be playing at home practicing.", "data_idx": 4420, "number": 0, "label": "classical"} +{"file_name": "train_07987.png", "caption": "A synthesizer lead sound is being played loudly and not in tune with the background music that sounds like a folklore song. This song may be playing at home practicing.", "data_idx": 4420, "number": 1, "label": "classical"} +{"file_name": "train_07988.png", "caption": "A synthesizer lead sound is being played loudly and not in tune with the background music that sounds like a folklore song. This song may be playing at home practicing.", "data_idx": 4420, "number": 2, "label": "classical"} +{"file_name": "train_07989.png", "caption": "A synthesizer lead sound is being played loudly and not in tune with the background music that sounds like a folklore song. This song may be playing at home practicing.", "data_idx": 4420, "number": 3, "label": "classical"} +{"file_name": "train_07990.png", "caption": "This is an acoustic performance of a k-pop piece. The lead is a male vocal that is singing gently and melodically in the Korean language. He is also playing an acoustic guitar as the melodic background of the piece. The song is in the major scale which gives it this positive and uplifting aura. This piece could be used in the soundtrack of a coming-of-age/teenage drama TV series that takes place in Korea. It could also be playing in the background of a coffee house.", "data_idx": 4424, "number": 0, "label": "blues"} +{"file_name": "train_07991.png", "caption": "This is an acoustic performance of a k-pop piece. The lead is a male vocal that is singing gently and melodically in the Korean language. He is also playing an acoustic guitar as the melodic background of the piece. The song is in the major scale which gives it this positive and uplifting aura. This piece could be used in the soundtrack of a coming-of-age/teenage drama TV series that takes place in Korea. It could also be playing in the background of a coffee house.", "data_idx": 4424, "number": 1, "label": "blues"} +{"file_name": "train_07992.png", "caption": "This is an acoustic performance of a k-pop piece. The lead is a male vocal that is singing gently and melodically in the Korean language. He is also playing an acoustic guitar as the melodic background of the piece. The song is in the major scale which gives it this positive and uplifting aura. This piece could be used in the soundtrack of a coming-of-age/teenage drama TV series that takes place in Korea. It could also be playing in the background of a coffee house.", "data_idx": 4424, "number": 2, "label": "blues"} +{"file_name": "train_07993.png", "caption": "This is an acoustic performance of a k-pop piece. The lead is a male vocal that is singing gently and melodically in the Korean language. He is also playing an acoustic guitar as the melodic background of the piece. The song is in the major scale which gives it this positive and uplifting aura. This piece could be used in the soundtrack of a coming-of-age/teenage drama TV series that takes place in Korea. It could also be playing in the background of a coffee house.", "data_idx": 4424, "number": 3, "label": "blues"} +{"file_name": "train_07994.png", "caption": "The song is an instrumental. The song is medium tempo with steel pan playing melody, guitar strumming and steady percussion rhythm. The song is exciting and calming. The song is a live band performing tropical Caribbean tunes.", "data_idx": 4425, "number": 0, "label": "jazz"} +{"file_name": "train_07995.png", "caption": "The song is an instrumental. The song is medium tempo with steel pan playing melody, guitar strumming and steady percussion rhythm. The song is exciting and calming. The song is a live band performing tropical Caribbean tunes.", "data_idx": 4425, "number": 1, "label": "jazz"} +{"file_name": "train_07996.png", "caption": "The song is an instrumental. The song is medium tempo with steel pan playing melody, guitar strumming and steady percussion rhythm. The song is exciting and calming. The song is a live band performing tropical Caribbean tunes.", "data_idx": 4425, "number": 2, "label": "jazz"} +{"file_name": "train_07997.png", "caption": "The song is an instrumental. The song is medium tempo with steel pan playing melody, guitar strumming and steady percussion rhythm. The song is exciting and calming. The song is a live band performing tropical Caribbean tunes.", "data_idx": 4425, "number": 3, "label": "jazz"} +{"file_name": "train_07998.png", "caption": "An acoustic piano is playing a ballad with a lot of chord changes and a male voice singing in the higher register. The whole song sounds slightly sad or sensitive. The audio-quality is very bad, it is not very clear to hear if there are other instruments playing in the background. Also is the recording full of big reverb as being played in a big hall. This song may be playing at a live concert.", "data_idx": 4427, "number": 0, "label": "classical"} +{"file_name": "train_07999.png", "caption": "An acoustic piano is playing a ballad with a lot of chord changes and a male voice singing in the higher register. The whole song sounds slightly sad or sensitive. The audio-quality is very bad, it is not very clear to hear if there are other instruments playing in the background. Also is the recording full of big reverb as being played in a big hall. This song may be playing at a live concert.", "data_idx": 4427, "number": 1, "label": "classical"} +{"file_name": "train_08000.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with enthusiastic trumpet, funky keyboard harmony, groovy bass lines, slick drumming and piano accompaniment. The song is simple,spirited, enthusiastic, energetic and buoyant. This song is an R&B/Soul.", "data_idx": 4428, "number": 0, "label": "disco"} +{"file_name": "train_08001.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with enthusiastic trumpet, funky keyboard harmony, groovy bass lines, slick drumming and piano accompaniment. The song is simple,spirited, enthusiastic, energetic and buoyant. This song is an R&B/Soul.", "data_idx": 4428, "number": 1, "label": "disco"} +{"file_name": "train_08002.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with enthusiastic trumpet, funky keyboard harmony, groovy bass lines, slick drumming and piano accompaniment. The song is simple,spirited, enthusiastic, energetic and buoyant. This song is an R&B/Soul.", "data_idx": 4428, "number": 2, "label": "disco"} +{"file_name": "train_08003.png", "caption": "A male vocalist sings this spirited song. The tempo is medium fast with enthusiastic trumpet, funky keyboard harmony, groovy bass lines, slick drumming and piano accompaniment. The song is simple,spirited, enthusiastic, energetic and buoyant. This song is an R&B/Soul.", "data_idx": 4428, "number": 3, "label": "disco"} +{"file_name": "train_08004.png", "caption": "The Pop song features a flat male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering hi hats, energetic crash cymbals, groovy piano chords and widely spread acoustic guitar melody. It sounds smooth, uplifting and addictive thanks to those harmonizing vocals.", "data_idx": 4429, "number": 0, "label": "country"} +{"file_name": "train_08005.png", "caption": "The Pop song features a flat male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering hi hats, energetic crash cymbals, groovy piano chords and widely spread acoustic guitar melody. It sounds smooth, uplifting and addictive thanks to those harmonizing vocals.", "data_idx": 4429, "number": 1, "label": "country"} +{"file_name": "train_08006.png", "caption": "The Pop song features a flat male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering hi hats, energetic crash cymbals, groovy piano chords and widely spread acoustic guitar melody. It sounds smooth, uplifting and addictive thanks to those harmonizing vocals.", "data_idx": 4429, "number": 2, "label": "country"} +{"file_name": "train_08007.png", "caption": "The Pop song features a flat male vocal, alongside wide harmonizing background vocals, singing over punchy kick and snare hits, shimmering hi hats, energetic crash cymbals, groovy piano chords and widely spread acoustic guitar melody. It sounds smooth, uplifting and addictive thanks to those harmonizing vocals.", "data_idx": 4429, "number": 3, "label": "country"} +{"file_name": "train_08008.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate female vocal singing over subtle strings melody. It is a bit reverberant as it was recorded in a larger room, but also relaxing and calming - like something you would meditate to.", "data_idx": 4431, "number": 0, "label": "country"} +{"file_name": "train_08009.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate female vocal singing over subtle strings melody. It is a bit reverberant as it was recorded in a larger room, but also relaxing and calming - like something you would meditate to.", "data_idx": 4431, "number": 1, "label": "country"} +{"file_name": "train_08010.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate female vocal singing over subtle strings melody. It is a bit reverberant as it was recorded in a larger room, but also relaxing and calming - like something you would meditate to.", "data_idx": 4431, "number": 2, "label": "country"} +{"file_name": "train_08011.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate female vocal singing over subtle strings melody. It is a bit reverberant as it was recorded in a larger room, but also relaxing and calming - like something you would meditate to.", "data_idx": 4431, "number": 3, "label": "country"} +{"file_name": "train_08012.png", "caption": "This song contains a fast drum&bass drum that gets supported by a bass and a synthlead sound on top of it. Both play the same melody. Some different samples get drowned in. They sound like dog-barks that have been processed with effects and a lower bitrate. In the background different sound-effects are rising up in pitch. This song sounds hectic and energetic. This song may be playing in a dance club.", "data_idx": 4432, "number": 0, "label": "disco"} +{"file_name": "train_08013.png", "caption": "This song contains a fast drum&bass drum that gets supported by a bass and a synthlead sound on top of it. Both play the same melody. Some different samples get drowned in. They sound like dog-barks that have been processed with effects and a lower bitrate. In the background different sound-effects are rising up in pitch. This song sounds hectic and energetic. This song may be playing in a dance club.", "data_idx": 4432, "number": 1, "label": "disco"} +{"file_name": "train_08014.png", "caption": "This song contains a fast drum&bass drum that gets supported by a bass and a synthlead sound on top of it. Both play the same melody. Some different samples get drowned in. They sound like dog-barks that have been processed with effects and a lower bitrate. In the background different sound-effects are rising up in pitch. This song sounds hectic and energetic. This song may be playing in a dance club.", "data_idx": 4432, "number": 2, "label": "disco"} +{"file_name": "train_08015.png", "caption": "This song contains a fast drum&bass drum that gets supported by a bass and a synthlead sound on top of it. Both play the same melody. Some different samples get drowned in. They sound like dog-barks that have been processed with effects and a lower bitrate. In the background different sound-effects are rising up in pitch. This song sounds hectic and energetic. This song may be playing in a dance club.", "data_idx": 4432, "number": 3, "label": "disco"} +{"file_name": "train_08016.png", "caption": "This song contains a four on the floor kick with a monotone and simple bassline. This song is produced in lower sound quality and the recording is clipping a little bit. This song may be played at a private houseparty.", "data_idx": 4434, "number": 0, "label": "hiphop"} +{"file_name": "train_08017.png", "caption": "This song contains a four on the floor kick with a monotone and simple bassline. This song is produced in lower sound quality and the recording is clipping a little bit. This song may be played at a private houseparty.", "data_idx": 4434, "number": 1, "label": "hiphop"} +{"file_name": "train_08018.png", "caption": "This song contains a four on the floor kick with a monotone and simple bassline. This song is produced in lower sound quality and the recording is clipping a little bit. This song may be played at a private houseparty.", "data_idx": 4434, "number": 2, "label": "hiphop"} +{"file_name": "train_08019.png", "caption": "This song contains a four on the floor kick with a monotone and simple bassline. This song is produced in lower sound quality and the recording is clipping a little bit. This song may be played at a private houseparty.", "data_idx": 4434, "number": 3, "label": "hiphop"} +{"file_name": "train_08020.png", "caption": "This is an alternative rock piece. There is a male vocal singing at a low-to-medium pitch. There is a groovy electric guitar riff playing the main melody. There is a strong bass guitar playing alongside it. In the rhythmic background, there is a simple acoustic drum beat. There is a generic, urban atmosphere. This piece could be used in advertisement jingles and in the soundtracks of teenage drama movies and TV shows.", "data_idx": 4438, "number": 0, "label": "hiphop"} +{"file_name": "train_08021.png", "caption": "This is an alternative rock piece. There is a male vocal singing at a low-to-medium pitch. There is a groovy electric guitar riff playing the main melody. There is a strong bass guitar playing alongside it. In the rhythmic background, there is a simple acoustic drum beat. There is a generic, urban atmosphere. This piece could be used in advertisement jingles and in the soundtracks of teenage drama movies and TV shows.", "data_idx": 4438, "number": 1, "label": "hiphop"} +{"file_name": "train_08022.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a fast keyboard harmony, boomy bass line, rhythmic drums, steel drums,congas and bongos, cymbal ride and sound of clapping. The song is upbeat, punchy, buoyant, spirited, energetic and youthful with a dance groove. This song is Latin Urbano.", "data_idx": 4441, "number": 0, "label": "hiphop"} +{"file_name": "train_08023.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a fast keyboard harmony, boomy bass line, rhythmic drums, steel drums,congas and bongos, cymbal ride and sound of clapping. The song is upbeat, punchy, buoyant, spirited, energetic and youthful with a dance groove. This song is Latin Urbano.", "data_idx": 4441, "number": 1, "label": "hiphop"} +{"file_name": "train_08024.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a fast keyboard harmony, boomy bass line, rhythmic drums, steel drums,congas and bongos, cymbal ride and sound of clapping. The song is upbeat, punchy, buoyant, spirited, energetic and youthful with a dance groove. This song is Latin Urbano.", "data_idx": 4441, "number": 2, "label": "hiphop"} +{"file_name": "train_08025.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with a fast keyboard harmony, boomy bass line, rhythmic drums, steel drums,congas and bongos, cymbal ride and sound of clapping. The song is upbeat, punchy, buoyant, spirited, energetic and youthful with a dance groove. This song is Latin Urbano.", "data_idx": 4441, "number": 3, "label": "hiphop"} +{"file_name": "train_08026.png", "caption": "The low quality recording features a hip hop song that consists of synth keys melody, punchy kick, punchy muffled snare, shimmering open hat and shakers and short toms roll. It sounds groovy and easygoing, like something you would listen to when riding a car.", "data_idx": 4442, "number": 0, "label": "reggae"} +{"file_name": "train_08027.png", "caption": "The low quality recording features a hip hop song that consists of synth keys melody, punchy kick, punchy muffled snare, shimmering open hat and shakers and short toms roll. It sounds groovy and easygoing, like something you would listen to when riding a car.", "data_idx": 4442, "number": 1, "label": "reggae"} +{"file_name": "train_08028.png", "caption": "The low quality recording features a hip hop song that consists of synth keys melody, punchy kick, punchy muffled snare, shimmering open hat and shakers and short toms roll. It sounds groovy and easygoing, like something you would listen to when riding a car.", "data_idx": 4442, "number": 2, "label": "reggae"} +{"file_name": "train_08029.png", "caption": "The low quality recording features a hip hop song that consists of synth keys melody, punchy kick, punchy muffled snare, shimmering open hat and shakers and short toms roll. It sounds groovy and easygoing, like something you would listen to when riding a car.", "data_idx": 4442, "number": 3, "label": "reggae"} +{"file_name": "train_08030.png", "caption": "This is a high-octane blues song, with layers of intricate bluesy acoustic guitar playing. There's a slide guitar involved, and other layers of potent intense guitar playing. There's a distant filtered vocal hum which sounds like it is coming through a telephone.", "data_idx": 4444, "number": 0, "label": "rock"} +{"file_name": "train_08031.png", "caption": "This is a high-octane blues song, with layers of intricate bluesy acoustic guitar playing. There's a slide guitar involved, and other layers of potent intense guitar playing. There's a distant filtered vocal hum which sounds like it is coming through a telephone.", "data_idx": 4444, "number": 1, "label": "rock"} +{"file_name": "train_08032.png", "caption": "This is a high-octane blues song, with layers of intricate bluesy acoustic guitar playing. There's a slide guitar involved, and other layers of potent intense guitar playing. There's a distant filtered vocal hum which sounds like it is coming through a telephone.", "data_idx": 4444, "number": 2, "label": "rock"} +{"file_name": "train_08033.png", "caption": "This is a high-octane blues song, with layers of intricate bluesy acoustic guitar playing. There's a slide guitar involved, and other layers of potent intense guitar playing. There's a distant filtered vocal hum which sounds like it is coming through a telephone.", "data_idx": 4444, "number": 3, "label": "rock"} +{"file_name": "train_08034.png", "caption": "A male singer sings with a female backup singer in vocal harmony. The song is medium tempo with a yodelling medley and guitar strumming rhythm and no other instrumentation. The song is exciting and passionate. The song has poor audio quality.", "data_idx": 4447, "number": 0, "label": "rock"} +{"file_name": "train_08035.png", "caption": "A male singer sings with a female backup singer in vocal harmony. The song is medium tempo with a yodelling medley and guitar strumming rhythm and no other instrumentation. The song is exciting and passionate. The song has poor audio quality.", "data_idx": 4447, "number": 1, "label": "rock"} +{"file_name": "train_08036.png", "caption": "A male singer sings with a female backup singer in vocal harmony. The song is medium tempo with a yodelling medley and guitar strumming rhythm and no other instrumentation. The song is exciting and passionate. The song has poor audio quality.", "data_idx": 4447, "number": 2, "label": "rock"} +{"file_name": "train_08037.png", "caption": "A male singer sings with a female backup singer in vocal harmony. The song is medium tempo with a yodelling medley and guitar strumming rhythm and no other instrumentation. The song is exciting and passionate. The song has poor audio quality.", "data_idx": 4447, "number": 3, "label": "rock"} +{"file_name": "train_08038.png", "caption": "This is a multitrack acapella cover of a rock opera music piece. The same vocalist is singing different harmonies in separate tracks to create the aura of a magical experience. Usage of multiple tracks creates a vibrant atmosphere.", "data_idx": 4452, "number": 0, "label": "classical"} +{"file_name": "train_08039.png", "caption": "This is a multitrack acapella cover of a rock opera music piece. The same vocalist is singing different harmonies in separate tracks to create the aura of a magical experience. Usage of multiple tracks creates a vibrant atmosphere.", "data_idx": 4452, "number": 1, "label": "classical"} +{"file_name": "train_08040.png", "caption": "This classic pop song features a female voice singing the main melody. This is accompanied by electronic drums playing the snare. The snare is played alternating between 1 beat and two beats for every count in each bar. The bass plays a groovy lick using the root notes of the chords. Hand caps are played at different intervals in this song. At the end, a synth plays a chord, a lower chord and back to the first chord. This song has a happy feel. This song can be played in a retro movie scene involving a casino.", "data_idx": 4453, "number": 0, "label": "disco"} +{"file_name": "train_08041.png", "caption": "This classic pop song features a female voice singing the main melody. This is accompanied by electronic drums playing the snare. The snare is played alternating between 1 beat and two beats for every count in each bar. The bass plays a groovy lick using the root notes of the chords. Hand caps are played at different intervals in this song. At the end, a synth plays a chord, a lower chord and back to the first chord. This song has a happy feel. This song can be played in a retro movie scene involving a casino.", "data_idx": 4453, "number": 1, "label": "disco"} +{"file_name": "train_08042.png", "caption": "This classic pop song features a female voice singing the main melody. This is accompanied by electronic drums playing the snare. The snare is played alternating between 1 beat and two beats for every count in each bar. The bass plays a groovy lick using the root notes of the chords. Hand caps are played at different intervals in this song. At the end, a synth plays a chord, a lower chord and back to the first chord. This song has a happy feel. This song can be played in a retro movie scene involving a casino.", "data_idx": 4453, "number": 2, "label": "disco"} +{"file_name": "train_08043.png", "caption": "This classic pop song features a female voice singing the main melody. This is accompanied by electronic drums playing the snare. The snare is played alternating between 1 beat and two beats for every count in each bar. The bass plays a groovy lick using the root notes of the chords. Hand caps are played at different intervals in this song. At the end, a synth plays a chord, a lower chord and back to the first chord. This song has a happy feel. This song can be played in a retro movie scene involving a casino.", "data_idx": 4453, "number": 3, "label": "disco"} +{"file_name": "train_08044.png", "caption": "This music is a Chinese instrumental. It has a fast tempo with energetic Chinese big drums, Chinese cymbals called zhongcha,and a string instrument accompaniment. The music is spirited, enthusiastic, ceremonial, celebratory and intense.", "data_idx": 4454, "number": 0, "label": "disco"} +{"file_name": "train_08045.png", "caption": "This music is a Chinese instrumental. It has a fast tempo with energetic Chinese big drums, Chinese cymbals called zhongcha,and a string instrument accompaniment. The music is spirited, enthusiastic, ceremonial, celebratory and intense.", "data_idx": 4454, "number": 1, "label": "disco"} +{"file_name": "train_08046.png", "caption": "This music is a Chinese instrumental. It has a fast tempo with energetic Chinese big drums, Chinese cymbals called zhongcha,and a string instrument accompaniment. The music is spirited, enthusiastic, ceremonial, celebratory and intense.", "data_idx": 4454, "number": 2, "label": "disco"} +{"file_name": "train_08047.png", "caption": "This music is a Chinese instrumental. It has a fast tempo with energetic Chinese big drums, Chinese cymbals called zhongcha,and a string instrument accompaniment. The music is spirited, enthusiastic, ceremonial, celebratory and intense.", "data_idx": 4454, "number": 3, "label": "disco"} +{"file_name": "train_08048.png", "caption": "A male vocalist sings this dulcet melody. The tempo is soft with acoustic guitar, resonator, fiddle, mandolin, banjo, dobro and auto harp accompaniment, steady drumming, tambourine beats , fingers snapping and funky bass lines. The song is soft, mellow, dulcet, emotional, sentimental, soothing , pleasant and simple. The song is Country Pop.", "data_idx": 4458, "number": 0, "label": "reggae"} +{"file_name": "train_08049.png", "caption": "A male vocalist sings this dulcet melody. The tempo is soft with acoustic guitar, resonator, fiddle, mandolin, banjo, dobro and auto harp accompaniment, steady drumming, tambourine beats , fingers snapping and funky bass lines. The song is soft, mellow, dulcet, emotional, sentimental, soothing , pleasant and simple. The song is Country Pop.", "data_idx": 4458, "number": 1, "label": "reggae"} +{"file_name": "train_08050.png", "caption": "A male vocalist sings this dulcet melody. The tempo is soft with acoustic guitar, resonator, fiddle, mandolin, banjo, dobro and auto harp accompaniment, steady drumming, tambourine beats , fingers snapping and funky bass lines. The song is soft, mellow, dulcet, emotional, sentimental, soothing , pleasant and simple. The song is Country Pop.", "data_idx": 4458, "number": 2, "label": "reggae"} +{"file_name": "train_08051.png", "caption": "A male vocalist sings this dulcet melody. The tempo is soft with acoustic guitar, resonator, fiddle, mandolin, banjo, dobro and auto harp accompaniment, steady drumming, tambourine beats , fingers snapping and funky bass lines. The song is soft, mellow, dulcet, emotional, sentimental, soothing , pleasant and simple. The song is Country Pop.", "data_idx": 4458, "number": 3, "label": "reggae"} +{"file_name": "train_08052.png", "caption": "This is a latin pop song with a chipmunk effect. There is a female and a male vocal singing melodically but at a higher pitch than the original. An acoustic guitar and a bass guitar play in the melodic background while a latin electronic drum beat is in the rhythmic background. The piece is very danceable. The piece could be used at a children's dancing course as an accompaniment. It could also be used in the background of funny social media content.", "data_idx": 4460, "number": 0, "label": "reggae"} +{"file_name": "train_08053.png", "caption": "This is a latin pop song with a chipmunk effect. There is a female and a male vocal singing melodically but at a higher pitch than the original. An acoustic guitar and a bass guitar play in the melodic background while a latin electronic drum beat is in the rhythmic background. The piece is very danceable. The piece could be used at a children's dancing course as an accompaniment. It could also be used in the background of funny social media content.", "data_idx": 4460, "number": 1, "label": "reggae"} +{"file_name": "train_08054.png", "caption": "This is a latin pop song with a chipmunk effect. There is a female and a male vocal singing melodically but at a higher pitch than the original. An acoustic guitar and a bass guitar play in the melodic background while a latin electronic drum beat is in the rhythmic background. The piece is very danceable. The piece could be used at a children's dancing course as an accompaniment. It could also be used in the background of funny social media content.", "data_idx": 4460, "number": 2, "label": "reggae"} +{"file_name": "train_08055.png", "caption": "This is a latin pop song with a chipmunk effect. There is a female and a male vocal singing melodically but at a higher pitch than the original. An acoustic guitar and a bass guitar play in the melodic background while a latin electronic drum beat is in the rhythmic background. The piece is very danceable. The piece could be used at a children's dancing course as an accompaniment. It could also be used in the background of funny social media content.", "data_idx": 4460, "number": 3, "label": "reggae"} +{"file_name": "train_08056.png", "caption": "This song is an instrumental. The tempo is low with a keyboard harmony at the onset, followed by a bit of white noise. There are sounds of hissing,beeping, rattling, water splashing, thudding and frog croak. The sounds are synth articulations.", "data_idx": 4461, "number": 0, "label": "metal"} +{"file_name": "train_08057.png", "caption": "This song is an instrumental. The tempo is low with a keyboard harmony at the onset, followed by a bit of white noise. There are sounds of hissing,beeping, rattling, water splashing, thudding and frog croak. The sounds are synth articulations.", "data_idx": 4461, "number": 1, "label": "metal"} +{"file_name": "train_08058.png", "caption": "This song is an instrumental. The tempo is low with a keyboard harmony at the onset, followed by a bit of white noise. There are sounds of hissing,beeping, rattling, water splashing, thudding and frog croak. The sounds are synth articulations.", "data_idx": 4461, "number": 2, "label": "metal"} +{"file_name": "train_08059.png", "caption": "This song is an instrumental. The tempo is low with a keyboard harmony at the onset, followed by a bit of white noise. There are sounds of hissing,beeping, rattling, water splashing, thudding and frog croak. The sounds are synth articulations.", "data_idx": 4461, "number": 3, "label": "metal"} +{"file_name": "train_08060.png", "caption": "This is an instructive track to tune a guitar at double drop D tuning. A repeated single note for each string is being played. This track could be used for unnatural sounding guitar samples.", "data_idx": 4463, "number": 0, "label": "rock"} +{"file_name": "train_08061.png", "caption": "This is an instructive track to tune a guitar at double drop D tuning. A repeated single note for each string is being played. This track could be used for unnatural sounding guitar samples.", "data_idx": 4463, "number": 1, "label": "rock"} +{"file_name": "train_08062.png", "caption": "This is an instructive track to tune a guitar at double drop D tuning. A repeated single note for each string is being played. This track could be used for unnatural sounding guitar samples.", "data_idx": 4463, "number": 2, "label": "rock"} +{"file_name": "train_08063.png", "caption": "This is an instructive track to tune a guitar at double drop D tuning. A repeated single note for each string is being played. This track could be used for unnatural sounding guitar samples.", "data_idx": 4463, "number": 3, "label": "rock"} +{"file_name": "train_08064.png", "caption": "A male singer sings in an animated manner. The song is medium fast tempo with a steady drumming rhythm, brass band accompaniment, groovy bass line and guitar strumming rhythm. The song is exciting and cheerful. The song is an animated children\u2019s show tune, but a poor recording of the actual show.", "data_idx": 4466, "number": 0, "label": "rock"} +{"file_name": "train_08065.png", "caption": "A male singer sings in an animated manner. The song is medium fast tempo with a steady drumming rhythm, brass band accompaniment, groovy bass line and guitar strumming rhythm. The song is exciting and cheerful. The song is an animated children\u2019s show tune, but a poor recording of the actual show.", "data_idx": 4466, "number": 1, "label": "rock"} +{"file_name": "train_08066.png", "caption": "A male singer sings in an animated manner. The song is medium fast tempo with a steady drumming rhythm, brass band accompaniment, groovy bass line and guitar strumming rhythm. The song is exciting and cheerful. The song is an animated children\u2019s show tune, but a poor recording of the actual show.", "data_idx": 4466, "number": 2, "label": "rock"} +{"file_name": "train_08067.png", "caption": "A male singer sings in an animated manner. The song is medium fast tempo with a steady drumming rhythm, brass band accompaniment, groovy bass line and guitar strumming rhythm. The song is exciting and cheerful. The song is an animated children\u2019s show tune, but a poor recording of the actual show.", "data_idx": 4466, "number": 3, "label": "rock"} +{"file_name": "train_08068.png", "caption": "The low quality recording features an electric guitar tuning. The recording is gated so every time the guitar string is plucked it is very noisy, while in-between it is a complete silence.", "data_idx": 4467, "number": 0, "label": "hiphop"} +{"file_name": "train_08069.png", "caption": "The low quality recording features an electric guitar tuning. The recording is gated so every time the guitar string is plucked it is very noisy, while in-between it is a complete silence.", "data_idx": 4467, "number": 1, "label": "hiphop"} +{"file_name": "train_08070.png", "caption": "The low quality recording features an electric guitar tuning. The recording is gated so every time the guitar string is plucked it is very noisy, while in-between it is a complete silence.", "data_idx": 4467, "number": 2, "label": "hiphop"} +{"file_name": "train_08071.png", "caption": "The low quality recording features an electric guitar tuning. The recording is gated so every time the guitar string is plucked it is very noisy, while in-between it is a complete silence.", "data_idx": 4467, "number": 3, "label": "hiphop"} +{"file_name": "train_08072.png", "caption": "The low quality recording features a song that consists of harmonized children vocals singing over bouncy snare, saxophone solo melody, groovy bass, shimmering open hats and \"4 on the floor\" kick pattern. There are some laughing, high pitched tire screeches and car engine sound effects in the background. The recording is very noisy and the song is quiet and thin, as it lacks bass frequencies, but it still sounds fun and happy - like something you would hear in TV shows for kids.", "data_idx": 4469, "number": 0, "label": "rock"} +{"file_name": "train_08073.png", "caption": "The low quality recording features a song that consists of harmonized children vocals singing over bouncy snare, saxophone solo melody, groovy bass, shimmering open hats and \"4 on the floor\" kick pattern. There are some laughing, high pitched tire screeches and car engine sound effects in the background. The recording is very noisy and the song is quiet and thin, as it lacks bass frequencies, but it still sounds fun and happy - like something you would hear in TV shows for kids.", "data_idx": 4469, "number": 1, "label": "rock"} +{"file_name": "train_08074.png", "caption": "The low quality recording features a song that consists of harmonized children vocals singing over bouncy snare, saxophone solo melody, groovy bass, shimmering open hats and \"4 on the floor\" kick pattern. There are some laughing, high pitched tire screeches and car engine sound effects in the background. The recording is very noisy and the song is quiet and thin, as it lacks bass frequencies, but it still sounds fun and happy - like something you would hear in TV shows for kids.", "data_idx": 4469, "number": 2, "label": "rock"} +{"file_name": "train_08075.png", "caption": "The low quality recording features a song that consists of harmonized children vocals singing over bouncy snare, saxophone solo melody, groovy bass, shimmering open hats and \"4 on the floor\" kick pattern. There are some laughing, high pitched tire screeches and car engine sound effects in the background. The recording is very noisy and the song is quiet and thin, as it lacks bass frequencies, but it still sounds fun and happy - like something you would hear in TV shows for kids.", "data_idx": 4469, "number": 3, "label": "rock"} +{"file_name": "train_08076.png", "caption": "A synth is playing an arpeggio pluck with a lot of reverb rising and falling in velocity. Another synth sound is playing pads and a sub bassline. This song is full of synth sounds creating a soothing and adventurous atmosphere. This song may be playing at a festival during two songs for a buildup.", "data_idx": 4470, "number": 0, "label": "hiphop"} +{"file_name": "train_08077.png", "caption": "A synth is playing an arpeggio pluck with a lot of reverb rising and falling in velocity. Another synth sound is playing pads and a sub bassline. This song is full of synth sounds creating a soothing and adventurous atmosphere. This song may be playing at a festival during two songs for a buildup.", "data_idx": 4470, "number": 1, "label": "hiphop"} +{"file_name": "train_08078.png", "caption": "A synth is playing an arpeggio pluck with a lot of reverb rising and falling in velocity. Another synth sound is playing pads and a sub bassline. This song is full of synth sounds creating a soothing and adventurous atmosphere. This song may be playing at a festival during two songs for a buildup.", "data_idx": 4470, "number": 2, "label": "hiphop"} +{"file_name": "train_08079.png", "caption": "A synth is playing an arpeggio pluck with a lot of reverb rising and falling in velocity. Another synth sound is playing pads and a sub bassline. This song is full of synth sounds creating a soothing and adventurous atmosphere. This song may be playing at a festival during two songs for a buildup.", "data_idx": 4470, "number": 3, "label": "hiphop"} +{"file_name": "train_08080.png", "caption": "This is the cover of a neo-soul/funk music piece. The vocal track of the original piece is replaced by a theremin playing the main melody. The keyboard and the electric guitar are playing in the melodic background. The rhythmic background consists of a medium tempo electronic drum beat. The atmosphere is groovy. There is an interesting feel to it. This piece could be used in the soundtrack of a cartoon or an animation movie. It could also work well as a background music for intriguing social media content.", "data_idx": 4473, "number": 0, "label": "reggae"} +{"file_name": "train_08081.png", "caption": "This is the cover of a neo-soul/funk music piece. The vocal track of the original piece is replaced by a theremin playing the main melody. The keyboard and the electric guitar are playing in the melodic background. The rhythmic background consists of a medium tempo electronic drum beat. The atmosphere is groovy. There is an interesting feel to it. This piece could be used in the soundtrack of a cartoon or an animation movie. It could also work well as a background music for intriguing social media content.", "data_idx": 4473, "number": 1, "label": "reggae"} +{"file_name": "train_08082.png", "caption": "This is the cover of a neo-soul/funk music piece. The vocal track of the original piece is replaced by a theremin playing the main melody. The keyboard and the electric guitar are playing in the melodic background. The rhythmic background consists of a medium tempo electronic drum beat. The atmosphere is groovy. There is an interesting feel to it. This piece could be used in the soundtrack of a cartoon or an animation movie. It could also work well as a background music for intriguing social media content.", "data_idx": 4473, "number": 2, "label": "reggae"} +{"file_name": "train_08083.png", "caption": "This is the cover of a neo-soul/funk music piece. The vocal track of the original piece is replaced by a theremin playing the main melody. The keyboard and the electric guitar are playing in the melodic background. The rhythmic background consists of a medium tempo electronic drum beat. The atmosphere is groovy. There is an interesting feel to it. This piece could be used in the soundtrack of a cartoon or an animation movie. It could also work well as a background music for intriguing social media content.", "data_idx": 4473, "number": 3, "label": "reggae"} +{"file_name": "train_08084.png", "caption": "The low quality recording features an acoustic rhythm guitar being aggressively strummed, while producing some happy sounding melodies. The guitar sounds a bit hollow, almost as if it is recorded with a phone.", "data_idx": 4474, "number": 0, "label": "disco"} +{"file_name": "train_08085.png", "caption": "The low quality recording features an acoustic rhythm guitar being aggressively strummed, while producing some happy sounding melodies. The guitar sounds a bit hollow, almost as if it is recorded with a phone.", "data_idx": 4474, "number": 1, "label": "disco"} +{"file_name": "train_08086.png", "caption": "The low quality recording features an acoustic rhythm guitar being aggressively strummed, while producing some happy sounding melodies. The guitar sounds a bit hollow, almost as if it is recorded with a phone.", "data_idx": 4474, "number": 2, "label": "disco"} +{"file_name": "train_08087.png", "caption": "The low quality recording features an acoustic rhythm guitar being aggressively strummed, while producing some happy sounding melodies. The guitar sounds a bit hollow, almost as if it is recorded with a phone.", "data_idx": 4474, "number": 3, "label": "disco"} +{"file_name": "train_08088.png", "caption": "The song is an instrumental. The tempo is medium fast with a guitar playing lead with a guitar effects pedal producing a distorted grunge tone. The song is energetic and passionate with no other instrumentation. The song audio quality is very poor.", "data_idx": 4483, "number": 0, "label": "metal"} +{"file_name": "train_08089.png", "caption": "The song is an instrumental. The tempo is medium fast with a guitar playing lead with a guitar effects pedal producing a distorted grunge tone. The song is energetic and passionate with no other instrumentation. The song audio quality is very poor.", "data_idx": 4483, "number": 1, "label": "metal"} +{"file_name": "train_08090.png", "caption": "The song is an instrumental. The tempo is medium fast with a guitar playing lead with a guitar effects pedal producing a distorted grunge tone. The song is energetic and passionate with no other instrumentation. The song audio quality is very poor.", "data_idx": 4483, "number": 2, "label": "metal"} +{"file_name": "train_08091.png", "caption": "The song is an instrumental. The tempo is medium fast with a guitar playing lead with a guitar effects pedal producing a distorted grunge tone. The song is energetic and passionate with no other instrumentation. The song audio quality is very poor.", "data_idx": 4483, "number": 3, "label": "metal"} +{"file_name": "train_08092.png", "caption": "This music clip is an instrumental with gamelan instrumental lead along with a hand percussion. The tempo is medium with melodic sounds and harmony from the striking of metal bowls or plates. The music is soft, melodious, calming, engaging and interesting and sounds a lot like a xylophone.", "data_idx": 4484, "number": 0, "label": "classical"} +{"file_name": "train_08093.png", "caption": "This music clip is an instrumental with gamelan instrumental lead along with a hand percussion. The tempo is medium with melodic sounds and harmony from the striking of metal bowls or plates. The music is soft, melodious, calming, engaging and interesting and sounds a lot like a xylophone.", "data_idx": 4484, "number": 1, "label": "classical"} +{"file_name": "train_08094.png", "caption": "This music clip is an instrumental with gamelan instrumental lead along with a hand percussion. The tempo is medium with melodic sounds and harmony from the striking of metal bowls or plates. The music is soft, melodious, calming, engaging and interesting and sounds a lot like a xylophone.", "data_idx": 4484, "number": 2, "label": "classical"} +{"file_name": "train_08095.png", "caption": "This music clip is an instrumental with gamelan instrumental lead along with a hand percussion. The tempo is medium with melodic sounds and harmony from the striking of metal bowls or plates. The music is soft, melodious, calming, engaging and interesting and sounds a lot like a xylophone.", "data_idx": 4484, "number": 3, "label": "classical"} +{"file_name": "train_08096.png", "caption": "Heavily distorted with poor audio quality, this low fidelity music features syncopation and odd meters, a repetitive tom tom drum, electric bass guitar, synthesized brass sounds, a male singer, and an international flavor. Sounds like it could be middle eastern or south Asian.", "data_idx": 4485, "number": 0, "label": "hiphop"} +{"file_name": "train_08097.png", "caption": "Heavily distorted with poor audio quality, this low fidelity music features syncopation and odd meters, a repetitive tom tom drum, electric bass guitar, synthesized brass sounds, a male singer, and an international flavor. Sounds like it could be middle eastern or south Asian.", "data_idx": 4485, "number": 1, "label": "hiphop"} +{"file_name": "train_08098.png", "caption": "Heavily distorted with poor audio quality, this low fidelity music features syncopation and odd meters, a repetitive tom tom drum, electric bass guitar, synthesized brass sounds, a male singer, and an international flavor. Sounds like it could be middle eastern or south Asian.", "data_idx": 4485, "number": 2, "label": "hiphop"} +{"file_name": "train_08099.png", "caption": "Heavily distorted with poor audio quality, this low fidelity music features syncopation and odd meters, a repetitive tom tom drum, electric bass guitar, synthesized brass sounds, a male singer, and an international flavor. Sounds like it could be middle eastern or south Asian.", "data_idx": 4485, "number": 3, "label": "hiphop"} +{"file_name": "train_08100.png", "caption": "This instrumental is an EDM. The tempo is fast with drum machine beats and electronically produced music and sounds.The audio quality is inferior, however the beat melody can be heard. The music is youthful, pulsating, enthusiastic, electric, repetitive, insistent,recurring,trippy , hypnotic, and psychedelic. The thumpy bass and punchy drum beats give it a high energy Dance vibe.", "data_idx": 4487, "number": 0, "label": "reggae"} +{"file_name": "train_08101.png", "caption": "This instrumental is an EDM. The tempo is fast with drum machine beats and electronically produced music and sounds.The audio quality is inferior, however the beat melody can be heard. The music is youthful, pulsating, enthusiastic, electric, repetitive, insistent,recurring,trippy , hypnotic, and psychedelic. The thumpy bass and punchy drum beats give it a high energy Dance vibe.", "data_idx": 4487, "number": 1, "label": "reggae"} +{"file_name": "train_08102.png", "caption": "This instrumental is an EDM. The tempo is fast with drum machine beats and electronically produced music and sounds.The audio quality is inferior, however the beat melody can be heard. The music is youthful, pulsating, enthusiastic, electric, repetitive, insistent,recurring,trippy , hypnotic, and psychedelic. The thumpy bass and punchy drum beats give it a high energy Dance vibe.", "data_idx": 4487, "number": 2, "label": "reggae"} +{"file_name": "train_08103.png", "caption": "This instrumental is an EDM. The tempo is fast with drum machine beats and electronically produced music and sounds.The audio quality is inferior, however the beat melody can be heard. The music is youthful, pulsating, enthusiastic, electric, repetitive, insistent,recurring,trippy , hypnotic, and psychedelic. The thumpy bass and punchy drum beats give it a high energy Dance vibe.", "data_idx": 4487, "number": 3, "label": "reggae"} +{"file_name": "train_08104.png", "caption": "This is an indie rap/hip-hop music piece. There is male voice rapping rapidly over a beat. The beat has a plucked strings sample for the melody. The rhythmic background is a normal tempo hip-hop beat played on the acoustic drums. There is also a speech sample used in the beat. The atmosphere is groovy and crisp. This piece would fit perfectly in the soundtrack of a crime movie/TV series that takes place in the big city. It could also be used in the soundtrack of a crime/shootout video game. It could be playing at sports venues as well.", "data_idx": 4491, "number": 0, "label": "hiphop"} +{"file_name": "train_08105.png", "caption": "This is an indie rap/hip-hop music piece. There is male voice rapping rapidly over a beat. The beat has a plucked strings sample for the melody. The rhythmic background is a normal tempo hip-hop beat played on the acoustic drums. There is also a speech sample used in the beat. The atmosphere is groovy and crisp. This piece would fit perfectly in the soundtrack of a crime movie/TV series that takes place in the big city. It could also be used in the soundtrack of a crime/shootout video game. It could be playing at sports venues as well.", "data_idx": 4491, "number": 1, "label": "hiphop"} +{"file_name": "train_08106.png", "caption": "This is an indie rap/hip-hop music piece. There is male voice rapping rapidly over a beat. The beat has a plucked strings sample for the melody. The rhythmic background is a normal tempo hip-hop beat played on the acoustic drums. There is also a speech sample used in the beat. The atmosphere is groovy and crisp. This piece would fit perfectly in the soundtrack of a crime movie/TV series that takes place in the big city. It could also be used in the soundtrack of a crime/shootout video game. It could be playing at sports venues as well.", "data_idx": 4491, "number": 2, "label": "hiphop"} +{"file_name": "train_08107.png", "caption": "This is an indie rap/hip-hop music piece. There is male voice rapping rapidly over a beat. The beat has a plucked strings sample for the melody. The rhythmic background is a normal tempo hip-hop beat played on the acoustic drums. There is also a speech sample used in the beat. The atmosphere is groovy and crisp. This piece would fit perfectly in the soundtrack of a crime movie/TV series that takes place in the big city. It could also be used in the soundtrack of a crime/shootout video game. It could be playing at sports venues as well.", "data_idx": 4491, "number": 3, "label": "hiphop"} +{"file_name": "train_08108.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The guitar sound is muffled. The song is sad,poignant, melancholic, sentimental,emotional and lonely. This song is Pop.", "data_idx": 4494, "number": 0, "label": "classical"} +{"file_name": "train_08109.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The guitar sound is muffled. The song is sad,poignant, melancholic, sentimental,emotional and lonely. This song is Pop.", "data_idx": 4494, "number": 1, "label": "classical"} +{"file_name": "train_08110.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The guitar sound is muffled. The song is sad,poignant, melancholic, sentimental,emotional and lonely. This song is Pop.", "data_idx": 4494, "number": 2, "label": "classical"} +{"file_name": "train_08111.png", "caption": "A female vocalist sings this soft melody. The tempo is slow with acoustic guitar accompaniment. The guitar sound is muffled. The song is sad,poignant, melancholic, sentimental,emotional and lonely. This song is Pop.", "data_idx": 4494, "number": 3, "label": "classical"} +{"file_name": "train_08112.png", "caption": "This is a Brazilian samba piece used as a jingle. The male vocals are singing in a shouting-like manner, repeating a slogan. There is a heavy use of syncopated latin percussion in the rhythmic background. The acoustic guitar and the bass guitar in the background support the melodic structure of the vocals.", "data_idx": 4495, "number": 0, "label": "reggae"} +{"file_name": "train_08113.png", "caption": "This is a Brazilian samba piece used as a jingle. The male vocals are singing in a shouting-like manner, repeating a slogan. There is a heavy use of syncopated latin percussion in the rhythmic background. The acoustic guitar and the bass guitar in the background support the melodic structure of the vocals.", "data_idx": 4495, "number": 1, "label": "reggae"} +{"file_name": "train_08114.png", "caption": "This is a Brazilian samba piece used as a jingle. The male vocals are singing in a shouting-like manner, repeating a slogan. There is a heavy use of syncopated latin percussion in the rhythmic background. The acoustic guitar and the bass guitar in the background support the melodic structure of the vocals.", "data_idx": 4495, "number": 2, "label": "reggae"} +{"file_name": "train_08115.png", "caption": "This is a Brazilian samba piece used as a jingle. The male vocals are singing in a shouting-like manner, repeating a slogan. There is a heavy use of syncopated latin percussion in the rhythmic background. The acoustic guitar and the bass guitar in the background support the melodic structure of the vocals.", "data_idx": 4495, "number": 3, "label": "reggae"} +{"file_name": "train_08116.png", "caption": "A kids voice is singing along to a funky bassline and little trumpet slides along with sound effects that could belong to a tv show. This audio is an amateur recording and of poor audio-quality.", "data_idx": 4499, "number": 0, "label": "hiphop"} +{"file_name": "train_08117.png", "caption": "A kids voice is singing along to a funky bassline and little trumpet slides along with sound effects that could belong to a tv show. This audio is an amateur recording and of poor audio-quality.", "data_idx": 4499, "number": 1, "label": "hiphop"} +{"file_name": "train_08118.png", "caption": "A kids voice is singing along to a funky bassline and little trumpet slides along with sound effects that could belong to a tv show. This audio is an amateur recording and of poor audio-quality.", "data_idx": 4499, "number": 2, "label": "hiphop"} +{"file_name": "train_08119.png", "caption": "A kids voice is singing along to a funky bassline and little trumpet slides along with sound effects that could belong to a tv show. This audio is an amateur recording and of poor audio-quality.", "data_idx": 4499, "number": 3, "label": "hiphop"} +{"file_name": "train_08120.png", "caption": "A female vocalist sings this ethereal melody. The tempo is slow with a beautiful flute harmony, melodious piano accompaniment, Arabic guitar and groovy bass lines. The song has no lyrics with ethereal vocalisation. It is soft, mellifluous, calming, pleasant,enigmatic, celestial and ethereal with a middle eastern feel.", "data_idx": 4500, "number": 0, "label": "jazz"} +{"file_name": "train_08121.png", "caption": "A female vocalist sings this ethereal melody. The tempo is slow with a beautiful flute harmony, melodious piano accompaniment, Arabic guitar and groovy bass lines. The song has no lyrics with ethereal vocalisation. It is soft, mellifluous, calming, pleasant,enigmatic, celestial and ethereal with a middle eastern feel.", "data_idx": 4500, "number": 1, "label": "jazz"} +{"file_name": "train_08122.png", "caption": "A female vocalist sings this ethereal melody. The tempo is slow with a beautiful flute harmony, melodious piano accompaniment, Arabic guitar and groovy bass lines. The song has no lyrics with ethereal vocalisation. It is soft, mellifluous, calming, pleasant,enigmatic, celestial and ethereal with a middle eastern feel.", "data_idx": 4500, "number": 2, "label": "jazz"} +{"file_name": "train_08123.png", "caption": "A female vocalist sings this ethereal melody. The tempo is slow with a beautiful flute harmony, melodious piano accompaniment, Arabic guitar and groovy bass lines. The song has no lyrics with ethereal vocalisation. It is soft, mellifluous, calming, pleasant,enigmatic, celestial and ethereal with a middle eastern feel.", "data_idx": 4500, "number": 3, "label": "jazz"} +{"file_name": "train_08124.png", "caption": "This song is an electronic instrumental. The audio quality is poor so the music is incoherent. The song has an electronic harmony, slick drumming, dissonant buzzing and bubbling sound.", "data_idx": 4507, "number": 0, "label": "classical"} +{"file_name": "train_08125.png", "caption": "This song is an electronic instrumental. The audio quality is poor so the music is incoherent. The song has an electronic harmony, slick drumming, dissonant buzzing and bubbling sound.", "data_idx": 4507, "number": 1, "label": "classical"} +{"file_name": "train_08126.png", "caption": "This song is an electronic instrumental. The audio quality is poor so the music is incoherent. The song has an electronic harmony, slick drumming, dissonant buzzing and bubbling sound.", "data_idx": 4507, "number": 2, "label": "classical"} +{"file_name": "train_08127.png", "caption": "This song is an electronic instrumental. The audio quality is poor so the music is incoherent. The song has an electronic harmony, slick drumming, dissonant buzzing and bubbling sound.", "data_idx": 4507, "number": 3, "label": "classical"} +{"file_name": "train_08128.png", "caption": "This music is a lively EDM. The tempo is fast with heavy synthesiser articulation, insistent tambourine beats,punchy digital drum arrangements, heavy bass and heavily auto tuned vocals. The music is a buoyant, youthful, energetic,pulsating, electrifying EDM.", "data_idx": 4510, "number": 0, "label": "hiphop"} +{"file_name": "train_08129.png", "caption": "This music is a lively EDM. The tempo is fast with heavy synthesiser articulation, insistent tambourine beats,punchy digital drum arrangements, heavy bass and heavily auto tuned vocals. The music is a buoyant, youthful, energetic,pulsating, electrifying EDM.", "data_idx": 4510, "number": 1, "label": "hiphop"} +{"file_name": "train_08130.png", "caption": "This music is a lively EDM. The tempo is fast with heavy synthesiser articulation, insistent tambourine beats,punchy digital drum arrangements, heavy bass and heavily auto tuned vocals. The music is a buoyant, youthful, energetic,pulsating, electrifying EDM.", "data_idx": 4510, "number": 2, "label": "hiphop"} +{"file_name": "train_08131.png", "caption": "This music is a lively EDM. The tempo is fast with heavy synthesiser articulation, insistent tambourine beats,punchy digital drum arrangements, heavy bass and heavily auto tuned vocals. The music is a buoyant, youthful, energetic,pulsating, electrifying EDM.", "data_idx": 4510, "number": 3, "label": "hiphop"} +{"file_name": "train_08132.png", "caption": "This song is a pleasant love song duet. The tempo is medium with acoustic guitar and ukulele accompaniment.the song is mellow, soft, emotional, romantic, nostalgic. This song is Country/Folk pop.", "data_idx": 4512, "number": 0, "label": "classical"} +{"file_name": "train_08133.png", "caption": "This song is a pleasant love song duet. The tempo is medium with acoustic guitar and ukulele accompaniment.the song is mellow, soft, emotional, romantic, nostalgic. This song is Country/Folk pop.", "data_idx": 4512, "number": 1, "label": "classical"} +{"file_name": "train_08134.png", "caption": "This song is a pleasant love song duet. The tempo is medium with acoustic guitar and ukulele accompaniment.the song is mellow, soft, emotional, romantic, nostalgic. This song is Country/Folk pop.", "data_idx": 4512, "number": 2, "label": "classical"} +{"file_name": "train_08135.png", "caption": "This song is a pleasant love song duet. The tempo is medium with acoustic guitar and ukulele accompaniment.the song is mellow, soft, emotional, romantic, nostalgic. This song is Country/Folk pop.", "data_idx": 4512, "number": 3, "label": "classical"} +{"file_name": "train_08136.png", "caption": "The low quality recording features a hip hop song that consists of groovy bass, groovy piano chords, shimmering hi-hats and punchy kick and snare hits over sword slicing, blood spillage and grunting sound effects. Overall the song is very groovy, bright and judging by the volume of the sounds, it could be an Animated Music Video.", "data_idx": 4515, "number": 0, "label": "hiphop"} +{"file_name": "train_08137.png", "caption": "The low quality recording features a hip hop song that consists of groovy bass, groovy piano chords, shimmering hi-hats and punchy kick and snare hits over sword slicing, blood spillage and grunting sound effects. Overall the song is very groovy, bright and judging by the volume of the sounds, it could be an Animated Music Video.", "data_idx": 4515, "number": 1, "label": "hiphop"} +{"file_name": "train_08138.png", "caption": "The low quality recording features a hip hop song that consists of groovy bass, groovy piano chords, shimmering hi-hats and punchy kick and snare hits over sword slicing, blood spillage and grunting sound effects. Overall the song is very groovy, bright and judging by the volume of the sounds, it could be an Animated Music Video.", "data_idx": 4515, "number": 2, "label": "hiphop"} +{"file_name": "train_08139.png", "caption": "The low quality recording features a hip hop song that consists of groovy bass, groovy piano chords, shimmering hi-hats and punchy kick and snare hits over sword slicing, blood spillage and grunting sound effects. Overall the song is very groovy, bright and judging by the volume of the sounds, it could be an Animated Music Video.", "data_idx": 4515, "number": 3, "label": "hiphop"} +{"file_name": "train_08140.png", "caption": "A male vocalist sings this Soft Rock. The tempo is slow with electronic arrangements,steady drumming, groovy bass line , and syncopated keyboard harmony. The background instruments play a dissonant melody. This song is a mellow, youthful, punchy, buoyant, Soft Rock.", "data_idx": 4516, "number": 0, "label": "rock"} +{"file_name": "train_08141.png", "caption": "A male vocalist sings this Soft Rock. The tempo is slow with electronic arrangements,steady drumming, groovy bass line , and syncopated keyboard harmony. The background instruments play a dissonant melody. This song is a mellow, youthful, punchy, buoyant, Soft Rock.", "data_idx": 4516, "number": 1, "label": "rock"} +{"file_name": "train_08142.png", "caption": "A male vocalist sings this Soft Rock. The tempo is slow with electronic arrangements,steady drumming, groovy bass line , and syncopated keyboard harmony. The background instruments play a dissonant melody. This song is a mellow, youthful, punchy, buoyant, Soft Rock.", "data_idx": 4516, "number": 2, "label": "rock"} +{"file_name": "train_08143.png", "caption": "A male vocalist sings this Soft Rock. The tempo is slow with electronic arrangements,steady drumming, groovy bass line , and syncopated keyboard harmony. The background instruments play a dissonant melody. This song is a mellow, youthful, punchy, buoyant, Soft Rock.", "data_idx": 4516, "number": 3, "label": "rock"} +{"file_name": "train_08144.png", "caption": "A female vocalist sings this vibrant song. The tempo is fast with synthesiser articulation, enthusiastic digital drum beats, electronic arrangements and sound of police siren in the background. The song is youthful, energetic, vivacious, simple, fun, engaging, groovy,with powerful and emphatic vocals. This song is Electro Pop/Synth Pop.", "data_idx": 4518, "number": 0, "label": "disco"} +{"file_name": "train_08145.png", "caption": "A female vocalist sings this vibrant song. The tempo is fast with synthesiser articulation, enthusiastic digital drum beats, electronic arrangements and sound of police siren in the background. The song is youthful, energetic, vivacious, simple, fun, engaging, groovy,with powerful and emphatic vocals. This song is Electro Pop/Synth Pop.", "data_idx": 4518, "number": 1, "label": "disco"} +{"file_name": "train_08146.png", "caption": "A female vocalist sings this vibrant song. The tempo is fast with synthesiser articulation, enthusiastic digital drum beats, electronic arrangements and sound of police siren in the background. The song is youthful, energetic, vivacious, simple, fun, engaging, groovy,with powerful and emphatic vocals. This song is Electro Pop/Synth Pop.", "data_idx": 4518, "number": 2, "label": "disco"} +{"file_name": "train_08147.png", "caption": "A female vocalist sings this vibrant song. The tempo is fast with synthesiser articulation, enthusiastic digital drum beats, electronic arrangements and sound of police siren in the background. The song is youthful, energetic, vivacious, simple, fun, engaging, groovy,with powerful and emphatic vocals. This song is Electro Pop/Synth Pop.", "data_idx": 4518, "number": 3, "label": "disco"} +{"file_name": "train_08148.png", "caption": "This low quality recording features an electropop song. At the beginning, there is a shooting sound. This is followed by cartoon voices. A fast paced vocal chop sequence is used for the main voice. Toward the end, another quirky voice joins in with another vocal chop sequence. This is accompanied by programmed percussion playing an electropop beat. A synth plays a repetitive lick. The bass follows the root notes of the chords. This song can be played at a club.", "data_idx": 4519, "number": 0, "label": "disco"} +{"file_name": "train_08149.png", "caption": "This low quality recording features an electropop song. At the beginning, there is a shooting sound. This is followed by cartoon voices. A fast paced vocal chop sequence is used for the main voice. Toward the end, another quirky voice joins in with another vocal chop sequence. This is accompanied by programmed percussion playing an electropop beat. A synth plays a repetitive lick. The bass follows the root notes of the chords. This song can be played at a club.", "data_idx": 4519, "number": 1, "label": "disco"} +{"file_name": "train_08150.png", "caption": "This low quality recording features an electropop song. At the beginning, there is a shooting sound. This is followed by cartoon voices. A fast paced vocal chop sequence is used for the main voice. Toward the end, another quirky voice joins in with another vocal chop sequence. This is accompanied by programmed percussion playing an electropop beat. A synth plays a repetitive lick. The bass follows the root notes of the chords. This song can be played at a club.", "data_idx": 4519, "number": 2, "label": "disco"} +{"file_name": "train_08151.png", "caption": "This low quality recording features an electropop song. At the beginning, there is a shooting sound. This is followed by cartoon voices. A fast paced vocal chop sequence is used for the main voice. Toward the end, another quirky voice joins in with another vocal chop sequence. This is accompanied by programmed percussion playing an electropop beat. A synth plays a repetitive lick. The bass follows the root notes of the chords. This song can be played at a club.", "data_idx": 4519, "number": 3, "label": "disco"} +{"file_name": "train_08152.png", "caption": "A male African tribal singer sings this melody with female backup singers in vocal harmony. The song is medium tempo with percussive African drums in rhythm and other percussion hits. The song is energetic and devotional in nature. The audio quality is poor.", "data_idx": 4521, "number": 0, "label": "disco"} +{"file_name": "train_08153.png", "caption": "A male African tribal singer sings this melody with female backup singers in vocal harmony. The song is medium tempo with percussive African drums in rhythm and other percussion hits. The song is energetic and devotional in nature. The audio quality is poor.", "data_idx": 4521, "number": 1, "label": "disco"} +{"file_name": "train_08154.png", "caption": "A male African tribal singer sings this melody with female backup singers in vocal harmony. The song is medium tempo with percussive African drums in rhythm and other percussion hits. The song is energetic and devotional in nature. The audio quality is poor.", "data_idx": 4521, "number": 2, "label": "disco"} +{"file_name": "train_08155.png", "caption": "A male African tribal singer sings this melody with female backup singers in vocal harmony. The song is medium tempo with percussive African drums in rhythm and other percussion hits. The song is energetic and devotional in nature. The audio quality is poor.", "data_idx": 4521, "number": 3, "label": "disco"} +{"file_name": "train_08156.png", "caption": "Chipmunk style pitched up male vocals over a slow rock drum beat, sliding electric bass guitar, acoustic guitar and bongos. Heavy use of delay on the vocal.", "data_idx": 4523, "number": 0, "label": "disco"} +{"file_name": "train_08157.png", "caption": "Chipmunk style pitched up male vocals over a slow rock drum beat, sliding electric bass guitar, acoustic guitar and bongos. Heavy use of delay on the vocal.", "data_idx": 4523, "number": 1, "label": "disco"} +{"file_name": "train_08158.png", "caption": "Chipmunk style pitched up male vocals over a slow rock drum beat, sliding electric bass guitar, acoustic guitar and bongos. Heavy use of delay on the vocal.", "data_idx": 4523, "number": 2, "label": "disco"} +{"file_name": "train_08159.png", "caption": "Chipmunk style pitched up male vocals over a slow rock drum beat, sliding electric bass guitar, acoustic guitar and bongos. Heavy use of delay on the vocal.", "data_idx": 4523, "number": 3, "label": "disco"} +{"file_name": "train_08160.png", "caption": "The low quality recording features an Eastern pop song that contains echoing autotune male vocal singing over wooden percussion and shimmering shakers. It sounds distorted, crushed, harsh and messy, as it was probably recorded with a poor quality microphone.", "data_idx": 4525, "number": 0, "label": "blues"} +{"file_name": "train_08161.png", "caption": "The low quality recording features an Eastern pop song that contains echoing autotune male vocal singing over wooden percussion and shimmering shakers. It sounds distorted, crushed, harsh and messy, as it was probably recorded with a poor quality microphone.", "data_idx": 4525, "number": 1, "label": "blues"} +{"file_name": "train_08162.png", "caption": "The instrumental latin music features a big band. The trumpets, saxophones and trombones play the same melody but on different pitches. The percussion section includes a drum kit played in the latin style and a pair of congas. A piano accompanies the brass section and blends in with the rest of the band. An electronic sound can be heard playing the same note throughout the music excerpt.", "data_idx": 4528, "number": 0, "label": "disco"} +{"file_name": "train_08163.png", "caption": "The instrumental latin music features a big band. The trumpets, saxophones and trombones play the same melody but on different pitches. The percussion section includes a drum kit played in the latin style and a pair of congas. A piano accompanies the brass section and blends in with the rest of the band. An electronic sound can be heard playing the same note throughout the music excerpt.", "data_idx": 4528, "number": 1, "label": "disco"} +{"file_name": "train_08164.png", "caption": "The instrumental latin music features a big band. The trumpets, saxophones and trombones play the same melody but on different pitches. The percussion section includes a drum kit played in the latin style and a pair of congas. A piano accompanies the brass section and blends in with the rest of the band. An electronic sound can be heard playing the same note throughout the music excerpt.", "data_idx": 4528, "number": 2, "label": "disco"} +{"file_name": "train_08165.png", "caption": "The instrumental latin music features a big band. The trumpets, saxophones and trombones play the same melody but on different pitches. The percussion section includes a drum kit played in the latin style and a pair of congas. A piano accompanies the brass section and blends in with the rest of the band. An electronic sound can be heard playing the same note throughout the music excerpt.", "data_idx": 4528, "number": 3, "label": "disco"} +{"file_name": "train_08166.png", "caption": "This is a classical music performance. There is a gentle piano tune playing in the background while there is a theremin playing the main melody. The performance has a unique feel to it. The atmosphere is out of the ordinary but also heart-touching. This piece could be used in the soundtrack of an animation movie/TV series.", "data_idx": 4529, "number": 0, "label": "classical"} +{"file_name": "train_08167.png", "caption": "This is a classical music performance. There is a gentle piano tune playing in the background while there is a theremin playing the main melody. The performance has a unique feel to it. The atmosphere is out of the ordinary but also heart-touching. This piece could be used in the soundtrack of an animation movie/TV series.", "data_idx": 4529, "number": 1, "label": "classical"} +{"file_name": "train_08168.png", "caption": "This is a classical music performance. There is a gentle piano tune playing in the background while there is a theremin playing the main melody. The performance has a unique feel to it. The atmosphere is out of the ordinary but also heart-touching. This piece could be used in the soundtrack of an animation movie/TV series.", "data_idx": 4529, "number": 2, "label": "classical"} +{"file_name": "train_08169.png", "caption": "This is a classical music performance. There is a gentle piano tune playing in the background while there is a theremin playing the main melody. The performance has a unique feel to it. The atmosphere is out of the ordinary but also heart-touching. This piece could be used in the soundtrack of an animation movie/TV series.", "data_idx": 4529, "number": 3, "label": "classical"} +{"file_name": "train_08170.png", "caption": "A blues rock power trio with electric bass and overdriven electric guitar playing a riff together and the drummer playing a backdoor shuffle. It is instrumental with a swung rhythm.", "data_idx": 4534, "number": 0, "label": "classical"} +{"file_name": "train_08171.png", "caption": "A blues rock power trio with electric bass and overdriven electric guitar playing a riff together and the drummer playing a backdoor shuffle. It is instrumental with a swung rhythm.", "data_idx": 4534, "number": 1, "label": "classical"} +{"file_name": "train_08172.png", "caption": "A blues rock power trio with electric bass and overdriven electric guitar playing a riff together and the drummer playing a backdoor shuffle. It is instrumental with a swung rhythm.", "data_idx": 4534, "number": 2, "label": "classical"} +{"file_name": "train_08173.png", "caption": "A blues rock power trio with electric bass and overdriven electric guitar playing a riff together and the drummer playing a backdoor shuffle. It is instrumental with a swung rhythm.", "data_idx": 4534, "number": 3, "label": "classical"} +{"file_name": "train_08174.png", "caption": "This music is instrumental. The tempo is slow with a flute playing a melodic lead harmony and later joined by a rhythmic acoustic guitar. The song is dulcet, warm, peaceful; calming, meditative,pensive, contemplative, deliberate, mellifluous and euphonious. This music is an Indian Classical.", "data_idx": 4535, "number": 0, "label": "classical"} +{"file_name": "train_08175.png", "caption": "This music is instrumental. The tempo is slow with a flute playing a melodic lead harmony and later joined by a rhythmic acoustic guitar. The song is dulcet, warm, peaceful; calming, meditative,pensive, contemplative, deliberate, mellifluous and euphonious. This music is an Indian Classical.", "data_idx": 4535, "number": 1, "label": "classical"} +{"file_name": "train_08176.png", "caption": "This music is instrumental. The tempo is slow with a flute playing a melodic lead harmony and later joined by a rhythmic acoustic guitar. The song is dulcet, warm, peaceful; calming, meditative,pensive, contemplative, deliberate, mellifluous and euphonious. This music is an Indian Classical.", "data_idx": 4535, "number": 2, "label": "classical"} +{"file_name": "train_08177.png", "caption": "This music is instrumental. The tempo is slow with a flute playing a melodic lead harmony and later joined by a rhythmic acoustic guitar. The song is dulcet, warm, peaceful; calming, meditative,pensive, contemplative, deliberate, mellifluous and euphonious. This music is an Indian Classical.", "data_idx": 4535, "number": 3, "label": "classical"} +{"file_name": "train_08178.png", "caption": "This recording contains gargling noises to which a lot of female voices sing along. In the background you can hear a full pop song that serves as background music. The recording is full of fast popping noises. This seems to be an amateur recording.", "data_idx": 4536, "number": 0, "label": "rock"} +{"file_name": "train_08179.png", "caption": "This recording contains gargling noises to which a lot of female voices sing along. In the background you can hear a full pop song that serves as background music. The recording is full of fast popping noises. This seems to be an amateur recording.", "data_idx": 4536, "number": 1, "label": "rock"} +{"file_name": "train_08180.png", "caption": "This recording contains gargling noises to which a lot of female voices sing along. In the background you can hear a full pop song that serves as background music. The recording is full of fast popping noises. This seems to be an amateur recording.", "data_idx": 4536, "number": 2, "label": "rock"} +{"file_name": "train_08181.png", "caption": "This recording contains gargling noises to which a lot of female voices sing along. In the background you can hear a full pop song that serves as background music. The recording is full of fast popping noises. This seems to be an amateur recording.", "data_idx": 4536, "number": 3, "label": "rock"} +{"file_name": "train_08182.png", "caption": "The song is an instrumental. The tempo is medium fast with a percussive bass line, super fast metal drumming with cymbal crashes and fast drum rolls and a distorted guitar playing a virtuoso lead. The song is energetic and animated. The song has poor audio quality.", "data_idx": 4540, "number": 0, "label": "metal"} +{"file_name": "train_08183.png", "caption": "The song is an instrumental. The tempo is medium fast with a percussive bass line, super fast metal drumming with cymbal crashes and fast drum rolls and a distorted guitar playing a virtuoso lead. The song is energetic and animated. The song has poor audio quality.", "data_idx": 4540, "number": 1, "label": "metal"} +{"file_name": "train_08184.png", "caption": "The song is an instrumental. The tempo is medium fast with a percussive bass line, super fast metal drumming with cymbal crashes and fast drum rolls and a distorted guitar playing a virtuoso lead. The song is energetic and animated. The song has poor audio quality.", "data_idx": 4540, "number": 2, "label": "metal"} +{"file_name": "train_08185.png", "caption": "The song is an instrumental. The tempo is medium fast with a percussive bass line, super fast metal drumming with cymbal crashes and fast drum rolls and a distorted guitar playing a virtuoso lead. The song is energetic and animated. The song has poor audio quality.", "data_idx": 4540, "number": 3, "label": "metal"} +{"file_name": "train_08186.png", "caption": "This is a bluesy country style song played on a lap steel guitar. There is a walking bassline, and slide guitar being played. The singer has a burly, calm voice. The song would be heard in an old school bar in Texas - which might be called a \"saloon\".", "data_idx": 4542, "number": 0, "label": "classical"} +{"file_name": "train_08187.png", "caption": "This is a bluesy country style song played on a lap steel guitar. There is a walking bassline, and slide guitar being played. The singer has a burly, calm voice. The song would be heard in an old school bar in Texas - which might be called a \"saloon\".", "data_idx": 4542, "number": 1, "label": "classical"} +{"file_name": "train_08188.png", "caption": "This is a bluesy country style song played on a lap steel guitar. There is a walking bassline, and slide guitar being played. The singer has a burly, calm voice. The song would be heard in an old school bar in Texas - which might be called a \"saloon\".", "data_idx": 4542, "number": 2, "label": "classical"} +{"file_name": "train_08189.png", "caption": "This is a bluesy country style song played on a lap steel guitar. There is a walking bassline, and slide guitar being played. The singer has a burly, calm voice. The song would be heard in an old school bar in Texas - which might be called a \"saloon\".", "data_idx": 4542, "number": 3, "label": "classical"} +{"file_name": "train_08190.png", "caption": "This music is an Indian classical instrumental. The tempo is fast with an animated Sitar lead, supported with rhythmic beats of lively tabla and dholak , along with a soft and subtle keyboard accompaniment. The music is upbeat, vibrant, vivacious, vigorous , engaging and captivating. This instrumental is a Hindustani classical.", "data_idx": 4543, "number": 0, "label": "jazz"} +{"file_name": "train_08191.png", "caption": "This music is an Indian classical instrumental. The tempo is fast with an animated Sitar lead, supported with rhythmic beats of lively tabla and dholak , along with a soft and subtle keyboard accompaniment. The music is upbeat, vibrant, vivacious, vigorous , engaging and captivating. This instrumental is a Hindustani classical.", "data_idx": 4543, "number": 1, "label": "jazz"} +{"file_name": "train_08192.png", "caption": "This music is an Indian classical instrumental. The tempo is fast with an animated Sitar lead, supported with rhythmic beats of lively tabla and dholak , along with a soft and subtle keyboard accompaniment. The music is upbeat, vibrant, vivacious, vigorous , engaging and captivating. This instrumental is a Hindustani classical.", "data_idx": 4543, "number": 2, "label": "jazz"} +{"file_name": "train_08193.png", "caption": "This music is an Indian classical instrumental. The tempo is fast with an animated Sitar lead, supported with rhythmic beats of lively tabla and dholak , along with a soft and subtle keyboard accompaniment. The music is upbeat, vibrant, vivacious, vigorous , engaging and captivating. This instrumental is a Hindustani classical.", "data_idx": 4543, "number": 3, "label": "jazz"} +{"file_name": "train_08194.png", "caption": "The music features an electric guitar playing what sounds to be a solo over a backing track or an actual recording of a song. The notes played in this passage are played fast. The vocabulary used by the guitarist resembles that of the jazz-fusion genre.", "data_idx": 4545, "number": 0, "label": "jazz"} +{"file_name": "train_08195.png", "caption": "The music features an electric guitar playing what sounds to be a solo over a backing track or an actual recording of a song. The notes played in this passage are played fast. The vocabulary used by the guitarist resembles that of the jazz-fusion genre.", "data_idx": 4545, "number": 1, "label": "jazz"} +{"file_name": "train_08196.png", "caption": "The music features an electric guitar playing what sounds to be a solo over a backing track or an actual recording of a song. The notes played in this passage are played fast. The vocabulary used by the guitarist resembles that of the jazz-fusion genre.", "data_idx": 4545, "number": 2, "label": "jazz"} +{"file_name": "train_08197.png", "caption": "The music features an electric guitar playing what sounds to be a solo over a backing track or an actual recording of a song. The notes played in this passage are played fast. The vocabulary used by the guitarist resembles that of the jazz-fusion genre.", "data_idx": 4545, "number": 3, "label": "jazz"} +{"file_name": "train_08198.png", "caption": "A male singer sings this passionate and emotional melody. The song is medium tempo with a groovy bass line, steady drumming rhythm, piano accompaniment and an emotional string section harmony. The song is inspiring and emotional. The song is a Christmas classic and movie soundtrack. The audio quality is poor with a lot of hissing noises.", "data_idx": 4550, "number": 0, "label": "country"} +{"file_name": "train_08199.png", "caption": "A male singer sings this passionate and emotional melody. The song is medium tempo with a groovy bass line, steady drumming rhythm, piano accompaniment and an emotional string section harmony. The song is inspiring and emotional. The song is a Christmas classic and movie soundtrack. The audio quality is poor with a lot of hissing noises.", "data_idx": 4550, "number": 1, "label": "country"} +{"file_name": "train_08200.png", "caption": "A male singer sings this passionate and emotional melody. The song is medium tempo with a groovy bass line, steady drumming rhythm, piano accompaniment and an emotional string section harmony. The song is inspiring and emotional. The song is a Christmas classic and movie soundtrack. The audio quality is poor with a lot of hissing noises.", "data_idx": 4550, "number": 2, "label": "country"} +{"file_name": "train_08201.png", "caption": "A male singer sings this passionate and emotional melody. The song is medium tempo with a groovy bass line, steady drumming rhythm, piano accompaniment and an emotional string section harmony. The song is inspiring and emotional. The song is a Christmas classic and movie soundtrack. The audio quality is poor with a lot of hissing noises.", "data_idx": 4550, "number": 3, "label": "country"} +{"file_name": "train_08202.png", "caption": "The low quality recording features a person trying out the guitar effect pedal while playing some melodies on an electric guitar. There are huge reverb effects in the first part of the loop and reverse effects in the second part. It sounds a bit noisy too.", "data_idx": 4551, "number": 0, "label": "classical"} +{"file_name": "train_08203.png", "caption": "The low quality recording features a person trying out the guitar effect pedal while playing some melodies on an electric guitar. There are huge reverb effects in the first part of the loop and reverse effects in the second part. It sounds a bit noisy too.", "data_idx": 4551, "number": 1, "label": "classical"} +{"file_name": "train_08204.png", "caption": "The low quality recording features a person trying out the guitar effect pedal while playing some melodies on an electric guitar. There are huge reverb effects in the first part of the loop and reverse effects in the second part. It sounds a bit noisy too.", "data_idx": 4551, "number": 2, "label": "classical"} +{"file_name": "train_08205.png", "caption": "The low quality recording features a person trying out the guitar effect pedal while playing some melodies on an electric guitar. There are huge reverb effects in the first part of the loop and reverse effects in the second part. It sounds a bit noisy too.", "data_idx": 4551, "number": 3, "label": "classical"} +{"file_name": "train_08206.png", "caption": "The low quality recording features an arpeggiated electric guitar melody that changes pitch occasionally. The recording is very noisy and in mono, but it sounds passionate and like something John Lenon would sing to.", "data_idx": 4554, "number": 0, "label": "jazz"} +{"file_name": "train_08207.png", "caption": "The low quality recording features an arpeggiated electric guitar melody that changes pitch occasionally. The recording is very noisy and in mono, but it sounds passionate and like something John Lenon would sing to.", "data_idx": 4554, "number": 1, "label": "jazz"} +{"file_name": "train_08208.png", "caption": "The low quality recording features an arpeggiated electric guitar melody that changes pitch occasionally. The recording is very noisy and in mono, but it sounds passionate and like something John Lenon would sing to.", "data_idx": 4554, "number": 2, "label": "jazz"} +{"file_name": "train_08209.png", "caption": "The low quality recording features an arpeggiated electric guitar melody that changes pitch occasionally. The recording is very noisy and in mono, but it sounds passionate and like something John Lenon would sing to.", "data_idx": 4554, "number": 3, "label": "jazz"} +{"file_name": "train_08210.png", "caption": "This song is an amateur recording of a live performance. This features a female voice singing the main melody. This is accompanied by a distortion guitar playing power chords. The percussion plays a simple rock beat. The sound of crowd whistles are heard in this clip. Other instruments are not audible as the quality of the audio is low. This song can be played in a romantic comedy movie.", "data_idx": 4557, "number": 0, "label": "disco"} +{"file_name": "train_08211.png", "caption": "This song is an amateur recording of a live performance. This features a female voice singing the main melody. This is accompanied by a distortion guitar playing power chords. The percussion plays a simple rock beat. The sound of crowd whistles are heard in this clip. Other instruments are not audible as the quality of the audio is low. This song can be played in a romantic comedy movie.", "data_idx": 4557, "number": 1, "label": "disco"} +{"file_name": "train_08212.png", "caption": "The low quality recording features a hip hop instrumental that consists of punchy kick, claps, repetitive synth chords, addictive plucked strings melody and tinny wooden percussive elements. It sounds groovy and very addictive, due to that string melody.", "data_idx": 4558, "number": 0, "label": "pop"} +{"file_name": "train_08213.png", "caption": "The low quality recording features a hip hop instrumental that consists of punchy kick, claps, repetitive synth chords, addictive plucked strings melody and tinny wooden percussive elements. It sounds groovy and very addictive, due to that string melody.", "data_idx": 4558, "number": 1, "label": "pop"} +{"file_name": "train_08214.png", "caption": "The low quality recording features a hip hop instrumental that consists of punchy kick, claps, repetitive synth chords, addictive plucked strings melody and tinny wooden percussive elements. It sounds groovy and very addictive, due to that string melody.", "data_idx": 4558, "number": 2, "label": "pop"} +{"file_name": "train_08215.png", "caption": "The low quality recording features a hip hop instrumental that consists of punchy kick, claps, repetitive synth chords, addictive plucked strings melody and tinny wooden percussive elements. It sounds groovy and very addictive, due to that string melody.", "data_idx": 4558, "number": 3, "label": "pop"} +{"file_name": "train_08216.png", "caption": "The low quality recording features an electro song that contains distorted, repetitive female vocals over pulsating buzzy bass, wide percussive elements, shimmering cymbals, punchy \"4 on the floor\" kick pattern, claps and syncopated simple synth lead melody. It sounds hypnotic, mainly because of the repetitiveness - especially of the synth lead. It also sounds energetic, uptempo and distorted - like something you would hear in clubs during the 00s.", "data_idx": 4559, "number": 0, "label": "hiphop"} +{"file_name": "train_08217.png", "caption": "The low quality recording features an electro song that contains distorted, repetitive female vocals over pulsating buzzy bass, wide percussive elements, shimmering cymbals, punchy \"4 on the floor\" kick pattern, claps and syncopated simple synth lead melody. It sounds hypnotic, mainly because of the repetitiveness - especially of the synth lead. It also sounds energetic, uptempo and distorted - like something you would hear in clubs during the 00s.", "data_idx": 4559, "number": 1, "label": "hiphop"} +{"file_name": "train_08218.png", "caption": "The low quality recording features an electro song that contains distorted, repetitive female vocals over pulsating buzzy bass, wide percussive elements, shimmering cymbals, punchy \"4 on the floor\" kick pattern, claps and syncopated simple synth lead melody. It sounds hypnotic, mainly because of the repetitiveness - especially of the synth lead. It also sounds energetic, uptempo and distorted - like something you would hear in clubs during the 00s.", "data_idx": 4559, "number": 2, "label": "hiphop"} +{"file_name": "train_08219.png", "caption": "The low quality recording features an electro song that contains distorted, repetitive female vocals over pulsating buzzy bass, wide percussive elements, shimmering cymbals, punchy \"4 on the floor\" kick pattern, claps and syncopated simple synth lead melody. It sounds hypnotic, mainly because of the repetitiveness - especially of the synth lead. It also sounds energetic, uptempo and distorted - like something you would hear in clubs during the 00s.", "data_idx": 4559, "number": 3, "label": "hiphop"} +{"file_name": "train_08220.png", "caption": "A tropical feeling electronic pop track with heavily processed autotuned vocals hard panned left right and center. The cumbia beat, lots of percussion, synthesizer melody and a syncopated bass give the music a light, friendly, and youthful vibe;", "data_idx": 4560, "number": 0, "label": "hiphop"} +{"file_name": "train_08221.png", "caption": "A tropical feeling electronic pop track with heavily processed autotuned vocals hard panned left right and center. The cumbia beat, lots of percussion, synthesizer melody and a syncopated bass give the music a light, friendly, and youthful vibe;", "data_idx": 4560, "number": 1, "label": "hiphop"} +{"file_name": "train_08222.png", "caption": "A tropical feeling electronic pop track with heavily processed autotuned vocals hard panned left right and center. The cumbia beat, lots of percussion, synthesizer melody and a syncopated bass give the music a light, friendly, and youthful vibe;", "data_idx": 4560, "number": 2, "label": "hiphop"} +{"file_name": "train_08223.png", "caption": "A tropical feeling electronic pop track with heavily processed autotuned vocals hard panned left right and center. The cumbia beat, lots of percussion, synthesizer melody and a syncopated bass give the music a light, friendly, and youthful vibe;", "data_idx": 4560, "number": 3, "label": "hiphop"} +{"file_name": "train_08224.png", "caption": "This song is a low quality live recording. This features an older female voice singing the main melody. This is accompanied by a tenor guitar playing two chords in a repeated rhythm. A male voice sings a fill after a line by the female voice. There is no percussion in this song. There are no other instruments. This is a celebration song sung in a foreign language.", "data_idx": 4561, "number": 0, "label": "disco"} +{"file_name": "train_08225.png", "caption": "This song is a low quality live recording. This features an older female voice singing the main melody. This is accompanied by a tenor guitar playing two chords in a repeated rhythm. A male voice sings a fill after a line by the female voice. There is no percussion in this song. There are no other instruments. This is a celebration song sung in a foreign language.", "data_idx": 4561, "number": 1, "label": "disco"} +{"file_name": "train_08226.png", "caption": "This song is a low quality live recording. This features an older female voice singing the main melody. This is accompanied by a tenor guitar playing two chords in a repeated rhythm. A male voice sings a fill after a line by the female voice. There is no percussion in this song. There are no other instruments. This is a celebration song sung in a foreign language.", "data_idx": 4561, "number": 2, "label": "disco"} +{"file_name": "train_08227.png", "caption": "This song is a low quality live recording. This features an older female voice singing the main melody. This is accompanied by a tenor guitar playing two chords in a repeated rhythm. A male voice sings a fill after a line by the female voice. There is no percussion in this song. There are no other instruments. This is a celebration song sung in a foreign language.", "data_idx": 4561, "number": 3, "label": "disco"} +{"file_name": "train_08228.png", "caption": "A male voice is singing with a mid-melody. Different synthesizer sounds are playing arpeggios being used as bassline and other sounds as melody in the mid range and higher register. An acoustic sounding kick is playing on every beat. This song may be playing in a synth retro movie.", "data_idx": 4563, "number": 0, "label": "rock"} +{"file_name": "train_08229.png", "caption": "A male voice is singing with a mid-melody. Different synthesizer sounds are playing arpeggios being used as bassline and other sounds as melody in the mid range and higher register. An acoustic sounding kick is playing on every beat. This song may be playing in a synth retro movie.", "data_idx": 4563, "number": 1, "label": "rock"} +{"file_name": "train_08230.png", "caption": "A male voice is singing with a mid-melody. Different synthesizer sounds are playing arpeggios being used as bassline and other sounds as melody in the mid range and higher register. An acoustic sounding kick is playing on every beat. This song may be playing in a synth retro movie.", "data_idx": 4563, "number": 2, "label": "rock"} +{"file_name": "train_08231.png", "caption": "A male voice is singing with a mid-melody. Different synthesizer sounds are playing arpeggios being used as bassline and other sounds as melody in the mid range and higher register. An acoustic sounding kick is playing on every beat. This song may be playing in a synth retro movie.", "data_idx": 4563, "number": 3, "label": "rock"} +{"file_name": "train_08232.png", "caption": "This music is an instrumental with a melancholic piano melody, mesmerising sound of chimes, simple keyboard harmony and a burgeoning cello note. The music is calming, meditative, nostalgic, emotional, sentimental, mellow, soothing and ambient.", "data_idx": 4565, "number": 0, "label": "jazz"} +{"file_name": "train_08233.png", "caption": "This music is an instrumental with a melancholic piano melody, mesmerising sound of chimes, simple keyboard harmony and a burgeoning cello note. The music is calming, meditative, nostalgic, emotional, sentimental, mellow, soothing and ambient.", "data_idx": 4565, "number": 1, "label": "jazz"} +{"file_name": "train_08234.png", "caption": "This music is an instrumental with a melancholic piano melody, mesmerising sound of chimes, simple keyboard harmony and a burgeoning cello note. The music is calming, meditative, nostalgic, emotional, sentimental, mellow, soothing and ambient.", "data_idx": 4565, "number": 2, "label": "jazz"} +{"file_name": "train_08235.png", "caption": "This music is an instrumental with a melancholic piano melody, mesmerising sound of chimes, simple keyboard harmony and a burgeoning cello note. The music is calming, meditative, nostalgic, emotional, sentimental, mellow, soothing and ambient.", "data_idx": 4565, "number": 3, "label": "jazz"} +{"file_name": "train_08236.png", "caption": "This music is a grim instrumental. The tempo is slow with a sombre electric guitar melody with atmospheric synthesiser and mood digital drums. The music is serious, intense, melancholy, pensive, cheerless, sinister and dark.", "data_idx": 4566, "number": 0, "label": "jazz"} +{"file_name": "train_08237.png", "caption": "This music is a grim instrumental. The tempo is slow with a sombre electric guitar melody with atmospheric synthesiser and mood digital drums. The music is serious, intense, melancholy, pensive, cheerless, sinister and dark.", "data_idx": 4566, "number": 1, "label": "jazz"} +{"file_name": "train_08238.png", "caption": "This music is a grim instrumental. The tempo is slow with a sombre electric guitar melody with atmospheric synthesiser and mood digital drums. The music is serious, intense, melancholy, pensive, cheerless, sinister and dark.", "data_idx": 4566, "number": 2, "label": "jazz"} +{"file_name": "train_08239.png", "caption": "This music is a grim instrumental. The tempo is slow with a sombre electric guitar melody with atmospheric synthesiser and mood digital drums. The music is serious, intense, melancholy, pensive, cheerless, sinister and dark.", "data_idx": 4566, "number": 3, "label": "jazz"} +{"file_name": "train_08240.png", "caption": "The low quality recording features a crowd harmonized singing over loud wooden percussion. The recording is noisy, in mono and it sounds energetic, joyful and exciting.", "data_idx": 4567, "number": 0, "label": "rock"} +{"file_name": "train_08241.png", "caption": "The low quality recording features a crowd harmonized singing over loud wooden percussion. The recording is noisy, in mono and it sounds energetic, joyful and exciting.", "data_idx": 4567, "number": 1, "label": "rock"} +{"file_name": "train_08242.png", "caption": "The low quality recording features a crowd harmonized singing over loud wooden percussion. The recording is noisy, in mono and it sounds energetic, joyful and exciting.", "data_idx": 4567, "number": 2, "label": "rock"} +{"file_name": "train_08243.png", "caption": "The low quality recording features a crowd harmonized singing over loud wooden percussion. The recording is noisy, in mono and it sounds energetic, joyful and exciting.", "data_idx": 4567, "number": 3, "label": "rock"} +{"file_name": "train_08244.png", "caption": "The music starts off with male backing vocals making way for the main male singer. Throughout the music excerpt a drum rhythmic accompaniment can be heard. The quality of the recording is low and so it's not clear if other instruments take part in accompanying the singer.", "data_idx": 4569, "number": 0, "label": "classical"} +{"file_name": "train_08245.png", "caption": "The music starts off with male backing vocals making way for the main male singer. Throughout the music excerpt a drum rhythmic accompaniment can be heard. The quality of the recording is low and so it's not clear if other instruments take part in accompanying the singer.", "data_idx": 4569, "number": 1, "label": "classical"} +{"file_name": "train_08246.png", "caption": "The music starts off with male backing vocals making way for the main male singer. Throughout the music excerpt a drum rhythmic accompaniment can be heard. The quality of the recording is low and so it's not clear if other instruments take part in accompanying the singer.", "data_idx": 4569, "number": 2, "label": "classical"} +{"file_name": "train_08247.png", "caption": "The music starts off with male backing vocals making way for the main male singer. Throughout the music excerpt a drum rhythmic accompaniment can be heard. The quality of the recording is low and so it's not clear if other instruments take part in accompanying the singer.", "data_idx": 4569, "number": 3, "label": "classical"} +{"file_name": "train_08248.png", "caption": "A male singer sings this rock melody. The song is medium tempo with a rock drumming rhythm, percussive bass line, distorted guitar accompaniment and keyboard accompaniment. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 4570, "number": 0, "label": "hiphop"} +{"file_name": "train_08249.png", "caption": "A male singer sings this rock melody. The song is medium tempo with a rock drumming rhythm, percussive bass line, distorted guitar accompaniment and keyboard accompaniment. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 4570, "number": 1, "label": "hiphop"} +{"file_name": "train_08250.png", "caption": "A male singer sings this rock melody. The song is medium tempo with a rock drumming rhythm, percussive bass line, distorted guitar accompaniment and keyboard accompaniment. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 4570, "number": 2, "label": "hiphop"} +{"file_name": "train_08251.png", "caption": "A male singer sings this rock melody. The song is medium tempo with a rock drumming rhythm, percussive bass line, distorted guitar accompaniment and keyboard accompaniment. The song is exciting and energetic. The song has poor audio quality.", "data_idx": 4570, "number": 3, "label": "hiphop"} +{"file_name": "train_08252.png", "caption": "An e-guitar takes the fast paced lead melody accompanied by another guitar strumming chords on the offbeat. The drums are playing a rhythm that motivates me to dance. This song may be playing somewhere on a street-performance in an Asian country.", "data_idx": 4575, "number": 0, "label": "classical"} +{"file_name": "train_08253.png", "caption": "An e-guitar takes the fast paced lead melody accompanied by another guitar strumming chords on the offbeat. The drums are playing a rhythm that motivates me to dance. This song may be playing somewhere on a street-performance in an Asian country.", "data_idx": 4575, "number": 1, "label": "classical"} +{"file_name": "train_08254.png", "caption": "The low quality recording features a loud, buzzing saw machine cutting wood. There is a muffled rock song playing in the background. The recording is mono and noisy. It sounds like it is a tutorial video.", "data_idx": 4576, "number": 0, "label": "metal"} +{"file_name": "train_08255.png", "caption": "The low quality recording features a loud, buzzing saw machine cutting wood. There is a muffled rock song playing in the background. The recording is mono and noisy. It sounds like it is a tutorial video.", "data_idx": 4576, "number": 1, "label": "metal"} +{"file_name": "train_08256.png", "caption": "The low quality recording features a loud, buzzing saw machine cutting wood. There is a muffled rock song playing in the background. The recording is mono and noisy. It sounds like it is a tutorial video.", "data_idx": 4576, "number": 2, "label": "metal"} +{"file_name": "train_08257.png", "caption": "The low quality recording features a loud, buzzing saw machine cutting wood. There is a muffled rock song playing in the background. The recording is mono and noisy. It sounds like it is a tutorial video.", "data_idx": 4576, "number": 3, "label": "metal"} +{"file_name": "train_08258.png", "caption": "The low quality recording features a live performance of a country song and it consists of banjo solo melody and electric guitar melody going back and forth, energetic drums, groovy bass and sustained strings melody playing in the background. The recording is noisy and in mono, and it sounds energetic and passionate.", "data_idx": 4580, "number": 0, "label": "rock"} +{"file_name": "train_08259.png", "caption": "The low quality recording features a live performance of a country song and it consists of banjo solo melody and electric guitar melody going back and forth, energetic drums, groovy bass and sustained strings melody playing in the background. The recording is noisy and in mono, and it sounds energetic and passionate.", "data_idx": 4580, "number": 1, "label": "rock"} +{"file_name": "train_08260.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals talking over reverberant female vocal melody, punchy snare and kick hits, shimmering hi hats, groovy bass and mellow piano chord progression. It has a lot of reverb on it and it sounds easygoing, chill and groovy - like something you would listen to on a car ride.", "data_idx": 4582, "number": 0, "label": "disco"} +{"file_name": "train_08261.png", "caption": "The low quality recording features a hip hop song that consists of flat male vocals talking over reverberant female vocal melody, punchy snare and kick hits, shimmering hi hats, groovy bass and mellow piano chord progression. It has a lot of reverb on it and it sounds easygoing, chill and groovy - like something you would listen to on a car ride.", "data_idx": 4582, "number": 1, "label": "disco"} +{"file_name": "train_08262.png", "caption": "This instrumental pop song features the main melody played on bells. This is accompanied by percussion playing a simple beat. A tambourine plays continuously in the background and the accents are on the alternate counts when counting 8 in a bar. A ukulele plays chords in the background. An accordion sound is also heard faintly in the background. There are no voices in this song. This song has a happy and uplifting mood. This song can be played in a happy scene in a children's movie.", "data_idx": 4585, "number": 0, "label": "reggae"} +{"file_name": "train_08263.png", "caption": "This instrumental pop song features the main melody played on bells. This is accompanied by percussion playing a simple beat. A tambourine plays continuously in the background and the accents are on the alternate counts when counting 8 in a bar. A ukulele plays chords in the background. An accordion sound is also heard faintly in the background. There are no voices in this song. This song has a happy and uplifting mood. This song can be played in a happy scene in a children's movie.", "data_idx": 4585, "number": 1, "label": "reggae"} +{"file_name": "train_08264.png", "caption": "This instrumental pop song features the main melody played on bells. This is accompanied by percussion playing a simple beat. A tambourine plays continuously in the background and the accents are on the alternate counts when counting 8 in a bar. A ukulele plays chords in the background. An accordion sound is also heard faintly in the background. There are no voices in this song. This song has a happy and uplifting mood. This song can be played in a happy scene in a children's movie.", "data_idx": 4585, "number": 2, "label": "reggae"} +{"file_name": "train_08265.png", "caption": "This instrumental pop song features the main melody played on bells. This is accompanied by percussion playing a simple beat. A tambourine plays continuously in the background and the accents are on the alternate counts when counting 8 in a bar. A ukulele plays chords in the background. An accordion sound is also heard faintly in the background. There are no voices in this song. This song has a happy and uplifting mood. This song can be played in a happy scene in a children's movie.", "data_idx": 4585, "number": 3, "label": "reggae"} +{"file_name": "train_08266.png", "caption": "The low quality recording features a boomy xylophone melody that gives off fun and happy vibes. Due to a huge amount of low frequencies, the recording sounds muddy as well.", "data_idx": 4586, "number": 0, "label": "hiphop"} +{"file_name": "train_08267.png", "caption": "The low quality recording features a boomy xylophone melody that gives off fun and happy vibes. Due to a huge amount of low frequencies, the recording sounds muddy as well.", "data_idx": 4586, "number": 1, "label": "hiphop"} +{"file_name": "train_08268.png", "caption": "The low quality recording features a boomy xylophone melody that gives off fun and happy vibes. Due to a huge amount of low frequencies, the recording sounds muddy as well.", "data_idx": 4586, "number": 2, "label": "hiphop"} +{"file_name": "train_08269.png", "caption": "The low quality recording features a boomy xylophone melody that gives off fun and happy vibes. Due to a huge amount of low frequencies, the recording sounds muddy as well.", "data_idx": 4586, "number": 3, "label": "hiphop"} +{"file_name": "train_08270.png", "caption": "The ambient auto shop sounds with the sound of compressed air hissing over the background of muffled radio music of what sounds to be a hip hop drum beat.", "data_idx": 4589, "number": 0, "label": "classical"} +{"file_name": "train_08271.png", "caption": "The ambient auto shop sounds with the sound of compressed air hissing over the background of muffled radio music of what sounds to be a hip hop drum beat.", "data_idx": 4589, "number": 1, "label": "classical"} +{"file_name": "train_08272.png", "caption": "The track features a cinematic ambience with different sound effects like waves or earthquake sounds. In the foreground there's a bright piano playing a melody with a positive vibe. The track sounds like an extract from a video game,", "data_idx": 4593, "number": 0, "label": "jazz"} +{"file_name": "train_08273.png", "caption": "The track features a cinematic ambience with different sound effects like waves or earthquake sounds. In the foreground there's a bright piano playing a melody with a positive vibe. The track sounds like an extract from a video game,", "data_idx": 4593, "number": 1, "label": "jazz"} +{"file_name": "train_08274.png", "caption": "The track features a cinematic ambience with different sound effects like waves or earthquake sounds. In the foreground there's a bright piano playing a melody with a positive vibe. The track sounds like an extract from a video game,", "data_idx": 4593, "number": 2, "label": "jazz"} +{"file_name": "train_08275.png", "caption": "The track features a cinematic ambience with different sound effects like waves or earthquake sounds. In the foreground there's a bright piano playing a melody with a positive vibe. The track sounds like an extract from a video game,", "data_idx": 4593, "number": 3, "label": "jazz"} +{"file_name": "train_08276.png", "caption": "The low quality recording features an Enka song that consists of a steel guitar solo melody, mellow bell chord progression, sustained strings melody and sustained brass melody. The recording is noisy and in mono, and it sounds emotional, heartfelt and passionate.", "data_idx": 4594, "number": 0, "label": "classical"} +{"file_name": "train_08277.png", "caption": "The low quality recording features an Enka song that consists of a steel guitar solo melody, mellow bell chord progression, sustained strings melody and sustained brass melody. The recording is noisy and in mono, and it sounds emotional, heartfelt and passionate.", "data_idx": 4594, "number": 1, "label": "classical"} +{"file_name": "train_08278.png", "caption": "The low quality recording features an Enka song that consists of a steel guitar solo melody, mellow bell chord progression, sustained strings melody and sustained brass melody. The recording is noisy and in mono, and it sounds emotional, heartfelt and passionate.", "data_idx": 4594, "number": 2, "label": "classical"} +{"file_name": "train_08279.png", "caption": "The low quality recording features an Enka song that consists of a steel guitar solo melody, mellow bell chord progression, sustained strings melody and sustained brass melody. The recording is noisy and in mono, and it sounds emotional, heartfelt and passionate.", "data_idx": 4594, "number": 3, "label": "classical"} diff --git a/data/train/metadata_0018.jsonl b/data/train/metadata_0018.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a10cd692bf3f80783d63aed90651c2712521c1e7 --- /dev/null +++ b/data/train/metadata_0018.jsonl @@ -0,0 +1,328 @@ +{"file_name": "train_08280.png", "caption": "This is a live performance of a soulful R&B song with two main instruments being at the core. There is a guitarist playing percussively and the electric piano is being used to play some bright and airy chords. The singer has a soulful and full bodied voice.", "data_idx": 4600, "number": 0, "label": "rock"} +{"file_name": "train_08281.png", "caption": "This is a live performance of a soulful R&B song with two main instruments being at the core. There is a guitarist playing percussively and the electric piano is being used to play some bright and airy chords. The singer has a soulful and full bodied voice.", "data_idx": 4600, "number": 1, "label": "rock"} +{"file_name": "train_08282.png", "caption": "This is a live performance of a soulful R&B song with two main instruments being at the core. There is a guitarist playing percussively and the electric piano is being used to play some bright and airy chords. The singer has a soulful and full bodied voice.", "data_idx": 4600, "number": 2, "label": "rock"} +{"file_name": "train_08283.png", "caption": "This is a live performance of a soulful R&B song with two main instruments being at the core. There is a guitarist playing percussively and the electric piano is being used to play some bright and airy chords. The singer has a soulful and full bodied voice.", "data_idx": 4600, "number": 3, "label": "rock"} +{"file_name": "train_08284.png", "caption": "The song is fast paced, grungy and intense. It has an overwhelmingly fuzzy and distorted sound that's characteristic of much of old school techno music.", "data_idx": 4601, "number": 0, "label": "hiphop"} +{"file_name": "train_08285.png", "caption": "The song is fast paced, grungy and intense. It has an overwhelmingly fuzzy and distorted sound that's characteristic of much of old school techno music.", "data_idx": 4601, "number": 1, "label": "hiphop"} +{"file_name": "train_08286.png", "caption": "The song is fast paced, grungy and intense. It has an overwhelmingly fuzzy and distorted sound that's characteristic of much of old school techno music.", "data_idx": 4601, "number": 2, "label": "hiphop"} +{"file_name": "train_08287.png", "caption": "The song is fast paced, grungy and intense. It has an overwhelmingly fuzzy and distorted sound that's characteristic of much of old school techno music.", "data_idx": 4601, "number": 3, "label": "hiphop"} +{"file_name": "train_08288.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained string melody going left and right through the stereo image. There are tinny wooden sounds in the background, as the recording is a bit noisy. Even though it is calming and relaxing, it is a bit disturbing too.", "data_idx": 4604, "number": 0, "label": "classical"} +{"file_name": "train_08289.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained string melody going left and right through the stereo image. There are tinny wooden sounds in the background, as the recording is a bit noisy. Even though it is calming and relaxing, it is a bit disturbing too.", "data_idx": 4604, "number": 1, "label": "classical"} +{"file_name": "train_08290.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained string melody going left and right through the stereo image. There are tinny wooden sounds in the background, as the recording is a bit noisy. Even though it is calming and relaxing, it is a bit disturbing too.", "data_idx": 4604, "number": 2, "label": "classical"} +{"file_name": "train_08291.png", "caption": "The low quality recording features an ambient song that consists of a wide sustained string melody going left and right through the stereo image. There are tinny wooden sounds in the background, as the recording is a bit noisy. Even though it is calming and relaxing, it is a bit disturbing too.", "data_idx": 4604, "number": 3, "label": "classical"} +{"file_name": "train_08292.png", "caption": "The low quality recording features a soul song that consists of reverberant passionate male vocal singing over sustained brass melody, followed by short brass melody and energetic, barely audible energetic drums. The recording is very noisy and thin, as it lacks low frequencies, but it sounds passionate and energetic.", "data_idx": 4605, "number": 0, "label": "rock"} +{"file_name": "train_08293.png", "caption": "The low quality recording features a soul song that consists of reverberant passionate male vocal singing over sustained brass melody, followed by short brass melody and energetic, barely audible energetic drums. The recording is very noisy and thin, as it lacks low frequencies, but it sounds passionate and energetic.", "data_idx": 4605, "number": 1, "label": "rock"} +{"file_name": "train_08294.png", "caption": "The low quality recording features a soul song that consists of reverberant passionate male vocal singing over sustained brass melody, followed by short brass melody and energetic, barely audible energetic drums. The recording is very noisy and thin, as it lacks low frequencies, but it sounds passionate and energetic.", "data_idx": 4605, "number": 2, "label": "rock"} +{"file_name": "train_08295.png", "caption": "The low quality recording features a soul song that consists of reverberant passionate male vocal singing over sustained brass melody, followed by short brass melody and energetic, barely audible energetic drums. The recording is very noisy and thin, as it lacks low frequencies, but it sounds passionate and energetic.", "data_idx": 4605, "number": 3, "label": "rock"} +{"file_name": "train_08296.png", "caption": "This music is a percussion solo. The tempo is fast with the drummer playing an energetic solo. The beat is vigorous, enthusiastic, spirited, infectious and punchy with a flourish of cymbals.", "data_idx": 4610, "number": 0, "label": "rock"} +{"file_name": "train_08297.png", "caption": "This music is a percussion solo. The tempo is fast with the drummer playing an energetic solo. The beat is vigorous, enthusiastic, spirited, infectious and punchy with a flourish of cymbals.", "data_idx": 4610, "number": 1, "label": "rock"} +{"file_name": "train_08298.png", "caption": "This music is a percussion solo. The tempo is fast with the drummer playing an energetic solo. The beat is vigorous, enthusiastic, spirited, infectious and punchy with a flourish of cymbals.", "data_idx": 4610, "number": 2, "label": "rock"} +{"file_name": "train_08299.png", "caption": "This music is a percussion solo. The tempo is fast with the drummer playing an energetic solo. The beat is vigorous, enthusiastic, spirited, infectious and punchy with a flourish of cymbals.", "data_idx": 4610, "number": 3, "label": "rock"} +{"file_name": "train_08300.png", "caption": "The song contains a flutesound, brass-section, e-bass and some lower register keys all playing the same funky and repetitive melody. The drums are holding a straight rhythm while the hits on the ride are played in a light swing. This song may be played at a rollerblade disco.", "data_idx": 4612, "number": 0, "label": "reggae"} +{"file_name": "train_08301.png", "caption": "The song contains a flutesound, brass-section, e-bass and some lower register keys all playing the same funky and repetitive melody. The drums are holding a straight rhythm while the hits on the ride are played in a light swing. This song may be played at a rollerblade disco.", "data_idx": 4612, "number": 1, "label": "reggae"} +{"file_name": "train_08302.png", "caption": "The song contains a flutesound, brass-section, e-bass and some lower register keys all playing the same funky and repetitive melody. The drums are holding a straight rhythm while the hits on the ride are played in a light swing. This song may be played at a rollerblade disco.", "data_idx": 4612, "number": 2, "label": "reggae"} +{"file_name": "train_08303.png", "caption": "The song contains a flutesound, brass-section, e-bass and some lower register keys all playing the same funky and repetitive melody. The drums are holding a straight rhythm while the hits on the ride are played in a light swing. This song may be played at a rollerblade disco.", "data_idx": 4612, "number": 3, "label": "reggae"} +{"file_name": "train_08304.png", "caption": "The low quality recording features a loud wind and water splashing sound effects, while there is a widely spread electric guitar melody and marimba, followed by smooth bass, soft kick, shimmering shakers and tambourine playing in the background. It is noisy and it sounds like it was recorded with the phone, while the music was added in post production.", "data_idx": 4613, "number": 0, "label": "disco"} +{"file_name": "train_08305.png", "caption": "The low quality recording features a loud wind and water splashing sound effects, while there is a widely spread electric guitar melody and marimba, followed by smooth bass, soft kick, shimmering shakers and tambourine playing in the background. It is noisy and it sounds like it was recorded with the phone, while the music was added in post production.", "data_idx": 4613, "number": 1, "label": "disco"} +{"file_name": "train_08306.png", "caption": "The low quality recording features a loud wind and water splashing sound effects, while there is a widely spread electric guitar melody and marimba, followed by smooth bass, soft kick, shimmering shakers and tambourine playing in the background. It is noisy and it sounds like it was recorded with the phone, while the music was added in post production.", "data_idx": 4613, "number": 2, "label": "disco"} +{"file_name": "train_08307.png", "caption": "The low quality recording features a loud wind and water splashing sound effects, while there is a widely spread electric guitar melody and marimba, followed by smooth bass, soft kick, shimmering shakers and tambourine playing in the background. It is noisy and it sounds like it was recorded with the phone, while the music was added in post production.", "data_idx": 4613, "number": 3, "label": "disco"} +{"file_name": "train_08308.png", "caption": "The rock music features a bass guitar playing a repeating melody with a distortion effect in the really-low pitch register. A set of drums is accompanying the bassist with a well-rooted and repeating rhythm.", "data_idx": 4614, "number": 0, "label": "hiphop"} +{"file_name": "train_08309.png", "caption": "The rock music features a bass guitar playing a repeating melody with a distortion effect in the really-low pitch register. A set of drums is accompanying the bassist with a well-rooted and repeating rhythm.", "data_idx": 4614, "number": 1, "label": "hiphop"} +{"file_name": "train_08310.png", "caption": "The rock music features a bass guitar playing a repeating melody with a distortion effect in the really-low pitch register. A set of drums is accompanying the bassist with a well-rooted and repeating rhythm.", "data_idx": 4614, "number": 2, "label": "hiphop"} +{"file_name": "train_08311.png", "caption": "The rock music features a bass guitar playing a repeating melody with a distortion effect in the really-low pitch register. A set of drums is accompanying the bassist with a well-rooted and repeating rhythm.", "data_idx": 4614, "number": 3, "label": "hiphop"} +{"file_name": "train_08312.png", "caption": "The song is an instrumental. The tempo is medium and has a piano accompaniment. The song has a lot of ambient noises like hissing, breathing and hushed tones. The song is emotional but of poor audio quality.", "data_idx": 4615, "number": 0, "label": "rock"} +{"file_name": "train_08313.png", "caption": "The song is an instrumental. The tempo is medium and has a piano accompaniment. The song has a lot of ambient noises like hissing, breathing and hushed tones. The song is emotional but of poor audio quality.", "data_idx": 4615, "number": 1, "label": "rock"} +{"file_name": "train_08314.png", "caption": "The song is an instrumental. The tempo is medium and has a piano accompaniment. The song has a lot of ambient noises like hissing, breathing and hushed tones. The song is emotional but of poor audio quality.", "data_idx": 4615, "number": 2, "label": "rock"} +{"file_name": "train_08315.png", "caption": "The song is an instrumental. The tempo is medium and has a piano accompaniment. The song has a lot of ambient noises like hissing, breathing and hushed tones. The song is emotional but of poor audio quality.", "data_idx": 4615, "number": 3, "label": "rock"} +{"file_name": "train_08316.png", "caption": "This music clip is a loud, boomy drum beat. The tempo is slow with the powerful and rhythmic beat of the Big Chinese drum. It is loud, resonating, vibrating and powerful and sounds ceremonial, celebratory and royal and used for announcements.", "data_idx": 4623, "number": 0, "label": "hiphop"} +{"file_name": "train_08317.png", "caption": "This music clip is a loud, boomy drum beat. The tempo is slow with the powerful and rhythmic beat of the Big Chinese drum. It is loud, resonating, vibrating and powerful and sounds ceremonial, celebratory and royal and used for announcements.", "data_idx": 4623, "number": 1, "label": "hiphop"} +{"file_name": "train_08318.png", "caption": "Someone is playing a distorted e-guitar solo along to a backing track containing a strummed acoustic guitar and a simple drum groove. This recording is of poor audio-quality. This song may be playing at home practicing guitar.", "data_idx": 4624, "number": 0, "label": "classical"} +{"file_name": "train_08319.png", "caption": "Someone is playing a distorted e-guitar solo along to a backing track containing a strummed acoustic guitar and a simple drum groove. This recording is of poor audio-quality. This song may be playing at home practicing guitar.", "data_idx": 4624, "number": 1, "label": "classical"} +{"file_name": "train_08320.png", "caption": "Someone is playing a distorted e-guitar solo along to a backing track containing a strummed acoustic guitar and a simple drum groove. This recording is of poor audio-quality. This song may be playing at home practicing guitar.", "data_idx": 4624, "number": 2, "label": "classical"} +{"file_name": "train_08321.png", "caption": "Someone is playing a distorted e-guitar solo along to a backing track containing a strummed acoustic guitar and a simple drum groove. This recording is of poor audio-quality. This song may be playing at home practicing guitar.", "data_idx": 4624, "number": 3, "label": "classical"} +{"file_name": "train_08322.png", "caption": "This music is an Electronic music instrumental. The tempo is medium with synthesiser arrangements , electronic xylophone harmony and digital drum beats. The music is soothing, punchy, groovy, hypnotic and engaging. This music is Synth Pop.", "data_idx": 4626, "number": 0, "label": "reggae"} +{"file_name": "train_08323.png", "caption": "This music is an Electronic music instrumental. The tempo is medium with synthesiser arrangements , electronic xylophone harmony and digital drum beats. The music is soothing, punchy, groovy, hypnotic and engaging. This music is Synth Pop.", "data_idx": 4626, "number": 1, "label": "reggae"} +{"file_name": "train_08324.png", "caption": "This music is an Electronic music instrumental. The tempo is medium with synthesiser arrangements , electronic xylophone harmony and digital drum beats. The music is soothing, punchy, groovy, hypnotic and engaging. This music is Synth Pop.", "data_idx": 4626, "number": 2, "label": "reggae"} +{"file_name": "train_08325.png", "caption": "This music is an Electronic music instrumental. The tempo is medium with synthesiser arrangements , electronic xylophone harmony and digital drum beats. The music is soothing, punchy, groovy, hypnotic and engaging. This music is Synth Pop.", "data_idx": 4626, "number": 3, "label": "reggae"} +{"file_name": "train_08326.png", "caption": "The song is an instrumental. The song is medium fast tempo with a groovy bass line, energetic drumming, and tap dancers in a percussive groove. The song is entertaining and energetic.", "data_idx": 4627, "number": 0, "label": "hiphop"} +{"file_name": "train_08327.png", "caption": "The song is an instrumental. The song is medium fast tempo with a groovy bass line, energetic drumming, and tap dancers in a percussive groove. The song is entertaining and energetic.", "data_idx": 4627, "number": 1, "label": "hiphop"} +{"file_name": "train_08328.png", "caption": "The song is an instrumental. The song is medium fast tempo with a groovy bass line, energetic drumming, and tap dancers in a percussive groove. The song is entertaining and energetic.", "data_idx": 4627, "number": 2, "label": "hiphop"} +{"file_name": "train_08329.png", "caption": "The song is an instrumental. The song is medium fast tempo with a groovy bass line, energetic drumming, and tap dancers in a percussive groove. The song is entertaining and energetic.", "data_idx": 4627, "number": 3, "label": "hiphop"} +{"file_name": "train_08330.png", "caption": "This song contains digital drums with a soft sub bass playing along every kick hit. An acoustic guitar/sitar is playing a melody with a synth sound playing a high counter melody panned to the left side of the speakers. A synth pad is playing a long note melody in a higher register. A female voice is singing the main melody. Her voice is doubled and backing voices are adding harmonies. This song may be playing in a hip-hop club.", "data_idx": 4628, "number": 0, "label": "pop"} +{"file_name": "train_08331.png", "caption": "This song contains digital drums with a soft sub bass playing along every kick hit. An acoustic guitar/sitar is playing a melody with a synth sound playing a high counter melody panned to the left side of the speakers. A synth pad is playing a long note melody in a higher register. A female voice is singing the main melody. Her voice is doubled and backing voices are adding harmonies. This song may be playing in a hip-hop club.", "data_idx": 4628, "number": 1, "label": "pop"} +{"file_name": "train_08332.png", "caption": "This song contains digital drums with a soft sub bass playing along every kick hit. An acoustic guitar/sitar is playing a melody with a synth sound playing a high counter melody panned to the left side of the speakers. A synth pad is playing a long note melody in a higher register. A female voice is singing the main melody. Her voice is doubled and backing voices are adding harmonies. This song may be playing in a hip-hop club.", "data_idx": 4628, "number": 2, "label": "pop"} +{"file_name": "train_08333.png", "caption": "This song contains digital drums with a soft sub bass playing along every kick hit. An acoustic guitar/sitar is playing a melody with a synth sound playing a high counter melody panned to the left side of the speakers. A synth pad is playing a long note melody in a higher register. A female voice is singing the main melody. Her voice is doubled and backing voices are adding harmonies. This song may be playing in a hip-hop club.", "data_idx": 4628, "number": 3, "label": "pop"} +{"file_name": "train_08334.png", "caption": "The song has a generally cheerful, happy-go-lucky vibe to it. It's got a male vocalist who has a zesty and vibrant voice, as well as a female vocalist that brings power to the song as well. There's a brass motif that follows one of the phrases by the male vocalist, and the drumming is generally upbeat and jazzy.", "data_idx": 4630, "number": 0, "label": "hiphop"} +{"file_name": "train_08335.png", "caption": "The song has a generally cheerful, happy-go-lucky vibe to it. It's got a male vocalist who has a zesty and vibrant voice, as well as a female vocalist that brings power to the song as well. There's a brass motif that follows one of the phrases by the male vocalist, and the drumming is generally upbeat and jazzy.", "data_idx": 4630, "number": 1, "label": "hiphop"} +{"file_name": "train_08336.png", "caption": "The song has a generally cheerful, happy-go-lucky vibe to it. It's got a male vocalist who has a zesty and vibrant voice, as well as a female vocalist that brings power to the song as well. There's a brass motif that follows one of the phrases by the male vocalist, and the drumming is generally upbeat and jazzy.", "data_idx": 4630, "number": 2, "label": "hiphop"} +{"file_name": "train_08337.png", "caption": "The song has a generally cheerful, happy-go-lucky vibe to it. It's got a male vocalist who has a zesty and vibrant voice, as well as a female vocalist that brings power to the song as well. There's a brass motif that follows one of the phrases by the male vocalist, and the drumming is generally upbeat and jazzy.", "data_idx": 4630, "number": 3, "label": "hiphop"} +{"file_name": "train_08338.png", "caption": "A male vocalist sings this melodious contemporary Christian song. The tempo is medium with punchy drumming, keyboard accompaniment ,vigorous violin harmony, steady bass line and synth arrangements. The song is peppy, appealing to the youth, melodious, mellow and sincere.", "data_idx": 4631, "number": 0, "label": "pop"} +{"file_name": "train_08339.png", "caption": "A male vocalist sings this melodious contemporary Christian song. The tempo is medium with punchy drumming, keyboard accompaniment ,vigorous violin harmony, steady bass line and synth arrangements. The song is peppy, appealing to the youth, melodious, mellow and sincere.", "data_idx": 4631, "number": 1, "label": "pop"} +{"file_name": "train_08340.png", "caption": "A male vocalist sings this melodious contemporary Christian song. The tempo is medium with punchy drumming, keyboard accompaniment ,vigorous violin harmony, steady bass line and synth arrangements. The song is peppy, appealing to the youth, melodious, mellow and sincere.", "data_idx": 4631, "number": 2, "label": "pop"} +{"file_name": "train_08341.png", "caption": "A male vocalist sings this melodious contemporary Christian song. The tempo is medium with punchy drumming, keyboard accompaniment ,vigorous violin harmony, steady bass line and synth arrangements. The song is peppy, appealing to the youth, melodious, mellow and sincere.", "data_idx": 4631, "number": 3, "label": "pop"} +{"file_name": "train_08342.png", "caption": "The excerpt is actually a song collage and it features third songs. In the first one a male voice is singing and the song has a dance feel to it. In the second song a male voice is singing and being backed by male voices at the same time. The instruments used are more close to the rock genre. The third song lasts for a few milliseconds and so it's hard to notice anything about it.", "data_idx": 4632, "number": 0, "label": "blues"} +{"file_name": "train_08343.png", "caption": "The excerpt is actually a song collage and it features third songs. In the first one a male voice is singing and the song has a dance feel to it. In the second song a male voice is singing and being backed by male voices at the same time. The instruments used are more close to the rock genre. The third song lasts for a few milliseconds and so it's hard to notice anything about it.", "data_idx": 4632, "number": 1, "label": "blues"} +{"file_name": "train_08344.png", "caption": "The excerpt is actually a song collage and it features third songs. In the first one a male voice is singing and the song has a dance feel to it. In the second song a male voice is singing and being backed by male voices at the same time. The instruments used are more close to the rock genre. The third song lasts for a few milliseconds and so it's hard to notice anything about it.", "data_idx": 4632, "number": 2, "label": "blues"} +{"file_name": "train_08345.png", "caption": "The excerpt is actually a song collage and it features third songs. In the first one a male voice is singing and the song has a dance feel to it. In the second song a male voice is singing and being backed by male voices at the same time. The instruments used are more close to the rock genre. The third song lasts for a few milliseconds and so it's hard to notice anything about it.", "data_idx": 4632, "number": 3, "label": "blues"} +{"file_name": "train_08346.png", "caption": "This is an instrumental live downtempo music piece performance with deep house elements. There is a synth bass lead while the medium-pitch strings hold the melodic background. An occasional piano riff can be heard every now and then. There is a mid tempo electronic drum beat in the rhythmic background. It has a very groovy mood. This piece could be played during earlier hours at a nightclub. It could also be used in a tech device advertisement.", "data_idx": 4633, "number": 0, "label": "rock"} +{"file_name": "train_08347.png", "caption": "This is an instrumental live downtempo music piece performance with deep house elements. There is a synth bass lead while the medium-pitch strings hold the melodic background. An occasional piano riff can be heard every now and then. There is a mid tempo electronic drum beat in the rhythmic background. It has a very groovy mood. This piece could be played during earlier hours at a nightclub. It could also be used in a tech device advertisement.", "data_idx": 4633, "number": 1, "label": "rock"} +{"file_name": "train_08348.png", "caption": "This is an instrumental live downtempo music piece performance with deep house elements. There is a synth bass lead while the medium-pitch strings hold the melodic background. An occasional piano riff can be heard every now and then. There is a mid tempo electronic drum beat in the rhythmic background. It has a very groovy mood. This piece could be played during earlier hours at a nightclub. It could also be used in a tech device advertisement.", "data_idx": 4633, "number": 2, "label": "rock"} +{"file_name": "train_08349.png", "caption": "This is an instrumental live downtempo music piece performance with deep house elements. There is a synth bass lead while the medium-pitch strings hold the melodic background. An occasional piano riff can be heard every now and then. There is a mid tempo electronic drum beat in the rhythmic background. It has a very groovy mood. This piece could be played during earlier hours at a nightclub. It could also be used in a tech device advertisement.", "data_idx": 4633, "number": 3, "label": "rock"} +{"file_name": "train_08350.png", "caption": "Someone is playing an acoustic drumset with an open hi-hat and fast aggressive fill-ins. An e-bass is playing a simple bassline along. In the background you can hear strings playing a melody while an e-guitar is playing an arpeggio melody on top. In the background you can hear people cheering and singer/singers at the end of a phrase. This song may be playing in a live concert.", "data_idx": 4636, "number": 0, "label": "metal"} +{"file_name": "train_08351.png", "caption": "Someone is playing an acoustic drumset with an open hi-hat and fast aggressive fill-ins. An e-bass is playing a simple bassline along. In the background you can hear strings playing a melody while an e-guitar is playing an arpeggio melody on top. In the background you can hear people cheering and singer/singers at the end of a phrase. This song may be playing in a live concert.", "data_idx": 4636, "number": 1, "label": "metal"} +{"file_name": "train_08352.png", "caption": "Someone is playing an acoustic drumset with an open hi-hat and fast aggressive fill-ins. An e-bass is playing a simple bassline along. In the background you can hear strings playing a melody while an e-guitar is playing an arpeggio melody on top. In the background you can hear people cheering and singer/singers at the end of a phrase. This song may be playing in a live concert.", "data_idx": 4636, "number": 2, "label": "metal"} +{"file_name": "train_08353.png", "caption": "Someone is playing an acoustic drumset with an open hi-hat and fast aggressive fill-ins. An e-bass is playing a simple bassline along. In the background you can hear strings playing a melody while an e-guitar is playing an arpeggio melody on top. In the background you can hear people cheering and singer/singers at the end of a phrase. This song may be playing in a live concert.", "data_idx": 4636, "number": 3, "label": "metal"} +{"file_name": "train_08354.png", "caption": "This song is an instrumental. The tempo is medium with the melody of an oboe and percussion rhythm like the bongos and the sound of a waterfall and faint female vocals in the background.the sound quality of the song is inferior and the sounds are distorted and muffled This song is an instrumental pop.", "data_idx": 4637, "number": 0, "label": "jazz"} +{"file_name": "train_08355.png", "caption": "This song is an instrumental. The tempo is medium with the melody of an oboe and percussion rhythm like the bongos and the sound of a waterfall and faint female vocals in the background.the sound quality of the song is inferior and the sounds are distorted and muffled This song is an instrumental pop.", "data_idx": 4637, "number": 1, "label": "jazz"} +{"file_name": "train_08356.png", "caption": "This song is an instrumental. The tempo is medium with the melody of an oboe and percussion rhythm like the bongos and the sound of a waterfall and faint female vocals in the background.the sound quality of the song is inferior and the sounds are distorted and muffled This song is an instrumental pop.", "data_idx": 4637, "number": 2, "label": "jazz"} +{"file_name": "train_08357.png", "caption": "This song is an instrumental. The tempo is medium with the melody of an oboe and percussion rhythm like the bongos and the sound of a waterfall and faint female vocals in the background.the sound quality of the song is inferior and the sounds are distorted and muffled This song is an instrumental pop.", "data_idx": 4637, "number": 3, "label": "jazz"} +{"file_name": "train_08358.png", "caption": "Male singers sing this vocal harmony. The song is medium tempo with steady drumming rhythm, cello playing the bass line, guitars strumming rhythm and various percussion hits. The song is chaotic and exciting. The song is an amateur band playing a retro pop song with audio quality.", "data_idx": 4638, "number": 0, "label": "rock"} +{"file_name": "train_08359.png", "caption": "Male singers sing this vocal harmony. The song is medium tempo with steady drumming rhythm, cello playing the bass line, guitars strumming rhythm and various percussion hits. The song is chaotic and exciting. The song is an amateur band playing a retro pop song with audio quality.", "data_idx": 4638, "number": 1, "label": "rock"} +{"file_name": "train_08360.png", "caption": "Male singers sing this vocal harmony. The song is medium tempo with steady drumming rhythm, cello playing the bass line, guitars strumming rhythm and various percussion hits. The song is chaotic and exciting. The song is an amateur band playing a retro pop song with audio quality.", "data_idx": 4638, "number": 2, "label": "rock"} +{"file_name": "train_08361.png", "caption": "Male singers sing this vocal harmony. The song is medium tempo with steady drumming rhythm, cello playing the bass line, guitars strumming rhythm and various percussion hits. The song is chaotic and exciting. The song is an amateur band playing a retro pop song with audio quality.", "data_idx": 4638, "number": 3, "label": "rock"} +{"file_name": "train_08362.png", "caption": "This music is an electric guitar instrumental. The tempo is very fast with the guitarist playing a very animated riff rapidly with a lot of dexterity. There is no accompaniment except for the sound of rhythmic clicking which could be percussion or just the sound of fingers moving along the guitar rapidly. The audio quality is inferior so the sounds are sharp, piercing , loud and a little unpleasant to the ear.", "data_idx": 4639, "number": 0, "label": "classical"} +{"file_name": "train_08363.png", "caption": "This music is an electric guitar instrumental. The tempo is very fast with the guitarist playing a very animated riff rapidly with a lot of dexterity. There is no accompaniment except for the sound of rhythmic clicking which could be percussion or just the sound of fingers moving along the guitar rapidly. The audio quality is inferior so the sounds are sharp, piercing , loud and a little unpleasant to the ear.", "data_idx": 4639, "number": 1, "label": "classical"} +{"file_name": "train_08364.png", "caption": "This music is an electric guitar instrumental. The tempo is very fast with the guitarist playing a very animated riff rapidly with a lot of dexterity. There is no accompaniment except for the sound of rhythmic clicking which could be percussion or just the sound of fingers moving along the guitar rapidly. The audio quality is inferior so the sounds are sharp, piercing , loud and a little unpleasant to the ear.", "data_idx": 4639, "number": 2, "label": "classical"} +{"file_name": "train_08365.png", "caption": "This music is an electric guitar instrumental. The tempo is very fast with the guitarist playing a very animated riff rapidly with a lot of dexterity. There is no accompaniment except for the sound of rhythmic clicking which could be percussion or just the sound of fingers moving along the guitar rapidly. The audio quality is inferior so the sounds are sharp, piercing , loud and a little unpleasant to the ear.", "data_idx": 4639, "number": 3, "label": "classical"} +{"file_name": "train_08366.png", "caption": "The music features for the most part an instrumental, however, towards the end of the music excerpt a female voice sings a short melody. The passage starts off with a synth sound playing a melody that's doubled in unison by the bass guitar. After that a sampled brass sound plays a repeating melody. Throughout the music one can hear a drum set taking an active part in shaping the pulse and flow of the music.", "data_idx": 4641, "number": 0, "label": "disco"} +{"file_name": "train_08367.png", "caption": "The music features for the most part an instrumental, however, towards the end of the music excerpt a female voice sings a short melody. The passage starts off with a synth sound playing a melody that's doubled in unison by the bass guitar. After that a sampled brass sound plays a repeating melody. Throughout the music one can hear a drum set taking an active part in shaping the pulse and flow of the music.", "data_idx": 4641, "number": 1, "label": "disco"} +{"file_name": "train_08368.png", "caption": "The music features for the most part an instrumental, however, towards the end of the music excerpt a female voice sings a short melody. The passage starts off with a synth sound playing a melody that's doubled in unison by the bass guitar. After that a sampled brass sound plays a repeating melody. Throughout the music one can hear a drum set taking an active part in shaping the pulse and flow of the music.", "data_idx": 4641, "number": 2, "label": "disco"} +{"file_name": "train_08369.png", "caption": "The music features for the most part an instrumental, however, towards the end of the music excerpt a female voice sings a short melody. The passage starts off with a synth sound playing a melody that's doubled in unison by the bass guitar. After that a sampled brass sound plays a repeating melody. Throughout the music one can hear a drum set taking an active part in shaping the pulse and flow of the music.", "data_idx": 4641, "number": 3, "label": "disco"} +{"file_name": "train_08370.png", "caption": "This audio is an animated movie clip. There are ambient street sounds like footsteps, car brakes being slammed, car crashing, police van or ambulance siren and a song at the end.", "data_idx": 4642, "number": 0, "label": "hiphop"} +{"file_name": "train_08371.png", "caption": "This audio is an animated movie clip. There are ambient street sounds like footsteps, car brakes being slammed, car crashing, police van or ambulance siren and a song at the end.", "data_idx": 4642, "number": 1, "label": "hiphop"} +{"file_name": "train_08372.png", "caption": "This audio is an animated movie clip. There are ambient street sounds like footsteps, car brakes being slammed, car crashing, police van or ambulance siren and a song at the end.", "data_idx": 4642, "number": 2, "label": "hiphop"} +{"file_name": "train_08373.png", "caption": "This audio is an animated movie clip. There are ambient street sounds like footsteps, car brakes being slammed, car crashing, police van or ambulance siren and a song at the end.", "data_idx": 4642, "number": 3, "label": "hiphop"} +{"file_name": "train_08374.png", "caption": "This game music starts off with the sound of something that sounds like the fading sound of a giant's footsteps. An orchestral sound plays as well and the sounds take a pause while electronic percussion is played. This song can be played in a game lobby.", "data_idx": 4643, "number": 0, "label": "hiphop"} +{"file_name": "train_08375.png", "caption": "This game music starts off with the sound of something that sounds like the fading sound of a giant's footsteps. An orchestral sound plays as well and the sounds take a pause while electronic percussion is played. This song can be played in a game lobby.", "data_idx": 4643, "number": 1, "label": "hiphop"} +{"file_name": "train_08376.png", "caption": "A female singer sings this beautiful melody with male and female backup singers in vocal harmony. The song is medium tempo with an acoustic guitar playing rhythm and strong string bass line with no percussion instrumentation. The song is emotional and heartfelt. The song has acapella influences and is soulful. The song is of poor audio recording quality.", "data_idx": 4644, "number": 0, "label": "rock"} +{"file_name": "train_08377.png", "caption": "A female singer sings this beautiful melody with male and female backup singers in vocal harmony. The song is medium tempo with an acoustic guitar playing rhythm and strong string bass line with no percussion instrumentation. The song is emotional and heartfelt. The song has acapella influences and is soulful. The song is of poor audio recording quality.", "data_idx": 4644, "number": 1, "label": "rock"} +{"file_name": "train_08378.png", "caption": "A female singer sings this beautiful melody with male and female backup singers in vocal harmony. The song is medium tempo with an acoustic guitar playing rhythm and strong string bass line with no percussion instrumentation. The song is emotional and heartfelt. The song has acapella influences and is soulful. The song is of poor audio recording quality.", "data_idx": 4644, "number": 2, "label": "rock"} +{"file_name": "train_08379.png", "caption": "A female singer sings this beautiful melody with male and female backup singers in vocal harmony. The song is medium tempo with an acoustic guitar playing rhythm and strong string bass line with no percussion instrumentation. The song is emotional and heartfelt. The song has acapella influences and is soulful. The song is of poor audio recording quality.", "data_idx": 4644, "number": 3, "label": "rock"} +{"file_name": "train_08380.png", "caption": "A male voice is singing loud and in a higher register while a flute is playing a counter melody. Percussions are playing a fast paced groove along with a soft minimalistic bass. In the background you can hear a synth pad playing chords. This song may be playing in a oriental barber shop.", "data_idx": 4646, "number": 0, "label": "rock"} +{"file_name": "train_08381.png", "caption": "A male voice is singing loud and in a higher register while a flute is playing a counter melody. Percussions are playing a fast paced groove along with a soft minimalistic bass. In the background you can hear a synth pad playing chords. This song may be playing in a oriental barber shop.", "data_idx": 4646, "number": 1, "label": "rock"} +{"file_name": "train_08382.png", "caption": "A male voice is singing loud and in a higher register while a flute is playing a counter melody. Percussions are playing a fast paced groove along with a soft minimalistic bass. In the background you can hear a synth pad playing chords. This song may be playing in a oriental barber shop.", "data_idx": 4646, "number": 2, "label": "rock"} +{"file_name": "train_08383.png", "caption": "A male voice is singing loud and in a higher register while a flute is playing a counter melody. Percussions are playing a fast paced groove along with a soft minimalistic bass. In the background you can hear a synth pad playing chords. This song may be playing in a oriental barber shop.", "data_idx": 4646, "number": 3, "label": "rock"} +{"file_name": "train_08384.png", "caption": "This is a jingle piece playing in the background of a loud toy helicopter video. The video is a bit dated and therefore the sound quality is quite poor. The instrumentation of the piece is barely audible. There is a keyboard playing the melody with a bass guitar and a drum backing. The piece is made up of common sounds and it has a generic aura to it. The sounds from this recording could be sampled for use in beat-making.", "data_idx": 4647, "number": 0, "label": "metal"} +{"file_name": "train_08385.png", "caption": "This is a jingle piece playing in the background of a loud toy helicopter video. The video is a bit dated and therefore the sound quality is quite poor. The instrumentation of the piece is barely audible. There is a keyboard playing the melody with a bass guitar and a drum backing. The piece is made up of common sounds and it has a generic aura to it. The sounds from this recording could be sampled for use in beat-making.", "data_idx": 4647, "number": 1, "label": "metal"} +{"file_name": "train_08386.png", "caption": "This is a jingle piece playing in the background of a loud toy helicopter video. The video is a bit dated and therefore the sound quality is quite poor. The instrumentation of the piece is barely audible. There is a keyboard playing the melody with a bass guitar and a drum backing. The piece is made up of common sounds and it has a generic aura to it. The sounds from this recording could be sampled for use in beat-making.", "data_idx": 4647, "number": 2, "label": "metal"} +{"file_name": "train_08387.png", "caption": "This is a jingle piece playing in the background of a loud toy helicopter video. The video is a bit dated and therefore the sound quality is quite poor. The instrumentation of the piece is barely audible. There is a keyboard playing the melody with a bass guitar and a drum backing. The piece is made up of common sounds and it has a generic aura to it. The sounds from this recording could be sampled for use in beat-making.", "data_idx": 4647, "number": 3, "label": "metal"} +{"file_name": "train_08388.png", "caption": "The low quality recording features a blues song that consists of throaty male vocals, alongside harmonizing male vocals, singing over electric guitar melody, brass melody, shimmering hi hats, punchy snare and kick hits and walking double bass. It is a bit noisy and it sounds funky, groovy, happy, fun and vintage - like something you would want to dance to.", "data_idx": 4650, "number": 0, "label": "blues"} +{"file_name": "train_08389.png", "caption": "The low quality recording features a blues song that consists of throaty male vocals, alongside harmonizing male vocals, singing over electric guitar melody, brass melody, shimmering hi hats, punchy snare and kick hits and walking double bass. It is a bit noisy and it sounds funky, groovy, happy, fun and vintage - like something you would want to dance to.", "data_idx": 4650, "number": 1, "label": "blues"} +{"file_name": "train_08390.png", "caption": "The low quality recording features a blues song that consists of throaty male vocals, alongside harmonizing male vocals, singing over electric guitar melody, brass melody, shimmering hi hats, punchy snare and kick hits and walking double bass. It is a bit noisy and it sounds funky, groovy, happy, fun and vintage - like something you would want to dance to.", "data_idx": 4650, "number": 2, "label": "blues"} +{"file_name": "train_08391.png", "caption": "The low quality recording features a blues song that consists of throaty male vocals, alongside harmonizing male vocals, singing over electric guitar melody, brass melody, shimmering hi hats, punchy snare and kick hits and walking double bass. It is a bit noisy and it sounds funky, groovy, happy, fun and vintage - like something you would want to dance to.", "data_idx": 4650, "number": 3, "label": "blues"} +{"file_name": "train_08392.png", "caption": "A male voice is singing loud and soulful while a e-bass takes the major role of the instrumental serving with a percussive rhythm along with a e-guitar strumming short chords where a snare could have been. Male backing vocals singing harmonies in the background. The recording sounds old and therefore not of the best quality. This song may be playing while eating a romantic dinner with your partner.", "data_idx": 4651, "number": 0, "label": "reggae"} +{"file_name": "train_08393.png", "caption": "A male voice is singing loud and soulful while a e-bass takes the major role of the instrumental serving with a percussive rhythm along with a e-guitar strumming short chords where a snare could have been. Male backing vocals singing harmonies in the background. The recording sounds old and therefore not of the best quality. This song may be playing while eating a romantic dinner with your partner.", "data_idx": 4651, "number": 1, "label": "reggae"} +{"file_name": "train_08394.png", "caption": "A male voice is singing loud and soulful while a e-bass takes the major role of the instrumental serving with a percussive rhythm along with a e-guitar strumming short chords where a snare could have been. Male backing vocals singing harmonies in the background. The recording sounds old and therefore not of the best quality. This song may be playing while eating a romantic dinner with your partner.", "data_idx": 4651, "number": 2, "label": "reggae"} +{"file_name": "train_08395.png", "caption": "A male voice is singing loud and soulful while a e-bass takes the major role of the instrumental serving with a percussive rhythm along with a e-guitar strumming short chords where a snare could have been. Male backing vocals singing harmonies in the background. The recording sounds old and therefore not of the best quality. This song may be playing while eating a romantic dinner with your partner.", "data_idx": 4651, "number": 3, "label": "reggae"} +{"file_name": "train_08396.png", "caption": "This is an alternative rock piece. The main theme is played through power chords by a distorted electric guitar. In the background, a bass guitar is playing a groovy bass line. The rhythmic background is provided by loud acoustic drums playing a rock drum beat with frequent usage of rapid fills. The atmosphere of the song is aggressive and rebellious. It could be used in the soundtrack of a teenage drama or a crime series.", "data_idx": 4655, "number": 0, "label": "metal"} +{"file_name": "train_08397.png", "caption": "This is an alternative rock piece. The main theme is played through power chords by a distorted electric guitar. In the background, a bass guitar is playing a groovy bass line. The rhythmic background is provided by loud acoustic drums playing a rock drum beat with frequent usage of rapid fills. The atmosphere of the song is aggressive and rebellious. It could be used in the soundtrack of a teenage drama or a crime series.", "data_idx": 4655, "number": 1, "label": "metal"} +{"file_name": "train_08398.png", "caption": "This is an alternative rock piece. The main theme is played through power chords by a distorted electric guitar. In the background, a bass guitar is playing a groovy bass line. The rhythmic background is provided by loud acoustic drums playing a rock drum beat with frequent usage of rapid fills. The atmosphere of the song is aggressive and rebellious. It could be used in the soundtrack of a teenage drama or a crime series.", "data_idx": 4655, "number": 2, "label": "metal"} +{"file_name": "train_08399.png", "caption": "This is an alternative rock piece. The main theme is played through power chords by a distorted electric guitar. In the background, a bass guitar is playing a groovy bass line. The rhythmic background is provided by loud acoustic drums playing a rock drum beat with frequent usage of rapid fills. The atmosphere of the song is aggressive and rebellious. It could be used in the soundtrack of a teenage drama or a crime series.", "data_idx": 4655, "number": 3, "label": "metal"} +{"file_name": "train_08400.png", "caption": "This music is a violin instrumental. The tempo is medium fast with the violins going from lively to soft with a romantic piano melody and acoustic guitar accompaniment. The music is orchestral with a dulcet violin symphony. It is pleasant, mellifluous, passionate, romantic; euphonious, emotional, sweet and engaging. This music is a contemporary orchestra .", "data_idx": 4658, "number": 0, "label": "classical"} +{"file_name": "train_08401.png", "caption": "This music is a violin instrumental. The tempo is medium fast with the violins going from lively to soft with a romantic piano melody and acoustic guitar accompaniment. The music is orchestral with a dulcet violin symphony. It is pleasant, mellifluous, passionate, romantic; euphonious, emotional, sweet and engaging. This music is a contemporary orchestra .", "data_idx": 4658, "number": 1, "label": "classical"} +{"file_name": "train_08402.png", "caption": "This music is a violin instrumental. The tempo is medium fast with the violins going from lively to soft with a romantic piano melody and acoustic guitar accompaniment. The music is orchestral with a dulcet violin symphony. It is pleasant, mellifluous, passionate, romantic; euphonious, emotional, sweet and engaging. This music is a contemporary orchestra .", "data_idx": 4658, "number": 2, "label": "classical"} +{"file_name": "train_08403.png", "caption": "This music is a violin instrumental. The tempo is medium fast with the violins going from lively to soft with a romantic piano melody and acoustic guitar accompaniment. The music is orchestral with a dulcet violin symphony. It is pleasant, mellifluous, passionate, romantic; euphonious, emotional, sweet and engaging. This music is a contemporary orchestra .", "data_idx": 4658, "number": 3, "label": "classical"} +{"file_name": "train_08404.png", "caption": "This Spanish rock song features a male voice singing the main melody. This is accompanied by rock percussion playing a simple beat. The bass plays the root notes of the chords. A guitar strums chords with upstrokes. A trumpet, saxophone and trombone plays fills in between verses. An organ pays fills at every alternate count. The mood of this song is happy and upbeat. This song can be played in a comedy movie.", "data_idx": 4659, "number": 0, "label": "disco"} +{"file_name": "train_08405.png", "caption": "This Spanish rock song features a male voice singing the main melody. This is accompanied by rock percussion playing a simple beat. The bass plays the root notes of the chords. A guitar strums chords with upstrokes. A trumpet, saxophone and trombone plays fills in between verses. An organ pays fills at every alternate count. The mood of this song is happy and upbeat. This song can be played in a comedy movie.", "data_idx": 4659, "number": 1, "label": "disco"} +{"file_name": "train_08406.png", "caption": "This Spanish rock song features a male voice singing the main melody. This is accompanied by rock percussion playing a simple beat. The bass plays the root notes of the chords. A guitar strums chords with upstrokes. A trumpet, saxophone and trombone plays fills in between verses. An organ pays fills at every alternate count. The mood of this song is happy and upbeat. This song can be played in a comedy movie.", "data_idx": 4659, "number": 2, "label": "disco"} +{"file_name": "train_08407.png", "caption": "This Spanish rock song features a male voice singing the main melody. This is accompanied by rock percussion playing a simple beat. The bass plays the root notes of the chords. A guitar strums chords with upstrokes. A trumpet, saxophone and trombone plays fills in between verses. An organ pays fills at every alternate count. The mood of this song is happy and upbeat. This song can be played in a comedy movie.", "data_idx": 4659, "number": 3, "label": "disco"} +{"file_name": "train_08408.png", "caption": "This is a clip containing vinyl or deck scratching. The DJ manipulates the deck back and forth to create scratching sound effects which have a melodic and percussive type of vibe. There's a mellow synth on which a simple progression is being played, and a simple hip hop drum beat is being played.", "data_idx": 4664, "number": 0, "label": "pop"} +{"file_name": "train_08409.png", "caption": "This is a clip containing vinyl or deck scratching. The DJ manipulates the deck back and forth to create scratching sound effects which have a melodic and percussive type of vibe. There's a mellow synth on which a simple progression is being played, and a simple hip hop drum beat is being played.", "data_idx": 4664, "number": 1, "label": "pop"} +{"file_name": "train_08410.png", "caption": "This is a Persian folk music piece in the style of an opera. The female vocalist is singing at a high-pitch in a manner that is filled with emotion. There is a piano in the background that occasionally supports the melody. This is a heart-touching piece. This piece could be used in the soundtracks of tragedy/drama movies, especially the ones that take place in the Middle East. It could also be used in a video game to create an aura of suspense and anticipation.", "data_idx": 4667, "number": 0, "label": "classical"} +{"file_name": "train_08411.png", "caption": "This is a Persian folk music piece in the style of an opera. The female vocalist is singing at a high-pitch in a manner that is filled with emotion. There is a piano in the background that occasionally supports the melody. This is a heart-touching piece. This piece could be used in the soundtracks of tragedy/drama movies, especially the ones that take place in the Middle East. It could also be used in a video game to create an aura of suspense and anticipation.", "data_idx": 4667, "number": 1, "label": "classical"} +{"file_name": "train_08412.png", "caption": "This is a Persian folk music piece in the style of an opera. The female vocalist is singing at a high-pitch in a manner that is filled with emotion. There is a piano in the background that occasionally supports the melody. This is a heart-touching piece. This piece could be used in the soundtracks of tragedy/drama movies, especially the ones that take place in the Middle East. It could also be used in a video game to create an aura of suspense and anticipation.", "data_idx": 4667, "number": 2, "label": "classical"} +{"file_name": "train_08413.png", "caption": "This is a Persian folk music piece in the style of an opera. The female vocalist is singing at a high-pitch in a manner that is filled with emotion. There is a piano in the background that occasionally supports the melody. This is a heart-touching piece. This piece could be used in the soundtracks of tragedy/drama movies, especially the ones that take place in the Middle East. It could also be used in a video game to create an aura of suspense and anticipation.", "data_idx": 4667, "number": 3, "label": "classical"} +{"file_name": "train_08414.png", "caption": "The low quality recording features a dubstep song that consists of buzzy, manic synth bass, punchy kick, slapping claps and high pitched laser riser. At the end of the loop, there is a short snippet of a much calmer section that consists of mellow claps, stuttering hi hats and arpeggiated dark piano melody. Overall it sounds aggressive and energetic.", "data_idx": 4668, "number": 0, "label": "metal"} +{"file_name": "train_08415.png", "caption": "The low quality recording features a dubstep song that consists of buzzy, manic synth bass, punchy kick, slapping claps and high pitched laser riser. At the end of the loop, there is a short snippet of a much calmer section that consists of mellow claps, stuttering hi hats and arpeggiated dark piano melody. Overall it sounds aggressive and energetic.", "data_idx": 4668, "number": 1, "label": "metal"} +{"file_name": "train_08416.png", "caption": "The low quality recording features a dubstep song that consists of buzzy, manic synth bass, punchy kick, slapping claps and high pitched laser riser. At the end of the loop, there is a short snippet of a much calmer section that consists of mellow claps, stuttering hi hats and arpeggiated dark piano melody. Overall it sounds aggressive and energetic.", "data_idx": 4668, "number": 2, "label": "metal"} +{"file_name": "train_08417.png", "caption": "The low quality recording features a dubstep song that consists of buzzy, manic synth bass, punchy kick, slapping claps and high pitched laser riser. At the end of the loop, there is a short snippet of a much calmer section that consists of mellow claps, stuttering hi hats and arpeggiated dark piano melody. Overall it sounds aggressive and energetic.", "data_idx": 4668, "number": 3, "label": "metal"} +{"file_name": "train_08418.png", "caption": "A digital drum is playing a techno groove with a half open hihat sound on the offbeat and a pregnant snare. A shaker and other little rhythmic elements are spicing up the drums. A simple digital bass is playing a melody while a very short voice sample comes in along with white noise rising. The elements are slightly panned across the speakers. This song may be playing in a techno club.", "data_idx": 4677, "number": 0, "label": "reggae"} +{"file_name": "train_08419.png", "caption": "A digital drum is playing a techno groove with a half open hihat sound on the offbeat and a pregnant snare. A shaker and other little rhythmic elements are spicing up the drums. A simple digital bass is playing a melody while a very short voice sample comes in along with white noise rising. The elements are slightly panned across the speakers. This song may be playing in a techno club.", "data_idx": 4677, "number": 1, "label": "reggae"} +{"file_name": "train_08420.png", "caption": "A digital drum is playing a techno groove with a half open hihat sound on the offbeat and a pregnant snare. A shaker and other little rhythmic elements are spicing up the drums. A simple digital bass is playing a melody while a very short voice sample comes in along with white noise rising. The elements are slightly panned across the speakers. This song may be playing in a techno club.", "data_idx": 4677, "number": 2, "label": "reggae"} +{"file_name": "train_08421.png", "caption": "A digital drum is playing a techno groove with a half open hihat sound on the offbeat and a pregnant snare. A shaker and other little rhythmic elements are spicing up the drums. A simple digital bass is playing a melody while a very short voice sample comes in along with white noise rising. The elements are slightly panned across the speakers. This song may be playing in a techno club.", "data_idx": 4677, "number": 3, "label": "reggae"} +{"file_name": "train_08422.png", "caption": "A male singer sings this melody with a backup singer singing rapping vocals. The song is medium tempo, with a steady drumming rhythm, groovy bass line and keyboard accompaniment. The song is groovy and exciting. The song is a retro reggae song but has a poor audio quality.", "data_idx": 4678, "number": 0, "label": "hiphop"} +{"file_name": "train_08423.png", "caption": "A male singer sings this melody with a backup singer singing rapping vocals. The song is medium tempo, with a steady drumming rhythm, groovy bass line and keyboard accompaniment. The song is groovy and exciting. The song is a retro reggae song but has a poor audio quality.", "data_idx": 4678, "number": 1, "label": "hiphop"} +{"file_name": "train_08424.png", "caption": "A male singer sings this melody with a backup singer singing rapping vocals. The song is medium tempo, with a steady drumming rhythm, groovy bass line and keyboard accompaniment. The song is groovy and exciting. The song is a retro reggae song but has a poor audio quality.", "data_idx": 4678, "number": 2, "label": "hiphop"} +{"file_name": "train_08425.png", "caption": "A male singer sings this melody with a backup singer singing rapping vocals. The song is medium tempo, with a steady drumming rhythm, groovy bass line and keyboard accompaniment. The song is groovy and exciting. The song is a retro reggae song but has a poor audio quality.", "data_idx": 4678, "number": 3, "label": "hiphop"} +{"file_name": "train_08426.png", "caption": "This bit starts with white noise followed by a tiny cymbal ride, drum beat and a keyboard harmony. This is the beginning of a song.", "data_idx": 4679, "number": 0, "label": "hiphop"} +{"file_name": "train_08427.png", "caption": "This bit starts with white noise followed by a tiny cymbal ride, drum beat and a keyboard harmony. This is the beginning of a song.", "data_idx": 4679, "number": 1, "label": "hiphop"} +{"file_name": "train_08428.png", "caption": "The low quality recording features an ambient song that consists of a wide filter modulate synth pad melody going, wide mellow synth pad and short growly synth bass. At the end of the loop, there is a reverberant riser, subtly bringing the energy up. It sounds calming and relaxing.", "data_idx": 4680, "number": 0, "label": "classical"} +{"file_name": "train_08429.png", "caption": "The low quality recording features an ambient song that consists of a wide filter modulate synth pad melody going, wide mellow synth pad and short growly synth bass. At the end of the loop, there is a reverberant riser, subtly bringing the energy up. It sounds calming and relaxing.", "data_idx": 4680, "number": 1, "label": "classical"} +{"file_name": "train_08430.png", "caption": "This is a Hawaiian folk music rendition of a jazz music piece. There is a male vocalist singing melodically in the lead. The simple tune is being played by a mellow sounding ukulele. There is a peaceful and relaxing atmosphere. This piece could be playing in the background of a coffee shop. It could also be included in the soundtrack of a feelgood movie/TV series. Another good use would be in the background of wholesome social media content.", "data_idx": 4681, "number": 0, "label": "blues"} +{"file_name": "train_08431.png", "caption": "This is a Hawaiian folk music rendition of a jazz music piece. There is a male vocalist singing melodically in the lead. The simple tune is being played by a mellow sounding ukulele. There is a peaceful and relaxing atmosphere. This piece could be playing in the background of a coffee shop. It could also be included in the soundtrack of a feelgood movie/TV series. Another good use would be in the background of wholesome social media content.", "data_idx": 4681, "number": 1, "label": "blues"} +{"file_name": "train_08432.png", "caption": "This is a Hawaiian folk music rendition of a jazz music piece. There is a male vocalist singing melodically in the lead. The simple tune is being played by a mellow sounding ukulele. There is a peaceful and relaxing atmosphere. This piece could be playing in the background of a coffee shop. It could also be included in the soundtrack of a feelgood movie/TV series. Another good use would be in the background of wholesome social media content.", "data_idx": 4681, "number": 2, "label": "blues"} +{"file_name": "train_08433.png", "caption": "This is a Hawaiian folk music rendition of a jazz music piece. There is a male vocalist singing melodically in the lead. The simple tune is being played by a mellow sounding ukulele. There is a peaceful and relaxing atmosphere. This piece could be playing in the background of a coffee shop. It could also be included in the soundtrack of a feelgood movie/TV series. Another good use would be in the background of wholesome social media content.", "data_idx": 4681, "number": 3, "label": "blues"} +{"file_name": "train_08434.png", "caption": "The song is instrumental. The tempo is medium with a piano playing solo accompaniment with no other instrumentation. Tap dancers tap to the piano accompaniment not perfectly in sync , with a lot of ambient room noises and people talking. The audio quality is very poor in this home video.", "data_idx": 4692, "number": 0, "label": "hiphop"} +{"file_name": "train_08435.png", "caption": "The song is instrumental. The tempo is medium with a piano playing solo accompaniment with no other instrumentation. Tap dancers tap to the piano accompaniment not perfectly in sync , with a lot of ambient room noises and people talking. The audio quality is very poor in this home video.", "data_idx": 4692, "number": 1, "label": "hiphop"} +{"file_name": "train_08436.png", "caption": "The song is instrumental. The tempo is medium with a piano playing solo accompaniment with no other instrumentation. Tap dancers tap to the piano accompaniment not perfectly in sync , with a lot of ambient room noises and people talking. The audio quality is very poor in this home video.", "data_idx": 4692, "number": 2, "label": "hiphop"} +{"file_name": "train_08437.png", "caption": "The song is instrumental. The tempo is medium with a piano playing solo accompaniment with no other instrumentation. Tap dancers tap to the piano accompaniment not perfectly in sync , with a lot of ambient room noises and people talking. The audio quality is very poor in this home video.", "data_idx": 4692, "number": 3, "label": "hiphop"} +{"file_name": "train_08438.png", "caption": "This is an instrumental piece carrying the characteristics of Carnatic music. An acoustic guitar is being played sideways to reach the musical effect of a tambura. The piece could be used as a soundtrack in movies/shows that take place in India.", "data_idx": 4696, "number": 0, "label": "classical"} +{"file_name": "train_08439.png", "caption": "This is an instrumental piece carrying the characteristics of Carnatic music. An acoustic guitar is being played sideways to reach the musical effect of a tambura. The piece could be used as a soundtrack in movies/shows that take place in India.", "data_idx": 4696, "number": 1, "label": "classical"} +{"file_name": "train_08440.png", "caption": "This is an instrumental piece carrying the characteristics of Carnatic music. An acoustic guitar is being played sideways to reach the musical effect of a tambura. The piece could be used as a soundtrack in movies/shows that take place in India.", "data_idx": 4696, "number": 2, "label": "classical"} +{"file_name": "train_08441.png", "caption": "This is an instrumental piece carrying the characteristics of Carnatic music. An acoustic guitar is being played sideways to reach the musical effect of a tambura. The piece could be used as a soundtrack in movies/shows that take place in India.", "data_idx": 4696, "number": 3, "label": "classical"} +{"file_name": "train_08442.png", "caption": "This audio contains a song with a bass playing a repeating melody along with a digital drums being in the background and a synth pad sound in the higher register. Towards the end the song is getting louder. In the foreground you can hear motor racing sounds. This song may be playing for a youtube video.", "data_idx": 4697, "number": 0, "label": "rock"} +{"file_name": "train_08443.png", "caption": "This audio contains a song with a bass playing a repeating melody along with a digital drums being in the background and a synth pad sound in the higher register. Towards the end the song is getting louder. In the foreground you can hear motor racing sounds. This song may be playing for a youtube video.", "data_idx": 4697, "number": 1, "label": "rock"} +{"file_name": "train_08444.png", "caption": "This song is an instrumental. The tempo is medium with an animated keyboard harmony and vocalisation. The music is heavily synthesised and sounds like a children\u2019s song. This song is an electronic pop/ Children\u2019s song.", "data_idx": 4699, "number": 0, "label": "hiphop"} +{"file_name": "train_08445.png", "caption": "This song is an instrumental. The tempo is medium with an animated keyboard harmony and vocalisation. The music is heavily synthesised and sounds like a children\u2019s song. This song is an electronic pop/ Children\u2019s song.", "data_idx": 4699, "number": 1, "label": "hiphop"} +{"file_name": "train_08446.png", "caption": "This is an upbeat swing style song with a choir of brass instruments playing a vibrant motif. The motif is a sort of crescendo that announces the next segment. It would be suitable as an intro to the arrival of a character in a musical or movie.", "data_idx": 4700, "number": 0, "label": "hiphop"} +{"file_name": "train_08447.png", "caption": "This is an upbeat swing style song with a choir of brass instruments playing a vibrant motif. The motif is a sort of crescendo that announces the next segment. It would be suitable as an intro to the arrival of a character in a musical or movie.", "data_idx": 4700, "number": 1, "label": "hiphop"} +{"file_name": "train_08448.png", "caption": "A male singer sings various songs in live audience situations. The songs have a different tempo and are mostly accompanied by a band. The songs are sung at live venues with people screaming and cheering. The songs are modern pop hits , recorded in poor audio quality with hissing noises.", "data_idx": 4704, "number": 0, "label": "rock"} +{"file_name": "train_08449.png", "caption": "A male singer sings various songs in live audience situations. The songs have a different tempo and are mostly accompanied by a band. The songs are sung at live venues with people screaming and cheering. The songs are modern pop hits , recorded in poor audio quality with hissing noises.", "data_idx": 4704, "number": 1, "label": "rock"} +{"file_name": "train_08450.png", "caption": "A male singer sings various songs in live audience situations. The songs have a different tempo and are mostly accompanied by a band. The songs are sung at live venues with people screaming and cheering. The songs are modern pop hits , recorded in poor audio quality with hissing noises.", "data_idx": 4704, "number": 2, "label": "rock"} +{"file_name": "train_08451.png", "caption": "A male singer sings various songs in live audience situations. The songs have a different tempo and are mostly accompanied by a band. The songs are sung at live venues with people screaming and cheering. The songs are modern pop hits , recorded in poor audio quality with hissing noises.", "data_idx": 4704, "number": 3, "label": "rock"} +{"file_name": "train_08452.png", "caption": "The low quality recording features a live performance of a folk song and it consists of passionate female vocal singing over percussive tambourine. The recording is noisy, reverberant and the stereo image is unbalanced - leaning more towards the right channel. It sounds passionate though.", "data_idx": 4705, "number": 0, "label": "disco"} +{"file_name": "train_08453.png", "caption": "The low quality recording features a live performance of a folk song and it consists of passionate female vocal singing over percussive tambourine. The recording is noisy, reverberant and the stereo image is unbalanced - leaning more towards the right channel. It sounds passionate though.", "data_idx": 4705, "number": 1, "label": "disco"} +{"file_name": "train_08454.png", "caption": "The low quality recording features a live performance of a folk song and it consists of passionate female vocal singing over percussive tambourine. The recording is noisy, reverberant and the stereo image is unbalanced - leaning more towards the right channel. It sounds passionate though.", "data_idx": 4705, "number": 2, "label": "disco"} +{"file_name": "train_08455.png", "caption": "The low quality recording features a live performance of a folk song and it consists of passionate female vocal singing over percussive tambourine. The recording is noisy, reverberant and the stereo image is unbalanced - leaning more towards the right channel. It sounds passionate though.", "data_idx": 4705, "number": 3, "label": "disco"} +{"file_name": "train_08456.png", "caption": "Someone is playing a loud acoustic drums full of kick and low tom hits sounding wild and psychedelic along with sliding e-guitars building up tension before breaking into the next part of the song with a lot of crash hits and the guitars strumming distorted chords: The e-bass is playing along one note to create tension before breaking into a bassline that gives the song more power. The instruments are panned to the left and right side of the speakers. The female voice is singing loud and in the mid-range. This song may be playing at a festival where everybody is dancing.", "data_idx": 4708, "number": 0, "label": "disco"} +{"file_name": "train_08457.png", "caption": "Someone is playing a loud acoustic drums full of kick and low tom hits sounding wild and psychedelic along with sliding e-guitars building up tension before breaking into the next part of the song with a lot of crash hits and the guitars strumming distorted chords: The e-bass is playing along one note to create tension before breaking into a bassline that gives the song more power. The instruments are panned to the left and right side of the speakers. The female voice is singing loud and in the mid-range. This song may be playing at a festival where everybody is dancing.", "data_idx": 4708, "number": 1, "label": "disco"} +{"file_name": "train_08458.png", "caption": "Someone is playing a loud acoustic drums full of kick and low tom hits sounding wild and psychedelic along with sliding e-guitars building up tension before breaking into the next part of the song with a lot of crash hits and the guitars strumming distorted chords: The e-bass is playing along one note to create tension before breaking into a bassline that gives the song more power. The instruments are panned to the left and right side of the speakers. The female voice is singing loud and in the mid-range. This song may be playing at a festival where everybody is dancing.", "data_idx": 4708, "number": 2, "label": "disco"} +{"file_name": "train_08459.png", "caption": "Someone is playing a loud acoustic drums full of kick and low tom hits sounding wild and psychedelic along with sliding e-guitars building up tension before breaking into the next part of the song with a lot of crash hits and the guitars strumming distorted chords: The e-bass is playing along one note to create tension before breaking into a bassline that gives the song more power. The instruments are panned to the left and right side of the speakers. The female voice is singing loud and in the mid-range. This song may be playing at a festival where everybody is dancing.", "data_idx": 4708, "number": 3, "label": "disco"} +{"file_name": "train_08460.png", "caption": "This amateur recording features the main melody being played by a theremin. This is accompanied by a piano. There are no other instruments played in this clip. The mood of this song is relaxed. There are no voices in this song. This song can be played in a slow motion action scene in a superhero movie.", "data_idx": 4711, "number": 0, "label": "classical"} +{"file_name": "train_08461.png", "caption": "This amateur recording features the main melody being played by a theremin. This is accompanied by a piano. There are no other instruments played in this clip. The mood of this song is relaxed. There are no voices in this song. This song can be played in a slow motion action scene in a superhero movie.", "data_idx": 4711, "number": 1, "label": "classical"} +{"file_name": "train_08462.png", "caption": "This amateur recording features the main melody being played by a theremin. This is accompanied by a piano. There are no other instruments played in this clip. The mood of this song is relaxed. There are no voices in this song. This song can be played in a slow motion action scene in a superhero movie.", "data_idx": 4711, "number": 2, "label": "classical"} +{"file_name": "train_08463.png", "caption": "This amateur recording features the main melody being played by a theremin. This is accompanied by a piano. There are no other instruments played in this clip. The mood of this song is relaxed. There are no voices in this song. This song can be played in a slow motion action scene in a superhero movie.", "data_idx": 4711, "number": 3, "label": "classical"} +{"file_name": "train_08464.png", "caption": "Someone is playing acoustic drums with a half open hi hat holding a simple rock groove with snare hits as fill-ins. An e-bass plays a bassline along while an e-guitar is strumming slightly distorted chords. A male voice is singing in the mid-range. The whole recording sounds clean but is not a high professional recording. This song may be playing at a local festival.", "data_idx": 4715, "number": 0, "label": "rock"} +{"file_name": "train_08465.png", "caption": "Someone is playing acoustic drums with a half open hi hat holding a simple rock groove with snare hits as fill-ins. An e-bass plays a bassline along while an e-guitar is strumming slightly distorted chords. A male voice is singing in the mid-range. The whole recording sounds clean but is not a high professional recording. This song may be playing at a local festival.", "data_idx": 4715, "number": 1, "label": "rock"} +{"file_name": "train_08466.png", "caption": "Someone is playing acoustic drums with a half open hi hat holding a simple rock groove with snare hits as fill-ins. An e-bass plays a bassline along while an e-guitar is strumming slightly distorted chords. A male voice is singing in the mid-range. The whole recording sounds clean but is not a high professional recording. This song may be playing at a local festival.", "data_idx": 4715, "number": 2, "label": "rock"} +{"file_name": "train_08467.png", "caption": "Someone is playing acoustic drums with a half open hi hat holding a simple rock groove with snare hits as fill-ins. An e-bass plays a bassline along while an e-guitar is strumming slightly distorted chords. A male voice is singing in the mid-range. The whole recording sounds clean but is not a high professional recording. This song may be playing at a local festival.", "data_idx": 4715, "number": 3, "label": "rock"} +{"file_name": "train_08468.png", "caption": "The music features a group of female voices singing the same melody in unison. The drums and bass guitar blend together and drive the pulse of the music. In the first half of the music excerpt strings play the same melody as the singers.", "data_idx": 4716, "number": 0, "label": "pop"} +{"file_name": "train_08469.png", "caption": "The music features a group of female voices singing the same melody in unison. The drums and bass guitar blend together and drive the pulse of the music. In the first half of the music excerpt strings play the same melody as the singers.", "data_idx": 4716, "number": 1, "label": "pop"} +{"file_name": "train_08470.png", "caption": "This music is a jazz instrumental.The tempo is fast with an animated electric guitar harmony, funky drumming, groovy bass line and keyboard accompaniment. The music is complex, engaging,emphatic, groovy and syncopated with a hissing sound in the background.", "data_idx": 4718, "number": 0, "label": "hiphop"} +{"file_name": "train_08471.png", "caption": "This music is a jazz instrumental.The tempo is fast with an animated electric guitar harmony, funky drumming, groovy bass line and keyboard accompaniment. The music is complex, engaging,emphatic, groovy and syncopated with a hissing sound in the background.", "data_idx": 4718, "number": 1, "label": "hiphop"} +{"file_name": "train_08472.png", "caption": "This is a famous pop music piece played over a dance audition video. The male vocalist is singing melodically in one track at a medium pitch and singing the melody at a high pitch in another track. The melody is supported by a bass guitar playing a groovy bassline. A catchy acoustic drum beat and offbeat claps hold the rhythmic background. The atmosphere is jovial and very danceable. This piece could be used in a myriad of different ways from dance videos, online content, sports venues etc.", "data_idx": 4720, "number": 0, "label": "reggae"} +{"file_name": "train_08473.png", "caption": "This is a famous pop music piece played over a dance audition video. The male vocalist is singing melodically in one track at a medium pitch and singing the melody at a high pitch in another track. The melody is supported by a bass guitar playing a groovy bassline. A catchy acoustic drum beat and offbeat claps hold the rhythmic background. The atmosphere is jovial and very danceable. This piece could be used in a myriad of different ways from dance videos, online content, sports venues etc.", "data_idx": 4720, "number": 1, "label": "reggae"} +{"file_name": "train_08474.png", "caption": "The low quality recording features a childish female vocal singing over acoustic rhythm guitar. It is a bit noisy and in mono, it sounds emotional and like a background song for some video game..", "data_idx": 4722, "number": 0, "label": "reggae"} +{"file_name": "train_08475.png", "caption": "The low quality recording features a childish female vocal singing over acoustic rhythm guitar. It is a bit noisy and in mono, it sounds emotional and like a background song for some video game..", "data_idx": 4722, "number": 1, "label": "reggae"} +{"file_name": "train_08476.png", "caption": "The low quality recording features a childish female vocal singing over acoustic rhythm guitar. It is a bit noisy and in mono, it sounds emotional and like a background song for some video game..", "data_idx": 4722, "number": 2, "label": "reggae"} +{"file_name": "train_08477.png", "caption": "The low quality recording features a childish female vocal singing over acoustic rhythm guitar. It is a bit noisy and in mono, it sounds emotional and like a background song for some video game..", "data_idx": 4722, "number": 3, "label": "reggae"} +{"file_name": "train_08478.png", "caption": "This song contains whales singing and then a piano starts playing a composition along. This may be playing in a documentary.", "data_idx": 4723, "number": 0, "label": "hiphop"} +{"file_name": "train_08479.png", "caption": "This song contains whales singing and then a piano starts playing a composition along. This may be playing in a documentary.", "data_idx": 4723, "number": 1, "label": "hiphop"} +{"file_name": "train_08480.png", "caption": "The low quality recording features repetitive buzzy strings and wooden percussion performing live. There is an unwanted male cough at one point in the loop. The recording is very noisy and in mono.", "data_idx": 4729, "number": 0, "label": "jazz"} +{"file_name": "train_08481.png", "caption": "The low quality recording features repetitive buzzy strings and wooden percussion performing live. There is an unwanted male cough at one point in the loop. The recording is very noisy and in mono.", "data_idx": 4729, "number": 1, "label": "jazz"} +{"file_name": "train_08482.png", "caption": "The low quality recording features repetitive buzzy strings and wooden percussion performing live. There is an unwanted male cough at one point in the loop. The recording is very noisy and in mono.", "data_idx": 4729, "number": 2, "label": "jazz"} +{"file_name": "train_08483.png", "caption": "The low quality recording features repetitive buzzy strings and wooden percussion performing live. There is an unwanted male cough at one point in the loop. The recording is very noisy and in mono.", "data_idx": 4729, "number": 3, "label": "jazz"} +{"file_name": "train_08484.png", "caption": "This folk song features a female voice. This is accompanied by percussion played on the Congas. An acoustic guitar strums the chords. The bass plays a running bassline providing fills and giving depth to the low end of the musicscape. An organ plays chords in the background. The song has a hippie feel. This song can be used in a retro movie with a hippie movement theme.", "data_idx": 4730, "number": 0, "label": "rock"} +{"file_name": "train_08485.png", "caption": "This folk song features a female voice. This is accompanied by percussion played on the Congas. An acoustic guitar strums the chords. The bass plays a running bassline providing fills and giving depth to the low end of the musicscape. An organ plays chords in the background. The song has a hippie feel. This song can be used in a retro movie with a hippie movement theme.", "data_idx": 4730, "number": 1, "label": "rock"} +{"file_name": "train_08486.png", "caption": "This folk song features a female voice. This is accompanied by percussion played on the Congas. An acoustic guitar strums the chords. The bass plays a running bassline providing fills and giving depth to the low end of the musicscape. An organ plays chords in the background. The song has a hippie feel. This song can be used in a retro movie with a hippie movement theme.", "data_idx": 4730, "number": 2, "label": "rock"} +{"file_name": "train_08487.png", "caption": "This folk song features a female voice. This is accompanied by percussion played on the Congas. An acoustic guitar strums the chords. The bass plays a running bassline providing fills and giving depth to the low end of the musicscape. An organ plays chords in the background. The song has a hippie feel. This song can be used in a retro movie with a hippie movement theme.", "data_idx": 4730, "number": 3, "label": "rock"} +{"file_name": "train_08488.png", "caption": "The low quality recording features a live performance of a pop song that consists of groovy synth bass, punchy snare, soft hi hats, heartbeat kick pattern, mellow sustained string melody and passionate female vocal singing over it. It sounds emotional, passionate and groovy thanks to that synth bass.", "data_idx": 4732, "number": 0, "label": "disco"} +{"file_name": "train_08489.png", "caption": "The low quality recording features a live performance of a pop song that consists of groovy synth bass, punchy snare, soft hi hats, heartbeat kick pattern, mellow sustained string melody and passionate female vocal singing over it. It sounds emotional, passionate and groovy thanks to that synth bass.", "data_idx": 4732, "number": 1, "label": "disco"} +{"file_name": "train_08490.png", "caption": "The low quality recording features a live performance of a pop song that consists of groovy synth bass, punchy snare, soft hi hats, heartbeat kick pattern, mellow sustained string melody and passionate female vocal singing over it. It sounds emotional, passionate and groovy thanks to that synth bass.", "data_idx": 4732, "number": 2, "label": "disco"} +{"file_name": "train_08491.png", "caption": "The low quality recording features a live performance of a pop song that consists of groovy synth bass, punchy snare, soft hi hats, heartbeat kick pattern, mellow sustained string melody and passionate female vocal singing over it. It sounds emotional, passionate and groovy thanks to that synth bass.", "data_idx": 4732, "number": 3, "label": "disco"} +{"file_name": "train_08492.png", "caption": "This song is an animated instrumental. The tempo is fast with synthesiser arrangements, intense drumming, groovy bass lines and digital sound effects. The music is upbeat, catchy, compelling, youthful, psychedelic, trance like and intense with an upbeat dance groove. This song is contemporary Synth Pop.", "data_idx": 4733, "number": 0, "label": "hiphop"} +{"file_name": "train_08493.png", "caption": "This song is an animated instrumental. The tempo is fast with synthesiser arrangements, intense drumming, groovy bass lines and digital sound effects. The music is upbeat, catchy, compelling, youthful, psychedelic, trance like and intense with an upbeat dance groove. This song is contemporary Synth Pop.", "data_idx": 4733, "number": 1, "label": "hiphop"} +{"file_name": "train_08494.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with enthusiastic electric guitar harmony, slick drumming, groovy bass lines and synthesiser arrangements. The song is energetic, youthful, fun, pulsating, engaging and emphatic. This song is Alternative Rock.", "data_idx": 4736, "number": 0, "label": "pop"} +{"file_name": "train_08495.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with enthusiastic electric guitar harmony, slick drumming, groovy bass lines and synthesiser arrangements. The song is energetic, youthful, fun, pulsating, engaging and emphatic. This song is Alternative Rock.", "data_idx": 4736, "number": 1, "label": "pop"} +{"file_name": "train_08496.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with enthusiastic electric guitar harmony, slick drumming, groovy bass lines and synthesiser arrangements. The song is energetic, youthful, fun, pulsating, engaging and emphatic. This song is Alternative Rock.", "data_idx": 4736, "number": 2, "label": "pop"} +{"file_name": "train_08497.png", "caption": "A female vocalist sings this spirited song. The tempo is fast with enthusiastic electric guitar harmony, slick drumming, groovy bass lines and synthesiser arrangements. The song is energetic, youthful, fun, pulsating, engaging and emphatic. This song is Alternative Rock.", "data_idx": 4736, "number": 3, "label": "pop"} +{"file_name": "train_08498.png", "caption": "The low quality recording features a cover of a pop song and it features passionate female vocal singing over acoustic rhythm guitar. There is a quiet playback playing in the background - it sounds like it is coming from headphones. The recording is a bit resonant and noisy, but it sounds emotional and heartfelt regardless.", "data_idx": 4738, "number": 0, "label": "pop"} +{"file_name": "train_08499.png", "caption": "The low quality recording features a cover of a pop song and it features passionate female vocal singing over acoustic rhythm guitar. There is a quiet playback playing in the background - it sounds like it is coming from headphones. The recording is a bit resonant and noisy, but it sounds emotional and heartfelt regardless.", "data_idx": 4738, "number": 1, "label": "pop"} +{"file_name": "train_08500.png", "caption": "The low quality recording features a cover of a pop song and it features passionate female vocal singing over acoustic rhythm guitar. There is a quiet playback playing in the background - it sounds like it is coming from headphones. The recording is a bit resonant and noisy, but it sounds emotional and heartfelt regardless.", "data_idx": 4738, "number": 2, "label": "pop"} +{"file_name": "train_08501.png", "caption": "The low quality recording features a cover of a pop song and it features passionate female vocal singing over acoustic rhythm guitar. There is a quiet playback playing in the background - it sounds like it is coming from headphones. The recording is a bit resonant and noisy, but it sounds emotional and heartfelt regardless.", "data_idx": 4738, "number": 3, "label": "pop"} +{"file_name": "train_08502.png", "caption": "The low quality recording features a picked mandolin solo melody. Even though the recording is noisy and in mono, it gives off joyful and happy vibes.", "data_idx": 4743, "number": 0, "label": "jazz"} +{"file_name": "train_08503.png", "caption": "The low quality recording features a picked mandolin solo melody. Even though the recording is noisy and in mono, it gives off joyful and happy vibes.", "data_idx": 4743, "number": 1, "label": "jazz"} +{"file_name": "train_08504.png", "caption": "The low quality recording features a picked mandolin solo melody. Even though the recording is noisy and in mono, it gives off joyful and happy vibes.", "data_idx": 4743, "number": 2, "label": "jazz"} +{"file_name": "train_08505.png", "caption": "The low quality recording features a picked mandolin solo melody. Even though the recording is noisy and in mono, it gives off joyful and happy vibes.", "data_idx": 4743, "number": 3, "label": "jazz"} +{"file_name": "train_08506.png", "caption": "This is a punk rock piece. There is a male vocal singing with a nasal singing technique. There is a distorted electric guitar playing the main theme. The bass guitar is playing a simple, repetitive bass line. The acoustic drums are playing a fast-paced skank beat. There is a defiant, rebellious feel to the piece. It could be used in the soundtrack of a high school drama movie or a TV series.", "data_idx": 4744, "number": 0, "label": "metal"} +{"file_name": "train_08507.png", "caption": "This is a punk rock piece. There is a male vocal singing with a nasal singing technique. There is a distorted electric guitar playing the main theme. The bass guitar is playing a simple, repetitive bass line. The acoustic drums are playing a fast-paced skank beat. There is a defiant, rebellious feel to the piece. It could be used in the soundtrack of a high school drama movie or a TV series.", "data_idx": 4744, "number": 1, "label": "metal"} +{"file_name": "train_08508.png", "caption": "This is a punk rock piece. There is a male vocal singing with a nasal singing technique. There is a distorted electric guitar playing the main theme. The bass guitar is playing a simple, repetitive bass line. The acoustic drums are playing a fast-paced skank beat. There is a defiant, rebellious feel to the piece. It could be used in the soundtrack of a high school drama movie or a TV series.", "data_idx": 4744, "number": 2, "label": "metal"} +{"file_name": "train_08509.png", "caption": "This is a punk rock piece. There is a male vocal singing with a nasal singing technique. There is a distorted electric guitar playing the main theme. The bass guitar is playing a simple, repetitive bass line. The acoustic drums are playing a fast-paced skank beat. There is a defiant, rebellious feel to the piece. It could be used in the soundtrack of a high school drama movie or a TV series.", "data_idx": 4744, "number": 3, "label": "metal"} +{"file_name": "train_08510.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate male vocal, alongside passionate background male vocal singing over sustained accordion melody and some tinny percussive elements. Even though it is a bit distorted, mono and noisy, it still sounds soulful.", "data_idx": 4746, "number": 0, "label": "reggae"} +{"file_name": "train_08511.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate male vocal, alongside passionate background male vocal singing over sustained accordion melody and some tinny percussive elements. Even though it is a bit distorted, mono and noisy, it still sounds soulful.", "data_idx": 4746, "number": 1, "label": "reggae"} +{"file_name": "train_08512.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate male vocal, alongside passionate background male vocal singing over sustained accordion melody and some tinny percussive elements. Even though it is a bit distorted, mono and noisy, it still sounds soulful.", "data_idx": 4746, "number": 2, "label": "reggae"} +{"file_name": "train_08513.png", "caption": "The low quality recording features a live performance of a traditional song and it consists of passionate male vocal, alongside passionate background male vocal singing over sustained accordion melody and some tinny percussive elements. Even though it is a bit distorted, mono and noisy, it still sounds soulful.", "data_idx": 4746, "number": 3, "label": "reggae"} +{"file_name": "train_08514.png", "caption": "The Ambient song features a wide synth pad melody and wide smooth, sustained pad chord playing together. It sounds very relaxing, calming and hypnotic - it kind of makes you sleepy.", "data_idx": 4750, "number": 0, "label": "blues"} +{"file_name": "train_08515.png", "caption": "The Ambient song features a wide synth pad melody and wide smooth, sustained pad chord playing together. It sounds very relaxing, calming and hypnotic - it kind of makes you sleepy.", "data_idx": 4750, "number": 1, "label": "blues"} +{"file_name": "train_08516.png", "caption": "The Ambient song features a wide synth pad melody and wide smooth, sustained pad chord playing together. It sounds very relaxing, calming and hypnotic - it kind of makes you sleepy.", "data_idx": 4750, "number": 2, "label": "blues"} +{"file_name": "train_08517.png", "caption": "The Ambient song features a wide synth pad melody and wide smooth, sustained pad chord playing together. It sounds very relaxing, calming and hypnotic - it kind of makes you sleepy.", "data_idx": 4750, "number": 3, "label": "blues"} +{"file_name": "train_08518.png", "caption": "This is an intuitive folk/neo-folk music piece. There is a female vocalist singing over multiple tracks, one being the minor harmonies of the other. There is an acoustic guitar playing a gentle, simple tune. The atmosphere of this piece is heart-touching. The music could fit very well in the soundtrack of a drama movie or a TV show.", "data_idx": 4753, "number": 0, "label": "rock"} +{"file_name": "train_08519.png", "caption": "This is an intuitive folk/neo-folk music piece. There is a female vocalist singing over multiple tracks, one being the minor harmonies of the other. There is an acoustic guitar playing a gentle, simple tune. The atmosphere of this piece is heart-touching. The music could fit very well in the soundtrack of a drama movie or a TV show.", "data_idx": 4753, "number": 1, "label": "rock"} +{"file_name": "train_08520.png", "caption": "This is an intuitive folk/neo-folk music piece. There is a female vocalist singing over multiple tracks, one being the minor harmonies of the other. There is an acoustic guitar playing a gentle, simple tune. The atmosphere of this piece is heart-touching. The music could fit very well in the soundtrack of a drama movie or a TV show.", "data_idx": 4753, "number": 2, "label": "rock"} +{"file_name": "train_08521.png", "caption": "This is an intuitive folk/neo-folk music piece. There is a female vocalist singing over multiple tracks, one being the minor harmonies of the other. There is an acoustic guitar playing a gentle, simple tune. The atmosphere of this piece is heart-touching. The music could fit very well in the soundtrack of a drama movie or a TV show.", "data_idx": 4753, "number": 3, "label": "rock"} +{"file_name": "train_08522.png", "caption": "This is an electronic music piece performed by a DJ. There is a heavy use of the turntable adding the repeated scratching effect. A male voice sample can be heard alongside the scratching. In the backing track there is an electric guitar playing the melody while a simple electronic drum beat provides the rhythmic background.", "data_idx": 4756, "number": 0, "label": "hiphop"} +{"file_name": "train_08523.png", "caption": "This is an electronic music piece performed by a DJ. There is a heavy use of the turntable adding the repeated scratching effect. A male voice sample can be heard alongside the scratching. In the backing track there is an electric guitar playing the melody while a simple electronic drum beat provides the rhythmic background.", "data_idx": 4756, "number": 1, "label": "hiphop"} +{"file_name": "train_08524.png", "caption": "This is an electronic music piece performed by a DJ. There is a heavy use of the turntable adding the repeated scratching effect. A male voice sample can be heard alongside the scratching. In the backing track there is an electric guitar playing the melody while a simple electronic drum beat provides the rhythmic background.", "data_idx": 4756, "number": 2, "label": "hiphop"} +{"file_name": "train_08525.png", "caption": "This is an electronic music piece performed by a DJ. There is a heavy use of the turntable adding the repeated scratching effect. A male voice sample can be heard alongside the scratching. In the backing track there is an electric guitar playing the melody while a simple electronic drum beat provides the rhythmic background.", "data_idx": 4756, "number": 3, "label": "hiphop"} +{"file_name": "train_08526.png", "caption": "A full orchestra is playing a slow dramatic, emotional and soft composition. In the background whispering can be heard. This is an amateur recording. This song may be playing at a theater dancing ballet.", "data_idx": 4758, "number": 0, "label": "classical"} +{"file_name": "train_08527.png", "caption": "A full orchestra is playing a slow dramatic, emotional and soft composition. In the background whispering can be heard. This is an amateur recording. This song may be playing at a theater dancing ballet.", "data_idx": 4758, "number": 1, "label": "classical"} +{"file_name": "train_08528.png", "caption": "A full orchestra is playing a slow dramatic, emotional and soft composition. In the background whispering can be heard. This is an amateur recording. This song may be playing at a theater dancing ballet.", "data_idx": 4758, "number": 2, "label": "classical"} +{"file_name": "train_08529.png", "caption": "A full orchestra is playing a slow dramatic, emotional and soft composition. In the background whispering can be heard. This is an amateur recording. This song may be playing at a theater dancing ballet.", "data_idx": 4758, "number": 3, "label": "classical"} +{"file_name": "train_08530.png", "caption": "This slow blues song features a solo played on a guitar. The tempo of this song is slow. This is accompanied by percussion playing a simple beat. The bass follows the 12 bar blues pattern. The piano plays chords in the background. The mood of this song is romantic and the pattern played on the guitar is similar to a call-response theme. This song can be played in a bar.", "data_idx": 4759, "number": 0, "label": "jazz"} +{"file_name": "train_08531.png", "caption": "This slow blues song features a solo played on a guitar. The tempo of this song is slow. This is accompanied by percussion playing a simple beat. The bass follows the 12 bar blues pattern. The piano plays chords in the background. The mood of this song is romantic and the pattern played on the guitar is similar to a call-response theme. This song can be played in a bar.", "data_idx": 4759, "number": 1, "label": "jazz"} +{"file_name": "train_08532.png", "caption": "The low quality recording features a pop song that contains repetitive, excited male vocals talking over energetic beats, filter mod synth chords, repetitive cowbell and high pitched synth bells melody. It sounds chaotic, fun and happy - like a parody song.", "data_idx": 4760, "number": 0, "label": "hiphop"} +{"file_name": "train_08533.png", "caption": "The low quality recording features a pop song that contains repetitive, excited male vocals talking over energetic beats, filter mod synth chords, repetitive cowbell and high pitched synth bells melody. It sounds chaotic, fun and happy - like a parody song.", "data_idx": 4760, "number": 1, "label": "hiphop"} +{"file_name": "train_08534.png", "caption": "The low quality recording features a pop song that contains repetitive, excited male vocals talking over energetic beats, filter mod synth chords, repetitive cowbell and high pitched synth bells melody. It sounds chaotic, fun and happy - like a parody song.", "data_idx": 4760, "number": 2, "label": "hiphop"} +{"file_name": "train_08535.png", "caption": "The low quality recording features a pop song that contains repetitive, excited male vocals talking over energetic beats, filter mod synth chords, repetitive cowbell and high pitched synth bells melody. It sounds chaotic, fun and happy - like a parody song.", "data_idx": 4760, "number": 3, "label": "hiphop"} +{"file_name": "train_08536.png", "caption": "The Rock song features a doubled flat male vocals singing over wide electric guitar chords, groovy bass guitar, energetic cymbals, punchy snare hits and heartbeat kick pattern. It lacks low frequencies, therefore it sounds thin, hollow and harsh, but regardless, also energetic and aggressive.", "data_idx": 4764, "number": 0, "label": "metal"} +{"file_name": "train_08537.png", "caption": "The Rock song features a doubled flat male vocals singing over wide electric guitar chords, groovy bass guitar, energetic cymbals, punchy snare hits and heartbeat kick pattern. It lacks low frequencies, therefore it sounds thin, hollow and harsh, but regardless, also energetic and aggressive.", "data_idx": 4764, "number": 1, "label": "metal"} +{"file_name": "train_08538.png", "caption": "The Rock song features a doubled flat male vocals singing over wide electric guitar chords, groovy bass guitar, energetic cymbals, punchy snare hits and heartbeat kick pattern. It lacks low frequencies, therefore it sounds thin, hollow and harsh, but regardless, also energetic and aggressive.", "data_idx": 4764, "number": 2, "label": "metal"} +{"file_name": "train_08539.png", "caption": "The Rock song features a doubled flat male vocals singing over wide electric guitar chords, groovy bass guitar, energetic cymbals, punchy snare hits and heartbeat kick pattern. It lacks low frequencies, therefore it sounds thin, hollow and harsh, but regardless, also energetic and aggressive.", "data_idx": 4764, "number": 3, "label": "metal"} +{"file_name": "train_08540.png", "caption": "A brass section is playing a melody along with a lead trumpet. In the background you can hear strings playing in the mid to high range. An upright bass is holding the rhythmic side of the song. A piano is playing the same melody as the male singer. This song may be playing in a retro bar.", "data_idx": 4766, "number": 0, "label": "blues"} +{"file_name": "train_08541.png", "caption": "A brass section is playing a melody along with a lead trumpet. In the background you can hear strings playing in the mid to high range. An upright bass is holding the rhythmic side of the song. A piano is playing the same melody as the male singer. This song may be playing in a retro bar.", "data_idx": 4766, "number": 1, "label": "blues"} +{"file_name": "train_08542.png", "caption": "A brass section is playing a melody along with a lead trumpet. In the background you can hear strings playing in the mid to high range. An upright bass is holding the rhythmic side of the song. A piano is playing the same melody as the male singer. This song may be playing in a retro bar.", "data_idx": 4766, "number": 2, "label": "blues"} +{"file_name": "train_08543.png", "caption": "A brass section is playing a melody along with a lead trumpet. In the background you can hear strings playing in the mid to high range. An upright bass is holding the rhythmic side of the song. A piano is playing the same melody as the male singer. This song may be playing in a retro bar.", "data_idx": 4766, "number": 3, "label": "blues"} +{"file_name": "train_08544.png", "caption": "The low quality recording features a cover of a song and it consists of an addictive electric guitar melody played over barely audible playback. The recording is very noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4767, "number": 0, "label": "classical"} +{"file_name": "train_08545.png", "caption": "The low quality recording features a cover of a song and it consists of an addictive electric guitar melody played over barely audible playback. The recording is very noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4767, "number": 1, "label": "classical"} +{"file_name": "train_08546.png", "caption": "The low quality recording features a cover of a song and it consists of an addictive electric guitar melody played over barely audible playback. The recording is very noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4767, "number": 2, "label": "classical"} +{"file_name": "train_08547.png", "caption": "The low quality recording features a cover of a song and it consists of an addictive electric guitar melody played over barely audible playback. The recording is very noisy and in mono, as it was probably recorded with a phone.", "data_idx": 4767, "number": 3, "label": "classical"} +{"file_name": "train_08548.png", "caption": "The Regional Mexican song features a passionate female vocal singing over groovy piano melody, wide muffled brass section melody layered with soft crashes and percussive elements. The recording is low quality and vintage, but it still sounds passionate and emotional - like something you would dance to in a latin pub.", "data_idx": 4768, "number": 0, "label": "reggae"} +{"file_name": "train_08549.png", "caption": "The Regional Mexican song features a passionate female vocal singing over groovy piano melody, wide muffled brass section melody layered with soft crashes and percussive elements. The recording is low quality and vintage, but it still sounds passionate and emotional - like something you would dance to in a latin pub.", "data_idx": 4768, "number": 1, "label": "reggae"} +{"file_name": "train_08550.png", "caption": "The Regional Mexican song features a passionate female vocal singing over groovy piano melody, wide muffled brass section melody layered with soft crashes and percussive elements. The recording is low quality and vintage, but it still sounds passionate and emotional - like something you would dance to in a latin pub.", "data_idx": 4768, "number": 2, "label": "reggae"} +{"file_name": "train_08551.png", "caption": "The Regional Mexican song features a passionate female vocal singing over groovy piano melody, wide muffled brass section melody layered with soft crashes and percussive elements. The recording is low quality and vintage, but it still sounds passionate and emotional - like something you would dance to in a latin pub.", "data_idx": 4768, "number": 3, "label": "reggae"} +{"file_name": "train_08552.png", "caption": "A male deep voice is singing along to an accordion sound and a choir providing backing vocals. This song sounds cheerful. This is an amateur recording and of poor audio-quality. This song may be playing at a celebration.", "data_idx": 4775, "number": 0, "label": "hiphop"} +{"file_name": "train_08553.png", "caption": "A male deep voice is singing along to an accordion sound and a choir providing backing vocals. This song sounds cheerful. This is an amateur recording and of poor audio-quality. This song may be playing at a celebration.", "data_idx": 4775, "number": 1, "label": "hiphop"} +{"file_name": "train_08554.png", "caption": "A male deep voice is singing along to an accordion sound and a choir providing backing vocals. This song sounds cheerful. This is an amateur recording and of poor audio-quality. This song may be playing at a celebration.", "data_idx": 4775, "number": 2, "label": "hiphop"} +{"file_name": "train_08555.png", "caption": "A male deep voice is singing along to an accordion sound and a choir providing backing vocals. This song sounds cheerful. This is an amateur recording and of poor audio-quality. This song may be playing at a celebration.", "data_idx": 4775, "number": 3, "label": "hiphop"} +{"file_name": "train_08556.png", "caption": "A song is played in the background containing a brass melody. In the foreground you can hear a lot of clicking noises that do not belong to the music. This is an amateur recording. This song may be playing in a casino.", "data_idx": 4777, "number": 0, "label": "disco"} +{"file_name": "train_08557.png", "caption": "A song is played in the background containing a brass melody. In the foreground you can hear a lot of clicking noises that do not belong to the music. This is an amateur recording. This song may be playing in a casino.", "data_idx": 4777, "number": 1, "label": "disco"} +{"file_name": "train_08558.png", "caption": "A song is played in the background containing a brass melody. In the foreground you can hear a lot of clicking noises that do not belong to the music. This is an amateur recording. This song may be playing in a casino.", "data_idx": 4777, "number": 2, "label": "disco"} +{"file_name": "train_08559.png", "caption": "A song is played in the background containing a brass melody. In the foreground you can hear a lot of clicking noises that do not belong to the music. This is an amateur recording. This song may be playing in a casino.", "data_idx": 4777, "number": 3, "label": "disco"} +{"file_name": "train_08560.png", "caption": "A male singer sings this classic pop song. The tempo is fast with keyboard harmony, violins,infectious drumming,funky bass guitar and synthesiser arrangement. There are sounds of static, tapping and a baby crying loudly superimposed on the song. The audio quality is inferior and the recording is amateur. This song is Retro Rock and Roll.", "data_idx": 4779, "number": 0, "label": "classical"} +{"file_name": "train_08561.png", "caption": "A male singer sings this classic pop song. The tempo is fast with keyboard harmony, violins,infectious drumming,funky bass guitar and synthesiser arrangement. There are sounds of static, tapping and a baby crying loudly superimposed on the song. The audio quality is inferior and the recording is amateur. This song is Retro Rock and Roll.", "data_idx": 4779, "number": 1, "label": "classical"} +{"file_name": "train_08562.png", "caption": "A male singer sings this classic pop song. The tempo is fast with keyboard harmony, violins,infectious drumming,funky bass guitar and synthesiser arrangement. There are sounds of static, tapping and a baby crying loudly superimposed on the song. The audio quality is inferior and the recording is amateur. This song is Retro Rock and Roll.", "data_idx": 4779, "number": 2, "label": "classical"} +{"file_name": "train_08563.png", "caption": "A male singer sings this classic pop song. The tempo is fast with keyboard harmony, violins,infectious drumming,funky bass guitar and synthesiser arrangement. There are sounds of static, tapping and a baby crying loudly superimposed on the song. The audio quality is inferior and the recording is amateur. This song is Retro Rock and Roll.", "data_idx": 4779, "number": 3, "label": "classical"} +{"file_name": "train_08564.png", "caption": "This is a breakbeat from a DJ set performance. The DJ is using the turntable to repeat the male vocal sample and add the scratching effect. In the background, the electronic drums and a strong bass are providing the rhythmic background at a medium tempo. It has a groovy, urban atmosphere. This performance could be used in a crime movie or a TV show with an urban ghetto setting.", "data_idx": 4782, "number": 0, "label": "hiphop"} +{"file_name": "train_08565.png", "caption": "This is a breakbeat from a DJ set performance. The DJ is using the turntable to repeat the male vocal sample and add the scratching effect. In the background, the electronic drums and a strong bass are providing the rhythmic background at a medium tempo. It has a groovy, urban atmosphere. This performance could be used in a crime movie or a TV show with an urban ghetto setting.", "data_idx": 4782, "number": 1, "label": "hiphop"} +{"file_name": "train_08566.png", "caption": "The male voice singing sounds emotional and sad while a piano is playing a minor chord progression along with an acoustic guitar strumming chords. Then a fat sounding acoustic drum comes in with a simple groove along with an e-bass. This song may be playing on headphones while sitting in the bus riding downtown being lost in thoughts.", "data_idx": 4783, "number": 0, "label": "disco"} +{"file_name": "train_08567.png", "caption": "The male voice singing sounds emotional and sad while a piano is playing a minor chord progression along with an acoustic guitar strumming chords. Then a fat sounding acoustic drum comes in with a simple groove along with an e-bass. This song may be playing on headphones while sitting in the bus riding downtown being lost in thoughts.", "data_idx": 4783, "number": 1, "label": "disco"} +{"file_name": "train_08568.png", "caption": "The male voice singing sounds emotional and sad while a piano is playing a minor chord progression along with an acoustic guitar strumming chords. Then a fat sounding acoustic drum comes in with a simple groove along with an e-bass. This song may be playing on headphones while sitting in the bus riding downtown being lost in thoughts.", "data_idx": 4783, "number": 2, "label": "disco"} +{"file_name": "train_08569.png", "caption": "The male voice singing sounds emotional and sad while a piano is playing a minor chord progression along with an acoustic guitar strumming chords. Then a fat sounding acoustic drum comes in with a simple groove along with an e-bass. This song may be playing on headphones while sitting in the bus riding downtown being lost in thoughts.", "data_idx": 4783, "number": 3, "label": "disco"} +{"file_name": "train_08570.png", "caption": "This music is a Country song instrumental. The tempo is medium with a pedal steel guitar lead harmony with steady drumming and keyboard accompaniment. The music is a simple,minimalist, sweet, dulcet, sentimental, nostalgic, soothing, pleasant and mellifluous , classic Country music instrumental.", "data_idx": 4787, "number": 0, "label": "classical"} +{"file_name": "train_08571.png", "caption": "This music is a Country song instrumental. The tempo is medium with a pedal steel guitar lead harmony with steady drumming and keyboard accompaniment. The music is a simple,minimalist, sweet, dulcet, sentimental, nostalgic, soothing, pleasant and mellifluous , classic Country music instrumental.", "data_idx": 4787, "number": 1, "label": "classical"} +{"file_name": "train_08572.png", "caption": "This music is a Country song instrumental. The tempo is medium with a pedal steel guitar lead harmony with steady drumming and keyboard accompaniment. The music is a simple,minimalist, sweet, dulcet, sentimental, nostalgic, soothing, pleasant and mellifluous , classic Country music instrumental.", "data_idx": 4787, "number": 2, "label": "classical"} +{"file_name": "train_08573.png", "caption": "This music is a Country song instrumental. The tempo is medium with a pedal steel guitar lead harmony with steady drumming and keyboard accompaniment. The music is a simple,minimalist, sweet, dulcet, sentimental, nostalgic, soothing, pleasant and mellifluous , classic Country music instrumental.", "data_idx": 4787, "number": 3, "label": "classical"} +{"file_name": "train_08574.png", "caption": "A female vocalist sings this powerful Hard rock song. The tempo is medium fast with a vigorous electric guitar feedback, synthesiser articulation and electronic arrangement. The song is youthful, powerful, intense, boisterous, compelling, psychedelic, boomy , punchy and impactful. This song is a Hard Rock/heavy Metal song.", "data_idx": 4789, "number": 0, "label": "hiphop"} +{"file_name": "train_08575.png", "caption": "A female vocalist sings this powerful Hard rock song. The tempo is medium fast with a vigorous electric guitar feedback, synthesiser articulation and electronic arrangement. The song is youthful, powerful, intense, boisterous, compelling, psychedelic, boomy , punchy and impactful. This song is a Hard Rock/heavy Metal song.", "data_idx": 4789, "number": 1, "label": "hiphop"} +{"file_name": "train_08576.png", "caption": "A female vocalist sings this powerful Hard rock song. The tempo is medium fast with a vigorous electric guitar feedback, synthesiser articulation and electronic arrangement. The song is youthful, powerful, intense, boisterous, compelling, psychedelic, boomy , punchy and impactful. This song is a Hard Rock/heavy Metal song.", "data_idx": 4789, "number": 2, "label": "hiphop"} +{"file_name": "train_08577.png", "caption": "A female vocalist sings this powerful Hard rock song. The tempo is medium fast with a vigorous electric guitar feedback, synthesiser articulation and electronic arrangement. The song is youthful, powerful, intense, boisterous, compelling, psychedelic, boomy , punchy and impactful. This song is a Hard Rock/heavy Metal song.", "data_idx": 4789, "number": 3, "label": "hiphop"} +{"file_name": "train_08578.png", "caption": "The low quality recording features a chiptune melody playing with whistling and car honking sound effects along with it. It sounds very noisy and thin, like it was recorded with a phone.", "data_idx": 4790, "number": 0, "label": "reggae"} +{"file_name": "train_08579.png", "caption": "The low quality recording features a chiptune melody playing with whistling and car honking sound effects along with it. It sounds very noisy and thin, like it was recorded with a phone.", "data_idx": 4790, "number": 1, "label": "reggae"} +{"file_name": "train_08580.png", "caption": "The low quality recording features a chiptune melody playing with whistling and car honking sound effects along with it. It sounds very noisy and thin, like it was recorded with a phone.", "data_idx": 4790, "number": 2, "label": "reggae"} +{"file_name": "train_08581.png", "caption": "The low quality recording features a chiptune melody playing with whistling and car honking sound effects along with it. It sounds very noisy and thin, like it was recorded with a phone.", "data_idx": 4790, "number": 3, "label": "reggae"} +{"file_name": "train_08582.png", "caption": "Someone is playing acoustic drums with a lot of fill-ins before breaking into the next part of the song. A e-guitar and e-bass are playing the same melody/chords to elevate the energy. Female voices are singing in harmony before a male voice starts to scream in a higher register and then starts rapping. The e-guitar then is playing, almost clean sound, melody. This song may be playing with headphones while skating.", "data_idx": 4792, "number": 0, "label": "metal"} +{"file_name": "train_08583.png", "caption": "Someone is playing acoustic drums with a lot of fill-ins before breaking into the next part of the song. A e-guitar and e-bass are playing the same melody/chords to elevate the energy. Female voices are singing in harmony before a male voice starts to scream in a higher register and then starts rapping. The e-guitar then is playing, almost clean sound, melody. This song may be playing with headphones while skating.", "data_idx": 4792, "number": 1, "label": "metal"} +{"file_name": "train_08584.png", "caption": "Someone is playing acoustic drums with a lot of fill-ins before breaking into the next part of the song. A e-guitar and e-bass are playing the same melody/chords to elevate the energy. Female voices are singing in harmony before a male voice starts to scream in a higher register and then starts rapping. The e-guitar then is playing, almost clean sound, melody. This song may be playing with headphones while skating.", "data_idx": 4792, "number": 2, "label": "metal"} +{"file_name": "train_08585.png", "caption": "Someone is playing acoustic drums with a lot of fill-ins before breaking into the next part of the song. A e-guitar and e-bass are playing the same melody/chords to elevate the energy. Female voices are singing in harmony before a male voice starts to scream in a higher register and then starts rapping. The e-guitar then is playing, almost clean sound, melody. This song may be playing with headphones while skating.", "data_idx": 4792, "number": 3, "label": "metal"} +{"file_name": "train_08586.png", "caption": "This recording was done live, and the audio quality is poor. The style is country gospel or country worship music. There's a banjo being used to play arpeggios, and acoustic guitar strumming. The singer has a twangy and full-bodied female country voice.", "data_idx": 4793, "number": 0, "label": "rock"} +{"file_name": "train_08587.png", "caption": "This recording was done live, and the audio quality is poor. The style is country gospel or country worship music. There's a banjo being used to play arpeggios, and acoustic guitar strumming. The singer has a twangy and full-bodied female country voice.", "data_idx": 4793, "number": 1, "label": "rock"} +{"file_name": "train_08588.png", "caption": "The song is a modern pop song performed live performance. A female sings this melody with a strong drumming rhythm. The song is highly distorted with high noise levels and distortion. The song is a rock classic and performed live in front of a noisy audience.", "data_idx": 4795, "number": 0, "label": "hiphop"} +{"file_name": "train_08589.png", "caption": "The song is a modern pop song performed live performance. A female sings this melody with a strong drumming rhythm. The song is highly distorted with high noise levels and distortion. The song is a rock classic and performed live in front of a noisy audience.", "data_idx": 4795, "number": 1, "label": "hiphop"} +{"file_name": "train_08590.png", "caption": "The song is a modern pop song performed live performance. A female sings this melody with a strong drumming rhythm. The song is highly distorted with high noise levels and distortion. The song is a rock classic and performed live in front of a noisy audience.", "data_idx": 4795, "number": 2, "label": "hiphop"} +{"file_name": "train_08591.png", "caption": "The song is a modern pop song performed live performance. A female sings this melody with a strong drumming rhythm. The song is highly distorted with high noise levels and distortion. The song is a rock classic and performed live in front of a noisy audience.", "data_idx": 4795, "number": 3, "label": "hiphop"} +{"file_name": "train_08592.png", "caption": "The Gospel song features a choir singing over shimmering cymbals, soft hi-hats, smooth bass, arpeggiated acoustic guitar melody, sustained strings melody and emotional piano chords. It sounds passionate and heartfelt as the instrumentation is played dynamically, as the listener can really feel the softness of the instruments.", "data_idx": 4796, "number": 0, "label": "rock"} +{"file_name": "train_08593.png", "caption": "The Gospel song features a choir singing over shimmering cymbals, soft hi-hats, smooth bass, arpeggiated acoustic guitar melody, sustained strings melody and emotional piano chords. It sounds passionate and heartfelt as the instrumentation is played dynamically, as the listener can really feel the softness of the instruments.", "data_idx": 4796, "number": 1, "label": "rock"} +{"file_name": "train_08594.png", "caption": "The Gospel song features a choir singing over shimmering cymbals, soft hi-hats, smooth bass, arpeggiated acoustic guitar melody, sustained strings melody and emotional piano chords. It sounds passionate and heartfelt as the instrumentation is played dynamically, as the listener can really feel the softness of the instruments.", "data_idx": 4796, "number": 2, "label": "rock"} +{"file_name": "train_08595.png", "caption": "The Gospel song features a choir singing over shimmering cymbals, soft hi-hats, smooth bass, arpeggiated acoustic guitar melody, sustained strings melody and emotional piano chords. It sounds passionate and heartfelt as the instrumentation is played dynamically, as the listener can really feel the softness of the instruments.", "data_idx": 4796, "number": 3, "label": "rock"} +{"file_name": "train_08596.png", "caption": "The low quality recording features a mellow piano melody, slowly arpeggiated acoustic guitar melody and sustained soft strings melody. It sounds sad and emotional.", "data_idx": 4797, "number": 0, "label": "classical"} +{"file_name": "train_08597.png", "caption": "The low quality recording features a mellow piano melody, slowly arpeggiated acoustic guitar melody and sustained soft strings melody. It sounds sad and emotional.", "data_idx": 4797, "number": 1, "label": "classical"} +{"file_name": "train_08598.png", "caption": "The low quality recording features a mellow piano melody, slowly arpeggiated acoustic guitar melody and sustained soft strings melody. It sounds sad and emotional.", "data_idx": 4797, "number": 2, "label": "classical"} +{"file_name": "train_08599.png", "caption": "The low quality recording features a mellow piano melody, slowly arpeggiated acoustic guitar melody and sustained soft strings melody. It sounds sad and emotional.", "data_idx": 4797, "number": 3, "label": "classical"} +{"file_name": "train_08600.png", "caption": "A quiet recording of two female singers participating in a yodeling call and response section, accompanied by accordion, drum kit, bass and guitar playing a steady oompah beat. The chord progression is simple and the mood is fun and silly.", "data_idx": 4798, "number": 0, "label": "blues"} +{"file_name": "train_08601.png", "caption": "A quiet recording of two female singers participating in a yodeling call and response section, accompanied by accordion, drum kit, bass and guitar playing a steady oompah beat. The chord progression is simple and the mood is fun and silly.", "data_idx": 4798, "number": 1, "label": "blues"} +{"file_name": "train_08602.png", "caption": "A quiet recording of two female singers participating in a yodeling call and response section, accompanied by accordion, drum kit, bass and guitar playing a steady oompah beat. The chord progression is simple and the mood is fun and silly.", "data_idx": 4798, "number": 2, "label": "blues"} +{"file_name": "train_08603.png", "caption": "A quiet recording of two female singers participating in a yodeling call and response section, accompanied by accordion, drum kit, bass and guitar playing a steady oompah beat. The chord progression is simple and the mood is fun and silly.", "data_idx": 4798, "number": 3, "label": "blues"} +{"file_name": "train_08604.png", "caption": "A group of male vocalists sing this folk song in a foreign language. The tempo is fast with minimalist instruments like a lively acoustic guitar harmony, shakers and tambourine beat;The vocals are energetic, youthful, earnest, cheerful , happy, simple and chirpy.", "data_idx": 4799, "number": 0, "label": "blues"} +{"file_name": "train_08605.png", "caption": "A group of male vocalists sing this folk song in a foreign language. The tempo is fast with minimalist instruments like a lively acoustic guitar harmony, shakers and tambourine beat;The vocals are energetic, youthful, earnest, cheerful , happy, simple and chirpy.", "data_idx": 4799, "number": 1, "label": "blues"} +{"file_name": "train_08606.png", "caption": "A group of male vocalists sing this folk song in a foreign language. The tempo is fast with minimalist instruments like a lively acoustic guitar harmony, shakers and tambourine beat;The vocals are energetic, youthful, earnest, cheerful , happy, simple and chirpy.", "data_idx": 4799, "number": 2, "label": "blues"} +{"file_name": "train_08607.png", "caption": "A group of male vocalists sing this folk song in a foreign language. The tempo is fast with minimalist instruments like a lively acoustic guitar harmony, shakers and tambourine beat;The vocals are energetic, youthful, earnest, cheerful , happy, simple and chirpy.", "data_idx": 4799, "number": 3, "label": "blues"} diff --git a/data/train/metadata_0019.jsonl b/data/train/metadata_0019.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6ba009a7fa208dbe732792fb04094b44b7ac9f0f --- /dev/null +++ b/data/train/metadata_0019.jsonl @@ -0,0 +1,384 @@ +{"file_name": "train_08608.png", "caption": "The rock song features a passionate male vocal, alongside harmonizing background vocal, singing over tremolo electric guitar located in the left channel, arpeggiated electric guitar melody in the right channel of the stereo image, shimmering tambourine, groovy bass guitar, punchy kick and snare hits, reverberant percussive hit and energetic crash cymbal. It sounds groovy, energetic and kind of addictive thanks to that cadence.", "data_idx": 4800, "number": 0, "label": "rock"} +{"file_name": "train_08609.png", "caption": "The rock song features a passionate male vocal, alongside harmonizing background vocal, singing over tremolo electric guitar located in the left channel, arpeggiated electric guitar melody in the right channel of the stereo image, shimmering tambourine, groovy bass guitar, punchy kick and snare hits, reverberant percussive hit and energetic crash cymbal. It sounds groovy, energetic and kind of addictive thanks to that cadence.", "data_idx": 4800, "number": 1, "label": "rock"} +{"file_name": "train_08610.png", "caption": "The rock song features a passionate male vocal, alongside harmonizing background vocal, singing over tremolo electric guitar located in the left channel, arpeggiated electric guitar melody in the right channel of the stereo image, shimmering tambourine, groovy bass guitar, punchy kick and snare hits, reverberant percussive hit and energetic crash cymbal. It sounds groovy, energetic and kind of addictive thanks to that cadence.", "data_idx": 4800, "number": 2, "label": "rock"} +{"file_name": "train_08611.png", "caption": "The rock song features a passionate male vocal, alongside harmonizing background vocal, singing over tremolo electric guitar located in the left channel, arpeggiated electric guitar melody in the right channel of the stereo image, shimmering tambourine, groovy bass guitar, punchy kick and snare hits, reverberant percussive hit and energetic crash cymbal. It sounds groovy, energetic and kind of addictive thanks to that cadence.", "data_idx": 4800, "number": 3, "label": "rock"} +{"file_name": "train_08612.png", "caption": "An e-guitar is playing a single note of a chord creating an arpeggio with an echo/delay-effect. The whole composition sounds soothing and relaxing. This may be relaxing in your room with headphones.", "data_idx": 4803, "number": 0, "label": "blues"} +{"file_name": "train_08613.png", "caption": "An e-guitar is playing a single note of a chord creating an arpeggio with an echo/delay-effect. The whole composition sounds soothing and relaxing. This may be relaxing in your room with headphones.", "data_idx": 4803, "number": 1, "label": "blues"} +{"file_name": "train_08614.png", "caption": "An e-guitar is playing a single note of a chord creating an arpeggio with an echo/delay-effect. The whole composition sounds soothing and relaxing. This may be relaxing in your room with headphones.", "data_idx": 4803, "number": 2, "label": "blues"} +{"file_name": "train_08615.png", "caption": "An e-guitar is playing a single note of a chord creating an arpeggio with an echo/delay-effect. The whole composition sounds soothing and relaxing. This may be relaxing in your room with headphones.", "data_idx": 4803, "number": 3, "label": "blues"} +{"file_name": "train_08616.png", "caption": "The rock music features a screaming male voice singing a melody. One of the electric guitars accompanies the singer with strummed chords while the other, for the second part of the music excerpt, plays a melody. Both guitars have a distortion effect on. The drums play a well grounded rhythm and together with the bass guitar drive the pulse of the music. The quality of the audio recording is not that good, most probably this is an old live recording.", "data_idx": 4808, "number": 0, "label": "rock"} +{"file_name": "train_08617.png", "caption": "The rock music features a screaming male voice singing a melody. One of the electric guitars accompanies the singer with strummed chords while the other, for the second part of the music excerpt, plays a melody. Both guitars have a distortion effect on. The drums play a well grounded rhythm and together with the bass guitar drive the pulse of the music. The quality of the audio recording is not that good, most probably this is an old live recording.", "data_idx": 4808, "number": 1, "label": "rock"} +{"file_name": "train_08618.png", "caption": "The rock music features a screaming male voice singing a melody. One of the electric guitars accompanies the singer with strummed chords while the other, for the second part of the music excerpt, plays a melody. Both guitars have a distortion effect on. The drums play a well grounded rhythm and together with the bass guitar drive the pulse of the music. The quality of the audio recording is not that good, most probably this is an old live recording.", "data_idx": 4808, "number": 2, "label": "rock"} +{"file_name": "train_08619.png", "caption": "The rock music features a screaming male voice singing a melody. One of the electric guitars accompanies the singer with strummed chords while the other, for the second part of the music excerpt, plays a melody. Both guitars have a distortion effect on. The drums play a well grounded rhythm and together with the bass guitar drive the pulse of the music. The quality of the audio recording is not that good, most probably this is an old live recording.", "data_idx": 4808, "number": 3, "label": "rock"} +{"file_name": "train_08620.png", "caption": "The music is purely instrumental and it features a 12-string acoustic guitar playing the same note over and over. Since it's a 12-string guitar the note can be heard played twice really fast. I guess a better name would be tuning instead of melody, because it sounds as if the guitarist is trying to tune the 2 strings to play the same note together.", "data_idx": 4812, "number": 0, "label": "hiphop"} +{"file_name": "train_08621.png", "caption": "The music is purely instrumental and it features a 12-string acoustic guitar playing the same note over and over. Since it's a 12-string guitar the note can be heard played twice really fast. I guess a better name would be tuning instead of melody, because it sounds as if the guitarist is trying to tune the 2 strings to play the same note together.", "data_idx": 4812, "number": 1, "label": "hiphop"} +{"file_name": "train_08622.png", "caption": "The music is purely instrumental and it features a 12-string acoustic guitar playing the same note over and over. Since it's a 12-string guitar the note can be heard played twice really fast. I guess a better name would be tuning instead of melody, because it sounds as if the guitarist is trying to tune the 2 strings to play the same note together.", "data_idx": 4812, "number": 2, "label": "hiphop"} +{"file_name": "train_08623.png", "caption": "The music is purely instrumental and it features a 12-string acoustic guitar playing the same note over and over. Since it's a 12-string guitar the note can be heard played twice really fast. I guess a better name would be tuning instead of melody, because it sounds as if the guitarist is trying to tune the 2 strings to play the same note together.", "data_idx": 4812, "number": 3, "label": "hiphop"} +{"file_name": "train_08624.png", "caption": "Audio of a percussion instrument playing by itself. Sounds like a tambourine, riq, or pandeiro, playing a steady beat, alternating between a cymbal sound and a bongo drum sound.", "data_idx": 4813, "number": 0, "label": "reggae"} +{"file_name": "train_08625.png", "caption": "Audio of a percussion instrument playing by itself. Sounds like a tambourine, riq, or pandeiro, playing a steady beat, alternating between a cymbal sound and a bongo drum sound.", "data_idx": 4813, "number": 1, "label": "reggae"} +{"file_name": "train_08626.png", "caption": "Audio of a percussion instrument playing by itself. Sounds like a tambourine, riq, or pandeiro, playing a steady beat, alternating between a cymbal sound and a bongo drum sound.", "data_idx": 4813, "number": 2, "label": "reggae"} +{"file_name": "train_08627.png", "caption": "Audio of a percussion instrument playing by itself. Sounds like a tambourine, riq, or pandeiro, playing a steady beat, alternating between a cymbal sound and a bongo drum sound.", "data_idx": 4813, "number": 3, "label": "reggae"} +{"file_name": "train_08628.png", "caption": "This song is an instrumental. The tempo is low with a xylophone like instrument harmony, sound of clock ticking and papers rustling . The music is spooky, eerie, suspenseful and sinister. This song is Pop.", "data_idx": 4814, "number": 0, "label": "classical"} +{"file_name": "train_08629.png", "caption": "This song is an instrumental. The tempo is low with a xylophone like instrument harmony, sound of clock ticking and papers rustling . The music is spooky, eerie, suspenseful and sinister. This song is Pop.", "data_idx": 4814, "number": 1, "label": "classical"} +{"file_name": "train_08630.png", "caption": "The song is an instrumental. The song has ambient room noises like hair trimming tones and funny tones. The song has slick drumming rhythm, groovy bass line, guitar rhythm and keyboard accompaniment. The song is groovy and funny. The song is a soundtrack for a funny prank video.", "data_idx": 4817, "number": 0, "label": "reggae"} +{"file_name": "train_08631.png", "caption": "The song is an instrumental. The song has ambient room noises like hair trimming tones and funny tones. The song has slick drumming rhythm, groovy bass line, guitar rhythm and keyboard accompaniment. The song is groovy and funny. The song is a soundtrack for a funny prank video.", "data_idx": 4817, "number": 1, "label": "reggae"} +{"file_name": "train_08632.png", "caption": "The song is an instrumental. The song has ambient room noises like hair trimming tones and funny tones. The song has slick drumming rhythm, groovy bass line, guitar rhythm and keyboard accompaniment. The song is groovy and funny. The song is a soundtrack for a funny prank video.", "data_idx": 4817, "number": 2, "label": "reggae"} +{"file_name": "train_08633.png", "caption": "The song is an instrumental. The song has ambient room noises like hair trimming tones and funny tones. The song has slick drumming rhythm, groovy bass line, guitar rhythm and keyboard accompaniment. The song is groovy and funny. The song is a soundtrack for a funny prank video.", "data_idx": 4817, "number": 3, "label": "reggae"} +{"file_name": "train_08634.png", "caption": "The song is an instrumental. The song is medium tempo with a steady drumming rhythm, cymbals crashing, piano accompaniment and a xylophone playing a cool melody. The song is emotional and passionate. The song is an ad jingle for a technology solutions company.", "data_idx": 4819, "number": 0, "label": "classical"} +{"file_name": "train_08635.png", "caption": "The song is an instrumental. The song is medium tempo with a steady drumming rhythm, cymbals crashing, piano accompaniment and a xylophone playing a cool melody. The song is emotional and passionate. The song is an ad jingle for a technology solutions company.", "data_idx": 4819, "number": 1, "label": "classical"} +{"file_name": "train_08636.png", "caption": "The song is an instrumental. The song is medium tempo with a steady drumming rhythm, cymbals crashing, piano accompaniment and a xylophone playing a cool melody. The song is emotional and passionate. The song is an ad jingle for a technology solutions company.", "data_idx": 4819, "number": 2, "label": "classical"} +{"file_name": "train_08637.png", "caption": "The song is an instrumental. The song is medium tempo with a steady drumming rhythm, cymbals crashing, piano accompaniment and a xylophone playing a cool melody. The song is emotional and passionate. The song is an ad jingle for a technology solutions company.", "data_idx": 4819, "number": 3, "label": "classical"} +{"file_name": "train_08638.png", "caption": "This music is instrumental . The tempo is slow with an Oboe playing a monotone note and synthesised sound of heavy rainfall. The music has minimal instruments and has a creepy, scary, sinister, unnatural vibe.", "data_idx": 4820, "number": 0, "label": "metal"} +{"file_name": "train_08639.png", "caption": "This music is instrumental . The tempo is slow with an Oboe playing a monotone note and synthesised sound of heavy rainfall. The music has minimal instruments and has a creepy, scary, sinister, unnatural vibe.", "data_idx": 4820, "number": 1, "label": "metal"} +{"file_name": "train_08640.png", "caption": "This music is instrumental . The tempo is slow with an Oboe playing a monotone note and synthesised sound of heavy rainfall. The music has minimal instruments and has a creepy, scary, sinister, unnatural vibe.", "data_idx": 4820, "number": 2, "label": "metal"} +{"file_name": "train_08641.png", "caption": "This music is instrumental . The tempo is slow with an Oboe playing a monotone note and synthesised sound of heavy rainfall. The music has minimal instruments and has a creepy, scary, sinister, unnatural vibe.", "data_idx": 4820, "number": 3, "label": "metal"} +{"file_name": "train_08642.png", "caption": "A female singer sings this soulful melody with backup singers in vocal harmony. The song is fast tempo with a quick drumming rhythm, percussive bass line, guitar strumming rhythm and keyboard accompaniment. The song has black gospel roots.", "data_idx": 4823, "number": 0, "label": "blues"} +{"file_name": "train_08643.png", "caption": "A female singer sings this soulful melody with backup singers in vocal harmony. The song is fast tempo with a quick drumming rhythm, percussive bass line, guitar strumming rhythm and keyboard accompaniment. The song has black gospel roots.", "data_idx": 4823, "number": 1, "label": "blues"} +{"file_name": "train_08644.png", "caption": "A female singer sings this soulful melody with backup singers in vocal harmony. The song is fast tempo with a quick drumming rhythm, percussive bass line, guitar strumming rhythm and keyboard accompaniment. The song has black gospel roots.", "data_idx": 4823, "number": 2, "label": "blues"} +{"file_name": "train_08645.png", "caption": "A female singer sings this soulful melody with backup singers in vocal harmony. The song is fast tempo with a quick drumming rhythm, percussive bass line, guitar strumming rhythm and keyboard accompaniment. The song has black gospel roots.", "data_idx": 4823, "number": 3, "label": "blues"} +{"file_name": "train_08646.png", "caption": "The jazz music features a piano improvising with somewhat thick textures. A double bass plays a laid-back melody in the low register, for the most time with one note every two beats. The drummer plays a light rhythm employing a brush technique, rather than using sticks. The music has a swing feel to it.", "data_idx": 4825, "number": 0, "label": "jazz"} +{"file_name": "train_08647.png", "caption": "The jazz music features a piano improvising with somewhat thick textures. A double bass plays a laid-back melody in the low register, for the most time with one note every two beats. The drummer plays a light rhythm employing a brush technique, rather than using sticks. The music has a swing feel to it.", "data_idx": 4825, "number": 1, "label": "jazz"} +{"file_name": "train_08648.png", "caption": "The jazz music features a piano improvising with somewhat thick textures. A double bass plays a laid-back melody in the low register, for the most time with one note every two beats. The drummer plays a light rhythm employing a brush technique, rather than using sticks. The music has a swing feel to it.", "data_idx": 4825, "number": 2, "label": "jazz"} +{"file_name": "train_08649.png", "caption": "The jazz music features a piano improvising with somewhat thick textures. A double bass plays a laid-back melody in the low register, for the most time with one note every two beats. The drummer plays a light rhythm employing a brush technique, rather than using sticks. The music has a swing feel to it.", "data_idx": 4825, "number": 3, "label": "jazz"} +{"file_name": "train_08650.png", "caption": "This is a Haiti dance music piece. There is a male vocalist singing melodically in the Creole language. The brass, the keyboard and the bass guitar are the melodic elements of this piece. In the rhythmic background, the acoustic drums and percussive elements are playing a latin type beat. The atmosphere of the piece is chill and easygoing. This piece could be played at Caribbean bars and dance clubs. It could also be used as an accompaniment piece for dancing courses.", "data_idx": 4826, "number": 0, "label": "disco"} +{"file_name": "train_08651.png", "caption": "This is a Haiti dance music piece. There is a male vocalist singing melodically in the Creole language. The brass, the keyboard and the bass guitar are the melodic elements of this piece. In the rhythmic background, the acoustic drums and percussive elements are playing a latin type beat. The atmosphere of the piece is chill and easygoing. This piece could be played at Caribbean bars and dance clubs. It could also be used as an accompaniment piece for dancing courses.", "data_idx": 4826, "number": 1, "label": "disco"} +{"file_name": "train_08652.png", "caption": "This is a Haiti dance music piece. There is a male vocalist singing melodically in the Creole language. The brass, the keyboard and the bass guitar are the melodic elements of this piece. In the rhythmic background, the acoustic drums and percussive elements are playing a latin type beat. The atmosphere of the piece is chill and easygoing. This piece could be played at Caribbean bars and dance clubs. It could also be used as an accompaniment piece for dancing courses.", "data_idx": 4826, "number": 2, "label": "disco"} +{"file_name": "train_08653.png", "caption": "This is a Haiti dance music piece. There is a male vocalist singing melodically in the Creole language. The brass, the keyboard and the bass guitar are the melodic elements of this piece. In the rhythmic background, the acoustic drums and percussive elements are playing a latin type beat. The atmosphere of the piece is chill and easygoing. This piece could be played at Caribbean bars and dance clubs. It could also be used as an accompaniment piece for dancing courses.", "data_idx": 4826, "number": 3, "label": "disco"} +{"file_name": "train_08654.png", "caption": "The song is instrumental. The tempo is medium with sitars and other stringed instruments playing in unison, tabla percussions and a harmonium playing the lead. The song is a classic hindustaani instrumental.", "data_idx": 4828, "number": 0, "label": "jazz"} +{"file_name": "train_08655.png", "caption": "The song is instrumental. The tempo is medium with sitars and other stringed instruments playing in unison, tabla percussions and a harmonium playing the lead. The song is a classic hindustaani instrumental.", "data_idx": 4828, "number": 1, "label": "jazz"} +{"file_name": "train_08656.png", "caption": "The song is instrumental. The tempo is medium with sitars and other stringed instruments playing in unison, tabla percussions and a harmonium playing the lead. The song is a classic hindustaani instrumental.", "data_idx": 4828, "number": 2, "label": "jazz"} +{"file_name": "train_08657.png", "caption": "The song is instrumental. The tempo is medium with sitars and other stringed instruments playing in unison, tabla percussions and a harmonium playing the lead. The song is a classic hindustaani instrumental.", "data_idx": 4828, "number": 3, "label": "jazz"} +{"file_name": "train_08658.png", "caption": "A male Latin singer sings this passionate melody. The song is medium tempo with various Latin percussions, groovy bass line, keyboard harmony and a guitar playing lead. The song is romantic and a classic Latin dance groove. The song is a Latin dance hit with a deteriorating audio quality.", "data_idx": 4829, "number": 0, "label": "reggae"} +{"file_name": "train_08659.png", "caption": "A male Latin singer sings this passionate melody. The song is medium tempo with various Latin percussions, groovy bass line, keyboard harmony and a guitar playing lead. The song is romantic and a classic Latin dance groove. The song is a Latin dance hit with a deteriorating audio quality.", "data_idx": 4829, "number": 1, "label": "reggae"} +{"file_name": "train_08660.png", "caption": "A male Latin singer sings this passionate melody. The song is medium tempo with various Latin percussions, groovy bass line, keyboard harmony and a guitar playing lead. The song is romantic and a classic Latin dance groove. The song is a Latin dance hit with a deteriorating audio quality.", "data_idx": 4829, "number": 2, "label": "reggae"} +{"file_name": "train_08661.png", "caption": "A male Latin singer sings this passionate melody. The song is medium tempo with various Latin percussions, groovy bass line, keyboard harmony and a guitar playing lead. The song is romantic and a classic Latin dance groove. The song is a Latin dance hit with a deteriorating audio quality.", "data_idx": 4829, "number": 3, "label": "reggae"} +{"file_name": "train_08662.png", "caption": "The low quality recording features a loud, gliding synth bass, muffled snare and kick hits, tinny hi hats and shimmering ride cymbals. There is a busy line sound effect and its rhythm is offbeat relative to the song. It sounds generic - like a song from a video game.", "data_idx": 4831, "number": 0, "label": "jazz"} +{"file_name": "train_08663.png", "caption": "The low quality recording features a loud, gliding synth bass, muffled snare and kick hits, tinny hi hats and shimmering ride cymbals. There is a busy line sound effect and its rhythm is offbeat relative to the song. It sounds generic - like a song from a video game.", "data_idx": 4831, "number": 1, "label": "jazz"} +{"file_name": "train_08664.png", "caption": "The low quality recording features a loud, gliding synth bass, muffled snare and kick hits, tinny hi hats and shimmering ride cymbals. There is a busy line sound effect and its rhythm is offbeat relative to the song. It sounds generic - like a song from a video game.", "data_idx": 4831, "number": 2, "label": "jazz"} +{"file_name": "train_08665.png", "caption": "The low quality recording features a loud, gliding synth bass, muffled snare and kick hits, tinny hi hats and shimmering ride cymbals. There is a busy line sound effect and its rhythm is offbeat relative to the song. It sounds generic - like a song from a video game.", "data_idx": 4831, "number": 3, "label": "jazz"} +{"file_name": "train_08666.png", "caption": "The Rock Orchestra song features energetic crash cymbals, punchy kick and snare hits, groovy bass, wide electric guitar chords and simple strings melody. It sounds epic, powerful and energetic - like a theme song for an opening track of some anime.", "data_idx": 4833, "number": 0, "label": "metal"} +{"file_name": "train_08667.png", "caption": "The Rock Orchestra song features energetic crash cymbals, punchy kick and snare hits, groovy bass, wide electric guitar chords and simple strings melody. It sounds epic, powerful and energetic - like a theme song for an opening track of some anime.", "data_idx": 4833, "number": 1, "label": "metal"} +{"file_name": "train_08668.png", "caption": "The Rock Orchestra song features energetic crash cymbals, punchy kick and snare hits, groovy bass, wide electric guitar chords and simple strings melody. It sounds epic, powerful and energetic - like a theme song for an opening track of some anime.", "data_idx": 4833, "number": 2, "label": "metal"} +{"file_name": "train_08669.png", "caption": "The Rock Orchestra song features energetic crash cymbals, punchy kick and snare hits, groovy bass, wide electric guitar chords and simple strings melody. It sounds epic, powerful and energetic - like a theme song for an opening track of some anime.", "data_idx": 4833, "number": 3, "label": "metal"} +{"file_name": "train_08670.png", "caption": "The low quality recording features a live performance of a pop song and it consists of passionate male vocal singing over synth keys melody, shimmering riser, simple hi hats, punchy kick and snare hits and synth pad chords. There were some widely spread crowd claps and cheering as they were excited. It sounds energetic, exciting and passionate.", "data_idx": 4834, "number": 0, "label": "disco"} +{"file_name": "train_08671.png", "caption": "The low quality recording features a live performance of a pop song and it consists of passionate male vocal singing over synth keys melody, shimmering riser, simple hi hats, punchy kick and snare hits and synth pad chords. There were some widely spread crowd claps and cheering as they were excited. It sounds energetic, exciting and passionate.", "data_idx": 4834, "number": 1, "label": "disco"} +{"file_name": "train_08672.png", "caption": "The low quality recording features a live performance of a pop song and it consists of passionate male vocal singing over synth keys melody, shimmering riser, simple hi hats, punchy kick and snare hits and synth pad chords. There were some widely spread crowd claps and cheering as they were excited. It sounds energetic, exciting and passionate.", "data_idx": 4834, "number": 2, "label": "disco"} +{"file_name": "train_08673.png", "caption": "The low quality recording features a live performance of a pop song and it consists of passionate male vocal singing over synth keys melody, shimmering riser, simple hi hats, punchy kick and snare hits and synth pad chords. There were some widely spread crowd claps and cheering as they were excited. It sounds energetic, exciting and passionate.", "data_idx": 4834, "number": 3, "label": "disco"} +{"file_name": "train_08674.png", "caption": "This is a live recording of an instrumental electronic music beat. The rhythmic foundation of the beat consists of a simple medium tempo electronic drum beat. There are sounds coming from the background resembling a restaurant. It is a minimal-sounding groovy beat that is also danceable. With the removal of ambient sounds and a clean mix, this track could be used in the soundtrack of a TV show with an urban setting.", "data_idx": 4835, "number": 0, "label": "rock"} +{"file_name": "train_08675.png", "caption": "This is a live recording of an instrumental electronic music beat. The rhythmic foundation of the beat consists of a simple medium tempo electronic drum beat. There are sounds coming from the background resembling a restaurant. It is a minimal-sounding groovy beat that is also danceable. With the removal of ambient sounds and a clean mix, this track could be used in the soundtrack of a TV show with an urban setting.", "data_idx": 4835, "number": 1, "label": "rock"} +{"file_name": "train_08676.png", "caption": "This is a live recording of an instrumental electronic music beat. The rhythmic foundation of the beat consists of a simple medium tempo electronic drum beat. There are sounds coming from the background resembling a restaurant. It is a minimal-sounding groovy beat that is also danceable. With the removal of ambient sounds and a clean mix, this track could be used in the soundtrack of a TV show with an urban setting.", "data_idx": 4835, "number": 2, "label": "rock"} +{"file_name": "train_08677.png", "caption": "This is a live recording of an instrumental electronic music beat. The rhythmic foundation of the beat consists of a simple medium tempo electronic drum beat. There are sounds coming from the background resembling a restaurant. It is a minimal-sounding groovy beat that is also danceable. With the removal of ambient sounds and a clean mix, this track could be used in the soundtrack of a TV show with an urban setting.", "data_idx": 4835, "number": 3, "label": "rock"} +{"file_name": "train_08678.png", "caption": "The low quality recording features a sustained string melody, tinny shimmering bells and addictive piano melody, complementing each other. At the very end of the loop there is a short snippet of flat female vocal narrating. At some point during the loop, there is a subtle unwanted low frequency sputter, which definitely makes this recording low quality.", "data_idx": 4837, "number": 0, "label": "country"} +{"file_name": "train_08679.png", "caption": "The low quality recording features a sustained string melody, tinny shimmering bells and addictive piano melody, complementing each other. At the very end of the loop there is a short snippet of flat female vocal narrating. At some point during the loop, there is a subtle unwanted low frequency sputter, which definitely makes this recording low quality.", "data_idx": 4837, "number": 1, "label": "country"} +{"file_name": "train_08680.png", "caption": "The low quality recording features a sustained string melody, tinny shimmering bells and addictive piano melody, complementing each other. At the very end of the loop there is a short snippet of flat female vocal narrating. At some point during the loop, there is a subtle unwanted low frequency sputter, which definitely makes this recording low quality.", "data_idx": 4837, "number": 2, "label": "country"} +{"file_name": "train_08681.png", "caption": "The low quality recording features a sustained string melody, tinny shimmering bells and addictive piano melody, complementing each other. At the very end of the loop there is a short snippet of flat female vocal narrating. At some point during the loop, there is a subtle unwanted low frequency sputter, which definitely makes this recording low quality.", "data_idx": 4837, "number": 3, "label": "country"} +{"file_name": "train_08682.png", "caption": "This is an instrumental percussion piece. There is a wide variety of percussion instruments. There is a marimba playing a playful melody. The acoustic drums and steel percussion provide the remainder of the rhythmic background. The atmosphere is lively and energetic. This piece could be used in the soundtrack of a comedy movie or TV show.", "data_idx": 4840, "number": 0, "label": "rock"} +{"file_name": "train_08683.png", "caption": "This is an instrumental percussion piece. There is a wide variety of percussion instruments. There is a marimba playing a playful melody. The acoustic drums and steel percussion provide the remainder of the rhythmic background. The atmosphere is lively and energetic. This piece could be used in the soundtrack of a comedy movie or TV show.", "data_idx": 4840, "number": 1, "label": "rock"} +{"file_name": "train_08684.png", "caption": "This is an instrumental percussion piece. There is a wide variety of percussion instruments. There is a marimba playing a playful melody. The acoustic drums and steel percussion provide the remainder of the rhythmic background. The atmosphere is lively and energetic. This piece could be used in the soundtrack of a comedy movie or TV show.", "data_idx": 4840, "number": 2, "label": "rock"} +{"file_name": "train_08685.png", "caption": "This is an instrumental percussion piece. There is a wide variety of percussion instruments. There is a marimba playing a playful melody. The acoustic drums and steel percussion provide the remainder of the rhythmic background. The atmosphere is lively and energetic. This piece could be used in the soundtrack of a comedy movie or TV show.", "data_idx": 4840, "number": 3, "label": "rock"} +{"file_name": "train_08686.png", "caption": "This orchestral song features the main melody played by trumpets. The brass section plays a repetitive melody and the chords behind the melody change. This is backed by the string section. Cellos and violas are playing the bass notes. This is an instrumental song with no voices. The song has a victorious mood. This song can be played when there is a grand entrance of a King into his castle.", "data_idx": 4842, "number": 0, "label": "hiphop"} +{"file_name": "train_08687.png", "caption": "This orchestral song features the main melody played by trumpets. The brass section plays a repetitive melody and the chords behind the melody change. This is backed by the string section. Cellos and violas are playing the bass notes. This is an instrumental song with no voices. The song has a victorious mood. This song can be played when there is a grand entrance of a King into his castle.", "data_idx": 4842, "number": 1, "label": "hiphop"} +{"file_name": "train_08688.png", "caption": "This is an instructive flamenco guitar piece. The player is depicting how the piece must be played by starting it slow and eventually getting faster. The theme is repeated by the player.", "data_idx": 4845, "number": 0, "label": "rock"} +{"file_name": "train_08689.png", "caption": "This is an instructive flamenco guitar piece. The player is depicting how the piece must be played by starting it slow and eventually getting faster. The theme is repeated by the player.", "data_idx": 4845, "number": 1, "label": "rock"} +{"file_name": "train_08690.png", "caption": "This is an instructive flamenco guitar piece. The player is depicting how the piece must be played by starting it slow and eventually getting faster. The theme is repeated by the player.", "data_idx": 4845, "number": 2, "label": "rock"} +{"file_name": "train_08691.png", "caption": "This is an instructive flamenco guitar piece. The player is depicting how the piece must be played by starting it slow and eventually getting faster. The theme is repeated by the player.", "data_idx": 4845, "number": 3, "label": "rock"} +{"file_name": "train_08692.png", "caption": "The low quality recording features a reverberant sound of boomy bass guitar, muffled drums, simple electric guitar chords and melodic male vocal singing over it. It sounds like it was recorded on a phone, since it is mono.", "data_idx": 4850, "number": 0, "label": "rock"} +{"file_name": "train_08693.png", "caption": "The low quality recording features a reverberant sound of boomy bass guitar, muffled drums, simple electric guitar chords and melodic male vocal singing over it. It sounds like it was recorded on a phone, since it is mono.", "data_idx": 4850, "number": 1, "label": "rock"} +{"file_name": "train_08694.png", "caption": "The low quality recording features a reverberant sound of boomy bass guitar, muffled drums, simple electric guitar chords and melodic male vocal singing over it. It sounds like it was recorded on a phone, since it is mono.", "data_idx": 4850, "number": 2, "label": "rock"} +{"file_name": "train_08695.png", "caption": "The low quality recording features a reverberant sound of boomy bass guitar, muffled drums, simple electric guitar chords and melodic male vocal singing over it. It sounds like it was recorded on a phone, since it is mono.", "data_idx": 4850, "number": 3, "label": "rock"} +{"file_name": "train_08696.png", "caption": "The song is experimental and instrumental. The song has varying tempos consisting of beep tones controlled by manipulating electric currents. The song is non musical and borders on being noisy.", "data_idx": 4851, "number": 0, "label": "reggae"} +{"file_name": "train_08697.png", "caption": "The song is experimental and instrumental. The song has varying tempos consisting of beep tones controlled by manipulating electric currents. The song is non musical and borders on being noisy.", "data_idx": 4851, "number": 1, "label": "reggae"} +{"file_name": "train_08698.png", "caption": "The song is experimental and instrumental. The song has varying tempos consisting of beep tones controlled by manipulating electric currents. The song is non musical and borders on being noisy.", "data_idx": 4851, "number": 2, "label": "reggae"} +{"file_name": "train_08699.png", "caption": "The song is experimental and instrumental. The song has varying tempos consisting of beep tones controlled by manipulating electric currents. The song is non musical and borders on being noisy.", "data_idx": 4851, "number": 3, "label": "reggae"} +{"file_name": "train_08700.png", "caption": "This song contains a female voice singing over a digital drum and synthesizer pad being used as a melodic and strongly rhythmic instrument. An orchestral hit is being used to play a very strong and full melody in-between the synth parts. This song may be playing in a club.", "data_idx": 4852, "number": 0, "label": "hiphop"} +{"file_name": "train_08701.png", "caption": "This song contains a female voice singing over a digital drum and synthesizer pad being used as a melodic and strongly rhythmic instrument. An orchestral hit is being used to play a very strong and full melody in-between the synth parts. This song may be playing in a club.", "data_idx": 4852, "number": 1, "label": "hiphop"} +{"file_name": "train_08702.png", "caption": "This song contains a female voice singing over a digital drum and synthesizer pad being used as a melodic and strongly rhythmic instrument. An orchestral hit is being used to play a very strong and full melody in-between the synth parts. This song may be playing in a club.", "data_idx": 4852, "number": 2, "label": "hiphop"} +{"file_name": "train_08703.png", "caption": "This song contains a female voice singing over a digital drum and synthesizer pad being used as a melodic and strongly rhythmic instrument. An orchestral hit is being used to play a very strong and full melody in-between the synth parts. This song may be playing in a club.", "data_idx": 4852, "number": 3, "label": "hiphop"} +{"file_name": "train_08704.png", "caption": "The low quality recording features a live performance of a soft rock song that consists of acoustic rhythm guitar and flat male vocals singing over it. The crowd is loudly chattering in the background. It sounds noisy, dull and distorted.", "data_idx": 4853, "number": 0, "label": "rock"} +{"file_name": "train_08705.png", "caption": "The low quality recording features a live performance of a soft rock song that consists of acoustic rhythm guitar and flat male vocals singing over it. The crowd is loudly chattering in the background. It sounds noisy, dull and distorted.", "data_idx": 4853, "number": 1, "label": "rock"} +{"file_name": "train_08706.png", "caption": "The low quality recording features a metal song that consists of wide aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits alongside some snare rolls, synth keys melody and energetic crash cymbals. There are some glass hits and metallic object sound effects. It sounds chaotic, distorted, aggressive and muddy, since the frequencies are clashing with each other.", "data_idx": 4855, "number": 0, "label": "metal"} +{"file_name": "train_08707.png", "caption": "The low quality recording features a metal song that consists of wide aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits alongside some snare rolls, synth keys melody and energetic crash cymbals. There are some glass hits and metallic object sound effects. It sounds chaotic, distorted, aggressive and muddy, since the frequencies are clashing with each other.", "data_idx": 4855, "number": 1, "label": "metal"} +{"file_name": "train_08708.png", "caption": "The low quality recording features a metal song that consists of wide aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits alongside some snare rolls, synth keys melody and energetic crash cymbals. There are some glass hits and metallic object sound effects. It sounds chaotic, distorted, aggressive and muddy, since the frequencies are clashing with each other.", "data_idx": 4855, "number": 2, "label": "metal"} +{"file_name": "train_08709.png", "caption": "The low quality recording features a metal song that consists of wide aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits alongside some snare rolls, synth keys melody and energetic crash cymbals. There are some glass hits and metallic object sound effects. It sounds chaotic, distorted, aggressive and muddy, since the frequencies are clashing with each other.", "data_idx": 4855, "number": 3, "label": "metal"} +{"file_name": "train_08710.png", "caption": "A string ensemble is playing a sad melody together with a female choir singing. The recording is full of reverb and sounds very atmospheric and epic. This song may be playing in a sad movie-scene.", "data_idx": 4857, "number": 0, "label": "classical"} +{"file_name": "train_08711.png", "caption": "A string ensemble is playing a sad melody together with a female choir singing. The recording is full of reverb and sounds very atmospheric and epic. This song may be playing in a sad movie-scene.", "data_idx": 4857, "number": 1, "label": "classical"} +{"file_name": "train_08712.png", "caption": "A string ensemble is playing a sad melody together with a female choir singing. The recording is full of reverb and sounds very atmospheric and epic. This song may be playing in a sad movie-scene.", "data_idx": 4857, "number": 2, "label": "classical"} +{"file_name": "train_08713.png", "caption": "A string ensemble is playing a sad melody together with a female choir singing. The recording is full of reverb and sounds very atmospheric and epic. This song may be playing in a sad movie-scene.", "data_idx": 4857, "number": 3, "label": "classical"} +{"file_name": "train_08714.png", "caption": "The music excerpt features a piano playing a repeating melody in the background. Finger snaps can be heard playing the same rhythm that the piano does. In the background a noise similar to a vacuum cleaner can be heard. It sounds as if this whole thing was recorded with a phone or by an amateur.", "data_idx": 4859, "number": 0, "label": "rock"} +{"file_name": "train_08715.png", "caption": "The music excerpt features a piano playing a repeating melody in the background. Finger snaps can be heard playing the same rhythm that the piano does. In the background a noise similar to a vacuum cleaner can be heard. It sounds as if this whole thing was recorded with a phone or by an amateur.", "data_idx": 4859, "number": 1, "label": "rock"} +{"file_name": "train_08716.png", "caption": "The music excerpt features a piano playing a repeating melody in the background. Finger snaps can be heard playing the same rhythm that the piano does. In the background a noise similar to a vacuum cleaner can be heard. It sounds as if this whole thing was recorded with a phone or by an amateur.", "data_idx": 4859, "number": 2, "label": "rock"} +{"file_name": "train_08717.png", "caption": "The music excerpt features a piano playing a repeating melody in the background. Finger snaps can be heard playing the same rhythm that the piano does. In the background a noise similar to a vacuum cleaner can be heard. It sounds as if this whole thing was recorded with a phone or by an amateur.", "data_idx": 4859, "number": 3, "label": "rock"} +{"file_name": "train_08718.png", "caption": "The low quality recording features a club house song that consists of groovy 808 bass, crispy claps, shimmering muffled shakers and high pitched harmonizing male vocals singing over it. The recording is thin and it sounds groovy, fun and happy.", "data_idx": 4860, "number": 0, "label": "hiphop"} +{"file_name": "train_08719.png", "caption": "The low quality recording features a club house song that consists of groovy 808 bass, crispy claps, shimmering muffled shakers and high pitched harmonizing male vocals singing over it. The recording is thin and it sounds groovy, fun and happy.", "data_idx": 4860, "number": 1, "label": "hiphop"} +{"file_name": "train_08720.png", "caption": "The low quality recording features a club house song that consists of groovy 808 bass, crispy claps, shimmering muffled shakers and high pitched harmonizing male vocals singing over it. The recording is thin and it sounds groovy, fun and happy.", "data_idx": 4860, "number": 2, "label": "hiphop"} +{"file_name": "train_08721.png", "caption": "The low quality recording features a club house song that consists of groovy 808 bass, crispy claps, shimmering muffled shakers and high pitched harmonizing male vocals singing over it. The recording is thin and it sounds groovy, fun and happy.", "data_idx": 4860, "number": 3, "label": "hiphop"} +{"file_name": "train_08722.png", "caption": "An e-bass is playing a bluesy bassline along with acoustic drums with a slightly open hihat. An electric piano/organ is playing one short chord as a rhythmic element adding reggae vibes along with a e-guitar strumming fast chords on the offbeat. The guitar is running through a chorus effect. The male voices are singing a simple melody. This song may be playing at a live concert before a sports-event.", "data_idx": 4863, "number": 0, "label": "metal"} +{"file_name": "train_08723.png", "caption": "An e-bass is playing a bluesy bassline along with acoustic drums with a slightly open hihat. An electric piano/organ is playing one short chord as a rhythmic element adding reggae vibes along with a e-guitar strumming fast chords on the offbeat. The guitar is running through a chorus effect. The male voices are singing a simple melody. This song may be playing at a live concert before a sports-event.", "data_idx": 4863, "number": 1, "label": "metal"} +{"file_name": "train_08724.png", "caption": "An e-bass is playing a bluesy bassline along with acoustic drums with a slightly open hihat. An electric piano/organ is playing one short chord as a rhythmic element adding reggae vibes along with a e-guitar strumming fast chords on the offbeat. The guitar is running through a chorus effect. The male voices are singing a simple melody. This song may be playing at a live concert before a sports-event.", "data_idx": 4863, "number": 2, "label": "metal"} +{"file_name": "train_08725.png", "caption": "An e-bass is playing a bluesy bassline along with acoustic drums with a slightly open hihat. An electric piano/organ is playing one short chord as a rhythmic element adding reggae vibes along with a e-guitar strumming fast chords on the offbeat. The guitar is running through a chorus effect. The male voices are singing a simple melody. This song may be playing at a live concert before a sports-event.", "data_idx": 4863, "number": 3, "label": "metal"} +{"file_name": "train_08726.png", "caption": "A male vocalist sings this catchy pop song. The tempo is medium fast with funky drumming, spirited acoustic guitar accompaniment, rhythmic clapping, steady bass line and keyboard harmony. The song is melodic, perky, peppy, youthful, playful, enthusiastic and fun. This is Indie Pop/Indie Rock.", "data_idx": 4867, "number": 0, "label": "blues"} +{"file_name": "train_08727.png", "caption": "A male vocalist sings this catchy pop song. The tempo is medium fast with funky drumming, spirited acoustic guitar accompaniment, rhythmic clapping, steady bass line and keyboard harmony. The song is melodic, perky, peppy, youthful, playful, enthusiastic and fun. This is Indie Pop/Indie Rock.", "data_idx": 4867, "number": 1, "label": "blues"} +{"file_name": "train_08728.png", "caption": "A male vocalist sings this catchy pop song. The tempo is medium fast with funky drumming, spirited acoustic guitar accompaniment, rhythmic clapping, steady bass line and keyboard harmony. The song is melodic, perky, peppy, youthful, playful, enthusiastic and fun. This is Indie Pop/Indie Rock.", "data_idx": 4867, "number": 2, "label": "blues"} +{"file_name": "train_08729.png", "caption": "A male vocalist sings this catchy pop song. The tempo is medium fast with funky drumming, spirited acoustic guitar accompaniment, rhythmic clapping, steady bass line and keyboard harmony. The song is melodic, perky, peppy, youthful, playful, enthusiastic and fun. This is Indie Pop/Indie Rock.", "data_idx": 4867, "number": 3, "label": "blues"} +{"file_name": "train_08730.png", "caption": "The low quality recording features a shimmering bell melody that sounds haunting. There is a metallic impact. The recording sounds very noisy as it was probably recorded with a bad quality microphone.", "data_idx": 4868, "number": 0, "label": "hiphop"} +{"file_name": "train_08731.png", "caption": "The low quality recording features a shimmering bell melody that sounds haunting. There is a metallic impact. The recording sounds very noisy as it was probably recorded with a bad quality microphone.", "data_idx": 4868, "number": 1, "label": "hiphop"} +{"file_name": "train_08732.png", "caption": "This clip features low quality audio. A synth plays the main melody. The bass plays the root notes of the chords. This is accompanied by programmed percussion playing a simple beat. A constant beep is heard in the foreground, which doubles in tempo at the end of the clip. The instruments cannot be heard clearly due to the beeping sound over the instruments.", "data_idx": 4869, "number": 0, "label": "disco"} +{"file_name": "train_08733.png", "caption": "This clip features low quality audio. A synth plays the main melody. The bass plays the root notes of the chords. This is accompanied by programmed percussion playing a simple beat. A constant beep is heard in the foreground, which doubles in tempo at the end of the clip. The instruments cannot be heard clearly due to the beeping sound over the instruments.", "data_idx": 4869, "number": 1, "label": "disco"} +{"file_name": "train_08734.png", "caption": "This clip features low quality audio. A synth plays the main melody. The bass plays the root notes of the chords. This is accompanied by programmed percussion playing a simple beat. A constant beep is heard in the foreground, which doubles in tempo at the end of the clip. The instruments cannot be heard clearly due to the beeping sound over the instruments.", "data_idx": 4869, "number": 2, "label": "disco"} +{"file_name": "train_08735.png", "caption": "This clip features low quality audio. A synth plays the main melody. The bass plays the root notes of the chords. This is accompanied by programmed percussion playing a simple beat. A constant beep is heard in the foreground, which doubles in tempo at the end of the clip. The instruments cannot be heard clearly due to the beeping sound over the instruments.", "data_idx": 4869, "number": 3, "label": "disco"} +{"file_name": "train_08736.png", "caption": "The jingle features a dolphin and deep water sound effects, followed by fading out strings and tinny shimmering bells. At the very end of the loop, there is a snippet of acoustic rhythm guitar and kick hits. The Sound effects are moving left-right throughout the stereo image. It sounds like something to use as an intro.", "data_idx": 4870, "number": 0, "label": "hiphop"} +{"file_name": "train_08737.png", "caption": "The jingle features a dolphin and deep water sound effects, followed by fading out strings and tinny shimmering bells. At the very end of the loop, there is a snippet of acoustic rhythm guitar and kick hits. The Sound effects are moving left-right throughout the stereo image. It sounds like something to use as an intro.", "data_idx": 4870, "number": 1, "label": "hiphop"} +{"file_name": "train_08738.png", "caption": "The jingle features a dolphin and deep water sound effects, followed by fading out strings and tinny shimmering bells. At the very end of the loop, there is a snippet of acoustic rhythm guitar and kick hits. The Sound effects are moving left-right throughout the stereo image. It sounds like something to use as an intro.", "data_idx": 4870, "number": 2, "label": "hiphop"} +{"file_name": "train_08739.png", "caption": "The jingle features a dolphin and deep water sound effects, followed by fading out strings and tinny shimmering bells. At the very end of the loop, there is a snippet of acoustic rhythm guitar and kick hits. The Sound effects are moving left-right throughout the stereo image. It sounds like something to use as an intro.", "data_idx": 4870, "number": 3, "label": "hiphop"} +{"file_name": "train_08740.png", "caption": "This is a loud heavy metal piece that is played as a soundtrack for a video game with sound effects of fire and a dinosaur roaring in the beginning. There is a distorted electric guitar playing a simple tune while loud acoustic drums provide a heavy metal beat as the rhythmic background. The theme has a very violent feel to it.", "data_idx": 4873, "number": 0, "label": "metal"} +{"file_name": "train_08741.png", "caption": "This is a loud heavy metal piece that is played as a soundtrack for a video game with sound effects of fire and a dinosaur roaring in the beginning. There is a distorted electric guitar playing a simple tune while loud acoustic drums provide a heavy metal beat as the rhythmic background. The theme has a very violent feel to it.", "data_idx": 4873, "number": 1, "label": "metal"} +{"file_name": "train_08742.png", "caption": "This is a loud heavy metal piece that is played as a soundtrack for a video game with sound effects of fire and a dinosaur roaring in the beginning. There is a distorted electric guitar playing a simple tune while loud acoustic drums provide a heavy metal beat as the rhythmic background. The theme has a very violent feel to it.", "data_idx": 4873, "number": 2, "label": "metal"} +{"file_name": "train_08743.png", "caption": "This is a loud heavy metal piece that is played as a soundtrack for a video game with sound effects of fire and a dinosaur roaring in the beginning. There is a distorted electric guitar playing a simple tune while loud acoustic drums provide a heavy metal beat as the rhythmic background. The theme has a very violent feel to it.", "data_idx": 4873, "number": 3, "label": "metal"} +{"file_name": "train_08744.png", "caption": "This song is an instrumental. The tempo is medium fast with enthusiastic drumming, congas and canon rhythm,electronic guitar harmony, keyboard accompaniment and a wind instrument playing a melodious harmony. There is the sound of chattering in the background. The audio is of inferior quality and muddled. The song is energetic, spirited and melodic with a catchy dance groove.", "data_idx": 4877, "number": 0, "label": "hiphop"} +{"file_name": "train_08745.png", "caption": "This song is an instrumental. The tempo is medium fast with enthusiastic drumming, congas and canon rhythm,electronic guitar harmony, keyboard accompaniment and a wind instrument playing a melodious harmony. There is the sound of chattering in the background. The audio is of inferior quality and muddled. The song is energetic, spirited and melodic with a catchy dance groove.", "data_idx": 4877, "number": 1, "label": "hiphop"} +{"file_name": "train_08746.png", "caption": "This song is an instrumental. The tempo is medium fast with enthusiastic drumming, congas and canon rhythm,electronic guitar harmony, keyboard accompaniment and a wind instrument playing a melodious harmony. There is the sound of chattering in the background. The audio is of inferior quality and muddled. The song is energetic, spirited and melodic with a catchy dance groove.", "data_idx": 4877, "number": 2, "label": "hiphop"} +{"file_name": "train_08747.png", "caption": "This song is an instrumental. The tempo is medium fast with enthusiastic drumming, congas and canon rhythm,electronic guitar harmony, keyboard accompaniment and a wind instrument playing a melodious harmony. There is the sound of chattering in the background. The audio is of inferior quality and muddled. The song is energetic, spirited and melodic with a catchy dance groove.", "data_idx": 4877, "number": 3, "label": "hiphop"} +{"file_name": "train_08748.png", "caption": "The Corporate instrumental contains wide plucked strings, simple bells, punchy, roomy kick hits and soft rimshots. At the very end of the video there is a shimmering tambourine. Judging by the silence at the end, it could be said that this is an outro of the jingle. It sounds happy, fun and uplifting, like any corporate sound should sound like.", "data_idx": 4878, "number": 0, "label": "hiphop"} +{"file_name": "train_08749.png", "caption": "The Corporate instrumental contains wide plucked strings, simple bells, punchy, roomy kick hits and soft rimshots. At the very end of the video there is a shimmering tambourine. Judging by the silence at the end, it could be said that this is an outro of the jingle. It sounds happy, fun and uplifting, like any corporate sound should sound like.", "data_idx": 4878, "number": 1, "label": "hiphop"} +{"file_name": "train_08750.png", "caption": "The Corporate instrumental contains wide plucked strings, simple bells, punchy, roomy kick hits and soft rimshots. At the very end of the video there is a shimmering tambourine. Judging by the silence at the end, it could be said that this is an outro of the jingle. It sounds happy, fun and uplifting, like any corporate sound should sound like.", "data_idx": 4878, "number": 2, "label": "hiphop"} +{"file_name": "train_08751.png", "caption": "The Corporate instrumental contains wide plucked strings, simple bells, punchy, roomy kick hits and soft rimshots. At the very end of the video there is a shimmering tambourine. Judging by the silence at the end, it could be said that this is an outro of the jingle. It sounds happy, fun and uplifting, like any corporate sound should sound like.", "data_idx": 4878, "number": 3, "label": "hiphop"} +{"file_name": "train_08752.png", "caption": "This recording contains two songs. Both of them have a digital drum playing along with a sub bass and a wide synthesizer lead melody. On one a male voice is singing in a higher register. on the other a female voice is singing with female backing voices. These songs may be playing in a club.", "data_idx": 4879, "number": 0, "label": "hiphop"} +{"file_name": "train_08753.png", "caption": "This recording contains two songs. Both of them have a digital drum playing along with a sub bass and a wide synthesizer lead melody. On one a male voice is singing in a higher register. on the other a female voice is singing with female backing voices. These songs may be playing in a club.", "data_idx": 4879, "number": 1, "label": "hiphop"} +{"file_name": "train_08754.png", "caption": "This recording contains two songs. Both of them have a digital drum playing along with a sub bass and a wide synthesizer lead melody. On one a male voice is singing in a higher register. on the other a female voice is singing with female backing voices. These songs may be playing in a club.", "data_idx": 4879, "number": 2, "label": "hiphop"} +{"file_name": "train_08755.png", "caption": "This recording contains two songs. Both of them have a digital drum playing along with a sub bass and a wide synthesizer lead melody. On one a male voice is singing in a higher register. on the other a female voice is singing with female backing voices. These songs may be playing in a club.", "data_idx": 4879, "number": 3, "label": "hiphop"} +{"file_name": "train_08756.png", "caption": "The low quality recording features an alarm beeping sound effect, after which the hip hop song starts playing and it has a stuttering DJ scratching sound effect. The recording is noisy and in mono.", "data_idx": 4881, "number": 0, "label": "hiphop"} +{"file_name": "train_08757.png", "caption": "The low quality recording features an alarm beeping sound effect, after which the hip hop song starts playing and it has a stuttering DJ scratching sound effect. The recording is noisy and in mono.", "data_idx": 4881, "number": 1, "label": "hiphop"} +{"file_name": "train_08758.png", "caption": "The low quality recording features an ambient classical song that consists of sustained strings, chords, slow arpeggiated guitar melody and smooth bass. It sounds sad, melancholic and emotional.", "data_idx": 4883, "number": 0, "label": "classical"} +{"file_name": "train_08759.png", "caption": "The low quality recording features an ambient classical song that consists of sustained strings, chords, slow arpeggiated guitar melody and smooth bass. It sounds sad, melancholic and emotional.", "data_idx": 4883, "number": 1, "label": "classical"} +{"file_name": "train_08760.png", "caption": "The low quality recording features an ambient classical song that consists of sustained strings, chords, slow arpeggiated guitar melody and smooth bass. It sounds sad, melancholic and emotional.", "data_idx": 4883, "number": 2, "label": "classical"} +{"file_name": "train_08761.png", "caption": "The low quality recording features an ambient classical song that consists of sustained strings, chords, slow arpeggiated guitar melody and smooth bass. It sounds sad, melancholic and emotional.", "data_idx": 4883, "number": 3, "label": "classical"} +{"file_name": "train_08762.png", "caption": "This is a clip of a piece on the timpani orchestral percussion instruments. The drummer repeats the same motif twice. The sound of the drums is regal and grand.", "data_idx": 4886, "number": 0, "label": "classical"} +{"file_name": "train_08763.png", "caption": "This is a clip of a piece on the timpani orchestral percussion instruments. The drummer repeats the same motif twice. The sound of the drums is regal and grand.", "data_idx": 4886, "number": 1, "label": "classical"} +{"file_name": "train_08764.png", "caption": "This is a clip of a piece on the timpani orchestral percussion instruments. The drummer repeats the same motif twice. The sound of the drums is regal and grand.", "data_idx": 4886, "number": 2, "label": "classical"} +{"file_name": "train_08765.png", "caption": "This is a clip of a piece on the timpani orchestral percussion instruments. The drummer repeats the same motif twice. The sound of the drums is regal and grand.", "data_idx": 4886, "number": 3, "label": "classical"} +{"file_name": "train_08766.png", "caption": "This song starts with a lot of high pitched noise that is arpeggiated. Then a male voice starts singing in the mid-range along to a synth bass, pad and pluck sounds. This song may be playing recorded music at home.", "data_idx": 4888, "number": 0, "label": "hiphop"} +{"file_name": "train_08767.png", "caption": "This song starts with a lot of high pitched noise that is arpeggiated. Then a male voice starts singing in the mid-range along to a synth bass, pad and pluck sounds. This song may be playing recorded music at home.", "data_idx": 4888, "number": 1, "label": "hiphop"} +{"file_name": "train_08768.png", "caption": "The low quality recording features a muffled female soft vocal singing over sustained strings melody and arpeggiated acoustic guitar melody. It sounds mellow, soft and sad - even though the quality is bad.", "data_idx": 4889, "number": 0, "label": "classical"} +{"file_name": "train_08769.png", "caption": "The low quality recording features a muffled female soft vocal singing over sustained strings melody and arpeggiated acoustic guitar melody. It sounds mellow, soft and sad - even though the quality is bad.", "data_idx": 4889, "number": 1, "label": "classical"} +{"file_name": "train_08770.png", "caption": "The low quality recording features a muffled female soft vocal singing over sustained strings melody and arpeggiated acoustic guitar melody. It sounds mellow, soft and sad - even though the quality is bad.", "data_idx": 4889, "number": 2, "label": "classical"} +{"file_name": "train_08771.png", "caption": "The low quality recording features a muffled female soft vocal singing over sustained strings melody and arpeggiated acoustic guitar melody. It sounds mellow, soft and sad - even though the quality is bad.", "data_idx": 4889, "number": 3, "label": "classical"} +{"file_name": "train_08772.png", "caption": "This music is a pleasant instrumental. The music is slow tempo with a soft cello and guitar duet with a whistle melody. The song is mellow, soothing, calming , dulcet, warm and relaxing in contrast to the background noises of people talking and walking. The musicians are buskers.", "data_idx": 4890, "number": 0, "label": "reggae"} +{"file_name": "train_08773.png", "caption": "This music is a pleasant instrumental. The music is slow tempo with a soft cello and guitar duet with a whistle melody. The song is mellow, soothing, calming , dulcet, warm and relaxing in contrast to the background noises of people talking and walking. The musicians are buskers.", "data_idx": 4890, "number": 1, "label": "reggae"} +{"file_name": "train_08774.png", "caption": "This music is a pleasant instrumental. The music is slow tempo with a soft cello and guitar duet with a whistle melody. The song is mellow, soothing, calming , dulcet, warm and relaxing in contrast to the background noises of people talking and walking. The musicians are buskers.", "data_idx": 4890, "number": 2, "label": "reggae"} +{"file_name": "train_08775.png", "caption": "This music is a pleasant instrumental. The music is slow tempo with a soft cello and guitar duet with a whistle melody. The song is mellow, soothing, calming , dulcet, warm and relaxing in contrast to the background noises of people talking and walking. The musicians are buskers.", "data_idx": 4890, "number": 3, "label": "reggae"} +{"file_name": "train_08776.png", "caption": "This is an intricate country guitar performance. The guitarist plays slide guitar. The playing is complex. There is a tambourine as a percussive element on every beat. It's a live recording.", "data_idx": 4891, "number": 0, "label": "disco"} +{"file_name": "train_08777.png", "caption": "This is an intricate country guitar performance. The guitarist plays slide guitar. The playing is complex. There is a tambourine as a percussive element on every beat. It's a live recording.", "data_idx": 4891, "number": 1, "label": "disco"} +{"file_name": "train_08778.png", "caption": "This is an intricate country guitar performance. The guitarist plays slide guitar. The playing is complex. There is a tambourine as a percussive element on every beat. It's a live recording.", "data_idx": 4891, "number": 2, "label": "disco"} +{"file_name": "train_08779.png", "caption": "This is an intricate country guitar performance. The guitarist plays slide guitar. The playing is complex. There is a tambourine as a percussive element on every beat. It's a live recording.", "data_idx": 4891, "number": 3, "label": "disco"} +{"file_name": "train_08780.png", "caption": "The song is an instrumental. The song is medium tempo with an overdriven guitar playing a jarring lead in rhythmic fashion and guitar over tones that sound like bell tones. The song is aggressive and experimental. The song is a modern rock intro.", "data_idx": 4892, "number": 0, "label": "blues"} +{"file_name": "train_08781.png", "caption": "The song is an instrumental. The song is medium tempo with an overdriven guitar playing a jarring lead in rhythmic fashion and guitar over tones that sound like bell tones. The song is aggressive and experimental. The song is a modern rock intro.", "data_idx": 4892, "number": 1, "label": "blues"} +{"file_name": "train_08782.png", "caption": "The song is an instrumental. The song is medium tempo with an overdriven guitar playing a jarring lead in rhythmic fashion and guitar over tones that sound like bell tones. The song is aggressive and experimental. The song is a modern rock intro.", "data_idx": 4892, "number": 2, "label": "blues"} +{"file_name": "train_08783.png", "caption": "The song is an instrumental. The song is medium tempo with an overdriven guitar playing a jarring lead in rhythmic fashion and guitar over tones that sound like bell tones. The song is aggressive and experimental. The song is a modern rock intro.", "data_idx": 4892, "number": 3, "label": "blues"} +{"file_name": "train_08784.png", "caption": "This is an instrumental lounge music piece. There is a vague melody with reverberations of an ambient synth and occasional chord strumming from an electric guitar. The electronic drum hits are spread out at a low tempo. The general feeling of this song is chill yet also trippy at the same time. This piece could be used in a technological device release video. It could also be used in scenery shots in a movie or a TV show.", "data_idx": 4893, "number": 0, "label": "hiphop"} +{"file_name": "train_08785.png", "caption": "This is an instrumental lounge music piece. There is a vague melody with reverberations of an ambient synth and occasional chord strumming from an electric guitar. The electronic drum hits are spread out at a low tempo. The general feeling of this song is chill yet also trippy at the same time. This piece could be used in a technological device release video. It could also be used in scenery shots in a movie or a TV show.", "data_idx": 4893, "number": 1, "label": "hiphop"} +{"file_name": "train_08786.png", "caption": "This is an instrumental lounge music piece. There is a vague melody with reverberations of an ambient synth and occasional chord strumming from an electric guitar. The electronic drum hits are spread out at a low tempo. The general feeling of this song is chill yet also trippy at the same time. This piece could be used in a technological device release video. It could also be used in scenery shots in a movie or a TV show.", "data_idx": 4893, "number": 2, "label": "hiphop"} +{"file_name": "train_08787.png", "caption": "This is an instrumental lounge music piece. There is a vague melody with reverberations of an ambient synth and occasional chord strumming from an electric guitar. The electronic drum hits are spread out at a low tempo. The general feeling of this song is chill yet also trippy at the same time. This piece could be used in a technological device release video. It could also be used in scenery shots in a movie or a TV show.", "data_idx": 4893, "number": 3, "label": "hiphop"} +{"file_name": "train_08788.png", "caption": "The low quality recording features a soft rock song sung by passionate male vocals followed by muffled acoustic rhythm guitar. It sounds emotional and like it was recorded with a phone.", "data_idx": 4894, "number": 0, "label": "rock"} +{"file_name": "train_08789.png", "caption": "The low quality recording features a soft rock song sung by passionate male vocals followed by muffled acoustic rhythm guitar. It sounds emotional and like it was recorded with a phone.", "data_idx": 4894, "number": 1, "label": "rock"} +{"file_name": "train_08790.png", "caption": "The low quality recording features a soft rock song sung by passionate male vocals followed by muffled acoustic rhythm guitar. It sounds emotional and like it was recorded with a phone.", "data_idx": 4894, "number": 2, "label": "rock"} +{"file_name": "train_08791.png", "caption": "The low quality recording features a soft rock song sung by passionate male vocals followed by muffled acoustic rhythm guitar. It sounds emotional and like it was recorded with a phone.", "data_idx": 4894, "number": 3, "label": "rock"} +{"file_name": "train_08792.png", "caption": "The low quality recording features an uptempo song, that consists of groovy bass and punchy kick and snare hits, being aggressively scratched by a DJ. It is very reverberant, as the sound diffuses and reflects in the space that the DJ is playing.", "data_idx": 4895, "number": 0, "label": "disco"} +{"file_name": "train_08793.png", "caption": "The low quality recording features an uptempo song, that consists of groovy bass and punchy kick and snare hits, being aggressively scratched by a DJ. It is very reverberant, as the sound diffuses and reflects in the space that the DJ is playing.", "data_idx": 4895, "number": 1, "label": "disco"} +{"file_name": "train_08794.png", "caption": "The low quality recording features an uptempo song, that consists of groovy bass and punchy kick and snare hits, being aggressively scratched by a DJ. It is very reverberant, as the sound diffuses and reflects in the space that the DJ is playing.", "data_idx": 4895, "number": 2, "label": "disco"} +{"file_name": "train_08795.png", "caption": "The low quality recording features an uptempo song, that consists of groovy bass and punchy kick and snare hits, being aggressively scratched by a DJ. It is very reverberant, as the sound diffuses and reflects in the space that the DJ is playing.", "data_idx": 4895, "number": 3, "label": "disco"} +{"file_name": "train_08796.png", "caption": "This is an alternative rock music piece. There is a male vocalist singing melodically. The electric guitar is playing a simple and catchy tune while the bass guitar plays a groovy bass line in the background. The rhythm is provided by an acoustic drum beat. This piece could be used in the soundtrack of a teenage drama or a high school TV series.", "data_idx": 4897, "number": 0, "label": "metal"} +{"file_name": "train_08797.png", "caption": "This is an alternative rock music piece. There is a male vocalist singing melodically. The electric guitar is playing a simple and catchy tune while the bass guitar plays a groovy bass line in the background. The rhythm is provided by an acoustic drum beat. This piece could be used in the soundtrack of a teenage drama or a high school TV series.", "data_idx": 4897, "number": 1, "label": "metal"} +{"file_name": "train_08798.png", "caption": "This is an alternative rock music piece. There is a male vocalist singing melodically. The electric guitar is playing a simple and catchy tune while the bass guitar plays a groovy bass line in the background. The rhythm is provided by an acoustic drum beat. This piece could be used in the soundtrack of a teenage drama or a high school TV series.", "data_idx": 4897, "number": 2, "label": "metal"} +{"file_name": "train_08799.png", "caption": "This is an alternative rock music piece. There is a male vocalist singing melodically. The electric guitar is playing a simple and catchy tune while the bass guitar plays a groovy bass line in the background. The rhythm is provided by an acoustic drum beat. This piece could be used in the soundtrack of a teenage drama or a high school TV series.", "data_idx": 4897, "number": 3, "label": "metal"} +{"file_name": "train_08800.png", "caption": "The Hip Hop song features a flat male vocal rapping over reverberant snaps, reverberant addictive plucked synth melody, smooth sub bass, punchy kick, low toms roll and a riser. It sounds smooth, groovy and easygoing - like something you would listen to in a car.", "data_idx": 4898, "number": 0, "label": "hiphop"} +{"file_name": "train_08801.png", "caption": "The Hip Hop song features a flat male vocal rapping over reverberant snaps, reverberant addictive plucked synth melody, smooth sub bass, punchy kick, low toms roll and a riser. It sounds smooth, groovy and easygoing - like something you would listen to in a car.", "data_idx": 4898, "number": 1, "label": "hiphop"} +{"file_name": "train_08802.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over a wide electric guitar melody, groovy keys chords, located in the right channel of the stereo image, smooth bass guitar, shimmering open hats and hi hats and punchy kick and snare hits. It sounds groovy, funky and easygoing - like something you could lightly dance to.", "data_idx": 4899, "number": 0, "label": "country"} +{"file_name": "train_08803.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over a wide electric guitar melody, groovy keys chords, located in the right channel of the stereo image, smooth bass guitar, shimmering open hats and hi hats and punchy kick and snare hits. It sounds groovy, funky and easygoing - like something you could lightly dance to.", "data_idx": 4899, "number": 1, "label": "country"} +{"file_name": "train_08804.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over a wide electric guitar melody, groovy keys chords, located in the right channel of the stereo image, smooth bass guitar, shimmering open hats and hi hats and punchy kick and snare hits. It sounds groovy, funky and easygoing - like something you could lightly dance to.", "data_idx": 4899, "number": 2, "label": "country"} +{"file_name": "train_08805.png", "caption": "The low quality recording features a live performance of a rock song that consists of flat male vocal singing over a wide electric guitar melody, groovy keys chords, located in the right channel of the stereo image, smooth bass guitar, shimmering open hats and hi hats and punchy kick and snare hits. It sounds groovy, funky and easygoing - like something you could lightly dance to.", "data_idx": 4899, "number": 3, "label": "country"} +{"file_name": "train_08806.png", "caption": "The low quality recording features a live performance of a regional Mexican song that consists of reverberant, high register, passionate male vocal singing over acoustic rhythm guitar and widely spread, groovy claps. It sounds passionate, traditional and emotional. Judging by the reverb, it was probably played in some huge concert hall.", "data_idx": 4904, "number": 0, "label": "disco"} +{"file_name": "train_08807.png", "caption": "The low quality recording features a live performance of a regional Mexican song that consists of reverberant, high register, passionate male vocal singing over acoustic rhythm guitar and widely spread, groovy claps. It sounds passionate, traditional and emotional. Judging by the reverb, it was probably played in some huge concert hall.", "data_idx": 4904, "number": 1, "label": "disco"} +{"file_name": "train_08808.png", "caption": "The low quality recording features a live performance of a regional Mexican song that consists of reverberant, high register, passionate male vocal singing over acoustic rhythm guitar and widely spread, groovy claps. It sounds passionate, traditional and emotional. Judging by the reverb, it was probably played in some huge concert hall.", "data_idx": 4904, "number": 2, "label": "disco"} +{"file_name": "train_08809.png", "caption": "The low quality recording features a live performance of a regional Mexican song that consists of reverberant, high register, passionate male vocal singing over acoustic rhythm guitar and widely spread, groovy claps. It sounds passionate, traditional and emotional. Judging by the reverb, it was probably played in some huge concert hall.", "data_idx": 4904, "number": 3, "label": "disco"} +{"file_name": "train_08810.png", "caption": "This is an energetic rock music piece with a female vocalist singing in the Spanish language. The repeated theme is played by a strong electric bass guitar. There is a loud and simple rock drum beat in the background. A distorted electric guitar can also be heard holding a sustained note. All these components result in a rebellious atmosphere. This song could be used in rock bars.", "data_idx": 4905, "number": 0, "label": "metal"} +{"file_name": "train_08811.png", "caption": "This is an energetic rock music piece with a female vocalist singing in the Spanish language. The repeated theme is played by a strong electric bass guitar. There is a loud and simple rock drum beat in the background. A distorted electric guitar can also be heard holding a sustained note. All these components result in a rebellious atmosphere. This song could be used in rock bars.", "data_idx": 4905, "number": 1, "label": "metal"} +{"file_name": "train_08812.png", "caption": "This is an energetic rock music piece with a female vocalist singing in the Spanish language. The repeated theme is played by a strong electric bass guitar. There is a loud and simple rock drum beat in the background. A distorted electric guitar can also be heard holding a sustained note. All these components result in a rebellious atmosphere. This song could be used in rock bars.", "data_idx": 4905, "number": 2, "label": "metal"} +{"file_name": "train_08813.png", "caption": "This is an energetic rock music piece with a female vocalist singing in the Spanish language. The repeated theme is played by a strong electric bass guitar. There is a loud and simple rock drum beat in the background. A distorted electric guitar can also be heard holding a sustained note. All these components result in a rebellious atmosphere. This song could be used in rock bars.", "data_idx": 4905, "number": 3, "label": "metal"} +{"file_name": "train_08814.png", "caption": "This low quality recording begins with an organ chord and an animal grunting sound at a mid range pitch. This is followed by the sound of a machine gun and the sound of an animal grunting again. There are no other musical instruments in this clip.", "data_idx": 4906, "number": 0, "label": "hiphop"} +{"file_name": "train_08815.png", "caption": "This low quality recording begins with an organ chord and an animal grunting sound at a mid range pitch. This is followed by the sound of a machine gun and the sound of an animal grunting again. There are no other musical instruments in this clip.", "data_idx": 4906, "number": 1, "label": "hiphop"} +{"file_name": "train_08816.png", "caption": "This low quality recording begins with an organ chord and an animal grunting sound at a mid range pitch. This is followed by the sound of a machine gun and the sound of an animal grunting again. There are no other musical instruments in this clip.", "data_idx": 4906, "number": 2, "label": "hiphop"} +{"file_name": "train_08817.png", "caption": "This low quality recording begins with an organ chord and an animal grunting sound at a mid range pitch. This is followed by the sound of a machine gun and the sound of an animal grunting again. There are no other musical instruments in this clip.", "data_idx": 4906, "number": 3, "label": "hiphop"} +{"file_name": "train_08818.png", "caption": "This song contains a lot of digital orchestra instruments. Celli is playing a short bowed stroke chord providing rhythm along with other cello sounds being picked in the mid range. A flute is playing a melody on top. Other string instruments are playing a plucked arpeggio melody. While timpani and cymbals are adding hits. The instruments are spread across both sides of the speakers. This song may be playing in an arcade/adventure video game.", "data_idx": 4907, "number": 0, "label": "reggae"} +{"file_name": "train_08819.png", "caption": "This song contains a lot of digital orchestra instruments. Celli is playing a short bowed stroke chord providing rhythm along with other cello sounds being picked in the mid range. A flute is playing a melody on top. Other string instruments are playing a plucked arpeggio melody. While timpani and cymbals are adding hits. The instruments are spread across both sides of the speakers. This song may be playing in an arcade/adventure video game.", "data_idx": 4907, "number": 1, "label": "reggae"} +{"file_name": "train_08820.png", "caption": "This song contains a lot of digital orchestra instruments. Celli is playing a short bowed stroke chord providing rhythm along with other cello sounds being picked in the mid range. A flute is playing a melody on top. Other string instruments are playing a plucked arpeggio melody. While timpani and cymbals are adding hits. The instruments are spread across both sides of the speakers. This song may be playing in an arcade/adventure video game.", "data_idx": 4907, "number": 2, "label": "reggae"} +{"file_name": "train_08821.png", "caption": "This song contains a lot of digital orchestra instruments. Celli is playing a short bowed stroke chord providing rhythm along with other cello sounds being picked in the mid range. A flute is playing a melody on top. Other string instruments are playing a plucked arpeggio melody. While timpani and cymbals are adding hits. The instruments are spread across both sides of the speakers. This song may be playing in an arcade/adventure video game.", "data_idx": 4907, "number": 3, "label": "reggae"} +{"file_name": "train_08822.png", "caption": "This reggae song features a male voice singing the main melody. Another voice is singing in harmony with the main voice. This is accompanied by reggae percussion. A timbale is played on every third count. Jam blocks are also played in the background. The bass plays a funky bassline with a reggae feel. Synth sounds are played in the background. This song can be played in a bar.", "data_idx": 4910, "number": 0, "label": "pop"} +{"file_name": "train_08823.png", "caption": "This reggae song features a male voice singing the main melody. Another voice is singing in harmony with the main voice. This is accompanied by reggae percussion. A timbale is played on every third count. Jam blocks are also played in the background. The bass plays a funky bassline with a reggae feel. Synth sounds are played in the background. This song can be played in a bar.", "data_idx": 4910, "number": 1, "label": "pop"} +{"file_name": "train_08824.png", "caption": "This reggae song features a male voice singing the main melody. Another voice is singing in harmony with the main voice. This is accompanied by reggae percussion. A timbale is played on every third count. Jam blocks are also played in the background. The bass plays a funky bassline with a reggae feel. Synth sounds are played in the background. This song can be played in a bar.", "data_idx": 4910, "number": 2, "label": "pop"} +{"file_name": "train_08825.png", "caption": "This reggae song features a male voice singing the main melody. Another voice is singing in harmony with the main voice. This is accompanied by reggae percussion. A timbale is played on every third count. Jam blocks are also played in the background. The bass plays a funky bassline with a reggae feel. Synth sounds are played in the background. This song can be played in a bar.", "data_idx": 4910, "number": 3, "label": "pop"} +{"file_name": "train_08826.png", "caption": "This is a gear showcase jam. The only instrument that is being played is a clean sounding electric guitar playing a mellow solo. A delay effect pedal is applied on the guitar. The atmosphere is calm and dreamy. This piece could be used in an advertisement jingle. It could also be playing in the background at a rock bar.", "data_idx": 4914, "number": 0, "label": "blues"} +{"file_name": "train_08827.png", "caption": "This is a gear showcase jam. The only instrument that is being played is a clean sounding electric guitar playing a mellow solo. A delay effect pedal is applied on the guitar. The atmosphere is calm and dreamy. This piece could be used in an advertisement jingle. It could also be playing in the background at a rock bar.", "data_idx": 4914, "number": 1, "label": "blues"} +{"file_name": "train_08828.png", "caption": "This is a gear showcase jam. The only instrument that is being played is a clean sounding electric guitar playing a mellow solo. A delay effect pedal is applied on the guitar. The atmosphere is calm and dreamy. This piece could be used in an advertisement jingle. It could also be playing in the background at a rock bar.", "data_idx": 4914, "number": 2, "label": "blues"} +{"file_name": "train_08829.png", "caption": "This is a gear showcase jam. The only instrument that is being played is a clean sounding electric guitar playing a mellow solo. A delay effect pedal is applied on the guitar. The atmosphere is calm and dreamy. This piece could be used in an advertisement jingle. It could also be playing in the background at a rock bar.", "data_idx": 4914, "number": 3, "label": "blues"} +{"file_name": "train_08830.png", "caption": "This is an amateur recording of a guitar solo for a rock music piece. The solo is being played on an overdriven electric guitar while the piano and the bass guitar in the backing track play the main tune. There is a 6/8 rock beat played on the acoustic drums for the rhythm section. There is a raw feel to it. The piece can be used to gather electric guitar samples to be used in beat-making.", "data_idx": 4916, "number": 0, "label": "rock"} +{"file_name": "train_08831.png", "caption": "This is an amateur recording of a guitar solo for a rock music piece. The solo is being played on an overdriven electric guitar while the piano and the bass guitar in the backing track play the main tune. There is a 6/8 rock beat played on the acoustic drums for the rhythm section. There is a raw feel to it. The piece can be used to gather electric guitar samples to be used in beat-making.", "data_idx": 4916, "number": 1, "label": "rock"} +{"file_name": "train_08832.png", "caption": "This is an amateur recording of a guitar solo for a rock music piece. The solo is being played on an overdriven electric guitar while the piano and the bass guitar in the backing track play the main tune. There is a 6/8 rock beat played on the acoustic drums for the rhythm section. There is a raw feel to it. The piece can be used to gather electric guitar samples to be used in beat-making.", "data_idx": 4916, "number": 2, "label": "rock"} +{"file_name": "train_08833.png", "caption": "This is an amateur recording of a guitar solo for a rock music piece. The solo is being played on an overdriven electric guitar while the piano and the bass guitar in the backing track play the main tune. There is a 6/8 rock beat played on the acoustic drums for the rhythm section. There is a raw feel to it. The piece can be used to gather electric guitar samples to be used in beat-making.", "data_idx": 4916, "number": 3, "label": "rock"} +{"file_name": "train_08834.png", "caption": "This is an instrumental progressive rock music piece. There is an electric guitar playing complex tunes and chords with a pitch shifting effect. There is a psychedelic feel to this track. Parts of this recording could be used in an advertisement jingle.", "data_idx": 4917, "number": 0, "label": "blues"} +{"file_name": "train_08835.png", "caption": "This is an instrumental progressive rock music piece. There is an electric guitar playing complex tunes and chords with a pitch shifting effect. There is a psychedelic feel to this track. Parts of this recording could be used in an advertisement jingle.", "data_idx": 4917, "number": 1, "label": "blues"} +{"file_name": "train_08836.png", "caption": "This is an instrumental progressive rock music piece. There is an electric guitar playing complex tunes and chords with a pitch shifting effect. There is a psychedelic feel to this track. Parts of this recording could be used in an advertisement jingle.", "data_idx": 4917, "number": 2, "label": "blues"} +{"file_name": "train_08837.png", "caption": "This is an instrumental progressive rock music piece. There is an electric guitar playing complex tunes and chords with a pitch shifting effect. There is a psychedelic feel to this track. Parts of this recording could be used in an advertisement jingle.", "data_idx": 4917, "number": 3, "label": "blues"} +{"file_name": "train_08838.png", "caption": "This music is instrumental. The tempo is fast with a melodious harmony with synthesiser arrangements, drumming, tambourine beats and some unidentifiable instruments.The audio quality is inferior with an incoherent audio. The music style is Asian/ Chinese.", "data_idx": 4918, "number": 0, "label": "classical"} +{"file_name": "train_08839.png", "caption": "This music is instrumental. The tempo is fast with a melodious harmony with synthesiser arrangements, drumming, tambourine beats and some unidentifiable instruments.The audio quality is inferior with an incoherent audio. The music style is Asian/ Chinese.", "data_idx": 4918, "number": 1, "label": "classical"} +{"file_name": "train_08840.png", "caption": "This music is instrumental. The tempo is fast with a melodious harmony with synthesiser arrangements, drumming, tambourine beats and some unidentifiable instruments.The audio quality is inferior with an incoherent audio. The music style is Asian/ Chinese.", "data_idx": 4918, "number": 2, "label": "classical"} +{"file_name": "train_08841.png", "caption": "This music is instrumental. The tempo is fast with a melodious harmony with synthesiser arrangements, drumming, tambourine beats and some unidentifiable instruments.The audio quality is inferior with an incoherent audio. The music style is Asian/ Chinese.", "data_idx": 4918, "number": 3, "label": "classical"} +{"file_name": "train_08842.png", "caption": "An acoustic drum is playing a latin groove with a cowbell sound and bongos playing along with a bassline underlining. Someone is playing a melody on a steeldrum. The female voice starts singing the same melody. Male voices are supporting her with shouting sounds. The crowd is cheering and clapping along. This song may be playing at a summer festival.", "data_idx": 4920, "number": 0, "label": "disco"} +{"file_name": "train_08843.png", "caption": "An acoustic drum is playing a latin groove with a cowbell sound and bongos playing along with a bassline underlining. Someone is playing a melody on a steeldrum. The female voice starts singing the same melody. Male voices are supporting her with shouting sounds. The crowd is cheering and clapping along. This song may be playing at a summer festival.", "data_idx": 4920, "number": 1, "label": "disco"} +{"file_name": "train_08844.png", "caption": "An acoustic drum is playing a latin groove with a cowbell sound and bongos playing along with a bassline underlining. Someone is playing a melody on a steeldrum. The female voice starts singing the same melody. Male voices are supporting her with shouting sounds. The crowd is cheering and clapping along. This song may be playing at a summer festival.", "data_idx": 4920, "number": 2, "label": "disco"} +{"file_name": "train_08845.png", "caption": "An acoustic drum is playing a latin groove with a cowbell sound and bongos playing along with a bassline underlining. Someone is playing a melody on a steeldrum. The female voice starts singing the same melody. Male voices are supporting her with shouting sounds. The crowd is cheering and clapping along. This song may be playing at a summer festival.", "data_idx": 4920, "number": 3, "label": "disco"} +{"file_name": "train_08846.png", "caption": "This composition contains ambient noise sounds such as a bass pad drone sound, very fast ringing high frequencies and a rhythmic chime sound. The elements are spread across both sides of the speakers.", "data_idx": 4921, "number": 0, "label": "hiphop"} +{"file_name": "train_08847.png", "caption": "This composition contains ambient noise sounds such as a bass pad drone sound, very fast ringing high frequencies and a rhythmic chime sound. The elements are spread across both sides of the speakers.", "data_idx": 4921, "number": 1, "label": "hiphop"} +{"file_name": "train_08848.png", "caption": "This composition contains ambient noise sounds such as a bass pad drone sound, very fast ringing high frequencies and a rhythmic chime sound. The elements are spread across both sides of the speakers.", "data_idx": 4921, "number": 2, "label": "hiphop"} +{"file_name": "train_08849.png", "caption": "This composition contains ambient noise sounds such as a bass pad drone sound, very fast ringing high frequencies and a rhythmic chime sound. The elements are spread across both sides of the speakers.", "data_idx": 4921, "number": 3, "label": "hiphop"} +{"file_name": "train_08850.png", "caption": "The low quality recording features a rock song that consists of harmonizing background vocals, alongside passionate male vocals, singing over, at least, punchy snare, simple hi hats, smooth bass, thin kick and punchy snare hits. The recording is so noisy that the actual song can barely be heard, but regardless it sounds vintage, energetic and uplifting.", "data_idx": 4924, "number": 0, "label": "rock"} +{"file_name": "train_08851.png", "caption": "The low quality recording features a rock song that consists of harmonizing background vocals, alongside passionate male vocals, singing over, at least, punchy snare, simple hi hats, smooth bass, thin kick and punchy snare hits. The recording is so noisy that the actual song can barely be heard, but regardless it sounds vintage, energetic and uplifting.", "data_idx": 4924, "number": 1, "label": "rock"} +{"file_name": "train_08852.png", "caption": "The low quality recording features a rock song that consists of harmonizing background vocals, alongside passionate male vocals, singing over, at least, punchy snare, simple hi hats, smooth bass, thin kick and punchy snare hits. The recording is so noisy that the actual song can barely be heard, but regardless it sounds vintage, energetic and uplifting.", "data_idx": 4924, "number": 2, "label": "rock"} +{"file_name": "train_08853.png", "caption": "The low quality recording features a rock song that consists of harmonizing background vocals, alongside passionate male vocals, singing over, at least, punchy snare, simple hi hats, smooth bass, thin kick and punchy snare hits. The recording is so noisy that the actual song can barely be heard, but regardless it sounds vintage, energetic and uplifting.", "data_idx": 4924, "number": 3, "label": "rock"} +{"file_name": "train_08854.png", "caption": "The Epic Rock song features a punchy snare, punchy hollow kick hits, wide electric guitar chords, simple bass guitar, energetic cymbals, arpeggiated filtered melody, arpeggiated violin and arpeggiated synth melody over which there is a whispering male vocal at one point. It sounds like something you would hear at the end of an action movie, while credits are rolling.", "data_idx": 4927, "number": 0, "label": "metal"} +{"file_name": "train_08855.png", "caption": "The Epic Rock song features a punchy snare, punchy hollow kick hits, wide electric guitar chords, simple bass guitar, energetic cymbals, arpeggiated filtered melody, arpeggiated violin and arpeggiated synth melody over which there is a whispering male vocal at one point. It sounds like something you would hear at the end of an action movie, while credits are rolling.", "data_idx": 4927, "number": 1, "label": "metal"} +{"file_name": "train_08856.png", "caption": "The Epic Rock song features a punchy snare, punchy hollow kick hits, wide electric guitar chords, simple bass guitar, energetic cymbals, arpeggiated filtered melody, arpeggiated violin and arpeggiated synth melody over which there is a whispering male vocal at one point. It sounds like something you would hear at the end of an action movie, while credits are rolling.", "data_idx": 4927, "number": 2, "label": "metal"} +{"file_name": "train_08857.png", "caption": "The Epic Rock song features a punchy snare, punchy hollow kick hits, wide electric guitar chords, simple bass guitar, energetic cymbals, arpeggiated filtered melody, arpeggiated violin and arpeggiated synth melody over which there is a whispering male vocal at one point. It sounds like something you would hear at the end of an action movie, while credits are rolling.", "data_idx": 4927, "number": 3, "label": "metal"} +{"file_name": "train_08858.png", "caption": "The low quality recording features a clean electric guitar chord progression that has some effects on it. It sounds slightly detuned and it has a slight wobble effect.", "data_idx": 4930, "number": 0, "label": "blues"} +{"file_name": "train_08859.png", "caption": "The low quality recording features a clean electric guitar chord progression that has some effects on it. It sounds slightly detuned and it has a slight wobble effect.", "data_idx": 4930, "number": 1, "label": "blues"} +{"file_name": "train_08860.png", "caption": "This instrumental funk song is a low quality recording. This song starts off with a bass playing a funky and groovy lick accompanied by a percussion playing a fill. Then a synth plays a lead using string sounds. This is accompanied by distortion guitars playing power chords. The bass continues to play funky fills and the percussion continues to play a fast beat. This song can be played in an action sequence in a movie.", "data_idx": 4933, "number": 0, "label": "metal"} +{"file_name": "train_08861.png", "caption": "This instrumental funk song is a low quality recording. This song starts off with a bass playing a funky and groovy lick accompanied by a percussion playing a fill. Then a synth plays a lead using string sounds. This is accompanied by distortion guitars playing power chords. The bass continues to play funky fills and the percussion continues to play a fast beat. This song can be played in an action sequence in a movie.", "data_idx": 4933, "number": 1, "label": "metal"} +{"file_name": "train_08862.png", "caption": "This instrumental funk song is a low quality recording. This song starts off with a bass playing a funky and groovy lick accompanied by a percussion playing a fill. Then a synth plays a lead using string sounds. This is accompanied by distortion guitars playing power chords. The bass continues to play funky fills and the percussion continues to play a fast beat. This song can be played in an action sequence in a movie.", "data_idx": 4933, "number": 2, "label": "metal"} +{"file_name": "train_08863.png", "caption": "This instrumental funk song is a low quality recording. This song starts off with a bass playing a funky and groovy lick accompanied by a percussion playing a fill. Then a synth plays a lead using string sounds. This is accompanied by distortion guitars playing power chords. The bass continues to play funky fills and the percussion continues to play a fast beat. This song can be played in an action sequence in a movie.", "data_idx": 4933, "number": 3, "label": "metal"} +{"file_name": "train_08864.png", "caption": "Percussions are playing together with a clarinet that takes the lead melody with very long notes. A bowed instrument is playing along with little fill-ins. An electric bass is playing a rather funky groove. The whole song sounds like it was made for dancing joyfully.", "data_idx": 4936, "number": 0, "label": "classical"} +{"file_name": "train_08865.png", "caption": "Percussions are playing together with a clarinet that takes the lead melody with very long notes. A bowed instrument is playing along with little fill-ins. An electric bass is playing a rather funky groove. The whole song sounds like it was made for dancing joyfully.", "data_idx": 4936, "number": 1, "label": "classical"} +{"file_name": "train_08866.png", "caption": "This heavy metal song features a male voice singing the main melody. The song starts with male voices singing 'hey, hey'. This is accompanied by aggressive percussion playing a rock beat. A distortion guitar is playing lead fills and another distortion guitar playing power chords. The bass plays the root notes of the chords. Another voice comes in and is screaming at a high pitch. This is accompanied by continuous snare hits for 8 bars. The main voice starts singing at this time and is accompanied by rock percussion. The bass plays the same root notes once again and the distortion guitar plays a riff in the background. The other guitar continues to play lead fills. The mood of this song is defiant. This song can be played in a rebel themed movie.", "data_idx": 4937, "number": 0, "label": "metal"} +{"file_name": "train_08867.png", "caption": "This heavy metal song features a male voice singing the main melody. The song starts with male voices singing 'hey, hey'. This is accompanied by aggressive percussion playing a rock beat. A distortion guitar is playing lead fills and another distortion guitar playing power chords. The bass plays the root notes of the chords. Another voice comes in and is screaming at a high pitch. This is accompanied by continuous snare hits for 8 bars. The main voice starts singing at this time and is accompanied by rock percussion. The bass plays the same root notes once again and the distortion guitar plays a riff in the background. The other guitar continues to play lead fills. The mood of this song is defiant. This song can be played in a rebel themed movie.", "data_idx": 4937, "number": 1, "label": "metal"} +{"file_name": "train_08868.png", "caption": "This heavy metal song features a male voice singing the main melody. The song starts with male voices singing 'hey, hey'. This is accompanied by aggressive percussion playing a rock beat. A distortion guitar is playing lead fills and another distortion guitar playing power chords. The bass plays the root notes of the chords. Another voice comes in and is screaming at a high pitch. This is accompanied by continuous snare hits for 8 bars. The main voice starts singing at this time and is accompanied by rock percussion. The bass plays the same root notes once again and the distortion guitar plays a riff in the background. The other guitar continues to play lead fills. The mood of this song is defiant. This song can be played in a rebel themed movie.", "data_idx": 4937, "number": 2, "label": "metal"} +{"file_name": "train_08869.png", "caption": "This heavy metal song features a male voice singing the main melody. The song starts with male voices singing 'hey, hey'. This is accompanied by aggressive percussion playing a rock beat. A distortion guitar is playing lead fills and another distortion guitar playing power chords. The bass plays the root notes of the chords. Another voice comes in and is screaming at a high pitch. This is accompanied by continuous snare hits for 8 bars. The main voice starts singing at this time and is accompanied by rock percussion. The bass plays the same root notes once again and the distortion guitar plays a riff in the background. The other guitar continues to play lead fills. The mood of this song is defiant. This song can be played in a rebel themed movie.", "data_idx": 4937, "number": 3, "label": "metal"} +{"file_name": "train_08870.png", "caption": "The low quality recording features a pop folk song that consists of passionate female vocal singing over repetitive flute licks, stuttering hi hats, groovy piano chords, claps and a riser sweep. It sounds energetic and kind of addictive, thanks to those interesting melodies and a fairly repetitive female vocal.", "data_idx": 4938, "number": 0, "label": "disco"} +{"file_name": "train_08871.png", "caption": "The low quality recording features a pop folk song that consists of passionate female vocal singing over repetitive flute licks, stuttering hi hats, groovy piano chords, claps and a riser sweep. It sounds energetic and kind of addictive, thanks to those interesting melodies and a fairly repetitive female vocal.", "data_idx": 4938, "number": 1, "label": "disco"} +{"file_name": "train_08872.png", "caption": "The low quality recording features a pop folk song that consists of passionate female vocal singing over repetitive flute licks, stuttering hi hats, groovy piano chords, claps and a riser sweep. It sounds energetic and kind of addictive, thanks to those interesting melodies and a fairly repetitive female vocal.", "data_idx": 4938, "number": 2, "label": "disco"} +{"file_name": "train_08873.png", "caption": "The low quality recording features a pop folk song that consists of passionate female vocal singing over repetitive flute licks, stuttering hi hats, groovy piano chords, claps and a riser sweep. It sounds energetic and kind of addictive, thanks to those interesting melodies and a fairly repetitive female vocal.", "data_idx": 4938, "number": 3, "label": "disco"} +{"file_name": "train_08874.png", "caption": "The low quality recording features a crumpling bag sound effect, followed by wide sad, dark arpeggiated bells melody and mellow synth keys chord progression. Overall it sounds sad, emotional and weird - since there is a very bad sample of crumpling bag sound effect over such a beautiful melody.", "data_idx": 4941, "number": 0, "label": "metal"} +{"file_name": "train_08875.png", "caption": "The low quality recording features a crumpling bag sound effect, followed by wide sad, dark arpeggiated bells melody and mellow synth keys chord progression. Overall it sounds sad, emotional and weird - since there is a very bad sample of crumpling bag sound effect over such a beautiful melody.", "data_idx": 4941, "number": 1, "label": "metal"} +{"file_name": "train_08876.png", "caption": "The low quality recording features a crumpling bag sound effect, followed by wide sad, dark arpeggiated bells melody and mellow synth keys chord progression. Overall it sounds sad, emotional and weird - since there is a very bad sample of crumpling bag sound effect over such a beautiful melody.", "data_idx": 4941, "number": 2, "label": "metal"} +{"file_name": "train_08877.png", "caption": "The low quality recording features a crumpling bag sound effect, followed by wide sad, dark arpeggiated bells melody and mellow synth keys chord progression. Overall it sounds sad, emotional and weird - since there is a very bad sample of crumpling bag sound effect over such a beautiful melody.", "data_idx": 4941, "number": 3, "label": "metal"} +{"file_name": "train_08878.png", "caption": "An acoustic guitar is strumming chords along with a male voice rapping that gets backing vocals from a female voice for a moment. A lot of people are clapping and cheering. This song may be playing at a live concert.", "data_idx": 4945, "number": 0, "label": "classical"} +{"file_name": "train_08879.png", "caption": "An acoustic guitar is strumming chords along with a male voice rapping that gets backing vocals from a female voice for a moment. A lot of people are clapping and cheering. This song may be playing at a live concert.", "data_idx": 4945, "number": 1, "label": "classical"} +{"file_name": "train_08880.png", "caption": "A male vocalist sings this peppy Latin pop song.the tempo is medium with animated trumpets, keyboard harmony and percussions rhythms of bongos, congas and subtle drums. The song is muffled and there are sounds in the background of people talking, cheering, the sound of clinking, scuffling and tapping. The song is super imposed by the background sounds. This song is a latin pop song.", "data_idx": 4946, "number": 0, "label": "classical"} +{"file_name": "train_08881.png", "caption": "A male vocalist sings this peppy Latin pop song.the tempo is medium with animated trumpets, keyboard harmony and percussions rhythms of bongos, congas and subtle drums. The song is muffled and there are sounds in the background of people talking, cheering, the sound of clinking, scuffling and tapping. The song is super imposed by the background sounds. This song is a latin pop song.", "data_idx": 4946, "number": 1, "label": "classical"} +{"file_name": "train_08882.png", "caption": "A male vocalist sings this peppy Latin pop song.the tempo is medium with animated trumpets, keyboard harmony and percussions rhythms of bongos, congas and subtle drums. The song is muffled and there are sounds in the background of people talking, cheering, the sound of clinking, scuffling and tapping. The song is super imposed by the background sounds. This song is a latin pop song.", "data_idx": 4946, "number": 2, "label": "classical"} +{"file_name": "train_08883.png", "caption": "A male vocalist sings this peppy Latin pop song.the tempo is medium with animated trumpets, keyboard harmony and percussions rhythms of bongos, congas and subtle drums. The song is muffled and there are sounds in the background of people talking, cheering, the sound of clinking, scuffling and tapping. The song is super imposed by the background sounds. This song is a latin pop song.", "data_idx": 4946, "number": 3, "label": "classical"} +{"file_name": "train_08884.png", "caption": "A male and female singer sing this vocal duet with a choral vocal harmony. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar lead, guitars playing rhythm and keyboard harmony. The song is devotional and congregational. The song is a Christian praise and worship song with poor audio quality.", "data_idx": 4948, "number": 0, "label": "rock"} +{"file_name": "train_08885.png", "caption": "A male and female singer sing this vocal duet with a choral vocal harmony. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar lead, guitars playing rhythm and keyboard harmony. The song is devotional and congregational. The song is a Christian praise and worship song with poor audio quality.", "data_idx": 4948, "number": 1, "label": "rock"} +{"file_name": "train_08886.png", "caption": "A male and female singer sing this vocal duet with a choral vocal harmony. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar lead, guitars playing rhythm and keyboard harmony. The song is devotional and congregational. The song is a Christian praise and worship song with poor audio quality.", "data_idx": 4948, "number": 2, "label": "rock"} +{"file_name": "train_08887.png", "caption": "A male and female singer sing this vocal duet with a choral vocal harmony. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar lead, guitars playing rhythm and keyboard harmony. The song is devotional and congregational. The song is a Christian praise and worship song with poor audio quality.", "data_idx": 4948, "number": 3, "label": "rock"} +{"file_name": "train_08888.png", "caption": "The low quality recording features a live performance of a song that is barely audible due to distorted sound, loud cheering crowd and female screams. There is definitely at least a boomy bass, punchy kick and snare hits and energetic cymbals, alongside some vocals singing over it. It sounds messy and muddy, but also emotional and energetic.", "data_idx": 4951, "number": 0, "label": "metal"} +{"file_name": "train_08889.png", "caption": "The low quality recording features a live performance of a song that is barely audible due to distorted sound, loud cheering crowd and female screams. There is definitely at least a boomy bass, punchy kick and snare hits and energetic cymbals, alongside some vocals singing over it. It sounds messy and muddy, but also emotional and energetic.", "data_idx": 4951, "number": 1, "label": "metal"} +{"file_name": "train_08890.png", "caption": "The low quality recording features a traditional song that consists of reverberant, fruity male vocal singing over wooden & percussive elements, sizzling triangle hits, sustained strings melody, plucked strings melody and breathy flute melody. It sounds soulful, passionate, emotional, calming and relaxing - like something you would hear in a small village in a foreign country, full of joy and innocence.", "data_idx": 4955, "number": 0, "label": "blues"} +{"file_name": "train_08891.png", "caption": "The low quality recording features a traditional song that consists of reverberant, fruity male vocal singing over wooden & percussive elements, sizzling triangle hits, sustained strings melody, plucked strings melody and breathy flute melody. It sounds soulful, passionate, emotional, calming and relaxing - like something you would hear in a small village in a foreign country, full of joy and innocence.", "data_idx": 4955, "number": 1, "label": "blues"} +{"file_name": "train_08892.png", "caption": "The low quality recording features a traditional song that consists of reverberant, fruity male vocal singing over wooden & percussive elements, sizzling triangle hits, sustained strings melody, plucked strings melody and breathy flute melody. It sounds soulful, passionate, emotional, calming and relaxing - like something you would hear in a small village in a foreign country, full of joy and innocence.", "data_idx": 4955, "number": 2, "label": "blues"} +{"file_name": "train_08893.png", "caption": "The low quality recording features a traditional song that consists of reverberant, fruity male vocal singing over wooden & percussive elements, sizzling triangle hits, sustained strings melody, plucked strings melody and breathy flute melody. It sounds soulful, passionate, emotional, calming and relaxing - like something you would hear in a small village in a foreign country, full of joy and innocence.", "data_idx": 4955, "number": 3, "label": "blues"} +{"file_name": "train_08894.png", "caption": "The Latin Urban song features an echoing male lead vocal, alongside wide harmonizing harmonizing background vocals and echoing ad libs, rapping over \"4 on the floor kick\" pattern, smooth bass, syncopated snare, shimmering cymbals and wide shimmering shakers, followed by arpeggiated synth keys melody. It sounds uplifting, happy and like something you would dance to with your friends.", "data_idx": 4956, "number": 0, "label": "hiphop"} +{"file_name": "train_08895.png", "caption": "The Latin Urban song features an echoing male lead vocal, alongside wide harmonizing harmonizing background vocals and echoing ad libs, rapping over \"4 on the floor kick\" pattern, smooth bass, syncopated snare, shimmering cymbals and wide shimmering shakers, followed by arpeggiated synth keys melody. It sounds uplifting, happy and like something you would dance to with your friends.", "data_idx": 4956, "number": 1, "label": "hiphop"} +{"file_name": "train_08896.png", "caption": "The Latin Urban song features an echoing male lead vocal, alongside wide harmonizing harmonizing background vocals and echoing ad libs, rapping over \"4 on the floor kick\" pattern, smooth bass, syncopated snare, shimmering cymbals and wide shimmering shakers, followed by arpeggiated synth keys melody. It sounds uplifting, happy and like something you would dance to with your friends.", "data_idx": 4956, "number": 2, "label": "hiphop"} +{"file_name": "train_08897.png", "caption": "The Latin Urban song features an echoing male lead vocal, alongside wide harmonizing harmonizing background vocals and echoing ad libs, rapping over \"4 on the floor kick\" pattern, smooth bass, syncopated snare, shimmering cymbals and wide shimmering shakers, followed by arpeggiated synth keys melody. It sounds uplifting, happy and like something you would dance to with your friends.", "data_idx": 4956, "number": 3, "label": "hiphop"} +{"file_name": "train_08898.png", "caption": "This is the acoustic version of a hard rock piece performed by an orchestra of ukulele players. There are two male vocalists and one female vocalist singing melodically. The different sections of the tune are all being played by a separate ukulele. The atmosphere is easygoing. This piece could fit well in the soundtrack of an animation movie or a comedy movie.", "data_idx": 4957, "number": 0, "label": "blues"} +{"file_name": "train_08899.png", "caption": "This is the acoustic version of a hard rock piece performed by an orchestra of ukulele players. There are two male vocalists and one female vocalist singing melodically. The different sections of the tune are all being played by a separate ukulele. The atmosphere is easygoing. This piece could fit well in the soundtrack of an animation movie or a comedy movie.", "data_idx": 4957, "number": 1, "label": "blues"} +{"file_name": "train_08900.png", "caption": "This is the acoustic version of a hard rock piece performed by an orchestra of ukulele players. There are two male vocalists and one female vocalist singing melodically. The different sections of the tune are all being played by a separate ukulele. The atmosphere is easygoing. This piece could fit well in the soundtrack of an animation movie or a comedy movie.", "data_idx": 4957, "number": 2, "label": "blues"} +{"file_name": "train_08901.png", "caption": "This is the acoustic version of a hard rock piece performed by an orchestra of ukulele players. There are two male vocalists and one female vocalist singing melodically. The different sections of the tune are all being played by a separate ukulele. The atmosphere is easygoing. This piece could fit well in the soundtrack of an animation movie or a comedy movie.", "data_idx": 4957, "number": 3, "label": "blues"} +{"file_name": "train_08902.png", "caption": "The low quality recording features an electro song that consists of flat male vocals, alongside widely spread male barking onomatopoeia, singing over shimmering shakers, sizzling triangle, tinny cowbell, punchy kick, punchy snare and groovy bass. It sounds energetic and addictive, even though it is a bit repetitive.", "data_idx": 4960, "number": 0, "label": "hiphop"} +{"file_name": "train_08903.png", "caption": "The low quality recording features an electro song that consists of flat male vocals, alongside widely spread male barking onomatopoeia, singing over shimmering shakers, sizzling triangle, tinny cowbell, punchy kick, punchy snare and groovy bass. It sounds energetic and addictive, even though it is a bit repetitive.", "data_idx": 4960, "number": 1, "label": "hiphop"} +{"file_name": "train_08904.png", "caption": "A female vocalist sings this captivating melody. The tempo is medium with enthusiastic drumming, soft keyboard harmony, steady bass lines and a middle eastern instrument. The song is rhythmic, catchy, peppy, vivacious and has a dance groove. This song is a Regional Pop song.", "data_idx": 4961, "number": 0, "label": "pop"} +{"file_name": "train_08905.png", "caption": "A female vocalist sings this captivating melody. The tempo is medium with enthusiastic drumming, soft keyboard harmony, steady bass lines and a middle eastern instrument. The song is rhythmic, catchy, peppy, vivacious and has a dance groove. This song is a Regional Pop song.", "data_idx": 4961, "number": 1, "label": "pop"} +{"file_name": "train_08906.png", "caption": "A female vocalist sings this captivating melody. The tempo is medium with enthusiastic drumming, soft keyboard harmony, steady bass lines and a middle eastern instrument. The song is rhythmic, catchy, peppy, vivacious and has a dance groove. This song is a Regional Pop song.", "data_idx": 4961, "number": 2, "label": "pop"} +{"file_name": "train_08907.png", "caption": "A female vocalist sings this captivating melody. The tempo is medium with enthusiastic drumming, soft keyboard harmony, steady bass lines and a middle eastern instrument. The song is rhythmic, catchy, peppy, vivacious and has a dance groove. This song is a Regional Pop song.", "data_idx": 4961, "number": 3, "label": "pop"} +{"file_name": "train_08908.png", "caption": "The Electro song features a repetitive male vocal singing over shimmering hi hats, tom rolls, wide claps, groovy kick, pulsating synth lead melody and groovy synth bass, which glues everything together. Even though the vocal is repetitive, it sounds very addictive and energetic in context.", "data_idx": 4962, "number": 0, "label": "hiphop"} +{"file_name": "train_08909.png", "caption": "The Electro song features a repetitive male vocal singing over shimmering hi hats, tom rolls, wide claps, groovy kick, pulsating synth lead melody and groovy synth bass, which glues everything together. Even though the vocal is repetitive, it sounds very addictive and energetic in context.", "data_idx": 4962, "number": 1, "label": "hiphop"} +{"file_name": "train_08910.png", "caption": "The Electro song features a repetitive male vocal singing over shimmering hi hats, tom rolls, wide claps, groovy kick, pulsating synth lead melody and groovy synth bass, which glues everything together. Even though the vocal is repetitive, it sounds very addictive and energetic in context.", "data_idx": 4962, "number": 2, "label": "hiphop"} +{"file_name": "train_08911.png", "caption": "The Electro song features a repetitive male vocal singing over shimmering hi hats, tom rolls, wide claps, groovy kick, pulsating synth lead melody and groovy synth bass, which glues everything together. Even though the vocal is repetitive, it sounds very addictive and energetic in context.", "data_idx": 4962, "number": 3, "label": "hiphop"} +{"file_name": "train_08912.png", "caption": "This is a dubstep piece. It has an electronic drum beat on the rhythmic background. There is a strong bass sound with characteristics rising from low-to-medium range. There is a high-pitched synth playing the melody. There is a loud and energetic atmosphere. This piece could be played at nightclubs. It could also be used in gaming videos or events.", "data_idx": 4964, "number": 0, "label": "hiphop"} +{"file_name": "train_08913.png", "caption": "This is a dubstep piece. It has an electronic drum beat on the rhythmic background. There is a strong bass sound with characteristics rising from low-to-medium range. There is a high-pitched synth playing the melody. There is a loud and energetic atmosphere. This piece could be played at nightclubs. It could also be used in gaming videos or events.", "data_idx": 4964, "number": 1, "label": "hiphop"} +{"file_name": "train_08914.png", "caption": "This is a dubstep piece. It has an electronic drum beat on the rhythmic background. There is a strong bass sound with characteristics rising from low-to-medium range. There is a high-pitched synth playing the melody. There is a loud and energetic atmosphere. This piece could be played at nightclubs. It could also be used in gaming videos or events.", "data_idx": 4964, "number": 2, "label": "hiphop"} +{"file_name": "train_08915.png", "caption": "This is a dubstep piece. It has an electronic drum beat on the rhythmic background. There is a strong bass sound with characteristics rising from low-to-medium range. There is a high-pitched synth playing the melody. There is a loud and energetic atmosphere. This piece could be played at nightclubs. It could also be used in gaming videos or events.", "data_idx": 4964, "number": 3, "label": "hiphop"} +{"file_name": "train_08916.png", "caption": "This song contains various orchestral instruments as a bass, plucked strings, timpani and snare hits. There are background noises, foregroundnoises as pitched voices, a river flowing and birds chirping. This music sounds like it belongs to an old videogame.", "data_idx": 4966, "number": 0, "label": "jazz"} +{"file_name": "train_08917.png", "caption": "This song contains various orchestral instruments as a bass, plucked strings, timpani and snare hits. There are background noises, foregroundnoises as pitched voices, a river flowing and birds chirping. This music sounds like it belongs to an old videogame.", "data_idx": 4966, "number": 1, "label": "jazz"} +{"file_name": "train_08918.png", "caption": "This song contains various orchestral instruments as a bass, plucked strings, timpani and snare hits. There are background noises, foregroundnoises as pitched voices, a river flowing and birds chirping. This music sounds like it belongs to an old videogame.", "data_idx": 4966, "number": 2, "label": "jazz"} +{"file_name": "train_08919.png", "caption": "This song contains various orchestral instruments as a bass, plucked strings, timpani and snare hits. There are background noises, foregroundnoises as pitched voices, a river flowing and birds chirping. This music sounds like it belongs to an old videogame.", "data_idx": 4966, "number": 3, "label": "jazz"} +{"file_name": "train_08920.png", "caption": "This is an acoustic comedic piece. The male vocalist is singing in a manner similar to a bard, telling us a story. He is also playing the melody on a ukulele at the same time. The tune is very simple and easygoing. The atmosphere is jovial. This could be used in the soundtrack of a comedy movie or in the background of a funny video.", "data_idx": 4968, "number": 0, "label": "reggae"} +{"file_name": "train_08921.png", "caption": "This is an acoustic comedic piece. The male vocalist is singing in a manner similar to a bard, telling us a story. He is also playing the melody on a ukulele at the same time. The tune is very simple and easygoing. The atmosphere is jovial. This could be used in the soundtrack of a comedy movie or in the background of a funny video.", "data_idx": 4968, "number": 1, "label": "reggae"} +{"file_name": "train_08922.png", "caption": "This is an acoustic comedic piece. The male vocalist is singing in a manner similar to a bard, telling us a story. He is also playing the melody on a ukulele at the same time. The tune is very simple and easygoing. The atmosphere is jovial. This could be used in the soundtrack of a comedy movie or in the background of a funny video.", "data_idx": 4968, "number": 2, "label": "reggae"} +{"file_name": "train_08923.png", "caption": "This is an acoustic comedic piece. The male vocalist is singing in a manner similar to a bard, telling us a story. He is also playing the melody on a ukulele at the same time. The tune is very simple and easygoing. The atmosphere is jovial. This could be used in the soundtrack of a comedy movie or in the background of a funny video.", "data_idx": 4968, "number": 3, "label": "reggae"} +{"file_name": "train_08924.png", "caption": "A male singer with a rough voice sings this hip hop dance song. The song is medium tempo with a distorted electric guitar playing rhythm, keyboard accompaniment, slick drumming rhythm, telephone ring tones and various percussion hits. The song ends with a fade . The song has poor audio quality.", "data_idx": 4969, "number": 0, "label": "hiphop"} +{"file_name": "train_08925.png", "caption": "A male singer with a rough voice sings this hip hop dance song. The song is medium tempo with a distorted electric guitar playing rhythm, keyboard accompaniment, slick drumming rhythm, telephone ring tones and various percussion hits. The song ends with a fade . The song has poor audio quality.", "data_idx": 4969, "number": 1, "label": "hiphop"} +{"file_name": "train_08926.png", "caption": "A male singer with a rough voice sings this hip hop dance song. The song is medium tempo with a distorted electric guitar playing rhythm, keyboard accompaniment, slick drumming rhythm, telephone ring tones and various percussion hits. The song ends with a fade . The song has poor audio quality.", "data_idx": 4969, "number": 2, "label": "hiphop"} +{"file_name": "train_08927.png", "caption": "A male singer with a rough voice sings this hip hop dance song. The song is medium tempo with a distorted electric guitar playing rhythm, keyboard accompaniment, slick drumming rhythm, telephone ring tones and various percussion hits. The song ends with a fade . The song has poor audio quality.", "data_idx": 4969, "number": 3, "label": "hiphop"} +{"file_name": "train_08928.png", "caption": "An ambient instrumental piece with no drums, big reverb and complex sound design elements. Tape hiss can be heard in the background and the vibe is hazy and warm with childlike wonder.", "data_idx": 4970, "number": 0, "label": "classical"} +{"file_name": "train_08929.png", "caption": "An ambient instrumental piece with no drums, big reverb and complex sound design elements. Tape hiss can be heard in the background and the vibe is hazy and warm with childlike wonder.", "data_idx": 4970, "number": 1, "label": "classical"} +{"file_name": "train_08930.png", "caption": "An ambient instrumental piece with no drums, big reverb and complex sound design elements. Tape hiss can be heard in the background and the vibe is hazy and warm with childlike wonder.", "data_idx": 4970, "number": 2, "label": "classical"} +{"file_name": "train_08931.png", "caption": "An ambient instrumental piece with no drums, big reverb and complex sound design elements. Tape hiss can be heard in the background and the vibe is hazy and warm with childlike wonder.", "data_idx": 4970, "number": 3, "label": "classical"} +{"file_name": "train_08932.png", "caption": "The low quality recording features an alternative/indie song that consists of monotone male vocal singing over fat snare, energetic cymbals, energetic wide synth bass, punchy kick, reverberant synth bells melody and high pitched vocals. The instrumental is a bit pulsating as the kick comes in - almost like it was sidechained to it. It sounds energetic and sad.", "data_idx": 4971, "number": 0, "label": "metal"} +{"file_name": "train_08933.png", "caption": "The low quality recording features an alternative/indie song that consists of monotone male vocal singing over fat snare, energetic cymbals, energetic wide synth bass, punchy kick, reverberant synth bells melody and high pitched vocals. The instrumental is a bit pulsating as the kick comes in - almost like it was sidechained to it. It sounds energetic and sad.", "data_idx": 4971, "number": 1, "label": "metal"} +{"file_name": "train_08934.png", "caption": "The low quality recording features an alternative/indie song that consists of monotone male vocal singing over fat snare, energetic cymbals, energetic wide synth bass, punchy kick, reverberant synth bells melody and high pitched vocals. The instrumental is a bit pulsating as the kick comes in - almost like it was sidechained to it. It sounds energetic and sad.", "data_idx": 4971, "number": 2, "label": "metal"} +{"file_name": "train_08935.png", "caption": "The low quality recording features an alternative/indie song that consists of monotone male vocal singing over fat snare, energetic cymbals, energetic wide synth bass, punchy kick, reverberant synth bells melody and high pitched vocals. The instrumental is a bit pulsating as the kick comes in - almost like it was sidechained to it. It sounds energetic and sad.", "data_idx": 4971, "number": 3, "label": "metal"} +{"file_name": "train_08936.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with keyboard harmony, piano accompaniment,groovy bass lines, digital drum and synthesiser arrangement. The song is catchy, enjoyable, youthful, energetic and vivacious with recurring and insistent rhythm and a dance groove. This song is a Reggae song.", "data_idx": 4972, "number": 0, "label": "reggae"} +{"file_name": "train_08937.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with keyboard harmony, piano accompaniment,groovy bass lines, digital drum and synthesiser arrangement. The song is catchy, enjoyable, youthful, energetic and vivacious with recurring and insistent rhythm and a dance groove. This song is a Reggae song.", "data_idx": 4972, "number": 1, "label": "reggae"} +{"file_name": "train_08938.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with keyboard harmony, piano accompaniment,groovy bass lines, digital drum and synthesiser arrangement. The song is catchy, enjoyable, youthful, energetic and vivacious with recurring and insistent rhythm and a dance groove. This song is a Reggae song.", "data_idx": 4972, "number": 2, "label": "reggae"} +{"file_name": "train_08939.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with keyboard harmony, piano accompaniment,groovy bass lines, digital drum and synthesiser arrangement. The song is catchy, enjoyable, youthful, energetic and vivacious with recurring and insistent rhythm and a dance groove. This song is a Reggae song.", "data_idx": 4972, "number": 3, "label": "reggae"} +{"file_name": "train_08940.png", "caption": "This music is an intense instrumental. The tempo is medium with hard hitting drums, ceremonial big drums, amplified piano and violin harmony. The music is syncopated and intense. It is like a background score for a movie.", "data_idx": 4973, "number": 0, "label": "jazz"} +{"file_name": "train_08941.png", "caption": "This music is an intense instrumental. The tempo is medium with hard hitting drums, ceremonial big drums, amplified piano and violin harmony. The music is syncopated and intense. It is like a background score for a movie.", "data_idx": 4973, "number": 1, "label": "jazz"} +{"file_name": "train_08942.png", "caption": "This music is an intense instrumental. The tempo is medium with hard hitting drums, ceremonial big drums, amplified piano and violin harmony. The music is syncopated and intense. It is like a background score for a movie.", "data_idx": 4973, "number": 2, "label": "jazz"} +{"file_name": "train_08943.png", "caption": "This music is an intense instrumental. The tempo is medium with hard hitting drums, ceremonial big drums, amplified piano and violin harmony. The music is syncopated and intense. It is like a background score for a movie.", "data_idx": 4973, "number": 3, "label": "jazz"} +{"file_name": "train_08944.png", "caption": "A synthesizer pad sound, maybe analog, is rising up and down in pitch. The sound is full of frequencies.", "data_idx": 4975, "number": 0, "label": "classical"} +{"file_name": "train_08945.png", "caption": "A synthesizer pad sound, maybe analog, is rising up and down in pitch. The sound is full of frequencies.", "data_idx": 4975, "number": 1, "label": "classical"} +{"file_name": "train_08946.png", "caption": "A synthesizer pad sound, maybe analog, is rising up and down in pitch. The sound is full of frequencies.", "data_idx": 4975, "number": 2, "label": "classical"} +{"file_name": "train_08947.png", "caption": "A synthesizer pad sound, maybe analog, is rising up and down in pitch. The sound is full of frequencies.", "data_idx": 4975, "number": 3, "label": "classical"} +{"file_name": "train_08948.png", "caption": "This orchestral song is an instrumental. There are no voices. It starts off with the string section playing a victorious melody. This is accompanied by percussion playing a simple fill. A timpani is also played. A repetitive lick is played in the background by a plucked or struck instrument. After the strings, a high pitched melody is played with a flute, This song has an epic feel and can be played at the beginning of an adventure scene in a movie.", "data_idx": 4976, "number": 0, "label": "metal"} +{"file_name": "train_08949.png", "caption": "This orchestral song is an instrumental. There are no voices. It starts off with the string section playing a victorious melody. This is accompanied by percussion playing a simple fill. A timpani is also played. A repetitive lick is played in the background by a plucked or struck instrument. After the strings, a high pitched melody is played with a flute, This song has an epic feel and can be played at the beginning of an adventure scene in a movie.", "data_idx": 4976, "number": 1, "label": "metal"} +{"file_name": "train_08950.png", "caption": "This orchestral song is an instrumental. There are no voices. It starts off with the string section playing a victorious melody. This is accompanied by percussion playing a simple fill. A timpani is also played. A repetitive lick is played in the background by a plucked or struck instrument. After the strings, a high pitched melody is played with a flute, This song has an epic feel and can be played at the beginning of an adventure scene in a movie.", "data_idx": 4976, "number": 2, "label": "metal"} +{"file_name": "train_08951.png", "caption": "This orchestral song is an instrumental. There are no voices. It starts off with the string section playing a victorious melody. This is accompanied by percussion playing a simple fill. A timpani is also played. A repetitive lick is played in the background by a plucked or struck instrument. After the strings, a high pitched melody is played with a flute, This song has an epic feel and can be played at the beginning of an adventure scene in a movie.", "data_idx": 4976, "number": 3, "label": "metal"} +{"file_name": "train_08952.png", "caption": "Synthesizers are playing pads/drones in the mid-range. You can hear water tripping sounds with a lot of reverb. A creepy voice is whispering. This song may be playing in a horror movie-scene.", "data_idx": 4977, "number": 0, "label": "rock"} +{"file_name": "train_08953.png", "caption": "Synthesizers are playing pads/drones in the mid-range. You can hear water tripping sounds with a lot of reverb. A creepy voice is whispering. This song may be playing in a horror movie-scene.", "data_idx": 4977, "number": 1, "label": "rock"} +{"file_name": "train_08954.png", "caption": "Synthesizers are playing pads/drones in the mid-range. You can hear water tripping sounds with a lot of reverb. A creepy voice is whispering. This song may be playing in a horror movie-scene.", "data_idx": 4977, "number": 2, "label": "rock"} +{"file_name": "train_08955.png", "caption": "Synthesizers are playing pads/drones in the mid-range. You can hear water tripping sounds with a lot of reverb. A creepy voice is whispering. This song may be playing in a horror movie-scene.", "data_idx": 4977, "number": 3, "label": "rock"} +{"file_name": "train_08956.png", "caption": "The low quality recording features an uptempo chiptune song playing in the background with some synth bells sound effects. In the second half of the loop, there is a loud static noise. The recording is in mono, thin - as it lacks bass frequencies, crushed - due to the harsh mid range frequencies and it sounds like a video game sound.", "data_idx": 4979, "number": 0, "label": "hiphop"} +{"file_name": "train_08957.png", "caption": "The low quality recording features an uptempo chiptune song playing in the background with some synth bells sound effects. In the second half of the loop, there is a loud static noise. The recording is in mono, thin - as it lacks bass frequencies, crushed - due to the harsh mid range frequencies and it sounds like a video game sound.", "data_idx": 4979, "number": 1, "label": "hiphop"} +{"file_name": "train_08958.png", "caption": "The low quality recording features an arpeggiated and strummed banjo melody. The recording is noisy, in mono and the melody sounds happy and fun.", "data_idx": 4982, "number": 0, "label": "classical"} +{"file_name": "train_08959.png", "caption": "The low quality recording features an arpeggiated and strummed banjo melody. The recording is noisy, in mono and the melody sounds happy and fun.", "data_idx": 4982, "number": 1, "label": "classical"} +{"file_name": "train_08960.png", "caption": "The low quality recording features an arpeggiated and strummed banjo melody. The recording is noisy, in mono and the melody sounds happy and fun.", "data_idx": 4982, "number": 2, "label": "classical"} +{"file_name": "train_08961.png", "caption": "The low quality recording features an arpeggiated and strummed banjo melody. The recording is noisy, in mono and the melody sounds happy and fun.", "data_idx": 4982, "number": 3, "label": "classical"} +{"file_name": "train_08962.png", "caption": "The low quality recording features a widely spread, polyphonic theremin lead melody. The recording itself is very noisy, which can be heard at the very end of the loop, where a female narrator is introduced.", "data_idx": 4984, "number": 0, "label": "country"} +{"file_name": "train_08963.png", "caption": "The low quality recording features a widely spread, polyphonic theremin lead melody. The recording itself is very noisy, which can be heard at the very end of the loop, where a female narrator is introduced.", "data_idx": 4984, "number": 1, "label": "country"} +{"file_name": "train_08964.png", "caption": "The low quality recording features a widely spread, polyphonic theremin lead melody. The recording itself is very noisy, which can be heard at the very end of the loop, where a female narrator is introduced.", "data_idx": 4984, "number": 2, "label": "country"} +{"file_name": "train_08965.png", "caption": "The low quality recording features a widely spread, polyphonic theremin lead melody. The recording itself is very noisy, which can be heard at the very end of the loop, where a female narrator is introduced.", "data_idx": 4984, "number": 3, "label": "country"} +{"file_name": "train_08966.png", "caption": "The low quality recording features a cover that consists of a mandolin solo melody playing over playback instrumental that has smooth bass and acoustic rhythm guitar. The recording is noisy, in mono and it sounds passionate and joyful.", "data_idx": 4987, "number": 0, "label": "classical"} +{"file_name": "train_08967.png", "caption": "The low quality recording features a cover that consists of a mandolin solo melody playing over playback instrumental that has smooth bass and acoustic rhythm guitar. The recording is noisy, in mono and it sounds passionate and joyful.", "data_idx": 4987, "number": 1, "label": "classical"} +{"file_name": "train_08968.png", "caption": "The low quality recording features a cover that consists of a mandolin solo melody playing over playback instrumental that has smooth bass and acoustic rhythm guitar. The recording is noisy, in mono and it sounds passionate and joyful.", "data_idx": 4987, "number": 2, "label": "classical"} +{"file_name": "train_08969.png", "caption": "The low quality recording features a cover that consists of a mandolin solo melody playing over playback instrumental that has smooth bass and acoustic rhythm guitar. The recording is noisy, in mono and it sounds passionate and joyful.", "data_idx": 4987, "number": 3, "label": "classical"} +{"file_name": "train_08970.png", "caption": "This game music features an orchestra. A string section plays a melody which is in harmony with the horn section. A choir sings in the background. The percussion plays a simple beat. During this orchestral section, a voice over the radio can be heard giving instructions. The orchestral section comes to a pause and the sound of missiles being launched are played. It ends with the sound of blasts. This song can be used in a war game.", "data_idx": 4988, "number": 0, "label": "hiphop"} +{"file_name": "train_08971.png", "caption": "This game music features an orchestra. A string section plays a melody which is in harmony with the horn section. A choir sings in the background. The percussion plays a simple beat. During this orchestral section, a voice over the radio can be heard giving instructions. The orchestral section comes to a pause and the sound of missiles being launched are played. It ends with the sound of blasts. This song can be used in a war game.", "data_idx": 4988, "number": 1, "label": "hiphop"} +{"file_name": "train_08972.png", "caption": "This game music features an orchestra. A string section plays a melody which is in harmony with the horn section. A choir sings in the background. The percussion plays a simple beat. During this orchestral section, a voice over the radio can be heard giving instructions. The orchestral section comes to a pause and the sound of missiles being launched are played. It ends with the sound of blasts. This song can be used in a war game.", "data_idx": 4988, "number": 2, "label": "hiphop"} +{"file_name": "train_08973.png", "caption": "This game music features an orchestra. A string section plays a melody which is in harmony with the horn section. A choir sings in the background. The percussion plays a simple beat. During this orchestral section, a voice over the radio can be heard giving instructions. The orchestral section comes to a pause and the sound of missiles being launched are played. It ends with the sound of blasts. This song can be used in a war game.", "data_idx": 4988, "number": 3, "label": "hiphop"} +{"file_name": "train_08974.png", "caption": "The Metal song features a screaming male vocal singing repetitive lyrics over distorted bass, aggressive electric guitar riff, punchy snare and kick hits, energetic cymbals and modulated acid synth lead melody. In the first half of the loop, there is a filter effect, that builds the tension before the bass drops. It sounds manic, aggressive and energetic, like something you would listen to while jumping in the mosh pit.", "data_idx": 4991, "number": 0, "label": "hiphop"} +{"file_name": "train_08975.png", "caption": "The Metal song features a screaming male vocal singing repetitive lyrics over distorted bass, aggressive electric guitar riff, punchy snare and kick hits, energetic cymbals and modulated acid synth lead melody. In the first half of the loop, there is a filter effect, that builds the tension before the bass drops. It sounds manic, aggressive and energetic, like something you would listen to while jumping in the mosh pit.", "data_idx": 4991, "number": 1, "label": "hiphop"} +{"file_name": "train_08976.png", "caption": "Solo ragtime piano playing a lilting instrumental section with a bouncy bass part in the left hand. The bell sound effect happens once. Good for a sunny day at a County fair or carnival.", "data_idx": 4992, "number": 0, "label": "blues"} +{"file_name": "train_08977.png", "caption": "Solo ragtime piano playing a lilting instrumental section with a bouncy bass part in the left hand. The bell sound effect happens once. Good for a sunny day at a County fair or carnival.", "data_idx": 4992, "number": 1, "label": "blues"} +{"file_name": "train_08978.png", "caption": "Solo ragtime piano playing a lilting instrumental section with a bouncy bass part in the left hand. The bell sound effect happens once. Good for a sunny day at a County fair or carnival.", "data_idx": 4992, "number": 2, "label": "blues"} +{"file_name": "train_08979.png", "caption": "Solo ragtime piano playing a lilting instrumental section with a bouncy bass part in the left hand. The bell sound effect happens once. Good for a sunny day at a County fair or carnival.", "data_idx": 4992, "number": 3, "label": "blues"} +{"file_name": "train_08980.png", "caption": "The low quality recording features a live performance of flamenco guitar and acoustic guitar chord progressions. Towards the end of the loop, there are some percussive guitar taps. The recording is noisy as it was recorded outside.", "data_idx": 4993, "number": 0, "label": "classical"} +{"file_name": "train_08981.png", "caption": "The low quality recording features a live performance of flamenco guitar and acoustic guitar chord progressions. Towards the end of the loop, there are some percussive guitar taps. The recording is noisy as it was recorded outside.", "data_idx": 4993, "number": 1, "label": "classical"} +{"file_name": "train_08982.png", "caption": "The low quality recording features a live performance of flamenco guitar and acoustic guitar chord progressions. Towards the end of the loop, there are some percussive guitar taps. The recording is noisy as it was recorded outside.", "data_idx": 4993, "number": 2, "label": "classical"} +{"file_name": "train_08983.png", "caption": "The low quality recording features a live performance of flamenco guitar and acoustic guitar chord progressions. Towards the end of the loop, there are some percussive guitar taps. The recording is noisy as it was recorded outside.", "data_idx": 4993, "number": 3, "label": "classical"} +{"file_name": "train_08984.png", "caption": "The low quality recording features a groovy slapped bass guitar melody. There are some creaking string sounds and the recording is slightly noisy.", "data_idx": 4995, "number": 0, "label": "blues"} +{"file_name": "train_08985.png", "caption": "The low quality recording features a groovy slapped bass guitar melody. There are some creaking string sounds and the recording is slightly noisy.", "data_idx": 4995, "number": 1, "label": "blues"} +{"file_name": "train_08986.png", "caption": "The low quality recording features a groovy slapped bass guitar melody. There are some creaking string sounds and the recording is slightly noisy.", "data_idx": 4995, "number": 2, "label": "blues"} +{"file_name": "train_08987.png", "caption": "The low quality recording features a groovy slapped bass guitar melody. There are some creaking string sounds and the recording is slightly noisy.", "data_idx": 4995, "number": 3, "label": "blues"} +{"file_name": "train_08988.png", "caption": "This alternative rock song features a male voice singing in a foreign language. This is accompanied by a percussion playing a simple beat with a compound time signature of 6/8. An acoustic guitar strums chords in the background. An electric guitar plays two note licks. The bass plays the root note and fifth of the chords. The mood of this song is melancholic. This is a moderate tempo song. This song can be played in a movie scene involving a long drive on the highway at night.", "data_idx": 4996, "number": 0, "label": "rock"} +{"file_name": "train_08989.png", "caption": "This alternative rock song features a male voice singing in a foreign language. This is accompanied by a percussion playing a simple beat with a compound time signature of 6/8. An acoustic guitar strums chords in the background. An electric guitar plays two note licks. The bass plays the root note and fifth of the chords. The mood of this song is melancholic. This is a moderate tempo song. This song can be played in a movie scene involving a long drive on the highway at night.", "data_idx": 4996, "number": 1, "label": "rock"} +{"file_name": "train_08990.png", "caption": "This alternative rock song features a male voice singing in a foreign language. This is accompanied by a percussion playing a simple beat with a compound time signature of 6/8. An acoustic guitar strums chords in the background. An electric guitar plays two note licks. The bass plays the root note and fifth of the chords. The mood of this song is melancholic. This is a moderate tempo song. This song can be played in a movie scene involving a long drive on the highway at night.", "data_idx": 4996, "number": 2, "label": "rock"} +{"file_name": "train_08991.png", "caption": "This alternative rock song features a male voice singing in a foreign language. This is accompanied by a percussion playing a simple beat with a compound time signature of 6/8. An acoustic guitar strums chords in the background. An electric guitar plays two note licks. The bass plays the root note and fifth of the chords. The mood of this song is melancholic. This is a moderate tempo song. This song can be played in a movie scene involving a long drive on the highway at night.", "data_idx": 4996, "number": 3, "label": "rock"} diff --git a/data/train/metadata_0020.jsonl b/data/train/metadata_0020.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6712582d5d68b391bb0b2dcaa1732c5261ad7d04 --- /dev/null +++ b/data/train/metadata_0020.jsonl @@ -0,0 +1,314 @@ +{"file_name": "train_08992.png", "caption": "The low quality recording features a manic, crushed music playing in the background, while there are reverberant metallic, plastic tapping and male screaming sound effects. It sounds chaotic and like a sync sound for a cartoon.", "data_idx": 5004, "number": 0, "label": "hiphop"} +{"file_name": "train_08993.png", "caption": "The low quality recording features a manic, crushed music playing in the background, while there are reverberant metallic, plastic tapping and male screaming sound effects. It sounds chaotic and like a sync sound for a cartoon.", "data_idx": 5004, "number": 1, "label": "hiphop"} +{"file_name": "train_08994.png", "caption": "The low quality recording features a manic, crushed music playing in the background, while there are reverberant metallic, plastic tapping and male screaming sound effects. It sounds chaotic and like a sync sound for a cartoon.", "data_idx": 5004, "number": 2, "label": "hiphop"} +{"file_name": "train_08995.png", "caption": "The low quality recording features a manic, crushed music playing in the background, while there are reverberant metallic, plastic tapping and male screaming sound effects. It sounds chaotic and like a sync sound for a cartoon.", "data_idx": 5004, "number": 3, "label": "hiphop"} +{"file_name": "train_08996.png", "caption": "Someone is playing a melody on an acoustic guitar and someone another melody on a oud. The two melodies complement each other. This song may be playing in a live presentation.", "data_idx": 5006, "number": 0, "label": "jazz"} +{"file_name": "train_08997.png", "caption": "Someone is playing a melody on an acoustic guitar and someone another melody on a oud. The two melodies complement each other. This song may be playing in a live presentation.", "data_idx": 5006, "number": 1, "label": "jazz"} +{"file_name": "train_08998.png", "caption": "Someone is playing a melody on an acoustic guitar and someone another melody on a oud. The two melodies complement each other. This song may be playing in a live presentation.", "data_idx": 5006, "number": 2, "label": "jazz"} +{"file_name": "train_08999.png", "caption": "Someone is playing a melody on an acoustic guitar and someone another melody on a oud. The two melodies complement each other. This song may be playing in a live presentation.", "data_idx": 5006, "number": 3, "label": "jazz"} +{"file_name": "train_09000.png", "caption": "This song is an instrumental. The tempo is slow with vigorous drumming, keyboard and electric guitar harmony,beatboxing and the sound of a car horn .The song is vibrant, punchy, vigorous and upbeat with a dance groove. This song is a Pop Hit.", "data_idx": 5007, "number": 0, "label": "disco"} +{"file_name": "train_09001.png", "caption": "This song is an instrumental. The tempo is slow with vigorous drumming, keyboard and electric guitar harmony,beatboxing and the sound of a car horn .The song is vibrant, punchy, vigorous and upbeat with a dance groove. This song is a Pop Hit.", "data_idx": 5007, "number": 1, "label": "disco"} +{"file_name": "train_09002.png", "caption": "This song is an instrumental. The tempo is slow with vigorous drumming, keyboard and electric guitar harmony,beatboxing and the sound of a car horn .The song is vibrant, punchy, vigorous and upbeat with a dance groove. This song is a Pop Hit.", "data_idx": 5007, "number": 2, "label": "disco"} +{"file_name": "train_09003.png", "caption": "This song is an instrumental. The tempo is slow with vigorous drumming, keyboard and electric guitar harmony,beatboxing and the sound of a car horn .The song is vibrant, punchy, vigorous and upbeat with a dance groove. This song is a Pop Hit.", "data_idx": 5007, "number": 3, "label": "disco"} +{"file_name": "train_09004.png", "caption": "The song is an instrumental. The song is medium fast tempo with keyboard accompaniment, steady drumming rhythm, whopping sounds, strong bass line, and string synth harmony. The song is exciting and suspenseful. The song is a video arcade game soundtrack with average quality audio.", "data_idx": 5012, "number": 0, "label": "disco"} +{"file_name": "train_09005.png", "caption": "The song is an instrumental. The song is medium fast tempo with keyboard accompaniment, steady drumming rhythm, whopping sounds, strong bass line, and string synth harmony. The song is exciting and suspenseful. The song is a video arcade game soundtrack with average quality audio.", "data_idx": 5012, "number": 1, "label": "disco"} +{"file_name": "train_09006.png", "caption": "The song is an instrumental. The song is medium fast tempo with keyboard accompaniment, steady drumming rhythm, whopping sounds, strong bass line, and string synth harmony. The song is exciting and suspenseful. The song is a video arcade game soundtrack with average quality audio.", "data_idx": 5012, "number": 2, "label": "disco"} +{"file_name": "train_09007.png", "caption": "The song is an instrumental. The song is medium fast tempo with keyboard accompaniment, steady drumming rhythm, whopping sounds, strong bass line, and string synth harmony. The song is exciting and suspenseful. The song is a video arcade game soundtrack with average quality audio.", "data_idx": 5012, "number": 3, "label": "disco"} +{"file_name": "train_09008.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with an amplified guitar playing a distant rhythm with a percussive bass line. The song has ambient noises like rain pattering down, thunder rumble sounds and ambient noise. The sound quality is poor with hissing tones. The song is an amateur metal music video.", "data_idx": 5017, "number": 0, "label": "rock"} +{"file_name": "train_09009.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with an amplified guitar playing a distant rhythm with a percussive bass line. The song has ambient noises like rain pattering down, thunder rumble sounds and ambient noise. The sound quality is poor with hissing tones. The song is an amateur metal music video.", "data_idx": 5017, "number": 1, "label": "rock"} +{"file_name": "train_09010.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with an amplified guitar playing a distant rhythm with a percussive bass line. The song has ambient noises like rain pattering down, thunder rumble sounds and ambient noise. The sound quality is poor with hissing tones. The song is an amateur metal music video.", "data_idx": 5017, "number": 2, "label": "rock"} +{"file_name": "train_09011.png", "caption": "A male singer sings this passionate melody. The song is medium tempo with an amplified guitar playing a distant rhythm with a percussive bass line. The song has ambient noises like rain pattering down, thunder rumble sounds and ambient noise. The sound quality is poor with hissing tones. The song is an amateur metal music video.", "data_idx": 5017, "number": 3, "label": "rock"} +{"file_name": "train_09012.png", "caption": "The low quality recording features a groovy bass guitar played over a muffled, barely audible, playback instrumental. It sounds groovy and funky, even though you can hear that the player is practicing.", "data_idx": 5018, "number": 0, "label": "jazz"} +{"file_name": "train_09013.png", "caption": "The low quality recording features a groovy bass guitar played over a muffled, barely audible, playback instrumental. It sounds groovy and funky, even though you can hear that the player is practicing.", "data_idx": 5018, "number": 1, "label": "jazz"} +{"file_name": "train_09014.png", "caption": "The low quality recording features a hip hop song that consists doubled, cool male vocals, alongside background male ad libs, rapping over jazzy piano chords, groovy kick, shimmering hi hats and soft snare hits all located in the right channel of the stereo image, making it unbalanced. The recording is noisy.", "data_idx": 5019, "number": 0, "label": "hiphop"} +{"file_name": "train_09015.png", "caption": "The low quality recording features a hip hop song that consists doubled, cool male vocals, alongside background male ad libs, rapping over jazzy piano chords, groovy kick, shimmering hi hats and soft snare hits all located in the right channel of the stereo image, making it unbalanced. The recording is noisy.", "data_idx": 5019, "number": 1, "label": "hiphop"} +{"file_name": "train_09016.png", "caption": "The low quality recording features a hip hop song that consists doubled, cool male vocals, alongside background male ad libs, rapping over jazzy piano chords, groovy kick, shimmering hi hats and soft snare hits all located in the right channel of the stereo image, making it unbalanced. The recording is noisy.", "data_idx": 5019, "number": 2, "label": "hiphop"} +{"file_name": "train_09017.png", "caption": "The low quality recording features a hip hop song that consists doubled, cool male vocals, alongside background male ad libs, rapping over jazzy piano chords, groovy kick, shimmering hi hats and soft snare hits all located in the right channel of the stereo image, making it unbalanced. The recording is noisy.", "data_idx": 5019, "number": 3, "label": "hiphop"} +{"file_name": "train_09018.png", "caption": "The song is an instrumental. The tempo is medium with a brass band playing, trumpets blaring, tubas and trombones playing percussively, Latin percussions playing along with drum hits. The song is lively and exciting. The song is a brass band marching with a poor audio quality.", "data_idx": 5020, "number": 0, "label": "hiphop"} +{"file_name": "train_09019.png", "caption": "The song is an instrumental. The tempo is medium with a brass band playing, trumpets blaring, tubas and trombones playing percussively, Latin percussions playing along with drum hits. The song is lively and exciting. The song is a brass band marching with a poor audio quality.", "data_idx": 5020, "number": 1, "label": "hiphop"} +{"file_name": "train_09020.png", "caption": "The song is an instrumental. The tempo is medium with a brass band playing, trumpets blaring, tubas and trombones playing percussively, Latin percussions playing along with drum hits. The song is lively and exciting. The song is a brass band marching with a poor audio quality.", "data_idx": 5020, "number": 2, "label": "hiphop"} +{"file_name": "train_09021.png", "caption": "The song is an instrumental. The tempo is medium with a brass band playing, trumpets blaring, tubas and trombones playing percussively, Latin percussions playing along with drum hits. The song is lively and exciting. The song is a brass band marching with a poor audio quality.", "data_idx": 5020, "number": 3, "label": "hiphop"} +{"file_name": "train_09022.png", "caption": "The song is a vintage recording of a church choir singing in vocal harmony. The song is medium tempo with a church organ accompanying the choir with no other instrumentation. The song is devotional and prayerful. The audio quality is highly deteriorated and is probably an amateur home video recording. The song is a classic church choir harmony.", "data_idx": 5022, "number": 0, "label": "classical"} +{"file_name": "train_09023.png", "caption": "The song is a vintage recording of a church choir singing in vocal harmony. The song is medium tempo with a church organ accompanying the choir with no other instrumentation. The song is devotional and prayerful. The audio quality is highly deteriorated and is probably an amateur home video recording. The song is a classic church choir harmony.", "data_idx": 5022, "number": 1, "label": "classical"} +{"file_name": "train_09024.png", "caption": "The song is a vintage recording of a church choir singing in vocal harmony. The song is medium tempo with a church organ accompanying the choir with no other instrumentation. The song is devotional and prayerful. The audio quality is highly deteriorated and is probably an amateur home video recording. The song is a classic church choir harmony.", "data_idx": 5022, "number": 2, "label": "classical"} +{"file_name": "train_09025.png", "caption": "The song is a vintage recording of a church choir singing in vocal harmony. The song is medium tempo with a church organ accompanying the choir with no other instrumentation. The song is devotional and prayerful. The audio quality is highly deteriorated and is probably an amateur home video recording. The song is a classic church choir harmony.", "data_idx": 5022, "number": 3, "label": "classical"} +{"file_name": "train_09026.png", "caption": "This song contains a string instrument playing a fast and complex melody/solo while percussion instruments with a deep kick drum sound, shakers and complex clapping create a solid foundation. This song may be playing in a movie-scene in the desert.", "data_idx": 5023, "number": 0, "label": "reggae"} +{"file_name": "train_09027.png", "caption": "This song contains a string instrument playing a fast and complex melody/solo while percussion instruments with a deep kick drum sound, shakers and complex clapping create a solid foundation. This song may be playing in a movie-scene in the desert.", "data_idx": 5023, "number": 1, "label": "reggae"} +{"file_name": "train_09028.png", "caption": "This song contains a string instrument playing a fast and complex melody/solo while percussion instruments with a deep kick drum sound, shakers and complex clapping create a solid foundation. This song may be playing in a movie-scene in the desert.", "data_idx": 5023, "number": 2, "label": "reggae"} +{"file_name": "train_09029.png", "caption": "This song contains a string instrument playing a fast and complex melody/solo while percussion instruments with a deep kick drum sound, shakers and complex clapping create a solid foundation. This song may be playing in a movie-scene in the desert.", "data_idx": 5023, "number": 3, "label": "reggae"} +{"file_name": "train_09030.png", "caption": "This is an afrobeat music piece. There is a female vocalist singing in a seductive manner. There is an occasional male vocal sample. The keyboard is playing a minimalistic tune. There is an electronic drum beat. The atmosphere is groovy and erotic. This piece could be playing at an African nightclub.", "data_idx": 5024, "number": 0, "label": "disco"} +{"file_name": "train_09031.png", "caption": "This is an afrobeat music piece. There is a female vocalist singing in a seductive manner. There is an occasional male vocal sample. The keyboard is playing a minimalistic tune. There is an electronic drum beat. The atmosphere is groovy and erotic. This piece could be playing at an African nightclub.", "data_idx": 5024, "number": 1, "label": "disco"} +{"file_name": "train_09032.png", "caption": "This is an afrobeat music piece. There is a female vocalist singing in a seductive manner. There is an occasional male vocal sample. The keyboard is playing a minimalistic tune. There is an electronic drum beat. The atmosphere is groovy and erotic. This piece could be playing at an African nightclub.", "data_idx": 5024, "number": 2, "label": "disco"} +{"file_name": "train_09033.png", "caption": "This is an afrobeat music piece. There is a female vocalist singing in a seductive manner. There is an occasional male vocal sample. The keyboard is playing a minimalistic tune. There is an electronic drum beat. The atmosphere is groovy and erotic. This piece could be playing at an African nightclub.", "data_idx": 5024, "number": 3, "label": "disco"} +{"file_name": "train_09034.png", "caption": "The song is an instrumental. The tempo is medium with a marching band rhythm, snares playing percussively , cymbals crashing, brass band harmony, trumpets blaring, trombones and tubas playing long notes. The song has a patriotic fervour and inspires. The overall sound quality is poor.", "data_idx": 5027, "number": 0, "label": "classical"} +{"file_name": "train_09035.png", "caption": "The song is an instrumental. The tempo is medium with a marching band rhythm, snares playing percussively , cymbals crashing, brass band harmony, trumpets blaring, trombones and tubas playing long notes. The song has a patriotic fervour and inspires. The overall sound quality is poor.", "data_idx": 5027, "number": 1, "label": "classical"} +{"file_name": "train_09036.png", "caption": "The song is an instrumental. The tempo is medium with a marching band rhythm, snares playing percussively , cymbals crashing, brass band harmony, trumpets blaring, trombones and tubas playing long notes. The song has a patriotic fervour and inspires. The overall sound quality is poor.", "data_idx": 5027, "number": 2, "label": "classical"} +{"file_name": "train_09037.png", "caption": "The song is an instrumental. The tempo is medium with a marching band rhythm, snares playing percussively , cymbals crashing, brass band harmony, trumpets blaring, trombones and tubas playing long notes. The song has a patriotic fervour and inspires. The overall sound quality is poor.", "data_idx": 5027, "number": 3, "label": "classical"} +{"file_name": "train_09038.png", "caption": "This audio is of a low quality recording. It is a hip-hop song featuring a male voice singing the main melody. This is accompanied by a female voice singing vocals in an angelic voice in the background. Programmed percussion plays a simple beat with the hi-hat being struck at every count. The bass plays the root notes of the chords. The bass notes are allowed to ring. This song has a slow tempo. This song can be played in a club.", "data_idx": 5032, "number": 0, "label": "rock"} +{"file_name": "train_09039.png", "caption": "This audio is of a low quality recording. It is a hip-hop song featuring a male voice singing the main melody. This is accompanied by a female voice singing vocals in an angelic voice in the background. Programmed percussion plays a simple beat with the hi-hat being struck at every count. The bass plays the root notes of the chords. The bass notes are allowed to ring. This song has a slow tempo. This song can be played in a club.", "data_idx": 5032, "number": 1, "label": "rock"} +{"file_name": "train_09040.png", "caption": "This audio is of a low quality recording. It is a hip-hop song featuring a male voice singing the main melody. This is accompanied by a female voice singing vocals in an angelic voice in the background. Programmed percussion plays a simple beat with the hi-hat being struck at every count. The bass plays the root notes of the chords. The bass notes are allowed to ring. This song has a slow tempo. This song can be played in a club.", "data_idx": 5032, "number": 2, "label": "rock"} +{"file_name": "train_09041.png", "caption": "This audio is of a low quality recording. It is a hip-hop song featuring a male voice singing the main melody. This is accompanied by a female voice singing vocals in an angelic voice in the background. Programmed percussion plays a simple beat with the hi-hat being struck at every count. The bass plays the root notes of the chords. The bass notes are allowed to ring. This song has a slow tempo. This song can be played in a club.", "data_idx": 5032, "number": 3, "label": "rock"} +{"file_name": "train_09042.png", "caption": "This is a Czech rap music piece. There is a male voice rapping in the Czech language. There is a medium-pitch synth playing the melody. The medium tempo electronic drum beat carries the rhythmic background. The atmosphere of the piece is loud and aggressive. This piece could be used in the soundtrack of a crime movie taking place in Central Europe.", "data_idx": 5034, "number": 0, "label": "hiphop"} +{"file_name": "train_09043.png", "caption": "This is a Czech rap music piece. There is a male voice rapping in the Czech language. There is a medium-pitch synth playing the melody. The medium tempo electronic drum beat carries the rhythmic background. The atmosphere of the piece is loud and aggressive. This piece could be used in the soundtrack of a crime movie taking place in Central Europe.", "data_idx": 5034, "number": 1, "label": "hiphop"} +{"file_name": "train_09044.png", "caption": "This is a Czech rap music piece. There is a male voice rapping in the Czech language. There is a medium-pitch synth playing the melody. The medium tempo electronic drum beat carries the rhythmic background. The atmosphere of the piece is loud and aggressive. This piece could be used in the soundtrack of a crime movie taking place in Central Europe.", "data_idx": 5034, "number": 2, "label": "hiphop"} +{"file_name": "train_09045.png", "caption": "This is a Czech rap music piece. There is a male voice rapping in the Czech language. There is a medium-pitch synth playing the melody. The medium tempo electronic drum beat carries the rhythmic background. The atmosphere of the piece is loud and aggressive. This piece could be used in the soundtrack of a crime movie taking place in Central Europe.", "data_idx": 5034, "number": 3, "label": "hiphop"} +{"file_name": "train_09046.png", "caption": "This is a gospel piece used as an accompaniment to a tambourine dance. There is a female vocalist singing. There is an electric guitar and a xylophone playing the melody. The tune is not very clear due to the quality of the recording. The atmosphere is religious. Samples could be lifted from this recording to be used in a beat.", "data_idx": 5035, "number": 0, "label": "rock"} +{"file_name": "train_09047.png", "caption": "This is a gospel piece used as an accompaniment to a tambourine dance. There is a female vocalist singing. There is an electric guitar and a xylophone playing the melody. The tune is not very clear due to the quality of the recording. The atmosphere is religious. Samples could be lifted from this recording to be used in a beat.", "data_idx": 5035, "number": 1, "label": "rock"} +{"file_name": "train_09048.png", "caption": "This is a gospel piece used as an accompaniment to a tambourine dance. There is a female vocalist singing. There is an electric guitar and a xylophone playing the melody. The tune is not very clear due to the quality of the recording. The atmosphere is religious. Samples could be lifted from this recording to be used in a beat.", "data_idx": 5035, "number": 2, "label": "rock"} +{"file_name": "train_09049.png", "caption": "This is a gospel piece used as an accompaniment to a tambourine dance. There is a female vocalist singing. There is an electric guitar and a xylophone playing the melody. The tune is not very clear due to the quality of the recording. The atmosphere is religious. Samples could be lifted from this recording to be used in a beat.", "data_idx": 5035, "number": 3, "label": "rock"} +{"file_name": "train_09050.png", "caption": "A lo-fi pluck, bell sound is playing an arpeggio melody. It sounds dreamy and melancholic. This song may be playing in a sequence of a video game.", "data_idx": 5040, "number": 0, "label": "classical"} +{"file_name": "train_09051.png", "caption": "A lo-fi pluck, bell sound is playing an arpeggio melody. It sounds dreamy and melancholic. This song may be playing in a sequence of a video game.", "data_idx": 5040, "number": 1, "label": "classical"} +{"file_name": "train_09052.png", "caption": "This music is a cheerful instrumental. The tempo is medium with the lead harmony on a Xylophone, energetic drumming, keyboard accompaniment and rhythmic acoustic guitar. The audio quality is inferior and the music is muffled and muddy. There are background sounds like people talking, laughing and ambient nature sounds like a breeze. The music is fun, youthful, simple, enjoyable, chirpy and vivacious.", "data_idx": 5042, "number": 0, "label": "classical"} +{"file_name": "train_09053.png", "caption": "This music is a cheerful instrumental. The tempo is medium with the lead harmony on a Xylophone, energetic drumming, keyboard accompaniment and rhythmic acoustic guitar. The audio quality is inferior and the music is muffled and muddy. There are background sounds like people talking, laughing and ambient nature sounds like a breeze. The music is fun, youthful, simple, enjoyable, chirpy and vivacious.", "data_idx": 5042, "number": 1, "label": "classical"} +{"file_name": "train_09054.png", "caption": "This music is a cheerful instrumental. The tempo is medium with the lead harmony on a Xylophone, energetic drumming, keyboard accompaniment and rhythmic acoustic guitar. The audio quality is inferior and the music is muffled and muddy. There are background sounds like people talking, laughing and ambient nature sounds like a breeze. The music is fun, youthful, simple, enjoyable, chirpy and vivacious.", "data_idx": 5042, "number": 2, "label": "classical"} +{"file_name": "train_09055.png", "caption": "This music is a cheerful instrumental. The tempo is medium with the lead harmony on a Xylophone, energetic drumming, keyboard accompaniment and rhythmic acoustic guitar. The audio quality is inferior and the music is muffled and muddy. There are background sounds like people talking, laughing and ambient nature sounds like a breeze. The music is fun, youthful, simple, enjoyable, chirpy and vivacious.", "data_idx": 5042, "number": 3, "label": "classical"} +{"file_name": "train_09056.png", "caption": "The low quality recording features a live performance and it consists of groovy strings chords, addictive strings melody, breathy flute melody, simple bass and wooden percussive elements. It is a bit noisy, roomy, mono, but still addictive and soulful.", "data_idx": 5044, "number": 0, "label": "classical"} +{"file_name": "train_09057.png", "caption": "The low quality recording features a live performance and it consists of groovy strings chords, addictive strings melody, breathy flute melody, simple bass and wooden percussive elements. It is a bit noisy, roomy, mono, but still addictive and soulful.", "data_idx": 5044, "number": 1, "label": "classical"} +{"file_name": "train_09058.png", "caption": "The low quality recording features a live performance and it consists of groovy strings chords, addictive strings melody, breathy flute melody, simple bass and wooden percussive elements. It is a bit noisy, roomy, mono, but still addictive and soulful.", "data_idx": 5044, "number": 2, "label": "classical"} +{"file_name": "train_09059.png", "caption": "The low quality recording features a live performance and it consists of groovy strings chords, addictive strings melody, breathy flute melody, simple bass and wooden percussive elements. It is a bit noisy, roomy, mono, but still addictive and soulful.", "data_idx": 5044, "number": 3, "label": "classical"} +{"file_name": "train_09060.png", "caption": "The low quality recording features a children's song that consists of organ keys chords, groovy piano chords, light snare hits, soft kick hits, shimmering hi hats, and flute melody. There are some squeaky sound effects, alongside plastic foley effects and outdoor ambience sounds. It sounds fun and happy, like something kids would listen to.", "data_idx": 5045, "number": 0, "label": "rock"} +{"file_name": "train_09061.png", "caption": "The low quality recording features a children's song that consists of organ keys chords, groovy piano chords, light snare hits, soft kick hits, shimmering hi hats, and flute melody. There are some squeaky sound effects, alongside plastic foley effects and outdoor ambience sounds. It sounds fun and happy, like something kids would listen to.", "data_idx": 5045, "number": 1, "label": "rock"} +{"file_name": "train_09062.png", "caption": "The low quality recording features a children's song that consists of organ keys chords, groovy piano chords, light snare hits, soft kick hits, shimmering hi hats, and flute melody. There are some squeaky sound effects, alongside plastic foley effects and outdoor ambience sounds. It sounds fun and happy, like something kids would listen to.", "data_idx": 5045, "number": 2, "label": "rock"} +{"file_name": "train_09063.png", "caption": "The low quality recording features a children's song that consists of organ keys chords, groovy piano chords, light snare hits, soft kick hits, shimmering hi hats, and flute melody. There are some squeaky sound effects, alongside plastic foley effects and outdoor ambience sounds. It sounds fun and happy, like something kids would listen to.", "data_idx": 5045, "number": 3, "label": "rock"} +{"file_name": "train_09064.png", "caption": "This children's song features truck sounds. This is accompanied by a keyboard playing a melody using a flute-like sound. A twinkling melody is played in the background. The percussion is programmed. The percussion plays a simple beat. The bass plays the root and fifth notes of the chords. The mood of the song is happy. There are no voices in this song. This song can be used in a children's animated movie.", "data_idx": 5046, "number": 0, "label": "jazz"} +{"file_name": "train_09065.png", "caption": "This children's song features truck sounds. This is accompanied by a keyboard playing a melody using a flute-like sound. A twinkling melody is played in the background. The percussion is programmed. The percussion plays a simple beat. The bass plays the root and fifth notes of the chords. The mood of the song is happy. There are no voices in this song. This song can be used in a children's animated movie.", "data_idx": 5046, "number": 1, "label": "jazz"} +{"file_name": "train_09066.png", "caption": "This children's song features truck sounds. This is accompanied by a keyboard playing a melody using a flute-like sound. A twinkling melody is played in the background. The percussion is programmed. The percussion plays a simple beat. The bass plays the root and fifth notes of the chords. The mood of the song is happy. There are no voices in this song. This song can be used in a children's animated movie.", "data_idx": 5046, "number": 2, "label": "jazz"} +{"file_name": "train_09067.png", "caption": "This children's song features truck sounds. This is accompanied by a keyboard playing a melody using a flute-like sound. A twinkling melody is played in the background. The percussion is programmed. The percussion plays a simple beat. The bass plays the root and fifth notes of the chords. The mood of the song is happy. There are no voices in this song. This song can be used in a children's animated movie.", "data_idx": 5046, "number": 3, "label": "jazz"} +{"file_name": "train_09068.png", "caption": "This instrument is a low quality audio recording. The instruments are not audible.", "data_idx": 5048, "number": 0, "label": "jazz"} +{"file_name": "train_09069.png", "caption": "This instrument is a low quality audio recording. The instruments are not audible.", "data_idx": 5048, "number": 1, "label": "jazz"} +{"file_name": "train_09070.png", "caption": "The Hip Hop song features a flat male vocal rapping over arpeggiated piano melody, sustained high pitched violin melody, punchy snare and kick hits, simple hi hats, boomy bass and soft crash cymbal. It sounds heartfelt, emotional and sad.", "data_idx": 5049, "number": 0, "label": "reggae"} +{"file_name": "train_09071.png", "caption": "The Hip Hop song features a flat male vocal rapping over arpeggiated piano melody, sustained high pitched violin melody, punchy snare and kick hits, simple hi hats, boomy bass and soft crash cymbal. It sounds heartfelt, emotional and sad.", "data_idx": 5049, "number": 1, "label": "reggae"} +{"file_name": "train_09072.png", "caption": "The Hip Hop song features a flat male vocal rapping over arpeggiated piano melody, sustained high pitched violin melody, punchy snare and kick hits, simple hi hats, boomy bass and soft crash cymbal. It sounds heartfelt, emotional and sad.", "data_idx": 5049, "number": 2, "label": "reggae"} +{"file_name": "train_09073.png", "caption": "The Hip Hop song features a flat male vocal rapping over arpeggiated piano melody, sustained high pitched violin melody, punchy snare and kick hits, simple hi hats, boomy bass and soft crash cymbal. It sounds heartfelt, emotional and sad.", "data_idx": 5049, "number": 3, "label": "reggae"} +{"file_name": "train_09074.png", "caption": "The low quality recording features a soft rock song sung by a flat male vocal over mellow, acoustic rhythm guitar chords. It sounds vintage and therefore nostalgic, emotional, sentimental and warm. The recording is a bit noisy and in mono as well.", "data_idx": 5052, "number": 0, "label": "country"} +{"file_name": "train_09075.png", "caption": "The low quality recording features a soft rock song sung by a flat male vocal over mellow, acoustic rhythm guitar chords. It sounds vintage and therefore nostalgic, emotional, sentimental and warm. The recording is a bit noisy and in mono as well.", "data_idx": 5052, "number": 1, "label": "country"} +{"file_name": "train_09076.png", "caption": "The low quality recording features a soft rock song sung by a flat male vocal over mellow, acoustic rhythm guitar chords. It sounds vintage and therefore nostalgic, emotional, sentimental and warm. The recording is a bit noisy and in mono as well.", "data_idx": 5052, "number": 2, "label": "country"} +{"file_name": "train_09077.png", "caption": "The low quality recording features a soft rock song sung by a flat male vocal over mellow, acoustic rhythm guitar chords. It sounds vintage and therefore nostalgic, emotional, sentimental and warm. The recording is a bit noisy and in mono as well.", "data_idx": 5052, "number": 3, "label": "country"} +{"file_name": "train_09078.png", "caption": "A female vocalist sings this pleasant chant. The song is medium fast tempo with groovy basslines, mellifluous flute, steel pan beat,small hand cymbals and synthesiser arrangement. The song is sweet, melodic, hypnotic, enthralling, enigmatic, trance-like, trippy and psychedelic. This song is a contemporary indian worship song.", "data_idx": 5054, "number": 0, "label": "pop"} +{"file_name": "train_09079.png", "caption": "A female vocalist sings this pleasant chant. The song is medium fast tempo with groovy basslines, mellifluous flute, steel pan beat,small hand cymbals and synthesiser arrangement. The song is sweet, melodic, hypnotic, enthralling, enigmatic, trance-like, trippy and psychedelic. This song is a contemporary indian worship song.", "data_idx": 5054, "number": 1, "label": "pop"} +{"file_name": "train_09080.png", "caption": "A female vocalist sings this pleasant chant. The song is medium fast tempo with groovy basslines, mellifluous flute, steel pan beat,small hand cymbals and synthesiser arrangement. The song is sweet, melodic, hypnotic, enthralling, enigmatic, trance-like, trippy and psychedelic. This song is a contemporary indian worship song.", "data_idx": 5054, "number": 2, "label": "pop"} +{"file_name": "train_09081.png", "caption": "A female vocalist sings this pleasant chant. The song is medium fast tempo with groovy basslines, mellifluous flute, steel pan beat,small hand cymbals and synthesiser arrangement. The song is sweet, melodic, hypnotic, enthralling, enigmatic, trance-like, trippy and psychedelic. This song is a contemporary indian worship song.", "data_idx": 5054, "number": 3, "label": "pop"} +{"file_name": "train_09082.png", "caption": "This is a live performance of a religious song. There is a male vocalist singing melodically as the lead. The main melody is being played by the keyboard with the electric guitar and the bass guitar in the background. The rhythmic background is provided by the electronic drums and the electronic percussion. The piece has movements reminiscent of Jewish music.", "data_idx": 5055, "number": 0, "label": "rock"} +{"file_name": "train_09083.png", "caption": "This is a live performance of a religious song. There is a male vocalist singing melodically as the lead. The main melody is being played by the keyboard with the electric guitar and the bass guitar in the background. The rhythmic background is provided by the electronic drums and the electronic percussion. The piece has movements reminiscent of Jewish music.", "data_idx": 5055, "number": 1, "label": "rock"} +{"file_name": "train_09084.png", "caption": "This is a live performance of a religious song. There is a male vocalist singing melodically as the lead. The main melody is being played by the keyboard with the electric guitar and the bass guitar in the background. The rhythmic background is provided by the electronic drums and the electronic percussion. The piece has movements reminiscent of Jewish music.", "data_idx": 5055, "number": 2, "label": "rock"} +{"file_name": "train_09085.png", "caption": "This is a live performance of a religious song. There is a male vocalist singing melodically as the lead. The main melody is being played by the keyboard with the electric guitar and the bass guitar in the background. The rhythmic background is provided by the electronic drums and the electronic percussion. The piece has movements reminiscent of Jewish music.", "data_idx": 5055, "number": 3, "label": "rock"} +{"file_name": "train_09086.png", "caption": "A baby cries in pain followed by a slowed down version of the audio that sounds like a groan. The sound track has an Arabian flavour to it with a traditional horn playing melody with a keyboard harmony and no percussion. The audio quality is extremely poor and highly distorted.", "data_idx": 5059, "number": 0, "label": "classical"} +{"file_name": "train_09087.png", "caption": "A baby cries in pain followed by a slowed down version of the audio that sounds like a groan. The sound track has an Arabian flavour to it with a traditional horn playing melody with a keyboard harmony and no percussion. The audio quality is extremely poor and highly distorted.", "data_idx": 5059, "number": 1, "label": "classical"} +{"file_name": "train_09088.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern perfectly complemented by groovy bass, followed by tinny laser percussive sound effects, shimmering cymbals, claps and echoing pulsating synth lead melody. Sounds energetic, a bit addictive thanks to that synth lead and something like you would hear in electronic dance music clubs.", "data_idx": 5061, "number": 0, "label": "hiphop"} +{"file_name": "train_09089.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern perfectly complemented by groovy bass, followed by tinny laser percussive sound effects, shimmering cymbals, claps and echoing pulsating synth lead melody. Sounds energetic, a bit addictive thanks to that synth lead and something like you would hear in electronic dance music clubs.", "data_idx": 5061, "number": 1, "label": "hiphop"} +{"file_name": "train_09090.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern perfectly complemented by groovy bass, followed by tinny laser percussive sound effects, shimmering cymbals, claps and echoing pulsating synth lead melody. Sounds energetic, a bit addictive thanks to that synth lead and something like you would hear in electronic dance music clubs.", "data_idx": 5061, "number": 2, "label": "hiphop"} +{"file_name": "train_09091.png", "caption": "The Electro song features a punchy \"4 on the floor\" kick pattern perfectly complemented by groovy bass, followed by tinny laser percussive sound effects, shimmering cymbals, claps and echoing pulsating synth lead melody. Sounds energetic, a bit addictive thanks to that synth lead and something like you would hear in electronic dance music clubs.", "data_idx": 5061, "number": 3, "label": "hiphop"} +{"file_name": "train_09092.png", "caption": "This kids song features groovy synth keys, chords, simple piano melody, echoing and wide pig oink sound effects, shimmering shakers, muffled claps, soft kick hits and groovy bass. It sounds fun and happy - like something that children would listen to in their favorite tv shows.", "data_idx": 5062, "number": 0, "label": "reggae"} +{"file_name": "train_09093.png", "caption": "This kids song features groovy synth keys, chords, simple piano melody, echoing and wide pig oink sound effects, shimmering shakers, muffled claps, soft kick hits and groovy bass. It sounds fun and happy - like something that children would listen to in their favorite tv shows.", "data_idx": 5062, "number": 1, "label": "reggae"} +{"file_name": "train_09094.png", "caption": "This kids song features groovy synth keys, chords, simple piano melody, echoing and wide pig oink sound effects, shimmering shakers, muffled claps, soft kick hits and groovy bass. It sounds fun and happy - like something that children would listen to in their favorite tv shows.", "data_idx": 5062, "number": 2, "label": "reggae"} +{"file_name": "train_09095.png", "caption": "This kids song features groovy synth keys, chords, simple piano melody, echoing and wide pig oink sound effects, shimmering shakers, muffled claps, soft kick hits and groovy bass. It sounds fun and happy - like something that children would listen to in their favorite tv shows.", "data_idx": 5062, "number": 3, "label": "reggae"} +{"file_name": "train_09096.png", "caption": "This clip is an instrumental. The tempo is slow with the sound of an acoustic guitar being tuned. This is a tutorial on how to tune a guitar.", "data_idx": 5063, "number": 0, "label": "jazz"} +{"file_name": "train_09097.png", "caption": "This clip is an instrumental. The tempo is slow with the sound of an acoustic guitar being tuned. This is a tutorial on how to tune a guitar.", "data_idx": 5063, "number": 1, "label": "jazz"} +{"file_name": "train_09098.png", "caption": "The low quality recording features an electro song that consists of a \"4 on the floor\" kick pattern and widely spread repetitive synth melody. The recording is crackly and it sounds hypnotic and energetic as the synth lead is moving left and right throughout the stereo image.", "data_idx": 5069, "number": 0, "label": "reggae"} +{"file_name": "train_09099.png", "caption": "The low quality recording features an electro song that consists of a \"4 on the floor\" kick pattern and widely spread repetitive synth melody. The recording is crackly and it sounds hypnotic and energetic as the synth lead is moving left and right throughout the stereo image.", "data_idx": 5069, "number": 1, "label": "reggae"} +{"file_name": "train_09100.png", "caption": "The low quality recording features an electro song that consists of a \"4 on the floor\" kick pattern and widely spread repetitive synth melody. The recording is crackly and it sounds hypnotic and energetic as the synth lead is moving left and right throughout the stereo image.", "data_idx": 5069, "number": 2, "label": "reggae"} +{"file_name": "train_09101.png", "caption": "The low quality recording features an electro song that consists of a \"4 on the floor\" kick pattern and widely spread repetitive synth melody. The recording is crackly and it sounds hypnotic and energetic as the synth lead is moving left and right throughout the stereo image.", "data_idx": 5069, "number": 3, "label": "reggae"} +{"file_name": "train_09102.png", "caption": "This is a trap music piece done in the style of Michael Jackson. There is a male vocalist singing in a very accentuated manner. In the rhythmic background loud electronic drums can be heard with the cicada beat on the hihats which is essential to the trap scene. There is a strong electronic bass sound accompanied every now and then by an electric guitar sample.", "data_idx": 5072, "number": 0, "label": "pop"} +{"file_name": "train_09103.png", "caption": "This is a trap music piece done in the style of Michael Jackson. There is a male vocalist singing in a very accentuated manner. In the rhythmic background loud electronic drums can be heard with the cicada beat on the hihats which is essential to the trap scene. There is a strong electronic bass sound accompanied every now and then by an electric guitar sample.", "data_idx": 5072, "number": 1, "label": "pop"} +{"file_name": "train_09104.png", "caption": "This is a trap music piece done in the style of Michael Jackson. There is a male vocalist singing in a very accentuated manner. In the rhythmic background loud electronic drums can be heard with the cicada beat on the hihats which is essential to the trap scene. There is a strong electronic bass sound accompanied every now and then by an electric guitar sample.", "data_idx": 5072, "number": 2, "label": "pop"} +{"file_name": "train_09105.png", "caption": "This is a trap music piece done in the style of Michael Jackson. There is a male vocalist singing in a very accentuated manner. In the rhythmic background loud electronic drums can be heard with the cicada beat on the hihats which is essential to the trap scene. There is a strong electronic bass sound accompanied every now and then by an electric guitar sample.", "data_idx": 5072, "number": 3, "label": "pop"} +{"file_name": "train_09106.png", "caption": "The low quality recording features a high pitched, sped up audio playing in the background, followed by arpeggiated electric guitar melody and smooth bass guitar. Even though the sped up audio sounds weird, the guitar melodies are emotional.", "data_idx": 5076, "number": 0, "label": "jazz"} +{"file_name": "train_09107.png", "caption": "The low quality recording features a high pitched, sped up audio playing in the background, followed by arpeggiated electric guitar melody and smooth bass guitar. Even though the sped up audio sounds weird, the guitar melodies are emotional.", "data_idx": 5076, "number": 1, "label": "jazz"} +{"file_name": "train_09108.png", "caption": "The low quality recording features a high pitched, sped up audio playing in the background, followed by arpeggiated electric guitar melody and smooth bass guitar. Even though the sped up audio sounds weird, the guitar melodies are emotional.", "data_idx": 5076, "number": 2, "label": "jazz"} +{"file_name": "train_09109.png", "caption": "The low quality recording features a high pitched, sped up audio playing in the background, followed by arpeggiated electric guitar melody and smooth bass guitar. Even though the sped up audio sounds weird, the guitar melodies are emotional.", "data_idx": 5076, "number": 3, "label": "jazz"} +{"file_name": "train_09110.png", "caption": "This hip-hop song features a high pitched voice sounding like a cartoon voice singing the main melody. The quality of the recording is low and some of the instruments cannot be identified. The voice is accompanied by a flute in the beginning and then a piano fill. A synth plays chords in the background. This song can be played in an animated movie.", "data_idx": 5078, "number": 0, "label": "classical"} +{"file_name": "train_09111.png", "caption": "This hip-hop song features a high pitched voice sounding like a cartoon voice singing the main melody. The quality of the recording is low and some of the instruments cannot be identified. The voice is accompanied by a flute in the beginning and then a piano fill. A synth plays chords in the background. This song can be played in an animated movie.", "data_idx": 5078, "number": 1, "label": "classical"} +{"file_name": "train_09112.png", "caption": "This hip-hop song features a high pitched voice sounding like a cartoon voice singing the main melody. The quality of the recording is low and some of the instruments cannot be identified. The voice is accompanied by a flute in the beginning and then a piano fill. A synth plays chords in the background. This song can be played in an animated movie.", "data_idx": 5078, "number": 2, "label": "classical"} +{"file_name": "train_09113.png", "caption": "This hip-hop song features a high pitched voice sounding like a cartoon voice singing the main melody. The quality of the recording is low and some of the instruments cannot be identified. The voice is accompanied by a flute in the beginning and then a piano fill. A synth plays chords in the background. This song can be played in an animated movie.", "data_idx": 5078, "number": 3, "label": "classical"} +{"file_name": "train_09114.png", "caption": "A lot of high frequencies that are produced by an e-bass and two distorted electric guitars are running through amps that are sounding highly overdriven. The drums silently build up the atmosphere before all instruments are loudly breaking into the next part of the song. The drums with crash hits and the guitars and bass with one single low note while a male voice is screaming. This song may be playing at a festival.", "data_idx": 5081, "number": 0, "label": "metal"} +{"file_name": "train_09115.png", "caption": "A lot of high frequencies that are produced by an e-bass and two distorted electric guitars are running through amps that are sounding highly overdriven. The drums silently build up the atmosphere before all instruments are loudly breaking into the next part of the song. The drums with crash hits and the guitars and bass with one single low note while a male voice is screaming. This song may be playing at a festival.", "data_idx": 5081, "number": 1, "label": "metal"} +{"file_name": "train_09116.png", "caption": "A lot of high frequencies that are produced by an e-bass and two distorted electric guitars are running through amps that are sounding highly overdriven. The drums silently build up the atmosphere before all instruments are loudly breaking into the next part of the song. The drums with crash hits and the guitars and bass with one single low note while a male voice is screaming. This song may be playing at a festival.", "data_idx": 5081, "number": 2, "label": "metal"} +{"file_name": "train_09117.png", "caption": "A lot of high frequencies that are produced by an e-bass and two distorted electric guitars are running through amps that are sounding highly overdriven. The drums silently build up the atmosphere before all instruments are loudly breaking into the next part of the song. The drums with crash hits and the guitars and bass with one single low note while a male voice is screaming. This song may be playing at a festival.", "data_idx": 5081, "number": 3, "label": "metal"} +{"file_name": "train_09118.png", "caption": "The song is an instrumental. The song is medium fast tempo with a strong techno drum rhythm, groovy bass line, keyboard harmony and percussion hits. The song is exciting and groovy for dance. The audio quality is poor.", "data_idx": 5086, "number": 0, "label": "hiphop"} +{"file_name": "train_09119.png", "caption": "The song is an instrumental. The song is medium fast tempo with a strong techno drum rhythm, groovy bass line, keyboard harmony and percussion hits. The song is exciting and groovy for dance. The audio quality is poor.", "data_idx": 5086, "number": 1, "label": "hiphop"} +{"file_name": "train_09120.png", "caption": "The song is an instrumental. The song is medium fast tempo with a strong techno drum rhythm, groovy bass line, keyboard harmony and percussion hits. The song is exciting and groovy for dance. The audio quality is poor.", "data_idx": 5086, "number": 2, "label": "hiphop"} +{"file_name": "train_09121.png", "caption": "The song is an instrumental. The song is medium fast tempo with a strong techno drum rhythm, groovy bass line, keyboard harmony and percussion hits. The song is exciting and groovy for dance. The audio quality is poor.", "data_idx": 5086, "number": 3, "label": "hiphop"} +{"file_name": "train_09122.png", "caption": "A male vocalist sings this energetic rap. The tempo is fast with electronic music and synthesiser arrangements with digital drum rhythm and boomy bass. The song is upbeat, energetic, buoyant, punchy and youthful with a bright dance groove. This song is an EDM/Synth pop.", "data_idx": 5089, "number": 0, "label": "hiphop"} +{"file_name": "train_09123.png", "caption": "A male vocalist sings this energetic rap. The tempo is fast with electronic music and synthesiser arrangements with digital drum rhythm and boomy bass. The song is upbeat, energetic, buoyant, punchy and youthful with a bright dance groove. This song is an EDM/Synth pop.", "data_idx": 5089, "number": 1, "label": "hiphop"} +{"file_name": "train_09124.png", "caption": "A male vocalist sings this energetic rap. The tempo is fast with electronic music and synthesiser arrangements with digital drum rhythm and boomy bass. The song is upbeat, energetic, buoyant, punchy and youthful with a bright dance groove. This song is an EDM/Synth pop.", "data_idx": 5089, "number": 2, "label": "hiphop"} +{"file_name": "train_09125.png", "caption": "A male vocalist sings this energetic rap. The tempo is fast with electronic music and synthesiser arrangements with digital drum rhythm and boomy bass. The song is upbeat, energetic, buoyant, punchy and youthful with a bright dance groove. This song is an EDM/Synth pop.", "data_idx": 5089, "number": 3, "label": "hiphop"} +{"file_name": "train_09126.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, digital drum arrangements and an insistent, recurring female vocalisation. The music is upbeat, youthful, trance, trippy, hypnotic, psychedelic, incessant, and enthusiastic EDM/Synth Pop.", "data_idx": 5091, "number": 0, "label": "hiphop"} +{"file_name": "train_09127.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, digital drum arrangements and an insistent, recurring female vocalisation. The music is upbeat, youthful, trance, trippy, hypnotic, psychedelic, incessant, and enthusiastic EDM/Synth Pop.", "data_idx": 5091, "number": 1, "label": "hiphop"} +{"file_name": "train_09128.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, digital drum arrangements and an insistent, recurring female vocalisation. The music is upbeat, youthful, trance, trippy, hypnotic, psychedelic, incessant, and enthusiastic EDM/Synth Pop.", "data_idx": 5091, "number": 2, "label": "hiphop"} +{"file_name": "train_09129.png", "caption": "This music is an electronic instrumental. The tempo is fast with atmospheric synthesiser, digital drum arrangements and an insistent, recurring female vocalisation. The music is upbeat, youthful, trance, trippy, hypnotic, psychedelic, incessant, and enthusiastic EDM/Synth Pop.", "data_idx": 5091, "number": 3, "label": "hiphop"} +{"file_name": "train_09130.png", "caption": "The Electro song features a resonant synth melody, repetitive synth melody and widely spread, mellow synth pad chords playing. It sounds relaxing and calming, like something you would listen to while chilling.", "data_idx": 5093, "number": 0, "label": "blues"} +{"file_name": "train_09131.png", "caption": "The Electro song features a resonant synth melody, repetitive synth melody and widely spread, mellow synth pad chords playing. It sounds relaxing and calming, like something you would listen to while chilling.", "data_idx": 5093, "number": 1, "label": "blues"} +{"file_name": "train_09132.png", "caption": "The Electro song features a resonant synth melody, repetitive synth melody and widely spread, mellow synth pad chords playing. It sounds relaxing and calming, like something you would listen to while chilling.", "data_idx": 5093, "number": 2, "label": "blues"} +{"file_name": "train_09133.png", "caption": "The Electro song features a resonant synth melody, repetitive synth melody and widely spread, mellow synth pad chords playing. It sounds relaxing and calming, like something you would listen to while chilling.", "data_idx": 5093, "number": 3, "label": "blues"} +{"file_name": "train_09134.png", "caption": "The song has a futuristic kind of feel. It's a synth pop song with a female vocalist who has a robotic filter and autotune applied to her voice. The feel of the song is sort of epic and progressive. It's action-oriented and feels like something cool is about to happen.", "data_idx": 5094, "number": 0, "label": "hiphop"} +{"file_name": "train_09135.png", "caption": "The song has a futuristic kind of feel. It's a synth pop song with a female vocalist who has a robotic filter and autotune applied to her voice. The feel of the song is sort of epic and progressive. It's action-oriented and feels like something cool is about to happen.", "data_idx": 5094, "number": 1, "label": "hiphop"} +{"file_name": "train_09136.png", "caption": "The song has a futuristic kind of feel. It's a synth pop song with a female vocalist who has a robotic filter and autotune applied to her voice. The feel of the song is sort of epic and progressive. It's action-oriented and feels like something cool is about to happen.", "data_idx": 5094, "number": 2, "label": "hiphop"} +{"file_name": "train_09137.png", "caption": "The song has a futuristic kind of feel. It's a synth pop song with a female vocalist who has a robotic filter and autotune applied to her voice. The feel of the song is sort of epic and progressive. It's action-oriented and feels like something cool is about to happen.", "data_idx": 5094, "number": 3, "label": "hiphop"} +{"file_name": "train_09138.png", "caption": "The low quality recording features a rock song that contains filtered female vocal singing over loud and harsh electric guitar chords, energetic drums and buzzy bass guitar. It sounds chaotic due to the bad mix and since the drums are panned in an unconventional way - making the stereo image unbalanced. It sounds harsh, but also energetic.", "data_idx": 5095, "number": 0, "label": "rock"} +{"file_name": "train_09139.png", "caption": "The low quality recording features a rock song that contains filtered female vocal singing over loud and harsh electric guitar chords, energetic drums and buzzy bass guitar. It sounds chaotic due to the bad mix and since the drums are panned in an unconventional way - making the stereo image unbalanced. It sounds harsh, but also energetic.", "data_idx": 5095, "number": 1, "label": "rock"} +{"file_name": "train_09140.png", "caption": "The low quality recording features a rock song that contains filtered female vocal singing over loud and harsh electric guitar chords, energetic drums and buzzy bass guitar. It sounds chaotic due to the bad mix and since the drums are panned in an unconventional way - making the stereo image unbalanced. It sounds harsh, but also energetic.", "data_idx": 5095, "number": 2, "label": "rock"} +{"file_name": "train_09141.png", "caption": "The low quality recording features a rock song that contains filtered female vocal singing over loud and harsh electric guitar chords, energetic drums and buzzy bass guitar. It sounds chaotic due to the bad mix and since the drums are panned in an unconventional way - making the stereo image unbalanced. It sounds harsh, but also energetic.", "data_idx": 5095, "number": 3, "label": "rock"} +{"file_name": "train_09142.png", "caption": "A digital drum is playing a simple groove along with an e-bass. An organ is playing long chords with a lot of reverb. On top of that male voices sing a melody in harmony. Their voices sound high. This song may be playing with headphones while running.", "data_idx": 5096, "number": 0, "label": "rock"} +{"file_name": "train_09143.png", "caption": "A digital drum is playing a simple groove along with an e-bass. An organ is playing long chords with a lot of reverb. On top of that male voices sing a melody in harmony. Their voices sound high. This song may be playing with headphones while running.", "data_idx": 5096, "number": 1, "label": "rock"} +{"file_name": "train_09144.png", "caption": "A digital drum is playing a simple groove along with an e-bass. An organ is playing long chords with a lot of reverb. On top of that male voices sing a melody in harmony. Their voices sound high. This song may be playing with headphones while running.", "data_idx": 5096, "number": 2, "label": "rock"} +{"file_name": "train_09145.png", "caption": "A digital drum is playing a simple groove along with an e-bass. An organ is playing long chords with a lot of reverb. On top of that male voices sing a melody in harmony. Their voices sound high. This song may be playing with headphones while running.", "data_idx": 5096, "number": 3, "label": "rock"} +{"file_name": "train_09146.png", "caption": "The song is an instrumental. The tempo is medium with a steady drum march rhythm, steady bass line, keyboard harmony and a synth string section. The song is Eros\u2019s and emotional. The song has poor audio quality.", "data_idx": 5097, "number": 0, "label": "rock"} +{"file_name": "train_09147.png", "caption": "The song is an instrumental. The tempo is medium with a steady drum march rhythm, steady bass line, keyboard harmony and a synth string section. The song is Eros\u2019s and emotional. The song has poor audio quality.", "data_idx": 5097, "number": 1, "label": "rock"} +{"file_name": "train_09148.png", "caption": "The song is an instrumental. The tempo is medium with a steady drum march rhythm, steady bass line, keyboard harmony and a synth string section. The song is Eros\u2019s and emotional. The song has poor audio quality.", "data_idx": 5097, "number": 2, "label": "rock"} +{"file_name": "train_09149.png", "caption": "The song is an instrumental. The tempo is medium with a steady drum march rhythm, steady bass line, keyboard harmony and a synth string section. The song is Eros\u2019s and emotional. The song has poor audio quality.", "data_idx": 5097, "number": 3, "label": "rock"} +{"file_name": "train_09150.png", "caption": "This is a sound effect showcase recording. A bunch of different effects are applied to what is sounding similar to a sine wave. The sounds are robotic and bizarre. Certain parts of the recording can be lifted from the recording to be used as FX samples.", "data_idx": 5099, "number": 0, "label": "classical"} +{"file_name": "train_09151.png", "caption": "This is a sound effect showcase recording. A bunch of different effects are applied to what is sounding similar to a sine wave. The sounds are robotic and bizarre. Certain parts of the recording can be lifted from the recording to be used as FX samples.", "data_idx": 5099, "number": 1, "label": "classical"} +{"file_name": "train_09152.png", "caption": "This is a sound effect showcase recording. A bunch of different effects are applied to what is sounding similar to a sine wave. The sounds are robotic and bizarre. Certain parts of the recording can be lifted from the recording to be used as FX samples.", "data_idx": 5099, "number": 2, "label": "classical"} +{"file_name": "train_09153.png", "caption": "This is a sound effect showcase recording. A bunch of different effects are applied to what is sounding similar to a sine wave. The sounds are robotic and bizarre. Certain parts of the recording can be lifted from the recording to be used as FX samples.", "data_idx": 5099, "number": 3, "label": "classical"} +{"file_name": "train_09154.png", "caption": "The low quality recording features a live performance that consists of shimmering shakers, wooden percussion, breathy flute melody and passionate female vocals singing over it. It sounds very addictive, due to the lead vocal cadence. It is a bit reverberant, as it was recorded in a larger room, with a low quality microphone.", "data_idx": 5101, "number": 0, "label": "blues"} +{"file_name": "train_09155.png", "caption": "The low quality recording features a live performance that consists of shimmering shakers, wooden percussion, breathy flute melody and passionate female vocals singing over it. It sounds very addictive, due to the lead vocal cadence. It is a bit reverberant, as it was recorded in a larger room, with a low quality microphone.", "data_idx": 5101, "number": 1, "label": "blues"} +{"file_name": "train_09156.png", "caption": "The low quality recording features a live performance that consists of shimmering shakers, wooden percussion, breathy flute melody and passionate female vocals singing over it. It sounds very addictive, due to the lead vocal cadence. It is a bit reverberant, as it was recorded in a larger room, with a low quality microphone.", "data_idx": 5101, "number": 2, "label": "blues"} +{"file_name": "train_09157.png", "caption": "The low quality recording features a live performance that consists of shimmering shakers, wooden percussion, breathy flute melody and passionate female vocals singing over it. It sounds very addictive, due to the lead vocal cadence. It is a bit reverberant, as it was recorded in a larger room, with a low quality microphone.", "data_idx": 5101, "number": 3, "label": "blues"} +{"file_name": "train_09158.png", "caption": "This is an excerpt from a cartoon that involves sound effects resembling an intro to a minimal techno song. There is a breathing sound coming from one of the characters. There is also a glass sound effect. There is an overarching sci-fi character to the sounds.", "data_idx": 5102, "number": 0, "label": "reggae"} +{"file_name": "train_09159.png", "caption": "This is an excerpt from a cartoon that involves sound effects resembling an intro to a minimal techno song. There is a breathing sound coming from one of the characters. There is also a glass sound effect. There is an overarching sci-fi character to the sounds.", "data_idx": 5102, "number": 1, "label": "reggae"} +{"file_name": "train_09160.png", "caption": "A female singer sings this beautiful wedding song for the bride. The song is a medium tempo with traditional Indian instruments like the tabla playing percussion and stringed instruments playing rhythm. The song is heartfelt and emotional. The song is a mehendi ceremony song or a bridal preparation song for her wedding,", "data_idx": 5104, "number": 0, "label": "pop"} +{"file_name": "train_09161.png", "caption": "A female singer sings this beautiful wedding song for the bride. The song is a medium tempo with traditional Indian instruments like the tabla playing percussion and stringed instruments playing rhythm. The song is heartfelt and emotional. The song is a mehendi ceremony song or a bridal preparation song for her wedding,", "data_idx": 5104, "number": 1, "label": "pop"} +{"file_name": "train_09162.png", "caption": "A female singer sings this beautiful wedding song for the bride. The song is a medium tempo with traditional Indian instruments like the tabla playing percussion and stringed instruments playing rhythm. The song is heartfelt and emotional. The song is a mehendi ceremony song or a bridal preparation song for her wedding,", "data_idx": 5104, "number": 2, "label": "pop"} +{"file_name": "train_09163.png", "caption": "A female singer sings this beautiful wedding song for the bride. The song is a medium tempo with traditional Indian instruments like the tabla playing percussion and stringed instruments playing rhythm. The song is heartfelt and emotional. The song is a mehendi ceremony song or a bridal preparation song for her wedding,", "data_idx": 5104, "number": 3, "label": "pop"} +{"file_name": "train_09164.png", "caption": "The low quality recording features a boomy hip hop song with repetitive synth lead melody playing in the background, while there are some bouncing ball sound effects and plastic impact foley effects. It sounds like someone is hitting a plastic object on a wooden surface.", "data_idx": 5105, "number": 0, "label": "reggae"} +{"file_name": "train_09165.png", "caption": "The low quality recording features a boomy hip hop song with repetitive synth lead melody playing in the background, while there are some bouncing ball sound effects and plastic impact foley effects. It sounds like someone is hitting a plastic object on a wooden surface.", "data_idx": 5105, "number": 1, "label": "reggae"} +{"file_name": "train_09166.png", "caption": "The low quality recording features a boomy hip hop song with repetitive synth lead melody playing in the background, while there are some bouncing ball sound effects and plastic impact foley effects. It sounds like someone is hitting a plastic object on a wooden surface.", "data_idx": 5105, "number": 2, "label": "reggae"} +{"file_name": "train_09167.png", "caption": "The low quality recording features a boomy hip hop song with repetitive synth lead melody playing in the background, while there are some bouncing ball sound effects and plastic impact foley effects. It sounds like someone is hitting a plastic object on a wooden surface.", "data_idx": 5105, "number": 3, "label": "reggae"} +{"file_name": "train_09168.png", "caption": "The music excerpt features a male voice that's speaking instead of singing. A latin music percussion section is driving the pulse of the music. Trumpets can be heard playing short melodies and also accents that stop and start the music. The tempo of the music is pretty fast. At one point the crowd can be heard cheering. The quality of the audio recording is not that good, which leads me to believe it was recorded with a phone.", "data_idx": 5106, "number": 0, "label": "blues"} +{"file_name": "train_09169.png", "caption": "The music excerpt features a male voice that's speaking instead of singing. A latin music percussion section is driving the pulse of the music. Trumpets can be heard playing short melodies and also accents that stop and start the music. The tempo of the music is pretty fast. At one point the crowd can be heard cheering. The quality of the audio recording is not that good, which leads me to believe it was recorded with a phone.", "data_idx": 5106, "number": 1, "label": "blues"} +{"file_name": "train_09170.png", "caption": "The music excerpt features a male voice that's speaking instead of singing. A latin music percussion section is driving the pulse of the music. Trumpets can be heard playing short melodies and also accents that stop and start the music. The tempo of the music is pretty fast. At one point the crowd can be heard cheering. The quality of the audio recording is not that good, which leads me to believe it was recorded with a phone.", "data_idx": 5106, "number": 2, "label": "blues"} +{"file_name": "train_09171.png", "caption": "The music excerpt features a male voice that's speaking instead of singing. A latin music percussion section is driving the pulse of the music. Trumpets can be heard playing short melodies and also accents that stop and start the music. The tempo of the music is pretty fast. At one point the crowd can be heard cheering. The quality of the audio recording is not that good, which leads me to believe it was recorded with a phone.", "data_idx": 5106, "number": 3, "label": "blues"} +{"file_name": "train_09172.png", "caption": "The Low quality recording features a reverberant female vocal singing beautiful melodies over widely spread acoustic rhythm guitars chord progressions. It sounds passionate and emotional thanks to that female vocal.", "data_idx": 5108, "number": 0, "label": "rock"} +{"file_name": "train_09173.png", "caption": "The Low quality recording features a reverberant female vocal singing beautiful melodies over widely spread acoustic rhythm guitars chord progressions. It sounds passionate and emotional thanks to that female vocal.", "data_idx": 5108, "number": 1, "label": "rock"} +{"file_name": "train_09174.png", "caption": "The Low quality recording features a reverberant female vocal singing beautiful melodies over widely spread acoustic rhythm guitars chord progressions. It sounds passionate and emotional thanks to that female vocal.", "data_idx": 5108, "number": 2, "label": "rock"} +{"file_name": "train_09175.png", "caption": "The Low quality recording features a reverberant female vocal singing beautiful melodies over widely spread acoustic rhythm guitars chord progressions. It sounds passionate and emotional thanks to that female vocal.", "data_idx": 5108, "number": 3, "label": "rock"} +{"file_name": "train_09176.png", "caption": "The recording is done live, in a moving vehicle. The vehicle sound is heard. There is a tambourine for percussion, a crunchy electric guitar being played as the melodic instrument, and the singer has an enigmatic and charming style. The song is an alternative rock song that feels positive and magnetic.", "data_idx": 5109, "number": 0, "label": "reggae"} +{"file_name": "train_09177.png", "caption": "The recording is done live, in a moving vehicle. The vehicle sound is heard. There is a tambourine for percussion, a crunchy electric guitar being played as the melodic instrument, and the singer has an enigmatic and charming style. The song is an alternative rock song that feels positive and magnetic.", "data_idx": 5109, "number": 1, "label": "reggae"} +{"file_name": "train_09178.png", "caption": "The recording is done live, in a moving vehicle. The vehicle sound is heard. There is a tambourine for percussion, a crunchy electric guitar being played as the melodic instrument, and the singer has an enigmatic and charming style. The song is an alternative rock song that feels positive and magnetic.", "data_idx": 5109, "number": 2, "label": "reggae"} +{"file_name": "train_09179.png", "caption": "The recording is done live, in a moving vehicle. The vehicle sound is heard. There is a tambourine for percussion, a crunchy electric guitar being played as the melodic instrument, and the singer has an enigmatic and charming style. The song is an alternative rock song that feels positive and magnetic.", "data_idx": 5109, "number": 3, "label": "reggae"} +{"file_name": "train_09180.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line and a guitar synth tone playing melody. The song is exciting and adventurous in nature. The song is a video game song track.", "data_idx": 5115, "number": 0, "label": "classical"} +{"file_name": "train_09181.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line and a guitar synth tone playing melody. The song is exciting and adventurous in nature. The song is a video game song track.", "data_idx": 5115, "number": 1, "label": "classical"} +{"file_name": "train_09182.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line and a guitar synth tone playing melody. The song is exciting and adventurous in nature. The song is a video game song track.", "data_idx": 5115, "number": 2, "label": "classical"} +{"file_name": "train_09183.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line and a guitar synth tone playing melody. The song is exciting and adventurous in nature. The song is a video game song track.", "data_idx": 5115, "number": 3, "label": "classical"} +{"file_name": "train_09184.png", "caption": "A female voice is singing soulfully. She gets support from several backing vocals singing harmonies along. A tambourine is holding the rhythm along with a bassline and a e-guitar giving the song a reggae feeling. This song may be playing in a car. This is an amateur recording.", "data_idx": 5116, "number": 0, "label": "blues"} +{"file_name": "train_09185.png", "caption": "A female voice is singing soulfully. She gets support from several backing vocals singing harmonies along. A tambourine is holding the rhythm along with a bassline and a e-guitar giving the song a reggae feeling. This song may be playing in a car. This is an amateur recording.", "data_idx": 5116, "number": 1, "label": "blues"} +{"file_name": "train_09186.png", "caption": "A female voice is singing soulfully. She gets support from several backing vocals singing harmonies along. A tambourine is holding the rhythm along with a bassline and a e-guitar giving the song a reggae feeling. This song may be playing in a car. This is an amateur recording.", "data_idx": 5116, "number": 2, "label": "blues"} +{"file_name": "train_09187.png", "caption": "A female voice is singing soulfully. She gets support from several backing vocals singing harmonies along. A tambourine is holding the rhythm along with a bassline and a e-guitar giving the song a reggae feeling. This song may be playing in a car. This is an amateur recording.", "data_idx": 5116, "number": 3, "label": "blues"} +{"file_name": "train_09188.png", "caption": "This ambient song features synth pads playing in the background. Synth sounds are layered to give a wave-like feel. There is no percussion in this song. Bells are played at intervals. Toward the end, a mid-range flute sound is played. The sound of rattles are played in the background. This song has an ethereal feel. This song is meditative and can be used in a meditation or yoga session.", "data_idx": 5117, "number": 0, "label": "classical"} +{"file_name": "train_09189.png", "caption": "This ambient song features synth pads playing in the background. Synth sounds are layered to give a wave-like feel. There is no percussion in this song. Bells are played at intervals. Toward the end, a mid-range flute sound is played. The sound of rattles are played in the background. This song has an ethereal feel. This song is meditative and can be used in a meditation or yoga session.", "data_idx": 5117, "number": 1, "label": "classical"} +{"file_name": "train_09190.png", "caption": "This ambient song features synth pads playing in the background. Synth sounds are layered to give a wave-like feel. There is no percussion in this song. Bells are played at intervals. Toward the end, a mid-range flute sound is played. The sound of rattles are played in the background. This song has an ethereal feel. This song is meditative and can be used in a meditation or yoga session.", "data_idx": 5117, "number": 2, "label": "classical"} +{"file_name": "train_09191.png", "caption": "This ambient song features synth pads playing in the background. Synth sounds are layered to give a wave-like feel. There is no percussion in this song. Bells are played at intervals. Toward the end, a mid-range flute sound is played. The sound of rattles are played in the background. This song has an ethereal feel. This song is meditative and can be used in a meditation or yoga session.", "data_idx": 5117, "number": 3, "label": "classical"} +{"file_name": "train_09192.png", "caption": "This song sounds fun to dance along. It has digital and acoustic percussion, a catchy bassline/synthesizer sound and a male singer that sounds to be in a good mood. This song may be playing and dancing along.", "data_idx": 5119, "number": 0, "label": "disco"} +{"file_name": "train_09193.png", "caption": "This song sounds fun to dance along. It has digital and acoustic percussion, a catchy bassline/synthesizer sound and a male singer that sounds to be in a good mood. This song may be playing and dancing along.", "data_idx": 5119, "number": 1, "label": "disco"} +{"file_name": "train_09194.png", "caption": "This song sounds fun to dance along. It has digital and acoustic percussion, a catchy bassline/synthesizer sound and a male singer that sounds to be in a good mood. This song may be playing and dancing along.", "data_idx": 5119, "number": 2, "label": "disco"} +{"file_name": "train_09195.png", "caption": "This song sounds fun to dance along. It has digital and acoustic percussion, a catchy bassline/synthesizer sound and a male singer that sounds to be in a good mood. This song may be playing and dancing along.", "data_idx": 5119, "number": 3, "label": "disco"} +{"file_name": "train_09196.png", "caption": "A male voice is rapping/singing in a higher pitch. His voice is strongly processed with effects. Also with autotune. The instrumental contains digital drums with a strong kick with a subbass. With every hit a synthesizer pad is playing along. This is an amateur recording. This song may be playing in a recording studio.", "data_idx": 5121, "number": 0, "label": "hiphop"} +{"file_name": "train_09197.png", "caption": "A male voice is rapping/singing in a higher pitch. His voice is strongly processed with effects. Also with autotune. The instrumental contains digital drums with a strong kick with a subbass. With every hit a synthesizer pad is playing along. This is an amateur recording. This song may be playing in a recording studio.", "data_idx": 5121, "number": 1, "label": "hiphop"} +{"file_name": "train_09198.png", "caption": "A male voice is rapping/singing in a higher pitch. His voice is strongly processed with effects. Also with autotune. The instrumental contains digital drums with a strong kick with a subbass. With every hit a synthesizer pad is playing along. This is an amateur recording. This song may be playing in a recording studio.", "data_idx": 5121, "number": 2, "label": "hiphop"} +{"file_name": "train_09199.png", "caption": "A male voice is rapping/singing in a higher pitch. His voice is strongly processed with effects. Also with autotune. The instrumental contains digital drums with a strong kick with a subbass. With every hit a synthesizer pad is playing along. This is an amateur recording. This song may be playing in a recording studio.", "data_idx": 5121, "number": 3, "label": "hiphop"} +{"file_name": "train_09200.png", "caption": "A jukebox is playing a folk melody in a very bad audio-quality along with some plastic clapping sounds. This is an amateur recording.", "data_idx": 5122, "number": 0, "label": "classical"} +{"file_name": "train_09201.png", "caption": "A jukebox is playing a folk melody in a very bad audio-quality along with some plastic clapping sounds. This is an amateur recording.", "data_idx": 5122, "number": 1, "label": "classical"} +{"file_name": "train_09202.png", "caption": "A jukebox is playing a folk melody in a very bad audio-quality along with some plastic clapping sounds. This is an amateur recording.", "data_idx": 5122, "number": 2, "label": "classical"} +{"file_name": "train_09203.png", "caption": "A jukebox is playing a folk melody in a very bad audio-quality along with some plastic clapping sounds. This is an amateur recording.", "data_idx": 5122, "number": 3, "label": "classical"} +{"file_name": "train_09204.png", "caption": "A male vocalist sings this dulcet, soulful song in a foreign language. The tempo is medium with bass guitar lead and acoustic guitar accompaniment. The song is minimalist instruments with vocal emphasis. It is a soft, emotional, sentimental, mellifluous, soulful, soothing, calming, pleasant , warm and tender Pop.", "data_idx": 5124, "number": 0, "label": "blues"} +{"file_name": "train_09205.png", "caption": "A male vocalist sings this dulcet, soulful song in a foreign language. The tempo is medium with bass guitar lead and acoustic guitar accompaniment. The song is minimalist instruments with vocal emphasis. It is a soft, emotional, sentimental, mellifluous, soulful, soothing, calming, pleasant , warm and tender Pop.", "data_idx": 5124, "number": 1, "label": "blues"} +{"file_name": "train_09206.png", "caption": "A male vocalist sings this dulcet, soulful song in a foreign language. The tempo is medium with bass guitar lead and acoustic guitar accompaniment. The song is minimalist instruments with vocal emphasis. It is a soft, emotional, sentimental, mellifluous, soulful, soothing, calming, pleasant , warm and tender Pop.", "data_idx": 5124, "number": 2, "label": "blues"} +{"file_name": "train_09207.png", "caption": "A male vocalist sings this dulcet, soulful song in a foreign language. The tempo is medium with bass guitar lead and acoustic guitar accompaniment. The song is minimalist instruments with vocal emphasis. It is a soft, emotional, sentimental, mellifluous, soulful, soothing, calming, pleasant , warm and tender Pop.", "data_idx": 5124, "number": 3, "label": "blues"} +{"file_name": "train_09208.png", "caption": "This instrumental is a Heavy Metal instrumental. The tempo is fast with hard hitting drumming, furious and vigorous amplified keyboard playing a harmony, electric bass guitar and electric guitar accompaniment. The music is intense, grim, compelling, passionate, powerful and harmonious. The vibe of the music is serious, sinister, grim and steely. This is used in Hard Rock/Heavy Metal.", "data_idx": 5125, "number": 0, "label": "metal"} +{"file_name": "train_09209.png", "caption": "This instrumental is a Heavy Metal instrumental. The tempo is fast with hard hitting drumming, furious and vigorous amplified keyboard playing a harmony, electric bass guitar and electric guitar accompaniment. The music is intense, grim, compelling, passionate, powerful and harmonious. The vibe of the music is serious, sinister, grim and steely. This is used in Hard Rock/Heavy Metal.", "data_idx": 5125, "number": 1, "label": "metal"} +{"file_name": "train_09210.png", "caption": "This instrumental is a Heavy Metal instrumental. The tempo is fast with hard hitting drumming, furious and vigorous amplified keyboard playing a harmony, electric bass guitar and electric guitar accompaniment. The music is intense, grim, compelling, passionate, powerful and harmonious. The vibe of the music is serious, sinister, grim and steely. This is used in Hard Rock/Heavy Metal.", "data_idx": 5125, "number": 2, "label": "metal"} +{"file_name": "train_09211.png", "caption": "This instrumental is a Heavy Metal instrumental. The tempo is fast with hard hitting drumming, furious and vigorous amplified keyboard playing a harmony, electric bass guitar and electric guitar accompaniment. The music is intense, grim, compelling, passionate, powerful and harmonious. The vibe of the music is serious, sinister, grim and steely. This is used in Hard Rock/Heavy Metal.", "data_idx": 5125, "number": 3, "label": "metal"} +{"file_name": "train_09212.png", "caption": "This is a glam metal/heavy metal ballad. There is a male vocal and male back vocals singing melodically. The melody is being played on an electric guitar with a chorus effect applied alongside a bass guitar. The rhythmic background consists of a rock acoustic drum beat.The atmosphere is both hard-hitting and sentimental at the same time. This piece could be playing in the background of a rock/metal bar. It could also be included in the soundtrack of an 80s themed romance movie.", "data_idx": 5132, "number": 0, "label": "metal"} +{"file_name": "train_09213.png", "caption": "This is a glam metal/heavy metal ballad. There is a male vocal and male back vocals singing melodically. The melody is being played on an electric guitar with a chorus effect applied alongside a bass guitar. The rhythmic background consists of a rock acoustic drum beat.The atmosphere is both hard-hitting and sentimental at the same time. This piece could be playing in the background of a rock/metal bar. It could also be included in the soundtrack of an 80s themed romance movie.", "data_idx": 5132, "number": 1, "label": "metal"} +{"file_name": "train_09214.png", "caption": "This is a glam metal/heavy metal ballad. There is a male vocal and male back vocals singing melodically. The melody is being played on an electric guitar with a chorus effect applied alongside a bass guitar. The rhythmic background consists of a rock acoustic drum beat.The atmosphere is both hard-hitting and sentimental at the same time. This piece could be playing in the background of a rock/metal bar. It could also be included in the soundtrack of an 80s themed romance movie.", "data_idx": 5132, "number": 2, "label": "metal"} +{"file_name": "train_09215.png", "caption": "This is a glam metal/heavy metal ballad. There is a male vocal and male back vocals singing melodically. The melody is being played on an electric guitar with a chorus effect applied alongside a bass guitar. The rhythmic background consists of a rock acoustic drum beat.The atmosphere is both hard-hitting and sentimental at the same time. This piece could be playing in the background of a rock/metal bar. It could also be included in the soundtrack of an 80s themed romance movie.", "data_idx": 5132, "number": 3, "label": "metal"} +{"file_name": "train_09216.png", "caption": "This is an amateur low-resolution recording of an electric guitar with the chorus pedal effect. The player keeps on strumming chords to show the effect of the pedal. This piece could be used as an old-fashioned rock guitar sample for a beat.", "data_idx": 5136, "number": 0, "label": "country"} +{"file_name": "train_09217.png", "caption": "This is an amateur low-resolution recording of an electric guitar with the chorus pedal effect. The player keeps on strumming chords to show the effect of the pedal. This piece could be used as an old-fashioned rock guitar sample for a beat.", "data_idx": 5136, "number": 1, "label": "country"} +{"file_name": "train_09218.png", "caption": "This is an amateur low-resolution recording of an electric guitar with the chorus pedal effect. The player keeps on strumming chords to show the effect of the pedal. This piece could be used as an old-fashioned rock guitar sample for a beat.", "data_idx": 5136, "number": 2, "label": "country"} +{"file_name": "train_09219.png", "caption": "This is an amateur low-resolution recording of an electric guitar with the chorus pedal effect. The player keeps on strumming chords to show the effect of the pedal. This piece could be used as an old-fashioned rock guitar sample for a beat.", "data_idx": 5136, "number": 3, "label": "country"} +{"file_name": "train_09220.png", "caption": "Someone is scratching along with a backing track that contains a strong kick, a snare and a dark sounding melody. This is an amateur recording. This song may be playing at home practicing scratching.", "data_idx": 5139, "number": 0, "label": "hiphop"} +{"file_name": "train_09221.png", "caption": "Someone is scratching along with a backing track that contains a strong kick, a snare and a dark sounding melody. This is an amateur recording. This song may be playing at home practicing scratching.", "data_idx": 5139, "number": 1, "label": "hiphop"} +{"file_name": "train_09222.png", "caption": "Someone is scratching along with a backing track that contains a strong kick, a snare and a dark sounding melody. This is an amateur recording. This song may be playing at home practicing scratching.", "data_idx": 5139, "number": 2, "label": "hiphop"} +{"file_name": "train_09223.png", "caption": "Someone is scratching along with a backing track that contains a strong kick, a snare and a dark sounding melody. This is an amateur recording. This song may be playing at home practicing scratching.", "data_idx": 5139, "number": 3, "label": "hiphop"} +{"file_name": "train_09224.png", "caption": "The low quality recording features a live performance with flat male vocals talking over electric guitar solo melody, shimmering and bright drums cymbals, snappy rimshots, groovy bass and simple piano chord progression. Sounds fun and groovy - like something you would dance to with your friends.", "data_idx": 5140, "number": 0, "label": "blues"} +{"file_name": "train_09225.png", "caption": "The low quality recording features a live performance with flat male vocals talking over electric guitar solo melody, shimmering and bright drums cymbals, snappy rimshots, groovy bass and simple piano chord progression. Sounds fun and groovy - like something you would dance to with your friends.", "data_idx": 5140, "number": 1, "label": "blues"} +{"file_name": "train_09226.png", "caption": "The low quality recording features a live performance with flat male vocals talking over electric guitar solo melody, shimmering and bright drums cymbals, snappy rimshots, groovy bass and simple piano chord progression. Sounds fun and groovy - like something you would dance to with your friends.", "data_idx": 5140, "number": 2, "label": "blues"} +{"file_name": "train_09227.png", "caption": "The low quality recording features a live performance with flat male vocals talking over electric guitar solo melody, shimmering and bright drums cymbals, snappy rimshots, groovy bass and simple piano chord progression. Sounds fun and groovy - like something you would dance to with your friends.", "data_idx": 5140, "number": 3, "label": "blues"} +{"file_name": "train_09228.png", "caption": "This audio sample features tribal music played using only percussion and voices. There are no other instruments. The percussion is played by hand and has a tribal feel. The female voices sing in a foreign language. There are fills sung by male voices in harmony. The feel of the song is one of celebration. The tempo of the song is moderate. This is an amateur recording.", "data_idx": 5141, "number": 0, "label": "disco"} +{"file_name": "train_09229.png", "caption": "This audio sample features tribal music played using only percussion and voices. There are no other instruments. The percussion is played by hand and has a tribal feel. The female voices sing in a foreign language. There are fills sung by male voices in harmony. The feel of the song is one of celebration. The tempo of the song is moderate. This is an amateur recording.", "data_idx": 5141, "number": 1, "label": "disco"} +{"file_name": "train_09230.png", "caption": "This audio sample features tribal music played using only percussion and voices. There are no other instruments. The percussion is played by hand and has a tribal feel. The female voices sing in a foreign language. There are fills sung by male voices in harmony. The feel of the song is one of celebration. The tempo of the song is moderate. This is an amateur recording.", "data_idx": 5141, "number": 2, "label": "disco"} +{"file_name": "train_09231.png", "caption": "This audio sample features tribal music played using only percussion and voices. There are no other instruments. The percussion is played by hand and has a tribal feel. The female voices sing in a foreign language. There are fills sung by male voices in harmony. The feel of the song is one of celebration. The tempo of the song is moderate. This is an amateur recording.", "data_idx": 5141, "number": 3, "label": "disco"} +{"file_name": "train_09232.png", "caption": "This music is instrumental. The tempo is slow with an electronic keyboard playing a simple, high pitched harmony. There are sounds in the background like whirring, whooshing and clicking. The music is not very clear as the audio clip is muffled, but it sounds like video game music or the music Ina child\u2019s electronic toy.", "data_idx": 5142, "number": 0, "label": "jazz"} +{"file_name": "train_09233.png", "caption": "This music is instrumental. The tempo is slow with an electronic keyboard playing a simple, high pitched harmony. There are sounds in the background like whirring, whooshing and clicking. The music is not very clear as the audio clip is muffled, but it sounds like video game music or the music Ina child\u2019s electronic toy.", "data_idx": 5142, "number": 1, "label": "jazz"} +{"file_name": "train_09234.png", "caption": "This music is instrumental. The tempo is slow with an electronic keyboard playing a simple, high pitched harmony. There are sounds in the background like whirring, whooshing and clicking. The music is not very clear as the audio clip is muffled, but it sounds like video game music or the music Ina child\u2019s electronic toy.", "data_idx": 5142, "number": 2, "label": "jazz"} +{"file_name": "train_09235.png", "caption": "This music is instrumental. The tempo is slow with an electronic keyboard playing a simple, high pitched harmony. There are sounds in the background like whirring, whooshing and clicking. The music is not very clear as the audio clip is muffled, but it sounds like video game music or the music Ina child\u2019s electronic toy.", "data_idx": 5142, "number": 3, "label": "jazz"} +{"file_name": "train_09236.png", "caption": "A digital drum is playing a simple groove with a digital bass. An e-piano is playing 2 chords to add some color to the song. A male voice is rapping with light adults in the background. In the background a female voice sample is coming in singing a little melody. This song may be playing in a car slowly riding down the streets.", "data_idx": 5144, "number": 0, "label": "reggae"} +{"file_name": "train_09237.png", "caption": "A digital drum is playing a simple groove with a digital bass. An e-piano is playing 2 chords to add some color to the song. A male voice is rapping with light adults in the background. In the background a female voice sample is coming in singing a little melody. This song may be playing in a car slowly riding down the streets.", "data_idx": 5144, "number": 1, "label": "reggae"} +{"file_name": "train_09238.png", "caption": "A digital drum is playing a simple groove with a digital bass. An e-piano is playing 2 chords to add some color to the song. A male voice is rapping with light adults in the background. In the background a female voice sample is coming in singing a little melody. This song may be playing in a car slowly riding down the streets.", "data_idx": 5144, "number": 2, "label": "reggae"} +{"file_name": "train_09239.png", "caption": "A digital drum is playing a simple groove with a digital bass. An e-piano is playing 2 chords to add some color to the song. A male voice is rapping with light adults in the background. In the background a female voice sample is coming in singing a little melody. This song may be playing in a car slowly riding down the streets.", "data_idx": 5144, "number": 3, "label": "reggae"} +{"file_name": "train_09240.png", "caption": "The music features a female voice singing with a reverb effect and out of tune. An acoustic guitar accompanies the singer with chords and arpeggios. In the background a synth sound that resembles an instrument with strings plays arpeggios.", "data_idx": 5145, "number": 0, "label": "country"} +{"file_name": "train_09241.png", "caption": "The music features a female voice singing with a reverb effect and out of tune. An acoustic guitar accompanies the singer with chords and arpeggios. In the background a synth sound that resembles an instrument with strings plays arpeggios.", "data_idx": 5145, "number": 1, "label": "country"} +{"file_name": "train_09242.png", "caption": "The music features a female voice singing with a reverb effect and out of tune. An acoustic guitar accompanies the singer with chords and arpeggios. In the background a synth sound that resembles an instrument with strings plays arpeggios.", "data_idx": 5145, "number": 2, "label": "country"} +{"file_name": "train_09243.png", "caption": "The music features a female voice singing with a reverb effect and out of tune. An acoustic guitar accompanies the singer with chords and arpeggios. In the background a synth sound that resembles an instrument with strings plays arpeggios.", "data_idx": 5145, "number": 3, "label": "country"} +{"file_name": "train_09244.png", "caption": "A fast rock drum beat with cowbell and muffled singer with heavy vocal processing. Two electric guitars holding chords, electric bass and drum set.", "data_idx": 5147, "number": 0, "label": "hiphop"} +{"file_name": "train_09245.png", "caption": "A fast rock drum beat with cowbell and muffled singer with heavy vocal processing. Two electric guitars holding chords, electric bass and drum set.", "data_idx": 5147, "number": 1, "label": "hiphop"} +{"file_name": "train_09246.png", "caption": "A fast rock drum beat with cowbell and muffled singer with heavy vocal processing. Two electric guitars holding chords, electric bass and drum set.", "data_idx": 5147, "number": 2, "label": "hiphop"} +{"file_name": "train_09247.png", "caption": "A fast rock drum beat with cowbell and muffled singer with heavy vocal processing. Two electric guitars holding chords, electric bass and drum set.", "data_idx": 5147, "number": 3, "label": "hiphop"} +{"file_name": "train_09248.png", "caption": "This song features sounds from a game. A groovy bassline is played. This is accompanied by percussion playing a simple rhythm. A violin fill is played in the background. Quirky sounds are played in the foreground depicting some actions like jumping and crossing game levels. Birds can be heard chirping in the background. There is the sound of a waterfall toward the end of the clip. Bubble bursting sounds are played when the character collects some rewards. There are no lyrics in this song and no words being sung.", "data_idx": 5148, "number": 0, "label": "hiphop"} +{"file_name": "train_09249.png", "caption": "This song features sounds from a game. A groovy bassline is played. This is accompanied by percussion playing a simple rhythm. A violin fill is played in the background. Quirky sounds are played in the foreground depicting some actions like jumping and crossing game levels. Birds can be heard chirping in the background. There is the sound of a waterfall toward the end of the clip. Bubble bursting sounds are played when the character collects some rewards. There are no lyrics in this song and no words being sung.", "data_idx": 5148, "number": 1, "label": "hiphop"} +{"file_name": "train_09250.png", "caption": "This song features sounds from a game. A groovy bassline is played. This is accompanied by percussion playing a simple rhythm. A violin fill is played in the background. Quirky sounds are played in the foreground depicting some actions like jumping and crossing game levels. Birds can be heard chirping in the background. There is the sound of a waterfall toward the end of the clip. Bubble bursting sounds are played when the character collects some rewards. There are no lyrics in this song and no words being sung.", "data_idx": 5148, "number": 2, "label": "hiphop"} +{"file_name": "train_09251.png", "caption": "This song features sounds from a game. A groovy bassline is played. This is accompanied by percussion playing a simple rhythm. A violin fill is played in the background. Quirky sounds are played in the foreground depicting some actions like jumping and crossing game levels. Birds can be heard chirping in the background. There is the sound of a waterfall toward the end of the clip. Bubble bursting sounds are played when the character collects some rewards. There are no lyrics in this song and no words being sung.", "data_idx": 5148, "number": 3, "label": "hiphop"} +{"file_name": "train_09252.png", "caption": "This orchestral song features male voices singing the main melody. The song starts off with a marching beat played on snare drums. When the voices start to sing, the feeling is one of victory. This is accompanied by percussion playing a marching beat. There are instruments playing staccato notes. The bass is played on a stringed instrument and it follows the root notes of the chords. This song is played at a moderate tempo. This is a patriotic song.", "data_idx": 5151, "number": 0, "label": "metal"} +{"file_name": "train_09253.png", "caption": "This orchestral song features male voices singing the main melody. The song starts off with a marching beat played on snare drums. When the voices start to sing, the feeling is one of victory. This is accompanied by percussion playing a marching beat. There are instruments playing staccato notes. The bass is played on a stringed instrument and it follows the root notes of the chords. This song is played at a moderate tempo. This is a patriotic song.", "data_idx": 5151, "number": 1, "label": "metal"} +{"file_name": "train_09254.png", "caption": "This orchestral song features male voices singing the main melody. The song starts off with a marching beat played on snare drums. When the voices start to sing, the feeling is one of victory. This is accompanied by percussion playing a marching beat. There are instruments playing staccato notes. The bass is played on a stringed instrument and it follows the root notes of the chords. This song is played at a moderate tempo. This is a patriotic song.", "data_idx": 5151, "number": 2, "label": "metal"} +{"file_name": "train_09255.png", "caption": "This orchestral song features male voices singing the main melody. The song starts off with a marching beat played on snare drums. When the voices start to sing, the feeling is one of victory. This is accompanied by percussion playing a marching beat. There are instruments playing staccato notes. The bass is played on a stringed instrument and it follows the root notes of the chords. This song is played at a moderate tempo. This is a patriotic song.", "data_idx": 5151, "number": 3, "label": "metal"} +{"file_name": "train_09256.png", "caption": "The track is instrumental. The tempo changes building suspense, violins trilling, string section harmony, brass section plays percussively and piano plays suspenseful notes. This is a movie soundtrack. The audio quality is average.", "data_idx": 5154, "number": 0, "label": "hiphop"} +{"file_name": "train_09257.png", "caption": "The track is instrumental. The tempo changes building suspense, violins trilling, string section harmony, brass section plays percussively and piano plays suspenseful notes. This is a movie soundtrack. The audio quality is average.", "data_idx": 5154, "number": 1, "label": "hiphop"} +{"file_name": "train_09258.png", "caption": "The track is instrumental. The tempo changes building suspense, violins trilling, string section harmony, brass section plays percussively and piano plays suspenseful notes. This is a movie soundtrack. The audio quality is average.", "data_idx": 5154, "number": 2, "label": "hiphop"} +{"file_name": "train_09259.png", "caption": "The track is instrumental. The tempo changes building suspense, violins trilling, string section harmony, brass section plays percussively and piano plays suspenseful notes. This is a movie soundtrack. The audio quality is average.", "data_idx": 5154, "number": 3, "label": "hiphop"} +{"file_name": "train_09260.png", "caption": "The low quality recording features a cover of a rock song sung by passionate female vocalists, followed by acoustic rhythm guitar chord progression and shimmering shaker. It is a bit reverberant and noisy, as they are playing in a room. It gives off happy and fun vibes.", "data_idx": 5155, "number": 0, "label": "rock"} +{"file_name": "train_09261.png", "caption": "The low quality recording features a cover of a rock song sung by passionate female vocalists, followed by acoustic rhythm guitar chord progression and shimmering shaker. It is a bit reverberant and noisy, as they are playing in a room. It gives off happy and fun vibes.", "data_idx": 5155, "number": 1, "label": "rock"} +{"file_name": "train_09262.png", "caption": "A female voice is singing with a little bit of reverb and delay on her voice. A synth pad is playing a soft string drone sound in the mid-range. An acoustic guitar is playing an arpeggio melody along with a synth pluck sound walking down a scale and another pluck sound playing a melody on top. All of them have different rhythm structures and seem to play against each other but fitting perfectly together. The sounds are spread across both sides of the speakers. This song may be playing in a ceremony at a festival.", "data_idx": 5156, "number": 0, "label": "classical"} +{"file_name": "train_09263.png", "caption": "A female voice is singing with a little bit of reverb and delay on her voice. A synth pad is playing a soft string drone sound in the mid-range. An acoustic guitar is playing an arpeggio melody along with a synth pluck sound walking down a scale and another pluck sound playing a melody on top. All of them have different rhythm structures and seem to play against each other but fitting perfectly together. The sounds are spread across both sides of the speakers. This song may be playing in a ceremony at a festival.", "data_idx": 5156, "number": 1, "label": "classical"} +{"file_name": "train_09264.png", "caption": "A female voice is singing with a little bit of reverb and delay on her voice. A synth pad is playing a soft string drone sound in the mid-range. An acoustic guitar is playing an arpeggio melody along with a synth pluck sound walking down a scale and another pluck sound playing a melody on top. All of them have different rhythm structures and seem to play against each other but fitting perfectly together. The sounds are spread across both sides of the speakers. This song may be playing in a ceremony at a festival.", "data_idx": 5156, "number": 2, "label": "classical"} +{"file_name": "train_09265.png", "caption": "A female voice is singing with a little bit of reverb and delay on her voice. A synth pad is playing a soft string drone sound in the mid-range. An acoustic guitar is playing an arpeggio melody along with a synth pluck sound walking down a scale and another pluck sound playing a melody on top. All of them have different rhythm structures and seem to play against each other but fitting perfectly together. The sounds are spread across both sides of the speakers. This song may be playing in a ceremony at a festival.", "data_idx": 5156, "number": 3, "label": "classical"} +{"file_name": "train_09266.png", "caption": "The low quality recording features a quacking ducks sound effects as an intro, after which comes a manically played drum roll that includes snares and toms, leading into the wide electric guitars, punchy kick, energetic crash cymbal, shimmering hi hats and fat bass guitar. At the very beginning, there is a short audio crackle that makes this recording's quality low.", "data_idx": 5159, "number": 0, "label": "hiphop"} +{"file_name": "train_09267.png", "caption": "The low quality recording features a quacking ducks sound effects as an intro, after which comes a manically played drum roll that includes snares and toms, leading into the wide electric guitars, punchy kick, energetic crash cymbal, shimmering hi hats and fat bass guitar. At the very beginning, there is a short audio crackle that makes this recording's quality low.", "data_idx": 5159, "number": 1, "label": "hiphop"} +{"file_name": "train_09268.png", "caption": "The low quality recording features a quacking ducks sound effects as an intro, after which comes a manically played drum roll that includes snares and toms, leading into the wide electric guitars, punchy kick, energetic crash cymbal, shimmering hi hats and fat bass guitar. At the very beginning, there is a short audio crackle that makes this recording's quality low.", "data_idx": 5159, "number": 2, "label": "hiphop"} +{"file_name": "train_09269.png", "caption": "The low quality recording features a quacking ducks sound effects as an intro, after which comes a manically played drum roll that includes snares and toms, leading into the wide electric guitars, punchy kick, energetic crash cymbal, shimmering hi hats and fat bass guitar. At the very beginning, there is a short audio crackle that makes this recording's quality low.", "data_idx": 5159, "number": 3, "label": "hiphop"} +{"file_name": "train_09270.png", "caption": "The jazz music features a swing band playing in the background. In the foreground one can hear tap dancing sounds and the crowd cheering. This and the low audio quality leads me to believe this is a recording of a live tap dancing show.", "data_idx": 5163, "number": 0, "label": "rock"} +{"file_name": "train_09271.png", "caption": "The jazz music features a swing band playing in the background. In the foreground one can hear tap dancing sounds and the crowd cheering. This and the low audio quality leads me to believe this is a recording of a live tap dancing show.", "data_idx": 5163, "number": 1, "label": "rock"} +{"file_name": "train_09272.png", "caption": "The jazz music features a swing band playing in the background. In the foreground one can hear tap dancing sounds and the crowd cheering. This and the low audio quality leads me to believe this is a recording of a live tap dancing show.", "data_idx": 5163, "number": 2, "label": "rock"} +{"file_name": "train_09273.png", "caption": "The jazz music features a swing band playing in the background. In the foreground one can hear tap dancing sounds and the crowd cheering. This and the low audio quality leads me to believe this is a recording of a live tap dancing show.", "data_idx": 5163, "number": 3, "label": "rock"} +{"file_name": "train_09274.png", "caption": "This hip-hop song features a male voice rapping the main lyrics. This is accompanied by programmed percussion playing a simple beat. Hand claps are played on every alternate count. The synth plays a repetitive melody in loop. The bass plays the root notes of the chords in harmony with the synth. This is a moderate tempo song. This song can be played in a club.", "data_idx": 5164, "number": 0, "label": "disco"} +{"file_name": "train_09275.png", "caption": "This hip-hop song features a male voice rapping the main lyrics. This is accompanied by programmed percussion playing a simple beat. Hand claps are played on every alternate count. The synth plays a repetitive melody in loop. The bass plays the root notes of the chords in harmony with the synth. This is a moderate tempo song. This song can be played in a club.", "data_idx": 5164, "number": 1, "label": "disco"} +{"file_name": "train_09276.png", "caption": "This hip-hop song features a male voice rapping the main lyrics. This is accompanied by programmed percussion playing a simple beat. Hand claps are played on every alternate count. The synth plays a repetitive melody in loop. The bass plays the root notes of the chords in harmony with the synth. This is a moderate tempo song. This song can be played in a club.", "data_idx": 5164, "number": 2, "label": "disco"} +{"file_name": "train_09277.png", "caption": "This hip-hop song features a male voice rapping the main lyrics. This is accompanied by programmed percussion playing a simple beat. Hand claps are played on every alternate count. The synth plays a repetitive melody in loop. The bass plays the root notes of the chords in harmony with the synth. This is a moderate tempo song. This song can be played in a club.", "data_idx": 5164, "number": 3, "label": "disco"} +{"file_name": "train_09278.png", "caption": "A female vocalist sings this happy Indian wedding song. The tempo is medium fast with a cheerful dholak and a rhythmic shaker made of ghungaroos. The song is a minimalist, cheerful, happy, festive, celebratory and joyful song sung during Punjabi wedding rituals.", "data_idx": 5167, "number": 0, "label": "hiphop"} +{"file_name": "train_09279.png", "caption": "A female vocalist sings this happy Indian wedding song. The tempo is medium fast with a cheerful dholak and a rhythmic shaker made of ghungaroos. The song is a minimalist, cheerful, happy, festive, celebratory and joyful song sung during Punjabi wedding rituals.", "data_idx": 5167, "number": 1, "label": "hiphop"} +{"file_name": "train_09280.png", "caption": "A female vocalist sings this happy Indian wedding song. The tempo is medium fast with a cheerful dholak and a rhythmic shaker made of ghungaroos. The song is a minimalist, cheerful, happy, festive, celebratory and joyful song sung during Punjabi wedding rituals.", "data_idx": 5167, "number": 2, "label": "hiphop"} +{"file_name": "train_09281.png", "caption": "A female vocalist sings this happy Indian wedding song. The tempo is medium fast with a cheerful dholak and a rhythmic shaker made of ghungaroos. The song is a minimalist, cheerful, happy, festive, celebratory and joyful song sung during Punjabi wedding rituals.", "data_idx": 5167, "number": 3, "label": "hiphop"} +{"file_name": "train_09282.png", "caption": "A male vocalist sings this meditative chant. The tempo is slow with keyboard harmony, steady drumming, rhythmic acoustic guitar,tambourine and female vocal backup. The song is a vocal riff of a chant sung melodiously. It is calming, peaceful, meditative, pensive, soothing, prayerful and devotional. This song is sung during Hindu festivities or Pujas.", "data_idx": 5170, "number": 0, "label": "country"} +{"file_name": "train_09283.png", "caption": "A male vocalist sings this meditative chant. The tempo is slow with keyboard harmony, steady drumming, rhythmic acoustic guitar,tambourine and female vocal backup. The song is a vocal riff of a chant sung melodiously. It is calming, peaceful, meditative, pensive, soothing, prayerful and devotional. This song is sung during Hindu festivities or Pujas.", "data_idx": 5170, "number": 1, "label": "country"} +{"file_name": "train_09284.png", "caption": "A male vocalist sings this meditative chant. The tempo is slow with keyboard harmony, steady drumming, rhythmic acoustic guitar,tambourine and female vocal backup. The song is a vocal riff of a chant sung melodiously. It is calming, peaceful, meditative, pensive, soothing, prayerful and devotional. This song is sung during Hindu festivities or Pujas.", "data_idx": 5170, "number": 2, "label": "country"} +{"file_name": "train_09285.png", "caption": "A male vocalist sings this meditative chant. The tempo is slow with keyboard harmony, steady drumming, rhythmic acoustic guitar,tambourine and female vocal backup. The song is a vocal riff of a chant sung melodiously. It is calming, peaceful, meditative, pensive, soothing, prayerful and devotional. This song is sung during Hindu festivities or Pujas.", "data_idx": 5170, "number": 3, "label": "country"} +{"file_name": "train_09286.png", "caption": "This is a Mexican folk music piece. There is a male vocal singing at a very elevated volume that resembles shouting. There is a brass melody playing alongside the vocal. The atmosphere of the piece is playful. The best use for this piece could be as an accompaniment for a folk dance. It could also be used in the soundtrack of a comedy movie or a TV show that takes place in Mexico.", "data_idx": 5172, "number": 0, "label": "blues"} +{"file_name": "train_09287.png", "caption": "This is a Mexican folk music piece. There is a male vocal singing at a very elevated volume that resembles shouting. There is a brass melody playing alongside the vocal. The atmosphere of the piece is playful. The best use for this piece could be as an accompaniment for a folk dance. It could also be used in the soundtrack of a comedy movie or a TV show that takes place in Mexico.", "data_idx": 5172, "number": 1, "label": "blues"} +{"file_name": "train_09288.png", "caption": "This is a Mexican folk music piece. There is a male vocal singing at a very elevated volume that resembles shouting. There is a brass melody playing alongside the vocal. The atmosphere of the piece is playful. The best use for this piece could be as an accompaniment for a folk dance. It could also be used in the soundtrack of a comedy movie or a TV show that takes place in Mexico.", "data_idx": 5172, "number": 2, "label": "blues"} +{"file_name": "train_09289.png", "caption": "This is a Mexican folk music piece. There is a male vocal singing at a very elevated volume that resembles shouting. There is a brass melody playing alongside the vocal. The atmosphere of the piece is playful. The best use for this piece could be as an accompaniment for a folk dance. It could also be used in the soundtrack of a comedy movie or a TV show that takes place in Mexico.", "data_idx": 5172, "number": 3, "label": "blues"} +{"file_name": "train_09290.png", "caption": "A male vocalist sings this lively Latino song. The tempo is fast with an animated piano accompaniment, bright trumpets, energetic and rhythmic drumming, groovy bass and keyboard. The song is energetic, lively, buoyant, bouncy, vibrant and vivacious with a dance groove. This song is Latin Pop.", "data_idx": 5173, "number": 0, "label": "disco"} +{"file_name": "train_09291.png", "caption": "A male vocalist sings this lively Latino song. The tempo is fast with an animated piano accompaniment, bright trumpets, energetic and rhythmic drumming, groovy bass and keyboard. The song is energetic, lively, buoyant, bouncy, vibrant and vivacious with a dance groove. This song is Latin Pop.", "data_idx": 5173, "number": 1, "label": "disco"} +{"file_name": "train_09292.png", "caption": "A male vocalist sings this lively Latino song. The tempo is fast with an animated piano accompaniment, bright trumpets, energetic and rhythmic drumming, groovy bass and keyboard. The song is energetic, lively, buoyant, bouncy, vibrant and vivacious with a dance groove. This song is Latin Pop.", "data_idx": 5173, "number": 2, "label": "disco"} +{"file_name": "train_09293.png", "caption": "A male vocalist sings this lively Latino song. The tempo is fast with an animated piano accompaniment, bright trumpets, energetic and rhythmic drumming, groovy bass and keyboard. The song is energetic, lively, buoyant, bouncy, vibrant and vivacious with a dance groove. This song is Latin Pop.", "data_idx": 5173, "number": 3, "label": "disco"} +{"file_name": "train_09294.png", "caption": "This song contains someone playing a bass-ukulele along to a piano playing jazzy chords along with a soft jazz piano. The main melody is being played by an alto saxophone. This song may be playing in a jazz lounge bar.", "data_idx": 5175, "number": 0, "label": "jazz"} +{"file_name": "train_09295.png", "caption": "This song contains someone playing a bass-ukulele along to a piano playing jazzy chords along with a soft jazz piano. The main melody is being played by an alto saxophone. This song may be playing in a jazz lounge bar.", "data_idx": 5175, "number": 1, "label": "jazz"} +{"file_name": "train_09296.png", "caption": "This song contains someone playing a bass-ukulele along to a piano playing jazzy chords along with a soft jazz piano. The main melody is being played by an alto saxophone. This song may be playing in a jazz lounge bar.", "data_idx": 5175, "number": 2, "label": "jazz"} +{"file_name": "train_09297.png", "caption": "This song contains someone playing a bass-ukulele along to a piano playing jazzy chords along with a soft jazz piano. The main melody is being played by an alto saxophone. This song may be playing in a jazz lounge bar.", "data_idx": 5175, "number": 3, "label": "jazz"} +{"file_name": "train_09298.png", "caption": "This instrumental song is played on a didgeridoo. This is a continuous drone sound which is resonant and played in a low pitch. There is no percussion in this song. The instrument is played in a repetitive pattern producing low sounds with higher pitched vibrating sounds inter-spread in between notes. There are no voices in this song.", "data_idx": 5187, "number": 0, "label": "metal"} +{"file_name": "train_09299.png", "caption": "This instrumental song is played on a didgeridoo. This is a continuous drone sound which is resonant and played in a low pitch. There is no percussion in this song. The instrument is played in a repetitive pattern producing low sounds with higher pitched vibrating sounds inter-spread in between notes. There are no voices in this song.", "data_idx": 5187, "number": 1, "label": "metal"} +{"file_name": "train_09300.png", "caption": "This instrumental song is played on a didgeridoo. This is a continuous drone sound which is resonant and played in a low pitch. There is no percussion in this song. The instrument is played in a repetitive pattern producing low sounds with higher pitched vibrating sounds inter-spread in between notes. There are no voices in this song.", "data_idx": 5187, "number": 2, "label": "metal"} +{"file_name": "train_09301.png", "caption": "This instrumental song is played on a didgeridoo. This is a continuous drone sound which is resonant and played in a low pitch. There is no percussion in this song. The instrument is played in a repetitive pattern producing low sounds with higher pitched vibrating sounds inter-spread in between notes. There are no voices in this song.", "data_idx": 5187, "number": 3, "label": "metal"} +{"file_name": "train_09302.png", "caption": "An e-bass and strings are playing a simple melody to elevate the atmosphere. In the background an acoustic piano is playing a melody along with the drums. Then a female voice starts singing while the crowd starts cheering. This song may be playing live during a tv-show.", "data_idx": 5189, "number": 0, "label": "reggae"} +{"file_name": "train_09303.png", "caption": "An e-bass and strings are playing a simple melody to elevate the atmosphere. In the background an acoustic piano is playing a melody along with the drums. Then a female voice starts singing while the crowd starts cheering. This song may be playing live during a tv-show.", "data_idx": 5189, "number": 1, "label": "reggae"} +{"file_name": "train_09304.png", "caption": "An e-bass and strings are playing a simple melody to elevate the atmosphere. In the background an acoustic piano is playing a melody along with the drums. Then a female voice starts singing while the crowd starts cheering. This song may be playing live during a tv-show.", "data_idx": 5189, "number": 2, "label": "reggae"} +{"file_name": "train_09305.png", "caption": "An e-bass and strings are playing a simple melody to elevate the atmosphere. In the background an acoustic piano is playing a melody along with the drums. Then a female voice starts singing while the crowd starts cheering. This song may be playing live during a tv-show.", "data_idx": 5189, "number": 3, "label": "reggae"} diff --git a/data/train/metadata_0021.jsonl b/data/train/metadata_0021.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..229231ae9f81e61179989bf1201f92f880ddd45e --- /dev/null +++ b/data/train/metadata_0021.jsonl @@ -0,0 +1,588 @@ +{"file_name": "train_09306.png", "caption": "This is a classical music piece performance. It is meant to be played at a wedding. There is an organ playing a simple and festive tune. There is an atmosphere of celebration in this piece. This music would fit perfectly with weddings. Organ samples could also be lifted from this recording to be used in beat-making.", "data_idx": 5200, "number": 0, "label": "hiphop"} +{"file_name": "train_09307.png", "caption": "This is a classical music piece performance. It is meant to be played at a wedding. There is an organ playing a simple and festive tune. There is an atmosphere of celebration in this piece. This music would fit perfectly with weddings. Organ samples could also be lifted from this recording to be used in beat-making.", "data_idx": 5200, "number": 1, "label": "hiphop"} +{"file_name": "train_09308.png", "caption": "This is a classical music piece performance. It is meant to be played at a wedding. There is an organ playing a simple and festive tune. There is an atmosphere of celebration in this piece. This music would fit perfectly with weddings. Organ samples could also be lifted from this recording to be used in beat-making.", "data_idx": 5200, "number": 2, "label": "hiphop"} +{"file_name": "train_09309.png", "caption": "This is a classical music piece performance. It is meant to be played at a wedding. There is an organ playing a simple and festive tune. There is an atmosphere of celebration in this piece. This music would fit perfectly with weddings. Organ samples could also be lifted from this recording to be used in beat-making.", "data_idx": 5200, "number": 3, "label": "hiphop"} +{"file_name": "train_09310.png", "caption": "Synthesizers are playing pads. There is a low pad sound serving as bass, mid and high string pad sounds. A low male voice is singing. The whole recording has reverb on it. This song may be playing while meditating.", "data_idx": 5202, "number": 0, "label": "country"} +{"file_name": "train_09311.png", "caption": "Synthesizers are playing pads. There is a low pad sound serving as bass, mid and high string pad sounds. A low male voice is singing. The whole recording has reverb on it. This song may be playing while meditating.", "data_idx": 5202, "number": 1, "label": "country"} +{"file_name": "train_09312.png", "caption": "Synthesizers are playing pads. There is a low pad sound serving as bass, mid and high string pad sounds. A low male voice is singing. The whole recording has reverb on it. This song may be playing while meditating.", "data_idx": 5202, "number": 2, "label": "country"} +{"file_name": "train_09313.png", "caption": "Synthesizers are playing pads. There is a low pad sound serving as bass, mid and high string pad sounds. A low male voice is singing. The whole recording has reverb on it. This song may be playing while meditating.", "data_idx": 5202, "number": 3, "label": "country"} +{"file_name": "train_09314.png", "caption": "This is a recording of two didgeridoos. They are playing low notes and create a very low vibrational tone. There is a melody, but it is not easily recognizable.", "data_idx": 5203, "number": 0, "label": "rock"} +{"file_name": "train_09315.png", "caption": "This is a recording of two didgeridoos. They are playing low notes and create a very low vibrational tone. There is a melody, but it is not easily recognizable.", "data_idx": 5203, "number": 1, "label": "rock"} +{"file_name": "train_09316.png", "caption": "This is a recording of two didgeridoos. They are playing low notes and create a very low vibrational tone. There is a melody, but it is not easily recognizable.", "data_idx": 5203, "number": 2, "label": "rock"} +{"file_name": "train_09317.png", "caption": "This is a recording of two didgeridoos. They are playing low notes and create a very low vibrational tone. There is a melody, but it is not easily recognizable.", "data_idx": 5203, "number": 3, "label": "rock"} +{"file_name": "train_09318.png", "caption": "Live performance of a girl band group, featuring surf guitar and a go-go beat that transitions to modern pop production with loud bass and electronic drum breaks. Audio is low fidelity. Would be popular with teenage girls.", "data_idx": 5205, "number": 0, "label": "pop"} +{"file_name": "train_09319.png", "caption": "Live performance of a girl band group, featuring surf guitar and a go-go beat that transitions to modern pop production with loud bass and electronic drum breaks. Audio is low fidelity. Would be popular with teenage girls.", "data_idx": 5205, "number": 1, "label": "pop"} +{"file_name": "train_09320.png", "caption": "Live performance of a girl band group, featuring surf guitar and a go-go beat that transitions to modern pop production with loud bass and electronic drum breaks. Audio is low fidelity. Would be popular with teenage girls.", "data_idx": 5205, "number": 2, "label": "pop"} +{"file_name": "train_09321.png", "caption": "Live performance of a girl band group, featuring surf guitar and a go-go beat that transitions to modern pop production with loud bass and electronic drum breaks. Audio is low fidelity. Would be popular with teenage girls.", "data_idx": 5205, "number": 3, "label": "pop"} +{"file_name": "train_09322.png", "caption": "This song contains a evolving synth pad sound in the higher register with noise. A piano is playing a sad minor chord progression in the mid range. Then a strong industrial sounding digital drum comes. This song may be playing in a very sad movie scene.", "data_idx": 5206, "number": 0, "label": "classical"} +{"file_name": "train_09323.png", "caption": "This song contains a evolving synth pad sound in the higher register with noise. A piano is playing a sad minor chord progression in the mid range. Then a strong industrial sounding digital drum comes. This song may be playing in a very sad movie scene.", "data_idx": 5206, "number": 1, "label": "classical"} +{"file_name": "train_09324.png", "caption": "This song contains a evolving synth pad sound in the higher register with noise. A piano is playing a sad minor chord progression in the mid range. Then a strong industrial sounding digital drum comes. This song may be playing in a very sad movie scene.", "data_idx": 5206, "number": 2, "label": "classical"} +{"file_name": "train_09325.png", "caption": "This song contains a evolving synth pad sound in the higher register with noise. A piano is playing a sad minor chord progression in the mid range. Then a strong industrial sounding digital drum comes. This song may be playing in a very sad movie scene.", "data_idx": 5206, "number": 3, "label": "classical"} +{"file_name": "train_09326.png", "caption": "The Electro song features a \"4 on the floor\" boomy 808 bass, shimmering shakers, muffled syncopated snare, repetitive short male vocal chants, high pitched female vocal and frequency sweep riser. It sounds funny, groovy and energetic. The drums are stuttering at one point, which serves as a transition to the next section.", "data_idx": 5207, "number": 0, "label": "reggae"} +{"file_name": "train_09327.png", "caption": "The Electro song features a \"4 on the floor\" boomy 808 bass, shimmering shakers, muffled syncopated snare, repetitive short male vocal chants, high pitched female vocal and frequency sweep riser. It sounds funny, groovy and energetic. The drums are stuttering at one point, which serves as a transition to the next section.", "data_idx": 5207, "number": 1, "label": "reggae"} +{"file_name": "train_09328.png", "caption": "The Electro song features a \"4 on the floor\" boomy 808 bass, shimmering shakers, muffled syncopated snare, repetitive short male vocal chants, high pitched female vocal and frequency sweep riser. It sounds funny, groovy and energetic. The drums are stuttering at one point, which serves as a transition to the next section.", "data_idx": 5207, "number": 2, "label": "reggae"} +{"file_name": "train_09329.png", "caption": "The Electro song features a \"4 on the floor\" boomy 808 bass, shimmering shakers, muffled syncopated snare, repetitive short male vocal chants, high pitched female vocal and frequency sweep riser. It sounds funny, groovy and energetic. The drums are stuttering at one point, which serves as a transition to the next section.", "data_idx": 5207, "number": 3, "label": "reggae"} +{"file_name": "train_09330.png", "caption": "An organ is playing low notes serving as a bassline while a drummer is hitting the drums with a lot of fill-ins losing the rhythm and shouting. This recording is of poor quality.", "data_idx": 5210, "number": 0, "label": "disco"} +{"file_name": "train_09331.png", "caption": "An organ is playing low notes serving as a bassline while a drummer is hitting the drums with a lot of fill-ins losing the rhythm and shouting. This recording is of poor quality.", "data_idx": 5210, "number": 1, "label": "disco"} +{"file_name": "train_09332.png", "caption": "This is the live recording of a dance piece. The dancer can be heard stepping her foot on the ground and clapping her hands in a rhythmic fashion. The recording is a bit poor in quality, but samples could be lifted to be used in beats.", "data_idx": 5212, "number": 0, "label": "metal"} +{"file_name": "train_09333.png", "caption": "This is the live recording of a dance piece. The dancer can be heard stepping her foot on the ground and clapping her hands in a rhythmic fashion. The recording is a bit poor in quality, but samples could be lifted to be used in beats.", "data_idx": 5212, "number": 1, "label": "metal"} +{"file_name": "train_09334.png", "caption": "This is the live recording of a dance piece. The dancer can be heard stepping her foot on the ground and clapping her hands in a rhythmic fashion. The recording is a bit poor in quality, but samples could be lifted to be used in beats.", "data_idx": 5212, "number": 2, "label": "metal"} +{"file_name": "train_09335.png", "caption": "This is the live recording of a dance piece. The dancer can be heard stepping her foot on the ground and clapping her hands in a rhythmic fashion. The recording is a bit poor in quality, but samples could be lifted to be used in beats.", "data_idx": 5212, "number": 3, "label": "metal"} +{"file_name": "train_09336.png", "caption": "The track is an upbeat blues song that features falsetto and raspy male vocals. A drum kit plays an energetic and happy beat. A bass guitar follows the rhythm and adds a bouncy vibe to the song. The overall sound of the instruments is bright and happy. A guitar follows the bass and the drum kit.", "data_idx": 5215, "number": 0, "label": "reggae"} +{"file_name": "train_09337.png", "caption": "The track is an upbeat blues song that features falsetto and raspy male vocals. A drum kit plays an energetic and happy beat. A bass guitar follows the rhythm and adds a bouncy vibe to the song. The overall sound of the instruments is bright and happy. A guitar follows the bass and the drum kit.", "data_idx": 5215, "number": 1, "label": "reggae"} +{"file_name": "train_09338.png", "caption": "This is a Christian rock piece. There is a male vocalist in the lead singing gently and melodically. A mild-tempered electric guitar is playing the main theme. There is a bass guitar holding the root notes. The rhythmic background is provided by the acoustic drums. This song has a mellow and hopeful atmosphere. Due to being religious in nature, this piece could be played in the background of Christian religious content. It could also be played at Christian religious events.", "data_idx": 5218, "number": 0, "label": "rock"} +{"file_name": "train_09339.png", "caption": "This is a Christian rock piece. There is a male vocalist in the lead singing gently and melodically. A mild-tempered electric guitar is playing the main theme. There is a bass guitar holding the root notes. The rhythmic background is provided by the acoustic drums. This song has a mellow and hopeful atmosphere. Due to being religious in nature, this piece could be played in the background of Christian religious content. It could also be played at Christian religious events.", "data_idx": 5218, "number": 1, "label": "rock"} +{"file_name": "train_09340.png", "caption": "This is a Christian rock piece. There is a male vocalist in the lead singing gently and melodically. A mild-tempered electric guitar is playing the main theme. There is a bass guitar holding the root notes. The rhythmic background is provided by the acoustic drums. This song has a mellow and hopeful atmosphere. Due to being religious in nature, this piece could be played in the background of Christian religious content. It could also be played at Christian religious events.", "data_idx": 5218, "number": 2, "label": "rock"} +{"file_name": "train_09341.png", "caption": "This is a Christian rock piece. There is a male vocalist in the lead singing gently and melodically. A mild-tempered electric guitar is playing the main theme. There is a bass guitar holding the root notes. The rhythmic background is provided by the acoustic drums. This song has a mellow and hopeful atmosphere. Due to being religious in nature, this piece could be played in the background of Christian religious content. It could also be played at Christian religious events.", "data_idx": 5218, "number": 3, "label": "rock"} +{"file_name": "train_09342.png", "caption": "This song contains acoustic drums playing a groove along with an e-bass and a tambourine. A brass section is playing along with the drum fills and the bongos. A piano is playing a melody together with a guitar strumming chords in the mid range. The male singer sounds loud and soulful. This song may be playing in a rollerblade disco.", "data_idx": 5219, "number": 0, "label": "reggae"} +{"file_name": "train_09343.png", "caption": "This song contains acoustic drums playing a groove along with an e-bass and a tambourine. A brass section is playing along with the drum fills and the bongos. A piano is playing a melody together with a guitar strumming chords in the mid range. The male singer sounds loud and soulful. This song may be playing in a rollerblade disco.", "data_idx": 5219, "number": 1, "label": "reggae"} +{"file_name": "train_09344.png", "caption": "This song contains acoustic drums playing a groove along with an e-bass and a tambourine. A brass section is playing along with the drum fills and the bongos. A piano is playing a melody together with a guitar strumming chords in the mid range. The male singer sounds loud and soulful. This song may be playing in a rollerblade disco.", "data_idx": 5219, "number": 2, "label": "reggae"} +{"file_name": "train_09345.png", "caption": "This song contains acoustic drums playing a groove along with an e-bass and a tambourine. A brass section is playing along with the drum fills and the bongos. A piano is playing a melody together with a guitar strumming chords in the mid range. The male singer sounds loud and soulful. This song may be playing in a rollerblade disco.", "data_idx": 5219, "number": 3, "label": "reggae"} +{"file_name": "train_09346.png", "caption": "The low quality recording features a sad soft rock song that consists of an acoustic rhythm guitar chord progression over which the reverberant female vocalist sings. The recording is very noisy and it sounds sad and emotional.", "data_idx": 5224, "number": 0, "label": "disco"} +{"file_name": "train_09347.png", "caption": "The low quality recording features a sad soft rock song that consists of an acoustic rhythm guitar chord progression over which the reverberant female vocalist sings. The recording is very noisy and it sounds sad and emotional.", "data_idx": 5224, "number": 1, "label": "disco"} +{"file_name": "train_09348.png", "caption": "The low quality recording features a sad soft rock song that consists of an acoustic rhythm guitar chord progression over which the reverberant female vocalist sings. The recording is very noisy and it sounds sad and emotional.", "data_idx": 5224, "number": 2, "label": "disco"} +{"file_name": "train_09349.png", "caption": "The low quality recording features a sad soft rock song that consists of an acoustic rhythm guitar chord progression over which the reverberant female vocalist sings. The recording is very noisy and it sounds sad and emotional.", "data_idx": 5224, "number": 3, "label": "disco"} +{"file_name": "train_09350.png", "caption": "The excerpt features a mandolin playing a folk song. This is the only musical instrument playing, there aren't others or any voices singing. The character of the song is joyful.", "data_idx": 5231, "number": 0, "label": "hiphop"} +{"file_name": "train_09351.png", "caption": "The excerpt features a mandolin playing a folk song. This is the only musical instrument playing, there aren't others or any voices singing. The character of the song is joyful.", "data_idx": 5231, "number": 1, "label": "hiphop"} +{"file_name": "train_09352.png", "caption": "The excerpt features a mandolin playing a folk song. This is the only musical instrument playing, there aren't others or any voices singing. The character of the song is joyful.", "data_idx": 5231, "number": 2, "label": "hiphop"} +{"file_name": "train_09353.png", "caption": "The excerpt features a mandolin playing a folk song. This is the only musical instrument playing, there aren't others or any voices singing. The character of the song is joyful.", "data_idx": 5231, "number": 3, "label": "hiphop"} +{"file_name": "train_09354.png", "caption": "This song is an animated Children\u2019s Song. The tempo is fast with many singing different parts. The song is simple and happy with spirited backup vocals, female, male and child vocals with an animated keyboard harmony, rhythmic drumming , acoustic guitar and choral harmony. The song is light, peppy, engaging and is designed for toddlers and children. The audio is a home recording and the song is muffled.", "data_idx": 5233, "number": 0, "label": "metal"} +{"file_name": "train_09355.png", "caption": "This song is an animated Children\u2019s Song. The tempo is fast with many singing different parts. The song is simple and happy with spirited backup vocals, female, male and child vocals with an animated keyboard harmony, rhythmic drumming , acoustic guitar and choral harmony. The song is light, peppy, engaging and is designed for toddlers and children. The audio is a home recording and the song is muffled.", "data_idx": 5233, "number": 1, "label": "metal"} +{"file_name": "train_09356.png", "caption": "This song is an animated Children\u2019s Song. The tempo is fast with many singing different parts. The song is simple and happy with spirited backup vocals, female, male and child vocals with an animated keyboard harmony, rhythmic drumming , acoustic guitar and choral harmony. The song is light, peppy, engaging and is designed for toddlers and children. The audio is a home recording and the song is muffled.", "data_idx": 5233, "number": 2, "label": "metal"} +{"file_name": "train_09357.png", "caption": "This song is an animated Children\u2019s Song. The tempo is fast with many singing different parts. The song is simple and happy with spirited backup vocals, female, male and child vocals with an animated keyboard harmony, rhythmic drumming , acoustic guitar and choral harmony. The song is light, peppy, engaging and is designed for toddlers and children. The audio is a home recording and the song is muffled.", "data_idx": 5233, "number": 3, "label": "metal"} +{"file_name": "train_09358.png", "caption": "The song is an instrumental. The tempo is medium with a guitarist playing traditional flamenco style guitar in a rhumba rhythm. The song has a Latin dance groove and sounds delightful. The song has a poor audio quality.", "data_idx": 5235, "number": 0, "label": "blues"} +{"file_name": "train_09359.png", "caption": "The song is an instrumental. The tempo is medium with a guitarist playing traditional flamenco style guitar in a rhumba rhythm. The song has a Latin dance groove and sounds delightful. The song has a poor audio quality.", "data_idx": 5235, "number": 1, "label": "blues"} +{"file_name": "train_09360.png", "caption": "The song is an instrumental. The tempo is medium with a guitarist playing traditional flamenco style guitar in a rhumba rhythm. The song has a Latin dance groove and sounds delightful. The song has a poor audio quality.", "data_idx": 5235, "number": 2, "label": "blues"} +{"file_name": "train_09361.png", "caption": "The song is an instrumental. The tempo is medium with a guitarist playing traditional flamenco style guitar in a rhumba rhythm. The song has a Latin dance groove and sounds delightful. The song has a poor audio quality.", "data_idx": 5235, "number": 3, "label": "blues"} +{"file_name": "train_09362.png", "caption": "A drum is playing a lot of crash hits with fast and accurate snare rolls along to a backing track that contains an e-guitar playing a riff in a lower key. This song may be playing at a studio practicing.", "data_idx": 5237, "number": 0, "label": "hiphop"} +{"file_name": "train_09363.png", "caption": "A drum is playing a lot of crash hits with fast and accurate snare rolls along to a backing track that contains an e-guitar playing a riff in a lower key. This song may be playing at a studio practicing.", "data_idx": 5237, "number": 1, "label": "hiphop"} +{"file_name": "train_09364.png", "caption": "An acoustic piano is playing a sad sounding composition while someone is playing a synthesizer lead-sound that sounds like someone crying. You can hear a lot of white noise in the recording. This seems to be an amateur recording. This song may be playing on a TV show.", "data_idx": 5238, "number": 0, "label": "classical"} +{"file_name": "train_09365.png", "caption": "An acoustic piano is playing a sad sounding composition while someone is playing a synthesizer lead-sound that sounds like someone crying. You can hear a lot of white noise in the recording. This seems to be an amateur recording. This song may be playing on a TV show.", "data_idx": 5238, "number": 1, "label": "classical"} +{"file_name": "train_09366.png", "caption": "An acoustic piano is playing a sad sounding composition while someone is playing a synthesizer lead-sound that sounds like someone crying. You can hear a lot of white noise in the recording. This seems to be an amateur recording. This song may be playing on a TV show.", "data_idx": 5238, "number": 2, "label": "classical"} +{"file_name": "train_09367.png", "caption": "An acoustic piano is playing a sad sounding composition while someone is playing a synthesizer lead-sound that sounds like someone crying. You can hear a lot of white noise in the recording. This seems to be an amateur recording. This song may be playing on a TV show.", "data_idx": 5238, "number": 3, "label": "classical"} +{"file_name": "train_09368.png", "caption": "This song contains digital drums playing a hiphop kinda feel along with a bassline. The most energy comes from the male voice singing with autotune and a lot of backing voices cheering and singing along: Then a male voice starts rapping. The backing voices are spread across the both sides of the speakers. This song may be playing outside chilling with your friends.", "data_idx": 5240, "number": 0, "label": "disco"} +{"file_name": "train_09369.png", "caption": "This song contains digital drums playing a hiphop kinda feel along with a bassline. The most energy comes from the male voice singing with autotune and a lot of backing voices cheering and singing along: Then a male voice starts rapping. The backing voices are spread across the both sides of the speakers. This song may be playing outside chilling with your friends.", "data_idx": 5240, "number": 1, "label": "disco"} +{"file_name": "train_09370.png", "caption": "This song contains digital drums playing a hiphop kinda feel along with a bassline. The most energy comes from the male voice singing with autotune and a lot of backing voices cheering and singing along: Then a male voice starts rapping. The backing voices are spread across the both sides of the speakers. This song may be playing outside chilling with your friends.", "data_idx": 5240, "number": 2, "label": "disco"} +{"file_name": "train_09371.png", "caption": "This song contains digital drums playing a hiphop kinda feel along with a bassline. The most energy comes from the male voice singing with autotune and a lot of backing voices cheering and singing along: Then a male voice starts rapping. The backing voices are spread across the both sides of the speakers. This song may be playing outside chilling with your friends.", "data_idx": 5240, "number": 3, "label": "disco"} +{"file_name": "train_09372.png", "caption": "The Metal song features a repetitive, aggressive male vocal screaming over wide, aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits and energetic cymbals. There is a toms roll at the end of the loop. It sounds aggressive, energetic and manic - like something you would jump into a mosh pit at the concert.", "data_idx": 5241, "number": 0, "label": "metal"} +{"file_name": "train_09373.png", "caption": "The Metal song features a repetitive, aggressive male vocal screaming over wide, aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits and energetic cymbals. There is a toms roll at the end of the loop. It sounds aggressive, energetic and manic - like something you would jump into a mosh pit at the concert.", "data_idx": 5241, "number": 1, "label": "metal"} +{"file_name": "train_09374.png", "caption": "The Metal song features a repetitive, aggressive male vocal screaming over wide, aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits and energetic cymbals. There is a toms roll at the end of the loop. It sounds aggressive, energetic and manic - like something you would jump into a mosh pit at the concert.", "data_idx": 5241, "number": 2, "label": "metal"} +{"file_name": "train_09375.png", "caption": "The Metal song features a repetitive, aggressive male vocal screaming over wide, aggressive electric guitar chords, distorted bass guitar, punchy snare and kick hits and energetic cymbals. There is a toms roll at the end of the loop. It sounds aggressive, energetic and manic - like something you would jump into a mosh pit at the concert.", "data_idx": 5241, "number": 3, "label": "metal"} +{"file_name": "train_09376.png", "caption": "This is a Western music piece performed live by an orchestra. There is a mandolin playing the main melody. Many strummed instruments such as acoustic guitar and ukulele are being played in the melodic background. These sounds evoke an adventurous feeling This piece could be used in the soundtrack of a Western movie/TV series. It could also suit well in the soundtrack of a wild west themed video game like Red Dead Redemption.", "data_idx": 5243, "number": 0, "label": "blues"} +{"file_name": "train_09377.png", "caption": "This is a Western music piece performed live by an orchestra. There is a mandolin playing the main melody. Many strummed instruments such as acoustic guitar and ukulele are being played in the melodic background. These sounds evoke an adventurous feeling This piece could be used in the soundtrack of a Western movie/TV series. It could also suit well in the soundtrack of a wild west themed video game like Red Dead Redemption.", "data_idx": 5243, "number": 1, "label": "blues"} +{"file_name": "train_09378.png", "caption": "This is a Western music piece performed live by an orchestra. There is a mandolin playing the main melody. Many strummed instruments such as acoustic guitar and ukulele are being played in the melodic background. These sounds evoke an adventurous feeling This piece could be used in the soundtrack of a Western movie/TV series. It could also suit well in the soundtrack of a wild west themed video game like Red Dead Redemption.", "data_idx": 5243, "number": 2, "label": "blues"} +{"file_name": "train_09379.png", "caption": "This is a Western music piece performed live by an orchestra. There is a mandolin playing the main melody. Many strummed instruments such as acoustic guitar and ukulele are being played in the melodic background. These sounds evoke an adventurous feeling This piece could be used in the soundtrack of a Western movie/TV series. It could also suit well in the soundtrack of a wild west themed video game like Red Dead Redemption.", "data_idx": 5243, "number": 3, "label": "blues"} +{"file_name": "train_09380.png", "caption": "This is an excerpt from a TV series. There are female voices that can be heard. There is a walking sound. The birds are singing. There is a mellow flute tune being played. Various sounds can be sampled from this recording.", "data_idx": 5244, "number": 0, "label": "hiphop"} +{"file_name": "train_09381.png", "caption": "This is an excerpt from a TV series. There are female voices that can be heard. There is a walking sound. The birds are singing. There is a mellow flute tune being played. Various sounds can be sampled from this recording.", "data_idx": 5244, "number": 1, "label": "hiphop"} +{"file_name": "train_09382.png", "caption": "This is an excerpt from a TV series. There are female voices that can be heard. There is a walking sound. The birds are singing. There is a mellow flute tune being played. Various sounds can be sampled from this recording.", "data_idx": 5244, "number": 2, "label": "hiphop"} +{"file_name": "train_09383.png", "caption": "This is an excerpt from a TV series. There are female voices that can be heard. There is a walking sound. The birds are singing. There is a mellow flute tune being played. Various sounds can be sampled from this recording.", "data_idx": 5244, "number": 3, "label": "hiphop"} +{"file_name": "train_09384.png", "caption": "This is the theme of a cartoon. There is a female vocalist singing merrily at a medium-to-high pitch in the Japanese language. The melody is being played on the strings and the piano while a simple on-beat bass line can be heard being played in the background. There is a simple 4/4 acoustic drum beat for the rhythm. The piece has an uplifting atmosphere. This piece could be used in the soundtrack of a children's movie. It could also be used in anime soundtracks.", "data_idx": 5246, "number": 0, "label": "reggae"} +{"file_name": "train_09385.png", "caption": "This is the theme of a cartoon. There is a female vocalist singing merrily at a medium-to-high pitch in the Japanese language. The melody is being played on the strings and the piano while a simple on-beat bass line can be heard being played in the background. There is a simple 4/4 acoustic drum beat for the rhythm. The piece has an uplifting atmosphere. This piece could be used in the soundtrack of a children's movie. It could also be used in anime soundtracks.", "data_idx": 5246, "number": 1, "label": "reggae"} +{"file_name": "train_09386.png", "caption": "This is the theme of a cartoon. There is a female vocalist singing merrily at a medium-to-high pitch in the Japanese language. The melody is being played on the strings and the piano while a simple on-beat bass line can be heard being played in the background. There is a simple 4/4 acoustic drum beat for the rhythm. The piece has an uplifting atmosphere. This piece could be used in the soundtrack of a children's movie. It could also be used in anime soundtracks.", "data_idx": 5246, "number": 2, "label": "reggae"} +{"file_name": "train_09387.png", "caption": "This is the theme of a cartoon. There is a female vocalist singing merrily at a medium-to-high pitch in the Japanese language. The melody is being played on the strings and the piano while a simple on-beat bass line can be heard being played in the background. There is a simple 4/4 acoustic drum beat for the rhythm. The piece has an uplifting atmosphere. This piece could be used in the soundtrack of a children's movie. It could also be used in anime soundtracks.", "data_idx": 5246, "number": 3, "label": "reggae"} +{"file_name": "train_09388.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive instruments, steel guitar melody and shimmering bells melody. The recording is in mono and it sounds really noisy, messy and muddy, since the frequencies of the instruments are clashing with each other.", "data_idx": 5250, "number": 0, "label": "classical"} +{"file_name": "train_09389.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive instruments, steel guitar melody and shimmering bells melody. The recording is in mono and it sounds really noisy, messy and muddy, since the frequencies of the instruments are clashing with each other.", "data_idx": 5250, "number": 1, "label": "classical"} +{"file_name": "train_09390.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive instruments, steel guitar melody and shimmering bells melody. The recording is in mono and it sounds really noisy, messy and muddy, since the frequencies of the instruments are clashing with each other.", "data_idx": 5250, "number": 2, "label": "classical"} +{"file_name": "train_09391.png", "caption": "The low quality recording features a live performance of a traditional song that consists of wooden percussive instruments, steel guitar melody and shimmering bells melody. The recording is in mono and it sounds really noisy, messy and muddy, since the frequencies of the instruments are clashing with each other.", "data_idx": 5250, "number": 3, "label": "classical"} +{"file_name": "train_09392.png", "caption": "A male vocalist sings this song. The tempo is medium with loud boomy singing.the audio quality is bad so the music and vocals are muffled. There are traces of tambourine beat, trumpet or some brass instrument,keyboard accompaniment, people talking, chanting and clapping. It is chaotic, confusing and noisy.", "data_idx": 5252, "number": 0, "label": "classical"} +{"file_name": "train_09393.png", "caption": "A male vocalist sings this song. The tempo is medium with loud boomy singing.the audio quality is bad so the music and vocals are muffled. There are traces of tambourine beat, trumpet or some brass instrument,keyboard accompaniment, people talking, chanting and clapping. It is chaotic, confusing and noisy.", "data_idx": 5252, "number": 1, "label": "classical"} +{"file_name": "train_09394.png", "caption": "A male vocalist sings this song. The tempo is medium with loud boomy singing.the audio quality is bad so the music and vocals are muffled. There are traces of tambourine beat, trumpet or some brass instrument,keyboard accompaniment, people talking, chanting and clapping. It is chaotic, confusing and noisy.", "data_idx": 5252, "number": 2, "label": "classical"} +{"file_name": "train_09395.png", "caption": "A male vocalist sings this song. The tempo is medium with loud boomy singing.the audio quality is bad so the music and vocals are muffled. There are traces of tambourine beat, trumpet or some brass instrument,keyboard accompaniment, people talking, chanting and clapping. It is chaotic, confusing and noisy.", "data_idx": 5252, "number": 3, "label": "classical"} +{"file_name": "train_09396.png", "caption": "This is a rock music piece. There is a male vocalist singing melodically in the lead. A clean sounding electric is playing the main tune while a piano later joins in for texture. There is a mild sounding bass guitar. A basic rock acoustic drum beat provides the rhythmic structure. There is a gloomy aura to this song. It could be used in the soundtracks of drama movies and TV shows.", "data_idx": 5253, "number": 0, "label": "rock"} +{"file_name": "train_09397.png", "caption": "This is a rock music piece. There is a male vocalist singing melodically in the lead. A clean sounding electric is playing the main tune while a piano later joins in for texture. There is a mild sounding bass guitar. A basic rock acoustic drum beat provides the rhythmic structure. There is a gloomy aura to this song. It could be used in the soundtracks of drama movies and TV shows.", "data_idx": 5253, "number": 1, "label": "rock"} +{"file_name": "train_09398.png", "caption": "This is a rock music piece. There is a male vocalist singing melodically in the lead. A clean sounding electric is playing the main tune while a piano later joins in for texture. There is a mild sounding bass guitar. A basic rock acoustic drum beat provides the rhythmic structure. There is a gloomy aura to this song. It could be used in the soundtracks of drama movies and TV shows.", "data_idx": 5253, "number": 2, "label": "rock"} +{"file_name": "train_09399.png", "caption": "This is a rock music piece. There is a male vocalist singing melodically in the lead. A clean sounding electric is playing the main tune while a piano later joins in for texture. There is a mild sounding bass guitar. A basic rock acoustic drum beat provides the rhythmic structure. There is a gloomy aura to this song. It could be used in the soundtracks of drama movies and TV shows.", "data_idx": 5253, "number": 3, "label": "rock"} +{"file_name": "train_09400.png", "caption": "Someone is playing a solo on a clean e-guitar along with a backing track that sounds like a slow soulful, sad ballad with strings,bass, acoustic drums and an e-guitar strumming single chords as a rhythmic instrument. This song may be played outside by a busker.", "data_idx": 5254, "number": 0, "label": "blues"} +{"file_name": "train_09401.png", "caption": "Someone is playing a solo on a clean e-guitar along with a backing track that sounds like a slow soulful, sad ballad with strings,bass, acoustic drums and an e-guitar strumming single chords as a rhythmic instrument. This song may be played outside by a busker.", "data_idx": 5254, "number": 1, "label": "blues"} +{"file_name": "train_09402.png", "caption": "Someone is playing a solo on a clean e-guitar along with a backing track that sounds like a slow soulful, sad ballad with strings,bass, acoustic drums and an e-guitar strumming single chords as a rhythmic instrument. This song may be played outside by a busker.", "data_idx": 5254, "number": 2, "label": "blues"} +{"file_name": "train_09403.png", "caption": "Someone is playing a solo on a clean e-guitar along with a backing track that sounds like a slow soulful, sad ballad with strings,bass, acoustic drums and an e-guitar strumming single chords as a rhythmic instrument. This song may be played outside by a busker.", "data_idx": 5254, "number": 3, "label": "blues"} +{"file_name": "train_09404.png", "caption": "This slow rock song features a guitar playing arpeggiated chords. The guitar has added effects of chorus and reverb. The bass plays a descending run in the scale of the chords. The percussion plays the different cymbals one after the other. The recording quality is low. There are no voices in this song. This song can be played in a dreamy sequence of a movie.", "data_idx": 5255, "number": 0, "label": "metal"} +{"file_name": "train_09405.png", "caption": "This slow rock song features a guitar playing arpeggiated chords. The guitar has added effects of chorus and reverb. The bass plays a descending run in the scale of the chords. The percussion plays the different cymbals one after the other. The recording quality is low. There are no voices in this song. This song can be played in a dreamy sequence of a movie.", "data_idx": 5255, "number": 1, "label": "metal"} +{"file_name": "train_09406.png", "caption": "A sample of an alto saxophone playing a repeating melody is being played. At the end some percussive hit comes in with a riser. The whole song sounds upbeat and invites the body to pulse. This song may be playing at a festival with a DJ on stage.", "data_idx": 5260, "number": 0, "label": "hiphop"} +{"file_name": "train_09407.png", "caption": "A sample of an alto saxophone playing a repeating melody is being played. At the end some percussive hit comes in with a riser. The whole song sounds upbeat and invites the body to pulse. This song may be playing at a festival with a DJ on stage.", "data_idx": 5260, "number": 1, "label": "hiphop"} +{"file_name": "train_09408.png", "caption": "A sample of an alto saxophone playing a repeating melody is being played. At the end some percussive hit comes in with a riser. The whole song sounds upbeat and invites the body to pulse. This song may be playing at a festival with a DJ on stage.", "data_idx": 5260, "number": 2, "label": "hiphop"} +{"file_name": "train_09409.png", "caption": "A sample of an alto saxophone playing a repeating melody is being played. At the end some percussive hit comes in with a riser. The whole song sounds upbeat and invites the body to pulse. This song may be playing at a festival with a DJ on stage.", "data_idx": 5260, "number": 3, "label": "hiphop"} +{"file_name": "train_09410.png", "caption": "This is a live recording from a rock music concert. There is an electric guitar playing the rhythm section upfront with a loud drum background. A harmonica solo is being played over the guitar and the drums. The song carries a playful and energetic atmosphere. This music could be played at a bar, especially a rock bar.", "data_idx": 5261, "number": 0, "label": "hiphop"} +{"file_name": "train_09411.png", "caption": "This is a live recording from a rock music concert. There is an electric guitar playing the rhythm section upfront with a loud drum background. A harmonica solo is being played over the guitar and the drums. The song carries a playful and energetic atmosphere. This music could be played at a bar, especially a rock bar.", "data_idx": 5261, "number": 1, "label": "hiphop"} +{"file_name": "train_09412.png", "caption": "A female vocalist sings this classic Spanish song. The tempo is medium with a lively accordion harmony, guiro , congas and bongos rhythm, steady bass line, and acoustic guitar accompaniment. The music is simple, light, happy, joyful, cheerful, celebratory and spirited with vocal backup.There are sounds of people cheering in the background. This is a Classic Latin Folk Song.", "data_idx": 5263, "number": 0, "label": "hiphop"} +{"file_name": "train_09413.png", "caption": "A female vocalist sings this classic Spanish song. The tempo is medium with a lively accordion harmony, guiro , congas and bongos rhythm, steady bass line, and acoustic guitar accompaniment. The music is simple, light, happy, joyful, cheerful, celebratory and spirited with vocal backup.There are sounds of people cheering in the background. This is a Classic Latin Folk Song.", "data_idx": 5263, "number": 1, "label": "hiphop"} +{"file_name": "train_09414.png", "caption": "A female vocalist sings this classic Spanish song. The tempo is medium with a lively accordion harmony, guiro , congas and bongos rhythm, steady bass line, and acoustic guitar accompaniment. The music is simple, light, happy, joyful, cheerful, celebratory and spirited with vocal backup.There are sounds of people cheering in the background. This is a Classic Latin Folk Song.", "data_idx": 5263, "number": 2, "label": "hiphop"} +{"file_name": "train_09415.png", "caption": "A female vocalist sings this classic Spanish song. The tempo is medium with a lively accordion harmony, guiro , congas and bongos rhythm, steady bass line, and acoustic guitar accompaniment. The music is simple, light, happy, joyful, cheerful, celebratory and spirited with vocal backup.There are sounds of people cheering in the background. This is a Classic Latin Folk Song.", "data_idx": 5263, "number": 3, "label": "hiphop"} +{"file_name": "train_09416.png", "caption": "This is an American folk music piece. There is a male vocal singing melodically as the lead and there is a male back vocal accompanying the lead in different harmonies. The melody is composed of a rich amalgam of chordophones such as the fiddle, the acoustic guitar, the bass guitar and the banjo. The atmosphere is easygoing but melancholic. This piece could be playing in the background at an American diner or a pub. It could also work well in the soundtrack of a movie taking place in rural USA.", "data_idx": 5269, "number": 0, "label": "blues"} +{"file_name": "train_09417.png", "caption": "This is an American folk music piece. There is a male vocal singing melodically as the lead and there is a male back vocal accompanying the lead in different harmonies. The melody is composed of a rich amalgam of chordophones such as the fiddle, the acoustic guitar, the bass guitar and the banjo. The atmosphere is easygoing but melancholic. This piece could be playing in the background at an American diner or a pub. It could also work well in the soundtrack of a movie taking place in rural USA.", "data_idx": 5269, "number": 1, "label": "blues"} +{"file_name": "train_09418.png", "caption": "This is an American folk music piece. There is a male vocal singing melodically as the lead and there is a male back vocal accompanying the lead in different harmonies. The melody is composed of a rich amalgam of chordophones such as the fiddle, the acoustic guitar, the bass guitar and the banjo. The atmosphere is easygoing but melancholic. This piece could be playing in the background at an American diner or a pub. It could also work well in the soundtrack of a movie taking place in rural USA.", "data_idx": 5269, "number": 2, "label": "blues"} +{"file_name": "train_09419.png", "caption": "This is an American folk music piece. There is a male vocal singing melodically as the lead and there is a male back vocal accompanying the lead in different harmonies. The melody is composed of a rich amalgam of chordophones such as the fiddle, the acoustic guitar, the bass guitar and the banjo. The atmosphere is easygoing but melancholic. This piece could be playing in the background at an American diner or a pub. It could also work well in the soundtrack of a movie taking place in rural USA.", "data_idx": 5269, "number": 3, "label": "blues"} +{"file_name": "train_09420.png", "caption": "This is an electronic DJ set in the style of Jamaican reggae music. There is a DJ performing over a track that has a groovy beat being played by the electric guitar and the electronic drums. There is a tropical atmosphere. Samples could be lifted from this recording to be used in the beat-making.", "data_idx": 5271, "number": 0, "label": "reggae"} +{"file_name": "train_09421.png", "caption": "This is an electronic DJ set in the style of Jamaican reggae music. There is a DJ performing over a track that has a groovy beat being played by the electric guitar and the electronic drums. There is a tropical atmosphere. Samples could be lifted from this recording to be used in the beat-making.", "data_idx": 5271, "number": 1, "label": "reggae"} +{"file_name": "train_09422.png", "caption": "This is an electronic DJ set in the style of Jamaican reggae music. There is a DJ performing over a track that has a groovy beat being played by the electric guitar and the electronic drums. There is a tropical atmosphere. Samples could be lifted from this recording to be used in the beat-making.", "data_idx": 5271, "number": 2, "label": "reggae"} +{"file_name": "train_09423.png", "caption": "This is an electronic DJ set in the style of Jamaican reggae music. There is a DJ performing over a track that has a groovy beat being played by the electric guitar and the electronic drums. There is a tropical atmosphere. Samples could be lifted from this recording to be used in the beat-making.", "data_idx": 5271, "number": 3, "label": "reggae"} +{"file_name": "train_09424.png", "caption": "The music features a mix between jazz and soul music. The instrumental is easygoing and fun. A male singer with a seductive and appealing voice sings a fun melody. A saxophone plays a melody in the background that adds texture to the instrumental. The music is a live recording of a performance.", "data_idx": 5272, "number": 0, "label": "blues"} +{"file_name": "train_09425.png", "caption": "The music features a mix between jazz and soul music. The instrumental is easygoing and fun. A male singer with a seductive and appealing voice sings a fun melody. A saxophone plays a melody in the background that adds texture to the instrumental. The music is a live recording of a performance.", "data_idx": 5272, "number": 1, "label": "blues"} +{"file_name": "train_09426.png", "caption": "The music features a mix between jazz and soul music. The instrumental is easygoing and fun. A male singer with a seductive and appealing voice sings a fun melody. A saxophone plays a melody in the background that adds texture to the instrumental. The music is a live recording of a performance.", "data_idx": 5272, "number": 2, "label": "blues"} +{"file_name": "train_09427.png", "caption": "The music features a mix between jazz and soul music. The instrumental is easygoing and fun. A male singer with a seductive and appealing voice sings a fun melody. A saxophone plays a melody in the background that adds texture to the instrumental. The music is a live recording of a performance.", "data_idx": 5272, "number": 3, "label": "blues"} +{"file_name": "train_09428.png", "caption": "The Disco song features a widely spread electric guitar chord progression, acoustic rhythm guitar, shimmering shakers, tinny percussive elements, followed by simple kick pattern, punchy snare and groovy bass guitar, over which sings the flat male vocal. It sounds energetic, fun and exciting, as it is something you would definitely hear in clubs during 70s and 80s.", "data_idx": 5274, "number": 0, "label": "disco"} +{"file_name": "train_09429.png", "caption": "The Disco song features a widely spread electric guitar chord progression, acoustic rhythm guitar, shimmering shakers, tinny percussive elements, followed by simple kick pattern, punchy snare and groovy bass guitar, over which sings the flat male vocal. It sounds energetic, fun and exciting, as it is something you would definitely hear in clubs during 70s and 80s.", "data_idx": 5274, "number": 1, "label": "disco"} +{"file_name": "train_09430.png", "caption": "The Disco song features a widely spread electric guitar chord progression, acoustic rhythm guitar, shimmering shakers, tinny percussive elements, followed by simple kick pattern, punchy snare and groovy bass guitar, over which sings the flat male vocal. It sounds energetic, fun and exciting, as it is something you would definitely hear in clubs during 70s and 80s.", "data_idx": 5274, "number": 2, "label": "disco"} +{"file_name": "train_09431.png", "caption": "The Disco song features a widely spread electric guitar chord progression, acoustic rhythm guitar, shimmering shakers, tinny percussive elements, followed by simple kick pattern, punchy snare and groovy bass guitar, over which sings the flat male vocal. It sounds energetic, fun and exciting, as it is something you would definitely hear in clubs during 70s and 80s.", "data_idx": 5274, "number": 3, "label": "disco"} +{"file_name": "train_09432.png", "caption": "This is a classical music performance. The piece is played by a classical piano which is complex with rising and falling sequences. The atmosphere is filled with emotion and passion. This heart-touching piece could certainly be used in the soundtrack of a drama movie or a TV show.", "data_idx": 5276, "number": 0, "label": "classical"} +{"file_name": "train_09433.png", "caption": "This is a classical music performance. The piece is played by a classical piano which is complex with rising and falling sequences. The atmosphere is filled with emotion and passion. This heart-touching piece could certainly be used in the soundtrack of a drama movie or a TV show.", "data_idx": 5276, "number": 1, "label": "classical"} +{"file_name": "train_09434.png", "caption": "This is a classical music performance. The piece is played by a classical piano which is complex with rising and falling sequences. The atmosphere is filled with emotion and passion. This heart-touching piece could certainly be used in the soundtrack of a drama movie or a TV show.", "data_idx": 5276, "number": 2, "label": "classical"} +{"file_name": "train_09435.png", "caption": "This is a classical music performance. The piece is played by a classical piano which is complex with rising and falling sequences. The atmosphere is filled with emotion and passion. This heart-touching piece could certainly be used in the soundtrack of a drama movie or a TV show.", "data_idx": 5276, "number": 3, "label": "classical"} +{"file_name": "train_09436.png", "caption": "This slow rock song starts with an acoustic guitar playing chords in fingerstyle. For each chord, a pedal bass note is played while the higher pitch notes are played in a repeated sequence of three notes being played one after the other. A male voice sings the main melody. There are no other instruments in this song. This song can be played in a movie scene where a car is driving across a deserted highway.", "data_idx": 5277, "number": 0, "label": "country"} +{"file_name": "train_09437.png", "caption": "This slow rock song starts with an acoustic guitar playing chords in fingerstyle. For each chord, a pedal bass note is played while the higher pitch notes are played in a repeated sequence of three notes being played one after the other. A male voice sings the main melody. There are no other instruments in this song. This song can be played in a movie scene where a car is driving across a deserted highway.", "data_idx": 5277, "number": 1, "label": "country"} +{"file_name": "train_09438.png", "caption": "This slow rock song starts with an acoustic guitar playing chords in fingerstyle. For each chord, a pedal bass note is played while the higher pitch notes are played in a repeated sequence of three notes being played one after the other. A male voice sings the main melody. There are no other instruments in this song. This song can be played in a movie scene where a car is driving across a deserted highway.", "data_idx": 5277, "number": 2, "label": "country"} +{"file_name": "train_09439.png", "caption": "This slow rock song starts with an acoustic guitar playing chords in fingerstyle. For each chord, a pedal bass note is played while the higher pitch notes are played in a repeated sequence of three notes being played one after the other. A male voice sings the main melody. There are no other instruments in this song. This song can be played in a movie scene where a car is driving across a deserted highway.", "data_idx": 5277, "number": 3, "label": "country"} +{"file_name": "train_09440.png", "caption": "The low quality recording features a pop song that consists of groovy synth keys, punchy snare and kick hits, simple hi hats, shimmering open hats, smooth sub bass, arpeggiated echoing synth lead and wide synth pad chords. It sounds energetic and a bit repetitive - like something you would hear in a TV commercial, as background music.", "data_idx": 5279, "number": 0, "label": "pop"} +{"file_name": "train_09441.png", "caption": "The low quality recording features a pop song that consists of groovy synth keys, punchy snare and kick hits, simple hi hats, shimmering open hats, smooth sub bass, arpeggiated echoing synth lead and wide synth pad chords. It sounds energetic and a bit repetitive - like something you would hear in a TV commercial, as background music.", "data_idx": 5279, "number": 1, "label": "pop"} +{"file_name": "train_09442.png", "caption": "The low quality recording features a pop song that consists of groovy synth keys, punchy snare and kick hits, simple hi hats, shimmering open hats, smooth sub bass, arpeggiated echoing synth lead and wide synth pad chords. It sounds energetic and a bit repetitive - like something you would hear in a TV commercial, as background music.", "data_idx": 5279, "number": 2, "label": "pop"} +{"file_name": "train_09443.png", "caption": "The low quality recording features a pop song that consists of groovy synth keys, punchy snare and kick hits, simple hi hats, shimmering open hats, smooth sub bass, arpeggiated echoing synth lead and wide synth pad chords. It sounds energetic and a bit repetitive - like something you would hear in a TV commercial, as background music.", "data_idx": 5279, "number": 3, "label": "pop"} +{"file_name": "train_09444.png", "caption": "This song contains a soft synth pad playing long notes. With every drum kick hit a bell sounding instrument is playing a repeating melody. A male voice is singing a melody or mantra. The whole recording is full of reverb and not of the best sound-quality. This song may be playing while slowly moving/dancing.", "data_idx": 5280, "number": 0, "label": "rock"} +{"file_name": "train_09445.png", "caption": "This song contains a soft synth pad playing long notes. With every drum kick hit a bell sounding instrument is playing a repeating melody. A male voice is singing a melody or mantra. The whole recording is full of reverb and not of the best sound-quality. This song may be playing while slowly moving/dancing.", "data_idx": 5280, "number": 1, "label": "rock"} +{"file_name": "train_09446.png", "caption": "This song contains a soft synth pad playing long notes. With every drum kick hit a bell sounding instrument is playing a repeating melody. A male voice is singing a melody or mantra. The whole recording is full of reverb and not of the best sound-quality. This song may be playing while slowly moving/dancing.", "data_idx": 5280, "number": 2, "label": "rock"} +{"file_name": "train_09447.png", "caption": "This song contains a soft synth pad playing long notes. With every drum kick hit a bell sounding instrument is playing a repeating melody. A male voice is singing a melody or mantra. The whole recording is full of reverb and not of the best sound-quality. This song may be playing while slowly moving/dancing.", "data_idx": 5280, "number": 3, "label": "rock"} +{"file_name": "train_09448.png", "caption": "The low quality recording features a hip hop song played on a speaker that features groovy piano melody, synth lead melody, strings power chords, punchy snare, shimmering shakers, claps and punchy kick hits. It sounds noisy and thin as it lacks bass frequencies.", "data_idx": 5281, "number": 0, "label": "reggae"} +{"file_name": "train_09449.png", "caption": "The low quality recording features a hip hop song played on a speaker that features groovy piano melody, synth lead melody, strings power chords, punchy snare, shimmering shakers, claps and punchy kick hits. It sounds noisy and thin as it lacks bass frequencies.", "data_idx": 5281, "number": 1, "label": "reggae"} +{"file_name": "train_09450.png", "caption": "The low quality recording features a hip hop song played on a speaker that features groovy piano melody, synth lead melody, strings power chords, punchy snare, shimmering shakers, claps and punchy kick hits. It sounds noisy and thin as it lacks bass frequencies.", "data_idx": 5281, "number": 2, "label": "reggae"} +{"file_name": "train_09451.png", "caption": "The low quality recording features a hip hop song played on a speaker that features groovy piano melody, synth lead melody, strings power chords, punchy snare, shimmering shakers, claps and punchy kick hits. It sounds noisy and thin as it lacks bass frequencies.", "data_idx": 5281, "number": 3, "label": "reggae"} +{"file_name": "train_09452.png", "caption": "Someone is playing an acoustic guitar while a female voice is singing/yodeling in a higher pitch. in the background voices can be heard. This is an amateur recording. This song may be playing at a local folk-event.", "data_idx": 5282, "number": 0, "label": "pop"} +{"file_name": "train_09453.png", "caption": "Someone is playing an acoustic guitar while a female voice is singing/yodeling in a higher pitch. in the background voices can be heard. This is an amateur recording. This song may be playing at a local folk-event.", "data_idx": 5282, "number": 1, "label": "pop"} +{"file_name": "train_09454.png", "caption": "Someone is playing an acoustic guitar while a female voice is singing/yodeling in a higher pitch. in the background voices can be heard. This is an amateur recording. This song may be playing at a local folk-event.", "data_idx": 5282, "number": 2, "label": "pop"} +{"file_name": "train_09455.png", "caption": "Someone is playing an acoustic guitar while a female voice is singing/yodeling in a higher pitch. in the background voices can be heard. This is an amateur recording. This song may be playing at a local folk-event.", "data_idx": 5282, "number": 3, "label": "pop"} +{"file_name": "train_09456.png", "caption": "The song is an instrumental piece. The song is medium tempo with a furiously playing timpani percussion, string section playing, horns playing and low pitched harmony that evokes danger and suspense. The song is a modern western classical instrumental.", "data_idx": 5283, "number": 0, "label": "rock"} +{"file_name": "train_09457.png", "caption": "The song is an instrumental piece. The song is medium tempo with a furiously playing timpani percussion, string section playing, horns playing and low pitched harmony that evokes danger and suspense. The song is a modern western classical instrumental.", "data_idx": 5283, "number": 1, "label": "rock"} +{"file_name": "train_09458.png", "caption": "The song is an instrumental piece. The song is medium tempo with a furiously playing timpani percussion, string section playing, horns playing and low pitched harmony that evokes danger and suspense. The song is a modern western classical instrumental.", "data_idx": 5283, "number": 2, "label": "rock"} +{"file_name": "train_09459.png", "caption": "The song is an instrumental piece. The song is medium tempo with a furiously playing timpani percussion, string section playing, horns playing and low pitched harmony that evokes danger and suspense. The song is a modern western classical instrumental.", "data_idx": 5283, "number": 3, "label": "rock"} +{"file_name": "train_09460.png", "caption": "This is the recording of a latin dance music piece. It has a male vocalist singing the same word repeatedly at a medium-to-high pitch. There is an accordion playing the melody and a bass guitar in the background. The electronic drums play a latin beat for the rhythm. There is a constant rising and accelerating pattern in the piece. The sound of people shouting can be heard in the recording. The atmosphere is very loud and vibrant.", "data_idx": 5286, "number": 0, "label": "metal"} +{"file_name": "train_09461.png", "caption": "This is the recording of a latin dance music piece. It has a male vocalist singing the same word repeatedly at a medium-to-high pitch. There is an accordion playing the melody and a bass guitar in the background. The electronic drums play a latin beat for the rhythm. There is a constant rising and accelerating pattern in the piece. The sound of people shouting can be heard in the recording. The atmosphere is very loud and vibrant.", "data_idx": 5286, "number": 1, "label": "metal"} +{"file_name": "train_09462.png", "caption": "This audio includes a woman making unintelligible animal sounds with her voice. The audio is recorded live in low quality.", "data_idx": 5287, "number": 0, "label": "classical"} +{"file_name": "train_09463.png", "caption": "This audio includes a woman making unintelligible animal sounds with her voice. The audio is recorded live in low quality.", "data_idx": 5287, "number": 1, "label": "classical"} +{"file_name": "train_09464.png", "caption": "This audio includes a woman making unintelligible animal sounds with her voice. The audio is recorded live in low quality.", "data_idx": 5287, "number": 2, "label": "classical"} +{"file_name": "train_09465.png", "caption": "This audio includes a woman making unintelligible animal sounds with her voice. The audio is recorded live in low quality.", "data_idx": 5287, "number": 3, "label": "classical"} +{"file_name": "train_09466.png", "caption": "Someone is playing a cowbell along with other percussion such as congas along to a pumping bassline. A piano and a brass section are playing a countermelody to the female and male voices singing. In the background you can hear people cheering and whistling. This is an amateur recording and of poor audio-quality. This song may be playing on a dancefloor.", "data_idx": 5288, "number": 0, "label": "metal"} +{"file_name": "train_09467.png", "caption": "Someone is playing a cowbell along with other percussion such as congas along to a pumping bassline. A piano and a brass section are playing a countermelody to the female and male voices singing. In the background you can hear people cheering and whistling. This is an amateur recording and of poor audio-quality. This song may be playing on a dancefloor.", "data_idx": 5288, "number": 1, "label": "metal"} +{"file_name": "train_09468.png", "caption": "Someone is playing a cowbell along with other percussion such as congas along to a pumping bassline. A piano and a brass section are playing a countermelody to the female and male voices singing. In the background you can hear people cheering and whistling. This is an amateur recording and of poor audio-quality. This song may be playing on a dancefloor.", "data_idx": 5288, "number": 2, "label": "metal"} +{"file_name": "train_09469.png", "caption": "Someone is playing a cowbell along with other percussion such as congas along to a pumping bassline. A piano and a brass section are playing a countermelody to the female and male voices singing. In the background you can hear people cheering and whistling. This is an amateur recording and of poor audio-quality. This song may be playing on a dancefloor.", "data_idx": 5288, "number": 3, "label": "metal"} +{"file_name": "train_09470.png", "caption": "The Dance/Electronic song features a repetitive synth keys melody, synth guitar lick, distorted synth bass that perfectly complements the \"4 on the floor\" kick pattern, punchy snare hits layered with claps, simple \"2 step\" hi hat pattern, shimmering shakers, repetitive, pulsating synth pad chord progression and groovy synth keys chord progression. At the end of the first part of the loop, there is a short, reversed crash riser, where the drums subtly fade out, followed by energetic crash at the beginning of the second part of the loop, where the drums are brought back again. It sounds energetic and like something you would hear in clubs during the 00s.", "data_idx": 5289, "number": 0, "label": "metal"} +{"file_name": "train_09471.png", "caption": "The Dance/Electronic song features a repetitive synth keys melody, synth guitar lick, distorted synth bass that perfectly complements the \"4 on the floor\" kick pattern, punchy snare hits layered with claps, simple \"2 step\" hi hat pattern, shimmering shakers, repetitive, pulsating synth pad chord progression and groovy synth keys chord progression. At the end of the first part of the loop, there is a short, reversed crash riser, where the drums subtly fade out, followed by energetic crash at the beginning of the second part of the loop, where the drums are brought back again. It sounds energetic and like something you would hear in clubs during the 00s.", "data_idx": 5289, "number": 1, "label": "metal"} +{"file_name": "train_09472.png", "caption": "The Dance/Electronic song features a repetitive synth keys melody, synth guitar lick, distorted synth bass that perfectly complements the \"4 on the floor\" kick pattern, punchy snare hits layered with claps, simple \"2 step\" hi hat pattern, shimmering shakers, repetitive, pulsating synth pad chord progression and groovy synth keys chord progression. At the end of the first part of the loop, there is a short, reversed crash riser, where the drums subtly fade out, followed by energetic crash at the beginning of the second part of the loop, where the drums are brought back again. It sounds energetic and like something you would hear in clubs during the 00s.", "data_idx": 5289, "number": 2, "label": "metal"} +{"file_name": "train_09473.png", "caption": "The Dance/Electronic song features a repetitive synth keys melody, synth guitar lick, distorted synth bass that perfectly complements the \"4 on the floor\" kick pattern, punchy snare hits layered with claps, simple \"2 step\" hi hat pattern, shimmering shakers, repetitive, pulsating synth pad chord progression and groovy synth keys chord progression. At the end of the first part of the loop, there is a short, reversed crash riser, where the drums subtly fade out, followed by energetic crash at the beginning of the second part of the loop, where the drums are brought back again. It sounds energetic and like something you would hear in clubs during the 00s.", "data_idx": 5289, "number": 3, "label": "metal"} +{"file_name": "train_09474.png", "caption": "A male vocalist sings this devotional song. The tempo is medium with acoustic guitar rhythm, steady keyboard harmony, synthesised violin harmony and xylophone like sound and soft tambourine beats. The song is a soothing, calm, peaceful, meditative, Indian classical devotional chant.", "data_idx": 5291, "number": 0, "label": "classical"} +{"file_name": "train_09475.png", "caption": "A male vocalist sings this devotional song. The tempo is medium with acoustic guitar rhythm, steady keyboard harmony, synthesised violin harmony and xylophone like sound and soft tambourine beats. The song is a soothing, calm, peaceful, meditative, Indian classical devotional chant.", "data_idx": 5291, "number": 1, "label": "classical"} +{"file_name": "train_09476.png", "caption": "A male vocalist sings this devotional song. The tempo is medium with acoustic guitar rhythm, steady keyboard harmony, synthesised violin harmony and xylophone like sound and soft tambourine beats. The song is a soothing, calm, peaceful, meditative, Indian classical devotional chant.", "data_idx": 5291, "number": 2, "label": "classical"} +{"file_name": "train_09477.png", "caption": "A male vocalist sings this devotional song. The tempo is medium with acoustic guitar rhythm, steady keyboard harmony, synthesised violin harmony and xylophone like sound and soft tambourine beats. The song is a soothing, calm, peaceful, meditative, Indian classical devotional chant.", "data_idx": 5291, "number": 3, "label": "classical"} +{"file_name": "train_09478.png", "caption": "The low quality recording features a muffled trumpet melody playing. There is a random male laughing sound. The recording is very noisy and in mono. It sounds like an intro of a video.", "data_idx": 5295, "number": 0, "label": "blues"} +{"file_name": "train_09479.png", "caption": "The low quality recording features a muffled trumpet melody playing. There is a random male laughing sound. The recording is very noisy and in mono. It sounds like an intro of a video.", "data_idx": 5295, "number": 1, "label": "blues"} +{"file_name": "train_09480.png", "caption": "This is an instrumental heavy metal piece. The distorted electric guitar is playing an aggressive riff while accompanied by a bass guitar. In the rhythmic background, there is a slow but hard-hitting heavy metal beat played on the acoustic drums. The atmosphere is loud and violent. This piece can be used in the soundtrack of a movie/TV show involving crime. It could also be played at a rock bar or a sports venue.", "data_idx": 5296, "number": 0, "label": "metal"} +{"file_name": "train_09481.png", "caption": "This is an instrumental heavy metal piece. The distorted electric guitar is playing an aggressive riff while accompanied by a bass guitar. In the rhythmic background, there is a slow but hard-hitting heavy metal beat played on the acoustic drums. The atmosphere is loud and violent. This piece can be used in the soundtrack of a movie/TV show involving crime. It could also be played at a rock bar or a sports venue.", "data_idx": 5296, "number": 1, "label": "metal"} +{"file_name": "train_09482.png", "caption": "This is an instrumental heavy metal piece. The distorted electric guitar is playing an aggressive riff while accompanied by a bass guitar. In the rhythmic background, there is a slow but hard-hitting heavy metal beat played on the acoustic drums. The atmosphere is loud and violent. This piece can be used in the soundtrack of a movie/TV show involving crime. It could also be played at a rock bar or a sports venue.", "data_idx": 5296, "number": 2, "label": "metal"} +{"file_name": "train_09483.png", "caption": "This is an instrumental heavy metal piece. The distorted electric guitar is playing an aggressive riff while accompanied by a bass guitar. In the rhythmic background, there is a slow but hard-hitting heavy metal beat played on the acoustic drums. The atmosphere is loud and violent. This piece can be used in the soundtrack of a movie/TV show involving crime. It could also be played at a rock bar or a sports venue.", "data_idx": 5296, "number": 3, "label": "metal"} +{"file_name": "train_09484.png", "caption": "A male singer sings this delightful melody. The song is medium tempo with a ukulele accompaniment, steady drumming rhythm with various percussions like clapping and tambourine along with a keyboard accompaniment. The song is emotional and groovy. The song is a local Indian language pop song, most probably a Bengali pop song.", "data_idx": 5300, "number": 0, "label": "disco"} +{"file_name": "train_09485.png", "caption": "A male singer sings this delightful melody. The song is medium tempo with a ukulele accompaniment, steady drumming rhythm with various percussions like clapping and tambourine along with a keyboard accompaniment. The song is emotional and groovy. The song is a local Indian language pop song, most probably a Bengali pop song.", "data_idx": 5300, "number": 1, "label": "disco"} +{"file_name": "train_09486.png", "caption": "A male singer sings this delightful melody. The song is medium tempo with a ukulele accompaniment, steady drumming rhythm with various percussions like clapping and tambourine along with a keyboard accompaniment. The song is emotional and groovy. The song is a local Indian language pop song, most probably a Bengali pop song.", "data_idx": 5300, "number": 2, "label": "disco"} +{"file_name": "train_09487.png", "caption": "A male singer sings this delightful melody. The song is medium tempo with a ukulele accompaniment, steady drumming rhythm with various percussions like clapping and tambourine along with a keyboard accompaniment. The song is emotional and groovy. The song is a local Indian language pop song, most probably a Bengali pop song.", "data_idx": 5300, "number": 3, "label": "disco"} +{"file_name": "train_09488.png", "caption": "Techno or house music with a four on the floor kick pattern, off beat hi-hat pattern, synth chords with delay and a chopped vocal sample. It is mid-tempo and minimal for dancing.", "data_idx": 5302, "number": 0, "label": "hiphop"} +{"file_name": "train_09489.png", "caption": "Techno or house music with a four on the floor kick pattern, off beat hi-hat pattern, synth chords with delay and a chopped vocal sample. It is mid-tempo and minimal for dancing.", "data_idx": 5302, "number": 1, "label": "hiphop"} +{"file_name": "train_09490.png", "caption": "Techno or house music with a four on the floor kick pattern, off beat hi-hat pattern, synth chords with delay and a chopped vocal sample. It is mid-tempo and minimal for dancing.", "data_idx": 5302, "number": 2, "label": "hiphop"} +{"file_name": "train_09491.png", "caption": "Techno or house music with a four on the floor kick pattern, off beat hi-hat pattern, synth chords with delay and a chopped vocal sample. It is mid-tempo and minimal for dancing.", "data_idx": 5302, "number": 3, "label": "hiphop"} +{"file_name": "train_09492.png", "caption": "This is a new age piece. There is a flute playing the main melody with a lot of staccato notes. The rhythmic background consists of a medium tempo electronic drum beat with percussive elements all over the spectrum. There is a playful atmosphere to the piece. This piece can be used in the soundtrack of a children's TV show or an advertisement jingle.", "data_idx": 5308, "number": 0, "label": "disco"} +{"file_name": "train_09493.png", "caption": "This is a new age piece. There is a flute playing the main melody with a lot of staccato notes. The rhythmic background consists of a medium tempo electronic drum beat with percussive elements all over the spectrum. There is a playful atmosphere to the piece. This piece can be used in the soundtrack of a children's TV show or an advertisement jingle.", "data_idx": 5308, "number": 1, "label": "disco"} +{"file_name": "train_09494.png", "caption": "This is a new age piece. There is a flute playing the main melody with a lot of staccato notes. The rhythmic background consists of a medium tempo electronic drum beat with percussive elements all over the spectrum. There is a playful atmosphere to the piece. This piece can be used in the soundtrack of a children's TV show or an advertisement jingle.", "data_idx": 5308, "number": 2, "label": "disco"} +{"file_name": "train_09495.png", "caption": "This is a new age piece. There is a flute playing the main melody with a lot of staccato notes. The rhythmic background consists of a medium tempo electronic drum beat with percussive elements all over the spectrum. There is a playful atmosphere to the piece. This piece can be used in the soundtrack of a children's TV show or an advertisement jingle.", "data_idx": 5308, "number": 3, "label": "disco"} +{"file_name": "train_09496.png", "caption": "A piano is playing chords in the left hand in the midrange while repeating the same two notes in the higher register. A female voice is singing a melody over the chords. This song is an amateur recording. This song may be playing in a musical.", "data_idx": 5312, "number": 0, "label": "classical"} +{"file_name": "train_09497.png", "caption": "A piano is playing chords in the left hand in the midrange while repeating the same two notes in the higher register. A female voice is singing a melody over the chords. This song is an amateur recording. This song may be playing in a musical.", "data_idx": 5312, "number": 1, "label": "classical"} +{"file_name": "train_09498.png", "caption": "A piano is playing chords in the left hand in the midrange while repeating the same two notes in the higher register. A female voice is singing a melody over the chords. This song is an amateur recording. This song may be playing in a musical.", "data_idx": 5312, "number": 2, "label": "classical"} +{"file_name": "train_09499.png", "caption": "A piano is playing chords in the left hand in the midrange while repeating the same two notes in the higher register. A female voice is singing a melody over the chords. This song is an amateur recording. This song may be playing in a musical.", "data_idx": 5312, "number": 3, "label": "classical"} +{"file_name": "train_09500.png", "caption": "This is a contemporary classical music performance. The piece is being played on the grand piano with an accentuated playing style. There is a lot of emphasis on the notes. The atmosphere is dramatic. Parts of this piece could be included in the soundtrack of a documentary. It could also be used in the soundtrack of a mystery/horror video game.", "data_idx": 5314, "number": 0, "label": "classical"} +{"file_name": "train_09501.png", "caption": "This is a contemporary classical music performance. The piece is being played on the grand piano with an accentuated playing style. There is a lot of emphasis on the notes. The atmosphere is dramatic. Parts of this piece could be included in the soundtrack of a documentary. It could also be used in the soundtrack of a mystery/horror video game.", "data_idx": 5314, "number": 1, "label": "classical"} +{"file_name": "train_09502.png", "caption": "This is a contemporary classical music performance. The piece is being played on the grand piano with an accentuated playing style. There is a lot of emphasis on the notes. The atmosphere is dramatic. Parts of this piece could be included in the soundtrack of a documentary. It could also be used in the soundtrack of a mystery/horror video game.", "data_idx": 5314, "number": 2, "label": "classical"} +{"file_name": "train_09503.png", "caption": "This is a contemporary classical music performance. The piece is being played on the grand piano with an accentuated playing style. There is a lot of emphasis on the notes. The atmosphere is dramatic. Parts of this piece could be included in the soundtrack of a documentary. It could also be used in the soundtrack of a mystery/horror video game.", "data_idx": 5314, "number": 3, "label": "classical"} +{"file_name": "train_09504.png", "caption": "Someone is playing a loud melody on a steeldrum along to a backing track with a lot of percussion and an upright bass. This song may be playing at a beach concert.", "data_idx": 5315, "number": 0, "label": "classical"} +{"file_name": "train_09505.png", "caption": "Someone is playing a loud melody on a steeldrum along to a backing track with a lot of percussion and an upright bass. This song may be playing at a beach concert.", "data_idx": 5315, "number": 1, "label": "classical"} +{"file_name": "train_09506.png", "caption": "Someone is playing a loud melody on a steeldrum along to a backing track with a lot of percussion and an upright bass. This song may be playing at a beach concert.", "data_idx": 5315, "number": 2, "label": "classical"} +{"file_name": "train_09507.png", "caption": "Someone is playing a loud melody on a steeldrum along to a backing track with a lot of percussion and an upright bass. This song may be playing at a beach concert.", "data_idx": 5315, "number": 3, "label": "classical"} +{"file_name": "train_09508.png", "caption": "This song contains someone playing a bass drum instrument along with someone playing a triangle. A female voice is shouting while a flute is playing the main melody in a very high key. This song may be playing at a theater performance in an Asian country.", "data_idx": 5316, "number": 0, "label": "reggae"} +{"file_name": "train_09509.png", "caption": "This song contains someone playing a bass drum instrument along with someone playing a triangle. A female voice is shouting while a flute is playing the main melody in a very high key. This song may be playing at a theater performance in an Asian country.", "data_idx": 5316, "number": 1, "label": "reggae"} +{"file_name": "train_09510.png", "caption": "This song contains someone playing a bass drum instrument along with someone playing a triangle. A female voice is shouting while a flute is playing the main melody in a very high key. This song may be playing at a theater performance in an Asian country.", "data_idx": 5316, "number": 2, "label": "reggae"} +{"file_name": "train_09511.png", "caption": "This song contains someone playing a bass drum instrument along with someone playing a triangle. A female voice is shouting while a flute is playing the main melody in a very high key. This song may be playing at a theater performance in an Asian country.", "data_idx": 5316, "number": 3, "label": "reggae"} +{"file_name": "train_09512.png", "caption": "This song is an instrumental. The tempo is medium with a melodious lead on the electric guitar, steady drumming, groovy bass lines and acoustic guitar accompaniment. The melody is simple, mellow, pleasant, melancholic, nostalgic and ambient. This instrumental song is a Classic Rock and Roll.", "data_idx": 5317, "number": 0, "label": "blues"} +{"file_name": "train_09513.png", "caption": "This song is an instrumental. The tempo is medium with a melodious lead on the electric guitar, steady drumming, groovy bass lines and acoustic guitar accompaniment. The melody is simple, mellow, pleasant, melancholic, nostalgic and ambient. This instrumental song is a Classic Rock and Roll.", "data_idx": 5317, "number": 1, "label": "blues"} +{"file_name": "train_09514.png", "caption": "This song is an instrumental. The tempo is medium with a melodious lead on the electric guitar, steady drumming, groovy bass lines and acoustic guitar accompaniment. The melody is simple, mellow, pleasant, melancholic, nostalgic and ambient. This instrumental song is a Classic Rock and Roll.", "data_idx": 5317, "number": 2, "label": "blues"} +{"file_name": "train_09515.png", "caption": "This song is an instrumental. The tempo is medium with a melodious lead on the electric guitar, steady drumming, groovy bass lines and acoustic guitar accompaniment. The melody is simple, mellow, pleasant, melancholic, nostalgic and ambient. This instrumental song is a Classic Rock and Roll.", "data_idx": 5317, "number": 3, "label": "blues"} +{"file_name": "train_09516.png", "caption": "Calming ambient synth pads and synthesized bell sounds combined with ocean sounds and bird sounds. Meant to inspire tranquility. No drums.", "data_idx": 5318, "number": 0, "label": "metal"} +{"file_name": "train_09517.png", "caption": "Calming ambient synth pads and synthesized bell sounds combined with ocean sounds and bird sounds. Meant to inspire tranquility. No drums.", "data_idx": 5318, "number": 1, "label": "metal"} +{"file_name": "train_09518.png", "caption": "Calming ambient synth pads and synthesized bell sounds combined with ocean sounds and bird sounds. Meant to inspire tranquility. No drums.", "data_idx": 5318, "number": 2, "label": "metal"} +{"file_name": "train_09519.png", "caption": "Calming ambient synth pads and synthesized bell sounds combined with ocean sounds and bird sounds. Meant to inspire tranquility. No drums.", "data_idx": 5318, "number": 3, "label": "metal"} +{"file_name": "train_09520.png", "caption": "A male singer sings this vocals with a vocoder. The song is medium tempo with a groovy techno drumming rhythm and keyboard accompaniment. The song is passionate but an amateurish production. The audio quality is very poor.", "data_idx": 5319, "number": 0, "label": "blues"} +{"file_name": "train_09521.png", "caption": "A male singer sings this vocals with a vocoder. The song is medium tempo with a groovy techno drumming rhythm and keyboard accompaniment. The song is passionate but an amateurish production. The audio quality is very poor.", "data_idx": 5319, "number": 1, "label": "blues"} +{"file_name": "train_09522.png", "caption": "These are sounds from a movie. There is a metal object falling to pieces on the ground. There is a cinematic string sequence that gives a dramatic atmosphere to the track. There is also a feeling of suspense. This could be playing in the soundtrack of an action-filled movie.", "data_idx": 5320, "number": 0, "label": "hiphop"} +{"file_name": "train_09523.png", "caption": "These are sounds from a movie. There is a metal object falling to pieces on the ground. There is a cinematic string sequence that gives a dramatic atmosphere to the track. There is also a feeling of suspense. This could be playing in the soundtrack of an action-filled movie.", "data_idx": 5320, "number": 1, "label": "hiphop"} +{"file_name": "train_09524.png", "caption": "These are sounds from a movie. There is a metal object falling to pieces on the ground. There is a cinematic string sequence that gives a dramatic atmosphere to the track. There is also a feeling of suspense. This could be playing in the soundtrack of an action-filled movie.", "data_idx": 5320, "number": 2, "label": "hiphop"} +{"file_name": "train_09525.png", "caption": "These are sounds from a movie. There is a metal object falling to pieces on the ground. There is a cinematic string sequence that gives a dramatic atmosphere to the track. There is also a feeling of suspense. This could be playing in the soundtrack of an action-filled movie.", "data_idx": 5320, "number": 3, "label": "hiphop"} +{"file_name": "train_09526.png", "caption": "The low quality recording features a passionately arpeggiated electric guitar melody. The recording is noisy and at the end, there is a subtle inhale through the nose. The audio suddenly distorts in the middle of the loop.", "data_idx": 5321, "number": 0, "label": "jazz"} +{"file_name": "train_09527.png", "caption": "The low quality recording features a passionately arpeggiated electric guitar melody. The recording is noisy and at the end, there is a subtle inhale through the nose. The audio suddenly distorts in the middle of the loop.", "data_idx": 5321, "number": 1, "label": "jazz"} +{"file_name": "train_09528.png", "caption": "The low quality recording features a passionately arpeggiated electric guitar melody. The recording is noisy and at the end, there is a subtle inhale through the nose. The audio suddenly distorts in the middle of the loop.", "data_idx": 5321, "number": 2, "label": "jazz"} +{"file_name": "train_09529.png", "caption": "The low quality recording features a passionately arpeggiated electric guitar melody. The recording is noisy and at the end, there is a subtle inhale through the nose. The audio suddenly distorts in the middle of the loop.", "data_idx": 5321, "number": 3, "label": "jazz"} +{"file_name": "train_09530.png", "caption": "This is a live performance of a classical music piece. There is a grand piano playing dramatically in minor keys. The piece has a grandiose and mysterious aura to it. This piece could be used in the soundtrack of a horror movie. It could also be used in a horror video game theme.", "data_idx": 5322, "number": 0, "label": "classical"} +{"file_name": "train_09531.png", "caption": "This is a live performance of a classical music piece. There is a grand piano playing dramatically in minor keys. The piece has a grandiose and mysterious aura to it. This piece could be used in the soundtrack of a horror movie. It could also be used in a horror video game theme.", "data_idx": 5322, "number": 1, "label": "classical"} +{"file_name": "train_09532.png", "caption": "This is a live performance of a classical music piece. There is a grand piano playing dramatically in minor keys. The piece has a grandiose and mysterious aura to it. This piece could be used in the soundtrack of a horror movie. It could also be used in a horror video game theme.", "data_idx": 5322, "number": 2, "label": "classical"} +{"file_name": "train_09533.png", "caption": "This is a live performance of a classical music piece. There is a grand piano playing dramatically in minor keys. The piece has a grandiose and mysterious aura to it. This piece could be used in the soundtrack of a horror movie. It could also be used in a horror video game theme.", "data_idx": 5322, "number": 3, "label": "classical"} +{"file_name": "train_09534.png", "caption": "The song is instrumental. The tempo is medium with keyboard accompaniment, string pad harmony, steady drumming and a strong bass line. The song is spirited and easy listening and serves as a background to a glass sculpture making video. There is hammering and glass cracking noises with ambient room sounds. The overall sound quality is poor.", "data_idx": 5325, "number": 0, "label": "disco"} +{"file_name": "train_09535.png", "caption": "The song is instrumental. The tempo is medium with keyboard accompaniment, string pad harmony, steady drumming and a strong bass line. The song is spirited and easy listening and serves as a background to a glass sculpture making video. There is hammering and glass cracking noises with ambient room sounds. The overall sound quality is poor.", "data_idx": 5325, "number": 1, "label": "disco"} +{"file_name": "train_09536.png", "caption": "The song is instrumental. The tempo is medium with keyboard accompaniment, string pad harmony, steady drumming and a strong bass line. The song is spirited and easy listening and serves as a background to a glass sculpture making video. There is hammering and glass cracking noises with ambient room sounds. The overall sound quality is poor.", "data_idx": 5325, "number": 2, "label": "disco"} +{"file_name": "train_09537.png", "caption": "The song is instrumental. The tempo is medium with keyboard accompaniment, string pad harmony, steady drumming and a strong bass line. The song is spirited and easy listening and serves as a background to a glass sculpture making video. There is hammering and glass cracking noises with ambient room sounds. The overall sound quality is poor.", "data_idx": 5325, "number": 3, "label": "disco"} +{"file_name": "train_09538.png", "caption": "Someone is playing a composition using a minor chord with a lot of reverb. In the background you can hear soft strings underlining the song then a high violin comes in. A female voice is singing softly and sensitively. You can hear her breathing and mouth noises in the recording. Her voice is also full of reverb. This song may be playing in an emotional and sensitive/sad movie-scene.", "data_idx": 5329, "number": 0, "label": "pop"} +{"file_name": "train_09539.png", "caption": "Someone is playing a composition using a minor chord with a lot of reverb. In the background you can hear soft strings underlining the song then a high violin comes in. A female voice is singing softly and sensitively. You can hear her breathing and mouth noises in the recording. Her voice is also full of reverb. This song may be playing in an emotional and sensitive/sad movie-scene.", "data_idx": 5329, "number": 1, "label": "pop"} +{"file_name": "train_09540.png", "caption": "Someone is playing a composition using a minor chord with a lot of reverb. In the background you can hear soft strings underlining the song then a high violin comes in. A female voice is singing softly and sensitively. You can hear her breathing and mouth noises in the recording. Her voice is also full of reverb. This song may be playing in an emotional and sensitive/sad movie-scene.", "data_idx": 5329, "number": 2, "label": "pop"} +{"file_name": "train_09541.png", "caption": "Someone is playing a composition using a minor chord with a lot of reverb. In the background you can hear soft strings underlining the song then a high violin comes in. A female voice is singing softly and sensitively. You can hear her breathing and mouth noises in the recording. Her voice is also full of reverb. This song may be playing in an emotional and sensitive/sad movie-scene.", "data_idx": 5329, "number": 3, "label": "pop"} +{"file_name": "train_09542.png", "caption": "A male singer sings this jazz melody with the backup singer in vocal harmony. The song is medium tempo, with saxophone harmony, ska drumming rhythm and a good bass line. The song is entertaining and groovy. The song is a classic jazz tune played in ska style.", "data_idx": 5332, "number": 0, "label": "disco"} +{"file_name": "train_09543.png", "caption": "A male singer sings this jazz melody with the backup singer in vocal harmony. The song is medium tempo, with saxophone harmony, ska drumming rhythm and a good bass line. The song is entertaining and groovy. The song is a classic jazz tune played in ska style.", "data_idx": 5332, "number": 1, "label": "disco"} +{"file_name": "train_09544.png", "caption": "A male singer sings this jazz melody with the backup singer in vocal harmony. The song is medium tempo, with saxophone harmony, ska drumming rhythm and a good bass line. The song is entertaining and groovy. The song is a classic jazz tune played in ska style.", "data_idx": 5332, "number": 2, "label": "disco"} +{"file_name": "train_09545.png", "caption": "A male singer sings this jazz melody with the backup singer in vocal harmony. The song is medium tempo, with saxophone harmony, ska drumming rhythm and a good bass line. The song is entertaining and groovy. The song is a classic jazz tune played in ska style.", "data_idx": 5332, "number": 3, "label": "disco"} +{"file_name": "train_09546.png", "caption": "This music is instrumental. The tempo is medium with atmospheric synthesiser, soft keyboard harmony and subtle bass lines in the background. The music is progressive with a lot of digital sounds giving it a psychedelic,meditative, trippy, trance like vibe. This instrumental is Synth Rock/Progressive Rock.", "data_idx": 5341, "number": 0, "label": "rock"} +{"file_name": "train_09547.png", "caption": "This music is instrumental. The tempo is medium with atmospheric synthesiser, soft keyboard harmony and subtle bass lines in the background. The music is progressive with a lot of digital sounds giving it a psychedelic,meditative, trippy, trance like vibe. This instrumental is Synth Rock/Progressive Rock.", "data_idx": 5341, "number": 1, "label": "rock"} +{"file_name": "train_09548.png", "caption": "This music is instrumental. The tempo is medium with atmospheric synthesiser, soft keyboard harmony and subtle bass lines in the background. The music is progressive with a lot of digital sounds giving it a psychedelic,meditative, trippy, trance like vibe. This instrumental is Synth Rock/Progressive Rock.", "data_idx": 5341, "number": 2, "label": "rock"} +{"file_name": "train_09549.png", "caption": "This music is instrumental. The tempo is medium with atmospheric synthesiser, soft keyboard harmony and subtle bass lines in the background. The music is progressive with a lot of digital sounds giving it a psychedelic,meditative, trippy, trance like vibe. This instrumental is Synth Rock/Progressive Rock.", "data_idx": 5341, "number": 3, "label": "rock"} +{"file_name": "train_09550.png", "caption": "This sounds like an instrumental intro. It starts with a bowling sound effect as well as the sound of a tape player speeding up, producing both a high-pitched whine and a low-pitched vocal sounding effect. This leads into a slightly swung, overdriven electric guitar riff.", "data_idx": 5343, "number": 0, "label": "hiphop"} +{"file_name": "train_09551.png", "caption": "This sounds like an instrumental intro. It starts with a bowling sound effect as well as the sound of a tape player speeding up, producing both a high-pitched whine and a low-pitched vocal sounding effect. This leads into a slightly swung, overdriven electric guitar riff.", "data_idx": 5343, "number": 1, "label": "hiphop"} +{"file_name": "train_09552.png", "caption": "This excerpt can barely be called musical. It starts off with 6 seconds of silence, after which a white noise can be heard, followed by three notes played in the lower register of a marimba. All this leads me to believe that the three notes we heard have a jingle-like purpose before a TV show starts. You would also hear something similar when an elevator reaches a particular floor.", "data_idx": 5344, "number": 0, "label": "hiphop"} +{"file_name": "train_09553.png", "caption": "This excerpt can barely be called musical. It starts off with 6 seconds of silence, after which a white noise can be heard, followed by three notes played in the lower register of a marimba. All this leads me to believe that the three notes we heard have a jingle-like purpose before a TV show starts. You would also hear something similar when an elevator reaches a particular floor.", "data_idx": 5344, "number": 1, "label": "hiphop"} +{"file_name": "train_09554.png", "caption": "A synthesizer is playing a loud and wide pad sound that gets modulated while a soft and deep kick is playing every beat. This is an amateur recording. This song may be playing giving someone a tutorial on a synthesizer.", "data_idx": 5345, "number": 0, "label": "hiphop"} +{"file_name": "train_09555.png", "caption": "A synthesizer is playing a loud and wide pad sound that gets modulated while a soft and deep kick is playing every beat. This is an amateur recording. This song may be playing giving someone a tutorial on a synthesizer.", "data_idx": 5345, "number": 1, "label": "hiphop"} +{"file_name": "train_09556.png", "caption": "A synthesizer is playing a loud and wide pad sound that gets modulated while a soft and deep kick is playing every beat. This is an amateur recording. This song may be playing giving someone a tutorial on a synthesizer.", "data_idx": 5345, "number": 2, "label": "hiphop"} +{"file_name": "train_09557.png", "caption": "A synthesizer is playing a loud and wide pad sound that gets modulated while a soft and deep kick is playing every beat. This is an amateur recording. This song may be playing giving someone a tutorial on a synthesizer.", "data_idx": 5345, "number": 3, "label": "hiphop"} +{"file_name": "train_09558.png", "caption": "This is a sped-up trap remix of an R&B music piece. There is a female vocalist singing melodically with her vocal sample used in beat repeats. There is a hollering sample added alongside it. The beat has a strong synth bass with a repeating acoustic guitar sample playing every now and then. The electronic drum beat is slightly fast-paced and filled with cicada hi-hats. The atmosphere is loud and upbeat. This piece could be used as an accompaniment piece at a modern break dance course. It could also be played at nightclubs.", "data_idx": 5349, "number": 0, "label": "hiphop"} +{"file_name": "train_09559.png", "caption": "This is a sped-up trap remix of an R&B music piece. There is a female vocalist singing melodically with her vocal sample used in beat repeats. There is a hollering sample added alongside it. The beat has a strong synth bass with a repeating acoustic guitar sample playing every now and then. The electronic drum beat is slightly fast-paced and filled with cicada hi-hats. The atmosphere is loud and upbeat. This piece could be used as an accompaniment piece at a modern break dance course. It could also be played at nightclubs.", "data_idx": 5349, "number": 1, "label": "hiphop"} +{"file_name": "train_09560.png", "caption": "This is a sped-up trap remix of an R&B music piece. There is a female vocalist singing melodically with her vocal sample used in beat repeats. There is a hollering sample added alongside it. The beat has a strong synth bass with a repeating acoustic guitar sample playing every now and then. The electronic drum beat is slightly fast-paced and filled with cicada hi-hats. The atmosphere is loud and upbeat. This piece could be used as an accompaniment piece at a modern break dance course. It could also be played at nightclubs.", "data_idx": 5349, "number": 2, "label": "hiphop"} +{"file_name": "train_09561.png", "caption": "This is a sped-up trap remix of an R&B music piece. There is a female vocalist singing melodically with her vocal sample used in beat repeats. There is a hollering sample added alongside it. The beat has a strong synth bass with a repeating acoustic guitar sample playing every now and then. The electronic drum beat is slightly fast-paced and filled with cicada hi-hats. The atmosphere is loud and upbeat. This piece could be used as an accompaniment piece at a modern break dance course. It could also be played at nightclubs.", "data_idx": 5349, "number": 3, "label": "hiphop"} +{"file_name": "train_09562.png", "caption": "The low quality recording features an alternative/indie song that consists of electric guitar chords, groovy repetitive bass guitar, harsh electric guitar solo, percussive toms and shimmering shakers. It sounds muffled, harsh, groovy and it is uptempo and noisy.", "data_idx": 5355, "number": 0, "label": "rock"} +{"file_name": "train_09563.png", "caption": "The low quality recording features an alternative/indie song that consists of electric guitar chords, groovy repetitive bass guitar, harsh electric guitar solo, percussive toms and shimmering shakers. It sounds muffled, harsh, groovy and it is uptempo and noisy.", "data_idx": 5355, "number": 1, "label": "rock"} +{"file_name": "train_09564.png", "caption": "The low quality recording features an alternative/indie song that consists of electric guitar chords, groovy repetitive bass guitar, harsh electric guitar solo, percussive toms and shimmering shakers. It sounds muffled, harsh, groovy and it is uptempo and noisy.", "data_idx": 5355, "number": 2, "label": "rock"} +{"file_name": "train_09565.png", "caption": "The low quality recording features an alternative/indie song that consists of electric guitar chords, groovy repetitive bass guitar, harsh electric guitar solo, percussive toms and shimmering shakers. It sounds muffled, harsh, groovy and it is uptempo and noisy.", "data_idx": 5355, "number": 3, "label": "rock"} +{"file_name": "train_09566.png", "caption": "This is the live performance of a reggae piece. There is a male vocal hollering while a younger sounding male vocal is singing in a Jamaican accent. An electric guitar is strumming chords in staccato while a bass guitar is playing a groovy bass line. In the rhythmic background, there is an acoustic drum playing a reggae beat. The atmosphere is chill. This piece could be played at beach parties and in the soundtracks of summer vacation-themed movies or TV shows.", "data_idx": 5358, "number": 0, "label": "reggae"} +{"file_name": "train_09567.png", "caption": "This is the live performance of a reggae piece. There is a male vocal hollering while a younger sounding male vocal is singing in a Jamaican accent. An electric guitar is strumming chords in staccato while a bass guitar is playing a groovy bass line. In the rhythmic background, there is an acoustic drum playing a reggae beat. The atmosphere is chill. This piece could be played at beach parties and in the soundtracks of summer vacation-themed movies or TV shows.", "data_idx": 5358, "number": 1, "label": "reggae"} +{"file_name": "train_09568.png", "caption": "This is the live performance of a reggae piece. There is a male vocal hollering while a younger sounding male vocal is singing in a Jamaican accent. An electric guitar is strumming chords in staccato while a bass guitar is playing a groovy bass line. In the rhythmic background, there is an acoustic drum playing a reggae beat. The atmosphere is chill. This piece could be played at beach parties and in the soundtracks of summer vacation-themed movies or TV shows.", "data_idx": 5358, "number": 2, "label": "reggae"} +{"file_name": "train_09569.png", "caption": "This is the live performance of a reggae piece. There is a male vocal hollering while a younger sounding male vocal is singing in a Jamaican accent. An electric guitar is strumming chords in staccato while a bass guitar is playing a groovy bass line. In the rhythmic background, there is an acoustic drum playing a reggae beat. The atmosphere is chill. This piece could be played at beach parties and in the soundtracks of summer vacation-themed movies or TV shows.", "data_idx": 5358, "number": 3, "label": "reggae"} +{"file_name": "train_09570.png", "caption": "The low quality recording contains a muffled strings section and a muffled passionate female opera singer, singing over it. The recording is noisy and in mono, and judging by the tone of it, old - which makes it vintage. It sounds emotional, warm and passionate.", "data_idx": 5359, "number": 0, "label": "classical"} +{"file_name": "train_09571.png", "caption": "The low quality recording contains a muffled strings section and a muffled passionate female opera singer, singing over it. The recording is noisy and in mono, and judging by the tone of it, old - which makes it vintage. It sounds emotional, warm and passionate.", "data_idx": 5359, "number": 1, "label": "classical"} +{"file_name": "train_09572.png", "caption": "The low quality recording contains a muffled strings section and a muffled passionate female opera singer, singing over it. The recording is noisy and in mono, and judging by the tone of it, old - which makes it vintage. It sounds emotional, warm and passionate.", "data_idx": 5359, "number": 2, "label": "classical"} +{"file_name": "train_09573.png", "caption": "The low quality recording contains a muffled strings section and a muffled passionate female opera singer, singing over it. The recording is noisy and in mono, and judging by the tone of it, old - which makes it vintage. It sounds emotional, warm and passionate.", "data_idx": 5359, "number": 3, "label": "classical"} +{"file_name": "train_09574.png", "caption": "A synthesizer is playing a rhythmic, simple bassline. A male vocal sample that seems to be processed and pitched down is being played with a delay. Then a riser noise comes in sounding like wind that is getting stronger. This song may be playing while playing at a play-station with your friends.", "data_idx": 5361, "number": 0, "label": "hiphop"} +{"file_name": "train_09575.png", "caption": "A synthesizer is playing a rhythmic, simple bassline. A male vocal sample that seems to be processed and pitched down is being played with a delay. Then a riser noise comes in sounding like wind that is getting stronger. This song may be playing while playing at a play-station with your friends.", "data_idx": 5361, "number": 1, "label": "hiphop"} +{"file_name": "train_09576.png", "caption": "A synthesizer is playing a rhythmic, simple bassline. A male vocal sample that seems to be processed and pitched down is being played with a delay. Then a riser noise comes in sounding like wind that is getting stronger. This song may be playing while playing at a play-station with your friends.", "data_idx": 5361, "number": 2, "label": "hiphop"} +{"file_name": "train_09577.png", "caption": "A synthesizer is playing a rhythmic, simple bassline. A male vocal sample that seems to be processed and pitched down is being played with a delay. Then a riser noise comes in sounding like wind that is getting stronger. This song may be playing while playing at a play-station with your friends.", "data_idx": 5361, "number": 3, "label": "hiphop"} +{"file_name": "train_09578.png", "caption": "This is a techno remix of a polka music piece. There is a female vocalist singing and yodeling. Once the remix kicks in, the male vocal sample can be heard singing a bass line. There is a loud electronic drum beat for the rhythmic background. The vocals have a slight sidechain effect on kick drum hits. The atmosphere is playful. The piece is in low resolution. This piece can be used in the background of funny social media content.", "data_idx": 5362, "number": 0, "label": "disco"} +{"file_name": "train_09579.png", "caption": "This is a techno remix of a polka music piece. There is a female vocalist singing and yodeling. Once the remix kicks in, the male vocal sample can be heard singing a bass line. There is a loud electronic drum beat for the rhythmic background. The vocals have a slight sidechain effect on kick drum hits. The atmosphere is playful. The piece is in low resolution. This piece can be used in the background of funny social media content.", "data_idx": 5362, "number": 1, "label": "disco"} +{"file_name": "train_09580.png", "caption": "This is a techno remix of a polka music piece. There is a female vocalist singing and yodeling. Once the remix kicks in, the male vocal sample can be heard singing a bass line. There is a loud electronic drum beat for the rhythmic background. The vocals have a slight sidechain effect on kick drum hits. The atmosphere is playful. The piece is in low resolution. This piece can be used in the background of funny social media content.", "data_idx": 5362, "number": 2, "label": "disco"} +{"file_name": "train_09581.png", "caption": "This is a techno remix of a polka music piece. There is a female vocalist singing and yodeling. Once the remix kicks in, the male vocal sample can be heard singing a bass line. There is a loud electronic drum beat for the rhythmic background. The vocals have a slight sidechain effect on kick drum hits. The atmosphere is playful. The piece is in low resolution. This piece can be used in the background of funny social media content.", "data_idx": 5362, "number": 3, "label": "disco"} +{"file_name": "train_09582.png", "caption": "A professionally trained operatic male singer singing a difficult, high melody accompanied by organ and electric piano.", "data_idx": 5363, "number": 0, "label": "classical"} +{"file_name": "train_09583.png", "caption": "A professionally trained operatic male singer singing a difficult, high melody accompanied by organ and electric piano.", "data_idx": 5363, "number": 1, "label": "classical"} +{"file_name": "train_09584.png", "caption": "A professionally trained operatic male singer singing a difficult, high melody accompanied by organ and electric piano.", "data_idx": 5363, "number": 2, "label": "classical"} +{"file_name": "train_09585.png", "caption": "A professionally trained operatic male singer singing a difficult, high melody accompanied by organ and electric piano.", "data_idx": 5363, "number": 3, "label": "classical"} +{"file_name": "train_09586.png", "caption": "The song is an instrumental. The tempo is slow with an organ playing sustained chords. The audio quality is poor with a lot of hissing and strong gains that are distorted. The song is background music for a home video. The song is emotional and ominous.", "data_idx": 5364, "number": 0, "label": "classical"} +{"file_name": "train_09587.png", "caption": "The song is an instrumental. The tempo is slow with an organ playing sustained chords. The audio quality is poor with a lot of hissing and strong gains that are distorted. The song is background music for a home video. The song is emotional and ominous.", "data_idx": 5364, "number": 1, "label": "classical"} +{"file_name": "train_09588.png", "caption": "The song is an instrumental. The tempo is slow with an organ playing sustained chords. The audio quality is poor with a lot of hissing and strong gains that are distorted. The song is background music for a home video. The song is emotional and ominous.", "data_idx": 5364, "number": 2, "label": "classical"} +{"file_name": "train_09589.png", "caption": "The song is an instrumental. The tempo is slow with an organ playing sustained chords. The audio quality is poor with a lot of hissing and strong gains that are distorted. The song is background music for a home video. The song is emotional and ominous.", "data_idx": 5364, "number": 3, "label": "classical"} +{"file_name": "train_09590.png", "caption": "A musician plays this rock instrumental. The tempo is fast with an intense, emphatic electric guitar riff and enthusiastic drumming and cymbal rides in the background and tambourine beats. The music is muffled as the sound quality is inferior. The music is energetic, enthusiastic, and animated . This is a Rock instrumental.", "data_idx": 5365, "number": 0, "label": "classical"} +{"file_name": "train_09591.png", "caption": "A musician plays this rock instrumental. The tempo is fast with an intense, emphatic electric guitar riff and enthusiastic drumming and cymbal rides in the background and tambourine beats. The music is muffled as the sound quality is inferior. The music is energetic, enthusiastic, and animated . This is a Rock instrumental.", "data_idx": 5365, "number": 1, "label": "classical"} +{"file_name": "train_09592.png", "caption": "A musician plays this rock instrumental. The tempo is fast with an intense, emphatic electric guitar riff and enthusiastic drumming and cymbal rides in the background and tambourine beats. The music is muffled as the sound quality is inferior. The music is energetic, enthusiastic, and animated . This is a Rock instrumental.", "data_idx": 5365, "number": 2, "label": "classical"} +{"file_name": "train_09593.png", "caption": "A musician plays this rock instrumental. The tempo is fast with an intense, emphatic electric guitar riff and enthusiastic drumming and cymbal rides in the background and tambourine beats. The music is muffled as the sound quality is inferior. The music is energetic, enthusiastic, and animated . This is a Rock instrumental.", "data_idx": 5365, "number": 3, "label": "classical"} +{"file_name": "train_09594.png", "caption": "The children's music sounds as if it's being played from a child's toy and recorded with a phone. The music starts playing after a rattling noise is being made and stops after a while to be activated again by the rattling sound.", "data_idx": 5369, "number": 0, "label": "reggae"} +{"file_name": "train_09595.png", "caption": "The children's music sounds as if it's being played from a child's toy and recorded with a phone. The music starts playing after a rattling noise is being made and stops after a while to be activated again by the rattling sound.", "data_idx": 5369, "number": 1, "label": "reggae"} +{"file_name": "train_09596.png", "caption": "The children's music sounds as if it's being played from a child's toy and recorded with a phone. The music starts playing after a rattling noise is being made and stops after a while to be activated again by the rattling sound.", "data_idx": 5369, "number": 2, "label": "reggae"} +{"file_name": "train_09597.png", "caption": "The children's music sounds as if it's being played from a child's toy and recorded with a phone. The music starts playing after a rattling noise is being made and stops after a while to be activated again by the rattling sound.", "data_idx": 5369, "number": 3, "label": "reggae"} +{"file_name": "train_09598.png", "caption": "The low quality recording features a wide dark synth pad, metal guitar strings squeaking sound effects, creepy church bells and synth bass with a phaser effect on. It sounds dark, suspenseful and intense - like something you would hear in horror movies.", "data_idx": 5370, "number": 0, "label": "classical"} +{"file_name": "train_09599.png", "caption": "The low quality recording features a wide dark synth pad, metal guitar strings squeaking sound effects, creepy church bells and synth bass with a phaser effect on. It sounds dark, suspenseful and intense - like something you would hear in horror movies.", "data_idx": 5370, "number": 1, "label": "classical"} +{"file_name": "train_09600.png", "caption": "The low quality recording features a wide dark synth pad, metal guitar strings squeaking sound effects, creepy church bells and synth bass with a phaser effect on. It sounds dark, suspenseful and intense - like something you would hear in horror movies.", "data_idx": 5370, "number": 2, "label": "classical"} +{"file_name": "train_09601.png", "caption": "The low quality recording features a wide dark synth pad, metal guitar strings squeaking sound effects, creepy church bells and synth bass with a phaser effect on. It sounds dark, suspenseful and intense - like something you would hear in horror movies.", "data_idx": 5370, "number": 3, "label": "classical"} +{"file_name": "train_09602.png", "caption": "This music is an Indian Classical Instrumental. The tempo is medium fast with an ensemble of a lively violin, melodic flute and rhythmic accompaniment of the Indian percussion gadam and mridangam . The music uses ragas, talas and Sruti to form a harmony. It is classic, lively, rhythmic, engaging and enthralling.", "data_idx": 5371, "number": 0, "label": "classical"} +{"file_name": "train_09603.png", "caption": "This music is an Indian Classical Instrumental. The tempo is medium fast with an ensemble of a lively violin, melodic flute and rhythmic accompaniment of the Indian percussion gadam and mridangam . The music uses ragas, talas and Sruti to form a harmony. It is classic, lively, rhythmic, engaging and enthralling.", "data_idx": 5371, "number": 1, "label": "classical"} +{"file_name": "train_09604.png", "caption": "This music is an Indian Classical Instrumental. The tempo is medium fast with an ensemble of a lively violin, melodic flute and rhythmic accompaniment of the Indian percussion gadam and mridangam . The music uses ragas, talas and Sruti to form a harmony. It is classic, lively, rhythmic, engaging and enthralling.", "data_idx": 5371, "number": 2, "label": "classical"} +{"file_name": "train_09605.png", "caption": "This music is an Indian Classical Instrumental. The tempo is medium fast with an ensemble of a lively violin, melodic flute and rhythmic accompaniment of the Indian percussion gadam and mridangam . The music uses ragas, talas and Sruti to form a harmony. It is classic, lively, rhythmic, engaging and enthralling.", "data_idx": 5371, "number": 3, "label": "classical"} +{"file_name": "train_09606.png", "caption": "The song is an instrumental. The song is medium fast tempo with a western classic al piece featuring a string string section plays and a tambourine player practices along with background music. The song is spirited and passionate. The audio quality is very poor.", "data_idx": 5374, "number": 0, "label": "hiphop"} +{"file_name": "train_09607.png", "caption": "The song is an instrumental. The song is medium fast tempo with a western classic al piece featuring a string string section plays and a tambourine player practices along with background music. The song is spirited and passionate. The audio quality is very poor.", "data_idx": 5374, "number": 1, "label": "hiphop"} +{"file_name": "train_09608.png", "caption": "The song is an instrumental. The song is medium fast tempo with a western classic al piece featuring a string string section plays and a tambourine player practices along with background music. The song is spirited and passionate. The audio quality is very poor.", "data_idx": 5374, "number": 2, "label": "hiphop"} +{"file_name": "train_09609.png", "caption": "The song is an instrumental. The song is medium fast tempo with a western classic al piece featuring a string string section plays and a tambourine player practices along with background music. The song is spirited and passionate. The audio quality is very poor.", "data_idx": 5374, "number": 3, "label": "hiphop"} +{"file_name": "train_09610.png", "caption": "The music features a melody-less section, just the accompaniment. A piano is playing chords at the beginning of every measure. The kick drum plays on beats one and three and the snare drum, which seems to have some beads on its membrane, on beats two and four. An electronic sound is playing the same harmonies that the piano is playing. Two distorted sounds can be heard in the background, one of them most probably coming from an electric guitar and the other from a synth bass.", "data_idx": 5375, "number": 0, "label": "metal"} +{"file_name": "train_09611.png", "caption": "The music features a melody-less section, just the accompaniment. A piano is playing chords at the beginning of every measure. The kick drum plays on beats one and three and the snare drum, which seems to have some beads on its membrane, on beats two and four. An electronic sound is playing the same harmonies that the piano is playing. Two distorted sounds can be heard in the background, one of them most probably coming from an electric guitar and the other from a synth bass.", "data_idx": 5375, "number": 1, "label": "metal"} +{"file_name": "train_09612.png", "caption": "The music features a melody-less section, just the accompaniment. A piano is playing chords at the beginning of every measure. The kick drum plays on beats one and three and the snare drum, which seems to have some beads on its membrane, on beats two and four. An electronic sound is playing the same harmonies that the piano is playing. Two distorted sounds can be heard in the background, one of them most probably coming from an electric guitar and the other from a synth bass.", "data_idx": 5375, "number": 2, "label": "metal"} +{"file_name": "train_09613.png", "caption": "The music features a melody-less section, just the accompaniment. A piano is playing chords at the beginning of every measure. The kick drum plays on beats one and three and the snare drum, which seems to have some beads on its membrane, on beats two and four. An electronic sound is playing the same harmonies that the piano is playing. Two distorted sounds can be heard in the background, one of them most probably coming from an electric guitar and the other from a synth bass.", "data_idx": 5375, "number": 3, "label": "metal"} +{"file_name": "train_09614.png", "caption": "The low quality recording features a mellow echoing synth pad keys playing. It sounds ambient, reverberant, but also relaxing and calming, like something you would put on while doing yoga or just trying to relax.", "data_idx": 5378, "number": 0, "label": "hiphop"} +{"file_name": "train_09615.png", "caption": "The low quality recording features a mellow echoing synth pad keys playing. It sounds ambient, reverberant, but also relaxing and calming, like something you would put on while doing yoga or just trying to relax.", "data_idx": 5378, "number": 1, "label": "hiphop"} +{"file_name": "train_09616.png", "caption": "The low quality recording features a mellow echoing synth pad keys playing. It sounds ambient, reverberant, but also relaxing and calming, like something you would put on while doing yoga or just trying to relax.", "data_idx": 5378, "number": 2, "label": "hiphop"} +{"file_name": "train_09617.png", "caption": "The low quality recording features a mellow echoing synth pad keys playing. It sounds ambient, reverberant, but also relaxing and calming, like something you would put on while doing yoga or just trying to relax.", "data_idx": 5378, "number": 3, "label": "hiphop"} +{"file_name": "train_09618.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar accompaniment, saxophone playing melody and bells percussions. The song is cheerful and festive. The song is a Christmas song with a lot of fun and cheer.", "data_idx": 5381, "number": 0, "label": "reggae"} +{"file_name": "train_09619.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar accompaniment, saxophone playing melody and bells percussions. The song is cheerful and festive. The song is a Christmas song with a lot of fun and cheer.", "data_idx": 5381, "number": 1, "label": "reggae"} +{"file_name": "train_09620.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar accompaniment, saxophone playing melody and bells percussions. The song is cheerful and festive. The song is a Christmas song with a lot of fun and cheer.", "data_idx": 5381, "number": 2, "label": "reggae"} +{"file_name": "train_09621.png", "caption": "The song is an instrumental. The song is medium tempo with a groovy bass line, steady drumming rhythm, guitar accompaniment, saxophone playing melody and bells percussions. The song is cheerful and festive. The song is a Christmas song with a lot of fun and cheer.", "data_idx": 5381, "number": 3, "label": "reggae"} +{"file_name": "train_09622.png", "caption": "This slow blues song features a distortion guitar playing a guitar solo and the song is in 6/8 time signature. This is accompanied by a bass guitar playing a descending bassline. The percussion is playing a simple beat over a 6/8 time signature with a roll at the end of the bar. There are no voices in this song. This song can be played in a spy movie in a scene when a plan is being executed.", "data_idx": 5383, "number": 0, "label": "disco"} +{"file_name": "train_09623.png", "caption": "This slow blues song features a distortion guitar playing a guitar solo and the song is in 6/8 time signature. This is accompanied by a bass guitar playing a descending bassline. The percussion is playing a simple beat over a 6/8 time signature with a roll at the end of the bar. There are no voices in this song. This song can be played in a spy movie in a scene when a plan is being executed.", "data_idx": 5383, "number": 1, "label": "disco"} +{"file_name": "train_09624.png", "caption": "This slow blues song features a distortion guitar playing a guitar solo and the song is in 6/8 time signature. This is accompanied by a bass guitar playing a descending bassline. The percussion is playing a simple beat over a 6/8 time signature with a roll at the end of the bar. There are no voices in this song. This song can be played in a spy movie in a scene when a plan is being executed.", "data_idx": 5383, "number": 2, "label": "disco"} +{"file_name": "train_09625.png", "caption": "This slow blues song features a distortion guitar playing a guitar solo and the song is in 6/8 time signature. This is accompanied by a bass guitar playing a descending bassline. The percussion is playing a simple beat over a 6/8 time signature with a roll at the end of the bar. There are no voices in this song. This song can be played in a spy movie in a scene when a plan is being executed.", "data_idx": 5383, "number": 3, "label": "disco"} +{"file_name": "train_09626.png", "caption": "This recording is full of digital scary sounds with a lot of reverb and delay. This may be playing in a scary game.", "data_idx": 5384, "number": 0, "label": "metal"} +{"file_name": "train_09627.png", "caption": "This recording is full of digital scary sounds with a lot of reverb and delay. This may be playing in a scary game.", "data_idx": 5384, "number": 1, "label": "metal"} +{"file_name": "train_09628.png", "caption": "This recording is full of digital scary sounds with a lot of reverb and delay. This may be playing in a scary game.", "data_idx": 5384, "number": 2, "label": "metal"} +{"file_name": "train_09629.png", "caption": "This recording is full of digital scary sounds with a lot of reverb and delay. This may be playing in a scary game.", "data_idx": 5384, "number": 3, "label": "metal"} +{"file_name": "train_09630.png", "caption": "The Regional Mexican song features solo flute melody over wooden percussive elements, groovy piano melody and groovy bass. It sounds fun, happy and it is uplifting and energetic - like something you would dance to in some latin bar.", "data_idx": 5385, "number": 0, "label": "reggae"} +{"file_name": "train_09631.png", "caption": "The Regional Mexican song features solo flute melody over wooden percussive elements, groovy piano melody and groovy bass. It sounds fun, happy and it is uplifting and energetic - like something you would dance to in some latin bar.", "data_idx": 5385, "number": 1, "label": "reggae"} +{"file_name": "train_09632.png", "caption": "The Regional Mexican song features solo flute melody over wooden percussive elements, groovy piano melody and groovy bass. It sounds fun, happy and it is uplifting and energetic - like something you would dance to in some latin bar.", "data_idx": 5385, "number": 2, "label": "reggae"} +{"file_name": "train_09633.png", "caption": "The Regional Mexican song features solo flute melody over wooden percussive elements, groovy piano melody and groovy bass. It sounds fun, happy and it is uplifting and energetic - like something you would dance to in some latin bar.", "data_idx": 5385, "number": 3, "label": "reggae"} +{"file_name": "train_09634.png", "caption": "A male musician vocalises this energetic rhythm. The tempo is fast with rhythmic beats. The music has no instrumentation. It is youthful, energetic, groovy, enthusiastic and upbeat.This music is a Vocal percussion imitation.", "data_idx": 5386, "number": 0, "label": "hiphop"} +{"file_name": "train_09635.png", "caption": "A male musician vocalises this energetic rhythm. The tempo is fast with rhythmic beats. The music has no instrumentation. It is youthful, energetic, groovy, enthusiastic and upbeat.This music is a Vocal percussion imitation.", "data_idx": 5386, "number": 1, "label": "hiphop"} +{"file_name": "train_09636.png", "caption": "A male musician vocalises this energetic rhythm. The tempo is fast with rhythmic beats. The music has no instrumentation. It is youthful, energetic, groovy, enthusiastic and upbeat.This music is a Vocal percussion imitation.", "data_idx": 5386, "number": 2, "label": "hiphop"} +{"file_name": "train_09637.png", "caption": "A male musician vocalises this energetic rhythm. The tempo is fast with rhythmic beats. The music has no instrumentation. It is youthful, energetic, groovy, enthusiastic and upbeat.This music is a Vocal percussion imitation.", "data_idx": 5386, "number": 3, "label": "hiphop"} +{"file_name": "train_09638.png", "caption": "Male singers sing this gospel tune in vocal harmony. The song is medium tempo with a guitar accompaniment . The song is devotional amid inspiring. The song is a black gospel acapella recorded live in a church with poor quality audio.", "data_idx": 5388, "number": 0, "label": "rock"} +{"file_name": "train_09639.png", "caption": "Male singers sing this gospel tune in vocal harmony. The song is medium tempo with a guitar accompaniment . The song is devotional amid inspiring. The song is a black gospel acapella recorded live in a church with poor quality audio.", "data_idx": 5388, "number": 1, "label": "rock"} +{"file_name": "train_09640.png", "caption": "Male singers sing this gospel tune in vocal harmony. The song is medium tempo with a guitar accompaniment . The song is devotional amid inspiring. The song is a black gospel acapella recorded live in a church with poor quality audio.", "data_idx": 5388, "number": 2, "label": "rock"} +{"file_name": "train_09641.png", "caption": "Male singers sing this gospel tune in vocal harmony. The song is medium tempo with a guitar accompaniment . The song is devotional amid inspiring. The song is a black gospel acapella recorded live in a church with poor quality audio.", "data_idx": 5388, "number": 3, "label": "rock"} +{"file_name": "train_09642.png", "caption": "This is a techno music piece played in the background of a car video. The sounds coming from the car such as the exhaust sound can be heard in the video. The electronic music piece consists of a crisp synth sound playing a repeated theme while there is an electronic drum beat in the rhythmic background. There is an aggressive atmosphere in the piece. Samples lifted from the track could be used in the soundtrack of a car racing video game.", "data_idx": 5392, "number": 0, "label": "metal"} +{"file_name": "train_09643.png", "caption": "This is a techno music piece played in the background of a car video. The sounds coming from the car such as the exhaust sound can be heard in the video. The electronic music piece consists of a crisp synth sound playing a repeated theme while there is an electronic drum beat in the rhythmic background. There is an aggressive atmosphere in the piece. Samples lifted from the track could be used in the soundtrack of a car racing video game.", "data_idx": 5392, "number": 1, "label": "metal"} +{"file_name": "train_09644.png", "caption": "This is a techno music piece played in the background of a car video. The sounds coming from the car such as the exhaust sound can be heard in the video. The electronic music piece consists of a crisp synth sound playing a repeated theme while there is an electronic drum beat in the rhythmic background. There is an aggressive atmosphere in the piece. Samples lifted from the track could be used in the soundtrack of a car racing video game.", "data_idx": 5392, "number": 2, "label": "metal"} +{"file_name": "train_09645.png", "caption": "This is a techno music piece played in the background of a car video. The sounds coming from the car such as the exhaust sound can be heard in the video. The electronic music piece consists of a crisp synth sound playing a repeated theme while there is an electronic drum beat in the rhythmic background. There is an aggressive atmosphere in the piece. Samples lifted from the track could be used in the soundtrack of a car racing video game.", "data_idx": 5392, "number": 3, "label": "metal"} +{"file_name": "train_09646.png", "caption": "This file contains a backing track with acoustic drums holding a steady groove without any changes along with a repeating bassline. A padsound is playing in the background along with a high pitched melody entering for a moment. The e-guitar is strumming rhythmically chords along with the bass walking down the fretboard. The male voice singing sounds like not being a part of the track playing. This is an amateur recording. This song may be playing at a karaoke night.", "data_idx": 5393, "number": 0, "label": "classical"} +{"file_name": "train_09647.png", "caption": "This file contains a backing track with acoustic drums holding a steady groove without any changes along with a repeating bassline. A padsound is playing in the background along with a high pitched melody entering for a moment. The e-guitar is strumming rhythmically chords along with the bass walking down the fretboard. The male voice singing sounds like not being a part of the track playing. This is an amateur recording. This song may be playing at a karaoke night.", "data_idx": 5393, "number": 1, "label": "classical"} +{"file_name": "train_09648.png", "caption": "This file contains a backing track with acoustic drums holding a steady groove without any changes along with a repeating bassline. A padsound is playing in the background along with a high pitched melody entering for a moment. The e-guitar is strumming rhythmically chords along with the bass walking down the fretboard. The male voice singing sounds like not being a part of the track playing. This is an amateur recording. This song may be playing at a karaoke night.", "data_idx": 5393, "number": 2, "label": "classical"} +{"file_name": "train_09649.png", "caption": "This file contains a backing track with acoustic drums holding a steady groove without any changes along with a repeating bassline. A padsound is playing in the background along with a high pitched melody entering for a moment. The e-guitar is strumming rhythmically chords along with the bass walking down the fretboard. The male voice singing sounds like not being a part of the track playing. This is an amateur recording. This song may be playing at a karaoke night.", "data_idx": 5393, "number": 3, "label": "classical"} +{"file_name": "train_09650.png", "caption": "The music features a stringed instrument playing a melody. I'm not sure what instrument it is, it sounds oriental. I can say for sure it's not an acoustic guitar. This instrument has a synth delay effect on, meaning whenever a note is played, a device plays that same note with the sound of a synth.", "data_idx": 5398, "number": 0, "label": "jazz"} +{"file_name": "train_09651.png", "caption": "The music features a stringed instrument playing a melody. I'm not sure what instrument it is, it sounds oriental. I can say for sure it's not an acoustic guitar. This instrument has a synth delay effect on, meaning whenever a note is played, a device plays that same note with the sound of a synth.", "data_idx": 5398, "number": 1, "label": "jazz"} +{"file_name": "train_09652.png", "caption": "The music features a stringed instrument playing a melody. I'm not sure what instrument it is, it sounds oriental. I can say for sure it's not an acoustic guitar. This instrument has a synth delay effect on, meaning whenever a note is played, a device plays that same note with the sound of a synth.", "data_idx": 5398, "number": 2, "label": "jazz"} +{"file_name": "train_09653.png", "caption": "The music features a stringed instrument playing a melody. I'm not sure what instrument it is, it sounds oriental. I can say for sure it's not an acoustic guitar. This instrument has a synth delay effect on, meaning whenever a note is played, a device plays that same note with the sound of a synth.", "data_idx": 5398, "number": 3, "label": "jazz"} +{"file_name": "train_09654.png", "caption": "A digital drum is playing a hardstyle beat with a punching kick with a sub sound. Synthesizers/samples are playing industrial digital sounds as a melody. A female voice sample is singing a soulful sequence for a moment. This song may be playing in a club.", "data_idx": 5399, "number": 0, "label": "hiphop"} +{"file_name": "train_09655.png", "caption": "A digital drum is playing a hardstyle beat with a punching kick with a sub sound. Synthesizers/samples are playing industrial digital sounds as a melody. A female voice sample is singing a soulful sequence for a moment. This song may be playing in a club.", "data_idx": 5399, "number": 1, "label": "hiphop"} +{"file_name": "train_09656.png", "caption": "A digital drum is playing a hardstyle beat with a punching kick with a sub sound. Synthesizers/samples are playing industrial digital sounds as a melody. A female voice sample is singing a soulful sequence for a moment. This song may be playing in a club.", "data_idx": 5399, "number": 2, "label": "hiphop"} +{"file_name": "train_09657.png", "caption": "A digital drum is playing a hardstyle beat with a punching kick with a sub sound. Synthesizers/samples are playing industrial digital sounds as a melody. A female voice sample is singing a soulful sequence for a moment. This song may be playing in a club.", "data_idx": 5399, "number": 3, "label": "hiphop"} +{"file_name": "train_09658.png", "caption": "The low quality recording features a pop song sung by flat female vocalists singing over sustained strings melody, smooth bass, punchy snare, soft kick hits and simple hi hats. It sounds distorted and messy, since the frequencies are clashing with each other due to the bad mix. It also sounds a bit repetitive.", "data_idx": 5401, "number": 0, "label": "pop"} +{"file_name": "train_09659.png", "caption": "The low quality recording features a pop song sung by flat female vocalists singing over sustained strings melody, smooth bass, punchy snare, soft kick hits and simple hi hats. It sounds distorted and messy, since the frequencies are clashing with each other due to the bad mix. It also sounds a bit repetitive.", "data_idx": 5401, "number": 1, "label": "pop"} +{"file_name": "train_09660.png", "caption": "The low quality recording features a pop song sung by flat female vocalists singing over sustained strings melody, smooth bass, punchy snare, soft kick hits and simple hi hats. It sounds distorted and messy, since the frequencies are clashing with each other due to the bad mix. It also sounds a bit repetitive.", "data_idx": 5401, "number": 2, "label": "pop"} +{"file_name": "train_09661.png", "caption": "The low quality recording features a pop song sung by flat female vocalists singing over sustained strings melody, smooth bass, punchy snare, soft kick hits and simple hi hats. It sounds distorted and messy, since the frequencies are clashing with each other due to the bad mix. It also sounds a bit repetitive.", "data_idx": 5401, "number": 3, "label": "pop"} +{"file_name": "train_09662.png", "caption": "The low quality recording features a pop song that consists of passionate male vocal singing over punchy \"4 on the floor\" kick pattern, groovy accordion melody, wide tinny hi hats, claps and groovy bass. In the second half of the loop, the instrumental consists of claps, \"4 on the floor\" kick pattern without the bass, soft crash cymbal, addictive synth melody and wide chicken clucking sound effect. There is a sweep riser at the very end of the loop. It sounds fun and happy, like something kids would listen to.", "data_idx": 5402, "number": 0, "label": "reggae"} +{"file_name": "train_09663.png", "caption": "The low quality recording features a pop song that consists of passionate male vocal singing over punchy \"4 on the floor\" kick pattern, groovy accordion melody, wide tinny hi hats, claps and groovy bass. In the second half of the loop, the instrumental consists of claps, \"4 on the floor\" kick pattern without the bass, soft crash cymbal, addictive synth melody and wide chicken clucking sound effect. There is a sweep riser at the very end of the loop. It sounds fun and happy, like something kids would listen to.", "data_idx": 5402, "number": 1, "label": "reggae"} +{"file_name": "train_09664.png", "caption": "The low quality recording features a pop song that consists of passionate male vocal singing over punchy \"4 on the floor\" kick pattern, groovy accordion melody, wide tinny hi hats, claps and groovy bass. In the second half of the loop, the instrumental consists of claps, \"4 on the floor\" kick pattern without the bass, soft crash cymbal, addictive synth melody and wide chicken clucking sound effect. There is a sweep riser at the very end of the loop. It sounds fun and happy, like something kids would listen to.", "data_idx": 5402, "number": 2, "label": "reggae"} +{"file_name": "train_09665.png", "caption": "The low quality recording features a pop song that consists of passionate male vocal singing over punchy \"4 on the floor\" kick pattern, groovy accordion melody, wide tinny hi hats, claps and groovy bass. In the second half of the loop, the instrumental consists of claps, \"4 on the floor\" kick pattern without the bass, soft crash cymbal, addictive synth melody and wide chicken clucking sound effect. There is a sweep riser at the very end of the loop. It sounds fun and happy, like something kids would listen to.", "data_idx": 5402, "number": 3, "label": "reggae"} +{"file_name": "train_09666.png", "caption": "This is a soothing traditional Indian or Eastern song that can be used as music for meditation. It is relaxing and features layered female vocals chanting \"om\". There is a bansuri melody, some rhythmic tabla playing, and an intermittent manjeera being percussively played.", "data_idx": 5405, "number": 0, "label": "rock"} +{"file_name": "train_09667.png", "caption": "This is a soothing traditional Indian or Eastern song that can be used as music for meditation. It is relaxing and features layered female vocals chanting \"om\". There is a bansuri melody, some rhythmic tabla playing, and an intermittent manjeera being percussively played.", "data_idx": 5405, "number": 1, "label": "rock"} +{"file_name": "train_09668.png", "caption": "This is a soothing traditional Indian or Eastern song that can be used as music for meditation. It is relaxing and features layered female vocals chanting \"om\". There is a bansuri melody, some rhythmic tabla playing, and an intermittent manjeera being percussively played.", "data_idx": 5405, "number": 2, "label": "rock"} +{"file_name": "train_09669.png", "caption": "This is a soothing traditional Indian or Eastern song that can be used as music for meditation. It is relaxing and features layered female vocals chanting \"om\". There is a bansuri melody, some rhythmic tabla playing, and an intermittent manjeera being percussively played.", "data_idx": 5405, "number": 3, "label": "rock"} +{"file_name": "train_09670.png", "caption": "This disco song features male voices singing the main melody in harmony. This is accompanied by programmed percussion playing a simple beat. The bass plays funk style bass notes. A synth plays a string voice in the background with short bursts of chords. After the first line, a guitar strum is played. This song is uptempo and has a happy mood. This song can be played in a celebratory event.", "data_idx": 5406, "number": 0, "label": "disco"} +{"file_name": "train_09671.png", "caption": "This disco song features male voices singing the main melody in harmony. This is accompanied by programmed percussion playing a simple beat. The bass plays funk style bass notes. A synth plays a string voice in the background with short bursts of chords. After the first line, a guitar strum is played. This song is uptempo and has a happy mood. This song can be played in a celebratory event.", "data_idx": 5406, "number": 1, "label": "disco"} +{"file_name": "train_09672.png", "caption": "This disco song features male voices singing the main melody in harmony. This is accompanied by programmed percussion playing a simple beat. The bass plays funk style bass notes. A synth plays a string voice in the background with short bursts of chords. After the first line, a guitar strum is played. This song is uptempo and has a happy mood. This song can be played in a celebratory event.", "data_idx": 5406, "number": 2, "label": "disco"} +{"file_name": "train_09673.png", "caption": "This disco song features male voices singing the main melody in harmony. This is accompanied by programmed percussion playing a simple beat. The bass plays funk style bass notes. A synth plays a string voice in the background with short bursts of chords. After the first line, a guitar strum is played. This song is uptempo and has a happy mood. This song can be played in a celebratory event.", "data_idx": 5406, "number": 3, "label": "disco"} +{"file_name": "train_09674.png", "caption": "This instrumental song features the main melody played on bells and the marimba. A timpani plays the percussion. The tempo of this song is slow. This song has no voices. The song has a celestial and dreamy feel. This song can be used in a dreamy sequence in a children's movie. There are no voices in this song.", "data_idx": 5408, "number": 0, "label": "classical"} +{"file_name": "train_09675.png", "caption": "This instrumental song features the main melody played on bells and the marimba. A timpani plays the percussion. The tempo of this song is slow. This song has no voices. The song has a celestial and dreamy feel. This song can be used in a dreamy sequence in a children's movie. There are no voices in this song.", "data_idx": 5408, "number": 1, "label": "classical"} +{"file_name": "train_09676.png", "caption": "This instrumental song features the main melody played on bells and the marimba. A timpani plays the percussion. The tempo of this song is slow. This song has no voices. The song has a celestial and dreamy feel. This song can be used in a dreamy sequence in a children's movie. There are no voices in this song.", "data_idx": 5408, "number": 2, "label": "classical"} +{"file_name": "train_09677.png", "caption": "This instrumental song features the main melody played on bells and the marimba. A timpani plays the percussion. The tempo of this song is slow. This song has no voices. The song has a celestial and dreamy feel. This song can be used in a dreamy sequence in a children's movie. There are no voices in this song.", "data_idx": 5408, "number": 3, "label": "classical"} +{"file_name": "train_09678.png", "caption": "A nostalgic feeling trip hop song with an off kilter, Dilla inspired drum beat, a jazz piano playing complex chords and a male rapper.", "data_idx": 5409, "number": 0, "label": "hiphop"} +{"file_name": "train_09679.png", "caption": "A nostalgic feeling trip hop song with an off kilter, Dilla inspired drum beat, a jazz piano playing complex chords and a male rapper.", "data_idx": 5409, "number": 1, "label": "hiphop"} +{"file_name": "train_09680.png", "caption": "A nostalgic feeling trip hop song with an off kilter, Dilla inspired drum beat, a jazz piano playing complex chords and a male rapper.", "data_idx": 5409, "number": 2, "label": "hiphop"} +{"file_name": "train_09681.png", "caption": "A nostalgic feeling trip hop song with an off kilter, Dilla inspired drum beat, a jazz piano playing complex chords and a male rapper.", "data_idx": 5409, "number": 3, "label": "hiphop"} +{"file_name": "train_09682.png", "caption": "The low quality recording features a lullaby song that consists of widely spread intimate female vocals singing against each other, creating a bit of a chaotic atmosphere. There are also sustained strings melody and mellow piano melody playing in the background. The stereo image is unbalanced and it sounds soft, haunting and chaotic.", "data_idx": 5410, "number": 0, "label": "pop"} +{"file_name": "train_09683.png", "caption": "The low quality recording features a lullaby song that consists of widely spread intimate female vocals singing against each other, creating a bit of a chaotic atmosphere. There are also sustained strings melody and mellow piano melody playing in the background. The stereo image is unbalanced and it sounds soft, haunting and chaotic.", "data_idx": 5410, "number": 1, "label": "pop"} +{"file_name": "train_09684.png", "caption": "The low quality recording features a lullaby song that consists of widely spread intimate female vocals singing against each other, creating a bit of a chaotic atmosphere. There are also sustained strings melody and mellow piano melody playing in the background. The stereo image is unbalanced and it sounds soft, haunting and chaotic.", "data_idx": 5410, "number": 2, "label": "pop"} +{"file_name": "train_09685.png", "caption": "The low quality recording features a lullaby song that consists of widely spread intimate female vocals singing against each other, creating a bit of a chaotic atmosphere. There are also sustained strings melody and mellow piano melody playing in the background. The stereo image is unbalanced and it sounds soft, haunting and chaotic.", "data_idx": 5410, "number": 3, "label": "pop"} +{"file_name": "train_09686.png", "caption": "A cheery ukulele ensemble featuring ukulele strumming and a harmonized ukulele melody.", "data_idx": 5412, "number": 0, "label": "hiphop"} +{"file_name": "train_09687.png", "caption": "A cheery ukulele ensemble featuring ukulele strumming and a harmonized ukulele melody.", "data_idx": 5412, "number": 1, "label": "hiphop"} +{"file_name": "train_09688.png", "caption": "The low quality recording features a didgeridoo beatboxing and it sounds crushed, distorted, but energetic - sounds like it was recorded with a phone.", "data_idx": 5413, "number": 0, "label": "blues"} +{"file_name": "train_09689.png", "caption": "The low quality recording features a didgeridoo beatboxing and it sounds crushed, distorted, but energetic - sounds like it was recorded with a phone.", "data_idx": 5413, "number": 1, "label": "blues"} +{"file_name": "train_09690.png", "caption": "The low quality recording features a reggae song that consists of wide harmonizing low male vocals singing over groovy bass, muffled snare, shimmering hi hats, tinny percussive elements and offbeat piano chords. The recording is noisy and it sounds easygoing and chill.", "data_idx": 5414, "number": 0, "label": "reggae"} +{"file_name": "train_09691.png", "caption": "The low quality recording features a reggae song that consists of wide harmonizing low male vocals singing over groovy bass, muffled snare, shimmering hi hats, tinny percussive elements and offbeat piano chords. The recording is noisy and it sounds easygoing and chill.", "data_idx": 5414, "number": 1, "label": "reggae"} +{"file_name": "train_09692.png", "caption": "The low quality recording features a reggae song that consists of wide harmonizing low male vocals singing over groovy bass, muffled snare, shimmering hi hats, tinny percussive elements and offbeat piano chords. The recording is noisy and it sounds easygoing and chill.", "data_idx": 5414, "number": 2, "label": "reggae"} +{"file_name": "train_09693.png", "caption": "The low quality recording features a reggae song that consists of wide harmonizing low male vocals singing over groovy bass, muffled snare, shimmering hi hats, tinny percussive elements and offbeat piano chords. The recording is noisy and it sounds easygoing and chill.", "data_idx": 5414, "number": 3, "label": "reggae"} +{"file_name": "train_09694.png", "caption": "The low quality recording features an opera live performance by detuned female vocal singing over accordion melody. It is in mono, noisy and it sounds chaotic.", "data_idx": 5417, "number": 0, "label": "classical"} +{"file_name": "train_09695.png", "caption": "The low quality recording features an opera live performance by detuned female vocal singing over accordion melody. It is in mono, noisy and it sounds chaotic.", "data_idx": 5417, "number": 1, "label": "classical"} +{"file_name": "train_09696.png", "caption": "The low quality recording features an opera live performance by detuned female vocal singing over accordion melody. It is in mono, noisy and it sounds chaotic.", "data_idx": 5417, "number": 2, "label": "classical"} +{"file_name": "train_09697.png", "caption": "The low quality recording features an opera live performance by detuned female vocal singing over accordion melody. It is in mono, noisy and it sounds chaotic.", "data_idx": 5417, "number": 3, "label": "classical"} +{"file_name": "train_09698.png", "caption": "The low quality recording features an Alternative/Indie song playing in the background while there are some skateboarding sound effects and foley in front. It is obviously a skateboarding compilation video. The song consists of groovy bass, energetic drums, wide synth key chords and wide synth pad chords, while the harmonizing female vocals are singing on top of it. It sounds fun and happy.", "data_idx": 5420, "number": 0, "label": "pop"} +{"file_name": "train_09699.png", "caption": "The low quality recording features an Alternative/Indie song playing in the background while there are some skateboarding sound effects and foley in front. It is obviously a skateboarding compilation video. The song consists of groovy bass, energetic drums, wide synth key chords and wide synth pad chords, while the harmonizing female vocals are singing on top of it. It sounds fun and happy.", "data_idx": 5420, "number": 1, "label": "pop"} +{"file_name": "train_09700.png", "caption": "The low quality recording features an Alternative/Indie song playing in the background while there are some skateboarding sound effects and foley in front. It is obviously a skateboarding compilation video. The song consists of groovy bass, energetic drums, wide synth key chords and wide synth pad chords, while the harmonizing female vocals are singing on top of it. It sounds fun and happy.", "data_idx": 5420, "number": 2, "label": "pop"} +{"file_name": "train_09701.png", "caption": "The low quality recording features an Alternative/Indie song playing in the background while there are some skateboarding sound effects and foley in front. It is obviously a skateboarding compilation video. The song consists of groovy bass, energetic drums, wide synth key chords and wide synth pad chords, while the harmonizing female vocals are singing on top of it. It sounds fun and happy.", "data_idx": 5420, "number": 3, "label": "pop"} +{"file_name": "train_09702.png", "caption": "The low quality recording features a classical song that consists of widely spread sustained strings melody and woodwind melody. It sounds vintage, calming and relaxing, like something you would hear in an easygoing movie scene.", "data_idx": 5421, "number": 0, "label": "classical"} +{"file_name": "train_09703.png", "caption": "The low quality recording features a classical song that consists of widely spread sustained strings melody and woodwind melody. It sounds vintage, calming and relaxing, like something you would hear in an easygoing movie scene.", "data_idx": 5421, "number": 1, "label": "classical"} +{"file_name": "train_09704.png", "caption": "The low quality recording features a classical song that consists of widely spread sustained strings melody and woodwind melody. It sounds vintage, calming and relaxing, like something you would hear in an easygoing movie scene.", "data_idx": 5421, "number": 2, "label": "classical"} +{"file_name": "train_09705.png", "caption": "The low quality recording features a classical song that consists of widely spread sustained strings melody and woodwind melody. It sounds vintage, calming and relaxing, like something you would hear in an easygoing movie scene.", "data_idx": 5421, "number": 3, "label": "classical"} +{"file_name": "train_09706.png", "caption": "The low quality recording features a groovy bass guitar played over drums instrumental playback. It sounds muddy, messy and boomy, as the frequencies are clashing with each other. The recording is noisy and in mono.", "data_idx": 5423, "number": 0, "label": "blues"} +{"file_name": "train_09707.png", "caption": "The low quality recording features a groovy bass guitar played over drums instrumental playback. It sounds muddy, messy and boomy, as the frequencies are clashing with each other. The recording is noisy and in mono.", "data_idx": 5423, "number": 1, "label": "blues"} +{"file_name": "train_09708.png", "caption": "The low quality recording features a groovy bass guitar played over drums instrumental playback. It sounds muddy, messy and boomy, as the frequencies are clashing with each other. The recording is noisy and in mono.", "data_idx": 5423, "number": 2, "label": "blues"} +{"file_name": "train_09709.png", "caption": "The low quality recording features a groovy bass guitar played over drums instrumental playback. It sounds muddy, messy and boomy, as the frequencies are clashing with each other. The recording is noisy and in mono.", "data_idx": 5423, "number": 3, "label": "blues"} +{"file_name": "train_09710.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with hard hitting drumming, punchy bass lines, electric guitar lead and keyboard harmony. The song is a vibrant, energetic, enthusiastic, engaging, catchy and upbeat Classic Rock.", "data_idx": 5424, "number": 0, "label": "blues"} +{"file_name": "train_09711.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with hard hitting drumming, punchy bass lines, electric guitar lead and keyboard harmony. The song is a vibrant, energetic, enthusiastic, engaging, catchy and upbeat Classic Rock.", "data_idx": 5424, "number": 1, "label": "blues"} +{"file_name": "train_09712.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with hard hitting drumming, punchy bass lines, electric guitar lead and keyboard harmony. The song is a vibrant, energetic, enthusiastic, engaging, catchy and upbeat Classic Rock.", "data_idx": 5424, "number": 2, "label": "blues"} +{"file_name": "train_09713.png", "caption": "A male vocalist sings this spirited Rock song. The tempo is fast with hard hitting drumming, punchy bass lines, electric guitar lead and keyboard harmony. The song is a vibrant, energetic, enthusiastic, engaging, catchy and upbeat Classic Rock.", "data_idx": 5424, "number": 3, "label": "blues"} +{"file_name": "train_09714.png", "caption": "This is the kind of music that would be played to create a calm and mysterious ambiance. There is a bright and sustained synth and a fuzzy low-end bass synth which is used to play the melody.", "data_idx": 5425, "number": 0, "label": "rock"} +{"file_name": "train_09715.png", "caption": "This is the kind of music that would be played to create a calm and mysterious ambiance. There is a bright and sustained synth and a fuzzy low-end bass synth which is used to play the melody.", "data_idx": 5425, "number": 1, "label": "rock"} +{"file_name": "train_09716.png", "caption": "This is the kind of music that would be played to create a calm and mysterious ambiance. There is a bright and sustained synth and a fuzzy low-end bass synth which is used to play the melody.", "data_idx": 5425, "number": 2, "label": "rock"} +{"file_name": "train_09717.png", "caption": "This is the kind of music that would be played to create a calm and mysterious ambiance. There is a bright and sustained synth and a fuzzy low-end bass synth which is used to play the melody.", "data_idx": 5425, "number": 3, "label": "rock"} +{"file_name": "train_09718.png", "caption": "The low quality recording features a melancholic electric guitar melody with echoing effects on. Even though it sounds muffled and noisy, it gives it a vintage, warm character. It kind of feels cozy listening to it.", "data_idx": 5427, "number": 0, "label": "pop"} +{"file_name": "train_09719.png", "caption": "The low quality recording features a melancholic electric guitar melody with echoing effects on. Even though it sounds muffled and noisy, it gives it a vintage, warm character. It kind of feels cozy listening to it.", "data_idx": 5427, "number": 1, "label": "pop"} +{"file_name": "train_09720.png", "caption": "The low quality recording features a melancholic electric guitar melody with echoing effects on. Even though it sounds muffled and noisy, it gives it a vintage, warm character. It kind of feels cozy listening to it.", "data_idx": 5427, "number": 2, "label": "pop"} +{"file_name": "train_09721.png", "caption": "The low quality recording features a melancholic electric guitar melody with echoing effects on. Even though it sounds muffled and noisy, it gives it a vintage, warm character. It kind of feels cozy listening to it.", "data_idx": 5427, "number": 3, "label": "pop"} +{"file_name": "train_09722.png", "caption": "This electronic music features no voices. All the parts of this song are programmed. The main melody is played by a simulated plucked instrument. This is accompanied by electronic sounds in the background sounding like an alien spaceship. There are ambient sounds in the background filling the musicscape. The song has an ambient feel. This song can be played in a movie where there is travel to outer space.", "data_idx": 5429, "number": 0, "label": "rock"} +{"file_name": "train_09723.png", "caption": "This electronic music features no voices. All the parts of this song are programmed. The main melody is played by a simulated plucked instrument. This is accompanied by electronic sounds in the background sounding like an alien spaceship. There are ambient sounds in the background filling the musicscape. The song has an ambient feel. This song can be played in a movie where there is travel to outer space.", "data_idx": 5429, "number": 1, "label": "rock"} +{"file_name": "train_09724.png", "caption": "This electronic music features no voices. All the parts of this song are programmed. The main melody is played by a simulated plucked instrument. This is accompanied by electronic sounds in the background sounding like an alien spaceship. There are ambient sounds in the background filling the musicscape. The song has an ambient feel. This song can be played in a movie where there is travel to outer space.", "data_idx": 5429, "number": 2, "label": "rock"} +{"file_name": "train_09725.png", "caption": "This electronic music features no voices. All the parts of this song are programmed. The main melody is played by a simulated plucked instrument. This is accompanied by electronic sounds in the background sounding like an alien spaceship. There are ambient sounds in the background filling the musicscape. The song has an ambient feel. This song can be played in a movie where there is travel to outer space.", "data_idx": 5429, "number": 3, "label": "rock"} +{"file_name": "train_09726.png", "caption": "The low quality recording features a wide glass shattering sound effects layered with some synth sound effects. At the very beginning of the loop, there is a short snippet of a reverberant impact. The bad sample quality is what makes this sound low quality overall.", "data_idx": 5431, "number": 0, "label": "hiphop"} +{"file_name": "train_09727.png", "caption": "The low quality recording features a wide glass shattering sound effects layered with some synth sound effects. At the very beginning of the loop, there is a short snippet of a reverberant impact. The bad sample quality is what makes this sound low quality overall.", "data_idx": 5431, "number": 1, "label": "hiphop"} +{"file_name": "train_09728.png", "caption": "The low quality recording features a wide glass shattering sound effects layered with some synth sound effects. At the very beginning of the loop, there is a short snippet of a reverberant impact. The bad sample quality is what makes this sound low quality overall.", "data_idx": 5431, "number": 2, "label": "hiphop"} +{"file_name": "train_09729.png", "caption": "The low quality recording features a wide glass shattering sound effects layered with some synth sound effects. At the very beginning of the loop, there is a short snippet of a reverberant impact. The bad sample quality is what makes this sound low quality overall.", "data_idx": 5431, "number": 3, "label": "hiphop"} +{"file_name": "train_09730.png", "caption": "A guzheng is playing a traditional melody with some notes bending while a flute is playing notes in a tremolo. In the background a string instrument is played with a bow. All the instruments are full of reverb and delay. Also are they panned to different directions of the speakers.\nThis song may be playing at a ceremonial dance or theater.", "data_idx": 5434, "number": 0, "label": "classical"} +{"file_name": "train_09731.png", "caption": "A guzheng is playing a traditional melody with some notes bending while a flute is playing notes in a tremolo. In the background a string instrument is played with a bow. All the instruments are full of reverb and delay. Also are they panned to different directions of the speakers.\nThis song may be playing at a ceremonial dance or theater.", "data_idx": 5434, "number": 1, "label": "classical"} +{"file_name": "train_09732.png", "caption": "The song is an instrumental improvisation. The song is medium fast tempo with a groovy bass line, electric guitar playing, saxophone playing, jazz drumming with percussive hits and a xylophone playing. The song is highly improvisational and energetic. The song is a modern jazz fusion or improvisation jam.", "data_idx": 5435, "number": 0, "label": "metal"} +{"file_name": "train_09733.png", "caption": "The song is an instrumental improvisation. The song is medium fast tempo with a groovy bass line, electric guitar playing, saxophone playing, jazz drumming with percussive hits and a xylophone playing. The song is highly improvisational and energetic. The song is a modern jazz fusion or improvisation jam.", "data_idx": 5435, "number": 1, "label": "metal"} +{"file_name": "train_09734.png", "caption": "The song is an instrumental improvisation. The song is medium fast tempo with a groovy bass line, electric guitar playing, saxophone playing, jazz drumming with percussive hits and a xylophone playing. The song is highly improvisational and energetic. The song is a modern jazz fusion or improvisation jam.", "data_idx": 5435, "number": 2, "label": "metal"} +{"file_name": "train_09735.png", "caption": "The song is an instrumental improvisation. The song is medium fast tempo with a groovy bass line, electric guitar playing, saxophone playing, jazz drumming with percussive hits and a xylophone playing. The song is highly improvisational and energetic. The song is a modern jazz fusion or improvisation jam.", "data_idx": 5435, "number": 3, "label": "metal"} +{"file_name": "train_09736.png", "caption": "This folk song starts off with a female voice singing the main melody. The voice has the added effect of autotune. This is accompanied by a rebab or a bowed instrument playing the same melody as the voice. Another stringed instrument is plucked, playing the same melody as the voice. The bass plays the root notes of the chords. The voice rests and other instruments come in. A clarinet plays a descending fill. Koboro percussion is played giving this song a middle-eastern feel. This song has a happy feel. It is a fusion between a folk song and a more modern beat. This song can be played as a party song.", "data_idx": 5439, "number": 0, "label": "country"} +{"file_name": "train_09737.png", "caption": "This folk song starts off with a female voice singing the main melody. The voice has the added effect of autotune. This is accompanied by a rebab or a bowed instrument playing the same melody as the voice. Another stringed instrument is plucked, playing the same melody as the voice. The bass plays the root notes of the chords. The voice rests and other instruments come in. A clarinet plays a descending fill. Koboro percussion is played giving this song a middle-eastern feel. This song has a happy feel. It is a fusion between a folk song and a more modern beat. This song can be played as a party song.", "data_idx": 5439, "number": 1, "label": "country"} +{"file_name": "train_09738.png", "caption": "This folk song starts off with a female voice singing the main melody. The voice has the added effect of autotune. This is accompanied by a rebab or a bowed instrument playing the same melody as the voice. Another stringed instrument is plucked, playing the same melody as the voice. The bass plays the root notes of the chords. The voice rests and other instruments come in. A clarinet plays a descending fill. Koboro percussion is played giving this song a middle-eastern feel. This song has a happy feel. It is a fusion between a folk song and a more modern beat. This song can be played as a party song.", "data_idx": 5439, "number": 2, "label": "country"} +{"file_name": "train_09739.png", "caption": "This folk song starts off with a female voice singing the main melody. The voice has the added effect of autotune. This is accompanied by a rebab or a bowed instrument playing the same melody as the voice. Another stringed instrument is plucked, playing the same melody as the voice. The bass plays the root notes of the chords. The voice rests and other instruments come in. A clarinet plays a descending fill. Koboro percussion is played giving this song a middle-eastern feel. This song has a happy feel. It is a fusion between a folk song and a more modern beat. This song can be played as a party song.", "data_idx": 5439, "number": 3, "label": "country"} +{"file_name": "train_09740.png", "caption": "Violins are playing a lead melody underlined by celli playing supportive chords. A brass section is playing a countermelody while shakers and other instruments are providing rhythm. This song may be playing at a folkfest with a dancefloor.", "data_idx": 5440, "number": 0, "label": "classical"} +{"file_name": "train_09741.png", "caption": "Violins are playing a lead melody underlined by celli playing supportive chords. A brass section is playing a countermelody while shakers and other instruments are providing rhythm. This song may be playing at a folkfest with a dancefloor.", "data_idx": 5440, "number": 1, "label": "classical"} +{"file_name": "train_09742.png", "caption": "This piece is an instrumental. The tempo is fast with hard hitting percussion, cymbals clanging, clapping, rhythmic chanting, and shakers. It is vigorous, spirited, vibrant, energetic,intense and engaging.", "data_idx": 5441, "number": 0, "label": "blues"} +{"file_name": "train_09743.png", "caption": "This piece is an instrumental. The tempo is fast with hard hitting percussion, cymbals clanging, clapping, rhythmic chanting, and shakers. It is vigorous, spirited, vibrant, energetic,intense and engaging.", "data_idx": 5441, "number": 1, "label": "blues"} +{"file_name": "train_09744.png", "caption": "This piece is an instrumental. The tempo is fast with hard hitting percussion, cymbals clanging, clapping, rhythmic chanting, and shakers. It is vigorous, spirited, vibrant, energetic,intense and engaging.", "data_idx": 5441, "number": 2, "label": "blues"} +{"file_name": "train_09745.png", "caption": "This piece is an instrumental. The tempo is fast with hard hitting percussion, cymbals clanging, clapping, rhythmic chanting, and shakers. It is vigorous, spirited, vibrant, energetic,intense and engaging.", "data_idx": 5441, "number": 3, "label": "blues"} +{"file_name": "train_09746.png", "caption": "Someone is playing a snare with brushes along to zitars playing a repeating melody. In the background you can hear an e-bass and an acoustic guitar strumming chords. This song may be playing in a live concert.", "data_idx": 5443, "number": 0, "label": "classical"} +{"file_name": "train_09747.png", "caption": "Someone is playing a snare with brushes along to zitars playing a repeating melody. In the background you can hear an e-bass and an acoustic guitar strumming chords. This song may be playing in a live concert.", "data_idx": 5443, "number": 1, "label": "classical"} +{"file_name": "train_09748.png", "caption": "Someone is playing a snare with brushes along to zitars playing a repeating melody. In the background you can hear an e-bass and an acoustic guitar strumming chords. This song may be playing in a live concert.", "data_idx": 5443, "number": 2, "label": "classical"} +{"file_name": "train_09749.png", "caption": "Someone is playing a snare with brushes along to zitars playing a repeating melody. In the background you can hear an e-bass and an acoustic guitar strumming chords. This song may be playing in a live concert.", "data_idx": 5443, "number": 3, "label": "classical"} +{"file_name": "train_09750.png", "caption": "The low quality recording features an aggressive, distorted car engine revving sound effect and layered sustained string and synth lead riser in the background. There are some wide crackling noises, which, besides a slight distortion of the actual sound, is making this sound lower in quality.", "data_idx": 5447, "number": 0, "label": "hiphop"} +{"file_name": "train_09751.png", "caption": "The low quality recording features an aggressive, distorted car engine revving sound effect and layered sustained string and synth lead riser in the background. There are some wide crackling noises, which, besides a slight distortion of the actual sound, is making this sound lower in quality.", "data_idx": 5447, "number": 1, "label": "hiphop"} +{"file_name": "train_09752.png", "caption": "The low quality recording features an aggressive, distorted car engine revving sound effect and layered sustained string and synth lead riser in the background. There are some wide crackling noises, which, besides a slight distortion of the actual sound, is making this sound lower in quality.", "data_idx": 5447, "number": 2, "label": "hiphop"} +{"file_name": "train_09753.png", "caption": "The low quality recording features an aggressive, distorted car engine revving sound effect and layered sustained string and synth lead riser in the background. There are some wide crackling noises, which, besides a slight distortion of the actual sound, is making this sound lower in quality.", "data_idx": 5447, "number": 3, "label": "hiphop"} +{"file_name": "train_09754.png", "caption": "This is a kid song. The music sounds like it was recorded coming out of the TV with a phone which makes it sound low quality. The drum beat is fast tempo. The instruments are not very distinguishable except for an ambient synth that plays a bright melody. This is a song that could be featured in a kids TV show.", "data_idx": 5449, "number": 0, "label": "disco"} +{"file_name": "train_09755.png", "caption": "This is a kid song. The music sounds like it was recorded coming out of the TV with a phone which makes it sound low quality. The drum beat is fast tempo. The instruments are not very distinguishable except for an ambient synth that plays a bright melody. This is a song that could be featured in a kids TV show.", "data_idx": 5449, "number": 1, "label": "disco"} +{"file_name": "train_09756.png", "caption": "This is a kid song. The music sounds like it was recorded coming out of the TV with a phone which makes it sound low quality. The drum beat is fast tempo. The instruments are not very distinguishable except for an ambient synth that plays a bright melody. This is a song that could be featured in a kids TV show.", "data_idx": 5449, "number": 2, "label": "disco"} +{"file_name": "train_09757.png", "caption": "This is a kid song. The music sounds like it was recorded coming out of the TV with a phone which makes it sound low quality. The drum beat is fast tempo. The instruments are not very distinguishable except for an ambient synth that plays a bright melody. This is a song that could be featured in a kids TV show.", "data_idx": 5449, "number": 3, "label": "disco"} +{"file_name": "train_09758.png", "caption": "This music is an acoustic instrumental. The tempo is medium with an acoustic guitar lead harmony, with minimalist instrumentation. The music is soft, soothing, pleasant, engaging, and delicate.", "data_idx": 5451, "number": 0, "label": "blues"} +{"file_name": "train_09759.png", "caption": "This music is an acoustic instrumental. The tempo is medium with an acoustic guitar lead harmony, with minimalist instrumentation. The music is soft, soothing, pleasant, engaging, and delicate.", "data_idx": 5451, "number": 1, "label": "blues"} +{"file_name": "train_09760.png", "caption": "This music is an acoustic instrumental. The tempo is medium with an acoustic guitar lead harmony, with minimalist instrumentation. The music is soft, soothing, pleasant, engaging, and delicate.", "data_idx": 5451, "number": 2, "label": "blues"} +{"file_name": "train_09761.png", "caption": "This music is an acoustic instrumental. The tempo is medium with an acoustic guitar lead harmony, with minimalist instrumentation. The music is soft, soothing, pleasant, engaging, and delicate.", "data_idx": 5451, "number": 3, "label": "blues"} +{"file_name": "train_09762.png", "caption": "This is a movie music piece. There is a female vocalist singing melodically at the forefront. There is an acoustic guitar playing the main tune with a bass guitar holding the root notes in the background. The rhythmic structure is composed of acoustic sounding drums and percussion playing a syncopated beat. There is a feeling of hope in this piece. This piece could be used in the soundtrack of an inspiring movie/TV show. It could also be played at sports venues.", "data_idx": 5452, "number": 0, "label": "jazz"} +{"file_name": "train_09763.png", "caption": "This is a movie music piece. There is a female vocalist singing melodically at the forefront. There is an acoustic guitar playing the main tune with a bass guitar holding the root notes in the background. The rhythmic structure is composed of acoustic sounding drums and percussion playing a syncopated beat. There is a feeling of hope in this piece. This piece could be used in the soundtrack of an inspiring movie/TV show. It could also be played at sports venues.", "data_idx": 5452, "number": 1, "label": "jazz"} +{"file_name": "train_09764.png", "caption": "This is a movie music piece. There is a female vocalist singing melodically at the forefront. There is an acoustic guitar playing the main tune with a bass guitar holding the root notes in the background. The rhythmic structure is composed of acoustic sounding drums and percussion playing a syncopated beat. There is a feeling of hope in this piece. This piece could be used in the soundtrack of an inspiring movie/TV show. It could also be played at sports venues.", "data_idx": 5452, "number": 2, "label": "jazz"} +{"file_name": "train_09765.png", "caption": "This is a movie music piece. There is a female vocalist singing melodically at the forefront. There is an acoustic guitar playing the main tune with a bass guitar holding the root notes in the background. The rhythmic structure is composed of acoustic sounding drums and percussion playing a syncopated beat. There is a feeling of hope in this piece. This piece could be used in the soundtrack of an inspiring movie/TV show. It could also be played at sports venues.", "data_idx": 5452, "number": 3, "label": "jazz"} +{"file_name": "train_09766.png", "caption": "This audio contains sound effects like horn honking and mallet instruments walking up the scale. This may be playing on a machine in a casino.", "data_idx": 5455, "number": 0, "label": "hiphop"} +{"file_name": "train_09767.png", "caption": "This audio contains sound effects like horn honking and mallet instruments walking up the scale. This may be playing on a machine in a casino.", "data_idx": 5455, "number": 1, "label": "hiphop"} +{"file_name": "train_09768.png", "caption": "This audio contains sound effects like horn honking and mallet instruments walking up the scale. This may be playing on a machine in a casino.", "data_idx": 5455, "number": 2, "label": "hiphop"} +{"file_name": "train_09769.png", "caption": "This audio contains sound effects like horn honking and mallet instruments walking up the scale. This may be playing on a machine in a casino.", "data_idx": 5455, "number": 3, "label": "hiphop"} +{"file_name": "train_09770.png", "caption": "A female singer sings this poignant melody. The song is slow tempo with an electric guitar buzzing harmony, piano accompaniment, steady drumming rhythm, keyboard harmony, groovy bass line and Tambour percussions. The song is emotional and melancholic. The song is a poor quality recording of a classic pop song.", "data_idx": 5456, "number": 0, "label": "pop"} +{"file_name": "train_09771.png", "caption": "A female singer sings this poignant melody. The song is slow tempo with an electric guitar buzzing harmony, piano accompaniment, steady drumming rhythm, keyboard harmony, groovy bass line and Tambour percussions. The song is emotional and melancholic. The song is a poor quality recording of a classic pop song.", "data_idx": 5456, "number": 1, "label": "pop"} +{"file_name": "train_09772.png", "caption": "A female singer sings this poignant melody. The song is slow tempo with an electric guitar buzzing harmony, piano accompaniment, steady drumming rhythm, keyboard harmony, groovy bass line and Tambour percussions. The song is emotional and melancholic. The song is a poor quality recording of a classic pop song.", "data_idx": 5456, "number": 2, "label": "pop"} +{"file_name": "train_09773.png", "caption": "A female singer sings this poignant melody. The song is slow tempo with an electric guitar buzzing harmony, piano accompaniment, steady drumming rhythm, keyboard harmony, groovy bass line and Tambour percussions. The song is emotional and melancholic. The song is a poor quality recording of a classic pop song.", "data_idx": 5456, "number": 3, "label": "pop"} +{"file_name": "train_09774.png", "caption": "The performer is snapping his fingers in rhythm with the upbeat japanese music playing in the background. The song is a j-pop song and features vibrant rhythmic synth activity and has a general dance feel to it. It's a live recording.", "data_idx": 5457, "number": 0, "label": "disco"} +{"file_name": "train_09775.png", "caption": "The performer is snapping his fingers in rhythm with the upbeat japanese music playing in the background. The song is a j-pop song and features vibrant rhythmic synth activity and has a general dance feel to it. It's a live recording.", "data_idx": 5457, "number": 1, "label": "disco"} +{"file_name": "train_09776.png", "caption": "The performer is snapping his fingers in rhythm with the upbeat japanese music playing in the background. The song is a j-pop song and features vibrant rhythmic synth activity and has a general dance feel to it. It's a live recording.", "data_idx": 5457, "number": 2, "label": "disco"} +{"file_name": "train_09777.png", "caption": "The performer is snapping his fingers in rhythm with the upbeat japanese music playing in the background. The song is a j-pop song and features vibrant rhythmic synth activity and has a general dance feel to it. It's a live recording.", "data_idx": 5457, "number": 3, "label": "disco"} +{"file_name": "train_09778.png", "caption": "This slow pop song features a synth playing the bass notes as well as the lead melody. The music is in 6/8 time signature. In the first bar, two chords are played. The main melody is played in the second bar. The synth accents the notes on a higher register. The bass plays at off timing. The first two notes of the bass are played on the first count and fourth count of the first bar. The next bass note is played on the first count of the second bar and the following note is played on the 'three and' count of the second bar. The mood of this song is relaxing. This song can be played in a coffee shop.", "data_idx": 5458, "number": 0, "label": "hiphop"} +{"file_name": "train_09779.png", "caption": "This slow pop song features a synth playing the bass notes as well as the lead melody. The music is in 6/8 time signature. In the first bar, two chords are played. The main melody is played in the second bar. The synth accents the notes on a higher register. The bass plays at off timing. The first two notes of the bass are played on the first count and fourth count of the first bar. The next bass note is played on the first count of the second bar and the following note is played on the 'three and' count of the second bar. The mood of this song is relaxing. This song can be played in a coffee shop.", "data_idx": 5458, "number": 1, "label": "hiphop"} +{"file_name": "train_09780.png", "caption": "This slow pop song features a synth playing the bass notes as well as the lead melody. The music is in 6/8 time signature. In the first bar, two chords are played. The main melody is played in the second bar. The synth accents the notes on a higher register. The bass plays at off timing. The first two notes of the bass are played on the first count and fourth count of the first bar. The next bass note is played on the first count of the second bar and the following note is played on the 'three and' count of the second bar. The mood of this song is relaxing. This song can be played in a coffee shop.", "data_idx": 5458, "number": 2, "label": "hiphop"} +{"file_name": "train_09781.png", "caption": "This slow pop song features a synth playing the bass notes as well as the lead melody. The music is in 6/8 time signature. In the first bar, two chords are played. The main melody is played in the second bar. The synth accents the notes on a higher register. The bass plays at off timing. The first two notes of the bass are played on the first count and fourth count of the first bar. The next bass note is played on the first count of the second bar and the following note is played on the 'three and' count of the second bar. The mood of this song is relaxing. This song can be played in a coffee shop.", "data_idx": 5458, "number": 3, "label": "hiphop"} +{"file_name": "train_09782.png", "caption": "This heavy metal song features a high pitched male voice. This is accompanied by percussion playing an aggressive metal beat. The kick drum plays double kicks matching the picking pattern of the guitars. The distortion guitars play twin parts. One guitar plays the low parts while the other plays the same riff at a higher octave. The bass guitar follows the distortion guitars and plays the notes from the same riffs but ending earlier than the guitars. This song has a romantic theme. This song can be played in a superhero movie.", "data_idx": 5460, "number": 0, "label": "metal"} +{"file_name": "train_09783.png", "caption": "This heavy metal song features a high pitched male voice. This is accompanied by percussion playing an aggressive metal beat. The kick drum plays double kicks matching the picking pattern of the guitars. The distortion guitars play twin parts. One guitar plays the low parts while the other plays the same riff at a higher octave. The bass guitar follows the distortion guitars and plays the notes from the same riffs but ending earlier than the guitars. This song has a romantic theme. This song can be played in a superhero movie.", "data_idx": 5460, "number": 1, "label": "metal"} +{"file_name": "train_09784.png", "caption": "This heavy metal song features a high pitched male voice. This is accompanied by percussion playing an aggressive metal beat. The kick drum plays double kicks matching the picking pattern of the guitars. The distortion guitars play twin parts. One guitar plays the low parts while the other plays the same riff at a higher octave. The bass guitar follows the distortion guitars and plays the notes from the same riffs but ending earlier than the guitars. This song has a romantic theme. This song can be played in a superhero movie.", "data_idx": 5460, "number": 2, "label": "metal"} +{"file_name": "train_09785.png", "caption": "This heavy metal song features a high pitched male voice. This is accompanied by percussion playing an aggressive metal beat. The kick drum plays double kicks matching the picking pattern of the guitars. The distortion guitars play twin parts. One guitar plays the low parts while the other plays the same riff at a higher octave. The bass guitar follows the distortion guitars and plays the notes from the same riffs but ending earlier than the guitars. This song has a romantic theme. This song can be played in a superhero movie.", "data_idx": 5460, "number": 3, "label": "metal"} +{"file_name": "train_09786.png", "caption": "The low quality recording features a dubstep song that contains low flat male vocal, arpeggiated synth melody, repetitive arpeggiated synth lead and build up snare roll in the first half, after which comes the drop that consists aggressive and manic wobble bass, punchy kick and snare hits, tinny hi hats and repetitive arpeggiated synth lead melody. Overall it sounds manic, energetic and aggressive.", "data_idx": 5463, "number": 0, "label": "hiphop"} +{"file_name": "train_09787.png", "caption": "The low quality recording features a dubstep song that contains low flat male vocal, arpeggiated synth melody, repetitive arpeggiated synth lead and build up snare roll in the first half, after which comes the drop that consists aggressive and manic wobble bass, punchy kick and snare hits, tinny hi hats and repetitive arpeggiated synth lead melody. Overall it sounds manic, energetic and aggressive.", "data_idx": 5463, "number": 1, "label": "hiphop"} +{"file_name": "train_09788.png", "caption": "The low quality recording features a dubstep song that contains low flat male vocal, arpeggiated synth melody, repetitive arpeggiated synth lead and build up snare roll in the first half, after which comes the drop that consists aggressive and manic wobble bass, punchy kick and snare hits, tinny hi hats and repetitive arpeggiated synth lead melody. Overall it sounds manic, energetic and aggressive.", "data_idx": 5463, "number": 2, "label": "hiphop"} +{"file_name": "train_09789.png", "caption": "The low quality recording features a dubstep song that contains low flat male vocal, arpeggiated synth melody, repetitive arpeggiated synth lead and build up snare roll in the first half, after which comes the drop that consists aggressive and manic wobble bass, punchy kick and snare hits, tinny hi hats and repetitive arpeggiated synth lead melody. Overall it sounds manic, energetic and aggressive.", "data_idx": 5463, "number": 3, "label": "hiphop"} +{"file_name": "train_09790.png", "caption": "The low quality recording features a pop song that consists passionate female vocal, alongside wide harmonizing female vocals, singing over hypnotic synth lead melody, mellow piano chords, punchy snare, bouncy syncopated snare hits, punchy kick hits, groovy bass, staccato violin melody, wide toms roll and shimmering hi hats. It sounds happy, fun and uplifting - like something you would hear on a radio.", "data_idx": 5464, "number": 0, "label": "pop"} +{"file_name": "train_09791.png", "caption": "The low quality recording features a pop song that consists passionate female vocal, alongside wide harmonizing female vocals, singing over hypnotic synth lead melody, mellow piano chords, punchy snare, bouncy syncopated snare hits, punchy kick hits, groovy bass, staccato violin melody, wide toms roll and shimmering hi hats. It sounds happy, fun and uplifting - like something you would hear on a radio.", "data_idx": 5464, "number": 1, "label": "pop"} +{"file_name": "train_09792.png", "caption": "The low quality recording features a pop song that consists passionate female vocal, alongside wide harmonizing female vocals, singing over hypnotic synth lead melody, mellow piano chords, punchy snare, bouncy syncopated snare hits, punchy kick hits, groovy bass, staccato violin melody, wide toms roll and shimmering hi hats. It sounds happy, fun and uplifting - like something you would hear on a radio.", "data_idx": 5464, "number": 2, "label": "pop"} +{"file_name": "train_09793.png", "caption": "The low quality recording features a pop song that consists passionate female vocal, alongside wide harmonizing female vocals, singing over hypnotic synth lead melody, mellow piano chords, punchy snare, bouncy syncopated snare hits, punchy kick hits, groovy bass, staccato violin melody, wide toms roll and shimmering hi hats. It sounds happy, fun and uplifting - like something you would hear on a radio.", "data_idx": 5464, "number": 3, "label": "pop"} +{"file_name": "train_09794.png", "caption": "The low quality recording features a mantra song that consists of soft female vocal singing over wide, mellow synth pad chords. It sounds passionate, calming and relaxing - like something you would play while doing yoga.", "data_idx": 5465, "number": 0, "label": "country"} +{"file_name": "train_09795.png", "caption": "The low quality recording features a mantra song that consists of soft female vocal singing over wide, mellow synth pad chords. It sounds passionate, calming and relaxing - like something you would play while doing yoga.", "data_idx": 5465, "number": 1, "label": "country"} +{"file_name": "train_09796.png", "caption": "The low quality recording features a mantra song that consists of soft female vocal singing over wide, mellow synth pad chords. It sounds passionate, calming and relaxing - like something you would play while doing yoga.", "data_idx": 5465, "number": 2, "label": "country"} +{"file_name": "train_09797.png", "caption": "The low quality recording features a mantra song that consists of soft female vocal singing over wide, mellow synth pad chords. It sounds passionate, calming and relaxing - like something you would play while doing yoga.", "data_idx": 5465, "number": 3, "label": "country"} +{"file_name": "train_09798.png", "caption": "A male Latin singer sings this energetic vocal with male backup singers in vocal harmony. The song is fast tempo with quick Latin percussions, groovy bass line, keyboard accompaniment and trumpets blaring. The song is energetic and passionate. The song has poor audio quality.", "data_idx": 5467, "number": 0, "label": "blues"} +{"file_name": "train_09799.png", "caption": "A male Latin singer sings this energetic vocal with male backup singers in vocal harmony. The song is fast tempo with quick Latin percussions, groovy bass line, keyboard accompaniment and trumpets blaring. The song is energetic and passionate. The song has poor audio quality.", "data_idx": 5467, "number": 1, "label": "blues"} +{"file_name": "train_09800.png", "caption": "A male Latin singer sings this energetic vocal with male backup singers in vocal harmony. The song is fast tempo with quick Latin percussions, groovy bass line, keyboard accompaniment and trumpets blaring. The song is energetic and passionate. The song has poor audio quality.", "data_idx": 5467, "number": 2, "label": "blues"} +{"file_name": "train_09801.png", "caption": "A male Latin singer sings this energetic vocal with male backup singers in vocal harmony. The song is fast tempo with quick Latin percussions, groovy bass line, keyboard accompaniment and trumpets blaring. The song is energetic and passionate. The song has poor audio quality.", "data_idx": 5467, "number": 3, "label": "blues"} +{"file_name": "train_09802.png", "caption": "This music is a lively xylophone instrumental. The tempo is medium with minimal instrumentation of a xylophone and piano harmony. The music is pleasant, melodic, quirky,a little peculiar and unusual like music in a circus for a clown act. There is also a sound of blowing or shushing in the background.", "data_idx": 5468, "number": 0, "label": "blues"} +{"file_name": "train_09803.png", "caption": "This music is a lively xylophone instrumental. The tempo is medium with minimal instrumentation of a xylophone and piano harmony. The music is pleasant, melodic, quirky,a little peculiar and unusual like music in a circus for a clown act. There is also a sound of blowing or shushing in the background.", "data_idx": 5468, "number": 1, "label": "blues"} +{"file_name": "train_09804.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop instrumental that consists of punchy kick and snare hits and sustained filter modulated bass. The recording is muffled, noisy, mono and muddy, as it was probably recorded with a phone.", "data_idx": 5469, "number": 0, "label": "blues"} +{"file_name": "train_09805.png", "caption": "The low quality recording features a DJ scratching the vinyl of a hip hop instrumental that consists of punchy kick and snare hits and sustained filter modulated bass. The recording is muffled, noisy, mono and muddy, as it was probably recorded with a phone.", "data_idx": 5469, "number": 1, "label": "blues"} +{"file_name": "train_09806.png", "caption": "The drums are playing a funky groove together with the e-bass. An almost clean e-guitar is playing an additional melody in the background. A male and female voice are singing together accompanied by a string section in the background while a brass section is giving short and strong responses as a buildup and breakingpoint. This song may be playing at a veny-shop.", "data_idx": 5470, "number": 0, "label": "blues"} +{"file_name": "train_09807.png", "caption": "The drums are playing a funky groove together with the e-bass. An almost clean e-guitar is playing an additional melody in the background. A male and female voice are singing together accompanied by a string section in the background while a brass section is giving short and strong responses as a buildup and breakingpoint. This song may be playing at a veny-shop.", "data_idx": 5470, "number": 1, "label": "blues"} +{"file_name": "train_09808.png", "caption": "The drums are playing a funky groove together with the e-bass. An almost clean e-guitar is playing an additional melody in the background. A male and female voice are singing together accompanied by a string section in the background while a brass section is giving short and strong responses as a buildup and breakingpoint. This song may be playing at a veny-shop.", "data_idx": 5470, "number": 2, "label": "blues"} +{"file_name": "train_09809.png", "caption": "The drums are playing a funky groove together with the e-bass. An almost clean e-guitar is playing an additional melody in the background. A male and female voice are singing together accompanied by a string section in the background while a brass section is giving short and strong responses as a buildup and breakingpoint. This song may be playing at a veny-shop.", "data_idx": 5470, "number": 3, "label": "blues"} +{"file_name": "train_09810.png", "caption": "This instrumental song features a deep bass sound that is playing continuously in the background. A piano sequence is played which gives this song an eerie and suspenseful feel. A layer of synth swells are played when the piano sequence is played. At the end, high pitch sounds are played in the background at a low volume as if the sound source is far away from the mic. The mood of this song is suspenseful as if there is impending danger. This song can be played in the lounge of a video game.", "data_idx": 5471, "number": 0, "label": "classical"} +{"file_name": "train_09811.png", "caption": "This instrumental song features a deep bass sound that is playing continuously in the background. A piano sequence is played which gives this song an eerie and suspenseful feel. A layer of synth swells are played when the piano sequence is played. At the end, high pitch sounds are played in the background at a low volume as if the sound source is far away from the mic. The mood of this song is suspenseful as if there is impending danger. This song can be played in the lounge of a video game.", "data_idx": 5471, "number": 1, "label": "classical"} +{"file_name": "train_09812.png", "caption": "This instrumental song features a deep bass sound that is playing continuously in the background. A piano sequence is played which gives this song an eerie and suspenseful feel. A layer of synth swells are played when the piano sequence is played. At the end, high pitch sounds are played in the background at a low volume as if the sound source is far away from the mic. The mood of this song is suspenseful as if there is impending danger. This song can be played in the lounge of a video game.", "data_idx": 5471, "number": 2, "label": "classical"} +{"file_name": "train_09813.png", "caption": "This instrumental song features a deep bass sound that is playing continuously in the background. A piano sequence is played which gives this song an eerie and suspenseful feel. A layer of synth swells are played when the piano sequence is played. At the end, high pitch sounds are played in the background at a low volume as if the sound source is far away from the mic. The mood of this song is suspenseful as if there is impending danger. This song can be played in the lounge of a video game.", "data_idx": 5471, "number": 3, "label": "classical"} +{"file_name": "train_09814.png", "caption": "A high pitched long note is playing along with other synthesizer pad sounds to create a bizarre and mildly creepy atmosphere. A synthesizer lead is playing a disharmonious melody. The sounds are full of reverb and delay. This song may be playing in an alien arrival movie scene.", "data_idx": 5472, "number": 0, "label": "hiphop"} +{"file_name": "train_09815.png", "caption": "A high pitched long note is playing along with other synthesizer pad sounds to create a bizarre and mildly creepy atmosphere. A synthesizer lead is playing a disharmonious melody. The sounds are full of reverb and delay. This song may be playing in an alien arrival movie scene.", "data_idx": 5472, "number": 1, "label": "hiphop"} +{"file_name": "train_09816.png", "caption": "A high pitched long note is playing along with other synthesizer pad sounds to create a bizarre and mildly creepy atmosphere. A synthesizer lead is playing a disharmonious melody. The sounds are full of reverb and delay. This song may be playing in an alien arrival movie scene.", "data_idx": 5472, "number": 2, "label": "hiphop"} +{"file_name": "train_09817.png", "caption": "A high pitched long note is playing along with other synthesizer pad sounds to create a bizarre and mildly creepy atmosphere. A synthesizer lead is playing a disharmonious melody. The sounds are full of reverb and delay. This song may be playing in an alien arrival movie scene.", "data_idx": 5472, "number": 3, "label": "hiphop"} +{"file_name": "train_09818.png", "caption": "The music excerpt sounds as if it was recorded with a low-quality phone and so the quality of the audio is also low. A repeating melody is being played by horns from an orchestra ensemble. Strings can be heard providing harmonic context. Wind sounds as well as electronic and video game sounds can be heard in the background. It sounds as if the atmosphere is tense and a fight is going on.", "data_idx": 5473, "number": 0, "label": "classical"} +{"file_name": "train_09819.png", "caption": "The music excerpt sounds as if it was recorded with a low-quality phone and so the quality of the audio is also low. A repeating melody is being played by horns from an orchestra ensemble. Strings can be heard providing harmonic context. Wind sounds as well as electronic and video game sounds can be heard in the background. It sounds as if the atmosphere is tense and a fight is going on.", "data_idx": 5473, "number": 1, "label": "classical"} +{"file_name": "train_09820.png", "caption": "This is a gear showcase jam. The only instrument being played is an electric guitar being strummed lightly. There is a chorus ensemble effect on the guitar making it sound like multiple guitars are being played at the same time. There is a dreamy atmosphere in this recording. Chorus guitar samples could be picked up from this recording. Some parts of it could also be mixed into advertisement jingles.", "data_idx": 5474, "number": 0, "label": "classical"} +{"file_name": "train_09821.png", "caption": "This is a gear showcase jam. The only instrument being played is an electric guitar being strummed lightly. There is a chorus ensemble effect on the guitar making it sound like multiple guitars are being played at the same time. There is a dreamy atmosphere in this recording. Chorus guitar samples could be picked up from this recording. Some parts of it could also be mixed into advertisement jingles.", "data_idx": 5474, "number": 1, "label": "classical"} +{"file_name": "train_09822.png", "caption": "This is a gear showcase jam. The only instrument being played is an electric guitar being strummed lightly. There is a chorus ensemble effect on the guitar making it sound like multiple guitars are being played at the same time. There is a dreamy atmosphere in this recording. Chorus guitar samples could be picked up from this recording. Some parts of it could also be mixed into advertisement jingles.", "data_idx": 5474, "number": 2, "label": "classical"} +{"file_name": "train_09823.png", "caption": "This is a gear showcase jam. The only instrument being played is an electric guitar being strummed lightly. There is a chorus ensemble effect on the guitar making it sound like multiple guitars are being played at the same time. There is a dreamy atmosphere in this recording. Chorus guitar samples could be picked up from this recording. Some parts of it could also be mixed into advertisement jingles.", "data_idx": 5474, "number": 3, "label": "classical"} +{"file_name": "train_09824.png", "caption": "This gospel song features a female voice singing the main melody. There are other female voices singing in harmony with the main voice. This is accompanied by simple percussion playing a minimalist beat. The bass plays the root notes of the chords with no flourishes. There are strings playing fills in the background. A piano plays arpeggiated notes in between lines. The song is sung with a passionate voice. This song can be played in a movie with a Christian theme.", "data_idx": 5475, "number": 0, "label": "blues"} +{"file_name": "train_09825.png", "caption": "This gospel song features a female voice singing the main melody. There are other female voices singing in harmony with the main voice. This is accompanied by simple percussion playing a minimalist beat. The bass plays the root notes of the chords with no flourishes. There are strings playing fills in the background. A piano plays arpeggiated notes in between lines. The song is sung with a passionate voice. This song can be played in a movie with a Christian theme.", "data_idx": 5475, "number": 1, "label": "blues"} +{"file_name": "train_09826.png", "caption": "This gospel song features a female voice singing the main melody. There are other female voices singing in harmony with the main voice. This is accompanied by simple percussion playing a minimalist beat. The bass plays the root notes of the chords with no flourishes. There are strings playing fills in the background. A piano plays arpeggiated notes in between lines. The song is sung with a passionate voice. This song can be played in a movie with a Christian theme.", "data_idx": 5475, "number": 2, "label": "blues"} +{"file_name": "train_09827.png", "caption": "This gospel song features a female voice singing the main melody. There are other female voices singing in harmony with the main voice. This is accompanied by simple percussion playing a minimalist beat. The bass plays the root notes of the chords with no flourishes. There are strings playing fills in the background. A piano plays arpeggiated notes in between lines. The song is sung with a passionate voice. This song can be played in a movie with a Christian theme.", "data_idx": 5475, "number": 3, "label": "blues"} +{"file_name": "train_09828.png", "caption": "A male choir is at the end of a phrase before a single male voice takes over singing with a mid ranged opera voice along to a piano and an accordion. In the background the crowd is cheering,laughing and clapping. This song may be playing in a theater.", "data_idx": 5476, "number": 0, "label": "jazz"} +{"file_name": "train_09829.png", "caption": "A male choir is at the end of a phrase before a single male voice takes over singing with a mid ranged opera voice along to a piano and an accordion. In the background the crowd is cheering,laughing and clapping. This song may be playing in a theater.", "data_idx": 5476, "number": 1, "label": "jazz"} +{"file_name": "train_09830.png", "caption": "A male choir is at the end of a phrase before a single male voice takes over singing with a mid ranged opera voice along to a piano and an accordion. In the background the crowd is cheering,laughing and clapping. This song may be playing in a theater.", "data_idx": 5476, "number": 2, "label": "jazz"} +{"file_name": "train_09831.png", "caption": "A male choir is at the end of a phrase before a single male voice takes over singing with a mid ranged opera voice along to a piano and an accordion. In the background the crowd is cheering,laughing and clapping. This song may be playing in a theater.", "data_idx": 5476, "number": 3, "label": "jazz"} +{"file_name": "train_09832.png", "caption": "The low quality recording features opera live performance that consists of passionate female vocal singing over groovy piano melody. The recording is very noisy, in mono and very reverberant as it was probably recorded in a medium size hall, with a poor quality microphone.", "data_idx": 5481, "number": 0, "label": "classical"} +{"file_name": "train_09833.png", "caption": "The low quality recording features opera live performance that consists of passionate female vocal singing over groovy piano melody. The recording is very noisy, in mono and very reverberant as it was probably recorded in a medium size hall, with a poor quality microphone.", "data_idx": 5481, "number": 1, "label": "classical"} +{"file_name": "train_09834.png", "caption": "someone is playing a digital piano composition while a male voice is singing loudly a melody with long notes. In the background birds chirping and other noises can be heard. This is an amateur recording. This song may be playing in a live performance.", "data_idx": 5482, "number": 0, "label": "country"} +{"file_name": "train_09835.png", "caption": "someone is playing a digital piano composition while a male voice is singing loudly a melody with long notes. In the background birds chirping and other noises can be heard. This is an amateur recording. This song may be playing in a live performance.", "data_idx": 5482, "number": 1, "label": "country"} +{"file_name": "train_09836.png", "caption": "The low quality recording features a live performance of a rock song and it features passionate male vocals, alongside harmonizing male vocals, singing over arpeggiated electric guitar melody, boomy bass guitar, punchy kick and snare hits and shimmering open hats. It sounds noisy and messy, as the frequencies are clashing with each other, but it is still groovy and emotional regardless.", "data_idx": 5485, "number": 0, "label": "rock"} +{"file_name": "train_09837.png", "caption": "The low quality recording features a live performance of a rock song and it features passionate male vocals, alongside harmonizing male vocals, singing over arpeggiated electric guitar melody, boomy bass guitar, punchy kick and snare hits and shimmering open hats. It sounds noisy and messy, as the frequencies are clashing with each other, but it is still groovy and emotional regardless.", "data_idx": 5485, "number": 1, "label": "rock"} +{"file_name": "train_09838.png", "caption": "The low quality recording features a live performance of a rock song and it features passionate male vocals, alongside harmonizing male vocals, singing over arpeggiated electric guitar melody, boomy bass guitar, punchy kick and snare hits and shimmering open hats. It sounds noisy and messy, as the frequencies are clashing with each other, but it is still groovy and emotional regardless.", "data_idx": 5485, "number": 2, "label": "rock"} +{"file_name": "train_09839.png", "caption": "The low quality recording features a live performance of a rock song and it features passionate male vocals, alongside harmonizing male vocals, singing over arpeggiated electric guitar melody, boomy bass guitar, punchy kick and snare hits and shimmering open hats. It sounds noisy and messy, as the frequencies are clashing with each other, but it is still groovy and emotional regardless.", "data_idx": 5485, "number": 3, "label": "rock"} +{"file_name": "train_09840.png", "caption": "The low quality recording features a live performance of a reggae song and it consists of a fruity male vocal preparing to sing over shimmering hi hats, snappy rimshots, funky electric guitar chords and groovy bass. As it is a live performance, there are some crowd whistling and cheering noises in the background. It sounds easygoing and exciting.", "data_idx": 5486, "number": 0, "label": "rock"} +{"file_name": "train_09841.png", "caption": "The low quality recording features a live performance of a reggae song and it consists of a fruity male vocal preparing to sing over shimmering hi hats, snappy rimshots, funky electric guitar chords and groovy bass. As it is a live performance, there are some crowd whistling and cheering noises in the background. It sounds easygoing and exciting.", "data_idx": 5486, "number": 1, "label": "rock"} +{"file_name": "train_09842.png", "caption": "The low quality recording features a live performance of a reggae song and it consists of a fruity male vocal preparing to sing over shimmering hi hats, snappy rimshots, funky electric guitar chords and groovy bass. As it is a live performance, there are some crowd whistling and cheering noises in the background. It sounds easygoing and exciting.", "data_idx": 5486, "number": 2, "label": "rock"} +{"file_name": "train_09843.png", "caption": "The low quality recording features a live performance of a reggae song and it consists of a fruity male vocal preparing to sing over shimmering hi hats, snappy rimshots, funky electric guitar chords and groovy bass. As it is a live performance, there are some crowd whistling and cheering noises in the background. It sounds easygoing and exciting.", "data_idx": 5486, "number": 3, "label": "rock"} +{"file_name": "train_09844.png", "caption": "The music is a soft rock ballad with Hawaiian sounds. The melody is driven by a gliding steel pedal guitar. In the background a synth string section can be heard sustaining chords creating a relaxed ambience. The atmosphere of the song is easy going and relaxed. This is a song you would hear at a hotel lobby in Hawaii.", "data_idx": 5487, "number": 0, "label": "blues"} +{"file_name": "train_09845.png", "caption": "The music is a soft rock ballad with Hawaiian sounds. The melody is driven by a gliding steel pedal guitar. In the background a synth string section can be heard sustaining chords creating a relaxed ambience. The atmosphere of the song is easy going and relaxed. This is a song you would hear at a hotel lobby in Hawaii.", "data_idx": 5487, "number": 1, "label": "blues"} +{"file_name": "train_09846.png", "caption": "The music is a soft rock ballad with Hawaiian sounds. The melody is driven by a gliding steel pedal guitar. In the background a synth string section can be heard sustaining chords creating a relaxed ambience. The atmosphere of the song is easy going and relaxed. This is a song you would hear at a hotel lobby in Hawaii.", "data_idx": 5487, "number": 2, "label": "blues"} +{"file_name": "train_09847.png", "caption": "The music is a soft rock ballad with Hawaiian sounds. The melody is driven by a gliding steel pedal guitar. In the background a synth string section can be heard sustaining chords creating a relaxed ambience. The atmosphere of the song is easy going and relaxed. This is a song you would hear at a hotel lobby in Hawaii.", "data_idx": 5487, "number": 3, "label": "blues"} +{"file_name": "train_09848.png", "caption": "The Latin Jazz song features an exotic, jazzy piano melody, plucked double bass, subtle hi hats and percussive wooden elements playing as the passionate female vocalist is singing. It sounds like it was recorded with stereo room microphones, since the vocal sounds a bit \"roomy\".", "data_idx": 5489, "number": 0, "label": "reggae"} +{"file_name": "train_09849.png", "caption": "The Latin Jazz song features an exotic, jazzy piano melody, plucked double bass, subtle hi hats and percussive wooden elements playing as the passionate female vocalist is singing. It sounds like it was recorded with stereo room microphones, since the vocal sounds a bit \"roomy\".", "data_idx": 5489, "number": 1, "label": "reggae"} +{"file_name": "train_09850.png", "caption": "The Latin Jazz song features an exotic, jazzy piano melody, plucked double bass, subtle hi hats and percussive wooden elements playing as the passionate female vocalist is singing. It sounds like it was recorded with stereo room microphones, since the vocal sounds a bit \"roomy\".", "data_idx": 5489, "number": 2, "label": "reggae"} +{"file_name": "train_09851.png", "caption": "The Latin Jazz song features an exotic, jazzy piano melody, plucked double bass, subtle hi hats and percussive wooden elements playing as the passionate female vocalist is singing. It sounds like it was recorded with stereo room microphones, since the vocal sounds a bit \"roomy\".", "data_idx": 5489, "number": 3, "label": "reggae"} +{"file_name": "train_09852.png", "caption": "A flute is playing a loud melody in the higher register while someone is playing a rhythm on a tabla. Percussive tambourinelike instruments serve as percussive addition along with some single bell or chime hits. This is an amateur recording and it sounds like it was recorded in a big room due to a lot of reverb. This song may be played at a live concert with people sitting in chairs being comfortable.", "data_idx": 5492, "number": 0, "label": "classical"} +{"file_name": "train_09853.png", "caption": "A flute is playing a loud melody in the higher register while someone is playing a rhythm on a tabla. Percussive tambourinelike instruments serve as percussive addition along with some single bell or chime hits. This is an amateur recording and it sounds like it was recorded in a big room due to a lot of reverb. This song may be played at a live concert with people sitting in chairs being comfortable.", "data_idx": 5492, "number": 1, "label": "classical"} +{"file_name": "train_09854.png", "caption": "Different melodies are being played by bell sounds; e-piano; e-bass and in the background you can hear drone sounds and soft pads. A digital drum is playing a laid back groove. A sound-effect is coming in. The whole song sounds relaxing. This song may be playing for an advertisement.", "data_idx": 5494, "number": 0, "label": "disco"} +{"file_name": "train_09855.png", "caption": "Different melodies are being played by bell sounds; e-piano; e-bass and in the background you can hear drone sounds and soft pads. A digital drum is playing a laid back groove. A sound-effect is coming in. The whole song sounds relaxing. This song may be playing for an advertisement.", "data_idx": 5494, "number": 1, "label": "disco"} +{"file_name": "train_09856.png", "caption": "Different melodies are being played by bell sounds; e-piano; e-bass and in the background you can hear drone sounds and soft pads. A digital drum is playing a laid back groove. A sound-effect is coming in. The whole song sounds relaxing. This song may be playing for an advertisement.", "data_idx": 5494, "number": 2, "label": "disco"} +{"file_name": "train_09857.png", "caption": "Different melodies are being played by bell sounds; e-piano; e-bass and in the background you can hear drone sounds and soft pads. A digital drum is playing a laid back groove. A sound-effect is coming in. The whole song sounds relaxing. This song may be playing for an advertisement.", "data_idx": 5494, "number": 3, "label": "disco"} +{"file_name": "train_09858.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with intense drumming, loud harmonic electric guitar feedback, bass guitar , emphatic vocals and keyboard accompaniment. The song is a loud, progressive, powerful youthful and emphatic Hard Rock song.", "data_idx": 5495, "number": 0, "label": "metal"} +{"file_name": "train_09859.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with intense drumming, loud harmonic electric guitar feedback, bass guitar , emphatic vocals and keyboard accompaniment. The song is a loud, progressive, powerful youthful and emphatic Hard Rock song.", "data_idx": 5495, "number": 1, "label": "metal"} +{"file_name": "train_09860.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with intense drumming, loud harmonic electric guitar feedback, bass guitar , emphatic vocals and keyboard accompaniment. The song is a loud, progressive, powerful youthful and emphatic Hard Rock song.", "data_idx": 5495, "number": 2, "label": "metal"} +{"file_name": "train_09861.png", "caption": "A male vocalist sings this spirited song. The tempo is fast with intense drumming, loud harmonic electric guitar feedback, bass guitar , emphatic vocals and keyboard accompaniment. The song is a loud, progressive, powerful youthful and emphatic Hard Rock song.", "data_idx": 5495, "number": 3, "label": "metal"} +{"file_name": "train_09862.png", "caption": "A male voice is singing loudly with an opera technique while an acoustic drum is playing along with a e-bassline. Underlined by strings playing a melody. This song may be playing at a wedding.", "data_idx": 5499, "number": 0, "label": "rock"} +{"file_name": "train_09863.png", "caption": "A male voice is singing loudly with an opera technique while an acoustic drum is playing along with a e-bassline. Underlined by strings playing a melody. This song may be playing at a wedding.", "data_idx": 5499, "number": 1, "label": "rock"} +{"file_name": "train_09864.png", "caption": "A male voice is singing loudly with an opera technique while an acoustic drum is playing along with a e-bassline. Underlined by strings playing a melody. This song may be playing at a wedding.", "data_idx": 5499, "number": 2, "label": "rock"} +{"file_name": "train_09865.png", "caption": "A male voice is singing loudly with an opera technique while an acoustic drum is playing along with a e-bassline. Underlined by strings playing a melody. This song may be playing at a wedding.", "data_idx": 5499, "number": 3, "label": "rock"} +{"file_name": "train_09866.png", "caption": "This is a dancehall music piece. There is a male vocalist singing at a medium-to-high pitch with a Jamaican accent. In the background, there is a keyboard playing the main melody. The atmosphere of the piece is vibrant. This piece could be used at beach parties and summer/vacation themed movies or TV shows.", "data_idx": 5501, "number": 0, "label": "blues"} +{"file_name": "train_09867.png", "caption": "This is a dancehall music piece. There is a male vocalist singing at a medium-to-high pitch with a Jamaican accent. In the background, there is a keyboard playing the main melody. The atmosphere of the piece is vibrant. This piece could be used at beach parties and summer/vacation themed movies or TV shows.", "data_idx": 5501, "number": 1, "label": "blues"} +{"file_name": "train_09868.png", "caption": "This is a dancehall music piece. There is a male vocalist singing at a medium-to-high pitch with a Jamaican accent. In the background, there is a keyboard playing the main melody. The atmosphere of the piece is vibrant. This piece could be used at beach parties and summer/vacation themed movies or TV shows.", "data_idx": 5501, "number": 2, "label": "blues"} +{"file_name": "train_09869.png", "caption": "This is a dancehall music piece. There is a male vocalist singing at a medium-to-high pitch with a Jamaican accent. In the background, there is a keyboard playing the main melody. The atmosphere of the piece is vibrant. This piece could be used at beach parties and summer/vacation themed movies or TV shows.", "data_idx": 5501, "number": 3, "label": "blues"} +{"file_name": "train_09870.png", "caption": "The low quality recording features a haunting female vocal singing over mellow rhythm guitar chord progression. The recording is extremely noisy, as it was probably recorded with an old phone.", "data_idx": 5502, "number": 0, "label": "classical"} +{"file_name": "train_09871.png", "caption": "The low quality recording features a haunting female vocal singing over mellow rhythm guitar chord progression. The recording is extremely noisy, as it was probably recorded with an old phone.", "data_idx": 5502, "number": 1, "label": "classical"} +{"file_name": "train_09872.png", "caption": "The low quality recording features a haunting female vocal singing over mellow rhythm guitar chord progression. The recording is extremely noisy, as it was probably recorded with an old phone.", "data_idx": 5502, "number": 2, "label": "classical"} +{"file_name": "train_09873.png", "caption": "The low quality recording features a haunting female vocal singing over mellow rhythm guitar chord progression. The recording is extremely noisy, as it was probably recorded with an old phone.", "data_idx": 5502, "number": 3, "label": "classical"} +{"file_name": "train_09874.png", "caption": "This is the live recording of a heavy metal music piece. The male vocalist in the lead has a powerful wide-ranged vocal. There is an overdriven electric guitar that is playing a repeated riff with a bass guitar supporting it in the background. The rhythm is provided by a loud, fast-paced metal beat on the acoustic drums. The atmosphere is hard-hitting and energetic. The piece could be playing in the background of a rock/metal bar.", "data_idx": 5504, "number": 0, "label": "metal"} +{"file_name": "train_09875.png", "caption": "This is the live recording of a heavy metal music piece. The male vocalist in the lead has a powerful wide-ranged vocal. There is an overdriven electric guitar that is playing a repeated riff with a bass guitar supporting it in the background. The rhythm is provided by a loud, fast-paced metal beat on the acoustic drums. The atmosphere is hard-hitting and energetic. The piece could be playing in the background of a rock/metal bar.", "data_idx": 5504, "number": 1, "label": "metal"} +{"file_name": "train_09876.png", "caption": "This is the live recording of a heavy metal music piece. The male vocalist in the lead has a powerful wide-ranged vocal. There is an overdriven electric guitar that is playing a repeated riff with a bass guitar supporting it in the background. The rhythm is provided by a loud, fast-paced metal beat on the acoustic drums. The atmosphere is hard-hitting and energetic. The piece could be playing in the background of a rock/metal bar.", "data_idx": 5504, "number": 2, "label": "metal"} +{"file_name": "train_09877.png", "caption": "This is the live recording of a heavy metal music piece. The male vocalist in the lead has a powerful wide-ranged vocal. There is an overdriven electric guitar that is playing a repeated riff with a bass guitar supporting it in the background. The rhythm is provided by a loud, fast-paced metal beat on the acoustic drums. The atmosphere is hard-hitting and energetic. The piece could be playing in the background of a rock/metal bar.", "data_idx": 5504, "number": 3, "label": "metal"} +{"file_name": "train_09878.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with enthusiastic drumming , rhythmic electric and keyboard harmony. The song is muffled because of poor audio quality and several sounds that are superimposed on it. There are sounds of water, static, bubbles, scuffling and a female voice speaking. The song is incoherent but from what can be heard it sounds like Pop Rock.", "data_idx": 5507, "number": 0, "label": "disco"} +{"file_name": "train_09879.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with enthusiastic drumming , rhythmic electric and keyboard harmony. The song is muffled because of poor audio quality and several sounds that are superimposed on it. There are sounds of water, static, bubbles, scuffling and a female voice speaking. The song is incoherent but from what can be heard it sounds like Pop Rock.", "data_idx": 5507, "number": 1, "label": "disco"} +{"file_name": "train_09880.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with enthusiastic drumming , rhythmic electric and keyboard harmony. The song is muffled because of poor audio quality and several sounds that are superimposed on it. There are sounds of water, static, bubbles, scuffling and a female voice speaking. The song is incoherent but from what can be heard it sounds like Pop Rock.", "data_idx": 5507, "number": 2, "label": "disco"} +{"file_name": "train_09881.png", "caption": "A male vocalist sings this energetic song. The tempo is fast with enthusiastic drumming , rhythmic electric and keyboard harmony. The song is muffled because of poor audio quality and several sounds that are superimposed on it. There are sounds of water, static, bubbles, scuffling and a female voice speaking. The song is incoherent but from what can be heard it sounds like Pop Rock.", "data_idx": 5507, "number": 3, "label": "disco"} +{"file_name": "train_09882.png", "caption": "This file contains an orchestral composition rising up while a lot of digital clicking sounds are in the foreground. This is an amateur recording. And the sounds seem to come from a different source. This song may be playing in an adventure videogame.", "data_idx": 5510, "number": 0, "label": "hiphop"} +{"file_name": "train_09883.png", "caption": "This file contains an orchestral composition rising up while a lot of digital clicking sounds are in the foreground. This is an amateur recording. And the sounds seem to come from a different source. This song may be playing in an adventure videogame.", "data_idx": 5510, "number": 1, "label": "hiphop"} +{"file_name": "train_09884.png", "caption": "This file contains an orchestral composition rising up while a lot of digital clicking sounds are in the foreground. This is an amateur recording. And the sounds seem to come from a different source. This song may be playing in an adventure videogame.", "data_idx": 5510, "number": 2, "label": "hiphop"} +{"file_name": "train_09885.png", "caption": "This file contains an orchestral composition rising up while a lot of digital clicking sounds are in the foreground. This is an amateur recording. And the sounds seem to come from a different source. This song may be playing in an adventure videogame.", "data_idx": 5510, "number": 3, "label": "hiphop"} +{"file_name": "train_09886.png", "caption": "This song features the main melody played on a steel pan. This is accompanied by programmed percussion with the hi-hat being played on the 'and' count of every bar. A bass plays the root notes of the chords in the background. Another percussion instrument plays a beat that sounds like a trotting horse. This song has a happy mood. This song can be played in a movie where a family is going on a holiday at a Caribbean island.", "data_idx": 5513, "number": 0, "label": "reggae"} +{"file_name": "train_09887.png", "caption": "This song features the main melody played on a steel pan. This is accompanied by programmed percussion with the hi-hat being played on the 'and' count of every bar. A bass plays the root notes of the chords in the background. Another percussion instrument plays a beat that sounds like a trotting horse. This song has a happy mood. This song can be played in a movie where a family is going on a holiday at a Caribbean island.", "data_idx": 5513, "number": 1, "label": "reggae"} +{"file_name": "train_09888.png", "caption": "This song features the main melody played on a steel pan. This is accompanied by programmed percussion with the hi-hat being played on the 'and' count of every bar. A bass plays the root notes of the chords in the background. Another percussion instrument plays a beat that sounds like a trotting horse. This song has a happy mood. This song can be played in a movie where a family is going on a holiday at a Caribbean island.", "data_idx": 5513, "number": 2, "label": "reggae"} +{"file_name": "train_09889.png", "caption": "This song features the main melody played on a steel pan. This is accompanied by programmed percussion with the hi-hat being played on the 'and' count of every bar. A bass plays the root notes of the chords in the background. Another percussion instrument plays a beat that sounds like a trotting horse. This song has a happy mood. This song can be played in a movie where a family is going on a holiday at a Caribbean island.", "data_idx": 5513, "number": 3, "label": "reggae"} +{"file_name": "train_09890.png", "caption": "A quirky drum machine and warm synth bass provide the accompaniment for a female singer with noticeable reverb. A wild theremin with delay and wide aggressive vibrato enters to give the music a wild sci-fi feel.", "data_idx": 5514, "number": 0, "label": "reggae"} +{"file_name": "train_09891.png", "caption": "A quirky drum machine and warm synth bass provide the accompaniment for a female singer with noticeable reverb. A wild theremin with delay and wide aggressive vibrato enters to give the music a wild sci-fi feel.", "data_idx": 5514, "number": 1, "label": "reggae"} +{"file_name": "train_09892.png", "caption": "A quirky drum machine and warm synth bass provide the accompaniment for a female singer with noticeable reverb. A wild theremin with delay and wide aggressive vibrato enters to give the music a wild sci-fi feel.", "data_idx": 5514, "number": 2, "label": "reggae"} +{"file_name": "train_09893.png", "caption": "A quirky drum machine and warm synth bass provide the accompaniment for a female singer with noticeable reverb. A wild theremin with delay and wide aggressive vibrato enters to give the music a wild sci-fi feel.", "data_idx": 5514, "number": 3, "label": "reggae"} diff --git a/data/train/train_0004.zip b/data/train/train_0004.zip index 1d3b6ca9291c8916091620fbe5484bcdba6ad8cf..189702885a6a66c454c9bda9cbb61d516b497529 100644 --- a/data/train/train_0004.zip +++ b/data/train/train_0004.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b282cbaa9074862274cfbfffe32d853fa1b6808627c1fd8af808aa48503cb4ea -size 73136605 +oid sha256:1e073ada7e3b070bcb31e5a3c1e0267ee29fbf7c99ce87a2a79f6db8f7b045d2 +size 73019466 diff --git a/data/train/train_0005.zip b/data/train/train_0005.zip new file mode 100644 index 0000000000000000000000000000000000000000..18b4036b9fbfc04d4493bb1b4ab1474596828906 --- /dev/null +++ b/data/train/train_0005.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ad6bf0c41f1fa679432ec81b96b67f3cd150b2a3588f877920d0a9ebaf94dc +size 88702321 diff --git a/data/train/train_0006.zip b/data/train/train_0006.zip new file mode 100644 index 0000000000000000000000000000000000000000..8c1ca61e935335e9b3941ef3662d0711b3d45537 --- /dev/null +++ b/data/train/train_0006.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ae01058d4af99e79b533e7ca1fdd9e45618e664bbc7035f4c0896d2f61e19c +size 41285414 diff --git a/data/train/train_0007.zip b/data/train/train_0007.zip new file mode 100644 index 0000000000000000000000000000000000000000..46447c6e027b411ed5b0393aea2f8980aa3835ed --- /dev/null +++ b/data/train/train_0007.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4b3ea45c7beb2fe6ef6b53f991ad9fd85cdfe27158075a7ecd80e0f3d5a768 +size 48268997 diff --git a/data/train/train_0008.zip b/data/train/train_0008.zip new file mode 100644 index 0000000000000000000000000000000000000000..e9296e0453e2fbb62669964172f773ed3832e618 --- /dev/null +++ b/data/train/train_0008.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac49d462391d63489679d8a9c0e577b0dad281108fc36af048456d462813f1f +size 42741516 diff --git a/data/train/train_0009.zip b/data/train/train_0009.zip new file mode 100644 index 0000000000000000000000000000000000000000..f245959ca64c05f5cf9ca3302b3c2d4158f1b2fb --- /dev/null +++ b/data/train/train_0009.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390edb7fd588ad8cab02a07798c680318ded58981bf32918a8835faa4916bde4 +size 50292133 diff --git a/data/train/train_0010.zip b/data/train/train_0010.zip new file mode 100644 index 0000000000000000000000000000000000000000..8bd30df6c4486f8c1fc474a4b28347eff9f36014 --- /dev/null +++ b/data/train/train_0010.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de3996185bcb424f292e16a7794b910e64f15da6c5416fca5ae912b454e43f73 +size 42235556 diff --git a/data/train/train_0011.zip b/data/train/train_0011.zip new file mode 100644 index 0000000000000000000000000000000000000000..c1ef1e95dcd1bb4b31fc38f82ec2849346135ab7 --- /dev/null +++ b/data/train/train_0011.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0287cb0ddb1c4c61be7765447623aab665270b1b9932c8d72a364b19b55314 +size 36283340 diff --git a/data/train/train_0012.zip b/data/train/train_0012.zip new file mode 100644 index 0000000000000000000000000000000000000000..554f6c2050fd47b9b0b22b4f724e3c62dcbf5afc --- /dev/null +++ b/data/train/train_0012.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688fc6d2937bcdd3becdaf1fccea00177aa825fe3d534fd16cca9955d10cdd68 +size 43034433 diff --git a/data/train/train_0013.zip b/data/train/train_0013.zip new file mode 100644 index 0000000000000000000000000000000000000000..a870e3d8aeed4ae31a2c49471c1ff254573c5bf3 --- /dev/null +++ b/data/train/train_0013.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55991fc6bb06f836c1ba0dce203aa66c0f8155e28b5af885a7f82af956db3445 +size 49288380 diff --git a/data/train/train_0014.zip b/data/train/train_0014.zip new file mode 100644 index 0000000000000000000000000000000000000000..0a2199ffcdfabeb7002f8ef53fa8ad164b74cc1b --- /dev/null +++ b/data/train/train_0014.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc79f47bb69b43dccfc949d6ab000e1df066192ba1b19efca125c4c149876361 +size 46839624 diff --git a/data/train/train_0015.zip b/data/train/train_0015.zip new file mode 100644 index 0000000000000000000000000000000000000000..27080e2aa24a9df01b233e757b33045e0912eb85 --- /dev/null +++ b/data/train/train_0015.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93139f6549691ea92a1995a2b7d26c73e91d34e10a2f7a9a9ee71e34887925c8 +size 43883414 diff --git a/data/train/train_0016.zip b/data/train/train_0016.zip new file mode 100644 index 0000000000000000000000000000000000000000..b98f517d58069e79f9286b160417365033b5a082 --- /dev/null +++ b/data/train/train_0016.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e03672a438be837b83dce1820506de043d6a0b9399ca5f66536599052f8e0a +size 38435819 diff --git a/data/train/train_0017.zip b/data/train/train_0017.zip new file mode 100644 index 0000000000000000000000000000000000000000..1c7273dfe8e7b40cd752b83c33c61e2f5e55b2a8 --- /dev/null +++ b/data/train/train_0017.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c58d330c213792460b7e1bd950bde7d0d4ded890b371812f1e5a623557e2dc +size 36768052 diff --git a/data/train/train_0018.zip b/data/train/train_0018.zip new file mode 100644 index 0000000000000000000000000000000000000000..7d6145091832c22fd2bab175459ec5a265f10411 --- /dev/null +++ b/data/train/train_0018.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47e95e6b1cbae8f3f06e6faf36f27a67326f3897f8af16793534e82cb8445db +size 38137501 diff --git a/data/train/train_0019.zip b/data/train/train_0019.zip new file mode 100644 index 0000000000000000000000000000000000000000..5b17d1325ab26732e8195b3a628184a33a7a82ec --- /dev/null +++ b/data/train/train_0019.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3aca1f1205210b5d717dba64ab96e1bbdc643141715b9765e3cd87ffe9dc7e +size 44007229 diff --git a/data/train/train_0020.zip b/data/train/train_0020.zip new file mode 100644 index 0000000000000000000000000000000000000000..959db380855e83a9782970c0b048e4a7b1da6ea7 --- /dev/null +++ b/data/train/train_0020.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cede4652e12c90ea0322568480abbce4fb65491dc03ae9a11b66cda77b73be5d +size 36483291 diff --git a/data/train/train_0021.zip b/data/train/train_0021.zip new file mode 100644 index 0000000000000000000000000000000000000000..cb3c87d6125c999a2c6328a52c63394293224a5a --- /dev/null +++ b/data/train/train_0021.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7645d37049d8bb83cf0480642741ab1678761827a0b14d9e540fccabb5feed5b +size 66669425