Analizing Magnatagatune


In [2]:
import collections
import csv
import operator
import os

import matplotlib.pyplot as plt

%matplotlib inline
plt.rcParams['figure.figsize'] = (10.0, 8.0) # set default size of plots
plt.rcParams['image.interpolation'] = 'nearest'
plt.rcParams['image.cmap'] = 'gray'

# for auto-reloading external modules
# see http://stackoverflow.com/questions/1907993/autoreload-of-modules-in-ipython
%load_ext autoreload
%autoreload 2

In [21]:
PATH_DATASET = 'datasets/maganatagatune'
ANNOTATIONS_CSV = os.path.join(PATH_DATASET, 'annotations_final.csv')

genres = {}
with open(ANNOTATIONS_CSV, 'r') as tsvfile:
    reader = csv.DictReader(tsvfile, dialect='excel-tab')
    genres = {genre: 0 for genre in reader.fieldnames[1:-1]}  # 0:clip_id, -1:mp3_path
    for row in reader:
        for tag in genres:
            genres[tag] += int(row[tag])

In [25]:
def plot_genre_dict(genres, top=None):
    print(len(genres))
    if top == None:
        top = len(genres.items())
    sorted_genres = list(reversed(sorted(genres.items(), key=operator.itemgetter(1))))
    top_genres = sorted_genres[:top]
    #print([t[0] for t in top_genres])
    plt.bar(range(len(top_genres)), [d[1] for d in top_genres], align='center')
    plt.xticks(range(len(top_genres)), [d[0] for d in top_genres], rotation='vertical')
    plt.show()
    
plot_genre_dict(genres)


188

PROBLEM: not all tags are genres. Let's see them.


In [26]:
for tag in sorted(genres, key=operator.itemgetter(0))[:50]:
    print(tag)


ambient
airy
acoustic
acoustic guitar
arabic
bongos
beats
banjo
birds
bass
bells
blues
beat
baroque
clasical
chorus
clarinet
chimes
classical
classic
chanting
choral
classical guitar
country
chant
celtic
cello
calm
clapping
choir
duet
drum
drums
dark
drone
disco
deep
dance
different
eerie
electric
electronic
electric guitar
electro
electronica
echo
eastern
english
female singing
female opera

In [27]:
genre_tags = [
    'ambient',
    'arabic',
    'blues',
    'baroque',
    ('classical', 'clasical'),
    ('choir', 'choral'),
    'country',
    'celtic',
    'disco',
    'dance',
    ('funk', 'funky'),
    ('electronica', 'electro'),
    #('female voice', 'female vocal', 'female vocals', 'female singer', 'female singing', 'woman singing'),
    #('male voice', 'male vocal', 'male vocals', 'male singer', 'man singing'),
    'folk',
    'happy',
    'eastern',
    'middle eastern',
    'medieval',
    ('heavy metal', 'heavy', 'metal'),
    'hip hop',
    'industrial',
    ('indian', 'india'),
    'irish',
    ('jazz', 'jazzy'),
    'jungle',
    'new age',
    ('instrumental', 'no voice', 'no voices', 'no singing', 'no vocal', 'no vocals'),
    ('opera', 'male opera', 'female opera', 'operatic'),
    'oriental',
    'pop',
    'punk',
    'reggae',
    'rock',
    'hard rock',
    'soft rock',
    'rap',
    'trance',
    'techno',
    'world',
]

genre_dict = {}
accepted_genres = set()
for genre in genre_tags:
    if isinstance(genre, tuple):
        for genre_i in genre:
            genre_dict[genre_i] = genre[0]
        accepted_genres.add(genre[0])
    else:
        genre_dict[genre] = genre
        accepted_genres.add(genre)

print(len(accepted_genres))
assert len(accepted_genres) == len(genre_tags)


38

In [28]:
genres = {g: 0 for g in accepted_genres}
with open(ANNOTATIONS_CSV, 'r') as tsvfile:
    reader = csv.DictReader(tsvfile, dialect='excel-tab')
    for row in reader:
        for tag, accepted_genre in genre_dict.items():
            genres[accepted_genre] += int(row[tag])

In [29]:
plot_genre_dict(genres, top=30)


38

After grouping the ones I'm interested in, it turns out it's the same ones as before. The dataset is sadly not balanced, but we'll work with it since it seems to be quite a standard.


In [30]:
with open(ANNOTATIONS_CSV, 'r') as tsvfile:
    reader = csv.DictReader(tsvfile, dialect='excel-tab')
    genres = {genre: 0 for genre in reader.fieldnames[1:-1]}  # 0:clip_id, -1:mp3_path
    for row in reader:
        print([g for g in genres if row[g] == '1'])


['classical', 'strings', 'opera', 'violin']
['classical', 'violins', 'strings', 'classic', 'opera', 'violin', 'baroque']
['classical', 'classic', 'opera']
['quiet', 'opera']
['classical', 'violins', 'strings', 'classic', 'violin']
['techno']
[]
['electronic', 'fast', 'rock']
['fast']
[]
['classical', 'violin']
['guitar']
['harpsichord', 'classical', 'harpsicord', 'loud', 'fast']
[]
['foreign', 'female', 'voice', 'spanish', 'women']
['foreign', 'female', 'pop', 'spanish', 'female vocals']
['slow']
['opera', 'male']
['opera']
['vocals', 'female', 'opera', 'vocal', 'singing', 'choir']
['chorus', 'choral', 'choir']
['choir']
['duet', 'classical', 'quiet', 'female voice', 'voice', 'choral', 'opera', 'woman', 'singing', 'female vocals']
['classical', 'opera', 'vocal']
['classical', 'opera']
[]
[]
['chorus', 'choral', 'opera', 'choir']
[]
['classical', 'female', 'choral', 'opera', 'slow', 'male', 'choir']
['duet', 'female', 'quiet', 'opera', 'slow', 'woman']
['chorus', 'classical', 'female', 'female voice', 'choral', 'opera', 'female vocals', 'choir']
['opera', 'male opera', 'male']
['male voice', 'opera', 'male opera', 'male']
['male vocal', 'voice', 'male voice', 'no guitar', 'opera', 'chant', 'slow', 'male', 'vocal', 'soft']
['opera']
['quiet', 'slow']
['opera', 'male vocals', 'male']
['chorus', 'classic', 'opera', 'male', 'choir']
['chorus', 'classical', 'choral', 'male', 'choir']
['duet', 'chorus', 'female', 'opera', 'vocal', 'choir']
['voice', 'choral', 'opera', 'vocal', 'choir']
['choral', 'opera', 'male opera']
['classical', 'solo', 'strings', 'classic', 'string', 'fast', 'violin', 'viola', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'strings', 'classic', 'slow', 'cello']
['no voice', 'classical', 'strings', 'violin', 'cello', 'soft']
['classical', 'orchestra']
['classical', 'strings', 'classic', 'fast', 'violin', 'orchestra']
['classical', 'modern', 'orchestra']
['rock']
['guitar', 'fast', 'electric guitar', 'rock']
['flute']
['flute']
['flute']
['woodwind', 'new age', 'no vocal', 'slow', 'flute']
['no piano', 'slow', 'flute']
['flute']
['ambient', 'synth', 'flute']
['flute']
[]
[]
[]
['flute']
[]
['new age']
['ambient', 'synth', 'loud', 'drums', 'electronic', 'weird', 'slow', 'indian', 'techno']
['electric']
['classical', 'violin', 'cello']
[]
['classical', 'strings']
['classical', 'strings', 'violin']
['classical', 'strings', 'violin']
['classical', 'strings', 'violin', 'slow']
['guitar']
['silence', 'classical', 'violin', 'cello']
['classical', 'violins', 'strings', 'classic', 'violin', 'sad', 'slow', 'cello']
['classical', 'violins', 'strings', 'string', 'violin', 'slow']
['classical', 'strings', 'violin']
['classical', 'strings', 'violin']
['classical', 'strings', 'classic', 'string', 'violin', 'no flute']
[]
['duet', 'vocals', 'slow', 'vocal', 'singing']
['modern', 'vocal']
[]
['duet']
['guitar', 'piano', 'slow', 'no drums', 'soft']
[]
['ambient', 'synth', 'drums', 'electronic', 'no vocal', 'electro', 'slow', 'techno', 'beat']
['no voice', 'loud', 'drums']
['loud', 'no vocal', 'no vocals']
[]
['synth', 'drums', 'electronic', 'weird']
['beats', 'jazz', 'guitar', 'drum', 'bass', 'male voice', 'drums', 'fast', 'electric guitar', 'reggae', 'modern', 'slow', 'blues', 'rock', 'dance', 'jazzy', 'beat', 'upbeat']
['synth', 'reggae', 'techno']
['funk', 'weird', 'reggae', 'no vocals', 'techno']
['heavy', 'loud', 'rock', 'metal']
['hard rock', 'male voice', 'rock', 'metal']
['rock', 'metal']
['heavy', 'guitar', 'loud', 'heavy metal', 'man', 'rock', 'metal']
['guitar', 'drums', 'pop', 'rock', 'beat']
[]
['rock']
['vocal', 'rock']
['male vocal', 'vocals', 'guitar', 'male', 'vocal']
['male vocal', 'guitar', 'electric guitar', 'violin', 'male', 'rock']
['guitar', 'rock']
['spacey', 'synth', 'electronic', 'organ', 'weird', 'techno']
[]
['funky', 'electronic', 'organ']
[]
['chimes']
[]
['organ']
['guitar', 'strings']
['guitar', 'loud', 'drums', 'electric guitar', 'hard', 'rock']
['noise']
['foreign']
['drums', 'indian', 'techno', 'beat']
['guitar', 'synth', 'fast', 'rock', 'guitars', 'techno']
[]
['rock']
['rock']
['rock']
['quiet']
['classical', 'quiet', 'strings', 'classic', 'violin', 'slow']
['quiet', 'strings', 'slow']
['rock']
['male vocal', 'punk', 'rock', 'metal']
[]
['no beat', 'violins', 'strings', 'violin', 'irish', 'viola', 'different']
['male vocal', 'folk', 'male voice', 'violin', 'irish', 'celtic', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['male voice', 'man singing', 'man']
['male vocal', 'opera']
['violins', 'voice', 'male voice', 'opera', 'male', 'vocal']
[]
[]
['beats', 'drums', 'techno', 'beat']
['no voice', 'no vocals', 'techno', 'beat']
['electronic', 'dance', 'techno']
[]
[]
['drums', 'no guitar', 'fast', 'techno', 'beat']
['dance', 'techno', 'house', 'beat']
['drums', 'fast', 'techno', 'beat']
['synth', 'electronic', 'no vocal', 'fast', 'trance', 'fast beat', 'techno', 'beat']
['spacey', 'ambient', 'new age', 'synth', 'space', 'electronic', 'trance']
['fast', 'techno']
['electronic', 'fast', 'no vocals', 'techno']
['fast', 'techno']
['electronic', 'fast', 'dance', 'techno']
['ambient', 'electronic', 'electro', 'slow']
['ambient', 'slow']
[]
['guitar']
[]
['guitar', 'harp', 'slow', 'soft']
['classical', 'ambient', 'new age', 'airy', 'slow']
[]
['slow']
['guitar', 'strings', 'harp']
['male vocal', 'jazz', 'ambient', 'synth', 'male voice', 'electronic', 'male singer', 'slow', 'techno', 'hip hop']
['techno']
['male vocal', 'vocals', 'funky', 'new age', 'trance', 'pop', 'slow', 'techno', 'soft']
['drums', 'no vocals', 'piano', 'beat']
['strings', 'harp', 'slow']
['harp']
[]
['guitar']
['classical', 'guitar', 'no vocal', 'piano', 'slow']
['guitar', 'solo', 'strings', 'no vocals']
['guitar', 'strings', 'piano']
['classical', 'ambient', 'strings', 'piano']
[]
['harpsichord']
['harpsichord']
['harpsichord', 'classical', 'harpsicord']
['ambient', 'new age', 'strings', 'loud', 'violin', 'bells', 'no drums', 'soft']
['new age', 'instrumental', 'slow', 'oriental']
['guitar']
['guitar', 'indian']
['sitar', 'guitar']
['guitar']
['sitar', 'guitar', 'banjo', 'acoustic', 'classical guitar', 'spanish']
['sitar', 'foreign', 'guitar', 'solo', 'strings', 'arabic', 'indian', 'oriental']
['guitar']
['guitar']
['ambient', 'synth', 'choral', 'choir']
['ambient', 'low', 'chant']
['spacey', 'birds', 'electronic', 'no vocals']
[]
['synth', 'birds']
['electro', 'techno', 'beat']
['ambient', 'synth', 'electronic', 'no guitar', 'techno']
['ambient', 'new age', 'synth', 'electronic', 'weird', 'electro', 'slow', 'techno']
['techno']
['ambient', 'new age', 'synth', 'birds', 'electronic', 'techno']
['electronica']
['spacey', 'ambient', 'synth', 'space', 'electronic', 'trance', 'techno']
['ambient', 'new age', 'synth', 'electronic', 'no vocal', 'voices', 'techno', 'choir']
['ambient', 'new age', 'synth', 'birds', 'space', 'electronic', 'weird', 'electro', 'techno']
['space', 'techno']
['spacey', 'ambient', 'new age', 'synth', 'electronic', 'weird', 'electro', 'trance', 'strange', 'techno']
['ambient', 'electronic', 'trance']
['ambient', 'techno']
['synth']
['ambient', 'new age', 'electronic', 'techno']
['ambient', 'synth', 'no guitar']
['ambient', 'new age']
['synth']
['beats', 'no strings', 'ambient', 'new age', 'drums', 'electronic', 'fast', 'electro', 'instrumental', 'trance', 'techno', 'beat']
[]
['synth', 'birds', 'electronic', 'weird', 'techno']
['techno']
['beats', 'ambient']
['birds']
['ambient', 'synth', 'electronic']
[]
['ambient', 'weird']
['ambient', 'birds']
['ambient']
['ambient']
[]
['ambient']
['spacey', 'ambient', 'birds']
[]
['ambient', 'trance', 'slow']
['ambient', 'new age', 'synth', 'no vocals', 'slow']
['spacey', 'ambient', 'birds', 'slow', 'water']
['ambient', 'noise', 'water']
[]
[]
[]
['world', 'middle eastern', 'drums', 'no vocal', 'fast', 'violin', 'eastern', 'indian', 'oriental']
['new age', 'synth', 'repetitive', 'drums', 'fast', 'instrumental', 'eastern', 'indian']
['drums', 'fast', 'violin', 'indian']
['strings', 'fast', 'violin', 'instrumental', 'indian']
['guitar', 'drums', 'organ', 'rock']
['funky', 'funk', 'male voice', 'male singer', 'man singing', 'man', 'pop', 'male', 'vocal', 'rock', 'singing']
['guitar', 'male singer', 'country', 'pop', 'vocal', 'rock']
['singer', 'funky', 'funk', 'drums', 'male']
['dance', 'techno']
['dance', 'techno']
['electronic', 'fast', 'electro', 'fast beat', 'dance', 'techno', 'beat']
['female', 'country', 'pop', 'female vocal']
[]
['female', 'pop', 'vocal', 'woman']
['electronic']
['synth', 'electronic', 'techno']
['no voice', 'synth', 'electronic', 'electro', 'techno']
['electronic', 'techno']
['electronic', 'techno', 'rap']
['vocals', 'rap']
['rap']
['vocals', 'loud', 'fast', 'man', 'vocal', 'rock', 'rap']
['classical', 'quiet', 'orchestra']
['classical', 'synth', 'no drums']
['talking', 'male']
['voice', 'talking']
['voice', 'male voice', 'man', 'vocal']
['synth', 'organ', 'soft']
['classical', 'synth', 'organ']
['strings']
['drums', 'beat']
['female', 'female vocal']
['female', 'female voice', 'voice', 'drums', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'beat']
['female', 'female voice', 'vocal']
['female', 'techno', 'clapping', 'beat', 'hip hop']
['no flute', 'beat']
['harpsichord', 'sitar', 'new age', 'strings', 'harpsicord', 'harp', 'eastern', 'slow', 'indian']
['sitar', 'middle eastern', 'strings', 'eastern', 'slow', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['indian']
[]
['sitar', 'indian']
['sitar', 'guitar', 'no vocal', 'no vocals', 'indian', 'oriental']
['sitar', 'eastern', 'slow', 'indian', 'oriental']
['sitar']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'strings', 'indian']
[]
['sitar', 'string', 'eastern', 'indian']
['sitar', 'indian', 'oriental']
['sitar', 'indian']
['plucking', 'sitar', 'guitar', 'strings']
[]
['sitar']
[]
['sitar', 'indian']
['indian']
['sitar', 'indian', 'india']
['sitar', 'indian']
['sitar', 'eastern', 'slow', 'indian']
['sitar', 'banjo', 'slow', 'indian']
['sitar', 'strings', 'string', 'drums', 'slow', 'indian', 'no drums']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'no singing', 'middle eastern', 'arabic', 'eastern', 'indian']
['sitar', 'eastern', 'indian', 'india']
['sitar']
['sitar', 'indian']
['sitar', 'drums', 'arabic', 'eastern', 'slow', 'indian']
['sitar', 'indian', 'india', 'oriental']
['sitar', 'guitar', 'eastern', 'indian']
['sitar', 'string', 'indian', 'india', 'oriental']
['sitar', 'indian', 'oriental']
['violin']
[]
['classical', 'violin']
['classical', 'violin']
['violin']
['no singing', 'fast', 'violin']
['classical', 'solo', 'violins', 'strings', 'violin', 'slow']
['classical', 'violin']
['classical', 'strings', 'classic', 'no vocal', 'violin']
['harpsichord', 'classical', 'violins', 'fast', 'violin']
['ambient', 'synth', 'birds', 'space', 'electronic', 'no drums']
['percussion']
['synth', 'electronic', 'electro', 'techno']
['synth', 'drums', 'electronic', 'fast', 'techno']
['no voice', 'synth', 'electronic', 'fast', 'electronica', 'fast beat', 'techno']
['synth', 'electronic', 'fast', 'different', 'techno']
['electric', 'electronic', 'fast']
['ambient', 'synth', 'keyboard', 'electronic', 'techno']
['chant', 'man', 'male']
['no piano', 'choral', 'choir']
['chorus', 'choral', 'chant', 'male', 'singing', 'choir']
[]
['choral', 'choir']
['chorus', 'choral', 'opera', 'male vocals', 'male', 'vocal', 'voices', 'choir']
['choral', 'choir']
['choral', 'male', 'vocal', 'choir']
['chorus', 'choral', 'male', 'choir']
['beats', 'horns', 'guitar', 'trumpet', 'loud', 'drums', 'electronic', 'horn', 'fast beat', 'rock', 'techno', 'beat']
['beats', 'horns', 'synth', 'trumpet', 'drum', 'loud', 'drums', 'no guitar', 'fast', 'techno', 'beat']
['synth', 'bass', 'drums', 'electronic', 'fast', 'electro', 'fast beat', 'rock', 'techno', 'beat']
['trumpet', 'loud', 'drums', 'electronic', 'fast', 'electro', 'rock', 'techno', 'beat']
['trumpet', 'drums', 'fast', 'techno']
['trumpet']
['drums', 'jazzy', 'beat']
['synth', 'drum', 'loud', 'drums', 'electronic', 'fast', 'slow', 'rock', 'techno']
['funky', 'synth', 'techno']
['electronic', 'no vocals', 'electronica', 'techno']
['ambient', 'electronic', 'electro', 'techno']
['electric', 'electronic', 'fast', 'different', 'techno', 'beat']
[]
[]
['electronic', 'fast', 'dance', 'techno', 'house', 'beat']
[]
['beats', 'electronic', 'no vocal', 'fast', 'techno', 'beat']
[]
['ambient']
['quiet', 'ambient', 'low', 'harp', 'slow', 'calm', 'flute']
['quiet', 'slow']
['sitar', 'classical', 'quiet', 'strings', 'violin', 'harp', 'slow', 'flute', 'soft']
['woodwind', 'flute']
['quiet', 'ambient', 'no guitar', 'slow', 'cello', 'flute']
['ambient', 'no vocals', 'slow']
['woodwind', 'ambient', 'new age', 'strings', 'low', 'slow', 'calm', 'flute']
['silence', 'quiet', 'no flute', 'oboe', 'slow', 'flute']
['slow']
['female', 'female voice', 'pop', 'slow', 'vocal', 'female singer']
['female']
['beats', 'ambient', 'synth', 'girl', 'drums', 'instrumental', 'female vocal', 'mellow', 'piano', 'slow', 'jazzy', 'beat']
['slow']
['ambient', 'electronic', 'female vocal', 'slow', 'woman singing', 'techno']
['female']
[]
['female', 'woman']
['female', 'vocal', 'woman']
['female', 'vocal']
['male', 'rock', 'techno', 'beat']
['repetitive', 'pop', 'vocal', 'rock', 'techno']
['electronic', 'fast', 'techno']
['electronic', 'fast', 'dance', 'techno', 'beat']
['rock', 'metal']
['metal']
[]
['rock', 'metal']
['quiet', 'no singing', 'piano']
[]
['woodwind', 'quiet', 'ambient', 'synth', 'piano', 'slow', 'calm', 'flute']
['guitar', 'quiet', 'piano', 'slow', 'flute', 'soft']
['wind', 'slow', 'flute', 'soft']
[]
['female', 'electronic', 'talking', 'woman', 'techno']
['ambient', 'synth', 'electronic', 'no vocal', 'no vocals', 'slow', 'techno']
['no voice', 'no vocal', 'no vocals', 'rock', 'techno']
['drums', 'electronic', 'techno']
['quiet', 'electro']
['synth', 'electronic', 'weird', 'techno']
['drums', 'pop', 'piano', 'rock']
['voice', 'male voice', 'drums', 'rock']
['female vocal', 'rock', 'singing']
['guitar', 'strings', 'slow', 'cello']
['no voice', 'guitar', 'ambient', 'dark', 'no vocals', 'deep', 'slow']
['female', 'slow']
['pop', 'female vocal', 'woman', 'english']
['beats', 'loud', 'electronic', 'fast', 'disco', 'fast beat', 'pop', 'dance', 'techno']
['guitar']
['classical', 'medieval', 'flute']
['harpsichord', 'clasical', 'flutes', 'flute', 'baroque']
[]
['classical', 'violins', 'new age', 'strings', 'loud', 'violin', 'instrumental', 'slow']
['quiet', 'ambient', 'new age', 'synth', 'airy', 'strings', 'loud', 'string', 'weird', 'violin', 'no vocals', 'strange', 'slow', 'soft', 'noise']
['strings', 'violin']
['violins', 'ambient', 'synth', 'strings', 'violin', 'light', 'slow', 'calm']
[]
['clarinet', 'classical', 'piano', 'piano solo']
['clarinet', 'classical', 'piano']
[]
['classical']
['classical', 'piano', 'slow']
['classical', 'solo', 'light', 'piano', 'slow', 'flute']
['ambient', 'synth', 'drums', 'electronic', 'bells', 'no drums', 'techno']
[]
['female', 'female voice', 'voice', 'female vocal', 'vocal', 'woman', 'jazzy', 'english']
['female', 'female voice', 'female vocal', 'dance', 'women']
['vocals', 'beats', 'female', 'female voice', 'synth', 'drums', 'fast', 'female vocal', 'woman', 'techno', 'beat', 'female singer']
['female singing', 'female', 'female voice', 'voice', 'girl', 'female vocal', 'vocal', 'woman singing']
[]
['hard rock', 'loud', 'heavy metal', 'hard', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'electric guitar', 'heavy metal', 'rock', 'metal']
['hard rock', 'loud', 'hard', 'rock', 'metal']
['hard rock', 'heavy', 'heavy metal', 'rock', 'metal']
['electronic']
['electronic']
['sitar', 'electronic', 'techno', 'beat']
['synth']
['vocals', 'guitar', 'voice', 'strings', 'harp', 'singing']
['male vocal', 'medieval', 'male voice', 'opera', 'male vocals', 'vocal']
['vocals', 'opera', 'man']
['male vocal', 'classical', 'guitar', 'male singer', 'man singing', 'man', 'male', 'vocal', 'singing']
['harpsichord']
['fast']
['no voice', 'harpsichord', 'classical', 'no vocal', 'instrumental', 'orchestra']
['harpsichord', 'classical']
[]
['classical', 'strings', 'classic', 'flute', 'baroque']
['classical', 'violin', 'flutes']
['clarinet', 'classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'orchestral', 'flute', 'baroque']
['classical']
['female', 'female voice', 'classic', 'organ', 'opera', 'woman', 'singing']
['classical', 'female', 'female voice', 'strings', 'opera', 'violin', 'woman singing', 'singing']
['female singing', 'female opera', 'female', 'strings', 'opera', 'soprano', 'violin', 'female vocal', 'vocal']
['soprano']
['female opera', 'female', 'classic', 'opera', 'violin', 'woman', 'singing']
['guitar', 'strings', 'slow']
['female', 'drum', 'drums', 'modern', 'rock', 'beat']
[]
['female', 'fast', 'spanish', 'woman', 'techno']
['female voice', 'chant', 'pop', 'vocal', 'indian']
['indian']
[]
['classical', 'strings', 'choral', 'opera', 'choir']
['guitar', 'rock']
['heavy', 'heavy metal', 'hard', 'rock', 'metal']
['hard rock', 'guitar', 'bass', 'loud', 'fast', 'electric guitar', 'no vocals', 'heavy metal', 'hard', 'rock', 'metal']
['guitar', 'loud', 'rock']
[]
['techno']
['synth', 'electronic', 'synthesizer', 'disco', 'dance', 'techno']
['synth', 'loud', 'electronic', 'fast', 'trance', 'rock', 'techno']
['ambient', 'slow']
['ambient', 'electronic', 'no vocal', 'fast', 'no vocals', 'techno']
['synth', 'electronic']
['synth', 'loud', 'electronic', 'fast', 'modern', 'techno']
[]
[]
['no voice', 'new age', 'electronic', 'no vocal', 'no vocals', 'techno']
['techno', 'beat']
['plucking', 'sitar', 'classical', 'guitar', 'not rock', 'harp', 'slow', 'different']
['guitar', 'string', 'slow']
['harp', 'slow']
['harp']
['classical', 'harp', 'slow', 'soft']
['quiet', 'slow']
['harp', 'slow']
['guitar']
['guitar', 'quiet', 'no vocal', 'harp', 'piano', 'slow']
['classical', 'guitar', 'solo', 'strings', 'no vocals', 'harp', 'piano']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'string', 'no vocal', 'no vocals', 'harp', 'slow', 'oriental', 'soft']
[]
['classical', 'guitar', 'strings', 'harp', 'spanish']
['harp', 'piano', 'slow']
['plucking', 'sitar', 'guitar', 'solo', 'strings', 'harp', 'piano', 'eastern', 'slow', 'oriental', 'soft']
['no voice', 'piano', 'slow']
['classical', 'guitar', 'solo', 'strings', 'string', 'harp', 'piano', 'slow', 'oriental']
['sitar', 'ambient', 'strings', 'no vocals', 'harp', 'piano', 'slow', 'indian', 'soft']
[]
['foreign', 'voice', 'weird', 'male', 'vocal', 'indian', 'voices']
[]
['guitar', 'male voice', 'electronic', 'fast', 'strange', 'modern', 'rock']
['beat']
['vocals', 'loud', 'drums', 'rock']
['birds', 'water']
['ambient', 'new age', 'birds', 'flute']
[]
['quiet', 'slow']
['ambient', 'slow']
['drone', 'slow']
['electronic', 'beat']
[]
['electronic', 'instrumental']
['synth', 'no vocal', 'no vocals', 'instrumental', 'techno', 'beat']
[]
[]
['female', 'pop', 'female vocal', 'woman', 'techno']
['vocals']
['new age', 'synth', 'electronic', 'electro', 'techno', 'beat']
['synth', 'electronic']
['ambient', 'synth', 'electronic', 'electronica', 'synthesizer', 'techno']
['electric', 'electronic', 'techno']
['piano', 'slow']
['drums', 'piano']
['ambient', 'new age', 'synth', 'synthesizer', 'piano', 'techno']
['new age', 'no guitar', 'piano']
['classical', 'ambient', 'piano']
['eerie', 'quiet', 'wind', 'ambient', 'slow']
['quiet', 'ambient', 'electronic', 'slow']
['female vocal', 'slow']
['singer', 'woman']
['female', 'female voice', 'synth', 'slow', 'vocal', 'woman', 'singing']
['female', 'female voice', 'ambient', 'new age', 'slow', 'woman', 'beat']
['no piano', 'female', 'jazz', 'female voice', 'drums', 'electronic', 'woman', 'singing', 'beat']
['female singing', 'female', 'female voice', 'voice', 'drums', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'techno', 'female singer']
[]
['dance']
['techno', 'house', 'beat']
['fast', 'fast beat', 'dance', 'techno', 'beat']
[]
['singer', 'female', 'jazz', 'female voice', 'country', 'female vocal', 'woman']
['vocals', 'female', 'jazz', 'female vocal', 'blues', 'vocal', 'woman', 'singing']
['talking', 'drone']
['no piano', 'drums', 'electronic', 'techno', 'beat']
['beats', 'ambient', 'synth', 'no vocals', 'piano', 'beat']
['beats', 'drums', 'piano', 'beat']
['drums', 'piano']
['voice', 'electronic', 'weird', 'pop', 'male', 'singing', 'techno', 'not opera', 'beat']
['drums', 'instrumental', 'piano', 'slow']
[]
[]
['beats', 'no flute', 'techno', 'beat']
['synth', 'drums', 'piano', 'slow', 'beat']
['drums', 'slow']
[]
[]
['beat']
['chimes']
['drone']
['eerie', 'ambient', 'organ', 'dark', 'piano']
['no voice', 'ambient', 'drum', 'drums']
['synth', 'drum', 'drums', 'weird']
['drums', 'different']
['plucking', 'guitar', 'ambient']
['guitar', 'strings', 'violin', 'slow', 'soft']
[]
['guitar', 'strings', 'not rock', 'violin', 'instrumental']
['drums']
[]
['classical', 'strings', 'piano', 'cello']
['strings', 'fast', 'piano', 'cello']
['classical', 'fast', 'piano']
['piano']
['middle eastern', 'electronic', 'fast', 'eastern', 'indian', 'oriental']
['no voice', 'electronic', 'fast', 'no vocals', 'beat']
['electronic', 'fast', 'dance', 'techno']
['fast', 'indian']
['world', 'synth', 'middle eastern', 'loud', 'drums', 'electronic', 'fast', 'electro', 'modern', 'eastern', 'indian', 'rock', 'dance', 'beat']
['fast', 'techno']
[]
['no voice', 'beats', 'electro', 'fast beat', 'techno', 'house', 'beat']
['techno']
['beats', 'synth', 'drums', 'electronic', 'fast', 'electro', 'fast beat', 'techno', 'beat']
['beats', 'synth', 'electronic', 'fast', 'techno', 'beat']
['beats', 'new age', 'synth', 'drums', 'electronic', 'techno', 'beat']
[]
['drums', 'electronic', 'not rock', 'electro', 'techno', 'beat']
[]
['percussion', 'techno', 'beat', 'upbeat']
['electronic', 'techno', 'beat']
[]
['female', 'guitar', 'loud', 'vocal', 'woman', 'singing']
['rock']
['harpsichord', 'classical', 'classic', 'string', 'violin', 'slow', 'cello']
['harpsichord', 'classical', 'strings', 'violin']
['harpsichord', 'classical', 'strings', 'violin']
[]
['harpsichord', 'classical', 'strings', 'violin']
[]
['harpsichord', 'classical', 'strings', 'classic', 'string', 'violin', 'cello']
['harpsichord', 'classical', 'strings', 'string', 'violin', 'cello']
['classical', 'strings', 'no vocal', 'violin', 'cello']
['harpsichord']
['harpsichord', 'classical', 'strings', 'violin', 'cello', 'baroque']
['harpsichord', 'classical', 'strings', 'classic', 'violin']
['classical', 'strings', 'piano', 'cello']
['harpsichord', 'no vocal', 'cello']
['harpsichord', 'classical', 'strings', 'medieval', 'classic', 'violin', 'no vocals', 'old', 'slow', 'cello', 'baroque']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['male vocal']
['chorus', 'male vocal', 'chanting', 'opera', 'chant', 'man', 'male vocals', 'male', 'monks']
['male voice', 'chant', 'man', 'slow', 'monks', 'choir']
['no beat', 'opera', 'male opera']
['synth', 'electronic', 'fast', 'electro', 'techno']
['synth', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'electronica', 'techno']
['electric', 'synth', 'drums', 'electronic', 'modern', 'techno', 'beat']
[]
['classical', 'violin', 'orchestral', 'orchestra']
['classical', 'violins', 'strings', 'string', 'violin', 'orchestra', 'slow']
['clarinet', 'classical', 'strings', 'violin', 'orchestral', 'orchestra', 'flute']
['classical', 'quiet', 'violins', 'happy', 'strings', 'no vocal', 'violin', 'slow', 'flute']
['classical', 'strings', 'classic', 'fast', 'violin', 'orchestra']
['classical', 'strings', 'classic', 'orchestra', 'slow', 'soft']
['classical', 'strings', 'classic', 'violin']
[]
['classical', 'no guitar', 'violin']
['classical']
[]
['clasical', 'classical', 'strings', 'classic', 'orchestral', 'orchestra', 'cello']
['classical']
['orchestra']
['classical', 'strings', 'orchestra']
['classical', 'strings', 'violin', 'no vocals', 'orchestra']
['classical', 'violins', 'strings', 'orchestra', 'slow']
['silence', 'classical', 'quiet', 'violins', 'orchestra']
['classical', 'violins', 'strings', 'violin', 'orchestra', 'flute']
['classical', 'classic']
['classical', 'strings', 'classic', 'fast', 'orchestra']
['orchestra']
[]
['classical', 'strings', 'orchestra']
['classical', 'orchestral', 'orchestra']
['male singer', 'country', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'male voice', 'male singer', 'country', 'male vocals', 'vocal']
[]
['guitar', 'strings', 'bass', 'violin', 'no vocals', 'instrumental', 'slow', 'cello']
['vocals', 'piano', 'vocal']
['foreign', 'female', 'piano', 'vocal']
['male vocal', 'classical', 'male voice', 'piano']
['synth', 'electronic', 'no violin', 'beat']
['drum', 'drums', 'beat']
['electronica', 'techno', 'beat']
['beats', 'synth', 'electronic', 'electro', 'no vocals', 'beat']
['synth', 'electronic', 'electronica']
['new age', 'drum', 'bass', 'drums', 'electronic', 'instrumental', 'techno', 'beat']
['jazz', 'drums', 'electronic', 'no guitar', 'no vocal', 'piano', 'guitars', 'jazzy', 'techno', 'upbeat']
['no piano', 'synth', 'drums', 'pop', 'beat']
[]
[]
['techno']
['guitar', 'male singer', 'country', 'male vocals', 'male', 'singing']
['male vocal']
[]
['slow']
['male vocal', 'man singing', 'pop', 'male', 'vocal', 'rock', 'singing']
[]
['classical', 'guitar', 'slow']
['classical', 'guitar', 'solo', 'no singing', 'strings', 'classic', 'no vocal', 'classical guitar', 'no vocals', 'instrumental', 'harp', 'lute', 'slow']
['guitar']
[]
['classical', 'guitar']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'quiet', 'strings', 'no vocals', 'slow']
[]
['classical', 'guitar', 'strings']
[]
[]
['ambient', 'loud', 'electronic', 'weird', 'dark', 'drone', 'industrial', 'dance', 'noise']
['slow']
['ambient']
['spacey']
[]
[]
['singer', 'male vocal', 'men', 'loud', 'pop', 'rock']
['electric guitar']
[]
['male', 'singing']
['vocals', 'male voice', 'drums', 'man', 'pop', 'piano', 'male vocals', 'slow', 'vocal', 'singing']
['guitar', 'vocal', 'rock']
['male vocal', 'rock']
['male vocal', 'loud', 'rock']
['rock']
['male vocals', 'rock']
[]
[]
[]
['guitar', 'loud', 'rock']
['female', 'female voice', 'woman']
['beats', 'female voice', 'drums', 'beat']
['female', 'female voice', 'fast', 'woman', 'singing']
[]
['female', 'female vocal', 'vocal', 'singing']
[]
['quiet', 'piano', 'soft']
['classical', 'quiet', 'solo', 'piano', 'slow', 'soft']
['classical', 'piano', 'slow']
['piano', 'slow', 'soft']
['classical', 'solo', 'piano', 'slow', 'soft']
['piano']
['classical', 'piano', 'slow']
['guitar', 'strings']
[]
[]
['vocals', 'foreign', 'chant', 'vocal', 'singing', 'voices', 'choir']
['foreign', 'voices']
['vocals', 'choral', 'opera', 'singing']
['vocals', 'foreign', 'techno']
['voice', 'fast', 'electronica', 'male', 'dance', 'techno', 'house', 'beat']
['electronic', 'fast', 'dance', 'techno']
['loud', 'electronic', 'electro', 'industrial', 'vocal', 'rock', 'techno', 'beat']
['beat']
[]
['guitar', 'repetitive', 'drums', 'slow', 'beat']
['vocals', 'female', 'female voice', 'voice', 'drums', 'pop', 'female vocal', 'woman', 'rock', 'female vocals', 'beat']
['no voice', 'beats', 'female', 'guitar', 'electric', 'voice', 'drums', 'electronic', 'pop', 'female vocal', 'slow', 'woman', 'rock', 'singing', 'beat']
['female', 'female vocal', 'rock', 'singing', 'techno']
['female', 'new age', 'drums', 'vocal', 'woman singing']
['drums']
['strings', 'drums', 'cello']
[]
['male vocal', 'male voice', 'man']
[]
[]
['ambient', 'no drums', 'techno']
['electric', 'ambient', 'synth', 'loud', 'electronic', 'trance', 'orchestra', 'techno']
[]
['ambient', 'synth']
[]
['spacey', 'ambient', 'new age', 'synth', 'electronic', 'weird', 'trance', 'mellow', 'slow']
[]
['guitar', 'drums', 'blues', 'rock']
['female', 'guitar', 'female voice', 'voice', 'girl', 'modern', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'female vocals']
['vocals', 'female', 'female voice', 'country', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'singing']
['vocals', 'female', 'guitar', 'blues', 'woman', 'woman singing', 'rock']
['no voice', 'ambient', 'electronic', 'no vocal', 'no vocals']
['ambient', 'new age', 'electronic', 'techno']
['ambient', 'synth', 'slow']
['ambient', 'synth', 'techno']
['silence', 'classical', 'quiet', 'flutes', 'flute']
['electric', 'electronic', 'mellow']
['electronic']
['no voice', 'ambient', 'synth', 'electronic', 'techno']
['new age', 'electronic']
[]
[]
['spacey', 'ambient', 'synth']
['ambient', 'synth', 'electronic']
['ambient']
['guitar', 'eastern']
['guitar', 'middle eastern', 'indian']
['guitar']
['world', 'sitar', 'guitar', 'middle eastern', 'drums', 'fast', 'arabic', 'eastern', 'spanish', 'indian', 'clapping', 'upbeat']
['guitar', 'no vocal', 'different']
['indian']
['fast']
['clapping']
['female voice']
['female voice', 'pop']
['female voice', 'pop', 'singing']
['female', 'female vocals']
['guitar']
['guitar', 'slow', 'male', 'vocal']
['male vocal', 'vocals', 'guitar', 'male voice', 'male singer', 'piano', 'male', 'vocal']
['soft rock', 'guitar', 'piano', 'slow', 'guitars']
['guitar', 'strings', 'arabic', 'eastern', 'slow', 'oriental']
['guitar', 'banjo', 'spanish']
['sitar', 'vocals', 'female', 'arabic', 'female vocal', 'eastern', 'vocal', 'singing', 'female vocals']
[]
['vocals', 'foreign', 'female', 'female voice', 'eastern', 'vocal', 'indian', 'not english']
['singer', 'female', 'female voice', 'drum', 'drums', 'arabic', 'indian', 'woman', 'singing']
[]
[]
['loud', 'rock']
['guitar', 'loud', 'fast', 'punk', 'rock', 'metal']
['hard rock', 'guitar', 'hard', 'rock']
['bells', 'soft']
['guitar', 'folk']
['guitar', 'vocal']
['duet', 'male vocal', 'guitar', 'country', 'male']
['guitar', 'electric guitar', 'country', 'rock']
['guitar', 'rock']
['drums', 'electric guitar', 'blues']
['guitar', 'country', 'man', 'male', 'blues', 'rock']
['male vocal', 'male singer', 'male', 'singing']
['jazz', 'male voice', 'male', 'blues', 'vocal', 'rock']
['beats', 'electronic', 'pop', 'techno']
['drums', 'electronic', 'no vocals', 'techno']
['ambient', 'new age', 'synth', 'electronic', 'slow', 'techno', 'beat']
['beats', 'synth', 'electronic', 'techno', 'beat']
[]
['ambient', 'synth', 'electronic', 'slow', 'techno', 'beat']
['bass', 'electronic', 'fast', 'techno']
[]
['ambient', 'new age', 'slow']
['ambient', 'slow']
['spacey', 'ambient', 'new age', 'violin', 'instrumental', 'slow', 'calm']
['ambient', 'synth', 'soft']
[]
[]
['quiet']
['no strings', 'quiet', 'ambient', 'electronic', 'not classical', 'no violin', 'slow', 'soft']
['no piano', 'quiet', 'ambient', 'synth', 'slow', 'soft']
['quiet', 'ambient', 'synth', 'electronic', 'organ', 'no vocals', 'slow']
['quiet']
['spacey', 'quiet', 'no beat', 'ambient', 'new age', 'synth', 'space', 'electronic', 'no vocal', 'slow', 'soft']
['no voice', 'ambient']
[]
['ambient', 'synth']
['chimes', 'ambient', 'new age', 'organ']
['chimes', 'ambient']
['ambient', 'new age', 'synth', 'electronic', 'organ', 'instrumental', 'harp', 'slow', 'techno']
['spacey', 'ambient', 'synth', 'loud', 'electronic', 'organ']
['ambient', 'loud', 'electronic', 'organ', 'slow', 'techno']
[]
[]
['ambient', 'electronica']
['spacey', 'ambient', 'synth', 'electronic', 'bells']
['organ', 'different']
['no voice', 'ambient', 'new age', 'synth', 'strings']
['classical', 'spacey', 'ambient', 'new age', 'synth', 'organ', 'bells']
['spacey', 'ambient', 'synth', 'no guitar', 'techno']
['chimes', 'ambient', 'new age', 'synth', 'airy', 'organ', 'bells', 'slow', 'soft']
['spacey', 'quiet', 'ambient', 'electronic', 'no vocal', 'bells', 'slow', 'soft']
['spacey', 'ambient', 'no vocals', 'slow', 'soft']
['drums']
[]
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'electric guitar', 'heavy metal', 'rock', 'metal']
['heavy', 'guitar', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'rock', 'metal']
['heavy', 'rock', 'metal']
['male vocal', 'rock']
['rock', 'metal']
['guitar', 'banjo', 'country', 'no vocals']
['guitar', 'country']
['guitar', 'electric guitar', 'rock']
['hard rock', 'guitar', 'electric', 'loud', 'rock', 'metal']
['rock', 'metal']
['rock']
['heavy', 'guitar', 'loud', 'fast', 'rock', 'metal']
['rock']
['heavy', 'guitar', 'loud', 'no vocal', 'rock']
['hard rock', 'guitar', 'loud', 'fast', 'electric guitar', 'rock', 'metal']
['guitar', 'loud', 'fast', 'no vocals', 'rock']
[]
[]
['vocals', 'ambient', 'soft']
['ambient', 'new age', 'chant', 'voices', 'choir']
['ambient']
['chanting', 'male']
[]
['opera', 'slow']
['female voice', 'ambient', 'new age', 'synth', 'electronic', 'lol']
['electric', 'ambient', 'new age', 'synth', 'birds', 'electronic', 'weird']
['ambient', 'new age']
['no voice', 'new age', 'no vocal']
['solo', 'piano', 'slow', 'soft']
['piano']
['classical', 'piano']
[]
['male vocal', 'rock']
['rock']
['guitar', 'fast', 'electric guitar', 'rock']
['rock']
['loud', 'fast', 'rock']
[]
['rock']
['guitar', 'quiet', 'synth', 'bass', 'slow']
[]
['no singer', 'flute']
['wind', 'flute']
['cello', 'flute']
[]
['slow', 'flute']
['guitar', 'quiet', 'no vocals', 'horn', 'slow']
[]
['quiet', 'ambient', 'strings', 'slow', 'flute', 'soft']
['flute']
['bongos', 'synth', 'drums', 'no vocals', 'low', 'deep', 'no singer', 'beat']
['drums']
['percussion', 'drums']
['beats', 'percussion', 'drums', 'weird', 'tribal', 'beat']
['drums', 'not rock', 'no guitar', 'weird', 'beat']
['beats', 'drum', 'drums', 'beat']
[]
[]
['guitar', 'voice', 'loud', 'vocal', 'rock', 'singing', 'beat']
['rock', 'metal']
['silence', 'quiet', 'wind']
[]
['female', 'female voice', 'modern', 'female vocal', 'woman']
['female']
['female', 'female voice', 'voice', 'pop', 'woman', 'dance']
[]
['guitar', 'drums', 'sax', 'jazzy']
['jazzy']
['jazz', 'ambient', 'electronic', 'violin', 'instrumental', 'sax', 'slow', 'jazzy']
['jazz', 'sax']
['jazz']
['no voice', 'jazz', 'fast', 'sax']
['jazz', 'fast', 'sax', 'jazzy']
['jazz', 'weird', 'fast', 'sax', 'jazzy', 'flute']
['male voice', 'loud', 'trance', 'man', 'rock', 'techno', 'beat']
['fast', 'dance']
['no strings', 'drums', 'electronica', 'dance', 'techno', 'beat']
['beats']
['rock', 'dance', 'techno']
['loud', 'electronic', 'fast', 'rock', 'techno']
['quiet', 'synth', 'electronic', 'different', 'techno']
['fast', 'dance']
['electro', 'techno']
['synth', 'no vocal', 'no vocals', 'dance', 'techno', 'beat']
['techno', 'beat']
[]
['beats', 'synth', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'trance', 'modern', 'pop', 'dance', 'techno', 'beat']
[]
['female singing', 'vocals', 'female', 'guitar', 'female voice', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals', 'soft']
['guitar', 'rock', 'metal']
['rock']
['heavy', 'guitar', 'electric', 'loud', 'drums', 'fast', 'rock', 'metal']
['guitar', 'rock']
['male vocal', 'man', 'punk', 'rock', 'singing', 'metal']
['solo', 'ambient', 'middle eastern', 'slow', 'indian', 'flute']
[]
['ambient', 'middle eastern', 'no vocal', 'eastern', 'slow', 'flute']
['new age', 'slow', 'indian']
['dance', 'beat']
['vocals', 'synth', 'vocal']
['male vocal', 'airy', 'fast', 'male', 'techno']
['techno']
['male vocal', 'man', 'pop', 'different']
['ambient']
['guitar', 'bass', 'drums', 'electric guitar', 'rock']
['hard rock', 'loud', 'hard', 'punk', 'male', 'rock', 'metal']
['rock']
['loud', 'rock']
['male', 'rock', 'metal']
['hard rock', 'punk', 'male', 'rock']
['male vocal', 'male voice', 'country', 'pop', 'piano', 'rock']
[]
[]
[]
['male vocal', 'vocals', 'male voice', 'pop', 'singing']
[]
['ambient', 'drums', 'electronic', 'no vocal', 'no vocals', 'flute', 'beat', 'rap']
['jazz', 'bass', 'drums', 'electronic', 'jazzy']
[]
['no vocal', 'jazzy', 'techno', 'beat']
['electric', 'electronic', 'slow', 'techno', 'beat']
['beats', 'funky', 'no strings', 'jazz', 'new age', 'synth', 'funk', 'electronic', 'electro', 'synthesizer', 'jazzy', 'beat']
['techno']
['funky', 'techno', 'beat']
['synth', 'electronic', 'electro', 'techno']
[]
['new age', 'beat']
[]
[]
['eerie', 'electronic', 'noise']
['quiet', 'soft']
[]
['synth']
['ambient', 'electronic', 'no vocal', 'no vocals', 'techno']
['ambient', 'synth', 'slow', 'techno']
['jazzy']
['spanish', 'male']
['jazzy']
['funky', 'funk', 'spanish', 'male']
[]
['funky', 'male']
['rock', 'singing']
['guitar', 'banjo', 'folk', 'no singing', 'country', 'blues']
['no voice', 'guitar', 'fast', 'country', 'blues']
['guitar']
['guitar', 'banjo', 'fast', 'country', 'blues']
['guitar', 'deep']
['no voice', 'guitar']
[]
['guitar', 'strings', 'no vocal', 'no vocals', 'piano', 'slow']
['guitar', 'indian']
['piano']
[]
[]
['guitar', 'strings', 'no vocal', 'no vocals', 'instrumental', 'piano', 'slow']
['sitar', 'guitar', 'eastern']
[]
['electronic', 'weird']
['ambient', 'synth', 'dark', 'slow', 'rock']
['synth', 'electronic', 'strange', 'slow']
['synth', 'weird', 'techno']
['guitar', 'loud', 'rock']
['loud', 'rock']
['loud', 'rock']
['guitar']
['vocals', 'upbeat']
['man']
['no piano', 'guitar']
['hard rock', 'heavy', 'guitar', 'drums', 'rock', 'metal']
['male vocal', 'guitar', 'male voice', 'drums', 'male singer', 'man singing', 'man', 'pop', 'male', 'vocal', 'rock']
['guitar', 'drums', 'rock']
['male', 'rock']
['rock', 'metal']
['no voices', 'guitar', 'rock']
['rock']
['male vocal', 'guitar', 'male singer', 'male', 'rock']
[]
[]
['beats', 'drums', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
['techno']
[]
[]
['beats', 'drums', 'electronic', 'fast', 'electro', 'techno', 'house', 'beat']
['drums', 'electronic', 'fast', 'dance', 'no drums', 'techno', 'beat']
['techno']
[]
['drums', 'electronic', 'fast', 'modern', 'techno', 'beat']
['fast', 'electro', 'techno']
['fast', 'techno', 'beat']
[]
['piano']
['no piano', 'wind', 'ambient', 'new age', 'piano', 'slow', 'flute', 'soft']
['quiet', 'wind', 'ambient', 'new age', 'no guitar', 'instrumental', 'piano', 'slow', 'flute', 'soft']
['ambient', 'no vocal', 'piano', 'slow', 'flute']
['quiet', 'slow', 'flute']
['piano', 'slow', 'flute']
['classical', 'opera']
['classical', 'choral', 'opera', 'fast', 'violin', 'operatic', 'orchestral', 'orchestra', 'singing', 'voices']
['opera']
['chorus', 'classical', 'choral', 'opera', 'violin', 'choir']
['chorus', 'classical', 'strings', 'choral', 'opera', 'choir']
['classical', 'female', 'opera', 'vocal', 'woman', 'singing', 'choir']
['chorus', 'classical', 'quiet', 'strings', 'choral', 'opera', 'slow', 'vocal', 'choir']
['classical', 'strings', 'classic', 'slow', 'singing', 'choir']
['choral', 'opera', 'choir']
['classical']
['chorus', 'classical', 'strings', 'choral', 'opera', 'violin', 'choir']
['chorus', 'opera']
['chorus', 'opera', 'choir']
['choral', 'chant', 'choir']
['choral', 'opera', 'singing', 'choir']
['opera']
['guitar', 'quiet', 'classical guitar', 'spanish', 'slow']
['classical', 'guitar', 'solo', 'lute', 'slow', 'calm', 'soft']
[]
['guitar']
[]
[]
['fast', 'country', 'violin', 'irish', 'fiddle']
[]
['spacey', 'ambient', 'synth', 'no guitar', 'slow']
['ambient', 'new age']
['slow']
['no voice', 'instrumental']
['no voice', 'sitar', 'no voices', 'guitar', 'strings', 'no vocal', 'instrumental', 'eastern', 'slow', 'indian']
[]
[]
['sitar', 'instrumental', 'indian']
['sitar', 'strings']
['sitar', 'slow', 'cello']
['indian']
[]
['slow']
['sitar', 'guitar', 'strings', 'slow']
['sitar', 'guitar', 'slow']
[]
['guitar', 'string']
['guitar']
['guitar', 'fast', 'spanish', 'indian']
['female', 'voice', 'female vocal', 'vocal', 'woman']
['flute']
['classical', 'female', 'synth', 'voice', 'irish', 'celtic', 'singing', 'flute']
['female', 'folk', 'medieval', 'female vocal', 'vocal', 'singing', 'female vocals']
['singer', 'female', 'female voice', 'irish', 'female vocal', 'female singer']
['vocal']
['voice', 'chant']
['foreign', 'chanting', 'vocal', 'indian', 'woman', 'singing', 'female vocals', 'voices', 'women']
['drums', 'slow']
['no voice', 'beats', 'new age', 'synth', 'space', 'drums', 'electronic', 'slow', 'techno']
['new age', 'pop', 'techno']
['ambient', 'new age', 'synth', 'electronic', 'weird', 'techno', 'flute', 'beat']
[]
['electronic']
['ambient', 'new age', 'synth', 'loud', 'electronic', 'no vocals', 'instrumental', 'slow', 'techno']
['no voice', 'drums', 'electronic', 'electro', 'instrumental', 'dance', 'techno', 'beat']
['electronic', 'fast', 'trance', 'fast beat', 'dance', 'techno', 'beat']
['ambient', 'electronic', 'not rock', 'fast', 'dance', 'techno', 'beat']
['beats', 'synth', 'funk', 'drum', 'drums', 'electronic', 'fast', 'pop', 'dance', 'techno', 'beat', 'upbeat']
['fast', 'techno']
['no voice', 'jazz', 'guitar', 'drums', 'horn', 'sax', 'jazzy']
['jazz', 'sax']
['jazz', 'sax']
['jazz', 'sax', 'jazzy']
[]
['no vocals', 'sax']
['jazz', 'drums', 'fast', 'sax', 'jazzy', 'upbeat']
['jazz', 'sax', 'jazzy']
['no vocals', 'piano', 'piano solo']
['piano']
['classical', 'piano']
['classical', 'quiet', 'techno', 'flute']
['foreign', 'female', 'quiet', 'drums', 'female vocal', 'celtic', 'vocal', 'indian', 'woman', 'woman singing', 'singing']
['quiet', 'ambient', 'electronic', 'instrumental', 'slow', 'vocal', 'flute', 'soft']
['foreign', 'female', 'ambient', 'irish', 'piano', 'eastern', 'vocal', 'indian', 'woman']
[]
['no singing', 'slow', 'flute', 'soft']
['female voice', 'indian', 'woman']
['new age', 'opera', 'slow', 'vocal', 'female vocals', 'voices']
['classical', 'guitar', 'slow']
['guitar', 'no singing', 'acoustic', 'no vocal', 'fast', 'light']
['no piano', 'ambient', 'synth', 'electro', 'trance', 'slow', 'beat']
[]
[]
['ambient', 'new age', 'synth', 'electronic', 'electronica', 'modern', 'techno', 'beat']
['electronica', 'techno']
['ambient']
[]
['electronic', 'slow']
['ambient', 'synth', 'mellow', 'piano', 'soft']
['no voice', 'ambient', 'synth', 'electronic', 'instrumental', 'mellow', 'piano', 'slow', 'soft']
['classical', 'ambient', 'synth', 'organ', 'slow']
['ambient', 'synth', 'repetitive', 'electronic', 'no vocal', 'no vocals', 'instrumental', 'mellow', 'piano', 'slow', 'soft']
[]
['guitar']
['guitar']
['guitar', 'strings', 'no drums']
['guitar', 'folk']
['guitar', 'quiet', 'strings', 'slow', 'different', 'soft']
[]
[]
['classical', 'electronic', 'man singing', 'piano']
['no piano', 'guitar', 'loud', 'pop']
['male vocal', 'vocals', 'beats', 'female', 'soft rock', 'female voice', 'ambient', 'synth', 'voice', 'girl', 'drums', 'electronic', 'electro', 'man', 'pop', 'female vocal', 'male', 'vocal', 'woman', 'female vocals', 'techno', 'beat']
['flute']
['female opera', 'female', 'opera', 'operatic', 'female vocal', 'woman', 'singing']
['female', 'guitar', 'opera']
['female', 'solo', 'female voice', 'opera', 'female vocal', 'vocal', 'woman', 'female vocals', 'flute']
['female opera', 'classical', 'flute']
['classical', 'female', 'opera', 'female vocal', 'vocal', 'woman']
['vocals', 'female voice', 'medieval', 'opera', 'flute']
[]
['female opera', 'opera']
[]
[]
['beats', 'electronic', 'fast', 'techno']
['male vocal', 'loud', 'drums', 'fast', 'vocal', 'rap']
[]
[]
['violins', 'strings', 'cello']
['classical', 'ambient', 'strings', 'violin', 'instrumental', 'orchestral', 'slow', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin']
['violin', 'harp', 'slow']
['beats', 'guitar', 'drum', 'drums', 'rock', 'beat']
['male vocal', 'vocals', 'guitar', 'drums', 'man singing', 'rock']
['rock']
['male vocal', 'vocals', 'voice', 'male singer', 'man', 'male vocals', 'male', 'rock']
['vocals', 'female', 'guitar', 'pop', 'woman', 'rock']
['male voice', 'loud', 'rock']
['guitar', 'rock']
['singer', 'male vocal', 'male voice', 'drums', 'male singer', 'man', 'pop', 'male vocals', 'male', 'rock', 'singing']
['guitar', 'loud', 'rock']
['guitar', 'male voice', 'loud', 'drums', 'pop', 'male', 'rock', 'singing']
[]
['dance', 'beat', 'rap', 'hip hop']
['techno', 'noise']
['male voice', 'pop', 'male vocals', 'techno', 'beat', 'rap', 'hip hop']
['male vocal', 'man singing', 'rock', 'dance', 'singing', 'beat']
['vocals', 'funky', 'electric', 'synth', 'male voice', 'electronic', 'weird', 'fast', 'electro', 'electronica', 'male', 'dance', 'techno']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
[]
['sitar', 'eastern', 'indian']
['sitar', 'no vocals', 'indian', 'oriental']
['indian']
['sitar', 'indian']
[]
['sitar', 'indian']
['sitar']
['sitar', 'slow', 'indian']
[]
['sitar', 'indian']
['sitar', 'indian']
['indian']
['no voice', 'oriental']
['sitar']
['sitar']
['sitar', 'indian', 'oriental']
['sitar', 'indian']
['sitar', 'strings', 'string', 'slow', 'indian']
[]
['sitar', 'indian', 'no drums']
['sitar', 'strings', 'indian']
['sitar', 'no vocals', 'indian']
['sitar', 'indian', 'oriental']
['sitar', 'guitar', 'indian']
['plucking', 'sitar', 'eastern', 'indian', 'oriental']
['sitar', 'indian']
[]
['sitar', 'indian']
['sitar', 'indian']
[]
['sitar', 'indian', 'india', 'oriental']
['sitar', 'eastern', 'indian', 'oriental']
['harpsichord', 'sitar', 'guitar', 'strings', 'indian', 'guitars']
['indian']
['sitar', 'not rock', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'guitar', 'strings', 'arabic', 'indian', 'india']
['sitar', 'quiet', 'slow', 'indian']
['no voice', 'classical', 'guitar']
['guitar', 'quiet', 'slow', 'soft']
['fast', 'indian']
[]
['guitar', 'drums', 'electronic', 'not rock', 'fast', 'tribal', 'indian']
[]
[]
['guitar']
['sitar', 'guitar', 'middle eastern', 'strings', 'eastern']
['guitar']
['beats', 'guitar', 'drums', 'fast', 'eastern', 'indian']
['guitar', 'new age', 'percussion', 'drums', 'no violin', 'indian', 'beat']
['sitar', 'indian']
['guitar']
[]
['world', 'guitar', 'drums', 'fast', 'indian', 'beat']
['guitar', 'banjo', 'fast', 'indian', 'quick']
['guitar', 'strings', 'soft']
[]
[]
['female vocal', 'voices']
['woman']
[]
['strings', 'slow', 'soft']
['classical', 'strings', 'bass', 'opera', 'violin', 'viola', 'sad', 'slow', 'cello']
['classical', 'eerie', 'guitar', 'strings', 'bass', 'classic', 'string', 'violin', 'dark', 'low', 'sad', 'slow', 'cello', 'soft']
['classical', 'strings', 'classic', 'string', 'violin', 'no vocals', 'low', 'sad', 'slow', 'cello']
[]
['electronic', 'techno', 'water']
['electronic']
['beats', 'electric', 'new age', 'synth', 'drums', 'electronic', 'fast', 'electro', 'trance', 'dance', 'techno', 'beat']
['electric', 'synth', 'drums', 'electronic', 'fast', 'trance', 'fast beat', 'dance', 'techno', 'house', 'beat']
['techno']
['electronic', 'fast', 'techno']
['synth', 'electronic', 'no vocals', 'dance', 'techno', 'soft']
['synth', 'electronic', 'fast', 'lol', 'dance', 'techno', 'beat']
['ambient', 'drone', 'bells']
['sitar', 'guitar', 'strings', 'string', 'drums', 'fast']
[]
[]
['female', 'eastern', 'indian']
['loud', 'drums']
['classical', 'strings', 'string', 'fast', 'violin']
['classical', 'violin']
['classical', 'strings', 'violin']
['sitar', 'no piano', 'classical', 'guitar', 'quiet', 'no beat', 'strings', 'drums', 'violin', 'slow', 'indian', 'india', 'oriental']
['drums', 'electronic', 'no vocal', 'weird', 'fast', 'no vocals', 'indian', 'techno']
['strings', 'fast']
['drums', 'fast', 'indian', 'techno', 'beat']
['beats', 'violins', 'strings', 'electronic', 'fast', 'modern', 'pop', 'indian', 'techno', 'upbeat']
['sitar', 'drums', 'indian', 'oriental']
[]
['middle eastern']
['choral', 'woman', 'singing', 'choir']
[]
['guitar', 'electric', 'drums', 'no vocals', 'piano']
['female', 'pop']
['singer', 'female', 'female voice', 'pop', 'slow', 'woman']
['female', 'guitar', 'female voice', 'loud', 'pop', 'female vocal']
['vocals', 'female', 'guitar', 'loud', 'female vocal', 'vocal', 'woman', 'rock', 'female vocals']
['solo', 'piano']
['solo', 'piano']
['classical', 'solo', 'happy', 'fast', 'no flute', 'piano', 'upbeat']
['piano']
['no strings', 'piano']
['piano', 'upbeat']
['flute']
[]
['flute']
['foreign', 'no vocals', 'eastern', 'flutes', 'indian', 'flute', 'oriental', 'beat']
['no guitar', 'flute', 'oriental']
['flute']
['guitar', 'drum', 'strings', 'drums', 'fast', 'tribal', 'eastern', 'no drums', 'flute', 'beat']
['sitar', 'beats', 'foreign', 'classical', 'guitar', 'folk', 'wind', 'new age', 'drum', 'loud', 'drums', 'not classical', 'fast', 'tribal', 'irish', 'modern', 'bells', 'celtic', 'old', 'flutes', 'slow', 'indian', 'flute', 'oriental', 'beat', 'upbeat']
['no vocals']
[]
['dark']
['no vocals']
['ambient']
['ambient', 'weird']
['ambient', 'electronic', 'slow']
['quiet', 'wind', 'ambient', 'airy', 'techno']
['spacey', 'ambient', 'new age', 'dark', 'slow']
['new age', 'drums', 'fast', 'no vocals', 'rock', 'techno', 'beat']
['synth', 'techno']
['beats', 'synth', 'bass', 'electronic', 'fast', 'electro', 'instrumental', 'fast beat', 'dance', 'techno', 'beat']
['synth', 'electronic', 'fast', 'techno', 'beat']
['classical', 'guitar', 'strings', 'not rock', 'harp', 'slow']
['no voice', 'classical', 'guitar', 'solo', 'strings', 'classic', 'harp', 'lute', 'slow', 'soft']
['classical', 'harp', 'piano']
['guitar', 'solo', 'strings', 'no vocal', 'no vocals', 'harp']
[]
['guitar', 'strings', 'harp', 'piano']
['female', 'female voice', 'fast', 'pop', 'female vocal', 'woman', 'dance', 'singing', 'techno', 'house', 'beat']
['techno']
[]
['vocals', 'fast', 'dance', 'techno']
['loud', 'fast', 'electro', 'dance', 'techno', 'upbeat']
['drums', 'electronic', 'fast', 'rock', 'techno']
['vocals', 'rock']
['rock']
['vocals', 'guitar', 'fast', 'rock', 'singing']
['male vocal', 'rock']
['foreign', 'indian', 'woman', 'techno']
[]
[]
['rock']
['vocals', 'loud', 'fast', 'punk', 'rock']
['hard rock', 'voice', 'loud', 'fast', 'male', 'vocal', 'rock', 'metal']
['male vocal', 'vocals', 'heavy', 'guitar', 'voice', 'loud', 'fast', 'hard', 'rock']
['jazz', 'guitar', 'electric', 'happy', 'strings', 'electric guitar', 'jazzy']
['jazz', 'guitar']
[]
['female', 'guitar', 'fast', 'pop', 'woman singing', 'rock', 'female vocals']
['female', 'guitar', 'female voice', 'fast', 'pop', 'female vocal', 'vocal', 'rock', 'female vocals']
[]
['male vocal', 'vocals', 'female', 'guitar', 'female voice', 'pop', 'vocal', 'woman', 'rock', 'singing', 'female vocals']
[]
['beats', 'ambient', 'new age', 'synth', 'electronic', 'electro', 'trance', 'techno']
['beats', 'fast']
['techno']
['drums', 'beat']
['techno']
[]
['pop', 'dance']
['chimes', 'spacey', 'ambient', 'bells', 'echo', 'slow']
['ambient', 'new age', 'girl', 'weird', 'bells']
[]
['eerie', 'female voice', 'ambient', 'new age', 'space', 'electronic', 'chanting', 'no vocal', 'weird', 'chant', 'strange', 'drone', 'bells', 'slow']
['ambient', 'no vocals', 'bells']
['strings', 'modern', 'slow']
[]
['bass', 'male voice', 'man', 'slow', 'male']
[]
['male vocal', 'pop', 'male', 'vocal', 'beat']
[]
['male vocal', 'synth', 'drum', 'bass', 'drums', 'man', 'male vocals', 'male', 'indian']
['new age', 'echo', 'vocal']
['harpsichord', 'classical', 'strings', 'harpsicord', 'loud', 'baroque']
['solo']
[]
['harpsichord', 'strings', 'harpsicord', 'fast']
['no piano', 'synth', 'loud', 'electronic', 'rock', 'techno', 'beat']
['synth', 'electronic', 'electronica', 'techno', 'not opera']
['guitar', 'synth', 'bass', 'drums', 'electronic', 'modern', 'techno', 'beat']
['synth']
['beats', 'slow']
['ambient', 'new age', 'synth', 'electronic', 'organ', 'fast', 'techno', 'beat']
['synth', 'electronic', 'instrumental', 'beat']
['ambient', 'drums', 'electronic', 'fast', 'electro', 'trance', 'slow', 'different', 'techno', 'beat']
['drums', 'electronic']
['synth', 'electronic', 'modern', 'techno', 'beat']
['no voice', 'electric', 'ambient', 'synth', 'electronic', 'slow', 'techno', 'beat']
[]
['guitar', 'quiet', 'ambient', 'strings', 'harp', 'slow', 'soft']
[]
['no voice', 'classical', 'guitar', 'ambient', 'strings', 'string', 'fast', 'no vocals', 'bells', 'harp', 'piano', 'slow', 'oriental', 'soft']
['harp']
['guitar', 'strings', 'harp', 'piano', 'calm', 'soft']
['ambient', 'fast', 'harp', 'piano', 'oriental', 'soft']
['strings', 'no vocal', 'no vocals', 'harp']
['harp', 'piano', 'oriental']
['classical', 'guitar', 'quiet', 'strings', 'harp', 'lute', 'slow', 'soft']
['harp']
['ambient', 'new age', 'synth', 'electronic', 'piano']
[]
[]
['ambient', 'slow']
[]
['quiet', 'ambient']
[]
[]
[]
['no violin', 'harp', 'soft']
['harp', 'soft']
['ambient', 'harp', 'slow', 'soft']
['harp']
['ambient', 'new age', 'strings', 'no vocals', 'harp', 'calm', 'soft']
['no voices', 'quiet', 'ambient', 'new age', 'synth', 'string', 'electronic', 'harp', 'piano', 'slow', 'soft']
['quiet', 'ambient', 'new age', 'not rock', 'slow', 'soft']
['no voice', 'ambient', 'no vocals', 'calm', 'soft']
[]
[]
['female', 'female voice', 'opera', 'female vocal', 'woman']
['female voice']
[]
[]
['piano']
['beats', 'synth', 'electronic', 'no vocal', 'fast', 'no vocals', 'piano', 'dance', 'techno', 'beat']
[]
['vocals', 'male voice', 'drums', 'fast', 'pop', 'vocal', 'beat', 'upbeat']
['ambient', 'no drums']
[]
['ambient', 'slow']
['new age', 'electronic', 'techno', 'beat']
[]
['no strings', 'drums', 'techno', 'beat']
[]
['quiet', 'beat']
['guitar', 'quiet']
['guitar', 'strings', 'bass', 'piano', 'slow', 'soft']
['guitar', 'bass', 'no vocals', 'deep', 'slow']
['world', 'sitar', 'guitar', 'bass', 'mellow', 'indian']
['sitar', 'eastern', 'indian', 'calm']
['sitar', 'strings', 'weird', 'eastern', 'indian']
['sitar']
[]
['sitar', 'indian']
['sitar', 'guitar', 'middle eastern', 'eastern', 'indian', 'oriental']
['chorus', 'choral', 'choir']
[]
['vocals', 'female', 'female voice', 'opera', 'female vocal']
[]
['vocals', 'female']
['clarinet', 'woodwind', 'classical', 'strings', 'classic', 'violin', 'oboe', 'flute']
['classical', 'trumpet', 'strings', 'violin', 'oboe', 'flute']
['clarinet', 'classical', 'violins', 'strings', 'violin', 'oboe', 'flute']
['clasical', 'classical', 'violins', 'strings', 'violin', 'flutes', 'slow', 'flute']
[]
['classical', 'violins', 'strings', 'classic', 'flute']
['electric', 'loud', 'electronic', 'techno']
['electronic', 'techno']
['loud', 'no vocal', 'no vocals']
['techno']
[]
['electro']
['female', 'female voice', 'woman', 'rock']
[]
[]
['female', 'female vocal', 'woman', 'singing', 'english']
['male vocal', 'vocals', 'beats', 'male voice', 'drums', 'male singer', 'modern', 'pop', 'vocal', 'rock', 'singing', 'beat']
['rock']
['voice', 'loud', 'drums', 'pop', 'male', 'vocal', 'rock']
['ambient', 'deep', 'slow']
['ambient', 'electronic', 'electro', 'dark', 'mellow', 'slow']
['beat']
['ambient', 'synth', 'drums', 'electronic', 'fast', 'instrumental', 'dance', 'techno', 'beat', 'upbeat']
[]
[]
['no voice', 'eerie', 'guitar', 'quiet', 'no vocal', 'no vocals', 'soft']
['guitar', 'male voice', 'man']
['guitar', 'male', 'rock', 'singing']
['male vocal', 'loud']
['harpsichord', 'sitar', 'classical', 'guitar', 'strings', 'string', 'no vocal', 'fast', 'no vocals', 'harp', 'mellow', 'piano']
['no vocal', 'no vocals', 'piano']
['guitar', 'banjo', 'fast']
['harpsichord', 'classical', 'strings', 'fast', 'harp', 'piano']
['harpsichord', 'classical', 'no vocal', 'no vocals', 'piano']
['piano']
['classical', 'violin', 'orchestra']
['classical', 'classic', 'flute']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'orchestra']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'baroque']
['classical', 'strings', 'soft']
['classical', 'orchestra']
['classical', 'orchestral', 'orchestra']
['classical', 'quiet', 'strings', 'violin']
['classical', 'strings']
['classical', 'orchestra']
[]
['orchestra']
['classical', 'strings', 'orchestra']
['classical', 'violins', 'strings', 'violin', 'orchestral', 'orchestra', 'flute']
['classical', 'orchestra']
['classical', 'strings', 'no vocal', 'violin', 'orchestral', 'orchestra']
['horns', 'classical', 'violins', 'trumpet', 'strings', 'classic', 'orchestral', 'orchestra']
['classical', 'violins', 'classic', 'violin', 'orchestra']
[]
['classical', 'strings', 'drums', 'orchestral']
['horns', 'classical', 'classic']
['piano']
['classical', 'guitar', 'medieval', 'fast']
['classical', 'guitar', 'flute']
['harpsichord', 'classical', 'quiet', 'strings', 'violin', 'no vocals', 'harp']
['classical', 'classic', 'violin', 'piano', 'slow']
['classical', 'strings']
['harpsichord', 'no piano', 'classical', 'violins', 'strings', 'violin']
['no voice', 'harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['classical', 'violins', 'fast', 'violin']
['sitar']
['no singing', 'drums', 'fast', 'no vocals', 'indian', 'beat']
['no voice', 'percussion', 'drums', 'beat']
['drums', 'fast', 'tribal', 'no vocals', 'indian', 'beat']
[]
['classical', 'solo', 'violin', 'cello']
['classical', 'solo', 'cello']
['classical', 'solo', 'violin', 'cello']
['rock', 'metal']
[]
['loud', 'rock', 'metal']
['guitar', 'quiet', 'voices']
['female', 'guitar', 'female voice', 'loud', 'pop', 'male', 'vocal', 'rock', 'singing']
['loud', 'woman', 'female singer']
['vocal', 'female vocals', 'female singer']
['guitar']
[]
['classical', 'orchestra']
[]
[]
['male vocal', 'male voice', 'man', 'pop', 'male', 'techno']
[]
['singer', 'vocals', 'synth', 'male voice', 'electronic', 'modern', 'man', 'pop', 'male', 'vocal', 'techno', 'soft']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'classic', 'string', 'violin', 'slow', 'baroque']
['classical', 'harpsicord']
['classical']
['harpsichord', 'classical', 'strings', 'cello']
[]
['harpsichord', 'classical', 'violin', 'slow']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'string', 'violin', 'cello', 'baroque']
['harpsichord', 'classical', 'strings', 'harp']
['classical']
['harpsichord', 'classical', 'strings', 'string', 'violin']
[]
['harpsichord', 'classical', 'strings', 'violin']
['classical', 'harpsicord', 'violin']
['harpsichord', 'classical', 'no singing', 'strings', 'medieval', 'no vocal', 'violin', 'instrumental', 'harp']
['classical', 'no drums']
['classical']
['quiet', 'no guitar']
['dark', 'chant']
['trumpet', 'chanting', 'weird', 'horn', 'strange', 'echo', 'scary', 'noise']
[]
['chorus', 'trance', 'techno']
['loud', 'drums', 'electronic', 'fast', 'rock']
['synth', 'loud', 'fast', 'electro', 'techno', 'upbeat']
[]
[]
['violins', 'strings', 'violin', 'irish', 'celtic', 'no drums', 'fiddle']
[]
['classical', 'strings', 'violin', 'no vocals', 'irish', 'fiddle']
[]
['harpsichord', 'classical', 'guitar', 'quiet', 'strings', 'harpsicord', 'slow']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic']
['harpsichord', 'classical', 'slow']
['harpsichord', 'classical', 'harpsicord', 'medieval', 'classic', 'no vocals', 'baroque']
['harpsichord', 'no drums']
['harpsichord', 'classical']
['guitar', 'strings', 'no vocal', 'no vocals']
['classical', 'guitar', 'strings', 'classical guitar', 'piano', 'spanish', 'slow']
['guitar', 'strings', 'piano']
['guitar', 'no vocals']
['classical', 'guitar', 'folk', 'strings', 'classic', 'lute', 'piano']
['guitar']
['guitar', 'classical guitar', 'harp', 'lute', 'slow']
['classical', 'solo', 'piano']
['piano']
['classical', 'piano']
['piano']
['piano']
['classical', 'solo', 'piano']
['classical', 'solo', 'piano', 'calm']
['classical', 'guitar', 'strings', 'string', 'slow']
['classical', 'guitar', 'strings', 'classic', 'spanish']
['strings']
[]
[]
['violin', 'slow']
['guitar', 'solo', 'instrumental', 'harp']
[]
['guitar', 'strings']
[]
['strings', 'violin', 'cello']
['harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord', 'classic', 'fast']
['harpsichord', 'piano']
['harpsichord', 'classical', 'strings', 'harpsicord', 'harp']
['noise']
['rock']
['no vocal']
['male singer']
['loud', 'rock']
['guitar', 'new age', 'drums']
[]
['jazz', 'guitar', 'drums', 'electronic', 'jazzy', 'soft']
[]
[]
['male voice']
['vocals', 'chanting', 'choral', 'opera', 'male vocals', 'vocal', 'monks', 'choir']
[]
['vocals', 'female', 'guitar', 'new age', 'violin', 'woman', 'flute']
['guitar']
['no piano', 'female voice', 'slow', 'woman']
['sitar', 'new age', 'indian']
['fast', 'techno']
['vocals', 'electronic', 'voices', 'techno']
['techno']
['electronic', 'fast', 'dance', 'voices', 'techno', 'house', 'beat']
[]
['no voice', 'female', 'guitar', 'female singer']
['female', 'guitar', 'woman', 'not english']
[]
['guitar', 'indian']
[]
[]
['harpsichord', 'strings']
['strings', 'old']
['sitar', 'classical', 'guitar', 'strings', 'harp', 'indian']
['classical', 'quiet', 'bells']
['bells']
['vocals', 'choral', 'opera', 'choir']
['sitar', 'harp', 'indian']
['sitar', 'quiet', 'piano', 'slow', 'indian']
['sitar', 'quiet', 'slow', 'soft']
['sitar', 'harp', 'indian', 'india']
['solo', 'violin', 'indian']
['sitar', 'weird', 'indian']
['slow', 'indian']
[]
['sitar', 'string', 'violin', 'eastern', 'indian', 'cello']
['sitar', 'slow', 'indian']
[]
['sitar']
['violin', 'fiddle']
['sitar', 'weird', 'violin', 'fiddle']
['sitar', 'quiet', 'no singing', 'no vocal', 'instrumental', 'mellow', 'piano', 'slow', 'indian', 'soft']
['sitar', 'guitar', 'strings', 'indian']
['sitar', 'calm', 'oriental']
['classical', 'strings', 'violin']
['sitar', 'indian']
[]
[]
[]
['sitar', 'no singing', 'drums', 'eastern', 'indian']
['sitar', 'folk', 'drum', 'strings', 'weird', 'fast', 'celtic', 'eastern', 'indian']
['sitar', 'foreign', 'fast', 'violin', 'indian']
['sitar', 'indian']
[]
['sitar', 'foreign', 'folk', 'middle eastern', 'strange', 'eastern', 'indian', 'india', 'oriental']
['sitar', 'no flute', 'indian']
['sitar', 'indian']
['no piano', 'indian']
['sitar', 'violin', 'eastern', 'indian']
[]
['sitar', 'no vocal', 'indian']
['not classical', 'fast', 'country', 'fiddle']
['sitar', 'fast', 'indian']
['indian']
['sitar', 'drums', 'not rock', 'eastern', 'indian']
[]
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['no voice', 'sitar', 'strings', 'fast', 'violin', 'eastern', 'indian', 'quick']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'strings', 'indian', 'oriental']
['no voice', 'sitar']
[]
['sitar', 'indian']
['sitar']
[]
['sitar', 'slow', 'indian']
['sitar', 'indian']
['indian']
[]
['sitar', 'indian']
['sitar', 'solo', 'strings', 'eastern', 'indian', 'oriental']
['sitar', 'guitar', 'quiet', 'strings']
['sitar', 'quiet', 'indian']
['sitar', 'quiet', 'strings', 'piano']
['sitar', 'no piano']
['guitar', 'quiet', 'indian']
[]
['sitar', 'strings', 'slow', 'indian']
['sitar', 'guitar', 'quiet', 'strings', 'slow']
['sitar', 'slow']
[]
['sitar', 'indian']
['sitar', 'guitar', 'quiet', 'slow', 'indian']
['sitar', 'strings', 'string', 'eastern', 'indian']
['sitar', 'foreign', 'quiet', 'string', 'piano', 'slow', 'oriental']
['sitar', 'guitar', 'quiet', 'middle eastern', 'strings', 'piano', 'slow', 'indian', 'soft']
['sitar', 'banjo', 'strings', 'piano', 'slow', 'soft']
['sitar', 'indian']
['guitar', 'piano']
['sitar', 'quiet', 'no singing', 'eastern', 'slow', 'indian', 'oriental']
[]
['sitar']
['sitar']
['sitar', 'slow', 'indian']
['sitar', 'guitar', 'quiet', 'strings', 'string', 'eastern', 'slow', 'indian', 'oriental', 'soft']
['sitar', 'guitar', 'slow']
['sitar', 'indian']
['sitar', 'no piano', 'guitar', 'quiet', 'strings', 'string', 'slow', 'indian', 'india', 'soft']
['sitar', 'guitar', 'indian', 'oriental']
['sitar', 'foreign', 'guitar', 'quiet', 'strings', 'no vocal', 'piano', 'eastern', 'slow', 'indian', 'calm']
['sitar', 'guitar', 'quiet', 'slow', 'indian']
['guitar', 'strings', 'bass', 'string', 'slow']
['sitar', 'guitar', 'strings', 'string', 'slow', 'indian']
['sitar', 'indian']
['sitar', 'slow', 'indian']
['sitar', 'strings', 'piano', 'slow', 'indian']
['sitar', 'guitar', 'arabic', 'slow', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'guitar', 'eastern', 'slow', 'indian']
[]
['sitar', 'foreign', 'guitar', 'indian']
['sitar', 'banjo', 'strings', 'indian']
['sitar', 'eastern', 'oriental']
['sitar', 'guitar', 'middle eastern', 'strings', 'eastern', 'slow', 'indian']
['sitar', 'quiet', 'strings', 'piano', 'slow', 'indian', 'soft']
['sitar', 'percussion', 'indian']
['sitar', 'slow', 'indian']
[]
['sitar', 'guitar', 'slow', 'indian', 'oriental']
['sitar', 'banjo', 'drum', 'strings', 'no vocals', 'slow', 'indian', 'india']
['sitar', 'quiet', 'eastern', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'arabic', 'indian']
['sitar', 'indian', 'india']
['sitar', 'guitar', 'indian']
['sitar', 'drums', 'eastern', 'indian', 'oriental']
['sitar', 'no vocals', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'weird', 'fast', 'eastern', 'indian']
['sitar', 'guitar', 'eastern', 'indian', 'india', 'not opera']
['sitar', 'indian']
[]
['indian']
['sitar', 'indian', 'no singer']
['sitar', 'harp', 'indian', 'india', 'oriental']
['sitar', 'drums', 'fast', 'indian']
['sitar', 'eastern', 'indian']
['sitar']
['sitar', 'guitar', 'no singing', 'indian', 'oriental']
[]
['harpsichord', 'guitar', 'quiet', 'strings', 'soft']
['sitar', 'classical', 'guitar', 'strings', 'eastern', 'slow', 'indian', 'soft']
['sitar', 'middle eastern', 'indian']
['sitar', 'indian']
['sitar', 'strings', 'string', 'no vocals', 'slow', 'indian']
['sitar', 'strings', 'low', 'eastern', 'slow']
['strings', 'no vocal']
['sitar', 'guitar', 'strings', 'eastern', 'slow', 'indian', 'no drums']
['sitar']
['sitar', 'string', 'eastern', 'slow', 'indian']
['sitar', 'indian']
['sitar', 'guitar', 'strings', 'no flute', 'piano', 'indian', 'india', 'no drums']
['sitar']
['sitar', 'indian']
['sitar', 'strings', 'eastern']
['sitar', 'guitar', 'strings', 'no vocal', 'indian']
['sitar']
['sitar', 'arabic', 'eastern', 'indian']
[]
['sitar', 'classical', 'guitar', 'strings', 'piano', 'slow', 'indian']
['sitar', 'guitar', 'eastern', 'indian']
['sitar', 'classical', 'strings', 'slow', 'different']
['sitar', 'indian']
['sitar', 'middle eastern', 'strings', 'piano', 'eastern', 'indian']
['sitar']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'eastern']
['sitar', 'middle eastern', 'strings', 'arabic', 'indian', 'oriental']
['sitar', 'eastern', 'indian']
['strings', 'indian']
['sitar', 'indian']
[]
['sitar', 'guitar', 'indian', 'oriental']
['sitar', 'loud', 'arabic', 'indian']
['sitar', 'loud', 'indian']
[]
['sitar', 'indian']
['sitar', 'slow', 'indian']
['sitar', 'no singing']
['sitar', 'strings', 'eastern', 'indian']
[]
['sitar', 'indian']
['sitar', 'indian']
['indian']
['indian']
['no voice', 'sitar', 'indian', 'india']
['sitar']
['sitar', 'indian']
['sitar', 'middle eastern', 'string', 'eastern', 'indian', 'india', 'oriental']
['sitar', 'guitar', 'solo', 'slow', 'indian', 'india']
['sitar', 'indian', 'india']
['sitar', 'indian']
['sitar', 'strings', 'indian', 'oriental']
['sitar', 'indian']
['no voice', 'sitar', 'indian']
['sitar', 'no vocals', 'instrumental', 'eastern', 'indian']
['sitar']
['sitar', 'no beat', 'eastern', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'slow', 'indian', 'no drums', 'oriental']
['sitar', 'slow', 'indian']
[]
['sitar', 'solo', 'string', 'eastern', 'indian', 'oriental']
['no voice', 'sitar', 'indian', 'oriental']
['plucking', 'sitar', 'banjo', 'string', 'no vocals', 'eastern', 'slow', 'indian', 'india', 'oriental']
['sitar', 'foreign', 'guitar', 'banjo', 'solo', 'strings', 'not classical', 'weird', 'eastern', 'indian']
['no voice', 'sitar', 'indian']
['sitar', 'slow', 'indian']
['sitar', 'strings', 'indian']
['sitar', 'strings', 'eastern', 'indian', 'oriental']
[]
['sitar', 'strings', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'indian']
[]
['sitar', 'indian']
['sitar', 'strings', 'harp', 'indian']
['classical', 'strings', 'harp']
['guitar', 'strings']
[]
[]
['sitar', 'chimes', 'guitar', 'strings', 'loud', 'fast', 'piano', 'indian']
['world', 'sitar', 'chimes', 'guitar', 'strings', 'instrumental']
['male vocals', 'male', 'rock', 'singing']
['guitar', 'bass', 'rock', 'metal']
['man singing', 'rock']
['rock']
['ambient']
['ambient', 'birds', 'water']
[]
[]
['wind', 'ambient', 'new age', 'synth', 'slow']
['ambient', 'no vocal', 'slow']
['ambient', 'birds', 'soft', 'water']
['classical', 'folk', 'strings', 'classic', 'country', 'violin', 'baroque', 'fiddle']
[]
['classical', 'folk', 'strings', 'violin', 'irish']
[]
['ambient', 'no vocal', 'dark', 'harp', 'slow']
['sitar', 'no beat', 'strings', 'oriental']
['indian']
['world', 'drums', 'indian']
['sitar', 'indian']
['sitar', 'drums', 'arabic', 'eastern', 'indian', 'oriental']
['drum', 'drums']
['indian', 'india']
['indian']
['sitar']
['bells']
['sitar', 'drums', 'weird', 'tribal', 'arabic', 'eastern', 'indian', 'oriental', 'beat']
['guitar', 'spanish']
['classical', 'guitar']
['opera', 'vocal', 'clapping']
[]
[]
[]
['classical', 'ambient', 'new age', 'strings', 'slow']
[]
[]
[]
['echo']
['ambient', 'weird']
['ambient', 'new age']
[]
['electronic', 'electronica']
['electronic', 'modern', 'slow']
['loud']
['synth', 'electronic', 'electro', 'instrumental', 'rock', 'techno']
['synth', 'fast', 'techno']
['synth', 'techno']
['electro', 'techno']
['male vocal', 'vocals', 'loud', 'male', 'rock', 'techno']
['male vocal', 'loud', 'rock']
[]
['loud', 'techno']
['rock']
['electronic']
['percussion', 'reggae', 'no flute']
['instrumental', 'techno', 'beat']
['beats', 'funky', 'jazz', 'synth', 'funk', 'drums', 'electronic', 'techno', 'beat']
['synth', 'drums', 'reggae', 'upbeat']
[]
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'fast', 'violin', 'cello', 'flute']
['harpsichord', 'classical', 'strings', 'flute']
['female singer']
['funk']
['beats', 'ambient', 'synth', 'slow']
['percussion', 'drums', 'beat']
['slow']
['quiet', 'ambient', 'drone']
['ambient', 'airy', 'drone', 'slow']
['ambient', 'deep']
['ambient']
['ambient', 'synth', 'organ', 'slow', 'soft']
[]
[]
['electric', 'ambient']
[]
['spacey', 'deep', 'slow']
['ambient', 'electronic', 'low', 'slow']
['ambient', 'electronic', 'slow']
['quiet', 'ambient']
[]
[]
['slow']
[]
['quiet', 'ambient', 'low', 'mellow', 'slow', 'soft']
['quiet', 'ambient', 'soft']
['female voice']
[]
['eerie', 'wind', 'ambient']
[]
[]
[]
[]
['ambient', 'dark', 'echo']
['ambient', 'synth', 'dark', 'scary', 'noise']
['quiet', 'ambient']
[]
[]
['female voice']
['vocals', 'vocal']
[]
['vocals', 'guitar', 'drums', 'female vocal', 'woman', 'rock', 'female vocals']
['vocals', 'pop', 'female vocal']
['guitar', 'woman', 'rock', 'guitars', 'singing']
[]
['classical', 'ambient', 'new age', 'synth', 'percussion', 'no vocals', 'piano', 'slow', 'calm', 'soft']
['ambient', 'no vocal', 'no vocals', 'mellow', 'piano']
['ambient', 'new age']
['ambient', 'new age', 'not classical']
['chimes', 'classical', 'ambient', 'new age', 'synth', 'keyboard', 'electronic', 'instrumental', 'bells', 'light', 'slow', 'soft']
[]
['new age', 'synth', 'no guitar', 'synthesizer', 'flute']
['electronic', 'no vocals']
['ambient', 'new age', 'synth', 'electronic', 'no vocals']
['beats', 'ambient', 'synth', 'not classical', 'slow', 'beat']
['ambient', 'synth', 'electronic', 'fast', 'techno', 'soft']
['new age', 'techno']
[]
['ambient', 'new age', 'electronic', 'flute', 'beat', 'soft']
['ambient']
[]
[]
['ambient', 'new age', 'synth', 'electronic', 'modern', 'light', 'calm', 'techno', 'beat']
['ambient', 'no vocals', 'flute']
['ambient', 'new age', 'synth', 'airy', 'repetitive', 'electronic', 'fast', 'electro', 'modern', 'techno', 'beat']
[]
['drums', 'beat']
['no piano', 'quiet', 'drums', 'jungle', 'different', 'techno', 'flute', 'beat']
['beats', 'ambient', 'drums', 'fast']
['drum', 'drums', 'fast', 'beat']
['new age', 'synth', 'drums', 'techno', 'flute']
['beats', 'drum', 'drums', 'no vocal', 'no vocals']
[]
['guitar', 'folk', 'middle eastern']
['classical', 'guitar', 'folk', 'middle eastern', 'strings', 'oriental', 'fiddle']
[]
['foreign', 'drum', 'drums', 'tribal', 'indian', 'voices']
[]
['vocals', 'ambient', 'synth', 'drums', 'man', 'indian', 'not english', 'beat']
['bongos', 'beats', 'ambient', 'drums', 'chanting', 'tribal', 'indian']
['fast', 'indian']
['eerie', 'quiet', 'ambient', 'drums', 'dark', 'low', 'slow', 'scary', 'beat']
['eerie', 'wind', 'ambient', 'dark', 'deep', 'calm']
[]
[]
['beats', 'synth', 'drums', 'techno', 'beat']
['synth', 'drums', 'electronic', 'electronica']
['no singing', 'drum', 'drums', 'weird', 'fast', 'no vocals', 'techno']
['synth', 'drums', 'eastern']
['guitar', 'rock']
['guitar', 'loud', 'lol', 'hard', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'rock', 'metal']
['silence', 'piano', 'slow']
['quiet', 'light', 'piano', 'sad', 'slow', 'soft']
['classical', 'quiet', 'piano', 'slow', 'soft']
['classical', 'quiet', 'piano', 'slow', 'soft']
['piano']
['classical', 'piano', 'slow']
['classical', 'fast', 'piano']
[]
[]
['violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow', 'soft']
['classical', 'strings', 'violin', 'instrumental', 'slow', 'no singer']
['classical', 'quiet', 'violins', 'strings', 'no vocal', 'violin', 'sad', 'slow', 'cello']
['classical', 'strings', 'violin']
['classical', 'strings']
['classical', 'strings', 'violin', 'baroque']
['classical', 'strings', 'no vocal', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'no flute', 'orchestra', 'cello', 'baroque']
['classical', 'strings', 'orchestral']
[]
['indian']
['sitar', 'no violin', 'fast']
['sitar', 'middle eastern', 'strings', 'fast', 'arabic', 'harp', 'eastern', 'indian', 'oriental']
['not rock', 'indian']
['strings', 'fast']
['guitar', 'drums', 'country', 'beat']
['male vocal', 'guitar', 'acoustic', 'rock']
['male vocal', 'vocals', 'guitar', 'male voice', 'country', 'male', 'rock']
['male']
['vocals', 'guitar', 'country', 'pop', 'male vocals', 'male', 'rock', 'singing']
[]
['strings', 'fast', 'violin', 'piano']
['piano']
['country', 'violin', 'piano']
['classical', 'fast', 'violin', 'irish', 'piano']
['funky', 'funk', 'loud', 'weird', 'pop', 'rock', 'beat']
['funky', 'jazz']
['vocals', 'female', 'voice', 'female vocal', 'indian', 'woman', 'woman singing', 'singing', 'flute']
['guitar', 'strings', 'loud', 'drums', 'violin', 'eastern', 'rock', 'beat']
['synth']
['classical', 'female', 'guitar', 'opera', 'female vocal', 'piano', 'woman singing', 'singing']
['classical', 'female', 'guitar', 'strings', 'opera', 'female vocal', 'vocal', 'woman', 'woman singing', 'female vocals']
['synth', 'drums', 'electronic']
['male vocal', 'opera', 'man']
['female voice', 'new age', 'synth', 'vocal', 'woman', 'woman singing', 'female vocals']
[]
['female', 'female voice', 'voice', 'violin', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing', 'cello']
['ambient', 'synth', 'electronic', 'weird', 'instrumental', 'industrial', 'techno', 'noise']
[]
['ambient', 'dark']
['no piano', 'ambient']
['no voice', 'ambient', 'no vocal']
['electronic']
['noise']
['no voice', 'no vocal', 'weird', 'different']
[]
['man', 'piano', 'woman']
['vocals', 'solo', 'male voice', 'pop', 'male', 'rock', 'singing']
[]
['male vocal', 'country', 'pop', 'male vocals', 'rock']
['strings', 'eastern']
['middle eastern', 'drums', 'indian', 'woman']
[]
['sitar', 'beats', 'loud', 'drums', 'fast', 'arabic', 'jungle', 'indian', 'techno', 'beat']
['fast', 'indian']
[]
['ambient', 'synth', 'strings', 'dark', 'scary']
['male vocal', 'vocals', 'beats', 'drums', 'arabic', 'bells', 'eastern', 'slow', 'male', 'vocal', 'beat']
['voice', 'male voice', 'chanting', 'indian']
['harpsichord', 'classical', 'violin']
['guitar', 'banjo', 'instrumental', 'slow']
['classical', 'guitar', 'folk', 'strings', 'no vocals']
['guitar', 'slow']
['classical', 'guitar', 'strings', 'no vocal', 'no vocals', 'piano']
['guitar']
[]
['classical', 'strings', 'violin', 'flute']
['harpsichord', 'classical', 'classic', 'flutes', 'flute']
['classical', 'guitar', 'strings', 'soft']
['guitar']
['guitar', 'strings', 'old', 'slow']
['strings', 'no vocals']
['classical', 'fast', 'piano']
['classical', 'solo', 'piano']
['classical', 'piano']
['quiet', 'piano', 'slow', 'soft']
[]
['no vocal', 'piano']
[]
['classical', 'classic', 'fast', 'piano', 'piano solo']
['classical', 'piano']
['classical', 'piano']
['classical', 'solo', 'piano', 'slow']
['classical', 'piano']
['classical', 'piano', 'slow']
['classical', 'solo', 'fast', 'piano']
['quiet', 'piano', 'slow']
['classical', 'solo', 'fast', 'piano']
[]
['classical', 'piano']
['classical', 'piano']
['piano']
['classical', 'solo', 'fast', 'piano', 'soft']
['classical', 'piano']
['classical', 'solo', 'fast', 'piano', 'upbeat', 'quick']
['fast', 'piano']
['piano']
['classical', 'fast', 'piano']
['no voice', 'classical', 'quiet', 'strings', 'opera', 'piano']
[]
['classical', 'strings', 'violin', 'piano']
['classical', 'strings', 'fast', 'violin', 'piano', 'cello']
['classical', 'violin', 'piano', 'orchestra', 'slow']
['violin']
['piano', 'orchestra']
['classical', 'violin', 'piano', 'orchestra', 'soft']
['classical', 'quiet', 'strings', 'classic', 'violin', 'no vocals', 'piano', 'slow', 'cello']
['classical', 'strings', 'violin', 'piano', 'cello']
['classical', 'piano']
['classical', 'violin', 'piano']
['classical', 'strings', 'violin', 'piano']
['classical', 'strings', 'no guitar', 'violin', 'piano', 'cello']
['classical', 'no vocals', 'piano']
['classical', 'no vocal', 'fast', 'piano']
['classical', 'quiet', 'strings', 'no guitar', 'fast', 'violin', 'piano', 'slow', 'flute']
['strings', 'cello']
['classical', 'strings', 'violin', 'cello']
['cello']
['classical', 'strings', 'violin', 'viola', 'slow', 'cello']
['classical', 'violins', 'strings', 'violin']
['classical', 'strings', 'violin']
['strings']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['classical', 'violins', 'strings', 'harpsicord', 'classic', 'violin']
['guitar', 'classical guitar']
['classical', 'guitar', 'strings']
['classical', 'guitar', 'strings']
['guitar']
['classical', 'guitar', 'strings', 'no vocal', 'no vocals']
['no voice', 'guitar', 'acoustic', 'classical guitar']
['drum', 'bass', 'drums', 'singing']
['hard rock', 'heavy', 'heavy metal', 'rock', 'metal']
[]
['hard rock', 'male vocal', 'vocals', 'heavy', 'guitar', 'loud', 'heavy metal', 'hard', 'male', 'rock', 'metal']
['no voice', 'hard rock', 'guitar', 'bass', 'drums', 'low', 'rock', 'beat', 'metal']
[]
['bass', 'no guitar', 'low', 'slow']
['ambient', 'bass', 'electronic', 'drone']
['ambient', 'synth', 'bass', 'weird', 'low', 'drone', 'deep', 'slow', 'different', 'soft']
['ambient', 'bass', 'no guitar', 'dark', 'deep']
['quiet', 'ambient', 'synth', 'deep', 'slow']
['ambient', 'bass', 'drone']
[]
['bass', 'drone']
['drone']
['bass']
[]
['ambient', 'dark']
['no piano', 'drone', 'slow']
[]
[]
['ambient', 'bass', 'electronic', 'slow']
[]
['ambient', 'synth']
['ambient']
[]
[]
['ambient', 'drone']
[]
['ambient']
['spacey', 'ambient', 'organ', 'slow']
['no vocal']
['ambient', 'no guitar', 'slow']
[]
['ambient', 'bass', 'electronic', 'no violin', 'trance', 'drone', 'slow']
['spacey', 'ambient', 'synth', 'no vocal', 'drone']
['ambient']
['ambient']
['ambient', 'deep']
['ambient']
['ambient', 'slow']
['ambient']
['classical', 'ambient']
['spacey', 'ambient', 'slow', 'soft']
[]
['classical', 'ambient', 'synth', 'space', 'organ', 'no vocal', 'dark', 'no vocals', 'instrumental']
['ambient', 'bells', 'slow']
['no vocal']
[]
['no beat', 'ambient', 'weird']
[]
['ambient', 'dark']
[]
[]
['ambient']
[]
['ambient']
['ambient', 'not classical', 'dark', 'slow']
['no singing', 'organ']
['ambient', 'synth', 'no guitar', 'organ', 'slow']
['ambient', 'dark', 'slow', 'noise']
['no beat', 'ambient', 'slow']
['ambient', 'slow']
['ambient', 'synth', 'electronic']
['no vocals']
['ambient', 'slow', 'scary']
['no voice', 'no beat', 'ambient', 'synth', 'electronic', 'dark', 'no vocals', 'deep', 'slow', 'soft']
['ambient', 'weird', 'drone', 'slow']
['organ']
[]
['slow']
[]
['ambient']
['quiet', 'ambient', 'synth', 'organ', 'slow']
['ambient', 'bass', 'no flute']
['ambient', 'airy', 'loud', 'deep', 'slow']
['no voice', 'quiet', 'ambient', 'bass', 'electronic', 'dark', 'drone']
['electro', 'low', 'drone', 'deep']
['bass', 'low', 'slow']
[]
['guitar', 'no vocal']
['guitar', 'acoustic', 'slow']
['guitar', 'strings', 'no vocal', 'no vocals', 'guitars']
[]
['ambient']
['dance']
['techno']
['techno']
['beats', 'funky', 'trance', 'male', 'vocal', 'techno']
[]
[]
['synth', 'electronic', 'electro', 'techno']
[]
['classical', 'guitar', 'drums', 'mellow', 'piano', 'slow', 'rock']
['soft rock', 'guitar', 'loud', 'dark', 'vocal', 'rock']
['guitar']
['hard rock', 'male vocal', 'heavy', 'guitar', 'male voice', 'loud', 'male', 'rock', 'metal']
['guitar', 'man', 'rock']
['ambient', 'synth', 'electronic', 'no vocal', 'slow']
['guitar', 'strings']
['male vocal', 'guitar', 'drums', 'man singing', 'man', 'male vocals', 'slow', 'male', 'rock']
[]
['male vocal', 'guitar', 'drums', 'rock']
[]
['drums', 'pop', 'singing']
['guitar', 'drums', 'rock']
['male vocal', 'vocals', 'guitar', 'drums', 'fast', 'male', 'rock', 'beat']
[]
['guitar', 'country']
['guitar', 'solo', 'folk', 'acoustic', 'blues']
['guitar', 'fast', 'country']
['guitar']
['percussion', 'drums', 'not opera', 'beat']
['female', 'female voice', 'ambient', 'voice', 'pop', 'slow', 'woman', 'techno']
[]
['ambient', 'female vocal', 'slow']
[]
['guitar', 'country', 'rock']
['male voice', 'not classical', 'pop', 'rock']
['male voice', 'country', 'rock']
['guitar', 'male', 'vocal', 'rock']
[]
['classical', 'solo', 'strings', 'violin', 'cello']
['classical']
['classical', 'strings', 'classic', 'fast', 'violin', 'cello']
['classical', 'strings', 'bass']
[]
['harpsichord', 'guitar', 'strings']
['harpsichord', 'classical', 'solo', 'harpsicord', 'violin', 'baroque']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'harpsicord', 'classic', 'no vocal', 'no vocals', 'harp', 'piano', 'old', 'slow', 'baroque']
['harpsichord', 'classical', 'solo', 'harpsicord', 'instrumental', 'slow']
['harpsichord', 'classical', 'guitar', 'solo', 'harpsicord', 'harp']
['harpsichord', 'classical', 'harpsicord']
['piano']
['synth', 'fast', 'trance', 'dance', 'techno']
['synth', 'techno', 'beat']
['techno']
['synth', 'electronic', 'no guitar', 'fast', 'fast beat', 'techno', 'beat']
['fast', 'techno']
['synth', 'piano', 'soft']
['guitar', 'man singing']
['vocals', 'guitar', 'male voice']
['soft rock', 'jazz', 'guitar', 'new age', 'synth', 'not classical', 'no violin', 'country', 'strange', 'modern', 'pop', 'piano']
[]
['synth']
[]
['male vocal', 'male voice', 'drums', 'male', 'techno']
['voice']
['female voice', 'loud', 'rock']
[]
['synth', 'beat']
['synth', 'electro', 'trance', 'jungle', 'jazzy', 'techno']
[]
['fast']
['beat']
['spacey', 'electric', 'ambient', 'new age', 'synth', 'keyboard', 'drums', 'electronic', 'fast', 'electro', 'electronica', 'disco', 'slow', 'dance', 'calm', 'techno', 'house', 'upbeat']
['quiet']
[]
['fast', 'trance', 'techno']
[]
[]
['fast', 'trance', 'techno']
['bass', 'electronic']
['fast', 'dance', 'techno']
['no vocal', 'fast', 'trance', 'dance', 'techno']
['quiet', 'drums', 'electronic', 'slow', 'techno']
['ambient', 'beat']
['synth', 'bass', 'electronic', 'fast', 'electro', 'trance', 'disco', 'dance', 'techno', 'beat']
['fast', 'techno']
['fast', 'dance', 'techno', 'beat']
['synth', 'loud', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'fast beat', 'rock', 'dance', 'techno', 'beat']
['techno']
['synth', 'electronic', 'dance', 'techno']
['female', 'female voice', 'girl', 'modern', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing', 'female singer']
['electronic', 'electro', 'techno', 'beat']
['dance']
['dance']
['fast', 'beat']
[]
['no strings', 'no vocal', 'dance', 'techno', 'beat']
['opera', 'vocal', 'choir']
['choral', 'chant', 'choir']
['no piano', 'guitar', 'quiet', 'strings', 'bass', 'drums', 'modern', 'industrial']
['no piano', 'classical', 'synth', 'strings', 'bass', 'violin', 'slow', 'techno', 'soft']
['singer', 'vocals', 'classical', 'female', 'strings', 'opera', 'violin', 'female vocal', 'vocal', 'woman']
['slow']
['drums']
['drums', 'no guitar', 'slow', 'beat']
['drums', 'female vocal', 'vocal']
['world', 'bongos', 'vocals', 'female', 'female voice', 'voice', 'girl', 'drums', 'tribal', 'female vocal', 'vocal', 'indian', 'woman', 'singing', 'women']
['ambient', 'drums', 'tribal']
['no voice', 'no voices', 'synth', 'electronic', 'electro', 'synthesizer', 'modern', 'techno']
['synth', 'electronic']
[]
['synth']
['no beat', 'dance']
['sitar', 'quiet', 'slow']
['classical', 'quiet', 'no vocals']
[]
['sitar', 'no vocals', 'eastern']
['sitar', 'slow', 'indian']
['sitar', 'indian', 'oriental']
['guitar', 'strings', 'slow']
['rock']
[]
['loud', 'male', 'rock']
['no voice', 'no piano', 'guitar', 'no vocal']
['indian', 'oriental']
[]
['strange', 'piano', 'indian']
['sitar', 'indian']
['india']
['no voice', 'guitar', 'no vocals', 'rock', 'different']
['guitar', 'blues', 'rock']
['male vocal', 'male singer', 'man', 'male', 'blues', 'rock']
[]
['beats', 'synth', 'loud', 'electronic', 'fast', 'electro', 'techno', 'beat']
['female', 'drums', 'pop', 'woman', 'techno']
['male voice', 'electronic', 'electro', 'techno']
['vocals', 'electronic', 'electro']
['woman']
[]
['female voice', 'voice', 'strings', 'male voice', 'talking', 'weird', 'slow']
['no guitar', 'opera', 'man singing', 'male']
['choir']
['men', 'chanting', 'choral', 'opera', 'chant', 'vocal', 'monks', 'choir']
['no piano', 'chanting', 'choral', 'opera', 'chant', 'male', 'choir']
['chorus', 'male voice', 'chant', 'choir']
['no piano', 'chanting', 'opera', 'chant', 'man', 'male', 'vocal']
['male vocal', 'male voice', 'opera', 'man singing', 'chant', 'man', 'male vocals', 'slow', 'male', 'vocal', 'choir']
['chanting', 'choral', 'chant']
['chorus', 'men', 'classical', 'opera', 'chant', 'male', 'choir']
['silence', 'chimes', 'bells']
['vocals', 'foreign', 'female', 'guitar', 'folk', 'arabic', 'spanish', 'vocal', 'indian', 'singing', 'female vocals', 'voices', 'choir', 'women']
[]
[]
['guitar', 'rock']
['voice', 'male voice', 'loud', 'fast', 'rock', 'metal']
['guitar', 'rock']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'hard', 'male', 'rock', 'metal']
['hard rock', 'loud', 'heavy metal', 'male', 'rock', 'metal']
['rock']
['guitar']
['guitar', 'country', 'blues', 'rock']
['guitar']
['dance', 'techno', 'beat']
['no voice', 'drums', 'electronic', 'no vocal', 'fast', 'dance', 'techno', 'beat']
['techno']
['synth', 'no vocal', 'electronica', 'techno']
['no piano', 'synth', 'electronic', 'techno', 'beat']
['beats', 'electric', 'synth', 'drums', 'electronic', 'no vocal', 'fast', 'modern', 'fast beat', 'dance', 'techno', 'beat', 'upbeat']
['drums', 'upbeat']
['fast']
['electronic', 'organ', 'techno', 'beat']
['rock']
['vocals', 'guitar', 'male voice', 'loud', 'rock', 'guitars']
['electric guitar', 'rock']
['vocals', 'folk', 'strings', 'no guitar', 'weird', 'opera', 'violin', 'irish', 'lol', 'vocal', 'singing', 'voices', 'women']
[]
['violin', 'fiddle']
['drum', 'drums', 'beat']
['female', 'female vocal', 'woman', 'singing', 'female vocals']
['female', 'guitar']
['strings', 'no guitar']
['violins', 'strings', 'violin', 'celtic']
['folk', 'strings', 'loud', 'violin', 'celtic']
['classical', 'folk', 'strings', 'country', 'violin', 'irish', 'celtic', 'cello', 'upbeat', 'fiddle']
['rock']
['hard rock', 'male vocal', 'loud', 'drums', 'fast', 'man', 'male vocals', 'male', 'rock']
['no voice', 'guitar', 'new age', 'synth', 'drum', 'loud', 'drums', 'electronic', 'not rock', 'no vocal', 'weird', 'fast', 'no vocals', 'pop', 'rock', 'techno', 'flute', 'beat', 'upbeat']
[]
['vocals', 'voice', 'male vocals', 'vocal', 'singing', 'choir']
['flute']
['celtic', 'flutes']
[]
['guitar', 'folk', 'male voice', 'acoustic guitar', 'country', 'man', 'male']
['bongos', 'beats', 'drums', 'electronic', 'eastern', 'slow']
['eastern', 'indian']
['bells']
['sitar', 'drums', 'eastern', 'indian']
['sitar', 'drums', 'electronic', 'no vocal', 'indian']
['ambient', 'drums', 'indian']
['drums', 'indian', 'beat']
['no voice', 'drums', 'no vocals', 'indian', 'soft']
['drums']
['bongos']
['solo', 'fast', 'piano', 'cello', 'soft']
['violin', 'piano', 'cello']
['modern', 'piano']
['piano']
['classical', 'violin', 'piano', 'cello', 'soft']
[]
['chorus', 'classical', 'quiet', 'ambient', 'voice', 'bass', 'chanting', 'opera', 'male singer', 'chant', 'drone', 'bells', 'slow', 'vocal', 'not english']
['opera', 'man', 'singing']
['classical', 'choral', 'bells', 'male', 'voices', 'choir']
['chorus', 'bells', 'choir']
['bells']
['quiet']
['ambient', 'new age', 'dark']
['ambient', 'synth']
[]
['synth', 'electronic', 'echo']
[]
[]
['quiet', 'ambient', 'synth', 'airy', 'slow']
['electronic']
['ambient']
['ambient']
['ambient', 'techno']
[]
['ambient', 'synth', 'techno']
['ambient', 'techno']
[]
['ambient', 'techno']
[]
['slow']
['electronic', 'no guitar']
['ambient', 'synth', 'strings', 'electronic', 'organ', 'slow']
[]
['electronic']
['quiet', 'synth', 'electronic', 'electro', 'slow', 'techno', 'soft']
['quiet', 'electronic']
['silence', 'quiet']
['vocals', 'female', 'guitar', 'female voice', 'ambient', 'voice', 'bells', 'female vocal', 'woman', 'calm']
['vocals', 'female', 'guitar', 'female vocal', 'soft']
['guitar', 'strings', 'woman', 'singing', 'female vocals']
['guitar', 'slow', 'vocal']
['female vocals']
['jazz', 'trumpet', 'sax', 'flute']
['jazz', 'trumpet', 'jazzy']
['funky', 'guitar', 'trumpet', 'drums', 'pop', 'slow', 'jazzy', 'techno', 'beat']
['drums', 'beat']
['bass', 'beat']
['foreign', 'female', 'drums', 'indian', 'woman', 'techno', 'beat']
['beats', 'funky', 'synth', 'bass', 'drums', 'electronic', 'electro', 'no vocals', 'techno', 'beat']
['synth', 'pop', 'dance', 'techno', 'beat']
['heavy', 'techno', 'beat']
['no voices', 'ambient', 'synth', 'drum', 'repetitive', 'electronic', 'fast', 'electro', 'slow', 'techno', 'beat']
['electronic']
['ambient', 'synth', 'electronic', 'electronica', 'no flute', 'slow', 'techno', 'beat']
['electric', 'electronic', 'electro', 'no vocals', 'techno']
['no voice', 'loud', 'electronic', 'fast', 'techno', 'beat']
['guitar', 'piano']
['classical', 'guitar', 'quiet', 'harp', 'piano', 'different', 'soft']
['classical', 'guitar', 'quiet', 'strings', 'piano', 'slow']
['no voice', 'classical', 'guitar', 'quiet', 'harp', 'piano', 'slow', 'soft']
['male vocal', 'chanting', 'opera', 'arabic', 'male', 'choir']
['solo', 'male voice', 'chanting', 'opera', 'chant', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['choral']
['classical', 'guitar', 'solo', 'strings', 'harpsicord', 'acoustic guitar', 'classical guitar', 'harp', 'spanish', 'slow']
['no voice', 'classical', 'guitar']
['sitar', 'guitar', 'strings']
['no voice', 'sitar', 'foreign', 'guitar', 'no vocals', 'eastern', 'indian']
['sitar', 'no singing', 'no vocals', 'eastern', 'indian']
['sitar', 'guitar', 'strings', 'drums', 'eastern', 'indian', 'oriental', 'beat']
['foreign', 'guitar', 'middle eastern', 'fast', 'oriental']
['sitar', 'eastern', 'indian']
['quiet', 'no vocal', 'slow', 'flute']
['slow', 'flute']
['sitar', 'drums', 'flutes', 'indian', 'flute']
['drum', 'drums', 'flute']
['drums', 'flute']
['no vocal', 'indian', 'flute']
['wind', 'new age', 'drum', 'drums', 'slow', 'indian', 'flute', 'oriental']
['country', 'blues']
['jazz', 'guitar', 'banjo', 'folk', 'country', 'blues']
['guitar', 'solo', 'no singing', 'blues']
[]
['keyboard', 'weird']
['ambient']
['no beat', 'ambient', 'new age', 'synth', 'orchestral', 'slow']
['synth', 'electronic']
[]
['ambient']
['ambient', 'slow']
['ambient']
['no voice']
['ambient', 'no vocal']
[]
['ambient', 'strings', 'weird', 'bells']
[]
['chimes', 'spacey', 'no beat', 'ambient', 'electronic', 'no vocals', 'bells', 'slow']
['ambient', 'synth']
[]
['classical', 'ambient', 'organ', 'slow']
['electronic', 'organ']
['ambient', 'new age', 'slow']
[]
['spacey', 'ambient', 'loud', 'organ', 'orchestra']
['organ']
['spacey', 'no beat', 'ambient', 'new age', 'synth', 'organ', 'instrumental', 'slow']
['ambient', 'new age', 'synth', 'organ', 'slow']
['spacey', 'ambient', 'synth', 'space', 'slow', 'techno']
['no strings', 'horns', 'classical', 'no voices', 'ambient', 'new age', 'synth', 'strings', 'electronic', 'organ', 'no vocal', 'no vocals', 'bells', 'slow']
['ambient']
['ambient', 'synth', 'instrumental', 'slow', 'soft']
['electronic', 'slow']
[]
['spacey', 'ambient', 'space']
[]
['classical', 'no vocal', 'flute']
['classical', 'violin', 'slow', 'flute']
['quiet', 'ambient']
[]
['electronic', 'weird']
['ambient']
['ambient']
['no piano', 'ambient', 'piano', 'slow']
[]
['spacey', 'ambient']
['ambient', 'slow']
['harpsichord', 'classical']
['harpsichord', 'classical', 'fast']
['harpsichord', 'classical', 'fast', 'baroque']
['synth', 'loud', 'electronic', 'weird', 'techno']
['loud', 'electronic']
['loud', 'beat']
[]
['loud', 'electronic', 'rock', 'techno', 'noise']
[]
[]
['flute']
['guitar']
['classical', 'guitar', 'strings', 'classical guitar', 'no vocals', 'instrumental', 'lute', 'vocal']
['no voice', 'guitar', 'no vocals', 'piano']
['guitar']
['guitar', 'strings', 'acoustic']
['guitar']
['beat']
[]
['guitar', 'loud', 'drums', 'no vocal', 'fast', 'rock', 'techno', 'beat']
['vocals', 'female', 'loud', 'not classical', 'pop']
[]
['no vocals']
[]
['vocals', 'female', 'female vocal', 'women']
['female', 'female voice', 'opera', 'woman', 'woman singing', 'singing', 'choir']
['singing']
['weird', 'electro']
['synth', 'electronic', 'not classical']
[]
['no voice', 'techno']
[]
[]
['opera', 'male']
['silence', 'female', 'guitar', 'choral', 'vocal', 'not english']
['vocals', 'female', 'opera', 'vocal']
['classical', 'violins', 'strings', 'orchestral', 'orchestra']
[]
['violin']
[]
['classical', 'choral', 'opera', 'violin', 'choir']
['opera']
['classical', 'choir']
['silence', 'guitar', 'piano']
['guitar']
['ambient', 'synth', 'techno']
['guitar', 'electronic', 'rock']
['guitar', 'loud', 'rock']
['guitar', 'rock']
['guitar', 'solo', 'electric guitar', 'rock']
['jazz', 'no singing', 'instrumental', 'piano']
['jazz', 'synth', 'drums', 'electronic', 'jazzy']
['fast', 'modern', 'piano']
['jazz', 'piano']
['classical', 'piano']
['classical', 'solo', 'fast', 'piano']
['guitar']
['hard rock', 'male vocal', 'male vocals', 'male', 'rock', 'metal']
['heavy', 'loud', 'heavy metal', 'rock', 'metal']
['guitar', 'guitars']
['guitar', 'solo', 'strings', 'guitars']
['guitar', 'folk', 'strings', 'acoustic', 'no vocals', 'mellow', 'guitars']
['guitar', 'country', 'slow']
[]
['clarinet', 'classical', 'opera', 'violin', 'oboe', 'slow', 'flute']
['female opera', 'classical', 'female', 'female voice', 'opera', 'violin', 'operatic', 'slow']
['female', 'opera', 'violin', 'slow']
['female opera', 'classical', 'female', 'female voice', 'strings', 'opera', 'soprano', 'female vocal', 'vocal', 'woman', 'singing']
['opera']
['classical', 'not rock']
[]
['harpsichord', 'classical']
['harpsichord', 'classical', 'solo', 'harpsicord', 'harp', 'baroque']
['classical']
['harpsichord', 'classical']
['harpsichord']
['rock']
['guitar', 'drums', 'no vocals', 'rock', 'beat']
['loud', 'punk', 'rock']
['harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'harpsicord']
['no voice', 'harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord', 'fast']
['harpsichord', 'classical', 'solo', 'strings', 'classic', 'piano', 'old', 'baroque']
[]
['harpsichord', 'classical', 'harpsicord', 'baroque']
[]
[]
['guitar', 'country', 'singing']
['male vocal', 'guitar', 'folk', 'male singer', 'country', 'male']
['vocals', 'guitar', 'man singing', 'country', 'man', 'male', 'singing']
[]
['guitar']
[]
[]
[]
['male vocal', 'man singing', 'pop', 'male', 'rock', 'singing']
['male vocal', 'vocals', 'guitar', 'male voice', 'loud', 'drums', 'male singer', 'male', 'rock']
['sitar', 'indian']
['sitar', 'no vocal', 'indian']
[]
['sitar', 'strings', 'drums', 'fast', 'eastern', 'indian', 'india']
['sitar', 'country', 'lol', 'modern', 'eastern', 'indian']
['no voice', 'drums', 'rock']
['techno']
['drums', 'beat']
['bass', 'drums', 'electronic', 'fast', 'techno', 'beat']
['drums', 'no vocals', 'beat']
['no singing']
[]
['ambient', 'techno', 'beat']
[]
['ambient', 'new age', 'synth', 'strings', 'keyboard', 'electronic', 'violin']
['violin']
['classical', 'strings']
['guitar', 'synth', 'violin', 'piano']
['classical', 'strings', 'violin', 'no vocals', 'instrumental']
['violins', 'strings', 'violin']
[]
['ambient', 'violin', 'no flute']
['drum', 'drums', 'electronic', 'beat']
['jazz', 'guitar', 'synth', 'drums']
[]
['jazz', 'keyboard', 'jazzy']
[]
['quiet', 'no drums', 'flute']
['slow', 'flute']
['wind', 'tribal', 'flute']
['solo', 'flute']
[]
[]
['male vocal', 'vocals', 'soft rock', 'guitar', 'voice', 'man singing', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'guitars', 'singing', 'voices', 'soft']
[]
[]
['vocals', 'soft rock', 'guitar', 'pop', 'light', 'singing']
['voices']
['pop', 'vocal']
['male vocal', 'guitar', 'voice', 'male voice', 'man singing', 'man', 'slow', 'male', 'vocal']
['guitar', 'slow']
['male vocal', 'drum', 'voice', 'male voice', 'man', 'slow', 'male', 'vocal', 'singing']
['voice', 'male voice', 'loud', 'man', 'male vocals', 'slow', 'male']
['male voice']
['dance', 'techno']
['beats', 'funky', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['techno', 'beat']
['dance', 'techno', 'beat']
['beats', 'funk', 'repetitive', 'electronic', 'fast', 'dance', 'techno', 'beat']
[]
['female', 'opera', 'vocal', 'woman']
['opera']
['strings']
['duet', 'vocals', 'classical', 'female', 'opera', 'woman', 'singing', 'voices', 'women', 'english']
['opera']
[]
['vocals', 'foreign', 'female', 'violins', 'strings', 'classic', 'opera', 'violin', 'female vocal', 'orchestra', 'vocal', 'woman', 'singing', 'choir']
['female opera', 'female', 'opera', 'woman', 'female vocals']
[]
[]
['female voice', 'opera']
['classical', 'solo', 'strings', 'violin', 'slow', 'cello']
['classical', 'no singing', 'strings', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical']
['violin', 'cello', 'fiddle']
['classical', 'quiet', 'strings', 'violin', 'instrumental']
['classical', 'violins', 'strings', 'classic', 'violin', 'cello']
['classical', 'voice', 'opera', 'operatic', 'man', 'slow', 'male', 'vocal', 'woman']
['voice', 'opera', 'chant', 'sad', 'woman']
[]
['female', 'drums', 'spanish', 'techno', 'beat']
['pop', 'dance', 'female vocals', 'techno', 'beat', 'hip hop']
['fast', 'electro', 'indian', 'beat']
[]
['harpsichord', 'classical', 'harp']
['harpsichord']
[]
[]
['classical', 'choral', 'choir']
['chorus', 'classical', 'classic', 'choral', 'opera', 'vocal', 'choir']
['choir']
['chorus', 'vocals', 'classical', 'choral', 'opera', 'vocal', 'singing', 'choir']
['ambient', 'electronic', 'electronica', 'fast beat', 'echo', 'techno']
['electric', 'fast']
['drums']
['guitar', 'synth', 'loud', 'electronic', 'fast', 'electric guitar', 'techno']
['ambient', 'synth', 'repetitive', 'fast', 'fast beat', 'pop', 'dance', 'techno', 'beat']
[]
['electronic', 'techno']
['vocals', 'heavy', 'guitar', 'loud', 'rock']
['guitar', 'rock']
['guitar', 'solo', 'bass', 'fast', 'different']
['guitar', 'strings', 'bass', 'fast', 'jazzy']
[]
['sitar', 'eastern', 'indian', 'india', 'oriental']
['sitar', 'foreign', 'drums', 'fast', 'tribal', 'indian']
[]
['guitar', 'strings', 'no vocal', 'piano']
['quiet', 'ambient', 'synth', 'electronic', 'different']
[]
['female vocals', 'techno']
[]
['upbeat']
['electro', 'techno']
['female vocal', 'slow', 'woman', 'not english']
['no voice', 'electronic', 'techno']
['electro', 'voices', 'beat']
['female', 'electronic', 'fast', 'female vocals']
['female', 'new age', 'electronic', 'pop', 'woman']
['no strings', 'synth', 'drums', 'electronic', 'electro', 'techno']
['no vocals', 'synthesizer', 'techno']
['quiet', 'no guitar']
['quiet', 'slow', 'flute', 'soft']
['quiet', 'slow', 'soft']
['classical', 'quiet', 'ambient', 'harp', 'piano', 'slow', 'flute', 'soft']
['classical', 'guitar', 'quiet', 'ambient', 'new age', 'strings', 'slow', 'flute', 'soft']
[]
['guitar', 'quiet', 'harp', 'slow', 'flute', 'soft']
['woodwind', 'slow', 'no drums', 'flute']
['slow', 'calm']
['no piano', 'ambient', 'no vocal', 'instrumental']
['drums', 'electronic', 'slow']
['drum']
['drums', 'reggae']
['drums']
['ambient', 'drums', 'calm', 'beat']
[]
['electronic', 'weird', 'techno']
['electronic', 'dance', 'techno']
['female', 'electronic', 'trance', 'female vocal', 'vocal', 'woman', 'woman singing', 'dance', 'singing', 'techno']
['electric', 'loud', 'fast', 'trance', 'dance', 'techno', 'upbeat']
['vocals', 'female', 'woman', 'techno']
['female', 'fast', 'trance', 'vocal', 'dance', 'techno']
['techno']
['guitar', 'instrumental']
['guitar', 'slow']
['guitar', 'slow', 'soft']
['classical', 'flute']
['male voice', 'man', 'male']
['not classical', 'eastern', 'slow', 'indian']
[]
['electronic', 'techno']
['electric', 'synth', 'electronic', 'electro', 'no vocals', 'pop', 'slow', 'techno']
['electronic']
['loud', 'fast', 'techno']
[]
['no strings', 'wind', 'ambient', 'drums', 'electronic', 'fast', 'modern', 'industrial', 'jungle', 'techno', 'beat']
['techno']
[]
['silence', 'spacey', 'quiet', 'synth', 'water']
['ambient', 'new age', 'slow', 'soft']
[]
['spacey', 'ambient', 'synth', 'electronic', 'slow']
['spacey', 'ambient', 'new age', 'synth', 'electronic', 'soft']
['quiet', 'ambient', 'synth', 'electronic', 'slow', 'soft']
['ambient', 'new age', 'synth', 'soft']
['horns', 'classical', 'violins', 'trumpet', 'strings', 'fast', 'violin', 'orchestra']
['classical', 'trumpet']
[]
['guitar', 'acoustic', 'classic', 'string', 'slow', 'soft']
['guitar', 'strings', 'no vocal', 'slow']
['classical', 'guitar']
['eerie', 'quiet', 'ambient', 'weird', 'violin', 'soft']
['slow']
[]
['classical', 'new age', 'strings', 'no vocal']
['ambient', 'mellow', 'slow']
['piano', 'slow']
[]
['heavy', 'loud', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'rock', 'metal']
['hard rock', 'loud', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'rock', 'metal']
['rock']
['classical', 'guitar', 'quiet', 'solo', 'ambient', 'strings', 'acoustic', 'low', 'piano', 'spanish', 'slow', 'soft']
['guitar', 'strings', 'harp', 'lute', 'soft']
['guitar', 'soft']
['classical', 'guitar', 'banjo', 'solo', 'strings', 'medieval', 'classic', 'slow', 'soft']
['classical', 'guitar', 'medieval', 'slow']
['guitar', 'classical guitar']
['classical', 'guitar', 'harp', 'no flute']
['male vocal', 'male voice', 'opera', 'male']
[]
['electronic', 'fast', 'techno']
['fast', 'trance', 'dance', 'techno', 'beat']
['techno']
['no voice', 'trance', 'disco', 'dance', 'techno']
['electric', 'synth', 'fast', 'trance', 'dance', 'techno', 'house']
['no vocal', 'fast', 'no vocals', 'techno']
['classical', 'female', 'opera', 'vocal']
['classical', 'strings', 'classic', 'opera', 'violin']
['opera']
['classical', 'guitar', 'solo', 'no vocals', 'harp', 'piano', 'slow']
['classical', 'guitar', 'strings', 'acoustic', 'slow']
['guitar', 'slow']
['classical', 'guitar', 'piano']
['guitar']
['classical', 'guitar', 'slow', 'soft']
['guitar', 'slow']
['guitar', 'solo', 'slow', 'calm', 'soft']
['classical', 'guitar', 'repetitive', 'strings', 'no vocals', 'slow']
['vocals', 'jazz', 'synth', 'drum', 'disco', 'pop', 'male', 'vocal', 'dance', 'jazzy', 'singing']
['trumpet', 'male singer', 'pop']
['beats', 'pop', 'vocal']
['pop', 'singing']
['female', 'guitar', 'male singer', 'man', 'pop', 'rock', 'singing']
['vocals', 'rock']
[]
['vocals', 'classical', 'female', 'quiet', 'voice', 'classic', 'violin', 'slow', 'woman', 'calm', 'soft']
['chorus', 'vocals', 'classical', 'female', 'quiet', 'voice', 'opera', 'violin', 'woman', 'singing']
['classical', 'female', 'opera']
[]
['female', 'female voice', 'voice', 'strings', 'classic', 'opera', 'soprano', 'vocal', 'woman', 'singing']
['classical', 'female', 'female voice', 'opera', 'slow', 'woman', 'singing', 'female vocals']
['chorus', 'vocals', 'classical', 'choral', 'voices', 'choir']
['choral', 'choir']
['chorus', 'choral', 'choir']
['classical', 'choral', 'opera', 'slow', 'choir']
[]
['techno']
['drums', 'electronic', 'fast', 'electronica', 'techno', 'beat']
['synth', 'percussion', 'drums', 'electronic', 'fast', 'techno', 'beat']
['drums', 'techno', 'beat']
[]
['guitar', 'harp', 'lute', 'baroque']
['classical', 'guitar', 'strings', 'medieval', 'string', 'no flute']
['harpsichord', 'classical', 'guitar', 'medieval', 'lute']
['classical', 'guitar', 'harp']
['male vocals']
['male vocal', 'happy', 'loud', 'man', 'pop', 'male vocals', 'male']
['loud', 'male', 'rock']
['not classical', 'slow']
['piano']
['piano']
['quiet', 'female voice', 'ambient', 'new age', 'synth', 'voice', 'strings', 'no flute', 'slow', 'soft']
['female voice', 'female vocal', 'vocal', 'singing']
['vocals', 'foreign', 'female', 'female voice', 'ambient', 'new age', 'female vocal', 'slow', 'vocal', 'singing', 'female vocals', 'female singer']
['no piano']
['foreign', 'female', 'opera', 'female vocal', 'woman', 'female vocals', 'voices', 'women']
['percussion', 'fast']
['new age', 'drums', 'beat']
['beats', 'drums', 'tribal', 'flute']
['percussion']
[]
['no beat', 'ambient', 'slow', 'flute']
[]
[]
[]
['no flute']
['ambient', 'percussion', 'drums', 'tribal']
['drums']
['guitar', 'quiet', 'violin', 'harp', 'no drums']
['slow']
['sitar', 'no piano', 'classical', 'strings', 'violin', 'harp']
['classical', 'strings', 'electronic']
['sitar', 'classical', 'guitar', 'strings']
['foreign', 'strings', 'no vocal', 'fast']
[]
['plucking', 'sitar', 'guitar', 'banjo', 'strings', 'harp', 'slow', 'indian', 'oriental']
['no voice', 'strings', 'no vocals', 'harp']
[]
['choral', 'choir']
['choral', 'vocal', 'choir']
['classical', 'harp', 'piano']
['opera']
[]
['male voice', 'opera', 'vocal']
['weird', 'slow']
['guitar', 'drum', 'strings', 'bass', 'drums', 'violin', 'jazzy', 'beat']
['voice', 'strings', 'electronic', 'no guitar', 'violin', 'techno', 'beat', 'rap']
[]
['violin']
['jazz', 'electric', 'electronic', 'weird', 'sax', 'jazzy', 'techno', 'beat', 'rap']
['beats', 'beat']
[]
['quiet', 'drums']
['synth', 'no vocal', 'beat']
[]
['fast', 'beat']
[]
['silence', 'electronic', 'techno']
['techno']
['electronic', 'techno']
['techno']
['electric', 'synth', 'electronic', 'weird', 'electro', 'no drums', 'techno']
['beats', 'synth', 'electronic', 'electronica', 'slow', 'techno', 'beat']
['electric', 'synth', 'electronic', 'no guitar', 'no vocals', 'techno', 'beat']
['synth', 'electronic', 'techno']
['no singer']
['no voices', 'electronic', 'no vocal', 'no vocals', 'electronica', 'instrumental', 'techno']
['electric', 'synth', 'no vocals']
['happy', 'synth', 'drums', 'electronic', 'electronica', 'instrumental', 'techno', 'beat']
['electronic', 'techno']
['beats', 'electric', 'happy', 'synth', 'electronic', 'no vocal', 'fast', 'no vocals', 'electronica', 'slow', 'techno', 'beat', 'upbeat', 'soft']
['soft rock', 'guitar', 'country', 'pop', 'rock']
['male vocal', 'vocals', 'men', 'guitar', 'male voice', 'drums', 'acoustic guitar', 'man singing', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'male voice', 'man', 'pop', 'male vocals', 'sad', 'slow', 'male', 'rock', 'singing']
['male vocal', 'no piano', 'guitar']
['male vocal', 'guitar', 'rock']
['classical', 'guitar', 'banjo', 'folk', 'slow']
['classical', 'guitar']
['flute']
[]
['foreign', 'female', 'chant', 'eastern', 'indian', 'woman', 'singing', 'female vocals', 'oriental']
['ambient', 'drums', 'light']
[]
['woodwind', 'solo', 'slow', 'flute']
[]
['female vocal', 'rock']
['vocal']
[]
['vocals', 'female', 'female voice', 'modern', 'pop', 'female vocal', 'woman', 'english']
['female', 'drums', 'female vocal', 'vocal', 'woman', 'rock', 'female singer']
['electric guitar']
['guitar', 'rock', 'metal']
[]
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'heavy metal', 'hard', 'rock', 'metal']
['hard rock', 'rock']
['hard rock', 'guitar', 'loud', 'heavy metal', 'hard', 'rock', 'metal']
['guitar', 'rock']
['guitar']
['male vocal', 'guitar', 'male voice', 'country', 'male vocals', 'male', 'vocal', 'no drums']
[]
['guitar', 'man', 'singing']
[]
['rock']
[]
[]
['vocals', 'foreign', 'female', 'female voice', 'voice', 'medieval', 'opera', 'female vocal', 'vocal', 'woman', 'not english', 'female singer']
['choir']
['classical', 'choir']
['choral', 'opera', 'choir']
['no violin', 'choral', 'opera', 'voices', 'choir']
['vocals', 'choir']
['opera']
['chorus', 'classical', 'female', 'choral', 'opera', 'choir']
['vocals', 'guitar', 'medieval', 'opera', 'male', 'vocal', 'singing']
['male vocal', 'classical', 'guitar', 'medieval', 'male voice', 'opera', 'irish', 'man', 'lute', 'male vocals', 'male', 'vocal', 'english']
['singing']
[]
['harpsichord', 'classical', 'no vocals']
['electronic', 'techno']
['fast', 'techno']
['drums', 'fast', 'dance', 'techno', 'beat']
['techno', 'beat']
['beats', 'synth', 'fast', 'dance', 'techno', 'beat']
[]
['loud', 'no vocal', 'fast', 'electronica', 'techno', 'beat']
['electronic', 'fast', 'techno', 'beat']
['indian']
['beats', 'funky', 'indian']
['no flute']
['drums']
['foreign', 'indian', 'upbeat']
['ambient', 'female vocals']
['female', 'female voice', 'vocal']
['pop', 'female vocal', 'woman']
[]
['clarinet', 'classical', 'solo', 'fast', 'horn', 'oboe', 'piano', 'flute']
['clarinet', 'classical', 'piano', 'sax', 'flute']
['clarinet', 'piano', 'flute']
['vocals', 'funky', 'female', 'ambient', 'synth', 'electronic', 'modern', 'female vocal', 'woman', 'techno', 'not opera', 'beat']
[]
[]
['female', 'fast', 'vocal', 'woman']
[]
[]
['eastern', 'slow', 'flute', 'oriental']
['slow', 'flute']
['oriental']
['slow', 'flute']
[]
['quiet', 'flute', 'soft']
['no voice', 'percussion', 'drum', 'drums', 'no vocal', 'no vocals', 'beat', 'female singer']
[]
['beats', 'female', 'female voice', 'voice', 'bass', 'female vocal', 'slow', 'woman', 'rock', 'singing', 'female vocals', 'beat', 'female singer']
['no voice', 'vocals', 'guitar', 'electronic', 'no vocal', 'no vocals', 'slow', 'beat']
['beat']
['chorus', 'vocals', 'choral', 'opera', 'chant', 'singing', 'choir']
['choral', 'opera', 'chant', 'male', 'voices', 'choir']
['chorus', 'choral', 'male vocals', 'choir']
[]
[]
['classical', 'opera', 'vocal', 'women']
['classical', 'opera', 'violin', 'soft']
['opera']
['classical', 'opera', 'singing']
['synth', 'percussion', 'repetitive', 'drums', 'electronic', 'techno', 'house', 'beat', 'upbeat']
['drums', 'techno', 'beat']
['beats', 'electric', 'drums', 'trance', 'dance', 'techno', 'house', 'beat']
['techno']
['drums', 'techno', 'beat']
['drums', 'electronic', 'fast', 'techno']
[]
[]
['beats', 'synth', 'drum', 'bass', 'weird', 'no vocals', 'deep', 'techno', 'beat']
['chant']
['choral', 'vocal', 'choir']
['male vocal', 'opera', 'male vocals']
[]
['slow', 'vocal', 'monks']
['jazz', 'guitar', 'drums', 'blues']
['jazz', 'male singer', 'blues', 'rock']
['vocals', 'rock']
['male vocal', 'guitar', 'male', 'blues', 'rock']
['beats', 'foreign', 'voice', 'fast', 'male', 'dance', 'beat', 'rap', 'hip hop']
['drums', 'electronic', 'beat']
['beats', 'funk', 'drum', 'bass', 'electronic', 'electro', 'dance', 'techno', 'house', 'beat', 'hip hop']
['fast']
['disco', 'techno']
['no voice', 'classical', 'no vocals', 'orchestra', 'flute']
['classical', 'flute']
['clasical', 'classical', 'strings', 'classic', 'violin', 'orchestral', 'orchestra', 'flute']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestral', 'orchestra', 'old', 'flute']
['classical', 'classic', 'flute']
[]
['classical', 'wind', 'strings', 'violin', 'orchestra', 'flute']
['classical', 'flute']
[]
[]
[]
['classical', 'strings', 'string', 'violin', 'flute']
['techno']
[]
['spacey', 'ambient', 'synth', 'drums', 'electronic', 'mellow', 'techno']
['synth', 'techno']
['ambient', 'new age', 'no guitar', 'no vocals', 'slow']
['ambient']
[]
['guitar']
[]
[]
['guitar']
[]
['drum', 'drums']
['drums', 'indian']
['bongos', 'indian']
['indian']
['sitar', 'beats', 'drums', 'fast', 'arabic', 'eastern', 'indian', 'oriental']
['sitar', 'guitar', 'arabic', 'indian']
['sitar', 'indian', 'oriental']
['harpsichord', 'sitar', 'classical', 'solo', 'no violin', 'fast', 'no vocals', 'harp', 'piano', 'eastern', 'indian']
['plucking', 'solo', 'harpsicord', 'no vocal', 'piano']
['no voice', 'harpsichord', 'sitar', 'banjo']
['strings']
['harpsichord', 'solo', 'strings', 'no vocal', 'piano']
['synth', 'weird', 'dark', 'slow', 'monks']
[]
['eerie', 'no vocals', 'slow']
[]
['ambient', 'new age', 'drums', 'dark', 'slow']
['ambient', 'percussion', 'drums', 'dark', 'slow']
['no voice', 'no piano', 'ambient', 'percussion']
[]
['no voice', 'no vocals', 'instrumental']
['no piano', 'strings', 'violin']
['classical', 'strings', 'slow', 'cello']
['beats', 'quiet', 'ambient', 'drum', 'drums', 'no vocal', 'beat', 'soft']
[]
['singing']
['classical', 'opera', 'man', 'male', 'vocal', 'singing']
['man']
['classical', 'guitar', 'opera', 'singing']
['synth', 'rock']
['man singing', 'male vocals', 'rock', 'techno']
['male vocal', 'guitar', 'male voice', 'rock']
['male vocal', 'rock']
['strings', 'slow', 'techno']
['male vocal', 'vocals', 'drums', 'rock']
['guitar', 'rock']
['guitar', 'male singer', 'male', 'rock']
['talking']
[]
['male vocals', 'spanish']
['male vocal', 'guitar', 'male', 'vocal', 'singing']
[]
['beats', 'happy', 'loud', 'reggae', 'rock', 'singing']
['sitar', 'foreign', 'guitar', 'folk', 'no singing', 'strings', 'electronic', 'chanting', 'indian', 'beat']
['techno', 'house']
['electronic', 'trance', 'techno', 'beat']
['beats', 'drums', 'electronic', 'fast', 'fast beat', 'dance', 'techno', 'beat']
['no voice', 'beats', 'synth', 'drums', 'electronic', 'electro', 'trance', 'techno', 'beat']
['electric', 'electronic', 'no guitar', 'fast', 'techno']
['beats', 'drum', 'electronic', 'fast', 'trance', 'synthesizer', 'dance', 'beat']
['electronic', 'electro', 'techno']
['electronica', 'techno']
['synth', 'drums', 'disco', 'dance', 'techno', 'beat']
['drums', 'electronic', 'fast', 'trance', 'techno', 'beat']
['vocals', 'female', 'jazz', 'guitar', 'funk', 'drums', 'pop', 'female vocal']
['female voice', 'female vocal', 'woman', 'woman singing', 'rock', 'female vocals']
['vocals', 'female', 'jazz', 'guitar', 'loud', 'electronic', 'electric guitar', 'blues', 'vocal', 'woman', 'woman singing', 'rock', 'female vocals']
['funky', 'female', 'rock']
['classical', 'strings', 'violin', 'slow']
['classical', 'strings', 'violin']
['no voice', 'classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin', 'orchestra']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'strings', 'classic', 'violin', 'orchestra']
['classical']
[]
['classical', 'violins', 'strings']
['classical', 'strings', 'violin', 'cello']
['quiet', 'ambient', 'airy', 'drums']
['no voice', 'beats', 'new age', 'synth', 'drums', 'electronic', 'modern', 'techno', 'beat']
[]
['rock', 'metal']
['metal']
['guitar', 'rock']
['female vocal', 'woman', 'singing']
['no voice', 'funky', 'female', 'synth', 'electronic', 'no vocal', 'no vocals', 'techno', 'beat']
['fast', 'pop', 'techno']
['synth', 'voice', 'girl', 'trance', 'techno']
['wind', 'ambient', 'strings', 'slow', 'water']
['quiet', 'no beat', 'ambient', 'birds']
[]
['choral', 'opera', 'vocal', 'choir']
['men', 'choral', 'chant', 'male', 'vocal', 'choir']
['classical', 'choral', 'opera', 'chant', 'male', 'singing', 'choir']
[]
['chorus', 'choral', 'male opera', 'chant', 'male', 'choir']
['men', 'choral', 'opera', 'choir']
['guitar']
[]
[]
[]
['male voice', 'pop', 'singing']
['vocals', 'female', 'guitar', 'female voice', 'voice', 'loud', 'drums', 'electronic', 'fast', 'vocal', 'woman', 'rock', 'female vocals', 'upbeat']
['singer', 'hard rock', 'male vocal', 'male voice', 'loud', 'male vocals', 'male', 'rock', 'metal', 'english']
['loud', 'fast', 'rock']
['punk', 'rock']
['loud', 'rock']
['rock']
['classical', 'guitar', 'strings', 'violin', 'irish', 'slow', 'soft']
['classical', 'strings', 'string', 'violin']
['classical', 'violin', 'irish']
['classical', 'violins', 'strings', 'classic', 'drums', 'violin', 'celtic']
['violin', 'celtic']
['strings', 'violin']
['classical', 'folk', 'medieval', 'violin', 'irish', 'celtic', 'fiddle']
['strings', 'drums', 'no vocal', 'violin', 'fiddle']
[]
['no singing', 'loud', 'drums', 'techno']
[]
['percussion', 'drum', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['drum', 'drums', 'beat']
['drums', 'no vocal']
['drums']
[]
['solo', 'piano', 'slow']
['piano', 'slow']
['piano', 'slow']
['classical', 'solo', 'classic', 'no vocal', 'no vocals', 'piano', 'slow', 'piano solo', 'soft']
['piano', 'soft']
[]
['no voice', 'guitar', 'piano', 'soft']
[]
['synth', 'fast', 'techno']
['electronic', 'techno']
['fast', 'techno', 'upbeat']
['no voice', 'synth', 'electronic', 'techno']
['electronic', 'techno', 'beat']
['strings', 'electronic', 'no drums']
['electronic', 'weird', 'dark']
['sitar', 'indian']
['drums', 'electronic', 'not classical', 'indian', 'techno']
['drums', 'techno', 'beat']
['beats', 'drums', 'fast', 'no vocals', 'indian', 'techno', 'flute', 'beat']
['electronic', 'weird', 'fast', 'strange', 'indian', 'beat']
['electronic']
['sitar']
['string', 'slow']
['sitar', 'guitar', 'strings', 'no vocal', 'no vocals', 'slow']
['guitar']
['guitar']
['sitar', 'classical', 'guitar', 'strings', 'instrumental', 'slow']
['sitar', 'guitar', 'strings', 'no vocals']
['sitar', 'guitar', 'piano']
[]
['guitar', 'strings']
['ambient', 'new age', 'drums', 'tribal', 'woman']
[]
['vocals', 'no piano', 'loud', 'drums', 'fast', 'different']
[]
['drums']
['male vocal', 'foreign', 'voice', 'drums', 'man', 'beat']
['loud', 'drums', 'indian', 'oriental']
['foreign', 'loud', 'fast', 'indian']
['fast', 'indian', 'oriental']
['loud', 'rock']
['fast', 'male', 'rock']
[]
['voice', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
['drums', 'beat']
['beat']
[]
[]
[]
['ambient']
['quiet', 'solo', 'low', 'piano', 'slow', 'soft']
['piano']
['female', 'voice', 'choral', 'female vocal', 'piano', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'voices', 'choir', 'female singer', 'women']
['female voice']
['harpsichord', 'sitar', 'classical', 'guitar', 'solo', 'strings', 'harp', 'spanish', 'slow', 'indian', 'oriental']
[]
[]
['harp']
[]
['guitar', 'drum', 'loud', 'drums', 'rock', 'beat']
['vocals', 'man', 'pop', 'rock']
['rock']
[]
[]
['harpsichord', 'classical', 'violin']
['harpsichord', 'classical', 'baroque']
['classical', 'harpsicord', 'piano']
['harpsichord', 'classical', 'fast']
['clasical', 'no violin', 'piano']
['classical', 'strings', 'violin', 'orchestra', 'slow']
['classical', 'strings']
['clasical', 'classical', 'strings', 'classic', 'violin', 'orchestra']
['classical', 'strings', 'orchestra', 'soft']
['classical', 'strings', 'fast', 'violin', 'slow']
['classical', 'strings', 'fast', 'violin', 'orchestra']
['classical', 'strings', 'classic', 'fast', 'orchestra']
[]
['classical', 'strings', 'no vocal', 'no vocals', 'orchestra', 'flute']
['classical', 'quiet', 'strings', 'sad', 'slow']
['horns', 'classical', 'quiet', 'strings', 'violin', 'horn', 'oboe', 'slow', 'flute']
['classical', 'strings', 'violin', 'orchestra']
['classical', 'violin', 'orchestral']
['classical', 'strings', 'violin', 'orchestra', 'slow']
['classical', 'strings', 'classic', 'violin', 'orchestra', 'sad', 'slow', 'flute', 'soft']
[]
['classical', 'orchestra']
['flute']
['classical', 'quiet', 'strings', 'violin', 'instrumental']
['classical', 'quiet', 'strings', 'classic', 'violin', 'orchestral', 'orchestra', 'soft']
['classical', 'strings', 'violin', 'orchestral', 'orchestra', 'slow']
['classical']
['horns', 'classical', 'classic', 'orchestra']
['horns', 'classical', 'classic', 'orchestral', 'orchestra', 'slow']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'horn', 'orchestral', 'orchestra']
['classical', 'quiet', 'strings', 'classic', 'slow']
['slow']
[]
['vocals', 'guitar', 'voice', 'bass']
[]
['male vocal', 'rock']
['guitar', 'rock']
['vocals', 'pop', 'rock', 'singing']
['guitar']
[]
['male vocal', 'vocals', 'man singing', 'man', 'male vocals', 'slow', 'singing', 'soft']
['guitar']
['vocals', 'guitar', 'no vocal', 'electric guitar', 'no vocals', 'slow', 'soft']
[]
[]
['synth', 'techno']
[]
['no voice', 'ambient', 'synth', 'electronic', 'fast', 'electronica', 'instrumental', 'trance', 'dance', 'techno', 'upbeat']
['techno']
['spanish']
['classical', 'guitar', 'solo', 'harp']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'acoustic', 'harp', 'lute', 'slow', 'soft']
['classical', 'guitar', 'solo', 'no vocals']
['guitar']
['plucking', 'harpsichord', 'classical', 'guitar', 'strings', 'harp', 'piano', 'slow', 'soft']
[]
[]
['guitar', 'drums', 'fast', 'hard', 'rock', 'metal']
[]
['guitar', 'rock']
['guitar', 'drums', 'rock']
['male vocal', 'heavy', 'guitar', 'drums', 'male', 'rock', 'metal']
['guitar', 'drum', 'rock', 'metal']
[]
['guitar', 'drums', 'rock']
['male', 'rock']
['ambient']
['eerie', 'wind', 'ambient', 'new age', 'drums', 'electronic', 'weird', 'dark', 'low', 'deep', 'slow', 'scary', 'noise']
['spacey', 'ambient', 'no guitar']
['ambient', 'loud', 'electronic']
['drums', 'weird', 'strange', 'techno']
['synth']
['guitar', 'rock']
['male vocal', 'guitar', 'voice', 'male singer', 'man', 'male', 'singing']
['vocals', 'guitar', 'voice', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['no vocals', 'instrumental']
['classical', 'strings', 'violin', 'piano']
['folk', 'fast', 'country', 'violin', 'piano', 'fiddle']
['violin', 'fiddle']
['classical', 'fast', 'violin', 'irish', 'piano']
['country', 'violin', 'irish', 'fiddle']
['classical', 'fast', 'violin', 'fiddle']
[]
['slow']
[]
[]
['guitar']
['guitar', 'strings']
['guitar']
[]
['guitar', 'strings', 'guitars']
['guitar', 'rock', 'metal']
['hard rock', 'vocals', 'men', 'guitar', 'male voice', 'loud', 'heavy metal', 'male vocals', 'male', 'rock', 'metal']
['guitar', 'loud', 'drums', 'electric guitar', 'hard', 'rock', 'metal']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'string', 'no vocal', 'harp', 'no flute', 'lute', 'piano', 'slow']
[]
['plucking', 'classical', 'guitar', 'solo', 'strings', 'no vocals', 'instrumental', 'harp', 'light', 'piano', 'slow', 'soft']
['strings', 'harp', 'piano']
['guitar', 'harp']
['classical', 'guitar', 'strings', 'no violin', 'harp', 'piano', 'slow']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'string', 'harp', 'piano', 'slow']
['guitar', 'strings', 'string', 'harp', 'piano', 'slow']
['classical', 'guitar', 'piano', 'slow']
['no voice', 'guitar', 'strings', 'no vocal', 'harp', 'piano', 'slow']
['no voice', 'plucking', 'guitar', 'string', 'no vocals', 'harp', 'piano']
[]
['no voice', 'strings', 'harp', 'slow']
['guitar', 'strings', 'string', 'no vocals', 'harp', 'lute']
[]
['strings', 'violin', 'cello']
['classical', 'strings', 'violin']
['no piano', 'classical', 'strings', 'classic', 'violin', 'cello']
['male vocal', 'drum', 'drums', 'man singing', 'male']
['loud', 'instrumental', 'male', 'rock']
['vocals', 'male vocals', 'male', 'vocal', 'rock']
['loud', 'rock']
['male vocal', 'rock']
[]
['no piano', 'female voice', 'female vocal', 'woman']
['female', 'female voice', 'pop']
['female', 'voice', 'female vocal', 'vocal', 'woman', 'singing']
['female voice', 'loud']
[]
['ambient', 'strings', 'violin']
['ambient', 'strings', 'no vocals', 'instrumental', 'slow', 'soft']
[]
['no vocals', 'instrumental', 'different']
['no piano', 'electronic', 'techno']
['electro']
['synth', 'loud', 'electronic', 'electro', 'techno', 'beat']
['techno']
[]
['hard rock', 'guitar', 'electric guitar', 'rock']
['guitar', 'rock']
[]
[]
['harpsichord', 'classical', 'guitar', 'harpsicord', 'no vocal', 'fast']
['electronic', 'no vocals']
[]
['space', 'electronic', 'weird', 'electro', 'strange', 'techno']
[]
['heavy', 'guitar', 'loud', 'drums', 'punk', 'rock', 'metal']
[]
['guitar']
['silence', 'jazz', 'sax']
['jazz']
['electronic']
['jazz', 'piano', 'sax']
['jazz', 'new age', 'drums', 'slow']
['electronic', 'pop']
['quiet', 'ambient', 'synth', 'low', 'slow', 'indian', 'soft']
[]
[]
[]
['drums']
['percussion']
['no piano']
['female opera', 'classical', 'guitar', 'female voice', 'voice', 'opera', 'operatic', 'lute', 'woman', 'woman singing', 'female vocals']
['vocal', 'baroque']
['guitar', 'voice', 'man']
[]
['male vocal', 'guitar', 'slow']
['heavy', 'loud', 'techno']
[]
['vocals', 'female', 'guitar', 'vocal']
['female', 'country']
['guitar', 'piano']
['male vocal', 'vocals', 'male singer', 'country', 'pop', 'male', 'vocal']
['classical', 'ambient', 'new age', 'electronic', 'modern']
[]
[]
['classical', 'piano']
['ambient', 'new age', 'synth', 'keyboard', 'electronic', 'no vocal', 'electro', 'instrumental', 'piano']
['chorus', 'opera', 'violin', 'vocal']
['female', 'opera']
['opera', 'man']
['opera', 'singing', 'choir']
['no voice', 'keyboard', 'drums', 'electronic', 'weird', 'tribal', 'no vocals', 'slow', 'techno', 'beat']
['indian']
['guitar', 'ambient', 'new age', 'synth', 'drum', 'bass', 'drums', 'electronic', 'no vocals', 'modern', 'slow', 'calm', 'different']
['electric', 'synth', 'drums', 'electronic', 'weird', 'pop', 'techno', 'beat']
['beats', 'drums']
['synth', 'not classical', 'modern']
['drums']
['no voice', 'new age', 'drum', 'drums', 'indian', 'flute']
['slow']
[]
['hard rock', 'heavy', 'rock', 'metal']
['heavy', 'rock']
['vocals', 'rock']
['classical', 'guitar', 'quiet', 'strings', 'soft']
['guitar', 'slow']
[]
['beats', 'foreign', 'voice', 'male voice', 'man', 'spanish', 'male', 'vocal', 'singing', 'techno', 'beat']
['foreign', 'techno']
['fast', 'techno']
['voice', 'woman']
['classical', 'guitar', 'fast', 'slow']
['guitar']
[]
['bass', 'drums', 'electronic', 'techno', 'beat']
['not opera']
['male vocal', 'guitar', 'voice', 'man singing', 'pop', 'singing']
['ambient', 'new age', 'drums', 'electronic', 'mellow', 'slow', 'calm', 'techno', 'soft']
['guitar', 'synth', 'bass', 'electronic', 'fast', 'electro', 'techno', 'beat', 'rap']
['drums', 'pop', 'beat']
['sitar', 'vocals', 'middle eastern', 'violin', 'horn', 'strange', 'oboe', 'eastern', 'slow', 'vocal', 'indian', 'flute']
['synth', 'drums', 'no vocals', 'techno', 'beat']
['beats', 'electronic', 'techno']
['synth', 'electronic', 'techno']
['funky', 'electric', 'synth', 'bass', 'drums', 'electronic', 'electro', 'dance', 'techno', 'beat']
['techno']
['indian']
['synth', 'electronic', 'electro', 'techno']
['female', 'female voice', 'fast', 'pop', 'dance', 'techno', 'beat', 'female singer']
['drums', 'fast']
['electronic', 'pop']
[]
[]
['vocals', 'female vocal', 'techno']
['flute']
['no voice', 'ambient', 'no guitar', 'flute']
[]
[]
[]
['guitar', 'acoustic', 'country', 'slow']
['voice', 'male voice', 'man', 'male']
['piano']
[]
['rap']
['rap', 'hip hop']
['male voice', 'rap', 'hip hop']
[]
['guitar', 'banjo', 'country']
['guitar', 'banjo', 'folk', 'fast', 'country', 'blues', 'fiddle']
[]
['talking', 'male', 'vocal']
['drums', 'electronic', 'fast', 'industrial', 'techno']
['loud', 'drums', 'weird', 'fast', 'rock', 'techno', 'beat', 'noise']
['drums']
['hard rock', 'male vocal', 'guitar', 'male voice', 'loud', 'drums', 'male', 'rock']
['male vocal', 'man', 'rock']
[]
['loud', 'pop', 'rock']
['rock', 'singing']
['vocals', 'loud', 'modern', 'pop', 'male', 'vocal', 'rock', 'voices']
['guitar', 'synth', 'slow', 'rock']
['indian']
['drums']
[]
['indian']
['vocals', 'female', 'female voice', 'new age', 'female vocal', 'woman']
['electronic', 'fast', 'techno']
['ambient', 'loud', 'electronic', 'techno', 'beat']
['electronic']
['female', 'female voice', 'electronic', 'female vocal', 'dance', 'singing', 'beat']
['beats', 'drums', 'electronic', 'dance', 'techno', 'beat']
['guitar', 'country']
['vocals', 'country', 'vocal']
['vocals', 'guitar', 'pop', 'male']
['singer', 'male vocal', 'vocals', 'drums', 'pop', 'male vocals', 'rock']
['country']
['world', 'vocals', 'female', 'female voice', 'weird', 'chant', 'vocal', 'singing']
['female', 'female voice', 'vocal', 'singing']
['chant', 'eastern', 'indian', 'india']
['male vocal', 'male voice', 'male', 'vocal', 'calm']
[]
[]
['guitar', 'electric guitar', 'piano']
['ambient', 'drums', 'not classical', 'organ']
['synth', 'drums']
['ambient', 'synth', 'slow']
['synth', 'drums', 'not rock', 'fast']
['vocal']
['female singing', 'female']
['vocals', 'female', 'male', 'woman', 'rock', 'english']
['female', 'fast', 'pop']
['female', 'guitar', 'electric', 'pop', 'rock', 'female singer', 'metal']
['guitar', 'rock']
['male vocal', 'loud', 'fast', 'hard', 'punk', 'male', 'rock', 'metal']
['heavy', 'rock', 'metal']
['rock']
['male vocal', 'vocals', 'male voice', 'male vocals', 'slow', 'male', 'soft']
['pop']
['male vocal']
[]
['loud', 'drums', 'rock']
['synth', 'electronic', 'techno']
[]
['techno']
['beats', 'dance', 'techno', 'beat']
['no piano', 'electronic', 'trance']
[]
['drums', 'electronic', 'fast', 'techno']
['no voice', 'beats', 'drum', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'dance', 'techno', 'beat']
['electronic', 'techno', 'beat']
['beats', 'synth', 'drums', 'fast', 'electro', 'no vocals', 'dance', 'techno', 'beat']
['electronic', 'no guitar', 'modern', 'techno']
['no voice', 'beats', 'female', 'electronic', 'electro', 'pop', 'female vocal', 'echo', 'woman', 'dance', 'female vocals', 'techno', 'beat']
['electronic', 'dance', 'techno', 'beat']
['middle eastern', 'drums', 'indian']
['drums', 'arabic', 'indian', 'oriental']
['middle eastern', 'drums', 'fast', 'arabic', 'eastern', 'indian']
['vocals', 'middle eastern', 'drums', 'arabic', 'chant', 'eastern', 'slow', 'indian', 'singing']
['sitar', 'middle eastern', 'drums', 'arabic', 'eastern', 'indian', 'oriental', 'beat']
['foreign', 'drum', 'eastern', 'indian']
['drums']
['indian']
[]
['female']
['female', 'new age', 'female vocal', 'singing']
[]
['strings', 'modern', 'woman']
['classical', 'female', 'violins', 'strings', 'violin', 'pop', 'slow', 'female singer']
['male vocal', 'dark', 'male vocals', 'male', 'rock', 'techno', 'beat']
['male vocal', 'vocals', 'loud', 'drums', 'man', 'male vocals', 'male', 'vocal', 'rock']
[]
['guitar', 'drums', 'electronic', 'slow', 'techno']
['guitar', 'new age', 'drums', 'fast', 'no vocals', 'slow']
['percussion', 'drums', 'slow']
['synth', 'loud', 'drums', 'weird', 'slow', 'beat']
['electronic', 'fast']
['loud', 'electronic', 'fast', 'trance', 'strange']
['no voice', 'loud', 'weird', 'electro', 'no vocals', 'instrumental', 'pop', 'techno', 'beat']
[]
[]
['synth', 'fast', 'electro', 'dance', 'techno', 'beat']
['electronic', 'dance', 'techno', 'beat']
[]
['techno']
['electronic', 'fast', 'dance', 'techno']
['funk', 'electronic', 'fast', 'electro', 'electronica', 'trance', 'disco', 'dance', 'techno']
['beats', 'synth', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
['new age', 'airy', 'slow']
['new age', 'percussion', 'voice', 'drums', 'electronic', 'no vocal', 'modern', 'vocal', 'woman']
['synth', 'voice', 'drums', 'beat']
['drums', 'female vocal', 'jazzy']
['techno']
['guitar', 'banjo', 'solo', 'folk', 'fast', 'acoustic guitar', 'country', 'no vocals']
['guitar']
['guitar', 'banjo', 'solo', 'folk', 'acoustic', 'string', 'fast', 'country']
['guitar', 'banjo', 'solo', 'folk', 'acoustic', 'fast']
['ambient', 'new age', 'drums', 'electronic', 'modern', 'indian', 'techno', 'beat']
['beats', 'middle eastern', 'repetitive', 'drums', 'electronic', 'no vocal', 'industrial', 'indian', 'techno', 'beat']
['no vocal']
['drum', 'drums', 'no guitar', 'beat']
[]
['repetitive', 'drums', 'electronic', 'dark']
[]
['ambient']
['beats', 'repetitive', 'drums', 'no vocal', 'tribal', 'no vocals', 'strange', 'industrial', 'techno', 'beat']
['ambient', 'electronic', 'indian']
[]
['electronic']
['guitar']
['guitar', 'banjo', 'country']
['male vocal', 'guitar', 'male voice', 'modern', 'pop']
['drums', 'vocal', 'woman', 'singing']
[]
['pop', 'woman']
['male vocal', 'vocals', 'no piano', 'voice', 'drums', 'pop']
['beats', 'drum', 'drums', 'no guitar', 'slow', 'rock', 'beat']
['no vocal']
['male vocal', 'vocals', 'spacey', 'drums', 'pop', 'male vocals', 'slow', 'male', 'beat']
[]
['female', 'voice', 'vocal']
[]
['man', 'vocal', 'singing']
['male vocal', 'vocals', 'folk', 'voice', 'male voice', 'man singing', 'man', 'pop', 'slow', 'male', 'singing']
[]
['drum', 'fast', 'bells', 'pop']
[]
['male vocal', 'ambient', 'male voice', 'chant', 'man', 'male']
['female voice', 'voice', 'chanting', 'male', 'vocal', 'indian']
[]
['drums', 'rock']
['no vocals', 'scary']
['ambient', 'synth', 'no singing', 'loud', 'drums', 'rock', 'beat']
['loud']
['woodwind', 'drums', 'harp']
['percussion', 'drum', 'drums', 'slow', 'flute', 'beat']
['woodwind', 'drums', 'flute']
[]
['violin', 'beat']
[]
['strings', 'violin']
['violins', 'drum', 'strings', 'no vocal', 'violin', 'no vocals', 'eastern', 'flute', 'fiddle']
[]
['drum', 'slow', 'flute']
['world', 'sitar', 'drums', 'indian']
['indian']
['bongos', 'drums', 'tribal', 'jungle']
['eastern']
['drums', 'eastern', 'indian']
[]
['foreign', 'female', 'chant', 'female vocal', 'vocal', 'woman', 'woman singing', 'not english', 'female singer']
[]
['voice', 'drums', 'instrumental', 'eastern', 'vocal', 'indian', 'singing', 'voices', 'women']
['vocals', 'middle eastern']
['sitar', 'middle eastern', 'drums', 'arabic', 'eastern', 'indian', 'oriental']
[]
[]
['middle eastern', 'percussion', 'drums', 'fast', 'indian']
['sitar', 'indian']
['drums']
['sitar', 'middle eastern', 'drums', 'arabic', 'female vocal', 'eastern', 'indian', 'india', 'oriental']
['sitar', 'indian']
['sitar', 'no singing', 'slow', 'indian']
[]
['sitar', 'strings', 'indian', 'india']
['sitar', 'drums', 'slow', 'indian']
['sitar', 'string', 'eastern', 'slow', 'indian']
['sitar', 'indian', 'oriental']
['sitar', 'guitar', 'indian']
['sitar', 'indian', 'oriental']
['plucking', 'sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
[]
['sitar']
['indian']
['sitar', 'guitar', 'indian', 'oriental']
['sitar']
['sitar', 'indian']
['ambient', 'slow', 'not opera']
['electronic', 'instrumental']
['synth']
['electronic', 'fast', 'no vocals', 'instrumental', 'techno', 'upbeat']
[]
[]
[]
[]
['guitar', 'classical guitar']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'violin', 'old']
['guitar']
['drums', 'spanish']
['guitar', 'drums', 'clapping']
[]
['jazz', 'guitar', 'drums', 'fast', 'spanish', 'jazzy']
['guitar', 'drums', 'fast', 'spanish', 'beat']
[]
['male vocal', 'funk', 'male voice', 'male singer']
['pop', 'jazzy']
['jazz']
[]
['ambient', 'electronic', 'dark', 'beat']
[]
['ambient', 'new age', 'drums', 'electronic', 'techno']
['synth', 'loud']
['electronic', 'slow']
[]
['ambient', 'synth', 'electronic', 'instrumental']
['synth']
['classical', 'ambient', 'synth', 'strings', 'no guitar', 'no vocal', 'slow']
['guitar', 'country', 'blues']
['guitar', 'blues']
['guitar', 'country', 'blues']
['guitar', 'banjo', 'folk', 'blues']
['drums', 'no vocals']
['guitar', 'slow']
['banjo', 'spanish']
['fast', 'violin', 'irish']
['world', 'foreign', 'female', 'vocal', 'female vocals']
['folk', 'strings']
['foreign', 'female', 'middle eastern', 'fast', 'eastern', 'spanish', 'singing', 'female vocals', 'voices', 'not english', 'female singer']
['no voice', 'beats', 'drums', 'electronic', 'fast', 'electro', 'fast beat', 'dance', 'techno', 'beat']
['electronic', 'techno']
['beats', 'synth', 'drums', 'beat']
['fast', 'techno']
['beats', 'drums', 'fast', 'tribal']
['female', 'pop', 'female vocal', 'vocal', 'dance', 'techno']
['electronic', 'fast', 'dance', 'techno', 'house', 'upbeat']
['techno', 'beat']
['electronic', 'fast', 'disco', 'dance', 'techno']
['electronic']
['no voice', 'electronic', 'fast', 'techno', 'beat', 'upbeat']
['vocals', 'female', 'trance', 'vocal', 'woman', 'techno']
['synth', 'electronic', 'no vocal', 'fast', 'no vocals', 'dance', 'female vocals', 'techno']
['vocals', 'bass', 'drums', 'man', 'rock']
[]
[]
['vocals', 'guitar', 'fast', 'rock', 'singing', 'voices']
['opera', 'chant', 'man', 'male', 'vocal', 'different', 'choir']
['choral']
[]
['jazz', 'girl', 'drums', 'woman', 'woman singing', 'singing', 'female vocals']
[]
['funky', 'female', 'female voice', 'ambient', 'synth', 'voice', 'bass', 'loud', 'drums', 'electronic', 'weird', 'electro', 'instrumental', 'modern', 'pop', 'female vocal', 'woman', 'woman singing', 'jazzy', 'singing', 'voices', 'techno', 'beat']
['male vocal', 'male voice', 'electronic', 'male singer', 'man singing', 'pop', 'male vocals', 'beat']
['beats', 'happy', 'synth', 'drum', 'repetitive', 'drums', 'electronic', 'no vocal', 'fast', 'no vocals', 'electronica', 'echo', 'techno', 'beat']
['synth', 'drums', 'fast', 'no vocals', 'sax', 'techno']
['fast']
['drums']
['singer', 'male vocal', 'vocals', 'guitar', 'drums', 'pop', 'male vocals', 'male', 'rock']
['singer', 'male vocal', 'vocals', 'guitar', 'male voice', 'drums', 'man singing', 'man', 'pop', 'rock']
['male vocal', 'beats', 'guitar', 'pop', 'male', 'rock', 'singing']
['funky', 'guitar', 'funk', 'drums', 'rock', 'beat', 'metal']
['rock']
['female', 'opera', 'female vocal', 'vocal']
['vocals', 'female', 'opera']
['guitar', 'drum', 'drums']
['male vocal', 'guitar', 'drums', 'rock']
['guitar']
['rock']
[]
['vocals', 'female', 'voice', 'loud', 'chanting', 'weird', 'opera', 'chant', 'slow', 'vocal', 'indian', 'voices', 'women']
['no drums']
['vocals', 'vocal', 'women']
[]
['classical', 'guitar', 'strings', 'string', 'slow', 'guitars']
[]
['guitar']
['guitar']
['no piano', 'guitar', 'strings']
['guitar', 'acoustic', 'classical guitar']
['quiet', 'ambient', 'new age']
['quiet', 'ambient', 'synth', 'slow']
['ambient', 'slow']
['ambient', 'birds']
['birds']
['birds']
['quiet', 'slow', 'flute']
['no voice', 'harpsichord', 'sitar', 'guitar', 'quiet', 'banjo', 'strings', 'string', 'country', 'harp', 'piano', 'eastern', 'slow', 'calm', 'flute', 'oriental', 'soft']
['no voice', 'ambient', 'flute']
['classical', 'guitar', 'quiet', 'airy', 'strings', 'harp', 'slow', 'soft']
['quiet', 'strings', 'no vocals', 'piano', 'slow', 'flute']
['guitar', 'slow', 'flute', 'soft']
[]
['sitar', 'quiet', 'ambient', 'strings', 'slow', 'cello', 'flute']
['strings', 'no vocals', 'flutes', 'flute']
['no violin', 'calm', 'flute']
['classical', 'flutes', 'flute']
['classical', 'medieval', 'organ', 'flute']
['classical', 'flute']
['singer', 'loud', 'male', 'rock']
['hard rock', 'loud', 'hard', 'rock', 'metal']
[]
[]
['ambient', 'synth', 'slow']
['no voice', 'ambient', 'electronic', 'no vocal', 'electro', 'slow', 'soft']
['ambient', 'synth', 'slow']
['ambient', 'synth', 'slow']
['no voice', 'ambient', 'new age', 'no vocal', 'no vocals', 'instrumental', 'slow', 'soft']
['ambient']
['ambient']
['no vocal']
['sitar', 'classical', 'guitar', 'strings', 'string', 'fast', 'piano', 'guitars']
['classical', 'no singing', 'string', 'piano']
['guitar', 'strings']
['guitar', 'strings']
['guitar']
['sitar']
['harpsichord', 'classical', 'no vocals', 'piano']
['guitar', 'fast', 'harp', 'piano']
['classical', 'guitar', 'strings', 'harp', 'piano', 'slow']
['quiet', 'female vocal', 'slow', 'indian']
['drums', 'tribal']
['bongos', 'vocals', 'foreign', 'female', 'percussion', 'drums', 'tribal', 'chant', 'vocal', 'singing', 'beat']
['female', 'drums', 'tribal', 'vocal', 'woman']
['no piano', 'drums', 'no vocal', 'fast']
['foreign', 'female', 'female voice', 'percussion', 'drums', 'fast', 'jungle', 'vocal', 'indian']
[]
['vocals', 'female', 'drums', 'eastern', 'vocal', 'indian']
[]
['hard rock', 'heavy', 'guitar', 'drum', 'loud', 'drums', 'heavy metal', 'hard', 'rock', 'guitars', 'beat', 'metal']
['guitar', 'rock']
['beats', 'guitar', 'synth', 'no vocals', 'instrumental']
['strings', 'no vocal', 'english']
['male vocal', 'vocals', 'synth', 'voice', 'male voice', 'electronic', 'man', 'pop', 'male', 'techno', 'beat']
['vocal']
[]
['ambient', 'new age', 'loud', 'drums', 'slow', 'male', 'rock']
[]
['male vocal', 'synth', 'loud', 'electronic']
['quiet', 'no flute']
['eerie', 'ambient', 'synth', 'weird', 'slow']
['weird', 'scary']
[]
['spacey', 'no beat', 'ambient', 'weird', 'noise']
['ambient']
['no guitar']
[]
['ambient', 'electronic', 'organ', 'weird', 'drone', 'bells', 'no drums', 'noise']
['no voice', 'ambient', 'organ', 'no vocal']
['ambient', 'electronic']
['ambient']
[]
['chimes', 'eerie', 'ambient', 'no guitar', 'strange', 'bells']
['ambient']
['ambient', 'new age', 'synth', 'electronic']
['slow']
['eerie', 'no beat', 'ambient', 'no vocal', 'drone', 'slow']
['ambient']
[]
['ambient']
['bells', 'scary']
['ambient']
['ambient']
['eerie', 'spacey', 'quiet', 'ambient', 'bells']
[]
['guitar', 'drums', 'slow', 'vocal', 'woman', 'woman singing', 'female singer']
['vocals', 'female', 'female vocal', 'woman', 'female singer']
[]
['slow', 'woman']
['drum', 'vocal', 'singing', 'choir']
['strings', 'string', 'drums', 'weird', 'violin', 'slow']
['drums', 'dark']
['classical', 'strings', 'violin', 'slow', 'cello']
[]
['drum', 'strings', 'violin', 'orchestral', 'slow', 'cello']
['classical', 'strings', 'classic', 'violin', 'low', 'viola', 'slow', 'cello']
['vocals', 'beats', 'female', 'drum', 'strings', 'drums', 'violin', 'female vocal', 'slow', 'woman', 'singing', 'cello', 'female vocals']
['female', 'pop', 'vocal']
[]
['sitar', 'quiet', 'harp', 'indian']
['sitar', 'middle eastern', 'arabic', 'slow', 'indian']
['sitar', 'eastern', 'indian', 'oriental']
['strings', 'indian']
['sitar', 'indian']
['sitar', 'slow', 'indian']
['sitar', 'strings', 'indian', 'india']
['sitar', 'strings', 'eastern', 'indian']
[]
['sitar', 'guitar', 'eastern', 'indian', 'oriental']
['sitar', 'guitar', 'quiet', 'no vocal', 'indian']
['sitar', 'indian']
['sitar', 'guitar', 'indian']
['sitar', 'indian']
['sitar', 'instrumental', 'eastern', 'indian']
['sitar', 'indian']
['indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian', 'no drums']
['sitar', 'indian']
[]
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'fast', 'indian', 'oriental']
['sitar', 'guitar', 'folk', 'indian', 'india']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
[]
['clapping']
['guitar', 'synth', 'drums', 'beat']
[]
['male', 'rock', 'metal']
['heavy', 'loud', 'male', 'rock']
['rock', 'metal']
['harp', 'slow']
['slow', 'flute', 'soft']
[]
['harpsichord', 'quiet', 'no beat', 'harp', 'slow', 'indian', 'flute']
['ambient']
['no vocal', 'slow']
['strings', 'weird', 'lol', 'slow', 'flute', 'noise']
['synth', 'bass', 'no vocal', 'dark', 'low', 'slow']
['ambient', 'weird']
['flute']
[]
['quiet', 'ambient', 'electronic', 'slow', 'different', 'techno', 'flute']
[]
['classical', 'guitar', 'ambient', 'electronic', 'piano', 'slow', 'no drums', 'soft']
['synth', 'bells']
['quiet']
[]
['ambient', 'synth']
['spacey', 'ambient', 'weird']
['electronica']
['ambient', 'synth']
['slow']
['ambient', 'electronic', 'synthesizer']
['ambient']
['ambient']
['strange']
['spacey', 'ambient', 'new age', 'electronic', 'techno']
[]
[]
['ambient', 'synth']
[]
['wind', 'ambient', 'synth', 'electronic', 'weird', 'techno']
['loud']
[]
['weird', 'lol', 'industrial', 'slow', 'techno', 'noise']
['heavy', 'beats', 'funky', 'synth', 'bass', 'loud', 'drums', 'electronic', 'weird', 'fast', 'no vocals', 'industrial', 'slow', 'rock', 'different', 'beat']
['no voice', 'female', 'guitar', 'drum', 'drums', 'english']
['drums']
['vocals', 'female', 'guitar', 'drums', 'pop', 'female vocal', 'woman', 'female vocals', 'female singer']
[]
['voice', 'rock']
['strings', 'rock', 'guitars']
[]
['chant', 'choir']
[]
['new age', 'percussion', 'male voice', 'drums', 'chanting', 'tribal', 'chant', 'slow', 'choir']
['chant']
['chanting', 'chant', 'man', 'vocal', 'choir']
[]
['opera']
['classical', 'strings', 'violin', 'slow']
['classical', 'violins', 'strings', 'flute']
['classical', 'strings', 'violin', 'oboe', 'flute']
[]
['classical', 'violin', 'oboe', 'piano', 'flute']
['fast', 'dance', 'techno']
['fast', 'techno']
[]
['electronic', 'fast', 'dance', 'techno']
['beats', 'electronic', 'fast', 'electro', 'trance', 'pop', 'dance', 'techno', 'beat']
[]
[]
['female']
['guitar', 'country']
['voice', 'country']
['male vocal', 'guitar', 'male voice', 'country', 'man', 'male vocals', 'male', 'singing']
['country']
['country', 'pop', 'male', 'rock']
['vocals', 'ambient', 'eastern', 'indian', 'woman']
[]
['world', 'foreign', 'female', 'indian', 'woman', 'singing', 'female vocals']
['foreign', 'female', 'vocal', 'indian', 'woman', 'woman singing', 'female vocals']
['sitar', 'indian', 'woman', 'female vocals']
['indian', 'singing']
['loud', 'vocal', 'indian']
['female', 'female voice', 'woman']
[]
['indian']
['guitar', 'drums', 'electric guitar', 'rock', 'beat', 'metal']
['male vocals', 'rock']
['male vocal', 'guitar', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['man', 'rock', 'beat']
['no voice', 'vocals', 'electric', 'ambient', 'new age', 'synth', 'voice', 'drums', 'electronic', 'no vocal', 'lol', 'trance', 'modern', 'pop', 'sad', 'slow', 'calm', 'techno', 'beat', 'soft']
[]
['ambient']
['drums', 'fast', 'techno', 'beat']
['drums', 'fast', 'beat']
['drums', 'electronic', 'fast', 'techno', 'beat']
['electric', 'electronic']
['quiet', 'wind', 'ambient', 'synth', 'electronic', 'noise']
['ambient', 'no vocal', 'no vocals']
['ambient', 'no vocals']
['no piano', 'ambient', 'slow']
['no beat', 'ambient', 'new age', 'synth', 'airy', 'electronic', 'weird', 'no vocals', 'slow']
['no voice', 'weird']
['wind', 'electronic', 'trance', 'slow']
['no beat', 'ambient', 'new age', 'trance']
['ambient', 'different']
['spacey', 'no beat', 'ambient', 'weird', 'dark']
[]
[]
['new age']
[]
['spacey', 'ambient', 'dark', 'scary']
[]
['ambient', 'new age', 'weird', 'slow', 'soft']
['classical', 'ambient', 'slow']
[]
['eerie', 'ambient', 'new age', 'strings', 'no vocal', 'violin', 'no vocals', 'lol', 'instrumental', 'slow', 'flute', 'soft']
[]
[]
['ambient', 'new age', 'slow']
[]
['ambient', 'new age', 'slow', 'no drums']
['ambient', 'no vocals', 'slow']
['ambient', 'electro', 'slow']
['quiet', 'ambient', 'slow']
['quiet', 'ambient', 'electronic', 'calm', 'soft']
['ambient', 'synth', 'slow']
['eerie', 'spacey', 'ambient', 'electronic', 'trance', 'slow']
[]
['drums', 'no vocal', 'no flute', 'slow', 'indian', 'calm']
['ambient']
[]
['ambient', 'new age', 'eastern', 'slow']
['strings']
['classical', 'harp']
['vocals', 'female', 'guitar', 'voice', 'strings', 'slow', 'woman']
[]
['classical', 'violin', 'slow', 'cello']
['classical', 'guitar', 'piano', 'slow', 'flute']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin']
['classical', 'fast', 'violin']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'classic', 'violin', 'sad', 'slow']
['harpsichord', 'sitar', 'violin']
['classical', 'violin']
[]
['vocals', 'male voice', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['man singing', 'man', 'pop', 'male']
['guitar', 'punk', 'rock']
['male vocal', 'punk', 'rock']
['synth']
['synth', 'electronic', 'weird', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'rap']
['electric', 'male voice', 'loud', 'electronic', 'male vocals', 'vocal', 'techno']
['man']
['classical']
['classical', 'strings']
['classical', 'solo', 'strings', 'cello', 'baroque']
['classical', 'strings', 'violin', 'cello']
['violin', 'cello']
[]
['ambient', 'no violin']
['ambient']
['no violin']
['ambient', 'electronic', 'no vocal', 'no vocals', 'bells', 'techno']
[]
['ambient', 'orchestral', 'calm']
['ambient', 'no vocal']
['choral', 'opera', 'choir']
['classical', 'female voice', 'classic', 'choral', 'opera', 'choir']
['drums', 'slow']
['ambient', 'synth', 'repetitive', 'slow']
['ambient', 'new age', 'synth', 'electronic', 'calm', 'techno']
['ambient', 'new age', 'no vocal', 'no vocals', 'techno']
['new age', 'electronic']
[]
['synth', 'no singing', 'electronica', 'techno']
['synth', 'repetitive', 'electronic', 'slow']
[]
['drum', 'fast', 'techno']
['electronic', 'fast', 'electro', 'techno']
['synth', 'electro']
['synth', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['electronic', 'fast', 'techno']
['male vocal', 'guitar', 'solo', 'male voice', 'fast', 'electric guitar', 'male vocals', 'male', 'rock']
['drums', 'fast', 'male singer', 'male vocals', 'male', 'rock']
['male voice', 'vocal', 'rock']
['classical', 'oboe']
['classical', 'trumpet', 'light', 'slow']
['horns', 'classical', 'violin', 'oboe']
['no piano', 'horns', 'classical', 'oboe']
['classical', 'slow']
['classical', 'slow']
[]
['funky', 'bass', 'techno']
['jazz', 'beat']
['beats', 'funky', 'jazz', 'ambient', 'funk', 'drums', 'fast', 'no vocals', 'fast beat', 'sax', 'jazzy', 'beat']
['funky', 'no piano', 'techno']
[]
['bass', 'drums', 'fast']
['new age', 'fast', 'upbeat']
['electronic']
['drums', 'fast', 'techno', 'beat']
['female', 'pop', 'female vocal', 'female vocals']
['vocals', 'female', 'guitar', 'ambient', 'new age', 'electronic', 'weird', 'no flute', 'female vocal', 'vocal']
['female']
['guitar', 'singing']
['guitar', 'female voice', 'girl', 'singing', 'female vocals']
['guitar', 'different']
['plucking', 'guitar', 'banjo']
[]
['guitar', 'strings', 'harp']
['harp', 'no drums']
['guitar', 'strings', 'harp']
['sitar']
['classical', 'guitar', 'strings', 'string', 'instrumental', 'harp', 'indian']
['no voice', 'classical', 'ambient', 'instrumental', 'harp', 'piano']
['piano']
['no voice', 'guitar', 'no vocal', 'harp', 'piano']
['ambient', 'strings', 'no vocal', 'no vocals', 'harp', 'piano']
['guitar', 'banjo', 'string']
[]
['guitar', 'new age', 'instrumental', 'piano', 'slow']
['guitar']
['fast', 'harp']
['guitar', 'strings', 'no vocal', 'fast', 'no vocals', 'instrumental', 'harp', 'different', 'upbeat']
[]
[]
['talking', 'techno']
['dance', 'techno']
['vocals', 'techno']
['female', 'fast', 'rock', 'dance', 'techno', 'beat']
['guitar', 'strings', 'acoustic']
['guitar', 'strings']
['classical', 'guitar', 'harp', 'piano']
['no voice', 'classical', 'guitar', 'solo', 'strings', 'string', 'classical guitar', 'country', 'lute', 'spanish']
['classical', 'piano']
['classical', 'classic', 'piano']
['classical', 'solo', 'classic', 'piano', 'baroque']
['classical', 'fast', 'piano']
['classical', 'solo', 'fast', 'piano']
['piano']
['classical', 'solo', 'no violin', 'no vocal', 'piano']
['harpsichord', 'strings', 'organ', 'piano', 'no drums']
['harpsichord', 'classical', 'guitar', 'harp']
['quiet']
[]
['ambient', 'new age', 'slow']
['spacey', 'ambient', 'new age']
[]
['ambient']
['no voice', 'spacey', 'ambient', 'new age', 'synth', 'electronic', 'no vocal', 'electro', 'techno', 'soft']
['chimes', 'spacey', 'no beat', 'ambient', 'new age', 'synth', 'airy', 'space', 'loud', 'electronic', 'soft']
['electric', 'ambient', 'weird']
['no piano', 'ambient', 'electronic']
[]
['ambient', 'electronic']
['ambient', 'modern', 'techno']
['spacey', 'ambient', 'new age', 'space', 'loud', 'electronic']
['ambient', 'new age', 'synth', 'slow']
['ambient', 'new age', 'airy', 'loud', 'electronic', 'no flute']
['spacey', 'ambient', 'new age', 'synth', 'space', 'loud', 'electronic', 'no vocal', 'electro', 'mellow', 'piano', 'slow']
['ambient', 'loud']
['synth', 'loud']
['ambient', 'synth', 'loud', 'no guitar', 'bells', 'slow']
['no piano', 'spacey', 'ambient', 'new age', 'synth', 'electronic', 'calm', 'water']
['no voice']
['ambient', 'bells']
['ambient', 'new age']
['spacey', 'no beat', 'ambient', 'new age', 'synth', 'space', 'electronic', 'no vocals']
['ambient', 'synth', 'slow', 'soft']
['spacey', 'ambient', 'new age', 'synth', 'airy', 'space', 'loud', 'electronic', 'slow', 'no drums', 'soft', 'water']
['ambient']
['new age', 'space', 'slow']
['ambient']
['no strings', 'ambient']
['new age']
['ambient', 'slow', 'soft']
['synth', 'space', 'electronic']
['ambient', 'slow']
['ambient', 'new age', 'electronic', 'bells', 'slow']
['spacey', 'ambient', 'synth', 'airy', 'space', 'loud']
[]
['ambient', 'electronic', 'weird']
['ambient', 'synth', 'weird', 'techno']
['synth', 'electronic', 'no vocal']
[]
['opera', 'male', 'choir']
[]
['male voice', 'male']
['chant']
['classical', 'guitar', 'soft']
['fast', 'techno', 'beat']
['electronic', 'fast', 'fast beat', 'dance', 'techno', 'beat', 'upbeat']
['techno']
['electronic', 'fast', 'dance', 'techno', 'beat', 'upbeat']
['strings']
[]
['rock', 'metal']
['hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'man', 'hard', 'male', 'rock', 'rap', 'metal']
['rock', 'metal']
['classical', 'guitar', 'acoustic', 'slow']
['guitar', 'no vocal']
['harpsichord', 'classical', 'guitar', 'quiet', 'solo', 'strings', 'classic', 'classical guitar', 'piano', 'slow', 'baroque']
['vocals', 'foreign', 'female', 'guitar', 'female voice', 'harpsicord', 'opera', 'woman']
['harpsichord', 'female voice', 'opera', 'woman']
['opera']
[]
['harpsichord', 'female', 'female voice', 'opera', 'female vocal']
['female', 'opera']
['electronic', 'electro', 'techno', 'beat']
['drums', 'electronic', 'techno']
['beats', 'drums', 'electronic', 'no vocal', 'disco', 'pop', 'dance', 'techno', 'house', 'beat']
['silence', 'quiet', 'tribal']
['world', 'foreign', 'voice', 'male voice', 'chanting', 'weird', 'chant']
['ambient', 'slow', 'calm']
['ambient', 'synth']
['synth', 'electronic', 'no guitar', 'slow']
['electronic']
[]
['electronic', 'modern']
['ambient', 'synth', 'slow', 'soft']
['choir']
['classical', 'choral', 'opera', 'choir']
['opera']
[]
['female opera', 'classical', 'quiet', 'opera', 'low', 'slow', 'vocal', 'woman', 'calm']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'strings', 'slow', 'indian']
[]
['sitar', 'indian']
['sitar', 'indian']
['no voice', 'sitar', 'strings', 'instrumental', 'eastern', 'indian']
['indian']
[]
['sitar']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian', 'oriental']
[]
['sitar', 'indian']
['sitar', 'indian', 'oriental']
[]
['sitar', 'drums', 'eastern', 'slow', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'arabic', 'eastern', 'indian']
[]
['sitar', 'indian']
['sitar', 'drums', 'indian']
['sitar', 'guitar', 'eastern', 'indian']
['sitar', 'strings', 'eastern', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'drums', 'eastern', 'indian', 'india']
['sitar', 'indian', 'india']
['sitar', 'guitar', 'indian']
['bongos', 'sitar', 'foreign', 'guitar', 'string', 'drums', 'no vocal', 'fast', 'eastern', 'indian']
['sitar', 'eastern', 'indian']
['drums', 'no vocal', 'tribal', 'indian']
['sitar', 'drum', 'no vocal', 'fast', 'instrumental', 'indian']
['sitar', 'drums', 'indian']
['sitar', 'foreign', 'middle eastern', 'drums', 'fast', 'irish', 'eastern', 'indian', 'india']
['eastern', 'indian']
['sitar', 'drums', 'fast', 'indian']
['bongos', 'indian']
['drums', 'fast', 'indian']
['indian']
['sitar', 'indian']
['sitar', 'no singing', 'drums', 'fast', 'indian']
['sitar', 'indian']
[]
['drums', 'fast', 'eastern', 'indian', 'oriental']
[]
['indian']
['sitar', 'indian']
['sitar']
['sitar', 'harp', 'slow', 'indian', 'oriental']
['sitar', 'drums', 'slow', 'indian']
['sitar', 'middle eastern', 'drums', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian', 'oriental']
['sitar', 'indian']
['sitar']
['harpsichord', 'sitar', 'arabic', 'eastern', 'indian']
['sitar', 'indian']
['bongos', 'sitar', 'indian']
['sitar']
['sitar', 'strings', 'indian']
['sitar']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'percussion', 'drums', 'eastern', 'indian', 'india']
['eastern', 'indian', 'india']
[]
['sitar', 'no vocal', 'indian']
['no voice', 'sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'indian']
['sitar', 'string', 'eastern', 'slow', 'indian']
['sitar', 'classical', 'slow', 'indian', 'clapping']
['sitar', 'middle eastern', 'string']
['sitar', 'classical', 'solo', 'strings', 'string', 'violin', 'harp', 'viola', 'indian', 'cello']
['sitar', 'piano', 'eastern', 'slow', 'indian']
['sitar', 'strings', 'eastern', 'slow', 'indian']
['sitar', 'piano', 'eastern', 'slow', 'indian']
['sitar', 'guitar', 'sad', 'slow', 'indian']
['violin', 'irish']
['solo', 'string', 'violin', 'fiddle']
['solo', 'strings', 'violin', 'indian']
['sitar', 'piano']
['sitar', 'piano', 'indian']
['violin']
['sitar', 'strings', 'indian', 'oriental']
['sitar', 'middle eastern', 'drums', 'eastern', 'indian']
['no voice', 'plucking', 'beats', 'funky', 'guitar', 'percussion', 'drum', 'repetitive', 'strings', 'bass', 'string', 'drums', 'electronic', 'weird', 'tribal', 'slow', 'indian', 'techno', 'beat']
[]
['drum', 'drums', 'indian']
['drums']
['percussion', 'drum', 'drums', 'no guitar', 'indian', 'beat']
['drums']
['drum', 'drums', 'indian', 'beat']
['bongos', 'beats', 'percussion', 'drums', 'tribal', 'indian']
[]
['drums', 'weird', 'clapping', 'beat']
['weird', 'indian']
['drum', 'drums']
['beats', 'drum', 'drums']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'folk', 'strings', 'harpsicord', 'string', 'no vocals', 'spanish', 'slow']
['classical', 'guitar', 'lute', 'slow']
['classical', 'guitar', 'classical guitar', 'slow']
['silence', 'quiet']
['quiet', 'tribal', 'flutes', 'slow', 'flute', 'soft']
['vocals', 'voice', 'chanting', 'chant', 'male', 'vocal', 'indian']
['flute']
['world', 'wind', 'ambient', 'voice', 'male voice', 'chanting', 'weird', 'tribal', 'no vocals', 'chant', 'man', 'flutes', 'slow', 'male', 'indian', 'flute']
['flute']
['male vocal', 'man singing', 'slow']
['quiet', 'no vocal', 'slow', 'woman', 'flute']
['wind', 'indian', 'flute']
['vocals', 'voice', 'man', 'male', 'vocal', 'singing']
['classical', 'solo', 'piano', 'slow', 'piano solo']
['no violin', 'piano']
['classical', 'piano']
['classical', 'piano']
['classical', 'new age', 'piano']
['piano']
['piano', 'slow']
['male vocals']
['male vocal', 'guitar', 'male voice', 'fast', 'punk', 'rock', 'metal']
['guitar', 'rock', 'metal']
['fast', 'rock', 'metal']
['guitar']
['guitar', 'drums', 'instrumental']
['world', 'quiet', 'ambient', 'drum', 'drums', 'eastern', 'slow', 'indian', 'beat']
['drum', 'drums', 'electronic', 'beat']
['guitar', 'percussion', 'drums']
[]
['sitar', 'guitar', 'drum', 'drums', 'indian']
['bongos']
['quiet', 'ambient']
['electric', 'ambient', 'new age', 'water']
['chimes', 'ambient', 'new age', 'water']
['ambient']
['ambient', 'water']
['water']
['water']
['ambient', 'water']
['ambient', 'birds', 'water']
[]
['birds', 'water']
['water']
['ambient', 'synth', 'water']
['no vocal', 'water']
['water']
['ambient', 'electronic', 'water']
[]
['male vocal', 'jazz', 'male voice', 'drums', 'male singer', 'man', 'pop', 'male vocals', 'male', 'blues', 'vocal', 'jazzy', 'singing']
['jazz', 'jazzy']
['male vocal', 'country', 'vocal']
['jazz', 'man', 'vocal']
['loud', 'rock', 'metal']
[]
['classical', 'guitar', 'harp', 'slow', 'soft']
['guitar', 'quiet', 'piano', 'slow']
['classical', 'guitar', 'classical guitar', 'piano']
['classical', 'classic', 'fast', 'flute', 'baroque']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'classic', 'fast', 'violin', 'no flute', 'viola', 'cello', 'flute']
['harpsichord', 'classical', 'flute']
['electronic', 'techno', 'beat']
['beats', 'drums', 'electronic', 'dance', 'techno', 'beat']
['loud', 'electronic', 'techno', 'beat']
[]
['female', 'pop', 'women']
[]
['female', 'pop', 'female vocal', 'vocal', 'woman']
['female singing', 'female', 'pop']
['guitar', 'techno']
['guitar', 'electronic', 'no vocal', 'no vocals', 'techno']
['no voice', 'loud', 'fast', 'rock']
['loud', 'no vocal', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'fast', 'electric guitar', 'rock', 'metal']
['loud', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'hard', 'rock', 'metal']
['hard rock', 'heavy', 'loud', 'fast', 'heavy metal', 'rock', 'metal']
['guitar', 'quiet', 'strings', 'indian', 'flute']
['flute']
['flute']
[]
['female', 'female voice', 'voice', 'indian', 'woman']
['loud', 'indian']
['foreign', 'female', 'female voice', 'loud', 'female vocal', 'eastern', 'vocal', 'indian', 'woman', 'not english']
['foreign', 'female', 'vocal', 'indian']
['drums', 'no vocals', 'flute']
[]
['synth', 'drum', 'beat']
['drums', 'electronic', 'beat']
[]
['synth', 'drums', 'pop', 'beat', 'upbeat']
['drums', 'electronic', 'beat']
['no piano', 'drum', 'drums']
['rock']
['guitar', 'loud', 'country', 'rock']
['guitar', 'country']
['guitar', 'loud', 'drums', 'electric guitar', 'country', 'rock', 'guitars', 'upbeat']
['rock']
['sitar', 'silence', 'quiet', 'birds']
[]
['drum', 'drums', 'slow', 'indian']
['sitar', 'no piano', 'middle eastern', 'no vocal', 'eastern', 'indian']
['sitar', 'male vocal', 'vocals', 'foreign', 'middle eastern', 'male singer', 'strange', 'eastern', 'indian']
['duet', 'sitar', 'foreign', 'male voice', 'man singing', 'slow', 'vocal', 'indian', 'not english']
['violin']
['classical']
['opera', 'soprano', 'vocal', 'woman']
['classical', 'female', 'opera', 'violin', 'female vocal', 'slow', 'woman']
['classical', 'female', 'opera', 'vocal', 'woman']
['singer', 'female', 'opera', 'female vocal', 'slow', 'female vocals']
['classical', 'violin']
['classical', 'strings', 'classic', 'fast', 'violin']
['classical', 'violins', 'strings', 'violin']
['classical', 'strings', 'opera', 'violin']
['classical', 'strings', 'fast', 'violin']
['violin', 'baroque']
['classical']
['classical', 'violin']
['fast', 'violin']
['drums', 'no vocals']
['drum', 'voice']
['male vocal', 'voice', 'male voice', 'drums', 'fast', 'male singer', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['drums']
['electric', 'drums', 'electronic', 'electro', 'beat']
['water']
['female', 'ambient', 'slow']
['ambient', 'slow', 'vocal', 'choir']
['jazz', 'funk', 'organ', 'jazzy']
['jazz', 'funk']
['repetitive', 'bass', 'drums', 'electronic', 'fast', 'fast beat', 'dance', 'techno', 'beat', 'upbeat']
['world', 'beats', 'funky', 'no piano', 'jazz', 'ambient', 'new age', 'percussion', 'drum', 'repetitive', 'bass', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'modern', 'pop', 'rock', 'dance', 'jazzy', 'techno', 'beat', 'upbeat']
['beats', 'drums', 'electronic', 'dance', 'techno', 'beat']
[]
['techno']
['beats', 'drums', 'electronic', 'fast', 'dance', 'different', 'techno', 'beat']
['piano']
[]
['classical', 'solo', 'classic', 'fast', 'piano']
['piano']
['classical', 'fast', 'piano']
['quiet', 'piano']
['classical', 'quiet', 'classic', 'violin', 'cello']
['strings']
['classical', 'quiet', 'strings', 'classic', 'violin', 'slow', 'soft']
['classical', 'quiet', 'violins', 'strings', 'classic', 'string', 'violin', 'orchestra', 'slow']
[]
['classical', 'violins', 'strings', 'violin']
['classical', 'violin']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'orchestra', 'cello', 'baroque']
['male vocal', 'guitar', 'acoustic', 'country', 'man', 'slow', 'male', 'vocal', 'rock', 'english']
['man singing', 'country', 'pop']
['vocal']
['male vocal', 'male voice', 'male vocals', 'male', 'vocal', 'rock']
['guitar', 'folk', 'drums', 'country', 'pop', 'male vocals', 'male', 'rock', 'singing']
['men', 'pop', 'vocal', 'rock', 'singing']
['hard rock', 'heavy metal', 'rock', 'metal']
['male vocal', 'vocals', 'heavy', 'loud', 'male vocals', 'male', 'rock', 'metal']
['rock']
['rock']
[]
[]
['woman']
['female', 'guitar', 'electronic', 'weird', 'rock', 'techno']
['drums', 'fast', 'techno']
['synth']
['woman']
['flute']
['flute']
['no vocal', 'fast', 'no vocals', 'spanish', 'flute']
['folk', 'no vocals']
[]
[]
['guitar', 'slow']
['vocals', 'female', 'guitar', 'solo', 'female voice', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
[]
['guitar']
['singer', 'male vocal', 'vocals', 'female', 'jazz', 'guitar', 'folk', 'string', 'man', 'slow', 'vocal', 'woman', 'singing']
['guitar', 'different', 'upbeat']
['heavy', 'guitar', 'drums', 'rock']
['guitar', 'rock']
['heavy', 'guitar', 'loud', 'rock']
['guitar', 'loud', 'drums', 'modern', 'rock', 'techno', 'beat', 'metal']
['guitar', 'drums', 'rock']
['heavy', 'guitar', 'drums', 'electric guitar', 'rock', 'metal']
['guitar', 'solo', 'loud', 'fast', 'no vocals', 'rock']
['guitar', 'spanish']
['bass', 'electronic', 'techno', 'beat']
['beats', 'no piano', 'synth', 'electronic', 'fast', 'techno', 'beat']
[]
['electronic', 'fast', 'electronica', 'dance', 'techno', 'beat']
['string', 'fast', 'electro', 'fast beat', 'pop', 'dance', 'techno', 'beat']
['fast', 'techno']
[]
['fast', 'techno']
['no piano', 'classical', 'guitar', 'classic', 'harp', 'lute', 'piano', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'no vocals', 'harp']
['ambient', 'synth', 'electronic', 'trance', 'techno']
[]
['beats', 'techno']
['modern', 'techno']
['male vocal', 'electronic', 'electro', 'slow', 'techno', 'beat']
['harpsichord', 'classical', 'violin', 'cello']
['harpsichord', 'classical']
['classical', 'strings', 'cello']
['classical', 'strings', 'no vocal', 'violin']
['guitar']
['guitar']
['harpsichord', 'classical', 'medieval', 'flute', 'baroque']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow', 'flute']
['classical', 'violin', 'cello', 'flute', 'baroque']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow', 'flute']
['classical', 'strings', 'flute']
['harpsichord', 'classical', 'guitar', 'folk', 'strings']
['harpsichord', 'classical', 'guitar', 'strings', 'guitars', 'baroque']
['classical', 'guitar']
['classical', 'guitar', 'strings', 'classical guitar']
['guitar', 'strings', 'classical guitar']
[]
['guitar']
['guitar', 'no vocal']
['classical', 'piano']
['classical', 'quiet', 'piano']
['classical', 'piano']
['piano']
['classical', 'piano', 'slow']
['classical', 'jazz', 'piano']
['piano']
['classical', 'quiet', 'solo', 'keyboard', 'classic', 'no vocals', 'piano', 'piano solo']
['classical', 'classic', 'piano']
['piano']
['classical', 'solo', 'piano']
['piano']
['classical', 'piano']
['classical', 'solo', 'classic', 'dark', 'no flute', 'piano']
['piano', 'slow']
['jazz', 'piano', 'slow']
[]
['classical', 'solo', 'piano', 'piano solo']
['classical', 'piano']
['classical', 'classic', 'piano']
['classical', 'solo', 'piano']
['classical', 'piano']
['piano']
['harpsichord', 'classical', 'piano']
['classic', 'violin', 'piano']
['classical', 'piano']
['classical', 'fast', 'piano']
['classical', 'strings', 'piano', 'soft']
['classical', 'classic', 'string', 'fast', 'piano']
['classical', 'solo', 'violins', 'strings', 'classic', 'fast', 'no vocals', 'piano', 'cello']
[]
[]
['classical', 'strings', 'violin', 'piano', 'cello']
['classical', 'strings', 'violin', 'piano', 'cello']
['classical', 'fast', 'violin', 'no vocals', 'piano']
['classical', 'piano']
['violin', 'slow']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin', 'orchestra']
['classical', 'violin', 'cello']
['classical', 'solo', 'strings', 'string', 'violin', 'low', 'deep', 'cello']
['strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'cello']
[]
['classical', 'solo', 'strings', 'violin', 'cello']
['no piano', 'classical', 'strings', 'bass', 'fast', 'violin', 'cello']
['violins', 'violin']
['harpsichord', 'classical', 'guitar', 'strings', 'slow']
['sitar', 'classical', 'guitar', 'strings', 'medieval', 'string', 'lute', 'old']
['duet', 'harpsichord', 'classical', 'guitar', 'classical guitar', 'harp']
['vocals', 'female', 'guitar', 'quiet', 'folk', 'voice', 'classic', 'opera', 'harp', 'no flute', 'lute', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'not english']
['solo', 'opera', 'woman']
['no voice', 'classical', 'ambient', 'synth', 'strings', 'electronic', 'no guitar', 'no vocal', 'violin', 'no vocals', 'instrumental', 'slow']
['ambient', 'weird', 'slow']
['ambient', 'new age', 'strings', 'violin', 'strange', 'slow', 'not opera']
['classical']
['ambient', 'no vocal', 'chant', 'water']
[]
['eerie', 'harp', 'piano']
['sitar', 'guitar', 'quiet', 'no beat', 'ambient', 'strange', 'mellow', 'slow', 'indian']
['guitar', 'ambient', 'slow']
['slow']
['ambient', 'slow', 'water']
['classical', 'flute']
['classical']
[]
['classical', 'strings', 'flute']
['harpsichord', 'classical', 'violin', 'flute']
['harpsichord', 'classical', 'flute']
['harpsichord', 'classical', 'strings', 'no vocal', 'violin', 'no flute', 'slow', 'calm', 'flute', 'baroque']
['classical', 'flute']
['harpsichord', 'classical', 'strings', 'violin', 'piano', 'flute']
[]
['classical', 'violin']
['classical', 'violin']
['female', 'no vocal']
[]
[]
['electronic']
['electronic', 'no vocal', 'techno']
['no voice', 'beats', 'no voices', 'drums', 'electronic', 'electro', 'no vocals', 'dance', 'techno', 'beat']
['no voice', 'ambient', 'synth', 'repetitive', 'drums', 'electronic', 'fast', 'electro', 'slow', 'dance', 'techno', 'house', 'beat']
['electronic', 'techno']
['beats', 'synth', 'drums', 'electronic', 'trance', 'dance', 'techno', 'beat']
['synth']
['trance', 'dance', 'techno', 'house', 'beat']
['no singer', 'rock']
['male vocals', 'male', 'vocal', 'rock']
['vocals', 'male voice', 'pop', 'vocal']
['loud', 'electric guitar', 'rock', 'beat']
[]
[]
[]
['heavy', 'rock', 'metal']
[]
['rock']
['vocals', 'woman', 'female vocals']
['vocals']
['foreign', 'classical', 'violins', 'strings', 'medieval', 'string', 'drums', 'violin', 'irish', 'instrumental', 'celtic', 'eastern', 'slow', 'indian']
['no voice', 'classical', 'strings', 'drums', 'dark', 'no vocals', 'orchestra']
['female', 'drums', 'vocal', 'female vocals']
[]
[]
['guitar', 'electronic', 'electric guitar', 'rock']
['hard rock', 'loud', 'no vocal', 'rock']
['vocals', 'guitar', 'electronic']
['guitar', 'loud', 'electronic', 'rock', 'metal']
['no voice', 'guitar', 'loud', 'rock', 'metal']
['vocals', 'ambient', 'new age', 'drums', 'electronic', 'tribal', 'modern', 'vocal']
[]
['hard rock', 'guitar', 'male vocals', 'rock']
[]
['guitar', 'drums', 'rock']
[]
['no flute', 'techno', 'beat']
['synth', 'drums', 'electronic', 'talking', 'electro', 'fast beat', 'techno']
['fast', 'techno']
['female', 'synth', 'electronic', 'techno']
['synth', 'electronic', 'pop', 'woman', 'techno']
['synth', 'drums', 'electronic', 'rock', 'techno', 'upbeat']
['fast']
['loud']
['violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'cello']
['classical', 'violin', 'cello']
['classical', 'cello']
['classical', 'solo', 'strings', 'classic', 'violin', 'cello']
['harpsichord']
['harpsichord', 'classical']
['harpsichord', 'classical', 'piano']
['vocals', 'man']
[]
['rock']
['no piano', 'electronic', 'techno']
['electronic']
['funky', 'electric', 'drum', 'electronic', 'techno', 'beat']
['techno']
['electronic', 'techno']
['drums', 'electronic', 'techno']
['drums', 'beat']
['electronic']
['drums', 'electronic', 'fast', 'electro', 'fast beat', 'pop', 'beat']
['electric', 'synth', 'electronic', 'techno', 'beat']
['electronic']
['classical', 'fast', 'piano']
['classical', 'solo', 'piano', 'slow', 'soft']
[]
['no vocals', 'piano']
['guitar', 'loud', 'modern', 'male vocals', 'rock']
['male vocal', 'guitar', 'voice', 'male voice', 'weird', 'man', 'male vocals', 'slow', 'male', 'vocal', 'rock']
['loud', 'male vocals', 'vocal', 'rock']
['new age', 'synth', 'bass', 'techno']
['synth', 'electro', 'techno']
['electric']
['synth', 'no vocal', 'no vocals', 'techno', 'beat']
['funky', 'synth', 'electronic', 'no vocal', 'weird', 'electro', 'techno', 'beat']
[]
['drum', 'electronic', 'fast', 'techno']
['synth', 'electronic', 'no guitar', 'trance', 'disco', 'dance', 'techno']
['guitar', 'no vocal', 'no vocals']
['sitar', 'guitar', 'banjo']
['guitar', 'banjo', 'strings', 'fast', 'eastern', 'guitars', 'oriental']
['sitar', 'guitar', 'middle eastern', 'fast', 'indian']
['guitar', 'fast']
[]
['fast', 'no vocals', 'indian']
[]
['sitar', 'guitar']
['sitar', 'drums', 'indian']
['no singing', 'instrumental']
['sitar', 'no vocals', 'modern', 'indian']
[]
[]
[]
['sitar', 'indian']
['no piano', 'quiet', 'new age', 'weird', 'piano', 'slow']
[]
['synth', 'drums', 'fast', 'techno']
[]
[]
['middle eastern', 'violin']
[]
['classical', 'ambient', 'strings', 'violin', 'slow']
['guitar', 'soft']
['strings', 'violin']
[]
['classical', 'violins', 'strings', 'violin', 'sad', 'slow']
['guitar', 'singing']
['male vocal', 'guitar', 'folk', 'male voice', 'country', 'male']
['guitar']
['singer', 'male vocal', 'guitar', 'male', 'vocal']
['guitar']
['guitar', 'vocal']
['female', 'ambient', 'slow', 'woman', 'female vocals', 'techno']
['female', 'ambient', 'woman', 'female vocals']
['female vocal', 'vocal', 'singing']
[]
['drums', 'slow']
['jazz', 'drums', 'female vocal', 'slow']
[]
['quiet', 'wind', 'ambient', 'airy', 'birds', 'no violin', 'dark', 'piano', 'slow', 'soft']
['quiet', 'ambient', 'new age', 'airy', 'space', 'string', 'slow', 'soft']
['classical', 'drums', 'violin', 'modern']
['no voice', 'violins', 'ambient', 'new age', 'synth', 'strings', 'violin', 'modern', 'pop', 'slow']
['chorus', 'ambient', 'soft']
['wind', 'ambient', 'new age', 'strings', 'weird']
['ambient', 'new age', 'synth', 'electronic', 'no vocals']
['male vocal', 'vocals', 'no piano', 'guitar', 'male voice', 'male singer', 'man', 'slow', 'male', 'vocal', 'singing']
['vocals', 'guitar', 'male singer', 'man singing', 'man', 'slow', 'vocal']
[]
['guitar', 'male voice', 'man', 'pop', 'vocal', 'singing']
['guitar', 'synth', 'drums', 'rock']
['harpsichord', 'classical', 'strings', 'classic', 'string', 'violin', 'light', 'slow']
['violin']
[]
[]
[]
[]
['ambient']
['ambient']
['ambient', 'new age', 'electronic']
[]
[]
['harpsichord', 'medieval', 'classic']
['harpsichord', 'classical', 'harpsicord', 'piano']
['classical', 'guitar', 'strings', 'harp']
['classical', 'violin', 'slow']
['no voice', 'classical', 'violin']
['guitar', 'instrumental']
['guitar', 'no vocal', 'slow', 'cello']
[]
['no vocals', 'harp']
[]
['strings', 'slow']
['electronic']
['synth', 'electronic', 'flute']
['synth', 'electronic']
['synth', 'electronic', 'instrumental']
['synth', 'electronic', 'fast']
['synth', 'electronic', 'instrumental']
['no voice', 'synth', 'electronic', 'no vocal', 'slow']
['slow']
['classical', 'guitar', 'piano', 'male']
['man']
['male vocal', 'male voice']
['male vocal', 'guitar', 'celtic', 'slow', 'male']
['man']
['guitar', 'drums', 'male vocals']
[]
['beats', 'percussion', 'drum', 'bass', 'drums', 'fast', 'jungle', 'beat']
[]
['middle eastern', 'drums', 'fast', 'indian']
['drums']
['eerie', 'ambient', 'drums']
['quiet', 'no vocal', 'weird', 'no vocals']
['ambient']
['ambient', 'slow']
['drums']
['drums']
['drums', 'drone', 'beat']
[]
['techno', 'beat']
['drums', 'vocal', 'rock', 'singing']
['no piano', 'electronic']
['female', 'folk', 'irish', 'female vocal', 'celtic', 'woman']
['folk', 'vocal']
[]
['techno']
['drums', 'different']
['guitar', 'ambient', 'new age', 'loud', 'drums', 'eastern', 'slow', 'indian']
['sitar', 'guitar', 'loud', 'drums', 'eastern', 'slow', 'indian']
[]
['sitar', 'guitar', 'drums', 'eastern', 'indian']
['drums', 'pop', 'slow']
['vocals', 'female', 'pop', 'female vocal']
['female', 'pop', 'female singer']
['pop', 'vocal', 'woman', 'rock']
['vocals', 'female', 'voice', 'drums', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'singing', 'female vocals']
['guitar', 'electric', 'solo', 'drums', 'electric guitar', 'rock', 'beat']
['singer', 'male vocal', 'guitar', 'male voice', 'pop', 'male', 'rock']
['guitar', 'electric', 'male voice', 'drums', 'electric guitar', 'man singing', 'country', 'man', 'pop', 'male', 'rock']
['rock', 'singing']
['rock']
[]
['hard rock', 'vocals', 'guitar', 'electric', 'loud', 'fast', 'electric guitar', 'no vocals', 'heavy metal', 'punk', 'rock', 'guitars', 'techno', 'metal']
['vocals', 'guitar', 'electric', 'male voice', 'drums', 'electric guitar', 'rock', 'metal']
['rock']
['harpsichord', 'classical']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'harp']
['harpsichord', 'strings']
['guitar', 'slow']
[]
['no voice', 'sitar', 'guitar', 'bass']
['classical', 'guitar', 'acoustic']
['synth', 'electronic', 'electro', 'techno', 'beat']
['synth', 'electronic', 'techno']
['male vocal', 'vocals', 'electric', 'synth', 'electronic', 'weird', 'electronica', 'male', 'vocal', 'techno']
['synth', 'techno']
['techno']
[]
['synth', 'no singing', 'electronic', 'no vocal', 'fast', 'no vocals', 'electronica', 'trance', 'fast beat', 'dance', 'techno', 'beat']
['synth', 'bass', 'electronic', 'fast', 'techno', 'beat']
[]
['synth', 'electronic', 'fast', 'dance', 'techno']
['electronic', 'fast', 'dance', 'techno', 'beat', 'upbeat']
[]
['beats', 'synth', 'electronic', 'no vocal', 'fast', 'trance', 'dance', 'techno', 'house', 'beat']
['electronic', 'techno']
['beats', 'loud', 'fast', 'electro', 'trance', 'dance', 'techno', 'house', 'beat']
['synth', 'electronic', 'fast', 'trance', 'fast beat', 'dance', 'techno']
['guitar']
['hard rock', 'guitar', 'rock', 'metal']
['rock', 'metal']
['male vocal', 'male voice', 'rock']
['male vocal', 'heavy', 'male voice', 'loud', 'drums', 'pop', 'rock']
[]
['men', 'ambient', 'voice', 'electronic', 'male', 'vocal', 'techno', 'beat', 'choir']
['new age', 'drums', 'chanting', 'vocal', 'woman', 'singing', 'techno', 'beat']
['techno']
['no voice']
['female', 'ambient', 'female vocal', 'slow', 'woman']
['celtic', 'techno']
['classical', 'flute']
['classical', 'strings', 'violin', 'flute']
['classical', 'violins', 'classic', 'string', 'violin', 'flute']
[]
['male vocal', 'rock']
['talking', 'vocal']
['ambient', 'synth', 'no singing', 'electronic', 'electro', 'modern']
[]
['synth', 'drums', 'techno', 'beat']
['new age', 'no vocal', 'instrumental']
[]
[]
['ambient', 'synth', 'electronic', 'techno']
['ambient', 'slow']
['male vocal', 'voice', 'male voice', 'male', 'vocal']
['male vocal', 'vocal']
['noise']
[]
[]
['silence', 'quiet', 'bass', 'drums', 'low']
['quiet', 'bass', 'dark']
['quiet', 'ambient', 'slow', 'soft']
[]
[]
['new age', 'slow']
[]
[]
['no strings', 'wind', 'ambient', 'synth', 'electronic', 'weird', 'slow']
['ambient']
[]
['no voice', 'no voices', 'quiet', 'ambient', 'synth', 'slow', 'soft']
['ambient']
['no guitar']
[]
['quiet', 'no singing', 'slow']
['eerie', 'spacey', 'quiet', 'wind', 'ambient', 'new age', 'synth', 'airy', 'bass', 'electronic', 'no vocals', 'low', 'synthesizer', 'slow', 'scary', 'soft']
['quiet', 'ambient', 'slow']
[]
['eerie', 'ambient', 'dark']
['wind']
['ambient', 'no drums']
['wind', 'ambient', 'space', 'electronic', 'slow']
[]
['ambient', 'no violin']
['quiet', 'wind', 'ambient', 'synth', 'no guitar', 'no vocal', 'dark', 'trance', 'slow']
['no voice', 'ambient']
['no piano', 'quiet', 'wind', 'ambient', 'synth', 'slow']
['ambient', 'slow']
['quiet', 'ambient', 'instrumental']
['no piano', 'spacey', 'quiet', 'wind', 'ambient', 'new age', 'space', 'bass', 'weird', 'slow']
['quiet', 'wind', 'ambient', 'strange', 'industrial', 'slow', 'beat', 'soft']
['quiet', 'dark', 'low', 'bells', 'slow', 'different']
[]
['silence', 'no piano', 'quiet', 'ambient', 'low', 'drone', 'deep']
[]
['quiet', 'bass', 'electronic', 'low', 'mellow', 'slow']
['quiet', 'ambient', 'bass', 'slow', 'soft']
['quiet', 'ambient', 'synth', 'no vocal', 'slow']
[]
['no voice', 'quiet', 'ambient', 'new age', 'electronic', 'no guitar', 'no vocal', 'slow', 'soft']
['quiet', 'ambient', 'low', 'no flute', 'slow', 'no drums', 'soft']
[]
['slow']
['new age']
['quiet', 'ambient', 'dark', 'slow']
['electronic']
['wind']
[]
['quiet', 'ambient', 'electronic', 'slow']
[]
['ambient']
['quiet', 'ambient', 'new age', 'slow', 'techno']
['quiet', 'ambient', 'slow']
[]
['quiet', 'ambient', 'slow']
['quiet', 'low', 'slow', 'beat', 'soft']
['bass', 'slow']
[]
['quiet']
['no vocals', 'noise']
[]
['jazz', 'drums', 'sax', 'jazzy']
['jazz', 'trumpet', 'no vocal', 'fast', 'no vocals', 'sax', 'jazzy']
[]
[]
['guitar', 'no singing', 'no vocal', 'fast', 'no vocals', 'modern', 'rock', 'jazzy']
['jazz', 'sax', 'jazzy']
['jazz', 'drums', 'sax', 'jazzy']
['guitar', 'soft']
['male vocal', 'guitar', 'man', 'male', 'vocal']
['folk', 'country', 'male']
['male voice', 'country', 'pop']
['country', 'man']
['guitar']
[]
['guitar', 'loud', 'drums', 'fast', 'pop', 'woman', 'rock', 'singing', 'beat']
['no voice', 'no voices', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'industrial', 'rock', 'techno', 'beat']
[]
['electronic']
['synth', 'electronic', 'electro', 'pop', 'dance', 'techno']
['beats']
['electric', 'techno']
['synth', 'electronic', 'fast', 'electro', 'electronica', 'dance', 'techno', 'beat']
['new age']
['electronic', 'fast', 'techno', 'beat']
['electric', 'electronic', 'fast', 'synthesizer', 'techno']
[]
['fast', 'male', 'techno']
['male vocal', 'vocals', 'rock', 'dance', 'techno']
['male vocal', 'pop']
['guitar', 'harp']
[]
['harpsichord', 'no piano', 'classical', 'guitar', 'strings', 'harp', 'lute', 'piano']
[]
['classical', 'guitar', 'string']
['classical', 'guitar', 'strings', 'classical guitar']
['classical', 'guitar', 'strings']
[]
['weird', 'techno']
['no vocal', 'beat']
['bass', 'drums', 'deep']
['guitar']
[]
['beats', 'female', 'jazz', 'female voice', 'voice', 'bass', 'drums', 'modern', 'pop', 'female vocal', 'slow', 'woman', 'beat']
[]
[]
['beats', 'drums', 'beat']
[]
['drum', 'drums', 'slow', 'beat']
['beats', 'drums', 'no vocal', 'no vocals', 'mellow', 'slow', 'beat']
['male vocal']
['harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord', 'harp']
['opera']
['vocals', 'woman', 'singing']
['vocals', 'female', 'opera', 'female vocal', 'slow', 'woman']
['classical', 'female', 'opera', 'woman']
['duet', 'male vocal', 'vocals', 'female', 'choral', 'opera', 'vocal', 'singing', 'female vocals', 'choir']
['duet', 'voice', 'opera', 'slow']
['duet', 'opera', 'slow', 'vocal']
['female voice', 'vocal']
['duet', 'vocals', 'classical', 'female', 'choral', 'opera', 'vocal']
['quiet', 'ambient', 'electronic', 'beat']
['ambient', 'techno']
['voices']
['ambient', 'trance', 'rock', 'techno', 'not opera']
['ambient', 'chanting', 'trance', 'indian']
[]
['ambient', 'weird', 'indian', 'voices']
['ambient', 'electronic', 'no vocal', 'instrumental', 'modern', 'techno']
['weird']
['ambient', 'fast', 'dark', 'indian', 'rock']
['classical', 'guitar', 'harp', 'piano']
['classical', 'guitar']
['guitar', 'drums', 'rock']
['vocals', 'guitar', 'loud', 'drums', 'fast', 'male singer', 'man singing', 'rock']
['hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'male', 'rock', 'metal']
['rock']
['hard rock', 'guitar', 'loud', 'drums', 'no vocal', 'fast', 'electric guitar', 'no vocals', 'hard', 'rock', 'metal']
['classical', 'classic', 'piano']
['solo', 'piano', 'baroque']
['classical', 'quiet', 'low', 'piano', 'slow', 'soft']
[]
['rock']
['punk', 'vocal', 'rock', 'metal']
['heavy', 'drums', 'electric guitar', 'rock']
['rock']
['no piano', 'rock']
['male vocal', 'electronic']
['techno']
['drums', 'male', 'beat']
['heavy', 'bass', 'electronic', 'trance', 'male', 'vocal', 'dance', 'techno', 'house']
[]
['bass', 'electronic', 'fast', 'dance', 'techno', 'house']
['female', 'opera', 'woman']
['hard rock', 'loud', 'rock', 'metal']
['heavy', 'male', 'rock', 'metal']
['harpsichord', 'classical', 'harpsicord', 'medieval', 'classic']
['harpsichord', 'classical', 'strings', 'harp', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'classic', 'harp', 'piano']
['classical', 'harp']
['piano']
['no voice', 'harpsichord', 'classical', 'no singing', 'harpsicord', 'no flute', 'piano', 'baroque']
['harpsichord', 'classical', 'guitar', 'piano', 'baroque']
['harpsichord', 'classical', 'strings', 'harpsicord', 'keyboard', 'no vocal', 'no vocals', 'slow', 'soft']
['guitar', 'electric', 'electronic', 'electro', 'rock', 'techno']
['male vocal', 'pop']
['male vocal', 'vocals', 'fast', 'male singer', 'pop', 'male vocals', 'male', 'rock', 'singing']
['rock']
['loud', 'male vocals', 'rock', 'guitars']
['jazz']
[]
[]
[]
['jazz']
['jazz', 'piano']
[]
['electronic', 'jazzy']
['guitar', 'fast', 'upbeat']
['beats', 'guitar', 'drums', 'fast', 'dance', 'beat']
['fast', 'arabic', 'upbeat']
['guitar', 'fast', 'oriental']
[]
[]
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'middle eastern', 'drums', 'eastern', 'indian']
[]
[]
['drum', 'no guitar', 'sax', 'flute']
['jazz', 'drum', 'drums']
['jazz', 'sax', 'jazzy']
['jazz']
['jazz', 'slow', 'jazzy', 'not opera']
[]
['guitar', 'folk', 'singing', 'women']
[]
['female', 'pop']
['ambient', 'organ']
['no strings', 'spacey', 'quiet', 'ambient', 'synth', 'drone', 'slow']
['ambient', 'calm']
['ambient', 'new age', 'airy', 'weird', 'strange', 'slow']
['no piano', 'ambient']
[]
['spacey', 'ambient', 'new age', 'no vocal']
['ambient']
['ambient']
['quiet', 'ambient', 'space', 'electronic', 'no guitar', 'no vocals', 'slow', 'soft']
['ambient']
['ambient', 'new age', 'no violin', 'slow']
['ambient', 'no guitar', 'slow']
['quiet', 'ambient']
[]
['ambient', 'no vocal', 'low', 'slow', 'soft']
[]
[]
['no piano', 'ambient', 'drone', 'slow']
['ambient']
['ambient']
['ambient', 'synth']
['ambient']
['ambient', 'new age']
['quiet', 'ambient', 'slow', 'calm', 'techno', 'soft']
['ambient', 'soft']
['no voices', 'ambient', 'slow']
['ambient', 'new age', 'electronic', 'slow', 'no drums']
['ambient', 'drone', 'slow']
['ambient', 'no vocal', 'no vocals', 'slow', 'no singer']
[]
[]
['no piano', 'ambient']
['ambient', 'no vocal', 'no vocals', 'soft']
['spacey', 'ambient', 'new age', 'slow']
['slow']
['ambient']
[]
['classical', 'folk', 'ambient', 'drums', 'electronic', 'organ', 'country', 'slow', 'no drums', 'calm', 'different', 'flute', 'soft']
['male vocal', 'vocals', 'guitar', 'country', 'male']
['male vocal', 'vocals', 'country', 'man', 'pop']
['female singing', 'female', 'jazz', 'guitar', 'folk', 'female voice', 'country', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'female vocals', 'female singer']
['female', 'girl']
[]
['vocals', 'female', 'guitar', 'singing']
['bongos', 'drum', 'drums', 'fast']
['drums', 'male', 'vocal', 'rock']
['male vocal', 'guitar', 'male voice', 'loud', 'pop', 'male vocals', 'male', 'rock']
['loud', 'pop', 'male']
[]
['harpsichord', 'strings']
['guitar', 'female voice', 'opera', 'woman', 'singing']
['female', 'guitar', 'chanting', 'singing', 'female vocals', 'choir']
['female', 'singing']
['singing', 'choir']
[]
['male vocal', 'guitar', 'voice', 'male voice', 'country', 'man', 'male', 'jazzy', 'beat']
[]
['no singing', 'drums', 'jazzy']
['vocals', 'funk']
['echo']
['arabic', 'indian']
[]
['no piano', 'loud', 'rock']
['electronic', 'rock']
['quiet', 'instrumental']
['woman']
['vocals']
[]
[]
['female', 'no guitar', 'vocal']
['opera', 'slow']
['vocals', 'heavy', 'male voice', 'fast', 'male', 'rock']
['loud', 'fast', 'man singing', 'man', 'rock', 'singing']
['male vocal', 'loud', 'rock', 'singing', 'metal']
['guitar', 'rock']
['classical', 'no singing', 'violin', 'orchestral']
[]
['female', 'opera']
['classical', 'opera', 'singing']
['opera']
['opera']
['opera', 'male opera']
[]
[]
['classical', 'no guitar', 'choral', 'opera', 'choir']
['male vocal', 'opera', 'male opera', 'man', 'male']
['male vocal', 'male voice', 'opera', 'male opera', 'male']
['duet', 'voice', 'male voice', 'opera', 'male opera', 'man', 'choir']
[]
['indian']
['beats', 'voice', 'loud', 'drums', 'indian']
['vocals', 'foreign', 'female', 'tribal', 'woman']
['vocals', 'foreign', 'female', 'indian', 'woman', 'singing']
['drums', 'fast']
['new age']
['guitar', 'drums', 'beat']
['guitar', 'drums', 'electric guitar']
['funky', 'guitar', 'solo', 'drum', 'drums', 'electronic', 'electric guitar', 'no vocals', 'instrumental', 'deep', 'pop', 'rock', 'jazzy', 'beat']
[]
['guitar', 'fast', 'electric guitar']
['drums']
[]
[]
['weird']
[]
['drums']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'classic', 'string', 'old']
['harpsichord', 'classical']
[]
['harpsichord']
[]
['vocals', 'classical', 'choral', 'opera', 'choir']
['opera', 'choir']
[]
['chorus', 'classical', 'choral', 'vocal', 'choir']
['classical', 'violins', 'strings', 'violin', 'sad', 'slow', 'cello']
['no voice', 'classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'solo', 'strings', 'classic', 'fast', 'violin', 'slow', 'cello']
['classical', 'solo', 'strings', 'fast', 'violin', 'cello']
['classical', 'fast', 'piano', 'orchestra']
['classical', 'fast', 'violin', 'piano', 'cello']
['classical', 'violin', 'piano']
['classical', 'quiet', 'strings', 'classic', 'violin', 'piano', 'slow', 'cello']
['piano']
['classical', 'quiet', 'solo', 'piano']
['classical', 'quiet', 'classic', 'violin', 'piano', 'sad', 'slow', 'cello', 'soft']
['piano', 'cello']
['classical', 'piano']
['classical', 'strings', 'classic', 'violin', 'piano', 'cello']
['harpsichord', 'guitar']
['beats', 'loud', 'drums', 'electronic', 'no vocal', 'fast', 'electro', 'trance', 'fast beat', 'dance', 'techno', 'beat']
['electronic', 'fast', 'techno']
['synth', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
[]
[]
['synth', 'fast', 'fast beat', 'dance', 'techno']
['fast', 'dance', 'techno']
['female voice', 'female vocal', 'slow', 'vocal']
['jazz', 'drums', 'fast', 'piano']
['jazz', 'piano', 'jazzy']
['jazz', 'drums', 'no guitar', 'no flute', 'piano', 'jazzy', 'upbeat']
['drums']
['jazz', 'piano', 'jazzy']
['jazz', 'bass', 'piano']
[]
[]
['male vocal', 'vocals', 'guitar', 'male voice', 'drums', 'male singer', 'male', 'vocal', 'singing']
['man singing', 'slow']
['quiet', 'no beat', 'ambient', 'dark', 'slow']
[]
[]
['wind']
[]
['ambient', 'techno']
[]
['ambient', 'new age', 'synth', 'electronic', 'trance', 'slow']
['quiet', 'ambient', 'electronic', 'modern', 'choir']
['bass', 'piano']
['singer', 'male vocal', 'vocals', 'voice', 'bass', 'male voice', 'drums', 'electronic', 'man', 'piano', 'slow', 'male', 'vocal', 'jazzy', 'soft']
['guitar', 'piano', 'slow', 'vocal']
['guitar', 'bass', 'piano', 'slow']
['male vocal', 'male voice', 'mellow', 'piano', 'slow', 'male']
['vocals', 'bass']
['slow', 'cello']
['violin', 'low', 'cello']
['chorus', 'vocals', 'female', 'quiet', 'ambient', 'electronic', 'no vocal', 'choral', 'dark', 'low', 'female vocal', 'slow', 'soft', 'choir', 'women']
[]
[]
['guitar', 'slow', 'rock']
['hard rock', 'male vocal', 'vocals', 'loud', 'pop', 'male vocals', 'male', 'rock', 'metal']
['guitar', 'rock']
['hard rock', 'male vocal', 'vocals', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing', 'metal']
['heavy metal', 'rock', 'metal']
['guitar', 'country', 'blues', 'rock']
['guitar', 'blues']
[]
[]
['classical', 'strings', 'violin', 'piano']
[]
['classical', 'guitar', 'strings']
['guitar']
[]
['male vocal', 'male', 'vocal', 'singing']
[]
[]
['female voice', 'synth', 'pop', 'female vocal', 'slow', 'beat']
['guitar', 'singing']
['pop', 'piano', 'vocal']
['pop', 'female vocals']
[]
['female', 'guitar', 'no vocal', 'country', 'no vocals', 'pop']
['chimes', 'ambient', 'new age', 'bells', 'mellow']
['ambient', 'choir']
[]
['chimes', 'ambient', 'synth', 'no vocal', 'instrumental', 'water']
['new age']
['chimes', 'ambient', 'new age', 'electronic', 'slow']
['spacey', 'airy', 'no vocals', 'choir']
['chimes']
['ambient', 'mellow', 'soft']
['chimes', 'ambient', 'new age', 'slow', 'soft']
['ambient', 'new age', 'synth', 'airy', 'no vocals', 'slow', 'voices', 'soft', 'water']
['voice', 'slow', 'choir']
['ambient']
['sitar', 'guitar', 'slow']
['female', 'new age', 'strings', 'drums', 'violin', 'female vocal', 'celtic', 'slow', 'indian']
['vocals', 'female', 'drums', 'female vocal', 'vocal']
['foreign', 'drums', 'vocal']
['silence', 'quiet']
['quiet', 'piano', 'slow']
['classical', 'guitar', 'quiet', 'solo', 'no vocal', 'no vocals', 'harp', 'piano', 'slow', 'soft']
['guitar', 'flute']
['guitar', 'slow', 'flute']
['slow']
['guitar', 'flute']
['flute']
['wind', 'instrumental', 'lute', 'indian', 'flute']
['no vocal', 'flute', 'soft']
['flute']
['classical', 'no vocals', 'flute']
['quiet', 'flute']
['calm', 'flute']
[]
['classical', 'strings', 'violin']
['chimes', 'bells']
['singer', 'female', 'female voice', 'ambient', 'female vocal', 'light', 'woman', 'woman singing', 'singing', 'female vocals']
['female', 'female vocal']
['female', 'female voice', 'electronic', 'techno']
['female', 'female voice', 'ambient', 'voice', 'female vocal', 'slow']
['electronic']
[]
[]
['guitar', 'female voice', 'voice', 'female vocal', 'vocal', 'singing']
['female', 'pop', 'woman']
[]
['drums', 'electronic', 'trance', 'techno', 'beat']
[]
['beats', 'electronic', 'techno']
[]
['techno', 'beat']
['synth', 'electronic', 'techno']
['synth', 'electronic', 'techno']
[]
[]
['electronic', 'no vocal', 'techno']
['female', 'pop', 'female vocal', 'slow', 'female vocals']
['vocals', 'female', 'guitar', 'pop', 'blues', 'vocal', 'woman']
[]
['guitar', 'solo', 'blues', 'jazzy']
[]
['beats']
['vocals', 'funky', 'female', 'funk', 'drums', 'electro', 'pop', 'female vocal', 'vocal', 'house']
['male vocal', 'vocals', 'foreign', 'male singer', 'arabic', 'man', 'male', 'vocal', 'indian', 'not english']
['electronic', 'no vocal', 'different', 'techno', 'beat']
['guitar', 'rock']
['guitar', 'loud', 'rock', 'upbeat']
['hard rock', 'heavy', 'guitar', 'loud', 'rock']
['heavy', 'guitar', 'loud', 'rock', 'metal']
['guitar', 'loud', 'rock', 'metal']
['hard rock', 'no singing', 'loud', 'hard', 'rock']
['guitar', 'loud', 'rock', 'metal']
[]
['guitar', 'harp']
['no voice', 'classical', 'guitar', 'solo', 'strings', 'string', 'harp', 'piano', 'slow']
['classical', 'guitar', 'strings', 'harp', 'piano']
['classical', 'harp']
['harp']
['strings', 'harp', 'piano']
['duet', 'classical', 'female', 'opera', 'male']
['duet', 'vocals', 'female', 'opera', 'operatic', 'singing']
['vocals', 'classical', 'female', 'opera']
['vocals', 'no piano', 'female voice', 'classic', 'choral', 'opera', 'singing']
['vocals', 'opera', 'choir']
['guitar', 'country', 'no vocals', 'blues']
['guitar', 'country', 'blues']
['guitar', 'country']
['guitar', 'blues']
['guitar']
['woodwind', 'jazz', 'oboe', 'slow', 'flute']
[]
['woodwind', 'no piano', 'quiet', 'wind', 'no vocals', 'slow', 'flute']
['solo', 'wind', 'no vocal', 'no vocals', 'flute']
['solo', 'sad', 'slow', 'flute']
['classical', 'quiet', 'solo', 'wind', 'weird', 'slow', 'flute']
['flute']
['flute']
['female', 'quiet', 'no beat', 'flute']
[]
['woodwind', 'flute']
[]
['new age', 'middle eastern', 'strings', 'harp']
['no vocal', 'no vocals']
[]
['lol']
[]
['harp', 'oriental']
['sitar', 'harp', 'piano']
['drum', 'drums']
['guitar', 'drums', 'eastern']
[]
['jazz', 'indian']
['fast', 'indian', 'oriental']
['indian']
[]
['classical', 'flute']
['plucking', 'no piano', 'classical', 'guitar', 'quiet', 'strings', 'classic', 'instrumental', 'harp', 'piano', 'slow', 'calm', 'soft']
['harpsichord', 'classical', 'guitar', 'quiet', 'solo', 'strings', 'acoustic', 'classical guitar', 'harp', 'piano', 'slow', 'soft']
['classical', 'guitar', 'soft']
[]
['classical', 'guitar', 'strings', 'medieval', 'acoustic', 'harp']
['guitar', 'lute']
['harpsichord', 'classical', 'guitar', 'not rock', 'harp']
['classical', 'guitar', 'solo', 'slow']
['classical', 'guitar', 'harp', 'lute']
['guitar', 'blues']
['female', 'guitar', 'girl', 'fast', 'electric guitar', 'female vocal', 'blues', 'vocal', 'woman singing', 'rock']
['guitar']
['man', 'slow', 'male']
[]
[]
['male vocal', 'vocals', 'guitar', 'drums', 'man', 'pop', 'male']
['voices']
['synth', 'drums', 'strange', 'techno']
[]
['no vocal', 'talking', 'weird']
['modern', 'noise']
['ambient', 'birds', 'weird', 'noise']
['noise']
[]
['no voice', 'classical', 'violin']
['harpsichord', 'strings', 'violin', 'no vocals']
['classical', 'violins', 'strings', 'slow']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'classic', 'violin']
['classical', 'violins', 'strings', 'violin', 'slow']
['harpsichord', 'classical', 'strings', 'no vocal', 'fast', 'violin', 'no vocals']
['male vocal', 'jazz', 'loud', 'male', 'blues', 'rock']
[]
['heavy', 'guitar', 'male vocals', 'slow', 'blues', 'rock']
['guitar', 'sax', 'blues', 'rock']
['guitar', 'rock']
['male vocal', 'male vocals', 'slow', 'rock']
['no voice', 'classical', 'violins', 'strings', 'no vocal', 'violin', 'irish', 'cello', 'baroque']
['classical', 'strings', 'violin']
['strings', 'no vocal', 'country', 'violin', 'no vocals', 'cello']
['classical', 'violin', 'fiddle']
['classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'folk', 'strings', 'string', 'country', 'violin', 'irish', 'celtic', 'orchestra', 'cello', 'fiddle']
['no voice', 'beats']
['drums', 'vocal', 'woman', 'woman singing']
[]
['drums']
['drums']
[]
['strings', 'low']
['beats', 'drums', 'weird', 'tribal', 'techno']
['drums', 'fast', 'techno']
['ambient', 'synth', 'drums', 'no vocals', 'electronica', 'noise']
[]
['beats', 'drums', 'techno', 'beat']
['electronic', 'fast']
['techno', 'beat']
['loud', 'techno']
['chanting']
['chorus', 'men', 'chanting', 'choral', 'opera', 'singing', 'voices', 'choir']
['choral', 'male', 'choir']
['choral', 'choir']
['choral']
['choral', 'choir']
['chorus', 'classical', 'choral', 'opera', 'vocal', 'choir']
['choral', 'opera', 'chant', 'choir']
['opera', 'choir']
[]
['ambient', 'slow', 'soft']
[]
[]
['quiet', 'ambient', 'drums']
['synth', 'electronic']
['synth', 'pop', 'rock']
['female', 'female voice', 'fast', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'dance', 'female vocals', 'beat']
['fast', 'pop']
['silence', 'quiet', 'ambient', 'techno']
['funky']
['beats', 'drums', 'electronic', 'techno', 'house', 'beat']
[]
['techno']
[]
['no voice', 'beats', 'funky', 'ambient', 'electronic', 'techno', 'beat']
['beats', 'funky', 'electric', 'drum', 'electronic', 'fast', 'no vocals', 'dance', 'techno', 'beat']
['beats', 'no piano', 'percussion', 'drum', 'drums', 'tribal', 'beat']
['drum', 'drums']
['male vocal', 'vocals', 'man', 'pop', 'piano', 'male', 'vocal', 'singing']
['male voice', 'man', 'piano', 'male']
['singer', 'male vocal', 'vocals', 'male voice', 'male singer', 'man singing', 'man', 'piano', 'male', 'vocal']
['male voice', 'man singing', 'piano', 'male', 'vocal']
['guitar', 'loud', 'weird', 'electric guitar', 'slow', 'rock', 'techno']
[]
['drum', 'loud', 'modern', 'flute']
[]
[]
['guitar']
['jazz', 'ambient', 'new age', 'airy', 'no vocals']
['water']
['no voice', 'electronic', 'techno']
[]
['beats', 'classical', 'drums', 'electronic', 'fast', 'electro', 'dance', 'techno', 'clapping', 'beat', 'hip hop']
['no voice', 'no vocal', 'fast', 'techno']
['clapping']
['chimes', 'ambient', 'no vocals', 'bells']
['ambient', 'bells', 'slow', 'water']
['ambient']
[]
['spacey', 'quiet', 'ambient', 'synth', 'electronic', 'dark', 'no vocals']
['ambient', 'water']
['ambient', 'no violin', 'water']
['ambient', 'new age', 'synth', 'strange']
['ambient', 'synth', 'loud', 'weird', 'instrumental', 'slow']
['spacey', 'ambient', 'new age', 'synth', 'birds', 'no vocals']
[]
['ambient', 'new age', 'synth', 'electronic', 'water']
[]
['classical', 'loud', 'organ']
['ambient', 'synth', 'electronic', 'violin']
['rock']
['male vocal', 'guitar', 'male', 'rock', 'singing']
['male vocal', 'male voice', 'drums', 'modern', 'man', 'pop', 'male', 'vocal', 'rock', 'singing']
['vocals', 'guitar', 'male voice', 'loud', 'drums', 'male singer', 'modern', 'male', 'rock']
['guitar', 'piano', 'rock']
['guitar', 'ambient', 'no violin', 'violin', 'slow']
[]
[]
['ambient', 'slow', 'calm', 'soft']
[]
['ambient', 'drone', 'slow']
['quiet', 'ambient', 'different']
['ambient', 'weird', 'slow']
['quiet', 'ambient', 'no vocal', 'instrumental', 'trance', 'slow']
['synth', 'organ', 'slow']
['classical', 'ambient', 'strings', 'slow']
['no piano', 'classical', 'synth', 'space', 'organ']
[]
['synth', 'slow']
['electric', 'ambient', 'strings', 'organ', 'slow']
['no beat']
['ambient']
['classical', 'eerie', 'ambient', 'synth', 'electronic', 'organ', 'weird', 'slow', 'soft']
[]
['ambient', 'slow']
['ambient', 'new age', 'electronic', 'organ', 'bells']
['eerie', 'quiet']
['organ', 'no vocal', 'no vocals', 'bells']
['classical', 'spacey', 'ambient', 'no violin', 'organ', 'violin', 'slow', 'flute']
['ambient']
['quiet', 'ambient', 'slow']
['no guitar', 'strange']
['guitar', 'strings', 'no vocal', 'no vocals']
['violin']
['classical', 'guitar', 'strings']
[]
['synth', 'electronica', 'beat']
['beats', 'drums', 'weird', 'electro', 'techno', 'beat']
[]
['electronic', 'not rock', 'no vocal', 'instrumental', 'slow']
['electric', 'repetitive', 'electronic', 'techno']
['synth', 'loud', 'electronic', 'weird', 'techno']
['electronic', 'techno']
['no voice', 'drums', 'dance', 'techno', 'beat']
['beats', 'synth', 'electro', 'techno']
['synth', 'electronic']
['fast', 'techno']
['classical', 'solo', 'piano']
['duet', 'clarinet', 'classical', 'solo', 'oboe', 'piano', 'slow', 'flute']
['classical', 'oboe', 'piano']
[]
['eerie', 'quiet', 'wind']
['spacey', 'ambient', 'synth', 'weird', 'dark', 'no vocals', 'noise']
[]
['deep', 'slow']
['wind']
['no voice', 'no vocal', 'weird']
['wind', 'ambient', 'dark', 'scary', 'noise']
['eerie', 'wind', 'ambient', 'electronic', 'no violin', 'dark', 'deep', 'scary']
['wind', 'ambient', 'weird', 'dark', 'low']
[]
[]
['vocals', 'male voice', 'female vocal']
[]
['slow', 'flute']
['celtic', 'slow', 'flute']
['drums', 'indian', 'flute', 'oriental']
['classical', 'tribal', 'flute', 'oriental', 'soft']
['indian', 'flute']
[]
[]
['female', 'voice', 'pop', 'female vocal', 'slow', 'woman', 'woman singing', 'singing', 'female vocals', 'soft', 'female singer']
['female', 'female voice', 'slow', 'beat']
[]
[]
['female singer']
[]
['medieval', 'violin', 'irish', 'fiddle']
['drum', 'drums']
['bongos', 'percussion', 'drums']
['drum', 'drums']
['drum', 'drums', 'tribal']
[]
['man', 'pop']
[]
['pop']
[]
[]
['fast']
['no piano', 'synth', 'weird', 'electro', 'synthesizer', 'techno']
['techno']
['guitar']
['male vocal', 'beats', 'male voice', 'electronic', 'modern', 'male vocals', 'male', 'vocal', 'rock', 'techno', 'not english', 'beat', 'hip hop']
['techno']
['funky', 'electric', 'electronic', 'weird', 'fast', 'electro', 'electronica', 'strange', 'male', 'dance', 'voices', 'techno', 'beat', 'rap', 'hip hop']
['male vocal', 'electric', 'voice', 'male voice', 'electronic', 'disco', 'dance', 'techno', 'beat']
['classical', 'quiet', 'classic']
['woodwind', 'classical', 'violins', 'strings']
['classical', 'strings', 'no vocals', 'slow']
['flute']
['no voice', 'classical', 'quiet', 'no vocal', 'violin', 'flute', 'soft']
['classical', 'quiet', 'violins', 'strings', 'violin', 'flute']
['flute']
['flute', 'soft']
['classical', 'quiet', 'orchestra', 'flute', 'soft']
[]
['harpsichord', 'classical', 'classic']
['harpsichord', 'classical', 'violins', 'classic', 'organ', 'fast', 'baroque']
['orchestra']
['no voice', 'classical', 'violin']
['classical', 'flute']
['harpsichord', 'classical', 'flute']
['classical', 'strings', 'violin']
['classical', 'strings', 'violin', 'orchestra']
['clarinet', 'woodwind', 'classical', 'classic', 'not rock', 'fast', 'oboe', 'orchestra', 'flute']
['guitar', 'strings', 'lute']
['vocals', 'female', 'woman', 'female vocals']
['opera', 'violin', 'vocal', 'woman']
['guitar', 'banjo', 'folk']
[]
[]
['classical', 'guitar', 'quiet', 'strings', 'slow']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'slow', 'baroque']
[]
['harpsichord', 'guitar']
[]
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'no vocals']
['electronic', 'no guitar', 'techno']
['beats', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat', 'upbeat']
['fast', 'techno']
['electronic', 'fast', 'electronica', 'disco', 'dance', 'techno']
[]
['electronic', 'fast', 'electro', 'fast beat', 'pop', 'techno']
['electronic', 'fast', 'fast beat', 'techno', 'beat']
[]
['synth', 'techno']
['electric guitar', 'no vocals', 'rock', 'metal']
['heavy', 'guitar', 'bass', 'hard', 'rock', 'techno', 'metal']
['guitar', 'rock', 'metal']
['guitar', 'loud', 'rock']
['guitar', 'rock']
['hard rock', 'heavy', 'guitar', 'heavy metal', 'rock', 'metal']
['rock']
['guitar']
[]
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'hard', 'rock', 'metal']
['beats', 'chimes', 'classical', 'percussion', 'drum', 'drums', 'weird', 'fast', 'no vocals', 'instrumental', 'bells', 'eastern', 'slow', 'indian', 'beat']
[]
[]
['no vocals']
['drums', 'bells', 'eastern', 'indian']
['no voice', 'sitar', 'middle eastern', 'tribal', 'no vocals', 'eastern', 'indian']
['fast', 'arabic', 'indian', 'oriental']
[]
['drums', 'fast']
['techno', 'beat']
[]
['fast', 'techno', 'beat']
['fast', 'techno']
['female', 'fast', 'woman', 'dance', 'techno', 'beat']
['fast', 'techno']
[]
['violins', 'violin', 'irish']
[]
['spanish']
['funky', 'funk']
['fast', 'piano']
['strings', 'dark', 'bells']
['drums', 'dark', 'no vocals', 'slow', 'rock']
['guitar', 'strings', 'scary', 'cello']
['classical', 'eerie', 'violins', 'strings', 'bells', 'slow', 'cello']
['female', 'pop', 'female vocal']
['vocals', 'female', 'woman', 'singing']
['female', 'voice', 'drums', 'female vocal']
['no piano', 'female', 'female voice', 'strings', 'violin', 'female vocal', 'vocal', 'woman', 'cello', 'female vocals']
['chimes', 'strings', 'dark', 'low', 'bells', 'vocal', 'singing', 'cello']
['solo', 'no vocals', 'piano', 'slow', 'soft']
['piano']
[]
['classical', 'strings', 'violin', 'piano', 'slow']
['piano']
['silence', 'no piano', 'quiet', 'ambient', 'flute']
[]
['no vocals', 'flute']
['no voice', 'ambient', 'no vocals', 'flutes', 'slow', 'flute', 'soft']
['ambient', 'no singing', 'slow', 'flute']
[]
['flute']
['slow', 'flute']
['solo', 'new age', 'flute']
['quiet', 'strings', 'slow', 'flute']
['quiet', 'ambient']
['harpsichord', 'classical', 'spacey', 'ambient']
['weird']
['ambient', 'synth', 'electronic', 'no flute']
['ambient', 'synth']
[]
['ambient', 'synth', 'drone', 'slow']
['no beat', 'ambient', 'electronic', 'instrumental']
[]
['beats']
['no vocal', 'industrial', 'techno']
['drum', 'loud', 'drums', 'industrial', 'rock', 'techno', 'beat']
['heavy', 'drums', 'techno']
['loud', 'pop', 'techno']
['fast', 'trance', 'dance', 'techno', 'beat']
['male vocal', 'dance', 'techno', 'upbeat']
[]
['loud', 'techno']
['weird', 'modern']
['synth', 'electronic']
['electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
[]
['dance', 'techno']
['synth', 'loud', 'electronic', 'fast', 'strange', 'dance', 'techno']
['techno']
['dance', 'techno']
[]
['beats', 'fast', 'dance', 'techno', 'upbeat']
['fast', 'pop', 'dance', 'techno', 'house', 'beat']
['beats', 'synth', 'loud', 'electronic', 'fast', 'trance', 'rock', 'dance', 'techno', 'upbeat']
['loud', 'trance', 'dance', 'techno', 'beat']
['no vocal', 'dance', 'techno']
[]
['bells']
['guitar', 'drum', 'drums', 'bells', 'slow', 'indian']
[]
['eastern']
['bongos', 'beats', 'drum', 'drums', 'tribal', 'beat']
['middle eastern', 'indian']
['indian']
['techno']
['man singing']
['male vocal', 'male']
['sitar']
['classical', 'no drums']
['harpsichord', 'electronic', 'piano']
['beats', 'funky', 'guitar', 'funk', 'drum', 'drums', 'beat']
[]
[]
['synth', 'beat']
['electronic']
['synth', 'drums', 'electronic', 'beat']
['no piano', 'synth', 'drums', 'electronic', 'fast', 'techno', 'beat']
['female', 'opera']
['guitar', 'strings', 'fast', 'indian', 'beat']
['fast', 'indian']
['indian', 'beat']
[]
['no voices', 'quiet', 'ambient', 'slow']
[]
['pop']
['classical', 'quiet', 'singing', 'voices', 'choir']
['classical', 'choral', 'male vocals', 'choir']
['choir']
['chorus', 'choral', 'opera', 'choir']
[]
[]
['chorus', 'vocals', 'classic', 'choral', 'opera', 'choir']
['opera', 'choir']
['choral', 'opera']
['choral', 'choir']
['quiet', 'no vocals']
['classical', 'choral', 'opera', 'vocal', 'choir']
['choir']
['chorus', 'female', 'opera', 'slow', 'vocal', 'singing', 'female vocals', 'choir', 'women']
[]
['male vocal', 'beats', 'funky', 'guitar', 'funk', 'voice', 'drums', 'electronic', 'country', 'electro', 'modern', 'no flute', 'rock', 'beat']
[]
['funky', 'funk', 'beat']
['opera', 'woman']
[]
['vocals', 'heavy', 'female', 'drums', 'indian', 'rock', 'female vocals', 'beat']
['no voice', 'no vocal', 'metal']
[]
['female', 'loud', 'drums', 'no vocal', 'fast', 'female vocal', 'woman', 'rock', 'female vocals']
['guitar', 'solo']
[]
['guitar', 'drum', 'drums', 'lol', 'pop', 'piano', 'sax', 'dance']
['male vocal', 'guitar', 'drums', 'country', 'pop', 'rock']
['male vocal', 'male voice', 'country']
['male vocal', 'vocals', 'guitar', 'loud', 'male vocals', 'male', 'rock']
['folk', 'loud', 'male singer', 'pop']
['male vocal', 'vocals', 'voice', 'loud', 'drums', 'man singing', 'man', 'male vocals', 'sax', 'male', 'vocal', 'rock']
['classical', 'violin']
['opera']
[]
['opera', 'vocal']
['duet', 'female', 'strings', 'classic', 'opera', 'violin', 'male opera', 'man', 'male', 'woman']
['classical', 'strings', 'opera', 'violin', 'male opera', 'male']
['classical', 'quiet', 'violins', 'violin', 'soft']
[]
['synth']
['electronic', 'techno']
['singer', 'vocals', 'female', 'female voice', 'drum', 'drums', 'not rock', 'vocal', 'singing', 'women']
['female', 'voice', 'choral', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'women']
['vocals', 'female', 'celtic', 'slow', 'vocal', 'woman']
['ambient', 'synth', 'slow']
['quiet', 'ambient', 'new age', 'electronic', 'male', 'voices', 'beat']
[]
[]
['synth', 'drums', 'electronic', 'rock']
['talking']
['harp', 'piano']
['classical']
[]
['harpsichord', 'classical', 'harpsicord', 'organ', 'piano', 'no drums']
['harpsichord']
['harpsichord', 'classical']
['horns', 'classical', 'strings', 'drums', 'orchestral', 'orchestra', 'flutes', 'flute', 'baroque']
['classical', 'fast', 'orchestra']
['classical', 'violins', 'strings', 'violin', 'orchestra']
['classical', 'violin']
[]
['classical', 'strings', 'orchestra', 'slow']
['classical', 'classic']
['classical', 'classic', 'instrumental', 'orchestra']
['male vocal', 'vocals', 'female', 'male voice', 'modern', 'man', 'pop', 'male', 'vocal', 'woman', 'singing', 'techno']
['guitar', 'loud', 'fast', 'pop', 'vocal', 'woman', 'rock', 'singing']
['fast', 'pop', 'vocal', 'rock', 'upbeat']
['modern', 'rock']
['classical', 'flute']
['classical']
['no voice', 'classical', 'instrumental', 'orchestra']
['classical']
[]
['horns', 'classical', 'strings', 'classic', 'violin', 'orchestra', 'soft']
['horns', 'classical']
['classical', 'strings', 'fast', 'violin']
[]
['classical', 'strings', 'violin', 'orchestra']
['classical', 'strings', 'classic', 'fast', 'orchestra']
['classical', 'violins', 'strings', 'violin', 'orchestra']
['classical', 'classic']
['classical']
['classical', 'quiet', 'slow', 'flute']
['classical', 'violins', 'strings', 'violin', 'no flute', 'oboe', 'orchestral', 'orchestra', 'slow', 'flute', 'soft']
['classical', 'orchestra']
['classical', 'orchestra']
['classical', 'quiet', 'classic']
['classical', 'strings', 'orchestra']
[]
['vocals', 'classical', 'female', 'female voice', 'opera', 'vocal', 'woman', 'singing']
['female opera', 'vocals', 'classical', 'female', 'quiet', 'voice', 'strings', 'opera', 'violin', 'female vocal', 'female vocals']
['classical', 'strings', 'violin', 'orchestra', 'slow']
['opera', 'vocal']
['choir']
['duet', 'female opera', 'vocals', 'classical', 'female', 'strings', 'opera', 'operatic', 'female vocal', 'vocal', 'woman']
['piano']
['piano']
['classical', 'guitar', 'no vocals', 'piano', 'slow']
['classical', 'guitar', 'strings', 'slow', 'soft']
['no voice', 'guitar', 'no vocal']
['classical', 'guitar', 'harp', 'piano']
['guitar', 'piano', 'slow']
['harpsichord', 'sitar', 'guitar', 'strings', 'no vocal', 'fast', 'harp', 'piano']
['strings', 'no vocal']
['no voice', 'classical', 'guitar', 'strings', 'harp', 'piano', 'slow']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'string', 'fast', 'no vocals', 'harp', 'quick']
['harpsichord', 'guitar', 'strings']
['piano']
['classical', 'strings', 'no vocal', 'harp', 'piano']
['no piano', 'jazz', 'violin', 'sax']
['male', 'jazzy', 'beat']
['man', 'pop']
['jazz', 'man', 'pop', 'male vocals', 'vocal', 'singing']
[]
['jazz', 'piano', 'jazzy']
['jazz', 'guitar', 'jazzy']
['jazz', 'strings', 'piano', 'jazzy']
['jazzy']
['rock']
['drums', 'fast', 'beat']
['drums', 'electronic', 'no guitar', 'rock', 'techno']
['drums', 'fast', 'electro', 'different', 'techno']
['beats', 'ambient', 'drums', 'electronic', 'fast', 'electronica', 'trance', 'techno', 'beat']
['beats', 'drums', 'beat']
['drums', 'no vocals', 'techno']
['repetitive', 'drums', 'electronic', 'weird', 'no vocals', 'techno', 'beat']
['new age', 'drums', 'beat']
['world', 'beats', 'drums', 'fast', 'techno', 'beat']
[]
['no vocals']
['ambient', 'drum', 'fast', 'techno']
[]
['repetitive', 'drums', 'electronic', 'weird', 'fast', 'strange', 'modern', 'indian', 'techno', 'beat']
['drums', 'fast', 'no vocals', 'techno', 'beat']
['ambient', 'repetitive', 'drums', 'fast', 'indian', 'beat', 'upbeat']
['electronic', 'tribal']
['ambient', 'percussion', 'repetitive', 'drums', 'no vocal', 'fast', 'indian', 'beat']
['fast']
['classical', 'guitar', 'strings', 'slow']
['classical']
['guitar', 'harp']
['guitar', 'solo']
['guitar', 'classical guitar']
['classical', 'guitar', 'no vocal']
['guitar', 'quiet', 'strings', 'harp', 'piano', 'slow']
[]
['harpsichord', 'sitar', 'classical', 'guitar', 'strings', 'harpsicord', 'acoustic', 'classic', 'string', 'harp', 'lute', 'piano', 'slow', 'baroque']
['rock']
['rock']
['rock']
['rock']
['no singing', 'fast', 'instrumental', 'rock']
['guitar', 'electric guitar', 'rock']
['guitar', 'loud', 'drums', 'electric guitar', 'no vocals', 'rock']
['guitar', 'loud', 'rock']
['harpsichord', 'classical', 'guitar', 'string', 'harp', 'piano']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'no vocals', 'harp', 'piano', 'baroque']
['harpsichord', 'classical', 'no vocal', 'no vocals']
['harpsichord', 'classical', 'guitar', 'baroque']
['harpsichord', 'classical']
['no vocals']
['guitar', 'rock']
['loud', 'man', 'pop', 'rock']
['loud', 'male vocals', 'male', 'rock']
['male voice', 'loud', 'man', 'male', 'vocal', 'rock']
[]
['beat']
['drums']
['loud', 'drums', 'electronic', 'fast', 'techno', 'beat']
['beats', 'loud', 'electronic', 'electro', 'techno', 'beat']
['no piano', 'spacey', 'ambient', 'synth', 'electronic', 'modern', 'techno']
[]
['male vocal', 'guitar', 'man singing', 'man', 'pop', 'male', 'rock', 'beat']
['vocals', 'male voice', 'man', 'pop', 'male', 'rock', 'singing', 'beat']
['male vocal', 'voice', 'drums', 'male', 'vocal', 'rock']
['male voice', 'rock']
['man singing', 'man', 'pop', 'male']
[]
['guitar', 'drums', 'no vocals', 'slow']
['synth', 'techno']
[]
['ambient', 'new age']
['ambient', 'electronic', 'techno']
['chorus', 'classical', 'choral', 'opera', 'chant', 'male', 'choir']
['singer', 'female', 'woman']
['female', 'guitar', 'vocal', 'rock']
['guitar', 'strings', 'harp', 'slow']
['guitar', 'solo', 'strings', 'classic', 'classical guitar', 'slow']
['bass', 'techno']
['bass', 'fast', 'electro', 'dance', 'techno', 'beat']
['male vocal', 'vocals', 'synth', 'electronic', 'electro', 'dance', 'singing', 'beat', 'english']
['electronic']
['bass']
[]
['rock']
['heavy', 'fast', 'modern', 'man', 'punk', 'male', 'rock']
['bass', 'electronic', 'trance', 'techno']
['male vocal', 'vocals', 'voice', 'male voice', 'electronic', 'talking', 'weird', 'trance', 'male', 'techno']
['electronic', 'techno']
['beats', 'fast', 'dance', 'techno']
['electronic']
['funky', 'synth', 'electronic', 'pop']
['synth', 'drums', 'electronic', 'no vocal', 'no vocals', 'techno', 'beat']
[]
['fast', 'techno', 'beat']
['electronic', 'no vocals', 'modern', 'pop', 'rock', 'different', 'techno', 'beat']
['punk', 'male', 'rock', 'metal']
['hard rock', 'male vocal', 'heavy', 'loud', 'electric guitar', 'male singer', 'heavy metal', 'hard', 'male vocals', 'male', 'rock', 'metal']
['male vocal', 'heavy', 'loud', 'punk', 'rock', 'metal']
['rock']
['hard rock', 'heavy', 'heavy metal', 'hard', 'rock', 'metal']
['harpsichord', 'classical', 'strings', 'harpsicord', 'soft', 'baroque']
['harpsichord', 'classical', 'guitar']
[]
[]
[]
['ambient', 'synth', 'strings', 'no vocals']
['violin']
['strings', 'slow']
['ambient', 'new age']
['quiet', 'violins', 'ambient', 'no vocals']
['no singing', 'electronic', 'no vocals', 'beat']
['no voice', 'electric', 'loud', 'electronic', 'no vocal', 'techno']
['heavy', 'guitar', 'loud', 'drums', 'rock']
['male', 'rock']
['guitar', 'loud', 'rock']
['hard rock', 'guitar', 'loud', 'fast', 'male vocals', 'male', 'vocal', 'rock', 'metal']
['guitar', 'beat']
['male vocal', 'vocals', 'guitar', 'new age', 'male voice', 'loud', 'fast', 'man singing', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'guitars', 'singing']
['loud', 'male']
['guitar']
['guitar', 'cello']
['violin']
['guitar']
['female', 'guitar', 'female voice', 'female vocal', 'woman', 'female vocals', 'female singer']
['guitar', 'drum', 'drums', 'rock']
['rock']
['guitar', 'loud', 'rock', 'metal']
['fast', 'man', 'male vocals', 'male', 'vocal', 'rock', 'english']
['rock']
['hard rock', 'guitar', 'electric guitar', 'male singer', 'rock', 'metal']
[]
['ambient', 'instrumental', 'rock']
['guitar', 'ambient']
['electric', 'synth', 'electronic', 'electro', 'electronica', 'techno']
['synth', 'electronic', 'electro', 'electronica', 'techno']
['new age', 'synth', 'electronic', 'techno']
['ambient', 'electronic', 'fast', 'slow', 'techno', 'beat']
['synth', 'electronic', 'rock', 'techno']
['synth']
[]
['synth', 'electronic', 'weird', 'electronica', 'techno']
[]
[]
['synth']
['ambient', 'synth', 'string', 'weird', 'electro']
['no voice', 'guitar', 'strings', 'slow']
['guitar', 'slow']
[]
['guitar', 'quiet', 'strings', 'slow']
['guitar', 'slow']
['guitar', 'acoustic']
['guitar', 'no vocals']
['techno']
['no voice', 'electronic', 'fast', 'dance', 'techno', 'house', 'beat']
['electronic', 'techno', 'beat']
['no voice', 'beats', 'drums', 'electronic', 'no vocal', 'fast', 'dance', 'techno', 'beat', 'upbeat']
['beats', 'drums', 'electronic', 'fast', 'techno', 'beat']
['synth', 'fast', 'techno', 'beat']
['no voice', 'funky', 'no voices', 'electric', 'synth', 'electronic', 'fast', 'no vocals', 'lol', 'modern', 'dance', 'techno', 'beat']
['no voice', 'quiet', 'ambient', 'no vocals', 'slow']
['world', 'voice', 'strings', 'indian', 'oriental']
['oriental']
['foreign', 'no piano', 'female', 'chant', 'indian', 'woman', 'singing']
[]
['world', 'vocals', 'female voice', 'drums', 'eastern', 'indian', 'not english', 'oriental']
['foreign', 'guitar', 'indian']
['sitar', 'guitar', 'no vocal']
['guitar']
['sitar', 'guitar', 'strings', 'slow', 'indian']
['sitar', 'no piano', 'guitar', 'string', 'eastern', 'slow', 'indian', 'guitars']
['world', 'sitar', 'indian', 'not opera']
[]
['sitar', 'slow', 'indian']
['sitar', 'guitar', 'ambient', 'drum', 'drums', 'slow', 'beat']
[]
['guitar', 'drum', 'drums', 'slow']
['sitar']
['synth', 'male voice', 'male singer', 'man', 'pop', 'male', 'vocal']
['guitar', 'weird', 'country', 'slow', 'calm']
['classical', 'quiet', 'voice', 'strings', 'electronic', 'no vocals', 'techno', 'soft']
[]
['electronic', 'no vocal']
['synth']
[]
['funky', 'guitar', 'male singer', 'country', 'man', 'rock', 'jazzy', 'singing']
['funky', 'jazz', 'guitar', 'drums', 'modern', 'disco', 'rock', 'jazzy']
[]
['strings']
['violins', 'no singing', 'strings', 'violin', 'deep', 'slow', 'cello']
['classical', 'violins', 'strings', 'violin', 'no vocals', 'slow', 'cello']
[]
['ambient', 'new age', 'synth']
[]
['ambient']
['ambient', 'weird', 'water']
['ambient', 'new age', 'electronic', 'weird', 'soft', 'water']
['synth', 'no singing', 'electronic', 'techno']
['slow', 'jazzy']
[]
['electronic', 'jazzy', 'techno', 'beat']
['synth', 'bass', 'keyboard', 'electronic', 'weird', 'electro']
['electronic', 'fast', 'synthesizer', 'no singer', 'rock', 'techno', 'upbeat']
['electronic', 'no vocal']
['no voice', 'no vocal', 'fast', 'pop', 'techno']
[]
['electric']
[]
['electronic', 'jazzy']
['piano']
['chimes', 'ambient', 'new age', 'synth', 'bass', 'electronic', 'electronica', 'synthesizer', 'slow', 'no drums', 'techno', 'soft']
['voice', 'talking', 'man', 'male vocals', 'male', 'voices', 'english']
['voice']
[]
['female', 'female vocal', 'indian', 'woman', 'techno', 'not english']
[]
['beats', 'foreign', 'female', 'female voice', 'drum', 'pop', 'indian', 'woman', 'techno', 'upbeat', 'female singer']
['sitar', 'guitar', 'strings']
['world', 'middle eastern', 'drums', 'eastern', 'indian']
['drums', 'indian']
['foreign', 'middle eastern', 'arabic', 'indian']
[]
['strings', 'violin']
['sitar', 'middle eastern', 'drum', 'drums', 'no vocals', 'arabic', 'eastern', 'indian', 'oriental']
[]
['female', 'female voice', 'ambient', 'airy', 'woman']
['techno', 'beat']
['female', 'synth', 'drum', 'voice', 'drums', 'electronic', 'techno', 'beat']
[]
['vocals', 'female', 'female voice', 'girl', 'drums', 'electronic', 'vocal', 'techno', 'noise']
['male vocal', 'guitar', 'male voice', 'punk', 'vocal', 'rock', 'metal']
['rock', 'metal']
['vocals', 'guitar', 'drum', 'drums', 'singing']
['pop']
[]
['vocals', 'no flute', 'beat']
['guitar', 'drums', 'pop', 'vocal', 'rock', 'singing']
['vocals', 'guitar', 'drums', 'not classical', 'fast', 'modern', 'pop', 'rock', 'dance', 'singing', 'beat', 'upbeat']
['guitar']
['male vocal', 'guitar', 'man', 'pop', 'male vocals', 'vocal', 'singing']
['singer', 'male voice', 'country', 'man', 'pop']
['male vocal', 'guitar', 'mellow']
['medieval', 'flutes', 'flute']
['flutes', 'flute']
['flute']
['guitar', 'slow']
[]
['harp']
['classical', 'guitar', 'quiet', 'no vocal', 'fast', 'acoustic guitar', 'electric guitar', 'instrumental', 'spanish', 'soft']
['beats', 'guitar', 'techno']
['electric', 'synth', 'electronic', 'fast', 'no vocals', 'techno']
['no voice', 'beats', 'synth', 'percussion', 'drums', 'electronic', 'electro', 'trance', 'dance', 'techno', 'beat']
['synth', 'techno', 'beat']
['synth']
['no voice', 'electronic', 'no vocal', 'pop', 'techno', 'upbeat']
['beats', 'female', 'female voice', 'electronic', 'vocal', 'indian', 'techno', 'beat']
[]
['fast', 'disco', 'techno']
['techno']
['electronic', 'electro', 'trance', 'female vocal', 'vocal', 'dance', 'techno', 'upbeat']
['drums', 'electronic', 'no vocals', 'techno', 'beat']
['drums', 'techno']
['techno', 'beat']
['electronic', 'techno']
['funky', 'electric', 'electronic', 'fast', 'electro', 'pop', 'dance', 'techno', 'house', 'beat', 'upbeat']
['beats', 'electric', 'synth', 'repetitive', 'drums', 'electronic', 'fast', 'electro', 'dance', 'techno', 'beat', 'upbeat']
['techno']
['beats', 'synth', 'electronic', 'fast', 'trance', 'vocal', 'dance', 'female vocals', 'techno', 'house', 'beat']
['beats', 'electronic', 'fast', 'female vocal', 'techno']
['electronic', 'techno', 'beat']
['male vocal', 'vocals', 'man singing', 'pop', 'male vocals', 'vocal']
[]
['pop']
[]
['guitar']
['male vocal', 'no piano', 'guitar', 'male voice', 'chanting', 'chant', 'man', 'slow', 'male', 'vocal']
['foreign', 'guitar', 'strings', 'man', 'male']
['male vocal', 'foreign', 'classical', 'guitar', 'male vocals', 'slow', 'male', 'singing']
['male vocal', 'classical', 'guitar', 'opera', 'man singing', 'classical guitar', 'chant', 'harp', 'male vocals', 'slow', 'male', 'singing']
['guitar', 'solo', 'man', 'singing']
['guitar', 'drum', 'drums', 'rock', 'singing']
['guitar', 'pop', 'male vocals']
['male vocal', 'vocals', 'voice', 'pop', 'dance']
['male', 'rock']
['guitar', 'no vocal', 'piano', 'rock']
['guitar', 'male', 'rock']
['vocals', 'piano']
['guitar', 'quiet', 'drums', 'slow']
['beats', 'percussion', 'drum', 'drums', 'beat']
['drum', 'drums', 'indian']
['bongos', 'new age', 'middle eastern', 'drums', 'violin', 'arabic', 'indian', 'dance', 'beat']
[]
['drums', 'no flute', 'eastern']
[]
['guitar', 'percussion', 'drum', 'drums', 'no guitar']
[]
['female', 'girl', 'pop', 'woman', 'rock', 'beat', 'rap', 'hip hop']
[]
[]
['quiet', 'strings', 'orchestra', 'slow']
['ambient', 'synth']
['bongos', 'synth', 'electronic', 'weird', 'no vocals', 'techno']
['synth']
['synth', 'drums', 'techno']
['fast']
['horns', 'electronic']
['synth', 'electronic', 'organ', 'electro', 'strange', 'synthesizer', 'techno']
[]
['organ']
[]
[]
['world', 'foreign', 'female', 'female vocals', 'choir', 'women']
['female vocal']
['vocals', 'female', 'indian']
[]
['chorus', 'vocals', 'female', 'female voice', 'drum', 'medieval', 'drums', 'chanting', 'choral', 'tribal', 'chant', 'jungle', 'vocal', 'indian', 'woman singing', 'singing']
['vocals', 'foreign', 'female', 'drum', 'drums', 'chanting', 'tribal', 'arabic', 'indian', 'india', 'women']
['foreign', 'drums']
[]
['sitar', 'indian']
['world', 'sitar', 'strings', 'loud', 'indian']
['sitar', 'middle eastern', 'loud', 'fast', 'eastern', 'indian', 'india', 'oriental']
['chorus', 'female vocals']
['guitar', 'percussion', 'drum', 'drums', 'beat']
['classical', 'classical guitar']
['voice', 'rock']
['vocal']
['male voice', 'loud', 'vocal', 'rock', 'metal']
['male vocal', 'vocals', 'beats', 'guitar', 'drum', 'loud', 'drums', 'fast', 'man', 'male vocals', 'punk', 'rock', 'beat', 'metal']
['rock', 'metal']
['guitar', 'solo', 'loud', 'drums', 'fast', 'rock']
['male vocal', 'guitar', 'voice', 'man', 'pop', 'male vocals', 'male', 'vocal', 'singing']
[]
['male vocals', 'vocal', 'singing']
['male vocal', 'male voice', 'drums', 'male vocals', 'rock', 'singing']
[]
['guitar', 'drum', 'drums']
[]
['funky', 'drum', 'bass', 'drums', 'reggae']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'hard', 'rock', 'metal']
['rock']
['rock']
['guitar', 'loud', 'fast', 'rock', 'metal']
[]
['quiet', 'ambient']
[]
['classical', 'guitar', 'quiet', 'strings', 'acoustic', 'slow']
['guitar', 'soft']
['guitar', 'slow']
['guitar', 'classical guitar', 'lol', 'sad', 'slow']
['classical', 'violins']
['harpsichord', 'guitar', 'slow', 'no drums']
['harpsichord', 'classical', 'guitar', 'solo', 'harpsicord', 'medieval', 'piano', 'slow', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'harp']
['harpsichord']
['harpsichord', 'no piano', 'classical', 'harpsicord', 'piano', 'slow', 'calm']
[]
['no voice', 'harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'classic', 'slow', 'guitars', 'baroque']
['guitar', 'male voice', 'loud', 'male singer', 'country', 'man', 'male', 'blues', 'vocal', 'rock', 'singing', 'upbeat']
['pop']
['jazz']
['male vocal', 'country', 'blues', 'rock']
['jazz']
['guitar', 'drums', 'no vocal', 'rock']
['rock']
[]
['hard rock', 'guitar', 'drums', 'rock', 'beat', 'metal']
['violin']
['female', 'female voice', 'voice', 'modern', 'pop', 'female vocal', 'slow', 'woman', 'singing', 'female vocals']
['classical']
['vocals', 'man', 'slow']
['soft']
['vocals', 'female', 'ambient', 'female vocal', 'woman', 'not opera']
['female', 'vocal', 'singing', 'voices', 'women']
['drum', 'keyboard', 'electronic', 'organ', 'no vocals', 'techno']
['beats', 'synth', 'drum', 'electronic', 'dance', 'techno', 'beat']
[]
['electronic', 'techno']
['voice', 'drums', 'electronic', 'talking', 'electro', 'techno']
['electronic']
[]
['electric', 'fast', 'techno']
['synth', 'techno']
['guitar']
['guitar', 'slow']
['classical', 'guitar', 'new age', 'no vocal', 'soft']
['guitar']
['guitar', 'strings']
['new age', 'synth', 'electronic', 'techno', 'beat']
['female', 'ambient', 'new age', 'girl', 'electronic', 'vocal', 'singing']
['woman']
[]
['vocals', 'female voice', 'loud', 'pop', 'female vocal', 'woman', 'singing', 'female vocals']
[]
['female', 'female voice', 'loud', 'electronic', 'fast', 'pop', 'rock']
['female', 'female vocal', 'rock']
['guitar', 'drums', 'electronic', 'rock', 'beat']
[]
[]
[]
[]
[]
['rock']
['guitar', 'rock']
['guitar', 'rock']
['guitar', 'loud', 'rock']
['guitar', 'electric', 'fast', 'electric guitar', 'rock']
['guitar', 'rock', 'metal']
['guitar', 'trumpet', 'fast', 'country', 'horn', 'rock']
['beats', 'bass', 'drums', 'slow', 'beat']
['ambient', 'percussion', 'voice', 'male voice', 'electronic', 'male vocals', 'slow', 'techno', 'beat']
['electronic']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'acoustic', 'string', 'acoustic guitar', 'classical guitar', 'no vocals', 'mellow', 'slow', 'calm', 'soft']
['guitar', 'strings', 'no vocals', 'piano']
['guitar', 'classical guitar', 'soft']
['piano']
['piano']
['quiet', 'piano', 'slow']
['no violin', 'piano', 'sad', 'slow']
['classical', 'solo', 'piano']
['electronic', 'no vocals', 'techno', 'upbeat']
[]
['synth', 'bass', 'loud', 'electronic', 'fast', 'electro', 'pop', 'techno', 'beat']
['female', 'female voice', 'vocal', 'woman', 'singing', 'female vocals']
['female', 'female voice', 'loud', 'electronic', 'no violin', 'pop', 'female vocal', 'woman', 'woman singing', 'singing', 'techno', 'female singer']
['female', 'female voice', 'voice', 'fast', 'pop', 'singing', 'techno']
['funky', 'no piano', 'jazz', 'electronic', 'techno']
['funky', 'ambient', 'synth', 'bass', 'drums', 'electronic', 'fast', 'electro', 'instrumental', 'dance', 'jazzy', 'techno', 'beat']
['classical', 'ambient', 'new age', 'instrumental', 'slow', 'soft']
['ambient', 'strings', 'violin', 'deep']
[]
[]
['no singing', 'dance', 'techno']
['electric', 'synth', 'electronic', 'electro', 'electronica', 'techno']
['dance']
['synth', 'trance', 'dance', 'techno']
[]
['guitar', 'new age', 'strings', 'fast', 'pop', 'mellow', 'spanish', 'slow']
['jazz', 'guitar', 'string', 'classical guitar', 'pop', 'spanish', 'slow', 'rock']
['guitar', 'loud', 'fast', 'acoustic guitar', 'modern', 'spanish', 'rock']
['jazz', 'guitar', 'drums', 'fast', 'jazzy', 'techno']
[]
['silence', 'quiet']
[]
['vocals', 'ambient', 'slow']
['vocals', 'female', 'female voice', 'ambient', 'voice', 'piano', 'slow', 'vocal', 'no drums', 'singing']
['ambient', 'piano', 'slow', 'vocal', 'woman']
['ambient', 'pop', 'slow', 'singing', 'female vocals']
['female', 'woman singing', 'female vocals']
[]
['female', 'ambient', 'new age', 'female vocal', 'mellow', 'vocal', 'woman', 'soft']
['guitar']
['classical', 'guitar', 'strings', 'classical guitar', 'slow']
['classical', 'guitar', 'solo', 'strings']
['classical', 'guitar']
['bass', 'fast', 'techno', 'beat']
['beats', 'synth', 'fast', 'electro', 'techno', 'beat']
['electronic', 'techno']
['electronic', 'electro', 'techno']
['electronic', 'fast', 'techno', 'beat', 'upbeat']
['electronic', 'techno']
['fast', 'no singer', 'techno', 'beat']
[]
['no guitar', 'organ', 'weird']
['organ']
['horns', 'synth', 'electronic']
['no voice', 'organ', 'weird', 'slow']
[]
['quiet', 'ambient', 'new age', 'drone', 'slow']
['ambient', 'new age', 'electronic', 'no vocals', 'instrumental']
['ambient', 'trance', 'slow', 'calm', 'soft']
['ambient', 'synth', 'slow']
[]
['ambient', 'synth', 'water']
['ambient', 'electronic', 'noise', 'water']
['ambient', 'new age', 'synth', 'water']
['ambient', 'new age', 'water']
['quiet', 'ambient', 'new age', 'slow', 'calm', 'soft', 'water']
['ambient', 'water']
['jazz', 'guitar', 'bass', 'slow']
['funky', 'jazz', 'funk', 'keyboard', 'drums', 'organ', 'no vocal', 'piano', 'jazzy']
['jazz', 'synth', 'keyboard', 'drums', 'electronic', 'organ', 'piano', 'jazzy']
['drums', 'organ', 'jazzy']
[]
['drums', 'organ']
['quiet', 'soft']
['quiet']
['no piano', 'quiet', 'ambient']
[]
['quiet']
['quiet', 'ambient', 'organ', 'slow', 'soft']
['quiet', 'no beat', 'ambient', 'soft']
['classical', 'quiet', 'ambient', 'no guitar', 'slow', 'soft']
['ambient', 'slow']
['classical', 'slow']
['airy', 'space']
['ambient', 'new age', 'no vocals', 'slow']
['no guitar']
['electronic']
[]
['eerie', 'ambient', 'new age', 'synth']
['synth']
['classical', 'ambient', 'new age', 'airy', 'loud']
['synth', 'techno']
[]
[]
[]
[]
['synth']
['synth', 'electronic', 'no drums', 'flute']
[]
['keyboard', 'modern', 'piano']
[]
['ambient', 'new age', 'strings', 'weird', 'no vocals', 'trance']
['quiet', 'no beat', 'ambient', 'synth', 'space', 'electronic', 'violin', 'no flute']
[]
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'heavy metal', 'rock', 'metal']
['guitar', 'drums', 'rock']
['hard rock', 'rock', 'metal']
['rock']
['rock', 'metal']
['guitar', 'electric guitar', 'rock']
['hard rock', 'heavy', 'guitar', 'electric', 'loud', 'drums', 'heavy metal', 'hard', 'rock', 'metal']
['hard rock', 'loud', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'rock', 'metal']
['drums', 'beat']
[]
['strings', 'weird', 'indian']
['female', 'voice', 'vocal', 'singing', 'not english']
['male vocal', 'female', 'folk', 'strings', 'medieval', 'violin', 'irish', 'male', 'vocal', 'indian']
['guitar', 'strings', 'medieval', 'violin', 'irish', 'male']
['sitar', 'classical', 'guitar', 'strings', 'medieval', 'violin']
['guitar', 'solo']
['male vocal', 'guitar', 'pop', 'male', 'vocal', 'singing']
['man singing', 'man', 'pop']
['male vocal', 'male voice', 'male singer', 'man', 'pop', 'mellow', 'male vocals', 'male', 'vocal']
['male vocal', 'pop', 'rock']
['electronic']
['guitar', 'bass', 'drums', 'fast', 'slow', 'rock', 'upbeat']
['rock']
['male', 'rock']
['guitar', 'rock']
['hard rock', 'loud', 'rock']
['hard rock', 'rock']
['sitar', 'no piano', 'electronic']
[]
['sitar', 'strings', 'violin', 'eastern', 'indian']
['harp', 'oriental']
['guitar', 'ambient', 'strings', 'electronic', 'harp']
['strings']
['strings']
[]
['guitar', 'indian']
['weird']
[]
['strings', 'no vocals']
['guitar', 'strings', 'harp']
['female', 'guitar', 'vocal', 'woman']
['female singing', 'vocal', 'woman', 'female singer']
['sitar', 'guitar', 'string', 'fast', 'slow']
[]
['indian', 'woman', 'woman singing', 'female vocals', 'not english']
['women']
['vocals', 'vocal']
['percussion', 'bass', 'drums', 'fast', 'tribal']
[]
['sax', 'jazzy']
[]
[]
['ambient', 'no vocal', 'no vocals']
['no voice', 'organ', 'no vocals']
['no voice', 'quiet', 'no beat', 'ambient', 'new age', 'synth', 'airy', 'no vocal', 'no vocals', 'instrumental', 'slow']
['ambient', 'new age', 'synth', 'electronic', 'slow', 'soft']
['ambient', 'synth']
[]
['ambient', 'synth', 'electronic', 'no vocals', 'slow', 'techno']
['ambient']
['ambient', 'synth', 'electronic']
[]
['guitar', 'country', 'blues']
['guitar', 'folk', 'no vocal', 'country', 'no vocals', 'slow', 'blues']
[]
['guitar', 'drum', 'drums', 'slow', 'beat', 'soft']
['male vocal', 'guitar', 'male voice', 'man']
['guitar', 'strings', 'male voice', 'string', 'slow', 'male']
['guitar', 'male', 'vocal']
['male vocal', 'folk', 'male singer', 'country', 'man', 'pop']
['soft rock', 'guitar', 'voice', 'male voice', 'slow', 'male', 'vocal', 'singing']
[]
['synth']
['new age', 'drums', 'electronic', 'no vocals']
['beats', 'synth', 'drum', 'drums', 'electronic', 'modern', 'indian', 'techno']
[]
['beats', 'drum', 'drums', 'electronic', 'no vocal', 'fast', 'instrumental', 'techno']
['ambient', 'electronic', 'slow', 'soft']
['electronic', 'no vocals', 'electronica', 'piano', 'beat']
['synth', 'drums', 'electronic', 'no vocal', 'pop', 'different']
['sitar', 'ambient', 'new age', 'drums', 'weird', 'no vocals', 'indian', 'beat']
[]
[]
['beats', 'funky', 'drums', 'fast', 'beat']
['no voice', 'drums', 'weird']
[]
[]
[]
['synth']
['no vocal', 'piano']
['ambient', 'electronic', 'no vocals', 'piano']
['quiet', 'ambient', 'new age', 'synth', 'instrumental', 'mellow', 'flutes', 'slow', 'different', 'soft']
[]
['ambient', 'no vocal', 'trance', 'synthesizer', 'slow']
[]
['sitar', 'beats', 'new age', 'drums', 'electronic', 'no vocals', 'lol', 'eastern', 'indian']
['guitar', 'guitars']
['no voice']
['electronic', 'electro', 'beat']
['electronic']
[]
['modern', 'slow', 'beat']
['drums', 'electronic', 'techno', 'beat']
[]
['rock']
['male vocal', 'vocals', 'guitar', 'solo', 'electric guitar', 'man', 'rock']
['rock']
['classical', 'solo', 'no violin', 'fast', 'piano']
['classical', 'no beat', 'piano']
['classical', 'piano']
['no voice', 'classical', 'solo', 'piano']
['classical', 'piano']
['classical', 'quiet', 'solo', 'classic', 'piano', 'slow', 'piano solo', 'soft']
['classical', 'quiet', 'solo', 'piano', 'soft']
['piano']
['guitar', 'drums']
['singer', 'vocals', 'female', 'guitar', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'upbeat', 'female singer']
['female', 'vocal']
['female singing', 'guitar', 'woman']
['female', 'guitar', 'drums', 'tribal', 'vocal', 'woman']
['guitar', 'drums', 'fast']
['guitar', 'ambient', 'synth', 'repetitive', 'electronic', 'electric guitar', 'dark', 'no vocals', 'electronica', 'slow', 'different']
['male voice', 'man', 'slow']
['male vocal', 'ambient', 'synth', 'electronic', 'man', 'male', 'vocal']
['male vocal', 'guitar', 'loud', 'man', 'slow', 'male', 'vocal']
['classical', 'guitar', 'strings', 'electro', 'strange']
['male vocal', 'guitar', 'male voice', 'man', 'male', 'vocal', 'rock', 'singing']
['synth', 'drums', 'flute']
['drums', 'electronic', 'organ', 'trance', 'slow']
['ambient', 'new age', 'synth', 'beat']
['rock']
['hard rock', 'rock']
['choral', 'no drums', 'choir']
['choral', 'choir']
['chorus', 'choral', 'slow', 'vocal', 'voices', 'choir']
['vocals', 'classical', 'choral', 'singing', 'choir']
[]
['female', 'choral']
['opera', 'choir']
['female', 'opera', 'choir']
['sitar', 'strings', 'harp', 'piano', 'slow']
['guitar', 'harp', 'piano', 'slow', 'oriental', 'soft']
['plucking', 'harpsichord', 'sitar', 'classical', 'guitar', 'new age', 'strings', 'string', 'no vocals', 'harp', 'eastern', 'slow', 'indian', 'oriental']
['harpsicord', 'harp']
[]
[]
[]
['no voices', 'solo', 'strings', 'harp', 'not opera']
['guitar', 'quiet', 'harp', 'no drums', 'soft']
[]
['classical', 'strings', 'harp']
['guitar', 'strings', 'harp']
['harp']
[]
['sitar', 'guitar', 'quiet', 'strings', 'harp', 'piano', 'slow']
[]
[]
['choir']
['choir']
['chanting', 'choral', 'chant', 'male', 'voices', 'choir']
['classical', 'strings', 'oboe', 'light', 'flute', 'baroque']
['classical', 'flute']
[]
['classical']
['classical', 'strings', 'classic', 'no vocal', 'no vocals', 'flute']
['classical', 'violins', 'strings', 'opera', 'orchestra', 'flute']
['no voice', 'clarinet', 'classical', 'no vocal', 'fast', 'no vocals', 'flute']
['guitar', 'slow']
['guitar']
['guitar', 'acoustic guitar', 'slow', 'soft']
['guitar', 'guitars']
['sitar', 'female', 'voice', 'indian']
['eastern', 'indian']
['drums', 'indian']
['woman', 'woman singing']
[]
[]
[]
['plucking', 'wind', 'slow', 'flute']
[]
['birds']
['guitar']
['sitar', 'guitar', 'strings', 'indian']
[]
['birds', 'flute']
['birds']
['techno']
['beats', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['synth', 'electronic', 'beat']
['dance', 'techno']
['synth', 'electronic']
['drums', 'no vocal', 'fast', 'techno', 'beat']
['drums', 'fast', 'beat']
['synth', 'electronic', 'slow']
['ambient', 'synth', 'slow']
['ambient', 'synth', 'loud', 'electronic', 'no vocal', 'no vocals', 'techno']
[]
['ambient', 'new age']
[]
['synth', 'electronic']
['ambient', 'synth', 'electronic', 'electro', 'techno']
[]
['soft']
['indian']
['beats', 'drums', 'electronic', 'tribal', 'eastern', 'indian', 'techno', 'beat']
['sitar', 'synth', 'electronic', 'fast', 'techno']
[]
['guitar', 'acoustic', 'no vocals', 'instrumental']
['guitar']
['electronic', 'no vocals']
['synth', 'electronic', 'no vocal', 'electro', 'no vocals', 'techno']
['synth', 'electronic', 'weird', 'strange', 'techno']
[]
['vocals', 'indian']
['foreign', 'female', 'slow', 'indian', 'singing']
['ambient', 'new age', 'vocal']
[]
['no voice', 'quiet']
[]
['classical', 'spacey', 'quiet', 'ambient', 'new age', 'synth', 'slow', 'calm', 'soft']
['ambient', 'new age', 'slow']
['ambient', 'no vocals', 'slow']
['quiet', 'ambient', 'new age', 'mellow', 'slow', 'soft']
['male vocal', 'vocals', 'classical', 'voice', 'strings', 'weird', 'violin', 'low', 'man', 'woman', 'voices']
['classical', 'strings', 'violin']
['harpsichord', 'classical', 'classic']
['classical', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'string', 'violin', 'cello']
['guitar']
['guitar']
['classical', 'strings', 'violin', 'slow', 'cello']
[]
['strings', 'violin']
['classical', 'strings', 'organ', 'violin']
['classical', 'violins', 'slow']
['strings', 'classic', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestra', 'cello', 'baroque']
['vocals', 'men', 'guitar', 'pop', 'male', 'vocal', 'rock']
['male vocal']
[]
['loud', 'man', 'pop', 'male', 'rock']
['male vocal', 'loud', 'fast', 'male', 'rock', 'metal']
['classical']
['classical', 'classic', 'orchestra', 'flute']
[]
['oboe']
[]
['classical', 'no vocal']
['guitar', 'slow']
['guitar', 'man', 'vocal', 'soft']
['guitar', 'country', 'pop']
['guitar', 'country', 'male']
['guitar', 'country']
['synth', 'electronic', 'electro', 'techno']
['techno']
['beats', 'synth', 'voice', 'drums', 'electronic', 'woman', 'dance', 'female vocals', 'techno', 'beat']
['synth', 'techno', 'beat']
[]
['world', 'vocals', 'beats', 'female', 'synth', 'girl', 'electronic', 'fast', 'pop', 'female vocal', 'vocal', 'indian', 'woman', 'dance', 'techno']
['funky', 'spacey', 'synth', 'drums', 'electronic', 'no vocal', 'fast', 'electronica', 'techno', 'upbeat']
['quiet', 'electronic', 'soft']
['chimes', 'quiet', 'electronic', 'weird', 'lol', 'instrumental', 'bells', 'slow']
['synth', 'electronic', 'different']
['synth']
['synth', 'electronic']
['ambient', 'synth']
[]
['electronic', 'no vocal', 'no vocals', 'slow', 'different']
['electronic', 'weird', 'soft']
[]
['beats', 'bass', 'no flute', 'piano', 'techno', 'beat']
['techno']
['synth', 'electronic', 'techno']
[]
['electronic', 'fast', 'beat']
['beats', 'funky', 'drums', 'techno', 'beat']
['solo', 'piano', 'slow']
['clasical', 'classical', 'piano']
['classical', 'solo', 'piano']
[]
['classic']
['piano']
['classical', 'solo', 'fast', 'piano', 'piano solo']
['solo', 'no vocals', 'piano', 'slow']
['violin', 'slow', 'cello']
['classical', 'strings']
[]
['classical', 'strings', 'violin', 'viola', 'cello']
[]
['harpsichord']
['harpsichord', 'harpsicord']
['harpsichord', 'classical', 'guitar']
['heavy', 'guitar', 'drums', 'hard', 'rock', 'metal']
['heavy', 'guitar', 'loud', 'fast', 'hard', 'rock', 'metal']
['hard rock', 'loud', 'heavy metal', 'rock', 'metal']
[]
['spacey', 'synth', 'electronic', 'electronica', 'techno']
['electronic', 'techno']
[]
['loud', 'rock', 'metal']
['wind', 'indian', 'flute']
['horn', 'flute']
['flute']
[]
[]
['classical', 'strings', 'opera', 'male opera', 'no vocals', 'male']
['male vocal', 'opera', 'man']
['male vocal', 'opera', 'male opera', 'male']
['vocals', 'opera', 'male opera', 'man', 'male']
['classical', 'quiet', 'strings', 'classic', 'violin', 'orchestra']
['opera', 'male opera', 'male']
['choir']
['quiet', 'choral', 'soft', 'choir']
[]
['chorus', 'choral', 'chant', 'choir']
['choral']
['sitar', 'india']
['sitar', 'indian']
['bongos', 'sitar', 'eastern', 'indian']
['sitar', 'indian', 'india']
['sitar', 'slow', 'indian']
[]
['sitar', 'middle eastern', 'strings', 'string', 'drums', 'eastern', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'guitar', 'indian']
['sitar', 'indian']
['sitar']
['sitar', 'arabic', 'eastern', 'indian', 'india']
[]
[]
['sitar', 'indian']
['sitar', 'no vocal', 'indian']
['sitar']
['sitar', 'middle eastern', 'indian']
['beats', 'drums', 'indian']
['modern']
['ambient', 'calm', 'techno']
['guitar', 'ambient', 'synth', 'drums', 'electronic', 'instrumental', 'trance', 'modern', 'slow', 'techno', 'beat']
['no piano', 'guitar', 'drums', 'slow', 'techno']
[]
['ambient', 'synth', 'keyboard', 'techno']
['electro', 'techno']
['harpsichord', 'classical', 'guitar', 'harp', 'slow']
['guitar']
['classical', 'guitar', 'slow', 'calm', 'soft']
['silence', 'quiet']
['ambient']
['ambient', 'violin', 'slow']
['ambient', 'slow']
['violin', 'slow']
['ambient', 'strings']
['ambient', 'sad', 'slow']
['low']
[]
['ambient']
['eerie', 'ambient', 'bass', 'drone', 'deep', 'slow', 'scary', 'soft']
[]
[]
['quiet', 'slow']
['rock']
['drums', 'rock']
[]
['guitar', 'pop', 'rock']
['vocals', 'rock', 'metal']
['ambient', 'dark', 'low', 'drone', 'deep']
['ambient', 'synth', 'weird', 'dark', 'low', 'strange']
['dark']
['dark']
[]
['ambient', 'techno', 'noise']
['ambient', 'space']
['ambient']
[]
[]
['hard rock', 'guitar', 'rock', 'metal']
['hard rock', 'male vocal', 'heavy', 'rock', 'metal']
['hard rock', 'loud', 'male singer', 'heavy metal', 'punk', 'male', 'rock', 'metal']
[]
['heavy', 'drums', 'heavy metal', 'rock', 'techno', 'metal']
['rock']
['male vocal', 'guitar', 'rock', 'singing']
[]
[]
['classical', 'female', 'guitar', 'quiet', 'opera', 'classical guitar', 'harp', 'piano', 'singing']
[]
['classical', 'male', 'soft']
['harpsichord', 'classical', 'flute']
[]
['sitar', 'guitar', 'no vocals', 'flute']
['guitar', 'strings', 'slow', 'flute']
['flute']
['guitar', 'flute']
['guitar', 'flute']
['guitar', 'flute']
['guitar', 'modern']
[]
['flute']
[]
['harpsichord', 'classical', 'strings', 'violin']
['classical', 'strings', 'violin', 'no drums']
['classic']
['harpsichord', 'classical', 'violin', 'slow']
['harpsichord', 'classical', 'solo', 'strings', 'classic', 'string', 'violin']
['harpsichord', 'classical', 'violin', 'cello']
['electronic', 'vocal', 'techno', 'beat']
[]
['jazz', 'synth', 'drums']
[]
[]
[]
['wind']
['quiet', 'ambient']
['ambient']
[]
[]
['ambient', 'birds', 'slow']
['ambient']
[]
[]
['no voice', 'ambient', 'synth', 'no vocals', 'no singer']
[]
['birds']
['birds']
['birds']
['wind', 'ambient', 'airy', 'birds', 'flute']
[]
['synth', 'water']
['wind', 'ambient', 'birds', 'no vocals']
[]
['ambient']
['ambient', 'birds', 'loud', 'noise', 'water']
['ambient', 'birds', 'water']
['spacey', 'ambient', 'new age', 'synth', 'birds', 'electronic', 'weird', 'harp', 'water']
['wind', 'ambient', 'new age', 'birds', 'no vocal', 'weird', 'dark', 'strange', 'voices', 'soft', 'noise', 'water']
['noise']
['electric', 'ambient', 'new age', 'birds', 'electronic', 'no vocal', 'weird', 'techno', 'noise']
['not classical', 'noise', 'water']
['ambient', 'birds']
[]
['classical', 'no vocals', 'irish']
['sitar', 'middle eastern', 'loud', 'arabic', 'indian']
['irish']
['beat']
['guitar']
[]
['guitar', 'spanish']
['guitar', 'fast', 'spanish']
['fast']
['piano']
['piano']
[]
['classical', 'solo', 'new age', 'modern', 'piano', 'slow', 'soft']
['solo', 'new age', 'piano']
['piano']
['no strings', 'quiet', 'piano', 'slow']
['classical', 'strings', 'string', 'violin']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
[]
['classical', 'quiet', 'violins', 'strings', 'violin', 'orchestra', 'slow', 'soft']
['classical', 'violin', 'soft']
['no piano', 'classical', 'strings', 'violin', 'orchestra']
['no piano', 'classical', 'strings', 'classic', 'violin']
['classical', 'strings', 'orchestra', 'soft']
['rock']
['male vocal', 'country', 'pop', 'rock']
['guitar', 'loud', 'electric guitar', 'male vocals', 'blues', 'rock', 'singing']
['vocals', 'rock', 'singing']
['no voice', 'sitar', 'quiet', 'no vocal', 'indian']
['sitar', 'classical', 'quiet', 'strings', 'violin', 'slow', 'indian', 'cello']
['strings', 'violin', 'indian', 'cello']
['violin', 'slow']
['strings', 'slow', 'cello']
['sitar', 'indian']
['guitar', 'slow']
['guitar']
[]
[]
['guitar']
[]
[]
['new age', 'drum', 'electronic']
['female voice', 'female vocal']
[]
['electric', 'ambient', 'synth', 'weird', 'dark', 'low', 'drone']
['male vocal', 'male voice', 'male']
['drums', 'pop', 'vocal']
['voice', 'drums', 'vocal', 'techno']
[]
[]
['guitar', 'male voice', 'drums', 'male vocals', 'rock']
['loud', 'male vocals', 'rock']
['rock']
[]
['drums', 'piano']
['sitar']
['indian']
['sitar', 'slow', 'indian']
['sitar', 'guitar', 'indian']
['sitar', 'string', 'eastern', 'slow', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'guitar', 'drums', 'indian']
['sitar', 'guitar', 'indian', 'india', 'oriental']
['sitar', 'fast', 'eastern', 'indian']
['sitar', 'guitar', 'strings', 'weird', 'eastern', 'indian', 'india']
['sitar', 'indian']
['sitar', 'strings', 'fast', 'indian']
['sitar', 'indian']
['sitar', 'eastern']
['sitar', 'middle eastern', 'strings', 'indian', 'india']
['sitar']
['sitar', 'indian', 'india', 'oriental']
['talking', 'weird', 'echo', 'voices', 'beat']
['synth', 'loud', 'electronic', 'talking', 'weird', 'fast', 'electro', 'dance', 'techno']
['rock', 'techno', 'beat']
['beats', 'drums', 'fast', 'fast beat', 'jungle', 'flutes', 'indian', 'techno', 'flute', 'beat']
['quiet', 'ambient', 'synth', 'electronic', 'electro', 'synthesizer', 'slow', 'soft']
['beats', 'synth', 'keyboard', 'electronic', 'fast', 'electro', 'no vocals', 'vocal', 'indian', 'rock', 'beat']
['indian']
[]
['eastern', 'slow']
['piano', 'slow', 'indian']
['guitar', 'piano', 'slow']
['piano']
['wind', 'ambient', 'slow']
['ambient']
['ambient']
['ambient', 'electronic']
['ambient', 'new age', 'synth', 'electronic', 'slow', 'techno']
['bass', 'electronic']
['synth', 'no vocal', 'electro', 'techno', 'beat']
[]
['synth']
['new age', 'synth', 'electronica', 'no flute']
['electric guitar', 'hip hop']
['male vocal', 'voice', 'man', 'male vocals', 'slow', 'rock', 'singing']
['no vocals', 'male vocals']
['guitar', 'solo', 'bass', 'electric guitar', 'slow']
['guitar', 'drums', 'no vocals', 'rock', 'guitars']
['drums', 'rock']
['guitar', 'drums', 'rock']
['rock']
['heavy', 'rock', 'metal']
['heavy', 'no vocals', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'rock', 'metal']
[]
['guitar']
['guitar']
['no voice', 'guitar', 'no vocal']
['guitar']
['vocals', 'guitar']
['male vocal', 'guitar', 'voice', 'male voice', 'country', 'man', 'pop', 'slow', 'male', 'vocal']
[]
['guitar', 'male']
['no voice', 'guitar', 'electric guitar', 'modern', 'slow']
['male vocal', 'guitar', 'man singing', 'pop', 'slow', 'vocal']
['guitar', 'country']
[]
['ambient', 'repetitive', 'drums', 'weird', 'jungle', 'slow', 'techno', 'beat', 'soft']
['electric', 'ambient', 'synth', 'electronic', 'no vocal', 'slow', 'techno', 'beat']
[]
[]
['beats', 'drum', 'dance', 'flute']
['beats', 'drum', 'drums', 'pop', 'rock', 'techno', 'beat']
[]
[]
['jazz', 'trumpet']
['jazz', 'ambient', 'trumpet', 'electro', 'sax', 'slow']
['harpsichord', 'classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'slow']
['harpsichord', 'classical', 'guitar', 'strings', 'violin', 'viola', 'cello']
[]
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'slow', 'flute', 'baroque']
['classical', 'strings', 'flute', 'baroque']
['classical', 'violin', 'flute']
['guitar', 'strings', 'slow']
['guitar', 'slow', 'soft']
[]
['classical', 'guitar', 'soft']
['piano']
['classical', 'solo', 'classic', 'piano']
['classical', 'solo', 'no vocals', 'piano', 'slow', 'soft']
['piano']
['classical', 'piano']
['classical', 'piano']
['piano']
[]
['piano']
['classical', 'quiet', 'solo', 'no singing', 'no vocal', 'piano', 'slow']
['classical', 'solo', 'instrumental', 'piano']
['piano']
[]
['classical', 'strings', 'bass', 'violin', 'deep', 'viola', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'guitar', 'folk', 'strings', 'classic', 'violin', 'piano', 'slow', 'baroque']
['classical', 'strings', 'violin', 'orchestra']
[]
['classical', 'strings']
['classical', 'violins', 'strings', 'classic', 'violin', 'baroque']
['guitar', 'slow']
['classical', 'guitar', 'strings', 'acoustic', 'acoustic guitar', 'slow']
['classical', 'guitar', 'no vocal', 'spanish']
['classical', 'guitar', 'slow']
['guitar']
['classical', 'guitar', 'classical guitar']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'string', 'classical guitar', 'harp', 'slow']
['guitar']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'no vocals', 'piano', 'slow']
['classical', 'guitar', 'slow']
['classical', 'guitar', 'instrumental']
[]
['classical', 'guitar', 'quiet']
['guitar', 'instrumental', 'slow']
[]
['hard rock', 'drums', 'rock', 'metal']
['guitar', 'rock']
['hard rock', 'loud', 'hard', 'rock', 'metal']
['hard rock', 'drums', 'rock', 'metal']
['quiet', 'new age', 'synth', 'electronic', 'techno']
[]
['synth', 'electronic', 'slow', 'techno']
['spacey', 'electric', 'ambient', 'synth', 'space', 'electronic', 'electro', 'jazzy', 'techno']
['synth', 'no vocal', 'slow']
['synth', 'electronic', 'fast', 'techno']
['electronic', 'techno']
['guitar', 'country', 'upbeat']
['no voice', 'guitar', 'country', 'no vocals']
['beat']
['techno', 'beat']
['no guitar', 'fast', 'techno', 'beat']
['no voice', 'house']
['electronic', 'dance', 'techno', 'beat']
['beats', 'fast', 'dance', 'techno', 'beat']
['techno', 'beat']
['techno', 'beat']
['electronic']
['no piano', 'drum', 'drums', 'techno', 'beat']
['no piano']
['techno']
['techno']
['ambient', 'new age', 'electro', 'electronica', 'mellow', 'slow']
[]
['ambient']
['techno']
['singer', 'male vocal', 'vocals', 'no piano', 'guitar', 'voice', 'loud', 'male singer', 'man', 'slow', 'male', 'singing']
['guitar']
['vocals', 'guitar', 'man', 'male vocals', 'male']
['female', 'slow', 'vocal']
[]
['loud', 'singing']
['rock']
['man singing', 'rock']
[]
[]
['foreign', 'choral', 'tribal', 'spanish', 'singing']
['vocals', 'foreign', 'spanish', 'slow', 'singing', 'voices', 'not english', 'choir']
['chorus', 'vocals', 'spanish', 'vocal', 'singing', 'voices', 'choir']
[]
[]
['classical', 'solo', 'violins', 'violin', 'no drums', 'cello']
['classical', 'solo', 'strings', 'violin', 'cello']
['violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'viola', 'cello']
['classical', 'solo', 'strings', 'violin', 'cello']
['harpsichord', 'clasical', 'classical', 'strings', 'medieval', 'violin', 'slow']
['classical', 'violin']
[]
[]
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'viola', 'slow', 'soft']
['harpsichord', 'classical', 'strings']
['classical', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'violin']
['classical', 'strings']
[]
['harpsichord', 'classical', 'violins', 'strings', 'medieval', 'violin']
['harpsichord', 'classical']
['harpsichord', 'classical', 'solo', 'harpsicord', 'slow']
['harpsichord']
['harpsichord']
['harpsichord', 'classical', 'no vocal']
['harpsichord', 'classical', 'strings', 'harpsicord']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'piano', 'slow', 'baroque']
['classical', 'harpsicord']
['no singing', 'electronic', 'no vocals', 'flute']
['male']
[]
['male vocal', 'vocals', 'synth', 'voice', 'male voice', 'loud', 'pop', 'mellow', 'vocal', 'singing']
['guitar', 'new age']
[]
['violin']
[]
['female']
[]
['female', 'female voice', 'voice', 'slow', 'vocal', 'woman']
['female']
['female', 'new age']
[]
['male vocal', 'male voice', 'punk', 'rock']
['loud', 'rock', 'metal']
[]
['jazz']
['sitar', 'guitar', 'strings', 'arabic', 'indian']
[]
['drums', 'strange']
[]
['no voice', 'hard rock', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'no vocals', 'lol', 'heavy metal', 'hard', 'rock', 'beat', 'metal']
['heavy', 'loud', 'drums', 'hard', 'rock', 'metal']
['hard rock', 'heavy', 'hard', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'synth', 'loud', 'drums', 'electronic', 'fast', 'no vocals', 'heavy metal', 'industrial', 'hard', 'rock', 'techno', 'noise', 'metal']
['fast', 'rock', 'metal']
['hard rock', 'heavy', 'loud', 'drums', 'no vocal', 'fast', 'industrial', 'rock', 'techno', 'metal']
[]
['hard rock', 'loud', 'no vocal', 'fast', 'no vocals', 'rock', 'metal']
['drums', 'rock']
['ambient', 'low', 'slow']
['electric', 'ambient', 'synth', 'repetitive', 'bass', 'electronic', 'trance', 'slow', 'techno', 'beat']
['ambient', 'bass', 'dance', 'techno', 'beat']
['electronic', 'beat']
['synth', 'electronic', 'slow', 'techno', 'beat']
['synth', 'drums', 'electronic', 'electro', 'dark', 'modern', 'techno']
['synth', 'trance', 'techno']
['guitar', 'spanish']
['guitar', 'banjo', 'strings', 'acoustic', 'string', 'fast', 'no vocals']
['sitar', 'guitar', 'no drums']
['sitar', 'guitar', 'strings', 'fast', 'spanish']
['sitar', 'guitar', 'banjo', 'strings', 'string', 'fast', 'no vocals', 'eastern', 'spanish']
[]
['male']
['vocal', 'indian']
[]
['foreign', 'no piano', 'drums', 'man']
[]
['vocal', 'techno']
['male vocal', 'loud', 'drums', 'electronic', 'fast', 'electro', 'punk', 'rock', 'dance', 'techno', 'beat']
['loud', 'male', 'techno']
[]
['rock', 'techno']
['male vocal', 'techno']
['beat']
[]
['loud', 'industrial', 'male', 'rock', 'techno', 'metal']
['male vocal', 'heavy', 'bass', 'male voice', 'drums', 'electronic', 'trance', 'male vocals', 'male', 'rock', 'dance', 'techno', 'beat']
[]
['synth', 'electronic', 'weird', 'modern', 'techno']
['weird', 'techno']
['drums', 'fast', 'dance', 'techno']
[]
['drums', 'fast', 'techno']
['synth', 'techno']
['drums', 'electronic', 'fast', 'techno']
['male']
['guitar', 'folk', 'man']
['male vocal', 'folk', 'country', 'male', 'vocal']
[]
['guitar']
['guitar', 'folk', 'light', 'flute', 'soft']
['flute']
['drums', 'eastern', 'indian', 'flute']
['female vocal', 'indian', 'woman', 'flute']
['drums', 'indian', 'flute']
['drum', 'medieval', 'drums', 'flute']
['guitar', 'rock']
['rock', 'voices']
[]
['ambient', 'no vocal', 'water']
['ambient', 'synth', 'percussion', 'strange']
['no voice', 'ambient']
['slow']
['ambient', 'bass', 'electronic', 'slow', 'techno']
['beats', 'female', 'ambient', 'new age', 'synth', 'middle eastern', 'drums', 'electronic', 'no vocal', 'no vocals', 'female vocal', 'slow', 'indian', 'flute', 'soft']
[]
['eastern']
['new age', 'tribal', 'jungle', 'flute']
[]
['ambient', 'not opera']
['ambient', 'bells']
['opera']
['female', 'opera']
['vocals', 'female', 'female voice', 'harp', 'female vocal', 'celtic', 'woman', 'singing']
['female singing', 'classical', 'female', 'guitar', 'female voice', 'girl', 'opera', 'vocal', 'woman', 'singing', 'soft']
['spacey', 'guitar', 'female voice', 'ambient', 'synth', 'electronic', 'female vocal', 'slow']
['singer', 'female', 'pop', 'vocal', 'woman', 'rock']
['female', 'guitar', 'strings', 'vocal', 'woman', 'female vocals']
[]
['quiet']
[]
[]
['singer', 'female', 'guitar', 'pop', 'female singer']
['guitar', 'drums', 'no vocals']
['guitar']
['quiet', 'piano', 'slow']
['male vocal', 'man', 'piano', 'male']
['male vocal', 'guitar', 'voice', 'male voice', 'male singer', 'man singing', 'country', 'man', 'pop', 'piano', 'slow', 'male', 'vocal', 'singing', 'soft']
[]
[]
['male vocal', 'vocals', 'guitar', 'man', 'pop', 'male vocals', 'slow', 'vocal', 'rock']
['rock']
['guitar', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'fast', 'heavy metal', 'rock', 'metal']
['guitar']
['no singing', 'drums']
['beats', 'synth', 'bass', 'drums', 'electronic', 'no vocals', 'instrumental', 'eastern', 'techno', 'beat']
['sitar', 'indian']
['sitar', 'drums', 'slow', 'indian']
[]
['sitar', 'drums', 'eastern']
[]
['female', 'bass', 'slow', 'vocal', 'woman', 'techno']
['female voice', 'drums', 'dark', 'female vocal', 'vocal', 'woman', 'rock', 'techno', 'beat']
[]
['female voice']
['electronic', 'talking', 'rap', 'hip hop']
['female voice', 'electronic']
['birds', 'organ']
['voice', 'pop', 'woman']
[]
['pop']
['vocals', 'techno']
['female', 'loud', 'fast', 'female vocal', 'woman', 'dance', 'techno', 'beat']
['fast', 'dance', 'techno', 'beat']
['vocals', 'female', 'loud', 'electro', 'vocal', 'techno']
['eerie', 'ambient', 'synth', 'bass', 'no vocal', 'dark', 'low', 'drone', 'slow', 'different', 'noise']
['weird', 'dark']
['voice', 'weird', 'slow']
[]
['female', 'guitar', 'female voice', 'opera', 'slow']
['opera', 'woman']
[]
['men', 'choral', 'chant', 'male', 'monks', 'choir']
['male vocal', 'male voice']
['male vocal', 'opera', 'male opera', 'chant', 'man', 'male', 'choir']
['vocals', 'chanting', 'choral', 'opera', 'chant', 'male', 'choir']
[]
['choral']
[]
['chant', 'choir']
['silence', 'wind', 'ambient', 'drum', 'drums']
['female', 'female voice', 'voice', 'girl', 'fast', 'trance', 'pop', 'female vocal', 'woman', 'woman singing', 'rock', 'dance', 'techno', 'beat']
[]
['voice', 'loud']
['male vocal', 'male voice', 'loud', 'man', 'pop', 'rock', 'dance', 'english']
['rock']
['vocals', 'loud', 'fast', 'disco', 'pop', 'rock', 'dance', 'techno']
['jazz', 'synth']
['jazz', 'funk', 'drums', 'electronic', 'no vocal', 'weird', 'slow', 'techno', 'beat']
['no voice', 'funky', 'funk', 'no singing', 'no vocal', 'no vocals', 'disco']
[]
[]
['funky', 'guitar', 'funk', 'jazzy']
['electronic', 'techno']
['techno']
['electric', 'funk', 'electronic', 'techno']
[]
['techno']
['drums', 'electronic', 'techno', 'beat']
['guitar', 'quiet']
['guitar', 'spanish', 'slow']
['bongos', 'guitar', 'drums']
['guitar', 'strings']
['wind', 'synth', 'birds']
['weird']
['airy', 'no flute']
['ambient', 'synth']
[]
[]
[]
['violin', 'flute']
['classical', 'strings', 'classic', 'violin', 'slow']
['classical']
['classical']
['drums', 'not classical', 'no vocals', 'beat']
['synth']
['male vocal', 'vocals', 'voice', 'male voice', 'electronic', 'fast', 'modern', 'man', 'male', 'vocal', 'rock', 'techno']
[]
[]
[]
['vocals', 'foreign', 'female', 'choral', 'vocal', 'singing', 'choir', 'women']
['choir']
['choir']
['female', 'slow', 'vocal']
['synth', 'bells']
[]
[]
['ambient', 'weird', 'strange']
['female', 'synth', 'electronic', 'electro', 'pop', 'vocal', 'woman', 'woman singing', 'singing', 'beat']
['female']
[]
['female']
[]
['fiddle']
['violin', 'irish']
['folk', 'irish', 'celtic', 'fiddle']
['guitar', 'folk', 'medieval', 'fast', 'celtic', 'flute']
[]
[]
['funky', 'electric', 'synth', 'bass', 'electronic', 'fast', 'electro', 'techno', 'beat']
['guitar', 'loud', 'drums', 'no singer', 'rock', 'metal']
['male', 'rock']
[]
['guitar', 'loud', 'drums', 'heavy metal', 'rock', 'different', 'metal']
[]
['ambient', 'new age', 'synth', 'bass', 'electronic', 'weird', 'no vocals', 'modern', 'techno', 'beat']
['ambient', 'dark', 'soft']
['ambient', 'dark']
['bells', 'different']
['classical', 'guitar', 'repetitive', 'electronic', 'no vocals', 'instrumental', 'bells']
['beats', 'drums']
['eerie', 'ambient', 'electronic', 'dark', 'low', 'slow', 'scary', 'noise']
['bells']
['male vocal', 'male voice', 'man', 'pop', 'spanish', 'male', 'rock', 'singing']
['pop']
['guitar', 'strings', 'slow']
['violin', 'arabic', 'jazzy', 'beat']
['violin', 'no vocals', 'eastern']
['strings', 'no vocal', 'instrumental']
['classical', 'violins', 'strings', 'violin']
['violin']
['harpsichord']
['duet', 'vocals', 'female', 'choral', 'opera', 'vocal', 'singing', 'not english', 'choir']
[]
['guitar', 'electro', 'slow']
['guitar', 'drums', 'pop', 'piano']
['synth', 'electronic', 'fast']
[]
[]
[]
['female opera', 'female', 'opera', 'woman', 'singing']
['female', 'guitar', 'opera', 'soprano']
['female', 'opera']
['classical', 'classic', 'piano', 'slow']
[]
['female', 'vocal', 'singing', 'not english']
[]
['no voice', 'guitar']
[]
['electronic', 'fast', 'techno']
['synth', 'electronic', 'techno']
['fast', 'techno', 'beat']
['electronic', 'techno', 'beat']
['guitar', 'rock']
['vocals', 'voice', 'loud', 'drums', 'pop', 'female vocal', 'rock', 'singing']
[]
['male vocal', 'vocals', 'fast', 'pop', 'rock', 'singing']
['female', 'voice', 'loud', 'fast', 'pop', 'vocal', 'woman', 'rock', 'singing']
['ambient', 'weird']
['no strings', 'ambient']
['ambient']
['ambient']
['ambient', 'new age', 'choral', 'operatic', 'female vocal', 'echo', 'no drums', 'voices', 'choir']
['ambient', 'repetitive', 'electronic', 'weird', 'no vocals', 'drone', 'no flute']
['harpsichord', 'classical', 'quiet', 'strings', 'opera', 'fast', 'violin']
['female', 'opera', 'woman', 'singing']
['female', 'opera', 'woman']
['guitar']
['pop', 'vocal', 'rock']
['male voice', 'drums', 'fast', 'pop', 'male vocals', 'male', 'rock']
['guitar', 'rock']
['harpsichord', 'classical', 'piano']
[]
['classical']
['harpsichord', 'classical', 'harpsicord', 'no violin', 'fast', 'harp', 'piano', 'baroque']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'string', 'fast', 'harp', 'piano']
['harpsichord', 'classical', 'baroque']
['harpsichord', 'classical', 'classic', 'piano']
['harpsichord', 'classical', 'harpsicord', 'piano', 'baroque']
['jazz', 'piano']
['classical', 'jazz', 'piano', 'jazzy']
['piano']
['piano', 'cello']
['quiet', 'no vocal', 'no vocals', 'piano', 'slow']
[]
['synth', 'male voice', 'man singing', 'male', 'vocal']
['vocals', 'vocal', 'techno']
['male voice', 'man', 'male', 'vocal', 'english']
[]
['voice', 'man']
['electronic', 'electro']
['ambient', 'electronic']
['guitar', 'male singer', 'rock']
['guitar', 'rock']
['man', 'male vocals', 'rock']
['hard rock', 'loud', 'vocal', 'rock', 'metal']
['hard rock', 'heavy', 'rock', 'metal']
['male vocal', 'heavy', 'fast', 'rock', 'metal']
['guitar', 'drums', 'country', 'reggae', 'slow']
['vocals', 'female voice', 'female vocal', 'vocal', 'woman', 'jazzy']
['vocals', 'female', 'female voice', 'girl', 'reggae', 'pop', 'female vocal', 'woman', 'rock', 'jazzy', 'female vocals', 'female singer']
[]
[]
['beats', 'drums', 'techno', 'beat']
['drum', 'drums', 'tribal', 'beat']
['drums', 'fast']
['male voice', 'pop', 'male', 'rap', 'hip hop']
['rap']
['funky', 'rap', 'hip hop']
[]
['drums', 'indian']
[]
['vocals', 'female', 'folk', 'drums', 'pop', 'female vocal', 'rock', 'singing', 'english']
['female', 'soft rock', 'pop', 'vocal', 'woman', 'woman singing', 'singing', 'soft']
['female', 'pop', 'female vocal', 'slow', 'woman', 'woman singing']
['vocals', 'female', 'female voice', 'voice', 'country', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing', 'female singer']
[]
['male vocal', 'guitar']
['male vocal', 'vocals', 'guitar', 'slow']
['guitar']
['guitar', 'slow', 'soft']
['no vocals']
['voices', 'choir']
['vocals', 'guitar', 'female voice', 'slow', 'not opera']
['guitar', 'girl', 'celtic', 'slow']
['singer', 'guitar', 'drum', 'woman']
['female', 'female voice', 'voice', 'slow', 'woman', 'singing']
['vocals', 'female', 'vocal', 'singing', 'female singer']
['female', 'solo', 'female voice', 'female vocal', 'not opera']
['no piano', 'female', 'solo', 'opera', 'female vocal', 'slow', 'woman', 'singing', 'female singer']
['female', 'solo', 'voice', 'opera', 'vocal', 'woman']
['drums', 'techno', 'beat']
['drums', 'fast', 'techno', 'beat']
['drums', 'fast', 'techno', 'beat']
[]
['beats', 'drums', 'electronic', 'fast', 'instrumental', 'bells', 'dance', 'techno', 'beat']
['electronic', 'dance', 'techno', 'beat']
['male vocal', 'classical', 'strings', 'opera', 'violin']
['male voice', 'opera', 'man']
['no voice', 'classical', 'violins', 'strings', 'no vocal', 'violin', 'oboe', 'slow', 'flute']
['opera', 'violin', 'male opera', 'man', 'male']
['classical', 'oboe']
['male vocal', 'guitar', 'drums', 'rock']
['drums', 'man singing', 'modern', 'rock']
['male voice', 'loud', 'pop', 'male', 'rock']
['loud', 'male vocals', 'male', 'rock']
['guitar', 'pop', 'rock']
['classical', 'female', 'strings', 'opera', 'violin']
['classical', 'strings']
['ambient', 'synth', 'drum', 'drums', 'electronic', 'no vocal', 'weird', 'slow', 'calm', 'techno', 'beat', 'soft']
['vocals', 'funky', 'pop', 'techno']
['guitar', 'ambient', 'drums', 'rock']
[]
[]
[]
['opera']
['female', 'quiet', 'voice', 'opera', 'singing']
['vocals', 'opera']
[]
['singing']
['opera']
['quiet', 'opera', 'woman', 'singing']
['soft rock', 'guitar']
['pop', 'rock']
[]
[]
['no voice', 'guitar', 'ambient', 'drums', 'electric guitar', 'slow', 'flute', 'beat']
['guitar', 'pop']
[]
[]
['no voice', 'classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'violins', 'strings', 'slow', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['no voice', 'classical', 'strings', 'violin', 'cello']
['classical', 'quiet', 'strings', 'violin', 'low', 'harp', 'slow', 'cello']
['harpsichord', 'classical', 'guitar', 'classic', 'harp', 'baroque']
['harpsichord']
['harpsichord', 'classical', 'solo']
['harpsichord', 'classical']
[]
[]
['quiet', 'opera']
['no strings', 'female', 'solo', 'opera', 'operatic', 'slow']
['opera']
[]
['synth', 'drums', 'electronic', 'techno', 'beat']
['ambient', 'new age', 'synth', 'drums', 'electronic', 'no vocal', 'fast', 'electro', 'synthesizer', 'mellow', 'slow', 'techno', 'beat']
['synth', 'techno', 'beat']
['guitar', 'strings']
['male vocal', 'beat']
['classical', 'strings', 'opera', 'violin', 'orchestral', 'orchestra']
['classical', 'strings', 'no vocal', 'orchestra']
['silence', 'classical', 'quiet', 'strings', 'orchestra']
['classical', 'strings']
['organ', 'orchestra', 'flute']
['classical', 'orchestra']
['horns', 'classical', 'strings', 'fast', 'orchestral', 'orchestra']
['classical', 'strings', 'classic', 'fast', 'orchestra']
[]
['sitar', 'drums', 'indian']
['sitar', 'indian', 'india']
['sitar', 'no vocal']
['guitar']
['beats', 'drum', 'drums', 'electronic']
['drum', 'drums', 'arabic', 'eastern']
['strange']
['synth', 'bass', 'loud', 'drums', 'electronic', 'no vocals', 'techno', 'beat']
[]
['techno', 'flute']
['string', 'electronic', 'no violin', 'fast', 'techno', 'flute', 'beat']
[]
['female singing', 'classical', 'female', 'opera']
['no piano', 'classical', 'female', 'irish', 'female vocal', 'vocal']
['female', 'quiet', 'female voice', 'opera', 'female vocal', 'singing', 'soft']
[]
['foreign', 'female', 'folk', 'voice', 'no flute', 'vocal', 'singing', 'voices', 'choir', 'women']
[]
['electronic', 'weird', 'dark', 'rock', 'techno', 'beat']
['no voice', 'synth', 'loud', 'drums', 'fast', 'techno']
['electronic', 'fast', 'techno']
['loud', 'electronic', 'fast', 'electro', 'techno', 'noise', 'metal']
[]
['drums', 'tribal']
['drums', 'indian']
['drums', 'chant', 'indian']
['drums', 'tribal', 'beat']
[]
['funky', 'electronic', 'electro', 'techno', 'beat']
['techno']
['beats', 'spacey', 'electronic', 'fast', 'electro', 'dance', 'techno', 'beat']
['synth', 'electronic', 'modern']
[]
['techno', 'beat']
['drums', 'electronic', 'techno']
[]
[]
['classical', 'guitar']
['classical', 'guitar', 'strings', 'acoustic guitar', 'classical guitar', 'piano', 'spanish']
['harpsichord', 'guitar']
['no voice', 'guitar', 'harp', 'not opera']
['guitar', 'slow']
[]
['guitar', 'electric', 'new age', 'synth', 'electronic', 'slow']
['synth', 'slow', 'techno']
['classical', 'solo', 'piano']
['classical', 'classic', 'fast', 'piano']
['synth', 'electronic', 'techno', 'beat']
[]
['synth', 'electronic']
[]
['female', 'irish', 'female vocal', 'vocal']
[]
[]
[]
[]
['opera']
['opera']
['classical', 'opera', 'man']
['opera', 'male opera', 'male']
['classical', 'strings', 'violin', 'orchestra', 'clapping']
['female', 'voice', 'opera', 'woman singing', 'singing', 'female vocals']
['female', 'female voice', 'opera']
['female', 'folk', 'opera', 'irish', 'female vocal', 'vocal', 'woman', 'singing']
['classical', 'guitar', 'classical guitar']
['guitar', 'strings', 'no drums']
['classical', 'soft rock', 'guitar', 'strings', 'no vocals', 'piano', 'orchestra']
['classical', 'violin', 'instrumental', 'slow']
['classical', 'guitar', 'strings', 'violin', 'fiddle']
['guitar', 'folk', 'slow']
[]
['hard rock', 'male vocal', 'guitar', 'loud', 'rock', 'metal']
['hard rock', 'guitar', 'electric guitar', 'rock']
['heavy', 'guitar', 'male voice', 'loud', 'drums', 'male singer', 'man singing', 'heavy metal', 'male', 'vocal', 'rock', 'singing', 'metal']
[]
['hard rock', 'heavy', 'loud', 'rock', 'metal']
['heavy', 'guitar', 'male voice', 'loud', 'drums', 'no vocal', 'electric guitar', 'heavy metal', 'rock', 'metal']
['heavy', 'guitar', 'drums', 'slow', 'rock']
['quiet']
['guitar', 'electric', 'drum', 'drums', 'electric guitar', 'rock']
['hard rock', 'male vocal', 'vocals', 'guitar', 'electric', 'loud', 'electric guitar', 'man singing', 'male', 'vocal', 'rock', 'metal']
['heavy metal', 'rock', 'metal']
['rock']
['guitar', 'loud', 'drums', 'rock']
['solo', 'piano', 'slow']
['piano']
['piano']
['jazz', 'piano']
[]
['classical', 'jazz', 'piano', 'jazzy']
['classical', 'guitar', 'slow', 'no drums']
['classical', 'guitar', 'solo', 'strings', 'classic', 'string', 'harp', 'piano', 'old']
['guitar']
[]
['talking']
[]
['loud']
['loud', 'fast', 'disco', 'rock', 'dance', 'techno', 'beat']
['harpsichord', 'guitar']
['classical']
['classical', 'quiet', 'slow', 'flute', 'soft']
[]
['female', 'pop', 'female vocal', 'woman', 'singing', 'female vocals']
['drums', 'electronic', 'dance', 'techno', 'beat']
['beats', 'bass', 'electronic', 'dance', 'techno', 'beat']
['beats', 'electronic', 'no vocals', 'no singer', 'dance', 'techno', 'beat']
['drums', 'dance', 'techno', 'beat', 'upbeat']
['beats', 'drums', 'fast', 'electro', 'dance', 'techno', 'beat']
[]
['no voice', 'beats', 'dance', 'techno', 'house', 'beat']
['drums', 'no flute']
['beats', 'drum', 'drums', 'slow', 'rock', 'beat', 'soft', 'hip hop']
['female', 'woman', 'beat']
['drums', 'woman']
['drum', 'drums', 'female vocal', 'beat']
['bass', 'slow', 'clapping', 'beat']
['female', 'jazz', 'female voice', 'drums', 'pop', 'female vocal']
['female', 'female voice', 'modern', 'female vocal', 'vocal', 'woman']
['singing']
['no piano', 'female', 'female voice', 'drums', 'female vocal', 'woman singing', 'techno']
['female', 'jazz', 'slow', 'vocal', 'dance', 'beat']
['no voice', 'beats', 'funky', 'pop', 'slow', 'beat', 'hip hop']
['jazzy']
['vocals', 'drums', 'slow', 'woman']
['female singing', 'pop', 'female vocal', 'vocal', 'woman']
[]
[]
['beats', 'trumpet', 'drum', 'drums', 'pop', 'woman', 'jazzy', 'female vocals']
['jazzy']
[]
['silence', 'quiet', 'wind', 'scary']
[]
['quiet', 'ambient', 'no singing', 'no guitar', 'slow']
['ambient', 'synth', 'weird', 'scary', 'noise']
[]
[]
['ambient', 'strings', 'organ', 'drone', 'slow', 'soft']
['no voice']
['ambient', 'electronic', 'weird']
['ambient', 'no vocal', 'dark']
['spacey', 'ambient', 'slow', 'soft']
['no voice', 'no singing', 'no vocal']
['spacey', 'ambient', 'space']
['wind', 'ambient', 'slow']
[]
[]
['ambient', 'synth', 'no vocals', 'scary']
[]
[]
['ambient']
[]
['ambient', 'slow']
['classical', 'quiet', 'ambient', 'new age', 'strange', 'light', 'piano', 'slow']
['quiet', 'no singing', 'no vocals', 'piano', 'slow']
['no beat', 'ambient', 'drums', 'low', 'piano', 'slow', 'soft']
['guitar', 'quiet', 'ambient', 'trance', 'piano', 'slow', 'soft']
['quiet']
['quiet', 'ambient', 'new age', 'slow', 'soft']
['ambient', 'weird', 'slow']
['quiet', 'drums', 'electronic', 'slow']
['guitar', 'no vocal', 'country', 'rock']
['guitar', 'drums', 'violin', 'pop', 'blues']
['folk', 'country', 'violin', 'pop', 'male vocals', 'rock']
['singer', 'male vocal', 'male voice', 'man', 'pop', 'male', 'vocal', 'rock', 'singing']
[]
['sitar', 'drums', 'no vocal', 'no vocals', 'instrumental', 'indian']
['drums', 'indian']
['drums', 'trance', 'different']
['sitar', 'indian']
['indian']
['folk', 'eastern', 'indian']
['sitar', 'guitar']
['electronic', 'fast', 'dance', 'techno', 'beat']
['electronic', 'fast', 'dance', 'techno', 'beat']
['techno']
['no voice', 'electronic', 'techno']
['fast', 'electro', 'techno']
['male vocal', 'chant', 'slow']
['chorus', 'classical', 'opera', 'singing', 'choir']
[]
['choir']
['chorus', 'men', 'chanting', 'choral', 'vocal', 'choir']
['chorus', 'vocals', 'classical', 'choral', 'lol', 'male', 'choir']
['male vocal', 'vocals', 'loud', 'heavy metal', 'rock', 'metal']
['rock']
['male vocal', 'guitar', 'hard', 'rock']
['birds']
['birds']
[]
['guitar']
['female singing', 'female', 'guitar', 'folk', 'voice', 'country', 'pop', 'female vocal', 'vocal', 'woman', 'female vocals']
['female', 'female voice', 'female vocal', 'vocal', 'woman', 'woman singing', 'female vocals']
[]
['violin']
['classical', 'guitar', 'no vocal', 'no vocals', 'no flute']
['guitar', 'female voice', 'slow', 'vocal', 'rock']
['female', 'guitar', 'rock']
['guitar', 'female voice', 'bass', 'slow', 'vocal', 'woman singing', 'rock', 'singing']
['vocals', 'trance', 'male']
['male vocal', 'rock']
['rock']
['silence', 'quiet', 'soft']
['quiet', 'ambient', 'noise']
[]
['no piano', 'ambient', 'rock', 'noise']
['ambient', 'trance', 'no singer', 'no drums']
['ambient']
['no voice', 'eerie', 'no vocal']
[]
[]
['female']
['ambient', 'bass', 'no vocals']
[]
['vocals', 'fast', 'piano', 'woman']
['vocals', 'no piano', 'female', 'voice', 'fast', 'pop', 'female vocal', 'piano', 'woman', 'female vocals']
['foreign', 'female', 'voice', 'fast', 'pop', 'female vocal', 'piano', 'vocal', 'woman', 'woman singing', 'not english', 'female singer', 'english']
['piano']
['singing']
['female', 'female voice', 'modern', 'vocal', 'female vocals', 'english']
['synth']
['guitar', 'electric', 'rock']
['male', 'rock']
['hard rock', 'loud', 'fast', 'rock', 'guitars', 'metal']
['male vocals', 'rock']
[]
['classical', 'flute']
['classical', 'violin', 'flute']
['classical', 'classic', 'flute']
['classical', 'strings', 'violin', 'cello']
['rock', 'techno']
['repetitive', 'bass', 'loud', 'electronic', 'fast', 'rock', 'techno', 'metal']
['hard rock', 'electronic', 'fast', 'rock', 'dance', 'techno', 'beat']
[]
['heavy', 'loud', 'fast', 'rock', 'techno', 'beat']
['ambient']
['ambient']
['synth', 'slow']
['quiet', 'ambient', 'new age', 'electronic', 'no vocals']
['electric', 'ambient', 'new age', 'electronic', 'techno']
['quiet', 'no vocal', 'no vocals', 'piano', 'flute']
['guitar', 'opera', 'vocal', 'singing']
['classical', 'female', 'guitar', 'folk', 'voice']
['voice', 'slow']
['guitar', 'no drums']
[]
[]
['guitar', 'operatic', 'man', 'lute', 'male', 'vocal']
['no piano', 'guitar', 'vocal']
['male vocal', 'guitar', 'medieval', 'male voice', 'opera', 'man', 'lute', 'male', 'singing']
['classical', 'piano', 'piano solo', 'flute']
['clarinet', 'classical', 'piano', 'flute']
['clarinet', 'classical', 'classic', 'oboe', 'piano', 'flute']
['clarinet', 'classical', 'oboe', 'piano', 'flute']
[]
['choral']
['chorus', 'choir']
['male vocal', 'choral', 'chant', 'slow', 'male', 'choir']
['choral', 'chant', 'male', 'choir']
['chanting', 'choral', 'opera', 'monks', 'choir']
['choir']
[]
['chorus', 'vocals', 'classical', 'violins', 'strings', 'classic', 'no vocal', 'violin', 'choir']
['chorus', 'strings', 'choral', 'opera', 'male', 'vocal', 'choir']
[]
['foreign', 'female', 'weird', 'woman', 'dance', 'techno']
[]
['ambient', 'dark']
['beats', 'male', 'techno', 'beat']
['talking', 'man', 'techno', 'beat']
['loud', 'fast', 'flute']
['flute']
['no piano', 'happy']
['guitar', 'electric', 'ambient', 'electronic', 'weird', 'electric guitar', 'slow', 'indian', 'rock']
[]
['synth', 'drums', 'electronic', 'no vocal', 'fast', 'rock', 'techno', 'beat']
['fast']
['synth', 'no singing', 'drums', 'fast']
['beats', 'drums', 'fast', 'techno', 'beat']
['beats', 'ambient', 'electronic', 'fast', 'instrumental', 'techno']
[]
['electronic', 'no vocals']
['synth']
['electronic', 'no vocals', 'beat']
['beats', 'female', 'female voice', 'electronic', 'fast', 'female vocal', 'vocal', 'techno', 'beat']
[]
['spacey', 'no beat', 'weird', 'strange']
['chorus', 'men', 'opera', 'chant', 'man', 'vocal', 'monks', 'choir']
['classical', 'violins', 'strings', 'classic', 'fast', 'orchestra']
['classical', 'wind', 'happy', 'strings', 'classic', 'fast', 'violin', 'flute']
['classical', 'strings', 'no vocals', 'flute']
['classical', 'classic', 'fast', 'flute']
['classical', 'orchestra', 'flute']
['classical', 'flute']
['classical', 'strings', 'violin']
['clarinet', 'classical', 'classic', 'orchestral', 'flutes', 'slow', 'flute', 'soft']
['classical', 'violin', 'orchestra', 'flutes', 'slow', 'flute']
['classical', 'flute']
['classical', 'flutes', 'flute']
['classical', 'violins', 'strings', 'fast', 'flutes', 'flute']
['classical', 'strings', 'classic', 'violin', 'oboe', 'orchestral', 'sad', 'slow', 'flute']
[]
['electric', 'electronic', 'no vocal', 'fast', 'electro', 'trance', 'techno']
['electronic', 'no vocal', 'electro', 'techno']
['electric', 'electronic', 'fast', 'electronica', 'instrumental', 'dance', 'techno']
['electronic', 'fast', 'techno', 'beat']
['electronic', 'dance', 'techno']
['quiet', 'drums', 'electronic', 'no drums', 'techno']
['beats', 'space', 'electronic', 'fast', 'techno']
['techno']
['heavy', 'loud', 'fast', 'trance', 'piano', 'rock', 'techno']
['drums', 'electronic', 'fast', 'techno', 'beat']
['techno']
['synth']
['electronic', 'fast', 'rock', 'techno', 'beat']
['fast', 'techno']
['classical', 'strings', 'violin']
['classical']
['no voice', 'classical', 'classic', 'violin']
['classical', 'strings', 'classic']
['classical', 'violins', 'strings', 'classic', 'no vocal', 'violin', 'no vocals', 'slow']
['classical']
['classical', 'strings']
['no piano', 'classical', 'strings', 'violin']
['no piano', 'classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'orchestra', 'flutes']
['classical', 'strings', 'violin', 'orchestra']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestral', 'orchestra']
['classical', 'strings', 'orchestra', 'slow']
['drum', 'drums', 'beat']
['heavy', 'electric guitar', 'rock']
['male vocal', 'guitar', 'drums', 'rock']
['rock']
['heavy', 'rock', 'singing']
['male voice', 'rock']
['guitar', 'bass', 'drums', 'rock']
['beats', 'female', 'female voice', 'new age', 'synth', 'voice', 'drums', 'female vocal', 'vocal', 'woman', 'female vocals', 'beat', 'female singer']
['hip hop']
['female singing', 'beats', 'funky', 'female', 'pop', 'female vocal', 'woman', 'female vocals', 'beat', 'hip hop']
[]
['funky', 'no vocal', 'instrumental', 'beat']
['vocals', 'pop']
['ambient', 'no singing', 'drum', 'drums', 'weird', 'tribal', 'jungle']
['guitar', 'no singing', 'instrumental']
['spacey', 'guitar']
['new age', 'drums']
['singer', 'female', 'female vocal', 'vocal', 'woman', 'beat', 'english']
['female singing', 'female', 'voice', 'pop', 'woman']
['guitar', 'electric guitar', 'no flute', 'rock']
['female', 'guitar', 'drums', 'beat']
['female singing', 'female', 'female voice', 'girl', 'pop', 'female vocal', 'woman', 'woman singing', 'female vocals']
['new age', 'drums']
['ambient', 'new age', 'synth', 'no violin', 'no guitar', 'weird', 'slow']
['ambient', 'electronic', 'slow']
['eerie', 'no beat', 'wind', 'ambient', 'new age', 'synth', 'electronic', 'no vocals', 'trance', 'slow', 'soft']
['spacey', 'ambient', 'no vocal', 'slow']
[]
['quiet', 'ambient', 'new age', 'no drums']
['ambient', 'airy', 'drone']
[]
['ambient', 'synth', 'electronic']
['no vocal', 'light', 'slow']
[]
['ambient', 'synth', 'electronic', 'slow', 'techno']
['quiet', 'electric', 'ambient', 'new age', 'synth', 'electronic', 'fast', 'electro', 'electronica', 'calm', 'techno', 'soft', 'quick']
['ambient', 'no drums']
['chimes', 'ambient', 'no vocal']
['spacey', 'ambient', 'new age']
[]
['duet', 'vocals', 'jazz', 'guitar', 'keyboard', 'drums', 'vocal', 'jazzy', 'singing', 'voices']
['male vocal', 'jazz', 'man', 'pop']
['jazz']
[]
['beats', 'synth', 'drums', 'electronic', 'electronica', 'slow', 'beat']
['drums']
['synth', 'electronic', 'techno']
['techno', 'clapping']
['synth', 'electronic', 'techno', 'clapping', 'beat', 'upbeat']
['techno']
['electronic']
['beats', 'slow', 'beat']
['electronic', 'no vocal', 'no vocals', 'techno']
['female']
['vocals', 'voice', 'loud', 'modern', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'singing', 'female vocals']
[]
['pop', 'rock']
['harpsichord', 'classical', 'solo', 'harpsicord', 'fast', 'piano', 'baroque']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'fast', 'baroque']
['classical', 'harp']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'baroque']
['no piano', 'ambient', 'loud', 'electronic', 'no vocal', 'weird', 'no vocals', 'piano', 'slow', 'flute']
[]
[]
['no vocals']
[]
['ambient', 'synth', 'drums', 'electronic', 'techno', 'beat']
['electric', 'drums', 'modern', 'techno', 'beat']
['new age', 'drums']
['no vocals', 'beat']
['beats', 'loud', 'electronic', 'slow', 'dance', 'techno', 'beat']
[]
['synth', 'techno']
[]
['synth', 'loud', 'electronic', 'techno']
['no guitar', 'flute', 'soft']
['sitar', 'indian']
['sitar', 'no vocals', 'indian']
['eastern', 'flute']
['beat']
['jazz', 'fast', 'sax', 'jazzy']
['jazz', 'trumpet', 'fast', 'sax', 'blues']
[]
['jazz', 'sax']
['guitar', 'strings']
['guitar', 'no vocals']
['guitar', 'drums', 'pop', 'beat']
['no piano', 'guitar', 'drums']
['no voice', 'horn']
['guitar', 'rock']
['guitar', 'pop', 'male vocals', 'vocal', 'singing']
['female', 'guitar', 'male voice', 'loud', 'man', 'vocal', 'woman', 'rock', 'guitars', 'singing']
['man', 'male', 'rock']
['beats', 'drums', 'slow', 'techno', 'beat']
['beats', 'electronic', 'dance', 'techno', 'beat']
['beat']
[]
['synth']
['beats', 'synth', 'fast', 'electro']
[]
[]
['beats', 'electronic', 'techno']
[]
['beats', 'drums', 'electronic', 'techno', 'beat']
['no singing', 'weird', 'no vocals', 'techno', 'beat']
['guitar', 'country']
['guitar', 'strings', 'acoustic guitar']
['guitar']
['guitar', 'no drums']
['ambient', 'drums', 'beat']
[]
['no singing', 'strings', 'no vocal', 'violin', 'no vocals', 'celtic']
['choral', 'choir']
['choral', 'opera', 'chant', 'singing', 'voices', 'choir']
['vocals', 'choral', 'chant', 'choir']
[]
['vocals', 'guitar', 'quiet', 'synth', 'electronic', 'no vocals', 'piano', 'slow', 'singing', 'voices', 'soft']
[]
['fast', 'vocal']
['female', 'pop', 'woman singing']
['fast', 'pop', 'vocal']
['beats', 'drums', 'fast', 'upbeat']
['electronic', 'disco', 'techno']
['beats', 'drums', 'electronic', 'fast', 'dance', 'techno']
['synth', 'space', 'electro', 'electronica', 'techno']
['electronic', 'fast', 'techno', 'beat']
['electronic', 'electro', 'techno']
['electronic', 'techno']
['techno']
['guitar', 'synth', 'electronic', 'no vocal', 'fast', 'techno']
['electronic', 'trance', 'dance', 'techno']
['electronic', 'dance', 'techno', 'beat']
['electronic', 'fast', 'trance', 'modern', 'dance', 'techno', 'beat', 'upbeat']
['electronic', 'modern', 'techno']
['fast', 'disco', 'techno']
[]
['synth', 'fast', 'pop', 'dance', 'techno', 'beat']
['beats', 'ambient', 'new age', 'drum', 'not rock', 'electronica', 'instrumental', 'techno', 'beat']
['techno']
[]
['electronic']
['electronic', 'electro', 'modern']
['new age', 'electronic', 'pop']
['classical', 'no singing']
['harpsichord', 'classical', 'baroque']
['harpsichord']
['harpsichord']
[]
['guitar', 'vocal', 'singing']
['guitar']
[]
['guitar', 'vocal', 'female singer']
[]
['quiet', 'ambient', 'synth', 'drum', 'electronic', 'weird', 'slow']
['ambient', 'electronic', 'weird', 'dark', 'strange', 'scary', 'noise']
['ambient']
[]
['no piano', 'spacey', 'ambient', 'synth', 'not classical', 'dark', 'industrial', 'echo']
['classical', 'quiet', 'violins', 'strings', 'classic', 'violin', 'slow', 'calm', 'soft']
['choral', 'choir']
['choir']
['classical', 'quiet', 'violins', 'strings', 'opera', 'violin', 'voices', 'choir']
['chorus', 'classical', 'opera', 'instrumental', 'voices']
[]
['fast', 'techno']
['beats', 'percussion', 'trance', 'techno']
[]
[]
[]
['ambient', 'synth', 'electronic', 'no violin', 'electronica', 'techno']
['weird']
['guitar', 'loud', 'rock']
['drums', 'fast', 'rock', 'beat']
['electronic', 'rock', 'techno', 'beat']
['low', 'slow', 'flute', 'soft']
['ambient', 'slow', 'flute']
['drums']
['drum', 'drums', 'tribal', 'slow']
['ambient', 'space', 'electronic']
['drums', 'fast', 'pop', 'indian', 'female vocals', 'beat']
['beats', 'electronic', 'fast', 'electro', 'techno', 'beat']
['electronic', 'fast', 'techno', 'upbeat']
['weird']
['no strings', 'electronic', 'fast', 'techno']
['synth', 'drums', 'electronic', 'fast', 'electro', 'techno']
['electronic']
['synth', 'electronic', 'fast', 'dance', 'techno']
['ambient', 'airy', 'weird', 'strange', 'slow', 'noise']
['guitar', 'no vocal', 'no vocals', 'harp']
[]
['synth', 'electronic', 'fast', 'electronica', 'techno']
['synth', 'loud', 'fast', 'electronica', 'dance', 'techno']
['synth', 'loud', 'fast', 'techno']
['electronic', 'techno']
['foreign', 'female', 'electronic', 'electro', 'strange', 'pop', 'female vocal', 'woman', 'female vocals', 'voices', 'techno', 'beat']
['fast', 'dance', 'techno']
[]
[]
['drums', 'tribal', 'flute']
['world', 'drums', 'tribal', 'eastern', 'indian', 'flute', 'beat']
['flute']
['middle eastern', 'fast', 'tribal', 'indian', 'flute', 'oriental']
['strings', 'slow']
['hard rock', 'rock']
['rock']
['guitar', 'acoustic']
[]
['guitar', 'rock']
[]
['rock']
['singer', 'male vocal', 'guitar', 'voice', 'drums', 'male vocals', 'male', 'vocal']
[]
['happy', 'pop']
['male']
[]
['vocals', 'pop']
[]
['beats', 'percussion', 'drum', 'drums', 'fast', 'instrumental', 'no flute', 'beat']
['bongos', 'drums', 'fast', 'tribal']
[]
['repetitive', 'drums', 'electronic', 'fast', 'techno']
['beats', 'electronic', 'fast', 'techno', 'beat']
['funky', 'drums', 'fast', 'techno']
['fast', 'dance', 'techno', 'beat']
['percussion', 'drum', 'drums', 'fast', 'no vocals', 'fast beat', 'techno', 'house', 'beat']
['drum', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['not rock', 'fast', 'techno', 'beat']
['drums', 'electronic', 'fast', 'fast beat', 'techno', 'beat']
['no voice', 'jazz', 'guitar', 'quiet', 'bass', 'drums', 'piano', 'slow', 'jazzy']
['jazz', 'bass', 'male voice', 'male']
[]
['jazz', 'quiet', 'bass', 'piano', 'slow', 'blues', 'jazzy']
['jazz', 'man', 'piano', 'male', 'blues', 'jazzy']
['jazz', 'quiet', 'piano', 'blues', 'jazzy']
['guitar', 'male']
['folk', 'country', 'man', 'male']
[]
['ambient', 'birds', 'slow']
['ambient', 'birds']
['ambient', 'birds', 'slow']
[]
['birds']
['classical', 'guitar', 'no drums']
['guitar', 'acoustic']
['harpsichord', 'guitar', 'folk', 'acoustic guitar', 'classical guitar', 'slow', 'soft']
['guitar']
['no voice', 'guitar', 'slow']
['guitar', 'quiet', 'slow']
['solo', 'no vocals', 'piano', 'slow', 'soft']
['classical', 'piano']
['piano', 'piano solo']
['classical', 'solo', 'piano', 'soft']
['drums']
['rock', 'metal']
['hard rock', 'heavy', 'loud', 'heavy metal', 'hard', 'rock', 'noise', 'metal']
['hard rock', 'loud', 'hard', 'rock', 'metal']
['hard rock', 'loud', 'heavy metal', 'rock', 'singing', 'metal']
['guitar', 'rock', 'metal']
['drums', 'rock', 'metal']
['hard rock', 'loud', 'hard', 'rock', 'metal']
[]
['guitar']
['sitar', 'guitar', 'folk', 'indian']
['sitar', 'guitar', 'slow', 'indian']
['sitar', 'guitar', 'middle eastern', 'strings', 'fast', 'indian', 'india']
['guitar', 'strings', 'indian']
['sitar', 'guitar', 'banjo', 'strings', 'string', 'indian']
[]
[]
[]
['harpsichord', 'classical', 'harpsicord', 'medieval', 'loud', 'classic', 'fast', 'violin', 'harp', 'piano']
[]
['drum', 'drums', 'no guitar']
['beats', 'drum', 'bass', 'drums', 'beat']
['female', 'drums', 'female vocal', 'indian']
['vocals', 'female', 'female voice', 'vocal', 'rock']
['female voice', 'indian', 'woman singing']
['foreign', 'indian', 'woman']
['ambient', 'no guitar', 'slow']
['female', 'female voice', 'new age', 'drum', 'drums', 'pop', 'slow', 'woman', 'woman singing', 'rock', 'singing']
['synth']
[]
['synth']
['duet', 'female', 'female voice', 'piano', 'slow', 'vocal']
['vocals', 'female vocal', 'piano', 'vocal', 'woman']
[]
['synth', 'slow']
['slow', 'flute', 'soft']
['quiet', 'slow', 'flute', 'soft']
[]
['no vocal', 'no vocals', 'flute']
['quiet', 'no guitar', 'weird', 'strange', 'flute']
['quiet', 'wind', 'synth', 'no guitar', 'slow', 'flute']
[]
['slow', 'flute']
[]
[]
['guitar', 'folk', 'loud', 'fast', 'not opera', 'beat']
['funky', 'guitar', 'loud', 'not classical', 'fast', 'indian', 'rock', 'dance']
['loud', 'fast', 'indian', 'upbeat']
['no voice', 'quiet', 'ambient', 'electronic', 'slow', 'water']
['eerie', 'ambient', 'new age', 'birds', 'water']
['synth', 'calm']
['wind']
['quiet', 'ambient', 'new age', 'birds', 'slow', 'noise', 'water']
[]
['beats', 'drums', 'beat']
['beats', 'no guitar', 'techno', 'beat']
['percussion', 'electronic', 'electro', 'techno', 'beat']
['synth', 'electronic', 'techno', 'beat']
['electronic']
[]
['harpsichord', 'classical']
['clasical', 'classical', 'classic', 'no vocal', 'fast', 'violin', 'no vocals', 'flute']
['harpsichord', 'clarinet', 'classical', 'wind', 'strings', 'harpsicord', 'medieval', 'classic', 'fast', 'horn', 'oboe', 'flute', 'baroque']
['classical', 'violin', 'slow', 'flute']
['harpsichord', 'classical', 'no vocals', 'oboe', 'flute']
['harpsichord', 'clarinet', 'classical', 'flute']
['harpsichord', 'classical', 'strings', 'classic', 'oboe', 'orchestra', 'flute', 'baroque']
['classical', 'strings', 'oboe']
['male vocal', 'guitar', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal', 'singing', 'english']
['guitar', 'man', 'male vocals']
['no voice', 'drums', 'no guitar', 'country', 'male vocals', 'slow']
['no strings', 'jazz', 'no singing', 'no vocal', 'horn', 'sax', 'slow']
['drums', 'sax', 'jazzy']
['classical', 'guitar', 'strings', 'country', 'female vocal', 'slow']
['female singing', 'vocals', 'classical', 'female', 'guitar', 'female voice', 'voice', 'strings', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'english']
['female', 'guitar', 'female vocal', 'woman']
[]
['guitar']
['female', 'female vocal', 'vocal', 'woman']
['foreign', 'female', 'woman', 'female vocals']
['no beat', 'vocal', 'singing']
['female', 'female voice', 'ambient', 'female vocal', 'vocal', 'woman']
['sitar', 'vocals', 'classical', 'guitar', 'quiet', 'strings', 'piano', 'slow', 'indian', 'no singer']
[]
[]
['female']
[]
['indian']
['jazz', 'guitar', 'slow', 'jazzy']
[]
['guitar', 'solo']
['guitar']
['guitar', 'acoustic guitar', 'blues']
[]
['metal']
['hard rock', 'loud', 'rock', 'metal']
['rock', 'metal']
[]
['guitar', 'male voice', 'country']
['rock']
[]
['beat']
[]
[]
['spanish', 'indian']
['loud', 'weird', 'fast', 'strange', 'heavy metal', 'sax', 'vocal', 'flute']
['guitar', 'rock']
['male vocal', 'guitar', 'male voice', 'man', 'pop', 'male', 'vocal', 'rock']
['vocals', 'guitar', 'rock']
['guitar']
[]
['guitar', 'banjo', 'solo', 'country']
['male vocal', 'guitar']
['male vocal', 'soft rock', 'guitar', 'man', 'pop']
['singer', 'vocals', 'guitar', 'male singer', 'man', 'pop', 'male vocals', 'slow', 'vocal', 'singing', 'upbeat']
['male vocal', 'guitar', 'slow']
['chorus', 'male vocal', 'vocals', 'guitar', 'loud', 'modern', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'singing']
['man', 'pop', 'rock']
['guitar']
['male vocal', 'vocals', 'guitar', 'acoustic guitar', 'male singer', 'man singing', 'man', 'pop', 'male vocals', 'sad', 'slow', 'male', 'vocal']
['male vocal', 'guitar', 'country', 'slow']
[]
[]
['female', 'voice', 'female singer']
['vocal']
[]
[]
['vocals', 'female', 'jazz', 'loud', 'pop', 'vocal', 'woman', 'singing', 'women']
['plucking', 'guitar', 'solo', 'strings', 'acoustic', 'no vocal', 'classical guitar', 'no vocals', 'slow', 'soft']
['guitar', 'calm']
['guitar', 'quiet', 'strings', 'acoustic', 'acoustic guitar', 'slow']
[]
[]
['ambient', 'violin']
['ambient', 'synth', 'strings', 'weird', 'violin', 'slow', 'soft']
['classical', 'strings', 'loud', 'classic', 'electronic', 'violin', 'slow']
['drums', 'rock']
['male vocal', 'guitar', 'male', 'vocal', 'rock']
['vocals', 'male singer', 'rock']
['rock']
['guitar', 'rock']
['hard rock', 'guitar', 'man singing', 'country', 'male', 'blues', 'rock', 'house']
['male vocals', 'rock']
['rock']
['male vocal', 'guitar', 'male', 'rock']
['male vocal', 'vocals', 'guitar', 'loud', 'drums', 'fast', 'male vocals', 'male', 'rock', 'guitars', 'singing']
[]
['male vocal', 'guitar', 'bass', 'piano', 'vocal', 'jazzy']
[]
[]
['trumpet']
[]
['techno']
['techno']
['female', 'fast', 'techno']
[]
[]
[]
['guitar', 'loud', 'country', 'blues', 'rock', 'jazzy']
['jazz', 'man']
['female', 'drums']
['electronic', 'slow', 'techno']
['electronic', 'synthesizer']
['drums', 'dance', 'techno']
['female', 'synth', 'drums', 'fast', 'vocal', 'techno']
[]
[]
['singer', 'vocals', 'female', 'female voice', 'synth', 'electronic', 'dance', 'singing', 'techno', 'beat']
['vocals', 'guitar', 'vocal']
[]
['vocals', 'guitar']
['vocals', 'guitar', 'sad', 'soft']
['classical', 'female', 'opera', 'operatic', 'woman']
['flute']
['classical', 'female', 'quiet', 'opera', 'slow', 'woman', 'woman singing', 'female vocals', 'flute']
['classical', 'opera']
['female', 'opera', 'soprano', 'female vocal', 'vocal', 'woman', 'flute']
['guitar', 'synth', 'loud', 'no vocal']
[]
['guitar', 'ambient']
['drums', 'beat', 'rap']
[]
['female', 'voice', 'pop', 'vocal', 'woman', 'female vocals', 'techno', 'beat']
[]
['female voice', 'drums', 'female vocal', 'woman', 'singing', 'female vocals']
['drums', 'dance', 'beat']
['no guitar']
['female singing', 'vocals', 'female', 'girl', 'pop', 'vocal', 'woman', 'rock', 'singing', 'female vocals', 'female singer']
['singer', 'female voice', 'woman', 'female singer']
['vocals', 'female', 'guitar', 'voice', 'fast', 'lol', 'modern', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'rock', 'singing', 'female vocals', 'female singer', 'quick']
['strings', 'fast', 'celtic']
['guitar', 'strings', 'fast', 'harp']
['no voice', 'harpsichord', 'sitar', 'fast']
['classical', 'guitar', 'strings', 'fast']
['no voice', 'guitar', 'no singing', 'strings', 'fast', 'instrumental', 'harp', 'indian', 'oriental']
['guitar', 'strings', 'not rock', 'fast', 'oriental']
['not rock', 'no vocals']
['guitar', 'string']
[]
['synth', 'drum', 'bass', 'drums', 'electronic', 'beat']
['beats', 'funky', 'jazz', 'funk', 'beat']
['weird']
['synth', 'electronic', 'weird', 'instrumental', 'synthesizer']
['synth', 'electronic', 'organ']
['dark', 'piano']
['piano']
['classical', 'drums', 'dark', 'piano', 'slow', 'cello']
['heavy', 'bass', 'drums', 'dark', 'piano']
['synth', 'electronic', 'techno']
['beats', 'synth', 'electronic', 'fast', 'electro', 'no vocals', 'pop', 'dance', 'techno', 'beat']
['drums', 'electronic', 'techno', 'beat']
['synth', 'repetitive', 'electronic', 'dance', 'techno']
['male vocal', 'electric', 'male voice', 'electronic', 'electro', 'techno', 'beat']
['classical', 'dark', 'piano', 'slow', 'cello']
['singer', 'female', 'piano', 'slow']
['vocals', 'man', 'piano', 'vocal', 'different']
[]
['slow']
['bass', 'violin', 'slow', 'cello']
['vocals', 'female', 'voice', 'woman']
['classical', 'strings', 'dark', 'slow', 'cello']
['strings', 'violin']
['foreign', 'female', 'female voice', 'ambient', 'strings', 'drums', 'violin', 'chant', 'indian', 'woman']
['female singing', 'ambient']
['new age', 'synth']
['techno']
[]
['electronic']
['foreign', 'female voice', 'opera', 'vocal', 'woman', 'choir']
['classical', 'vocal']
[]
['funk', 'beat']
['funky', 'guitar', 'funk', 'bass', 'drums', 'fast', 'rock', 'dance', 'jazzy', 'techno', 'beat']
['no vocals', 'harp']
['guitar', 'percussion', 'bass', 'beat']
['sitar', 'electronic', 'not classical', 'fast', 'indian']
['bass', 'drums', 'fast', 'flute', 'beat']
['new age', 'drums', 'electronic', 'weird', 'no vocals', 'techno', 'beat']
[]
['not classical', 'indian', 'beat']
['rock']
['guitar', 'loud', 'no vocals', 'rock']
['hard rock', 'heavy', 'guitar', 'drums', 'rock', 'metal']
['loud', 'drums', 'rock']
['hard rock', 'guitar', 'loud', 'rock']
['hard rock', 'heavy', 'guitar', 'loud', 'rock', 'metal']
['heavy', 'guitar', 'loud', 'rock', 'metal']
['no singing', 'electric guitar', 'rock']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'electric guitar', 'rock', 'techno']
['no voice', 'hard rock', 'guitar', 'loud', 'drums', 'electric guitar', 'hard', 'rock', 'guitars', 'metal']
['guitar', 'loud', 'electronic', 'rock', 'techno', 'metal']
['male vocal', 'voice', 'man', 'slow', 'male']
['duet', 'male vocal', 'guitar', 'loud', 'man singing', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing', 'soft']
['guitar', 'slow', 'jazzy']
['guitar', 'man', 'slow']
['male vocal', 'male voice', 'acoustic', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['duet', 'male vocal', 'female', 'voice', 'male voice', 'country', 'man', 'slow', 'male', 'vocal', 'singing']
['guitar', 'voice', 'drums', 'talking', 'rock']
['rock']
['drums', 'hard', 'punk', 'rock', 'metal']
['vocals', 'foreign', 'female', 'female voice', 'strings', 'no violin', 'female vocal', 'celtic', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'not english', 'female singer']
['vocal']
['world', 'vocals', 'middle eastern', 'drums', 'arabic', 'indian']
['vocals', 'no piano', 'eastern', 'singing']
['drums']
['sitar', 'foreign', 'drum', 'drums', 'violin', 'arabic', 'instrumental', 'eastern', 'indian', 'oriental']
['classical', 'strings', 'violin', 'slow']
['vocals', 'foreign', 'chanting', 'talking', 'arabic', 'chant', 'man', 'male', 'vocal']
['vocals', 'no piano', 'middle eastern', 'voice', 'male voice', 'indian', 'not english']
['voices']
['choral', 'tribal']
['chanting', 'chant']
[]
[]
['no voice', 'sitar', 'country', 'indian']
[]
[]
[]
['not rock', 'slow', 'indian', 'flute']
['no voice', 'quiet', 'slow', 'flute']
['no beat', 'ambient', 'flute']
['woodwind', 'solo', 'slow', 'flute']
['classical', 'guitar', 'solo', 'classical guitar', 'slow']
['classical', 'guitar', 'solo', 'acoustic', 'slow']
['classical', 'guitar', 'strings', 'acoustic', 'slow', 'soft']
['classical', 'guitar']
['guitar', 'classical guitar', 'no vocals']
['classical', 'guitar', 'strings', 'no vocal', 'harp', 'slow', 'baroque']
['classical', 'guitar', 'harp']
['classical', 'guitar', 'quiet', 'strings', 'lol']
[]
['guitar']
['guitar', 'spanish']
['guitar']
[]
['guitar', 'no vocal', 'spanish']
['plucking', 'sitar', 'guitar', 'strings', 'acoustic', 'fast', 'indian']
['guitar']
[]
['drums', 'fast', 'techno']
['funky', 'percussion', 'bass', 'no guitar', 'pop']
['beats', 'jazz', 'guitar', 'percussion', 'drum', 'drums', 'fast', 'jazzy', 'techno', 'beat']
['no voice', 'guitar', 'no vocal', 'fast', 'indian']
['fast', 'techno', 'beat']
['guitar']
['classical', 'guitar', 'solo', 'strings', 'string', 'lute', 'old', 'slow']
['classical', 'guitar', 'strings', 'no vocals']
['guitar', 'rock']
['hard rock', 'guitar', 'loud', 'heavy metal', 'male', 'rock', 'metal']
['guitar', 'male voice', 'man singing', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'man', 'male']
['harpsichord', 'classical', 'classic', 'horn', 'oboe']
[]
['female', 'female voice', 'synth', 'female vocal', 'slow', 'vocal', 'woman']
['ambient', 'drums', 'electronic', 'trance', 'slow', 'vocal', 'techno', 'beat']
['female', 'female vocal', 'vocal', 'woman', 'female vocals']
['female', 'female voice', 'synth', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'female singer']
['female vocal', 'woman', 'beat']
['female', 'guitar', 'female voice', 'ambient', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals']
['female', 'soft']
['female', 'guitar', 'female voice', 'electronic', 'no vocal', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'beat', 'soft']
[]
['female singing', 'female', 'female voice', 'strings', 'violin', 'modern', 'female vocal', 'slow', 'vocal', 'woman singing', 'singing']
['voice', 'weird', 'mellow']
['female', 'female voice', 'voice', 'pop', 'vocal', 'woman']
['guitar']
['guitar', 'no singing', 'electric guitar', 'rock']
['guitar', 'loud', 'fast', 'rock']
['jazz', 'guitar', 'solo', 'loud', 'rock']
['rock']
[]
['no piano', 'synth', 'electronic', 'beat']
['new age', 'synth', 'electronic']
['techno']
['beats', 'electric', 'synth', 'electronic', 'fast', 'electro', 'techno', 'beat']
['fast', 'electro', 'electronica', 'techno', 'upbeat']
['fast', 'techno']
[]
['electronic', 'dance', 'techno']
[]
['electronic', 'dance', 'techno']
[]
['classical']
['modern', 'techno']
['jazz', 'synth', 'keyboard', 'electronic']
['ambient', 'synth', 'electronic', 'strange', 'techno']
['classical', 'synth', 'strings', 'electronic', 'organ', 'horn', 'low', 'instrumental', 'deep', 'slow', 'no drums', 'flute']
['no piano', 'horns', 'ambient', 'new age', 'synth', 'strings', 'string', 'piano', 'slow', 'flute', 'soft']
['spacey', 'ambient', 'synth', 'electronic', 'trance', 'techno']
['no voice', 'funky', 'ambient', 'no vocal', 'dance']
['drums', 'electronic', 'no guitar', 'fast', 'no vocals', 'dance', 'techno']
[]
['drum', 'loud', 'drums', 'electronic', 'fast', 'no vocals', 'modern', 'disco', 'dance', 'techno', 'house', 'beat', 'upbeat']
['loud', 'drums', 'techno', 'beat']
['loud', 'drums', 'electronic', 'techno', 'beat', 'upbeat']
['beats', 'funky', 'synth', 'percussion', 'drums', 'fast', 'dance', 'techno', 'upbeat']
[]
[]
['fast', 'techno', 'house']
[]
['no singer', 'techno']
['synth', 'loud', 'electronic', 'fast', 'trance', 'fast beat', 'pop', 'dance', 'techno', 'house']
['loud', 'electronic', 'no vocal', 'fast', 'trance', 'disco', 'dance', 'techno', 'beat']
['female', 'voice', 'singing']
[]
['female', 'guitar', 'folk', 'female voice', 'girl', 'pop', 'female vocal', 'vocal', 'singing', 'female singer']
[]
['country', 'upbeat']
['vocals', 'pop', 'vocal', 'woman', 'singing']
['violin', 'irish']
['harpsichord']
['classical', 'quiet', 'violin', 'celtic']
['classical', 'strings', 'classic', 'violin', 'fiddle']
['harpsichord', 'classical', 'violin', 'flute']
[]
['jazz', 'loud', 'fast', 'no vocals', 'piano', 'jazzy']
[]
['jazz', 'fast', 'piano']
['jazz', 'bass', 'piano', 'jazzy']
['reggae', 'piano', 'jazzy']
['piano']
['sitar', 'vocals', 'chimes', 'female', 'guitar', 'quiet', 'synth', 'voice', 'strings', 'string', 'light', 'vocal']
['singing', 'not english']
['foreign', 'female vocals']
[]
[]
['female opera', 'classical', 'female voice', 'opera', 'woman', 'female vocals']
['female', 'opera', 'operatic']
['classical', 'female voice', 'opera']
[]
[]
['electric', 'synth', 'electronic', 'weird', 'fast', 'electro', 'no vocals', 'electronica', 'strange', 'dance', 'techno', 'beat']
['violin', 'irish', 'celtic', 'fiddle']
['classical', 'strings', 'violin']
['male vocal', 'folk', 'country', 'violin', 'irish', 'man', 'male', 'fiddle']
['violins', 'violin', 'celtic', 'fiddle']
['male vocal', 'vocals', 'folk', 'male voice', 'weird', 'irish', 'man', 'male']
['ambient', 'birds']
['spacey', 'ambient', 'synth', 'birds', 'no vocal', 'instrumental', 'water']
['ambient']
['birds', 'no vocals', 'water']
['ambient']
['ambient', 'water']
['ambient', 'birds', 'water']
['ambient']
[]
['quiet', 'ambient', 'slow', 'water']
['choral', 'male', 'vocal', 'choir']
['chorus', 'vocals', 'classical', 'choral', 'opera', 'male vocals', 'male', 'singing', 'voices', 'choir']
['vocals', 'choral', 'choir']
['chorus', 'choral', 'opera', 'choir']
['sitar', 'slow', 'indian']
['sitar', 'drum', 'drums', 'indian', 'india', 'oriental']
['sitar', 'drums', 'no vocal', 'eastern', 'indian', 'quick']
['sitar', 'mellow', 'eastern', 'slow', 'indian']
['sitar']
[]
['indian']
['sitar', 'indian']
['sitar', 'drums', 'indian']
['sitar', 'drum', 'drums', 'indian']
['sitar', 'new age', 'indian']
['indian']
[]
['jazz', 'drums', 'jazzy']
['classical', 'guitar', 'piano']
[]
[]
['piano']
['piano']
[]
[]
['ambient', 'slow', 'flute']
['slow', 'flute']
['solo', 'slow', 'flute', 'soft']
['wind', 'no vocals', 'horn', 'slow', 'flute']
['flute']
['no vocal', 'oboe', 'slow', 'flute']
['oboe', 'flute']
['no voice', 'woodwind', 'quiet', 'solo', 'flute', 'soft']
['quiet', 'slow', 'flute']
['flute']
['quiet', 'wind', 'horn', 'flute']
['classical', 'guitar', 'lute', 'piano', 'soft']
['solo', 'strings', 'classical guitar', 'piano', 'slow']
['classical', 'violin']
['classical', 'guitar', 'solo', 'strings']
['harpsichord', 'sitar', 'solo', 'medieval', 'eastern', 'baroque']
['sitar', 'guitar', 'banjo', 'strings', 'harp', 'piano', 'eastern', 'indian']
[]
[]
[]
[]
['dark']
['sitar', 'ambient', 'drum', 'drums', 'tribal', 'eastern', 'indian', 'india']
['vocals', 'female', 'ambient', 'voice', 'slow', 'indian', 'woman singing']
['drums']
['women']
['chant', 'indian']
[]
['electronic', 'no vocals']
['vocals', 'female', 'female voice', 'new age', 'synth', 'voice', 'electronic', 'female vocal', 'vocal', 'woman', 'singing']
['electronic', 'eastern']
['loud', 'electronic', 'fast', 'electro', 'no vocals', 'pop', 'rock', 'techno']
['pop']
['vocals', 'female', 'loud', 'vocal', 'singing']
['synth', 'loud']
['vocals', 'weird', 'no vocals']
['techno']
['vocals', 'beats', 'female']
['drums', 'tribal', 'vocal', 'singing']
[]
['drum', 'drums', 'no guitar', 'talking', 'man', 'beat']
['beats', 'drum', 'drums', 'talking', 'tribal', 'man']
['percussion', 'drum', 'drums', 'tribal']
['drum', 'drums', 'talking', 'weird', 'tribal', 'noise']
[]
['drum', 'drums', 'tribal']
['vocals', 'female', 'female voice', 'techno', 'flute']
[]
['no vocals', 'fast beat', 'techno']
['beats', 'female voice', 'loud', 'drums', 'techno', 'beat']
['electronic', 'trance', 'techno']
['female', 'techno']
['techno']
['electronic']
['female', 'pop', 'dance', 'techno']
['drums', 'rock']
['guitar', 'rock']
['hard rock', 'male vocal', 'guitar', 'loud', 'drums', 'fast', 'man singing', 'male', 'vocal', 'rock', 'metal']
['beats', 'man', 'pop', 'male vocals', 'male', 'dance', 'techno', 'english']
['beats', 'synth', 'drums', 'techno', 'beat']
['male vocal', 'beats', 'male voice', 'electronic', 'male singer', 'modern', 'man', 'pop', 'male vocals', 'male', 'rock', 'singing', 'techno']
['heavy metal', 'rock']
['heavy', 'guitar', 'loud', 'drums', 'fast', 'rock']
['guitar', 'heavy metal', 'rock', 'metal']
['guitar', 'electric', 'loud', 'fast', 'rock']
['hard rock', 'male vocal', 'guitar', 'fast', 'heavy metal', 'hard', 'rock', 'metal']
[]
['hard rock', 'heavy', 'guitar', 'rock', 'metal']
['ambient', 'synth', 'weird', 'dark', 'low', 'strange', 'synthesizer', 'slow']
['vocals', 'dark']
['vocals', 'foreign', 'female', 'loud', 'arabic', 'female vocal', 'eastern', 'indian', 'woman', 'singing', 'female vocals', 'female singer']
['foreign', 'female', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'singing', 'female vocals', 'techno', 'not english', 'beat']
['rock']
['vocals', 'foreign', 'female', 'indian', 'woman', 'rock', 'singing', 'not opera']
[]
['funky', 'female']
['guitar', 'loud', 'fast', 'no vocals', 'blues', 'rock']
['jazz', 'guitar', 'rock']
['female singing', 'female', 'bass', 'vocal', 'woman', 'rock', 'singing', 'women']
['female']
['rock']
['harpsichord', 'classical', 'guitar', 'quiet', 'strings', 'acoustic']
[]
['vocals', 'guitar', 'folk', 'man']
['vocals']
[]
[]
['slow']
['hard rock', 'heavy', 'loud', 'male singer', 'hard', 'male', 'rock']
['rock']
['hard rock', 'male vocal', 'vocals', 'guitar', 'loud', 'fast', 'electric guitar', 'no vocals', 'heavy metal', 'hard', 'male vocals', 'punk', 'male', 'rock', 'metal']
['heavy metal', 'rock']
['heavy', 'guitar', 'loud', 'fast', 'heavy metal', 'rock', 'metal']
['choral', 'choir']
[]
['singer', 'strings', 'choral', 'opera', 'operatic', 'man', 'singing']
['classical', 'opera', 'violin']
[]
['opera', 'female vocals']
['opera', 'female vocal', 'vocal']
['female']
['vocal', 'singing']
['singer', 'female', 'jazz', 'voice', 'pop', 'female vocal', 'woman']
['vocals', 'female', 'loud', 'pop', 'female vocal', 'rock', 'female vocals']
[]
[]
['beats', 'synth', 'electronic', 'weird', 'techno']
['bass', 'electronic', 'no vocals', 'techno', 'beat']
['beats', 'drums', 'electro']
['drums', 'techno']
['synth', 'bass', 'drums', 'electro', 'pop', 'techno', 'beat']
[]
['male vocal', 'rock']
['rock']
['hard rock', 'man', 'rock']
['guitar']
['singer', 'male vocal', 'vocals', 'soft rock', 'guitar', 'folk', 'voice', 'male voice', 'acoustic', 'male singer', 'man singing', 'country', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'singing']
[]
['rock']
['country', 'man', 'slow']
['classical', 'guitar', 'strings', 'string', 'violin', 'slow', 'indian']
[]
[]
['fast', 'chant', 'vocal', 'indian', 'india']
[]
['foreign', 'guitar', 'middle eastern', 'drums', 'no vocal', 'eastern', 'indian']
[]
['spanish', 'singing']
[]
[]
['classical', 'violins', 'strings', 'classic', 'string', 'violin', 'slow']
['classical', 'violins', 'strings', 'string', 'organ', 'violin', 'orchestra', 'slow', 'baroque']
['classical']
['classical', 'strings', 'violin']
['guitar', 'solo', 'acoustic', 'soft']
[]
['vocals', 'guitar', 'voice', 'pop']
['pop']
['guitar', 'pop', 'male vocals', 'vocal']
['no voice', 'guitar', 'ambient', 'middle eastern', 'drums', 'no guitar', 'eastern', 'indian']
['guitar', 'no vocals', 'electronica', 'celtic', 'indian']
[]
['drum', 'drums', 'techno', 'beat', 'upbeat']
['beats', 'strings', 'drums', 'no vocal', 'no vocals', 'eastern', 'indian', 'beat']
['guitar', 'drums', 'indian']
[]
['solo', 'wind', 'eastern', 'flute']
['flute']
['no piano', 'no vocal', 'flute']
['drum', 'flute']
['silence', 'classical', 'violin']
['classical', 'strings', 'violin', 'slow']
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'classic']
['classical', 'violin']
['harpsichord', 'classical', 'strings', 'no vocal', 'violin']
['harpsichord', 'no piano', 'classical', 'quiet', 'violins', 'strings', 'harpsicord', 'classic', 'string', 'violin', 'slow', 'soft']
[]
['harpsichord', 'violin']
['female']
['singer', 'female', 'guitar', 'female voice', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'soft']
['female', 'female vocal', 'woman singing', 'singing', 'female vocals']
['female singing', 'classical', 'female', 'guitar', 'female vocal', 'singing']
['pop', 'female vocal', 'singing', 'female vocals']
['female', 'guitar', 'vocal', 'woman', 'singing', 'soft']
['vocals', 'female', 'female vocal', 'singing', 'female vocals']
[]
['solo', 'piano']
['piano']
['piano', 'upbeat']
['classical', 'piano']
['fast', 'piano']
[]
['female', 'synth', 'no guitar']
['synth', 'woman']
[]
['classical', 'violins', 'violin']
['harpsichord', 'classical', 'piano', 'baroque']
['harpsichord', 'classical']
['classical', 'strings', 'violin', 'cello']
[]
['classical', 'fast']
['classical', 'strings', 'fast', 'violin', 'cello']
[]
['classical', 'guitar']
['guitar']
['classical', 'guitar', 'strings', 'classical guitar', 'slow', 'baroque']
['classical', 'guitar', 'solo', 'acoustic', 'classical guitar', 'lute', 'spanish', 'slow']
['classical', 'guitar', 'spanish']
['guitar']
['vocals', 'guitar', 'no vocal', 'fast', 'male', 'singing']
['rock']
['rock']
['hard', 'rock']
['classical', 'guitar', 'quiet', 'strings', 'lute', 'slow', 'soft']
['harpsichord', 'classical', 'guitar', 'no singing', 'piano']
['guitar', 'harp', 'soft']
['classical', 'guitar', 'solo', 'strings', 'string', 'harp', 'piano', 'slow', 'soft', 'baroque']
['guitar']
['guitar']
['strings', 'violin', 'no vocals', 'piano']
['classical', 'strings', 'classic', 'string', 'fast', 'violin', 'irish', 'piano', 'fiddle']
[]
['classical']
['violin', 'celtic', 'fiddle']
['folk', 'violin', 'irish', 'piano', 'cello', 'fiddle']
['no voice', 'classical', 'violin', 'irish', 'piano']
['folk', 'irish']
['strings', 'fast', 'violin']
['no voice', 'guitar', 'bass', 'no vocal']
['ambient', 'synth', 'keyboard', 'drums', 'electronic', 'fast', 'electro', 'electronica', 'techno']
['synth', 'techno']
['synth', 'drums', 'electronic', 'techno', 'beat']
['electronic', 'fast', 'techno', 'beat']
['drums', 'electronic', 'fast beat', 'piano', 'techno', 'beat']
['synth', 'drums', 'electronic', 'techno']
['classical', 'quiet', 'ambient', 'strings', 'harp', 'slow']
['chimes', 'strings']
['ambient']
['male vocal', 'bells', 'choir']
[]
['ambient', 'electronic', 'trance']
['chimes', 'wind', 'ambient', 'new age', 'synth']
['classical', 'ambient']
['spacey', 'ambient', 'new age', 'synth', 'electronic']
['beats', 'soft rock', 'guitar', 'drums', 'rock']
['male vocal', 'vocals', 'trumpet', 'voice', 'loud', 'drums', 'man singing', 'country', 'man', 'pop', 'sax', 'male', 'vocal', 'rock', 'singing']
['harpsichord', 'classical']
[]
[]
['opera', 'woman']
['opera']
['funky', 'percussion', 'drums', 'fast', 'piano', 'beat']
['trumpet', 'man', 'singing']
['spanish']
['horns', 'jazz', 'guitar', 'male voice', 'piano', 'vocal', 'upbeat']
[]
['spacey', 'electric', 'ambient', 'synth', 'weird', 'dark']
['ambient', 'no guitar']
['ambient', 'strange']
['ambient', 'new age', 'electronic', 'no vocal', 'no vocals']
['ambient', 'weird', 'scary']
['ambient']
['eerie', 'ambient', 'weird', 'water']
['quiet', 'ambient', 'synth', 'bells', 'slow']
[]
['vocals', 'foreign', 'female', 'ambient', 'new age', 'synth', 'voice', 'electronic', 'fast', 'electro', 'trance', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals', 'techno', 'upbeat']
['vocals', 'female', 'synth', 'electronic', 'woman', 'techno']
['electronic', 'no vocal', 'beat']
['no guitar', 'vocal', 'woman', 'techno']
['classical', 'solo', 'piano', 'slow']
['classical', 'solo', 'piano']
['classical', 'solo', 'piano', 'piano solo']
['classical', 'solo', 'piano']
['classical', 'piano']
['classical', 'solo', 'classic', 'piano', 'piano solo', 'soft']
['classical', 'solo', 'classic', 'no vocals', 'piano']
['piano']
['solo', 'piano']
['piano']
['fast', 'piano']
['hard rock', 'vocals', 'loud', 'rock', 'metal']
['heavy', 'loud', 'drums', 'male', 'rock', 'metal']
['hard rock', 'rock']
['fast', 'heavy metal', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'fast', 'rock']
['quiet', 'no beat', 'ambient', 'chanting', 'chant', 'soft']
[]
[]
['ambient', 'electronic', 'fast', 'irish', 'indian']
['loud', 'electronic', 'fast', 'violin', 'modern', 'celtic']
['synth']
['ambient', 'electronic', 'techno']
['electric', 'strings', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'different', 'techno', 'clapping']
['no piano', 'classical', 'strings', 'violin']
['female opera', 'opera', 'female singer']
['electronic']
['vocals', 'female', 'female voice', 'modern', 'pop', 'piano', 'vocal', 'rock', 'singing']
['female', 'female voice', 'piano']
['piano', 'jazzy']
['guitar', 'drums', 'rock']
['rock', 'metal']
[]
['male', 'rock']
['rock']
[]
['vocals', 'vocal', 'rock']
['male vocal', 'rock']
['guitar', 'solo', 'electric guitar', 'rock']
['guitar', 'no vocals', 'rock']
['male vocal', 'vocals', 'heavy', 'guitar', 'drums', 'no vocal', 'electric guitar', 'rock', 'guitars', 'metal']
['vocals', 'guitar', 'male voice', 'drums', 'male', 'vocal', 'rock', 'metal']
[]
['singer', 'rock']
[]
['classical', 'strings', 'flute']
[]
[]
['classical', 'violin', 'slow', 'flute']
['classical', 'violins', 'violin', 'flute']
['no piano', 'classical', 'violins', 'strings', 'violin', 'flute']
['chorus', 'choral', 'male vocals', 'choir']
['choral', 'opera', 'choir']
['opera', 'voices']
[]
[]
['bongos', 'sitar', 'drum', 'drums', 'no flute', 'eastern', 'indian']
['sitar', 'indian']
['sitar']
['sitar', 'eastern', 'indian', 'india']
['sitar', 'eastern', 'indian', 'india']
['sitar', 'guitar', 'indian']
['sitar', 'beats', 'guitar', 'drums', 'tribal', 'eastern', 'slow', 'indian', 'india']
[]
['sitar', 'indian']
[]
['sitar', 'strings', 'eastern', 'indian']
['sitar', 'eastern', 'indian', 'oriental']
['sitar', 'indian']
['sitar', 'guitar', 'eastern', 'indian']
['sitar', 'guitar', 'strings', 'eastern', 'indian']
['folk', 'drums', 'fast', 'indian']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'indian']
['sitar', 'guitar', 'middle eastern', 'fast', 'eastern', 'indian', 'india']
['sitar', 'indian']
['sitar', 'fast', 'eastern', 'indian']
['sitar', 'eastern', 'indian']
['percussion', 'drum', 'drums', 'tribal', 'not opera']
['drum', 'drums', 'fast', 'tribal', 'slow']
[]
['rock']
[]
['techno', 'noise']
[]
['weird', 'fast', 'noise']
['chimes', 'ambient', 'drum', 'echo', 'slow']
[]
[]
[]
['ambient', 'synth', 'airy', 'electronic', 'slow']
['no beat', 'ambient', 'drum', 'electronic', 'low', 'slow', 'different']
['ambient', 'synth']
['spacey', 'ambient', 'synth', 'space', 'strings', 'electronic', 'electronica', 'slow', 'techno']
['no piano', 'synth', 'fast']
['ambient']
[]
[]
[]
[]
['classical', 'ambient', 'strings', 'modern', 'pop']
['spacey', 'synth', 'no vocal', 'fast', 'modern', 'techno']
['guitar', 'new age', 'synth', 'instrumental']
[]
['ambient', 'synth']
['guitar', 'ambient', 'piano']
['no piano', 'no voices', 'ambient', 'new age', 'synth', 'strings', 'keyboard', 'electronic']
['new age', 'instrumental', 'slow', 'flute']
[]
['no beat', 'ambient', 'new age', 'weird', 'synthesizer', 'slow']
['synth']
['quiet', 'ambient', 'new age', 'no vocal', 'no vocals']
['flute']
['no piano', 'quiet', 'ambient', 'new age', 'bass', 'bells', 'light', 'slow', 'beat']
['fast', 'dance', 'techno']
['electronic', 'fast', 'electro', 'dance', 'techno', 'beat']
['techno']
['fast', 'dance', 'techno', 'beat']
['techno']
['electronic', 'fast', 'trance', 'techno']
['synth', 'electronic', 'techno', 'beat']
['synth', 'drums', 'electronic', 'fast', 'techno', 'beat']
['classical', 'guitar', 'strings']
[]
['guitar']
['guitar']
[]
['guitar', 'no singing', 'slow']
['guitar']
['guitar', 'spanish']
['classical', 'guitar', 'classic', 'spanish']
['ambient', 'flute']
['female vocal', 'woman', 'singing']
['female', 'pop', 'slow', 'woman']
['female vocals']
['female', 'female voice', 'girl', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals', 'techno', 'beat']
['female voice', 'electronic', 'techno']
['pop']
['harpsichord', 'classical', 'guitar', 'solo', 'piano']
['harpsichord', 'harpsicord']
[]
['harpsichord', 'no piano', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'lol', 'harp', 'soft']
['classical', 'lute']
['harpsichord', 'piano']
['harpsichord', 'classical', 'solo', 'strings', 'fast']
['rock', 'metal']
['guitar', 'rock', 'metal']
['hard rock', 'heavy', 'loud', 'heavy metal', 'male vocals', 'punk', 'vocal', 'rock']
['no vocal']
['classical', 'guitar', 'strings', 'string', 'harp', 'light', 'soft']
['drums']
[]
['quiet', 'ambient', 'slow', 'soft']
[]
[]
[]
['ambient', 'space', 'drums', 'dark', 'scary']
['singer', 'vocals', 'female', 'rock', 'singing', 'female vocals']
['vocals', 'female', 'guitar', 'drums', 'female vocal', 'rock']
['vocals', 'guitar', 'rock', 'singing']
['sitar', 'guitar', 'strings', 'lol', 'slow']
['no voice']
['sitar', 'guitar', 'no vocal']
['guitar']
['harpsichord', 'classical', 'guitar', 'no vocal', 'no vocals', 'baroque']
['classical', 'guitar']
['synth', 'electronic', 'fast', 'dance', 'techno', 'beat']
['fast', 'rock', 'dance', 'techno', 'beat']
['electronic', 'fast', 'dance', 'techno', 'house']
['woman']
['female singing', 'vocals', 'female', 'synth', 'girl', 'electronic', 'no flute', 'pop', 'female vocal', 'vocal', 'woman', 'dance', 'singing', 'female vocals', 'techno', 'female singer']
['no vocal', 'fast', 'dance', 'techno', 'beat', 'upbeat']
['fast', 'techno']
[]
['girl', 'fast', 'disco', 'dance', 'techno']
['female', 'electric', 'female voice', 'fast', 'vocal', 'woman', 'dance', 'techno']
['female', 'fast', 'electronica', 'trance', 'vocal', 'dance', 'techno']
['beats', 'electronic', 'fast', 'trance', 'fast beat', 'dance', 'techno', 'house', 'beat', 'upbeat']
['singing', 'techno']
['guitar', 'strings']
['classical', 'guitar']
['classical', 'guitar', 'solo', 'strings']
[]
[]
['harpsichord', 'guitar', 'piano', 'slow']
['classical']
['spacey', 'ambient', 'new age', 'synth', 'loud', 'no vocal', 'weird', 'dark', 'no vocals', 'trance', 'slow', 'techno', 'soft', 'noise']
['ambient', 'synth', 'space', 'drums', 'beat']
['no voice', 'beats', 'drum', 'drums', 'dark', 'beat']
['beats', 'drums']
['electronic']
[]
[]
['no voices', 'synth', 'electronic', 'electro', 'dance', 'beat']
['modern', 'techno']
[]
['no voice', 'vocals', 'beats', 'ambient', 'new age', 'drum', 'bass', 'drums', 'electronic', 'trance', 'slow', 'techno', 'beat']
['electronic']
['ambient']
[]
[]
['beats', 'ambient', 'pop']
['electronic', 'vocal']
['slow']
['voice', 'pop']
['ambient', 'new age', 'synth', 'electronic', 'no vocals', 'bells']
['ambient', 'strings', 'piano']
['strings', 'no vocal']
['no voice', 'ambient', 'eastern', 'no drums']
['new age', 'synth', 'electronic', 'no vocals', 'instrumental']
['quiet', 'bells', 'soft']
['no voice', 'classical', 'quiet', 'ambient', 'synth', 'piano', 'slow', 'soft']
['classical', 'quiet', 'no beat', 'ambient', 'synth', 'electronic', 'no vocal', 'weird', 'electro', 'low', 'mellow', 'slow', 'calm', 'soft']
['quiet', 'ambient', 'electronic', 'no vocals', 'modern', 'slow', 'soft']
['no vocal', 'sad', 'slow', 'soft']
[]
['men', 'chant']
['vocals', 'tribal', 'spanish']
['classical', 'guitar', 'strings', 'string', 'harp', 'slow', 'oriental']
['classical', 'solo', 'strings', 'harp', 'piano', 'soft']
['classical', 'solo', 'strings', 'harp', 'slow', 'soft']
['harpsichord', 'instrumental', 'harp']
[]
['no piano', 'guitar', 'string', 'harp', 'piano', 'oriental']
['harp']
['classical', 'harp', 'piano', 'slow']
['strings', 'harp', 'no drums']
['classical', 'guitar', 'string', 'no vocal', 'no vocals', 'lol', 'instrumental', 'harp', 'piano']
['harp', 'piano']
['sitar', 'classical', 'strings', 'harp']
['harp', 'piano']
[]
['slow', 'flute']
['guitar', 'quiet', 'wind', 'ambient', 'new age', 'no vocal', 'mellow', 'slow', 'calm', 'flute']
['slow', 'flute']
['woodwind', 'quiet', 'slow', 'flute', 'soft']
['classical', 'instrumental', 'slow', 'flute', 'soft']
['slow', 'flute', 'soft']
['guitar', 'ambient', 'strings', 'slow', 'flute', 'soft']
['slow', 'flute', 'soft']
[]
['no vocals', 'piano']
[]
['classical', 'strings', 'no vocal', 'violin', 'no vocals', 'instrumental', 'cello']
['classical', 'strings', 'organ', 'violin']
['no piano', 'classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'quiet', 'violins', 'strings', 'not rock', 'violin', 'no vocals', 'slow']
['classical', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['classical', 'violins', 'strings']
['classical']
['classical', 'violins', 'strings', 'violin']
['classical', 'strings']
['classical', 'strings', 'violin', 'slow']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['guitar', 'folk', 'drum', 'strings', 'acoustic', 'drums', 'acoustic guitar', 'slow', 'vocal']
['male vocal', 'man singing', 'country', 'male']
['male vocal', 'country', 'pop', 'male vocals']
['guitar', 'acoustic', 'country', 'pop', 'slow']
['country', 'vocal']
['male vocal', 'guitar', 'acoustic', 'male singer', 'man singing', 'man', 'vocal']
['male vocal', 'male voice', 'male singer', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['soft rock', 'guitar', 'male voice', 'drums', 'pop', 'male', 'vocal']
['singer', 'male vocal', 'guitar', 'solo', 'voice', 'male voice', 'male singer', 'man', 'female vocal', 'piano', 'male', 'vocal', 'woman', 'rock', 'singing', 'soft', 'female singer']
['male vocal', 'vocals', 'guitar', 'male voice', 'loud', 'man', 'pop', 'male', 'vocal', 'rock']
['jazz', 'drums', 'no vocal', 'no vocals', 'piano', 'jazzy', 'soft']
['no voice', 'jazz', 'guitar', 'no vocal', 'no vocals', 'piano', 'slow', 'jazzy', 'calm']
['jazz', 'guitar', 'piano', 'slow']
['jazz', 'guitar', 'piano', 'slow', 'jazzy']
['jazz', 'guitar', 'piano', 'slow', 'jazzy']
['jazz', 'guitar', 'jazzy']
['jazz']
['jazz', 'piano']
['jazz', 'piano', 'jazzy']
['jazz', 'quiet', 'new age', 'no vocal', 'instrumental', 'piano', 'jazzy', 'soft']
['sitar', 'silence', 'quiet']
['no voice', 'no voices', 'guitar', 'no vocal']
['guitar', 'slow']
[]
['plucking', 'sitar', 'guitar', 'quiet', 'solo', 'slow', 'indian']
['sitar', 'guitar', 'solo', 'new age', 'strings', 'slow', 'indian', 'oriental']
['sitar', 'guitar']
[]
['spacey', 'slow', 'flute', 'oriental']
['sitar', 'guitar', 'wind', 'slow', 'flute']
['sitar', 'guitar', 'strings', 'no vocal', 'slow', 'indian', 'flute']
[]
['sitar', 'guitar', 'instrumental', 'indian']
['no voice', 'ambient', 'synth', 'strings', 'electronic', 'no vocal', 'violin', 'bells', 'slow', 'techno']
['female', 'rock']
['singer', 'female', 'indian', 'woman']
['techno']
['techno']
[]
['electronic', 'weird', 'techno']
['synth', 'bass', 'drums', 'electronic', 'weird', 'electro', 'electronica', 'strange', 'slow', 'techno']
[]
['vocals', 'beats', 'loud', 'electronic', 'fast', 'no vocals', 'pop', 'dance', 'techno', 'house']
['clapping']
['guitar', 'ambient', 'orchestra', 'slow', 'clapping']
['classical', 'guitar', 'strings', 'violin', 'instrumental', 'slow', 'cello', 'clapping']
[]
['violins', 'strings', 'violin', 'instrumental', 'slow']
['electronic']
['electronic', 'fast', 'electro', 'techno']
[]
['synth', 'electronic', 'fast', 'no vocals', 'trance', 'techno', 'upbeat']
['electric', 'synth', 'electronic', 'techno', 'beat']
[]
[]
['electronic', 'fast', 'electro', 'techno']
['voices', 'techno']
['voice', 'electronic', 'talking', 'weird', 'man', 'techno']
[]
['quiet', 'techno']
['synth', 'bass']
[]
[]
['classical', 'ambient', 'classic', 'electronic', 'slow', 'calm', 'soft']
['ambient', 'new age', 'strings', 'no vocal', 'no vocals', 'instrumental', 'chant', 'orchestra']
['no voice', 'ambient', 'synth', 'horn']
['synth', 'loud', 'drums', 'electronic', 'sax', 'techno']
['pop', 'female vocal']
[]
['pop', 'vocal', 'woman', 'female vocals']
['female', 'female voice', 'loud', 'pop', 'vocal', 'woman', 'woman singing', 'singing']
[]
['loud', 'fast']
['ambient', 'synth', 'trumpet', 'birds', 'strings', 'loud', 'drums', 'weird', 'electro', 'noise']
['beats', 'drum', 'drums', 'fast']
['beats', 'loud', 'drums', 'fast', 'fast beat', 'dance', 'techno', 'house', 'beat']
['drums', 'fast', 'fast beat', 'house', 'beat']
['drums', 'no vocal', 'fast', 'techno']
['drums', 'fast', 'techno', 'beat']
['drums', 'no guitar', 'fast', 'techno', 'beat']
['drums', 'fast', 'techno', 'beat']
['bass', 'drums', 'fast', 'tribal', 'jungle', 'techno', 'beat']
['sitar']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'indian']
['sitar', 'loud', 'indian', 'flute']
['world', 'drums', 'eastern', 'indian', 'flute']
['indian']
[]
['drum', 'drums']
['jazz', 'drum', 'drums', 'jazzy']
['drums', 'jazzy']
[]
['electric', 'ambient', 'synth', 'electronic', 'electro', 'electronica', 'trance', 'techno', 'soft']
['beats', 'synth', 'electronic', 'electronica', 'techno']
['electronic', 'techno']
['quick']
['no voice', 'electronic', 'no vocal', 'electro', 'techno', 'beat']
['harpsichord', 'classical', 'organ', 'piano']
['harpsichord', 'piano']
['harpsichord']
['no voice', 'harpsichord', 'classical', 'piano']
['harpsichord', 'strings', 'harpsicord', 'no flute', 'baroque']
['techno']
['ambient', 'synth', 'drums', 'electronic', 'fast', 'electro', 'synthesizer', 'slow', 'techno']
[]
['new age', 'synth', 'electronic', 'synthesizer', 'slow']
['classical', 'strings', 'cello']
['classical', 'strings', 'classic', 'violin', 'old', 'cello']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'orchestra', 'baroque']
[]
['no voice', 'classical', 'no singing', 'strings', 'opera', 'violin']
['classical', 'flute']
['violin', 'flute']
['classical', 'fast', 'piano']
['piano']
['classical', 'no vocal', 'piano']
['classical', 'piano']
['classical', 'piano']
['classical', 'fast', 'piano', 'piano solo']
['classical', 'piano']
['classical', 'classic', 'fast', 'piano']
['classical', 'guitar', 'solo', 'strings']
['classical', 'guitar', 'strings', 'classic', 'classical guitar', 'piano']
['piano']
['classical', 'piano']
[]
['classical', 'solo', 'no vocal', 'fast', 'piano']
['classical', 'fast', 'piano']
['duet', 'classical', 'solo', 'fast', 'piano', 'piano solo']
['classical', 'fast', 'piano']
['piano']
['fast', 'no vocals', 'piano']
['fast', 'piano']
['classical', 'piano']
['classical', 'solo', 'piano']
['classical', 'piano']
['classical', 'no vocals', 'piano']
['classical', 'no vocals', 'piano']
['classical', 'piano']
[]
['classical', 'solo', 'piano']
['piano']
['classical', 'solo', 'violins', 'strings', 'fast', 'violin', 'no vocals', 'cello']
['classical', 'strings', 'fast', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'viola', 'cello']
['classical', 'strings', 'violin']
['classical', 'violin']
['strings']
['no voice', 'classical', 'violins', 'no singing', 'strings', 'classic', 'no vocal', 'violin', 'no vocals']
['violins', 'strings', 'classic', 'no vocal']
['classical']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['classical', 'string', 'no vocal', 'violin', 'cello']
['classical', 'instrumental']
['drums', 'beat']
['man']
[]
['men', 'guitar', 'rock']
['guitar', 'slow', 'soft']
['classical', 'guitar', 'no vocal', 'no vocals', 'slow']
['guitar', 'no beat', 'piano', 'slow']
['classical', 'guitar', 'banjo', 'string', 'slow']
['guitar', 'piano']
['drums', 'no vocal', 'hard', 'rock', 'metal']
[]
[]
['guitar', 'electric', 'loud', 'drums', 'fast', 'electric guitar', 'hard', 'rock', 'metal']
['sitar', 'strings', 'piano']
['plucking', 'guitar', 'not rock']
['classical', 'guitar', 'strings', 'acoustic', 'electronic', 'instrumental', 'bells', 'harp', 'piano', 'slow', 'oriental']
['harp', 'piano']
['guitar', 'strings', 'no vocals', 'piano']
['piano']
['guitar', 'strings', 'no vocal', 'fast']
['guitar', 'fast']
['guitar', 'fast', 'fast beat', 'piano']
['no piano', 'guitar', 'quiet']
['classical', 'medieval', 'no vocal', 'no vocals', 'slow']
[]
['no piano', 'guitar']
['new age', 'strings', 'vocal']
['male voice']
['guitar', 'country', 'slow', 'blues']
['guitar']
['male vocal', 'vocals', 'guitar', 'male voice', 'country', 'man', 'male', 'blues']
['guitar', 'solo', 'electric guitar', 'piano', 'slow']
['sitar', 'jazz', 'drums', 'indian', 'jazzy', 'beat']
['indian']
['sitar', 'guitar', 'weird', 'modern', 'eastern', 'indian']
['sitar', 'no vocal', 'no vocals', 'slow', 'indian']
[]
['sitar', 'drums', 'no vocal', 'no vocals', 'indian']
['guitar', 'acoustic guitar']
['guitar', 'man', 'slow', 'male']
['male vocal', 'guitar', 'pop', 'soft']
['male vocal', 'guitar', 'voice', 'acoustic guitar', 'man singing', 'man', 'pop', 'male vocals', 'male']
['male vocal', 'guitar', 'acoustic', 'man', 'male']
['classical', 'solo', 'violin', 'viola', 'cello']
['classical', 'violin', 'cello']
['cello']
['classical', 'no vocal', 'violin', 'cello']
['classical', 'cello']
['no piano', 'classical', 'solo', 'strings', 'string', 'violin', 'slow', 'cello']
['classical', 'solo', 'violin', 'cello']
['harpsichord', 'classical', 'strings', 'harpsicord', 'harp', 'piano', 'slow', 'not opera']
[]
[]
['no voice', 'harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'no vocal', 'harp', 'piano', 'slow']
['harpsichord']
['harpsichord', 'solo', 'harpsicord', 'classic', 'piano', 'slow']
['baroque']
['harpsichord', 'classical']
['harpsichord', 'classical', 'guitar', 'solo', 'new age', 'irish', 'harp']
['dance', 'singing']
['female', 'female voice', 'electronic', 'trance', 'pop', 'female vocal', 'vocal', 'woman', 'dance', 'female vocals', 'techno']
['electronic', 'female vocal', 'piano']
['new age', 'synth', 'electronic', 'female vocal', 'piano', 'dance', 'female vocals', 'techno']
['no piano', 'guitar', 'synth', 'electronic', 'vocal', 'singing']
[]
['piano', 'sad', 'slow']
['solo', 'piano']
['solo', 'piano']
['solo', 'piano']
['no vocal', 'piano', 'piano solo']
['drums', 'beat']
['sitar', 'indian']
['sitar', 'indian']
[]
['no voice', 'sitar', 'beats', 'guitar', 'string', 'eastern', 'indian', 'oriental']
['beats', 'female voice', 'loud', 'drums', 'fast', 'trance', 'techno']
['ambient', 'female vocal']
['drums', 'techno']
['female', 'electronic', 'woman', 'beat']
['ambient', 'voice', 'bass', 'loud', 'drums', 'electronic', 'fast', 'electro', 'rock', 'dance', 'techno', 'beat']
['female', 'electronic', 'female vocal', 'techno']
['drums', 'indian']
['middle eastern', 'drum', 'drums', 'tribal', 'eastern', 'indian']
['middle eastern', 'drums', 'indian']
['guitar']
['dance', 'techno']
['techno']
[]
['electronic', 'fast', 'dance', 'techno', 'upbeat']
[]
['synth', 'electronic', 'techno']
['fast', 'techno']
['fast', 'electro', 'techno']
['electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
[]
['electronic', 'electronica', 'dance', 'different', 'techno']
['beats', 'funky', 'electronic', 'fast', 'dance', 'techno', 'beat']
[]
['pop']
[]
['beats', 'drum', 'drums', 'fast', 'dance', 'techno', 'house', 'beat']
['dance', 'techno']
[]
['ambient', 'drums', 'electro']
['drums', 'fast']
['synth', 'drums', 'fast', 'instrumental', 'piano']
[]
['slow', 'beat']
['synth']
['beats', 'funky', 'synth', 'drum', 'bass', 'drums', 'electronic', 'not rock', 'electronica', 'techno', 'beat', 'rap', 'hip hop']
['no voice', 'no voices', 'bass', 'electronic', 'beat']
[]
['ambient', 'no singing', 'bass', 'electronic', 'weird', 'echo', 'techno']
['synth', 'electronic', 'beat']
[]
['ambient', 'weird']
['synth', 'techno']
['drums', 'electronic', 'electronica', 'trance', 'techno']
['no voice', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'dance', 'techno', 'house', 'beat']
[]
[]
['electronic', 'reggae', 'techno', 'beat']
['voice', 'male voice', 'electronic', 'reggae', 'techno', 'beat']
['horns', 'jazz', 'drums', 'reggae']
['funky', 'weird', 'fast', 'man', 'techno']
[]
['choir']
['choral', 'slow', 'singing', 'choir']
[]
['vocals', 'choral', 'opera']
['choral', 'opera', 'singing', 'choir']
[]
['vocals', 'guitar', 'quiet', 'male voice', 'man', 'piano', 'slow', 'male', 'vocal', 'singing']
[]
[]
['male vocal', 'male voice', 'male vocals', 'vocal']
['female', 'piano', 'slow']
['quiet', 'electric', 'synth', 'electronic', 'no vocal']
['beats', 'synth', 'electronic', 'electro', 'dance', 'techno']
['electronic', 'techno']
[]
['beats', 'electronic', 'techno', 'beat']
['jazz', 'bass', 'male voice', 'talking', 'jazzy']
[]
['male vocal', 'jazz', 'talking', 'man', 'male', 'flute', 'rap']
['jazz', 'male voice', 'sax', 'male', 'rap']
['jazz', 'male voice', 'man', 'male', 'rap']
[]
['choir']
['piano']
['piano']
['modern']
['piano']
['female', 'singing']
['female singing', 'female', 'female voice', 'opera', 'vocal', 'woman', 'singing', 'not english']
['female', 'opera', 'female vocal', 'celtic', 'slow', 'vocal', 'woman', 'flute']
['female', 'solo', 'female voice', 'voice', 'female vocal', 'vocal']
['foreign', 'female']
['vocals', 'female', 'solo', 'voice', 'irish', 'female vocal', 'vocal', 'woman', 'flute', 'female singer']
['irish', 'flute']
['vocals', 'no guitar', 'opera', 'vocal', 'woman', 'singing']
['female', 'female voice', 'celtic', 'slow', 'singing', 'female vocals', 'not english']
['female', 'irish', 'female vocal', 'celtic', 'woman', 'woman singing']
[]
['synth', 'electronic', 'no vocals']
['new age', 'synth', 'strings', 'electronic', 'modern']
['synth', 'no guitar', 'techno']
[]
[]
['world', 'middle eastern', 'fast', 'eastern', 'indian']
['sitar', 'eastern', 'indian', 'oriental']
[]
['indian']
['harp', 'piano', 'slow']
['male vocal', 'guitar', 'folk', 'voice', 'male voice', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing', 'soft']
['male vocal', 'male vocals', 'slow', 'male', 'vocal', 'soft']
['male vocal', 'singing']
['instrumental']
['classical', 'guitar', 'quiet', 'piano']
[]
['eerie', 'ambient', 'synth', 'electronic', 'weird', 'no vocals', 'instrumental']
['new age']
['synth', 'electronic', 'slow', 'techno']
[]
['electronic', 'organ']
[]
[]
['organ']
['male vocal', 'man singing', 'rock']
['loud', 'male vocals', 'male', 'rock']
['electronic', 'strange', 'techno']
['electronic', 'techno', 'noise']
[]
['beats', 'loud', 'drums', 'fast', 'electro', 'hard', 'rock', 'techno']
['loud', 'fast', 'techno', 'noise']
['no vocal', 'techno']
[]
['no voice', 'beats', 'guitar', 'electronic', 'fast', 'strange', 'rock', 'techno']
['no singing', 'electronic']
[]
['guitar', 'drum', 'pop', 'slow']
['guitar', 'slow', 'rock', 'beat']
['male vocal', 'male singer', 'man', 'pop', 'piano', 'sax', 'vocal', 'rock']
['voice', 'fast', 'male singer', 'man', 'pop', 'sax', 'male', 'rock', 'upbeat']
['guitar', 'electric', 'male voice', 'no vocal', 'country', 'no vocals', 'slow']
['male vocal', 'vocals', 'guitar', 'drums', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock']
['man', 'pop']
['vocals', 'guitar', 'bass', 'drums', 'electric guitar', 'no vocals', 'male vocals', 'rock', 'beat']
['beats', 'classical', 'jazz', 'guitar', 'strings', 'bass', 'drums', 'spanish', 'indian', 'jazzy']
['guitar', 'ambient', 'drums', 'fast']
['plucking', 'guitar', 'strings', 'bass', 'electronic', 'techno', 'flute']
['female', 'talking']
['female', 'female voice', 'talking', 'vocal', 'woman']
['ambient', 'voice', 'vocal', 'woman']
[]
['female', 'talking', 'modern', 'woman', 'female singer']
['female vocal']
['no voice', 'drum', 'drums', 'electronic', 'fast', 'jazzy', 'flute']
['organ']
[]
['classical', 'strings', 'violin', 'flute', 'baroque']
['classical']
['drum', 'drums', 'cello']
['classical', 'violins', 'strings', 'classic', 'violin', 'cello']
[]
['violin', 'no vocals']
['guitar', 'rock']
['rock']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'rock', 'metal']
['metal']
['jazz']
['jazz', 'sax']
['jazz', 'no vocal']
['opera', 'vocal']
['irish']
[]
['sitar', 'guitar', 'banjo', 'middle eastern', 'strings', 'acoustic', 'arabic', 'spanish', 'indian']
['world', 'drums', 'eastern', 'indian']
['drum', 'drums', 'no vocals', 'arabic', 'indian', 'beat']
['classical', 'guitar', 'quiet', 'strings', 'slow']
[]
[]
['guitar', 'harp', 'slow']
['no piano', 'guitar', 'string', 'piano', 'slow']
['slow']
['classical', 'strings', 'slow']
['classical', 'strings', 'violin', 'harp']
['sitar', 'classical', 'violin', 'no vocals']
['guitar', 'oriental']
['strings', 'violin', 'instrumental', 'slow']
['strings', 'harp']
[]
['no vocals']
['strings']
['guitar', 'strings', 'violin', 'piano']
['no vocal', 'no vocals']
[]
['strings', 'loud', 'fast']
['ambient', 'synth', 'electronic', 'no guitar', 'no vocal', 'slow', 'beat']
['woman']
['female', 'slow', 'soft']
['modern', 'woman singing']
[]
['ambient', 'new age', 'synth', 'electronic', 'electro', 'no vocals', 'no flute', 'slow']
['female singing', 'female', 'woman']
['pop', 'female vocals', 'techno']
['female', 'female vocal', 'vocal', 'woman', 'techno']
['female', 'electronic', 'female vocal', 'woman']
['female', 'loud', 'electronic', 'no violin', 'fast', 'pop', 'female vocal', 'vocal', 'dance', 'female vocals', 'techno']
[]
['harpsichord', 'classical', 'solo', 'harpsicord', 'fast', 'no vocals', 'baroque']
['harpsichord', 'classical', 'fast', 'piano', 'baroque']
['classical', 'solo', 'piano']
['piano', 'slow']
['classical', 'quiet', 'piano', 'no singer']
['classical', 'quiet', 'solo', 'classic', 'piano', 'soft']
['piano']
['quiet', 'no vocal', 'no vocals', 'piano', 'slow', 'soft']
['quiet', 'solo', 'piano', 'slow']
['classical', 'piano']
['beats', 'guitar', 'drum', 'drums', 'no violin', 'rock', 'beat']
['guitar', 'loud', 'male vocals', 'male', 'vocal', 'rock']
[]
['pop', 'rock']
['loud', 'man singing', 'man', 'male', 'rock']
['classical', 'solo', 'violins', 'strings', 'classic', 'fast', 'violin']
['classical', 'violins', 'strings', 'fast', 'violin']
['classical', 'strings', 'violin']
['classical', 'strings']
['classical', 'strings', 'fast', 'violin']
['classical', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'string', 'fast', 'violin', 'upbeat']
['no voice', 'classical', 'strings', 'violin']
['jazz', 'flute']
['jazz', 'guitar', 'new age', 'electronic', 'instrumental', 'flute']
[]
['drum', 'drums']
['funky', 'jazz', 'guitar', 'funk', 'electronic', 'jazzy', 'flute', 'beat']
['beats', 'new age', 'no vocal', 'flute']
['guitar', 'country']
[]
[]
['jazz', 'piano', 'blues']
['jazz', 'drums', 'jazzy']
['jazz', 'quiet', 'synth', 'electronic', 'organ', 'piano', 'jazzy']
['jazz', 'happy', 'drums', 'fast', 'pop', 'rock', 'jazzy', 'beat']
['drum', 'drums', 'blues', 'jazzy']
['vocal', 'woman']
['singer', 'vocals', 'female', 'soft rock', 'guitar', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'rock', 'female vocals', 'female singer']
[]
['heavy', 'guitar', 'loud', 'drums', 'rock', 'metal']
['drums', 'rock']
['loud', 'rock', 'metal']
['guitar', 'solo', 'no vocal', 'rock']
['rock']
['hard rock', 'guitar', 'solo', 'loud', 'drums', 'no vocal', 'fast', 'electric guitar', 'rock', 'beat', 'metal']
['male vocals', 'male', 'vocal', 'choir']
['guitar']
['male vocal', 'guitar', 'folk', 'male singer', 'man singing', 'country', 'man', 'male vocals', 'male', 'blues']
['male vocal', 'guitar', 'male voice', 'country', 'guitars', 'singing']
['vocals', 'guitar', 'country', 'male vocals']
['vocals', 'guitar', 'voice', 'country', 'slow', 'vocal', 'singing', 'english']
['flute']
['silence', 'quiet', 'electronic', 'not classical', 'slow']
['no drums', 'flute']
[]
['quiet', 'no drums', 'flute']
[]
['ambient', 'indian', 'flute']
['woodwind', 'quiet', 'ambient', 'slow', 'flute', 'soft']
['chimes', 'no vocal', 'no vocals', 'bells']
['male vocal', 'dark', 'slow', 'vocal']
[]
['opera', 'male opera']
[]
['chorus', 'male vocal', 'vocals', 'classical', 'strings', 'male voice', 'choral', 'opera', 'male singer', 'violin', 'lol', 'instrumental', 'man', 'male vocals', 'sad', 'slow', 'male', 'vocal', 'singing', 'soft', 'choir']
[]
['vocals', 'ambient', 'new age', 'synth', 'strings', 'slow', 'water']
['ambient', 'strings']
[]
['ambient']
['ambient', 'slow']
['guitar', 'slow']
['guitar', 'folk', 'no vocals', 'soft']
['guitar', 'electric guitar', 'country', 'slow']
['guitar']
['no piano', 'guitar', 'acoustic', 'country', 'pop', 'slow']
['guitar', 'strings', 'pop']
['guitar']
['guitar']
['guitar', 'no flute', 'spanish']
['clarinet', 'guitar', 'quiet', 'wind', 'fast', 'low', 'oboe', 'sax', 'slow', 'flute']
['clarinet', 'new age', 'fast', 'no vocals', 'flute']
['vocals', 'oboe', 'singing']
[]
['strings', 'drums', 'indian']
['female', 'voice', 'loud', 'drums', 'singing']
['middle eastern', 'classic', 'drums', 'violin', 'strange', 'eastern', 'slow', 'flute']
[]
['electronic', 'mellow', 'slow', 'beat']
['vocals', 'female', 'female voice', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing']
[]
[]
['female', 'pop', 'female vocal', 'vocal', 'woman singing']
['no strings', 'female', 'guitar', 'female vocal', 'woman singing', 'singing', 'female vocals']
['classical', 'violins', 'strings', 'violin', 'slow']
['slow']
['ambient', 'strings', 'violin', 'drone', 'slow']
[]
[]
['classical', 'violins', 'strings', 'violin', 'instrumental', 'slow']
['guitar']
[]
[]
[]
['synth', 'drums', 'beat']
['drums', 'pop']
['male vocal', 'vocals', 'guitar', 'happy', 'voice', 'male voice', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'soft']
['no voice', 'jazz', 'drums', 'no vocal', 'no vocals', 'piano', 'rock', 'jazzy']
['vocals', 'guitar', 'no vocals', 'flutes', 'flute']
['foreign', 'guitar', 'folk', 'strange', 'vocal', 'singing', 'voices', 'not english', 'female singer']
['guitar']
['no piano', 'guitar', 'male vocals']
['guitar']
['opera', 'male']
['vocals', 'classical', 'male voice', 'choral', 'opera', 'male opera', 'male vocals', 'slow', 'male', 'vocal']
['male vocal', 'opera']
['male vocal', 'opera', 'male vocals', 'male']
['opera', 'male']
['weird']
[]
['hip hop']
['male vocal', 'jazz', 'drums', 'electronic', 'dance', 'techno', 'clapping', 'beat']
['beats', 'guitar', 'modern', 'beat']
['guitar', 'synth', 'drums', 'rock', 'techno']
[]
['soft rock', 'guitar', 'drums', 'fast', 'electric guitar', 'no vocals', 'rock', 'beat']
[]
[]
['guitar', 'no vocal', 'rock', 'techno']
['guitar', 'solo', 'electric guitar', 'rock']
['strings']
['harpsichord', 'harpsicord', 'baroque']
['harpsichord', 'harpsicord']
['classical', 'violin']
['no piano', 'quiet', 'violins', 'strings', 'classic', 'string', 'violin', 'slow', 'cello']
['opera', 'women']
['female voice', 'opera']
['female', 'female voice', 'opera', 'woman']
['vocals', 'female', 'opera', 'woman']
['opera']
['vocals', 'opera', 'operatic']
['female', 'opera']
['vocals', 'beats', 'vocal', 'woman', 'beat']
['beats', 'female', 'pop', 'female vocal']
['heavy', 'guitar', 'voice', 'rock', 'metal']
['hard rock', 'male vocal', 'classic', 'drums', 'fast', 'man singing', 'punk', 'male', 'rock', 'metal']
['rock']
['classical', 'fast', 'piano', 'slow']
[]
['beats', 'drums', 'electronic', 'techno', 'beat']
['techno']
['dance', 'techno', 'beat']
['no voice', 'beats', 'drums', 'electronic', 'trance', 'dance', 'techno']
[]
['classical', 'violins', 'strings', 'violin', 'baroque']
['electronic']
['organ']
['voice', 'drums', 'slow']
['vocals', 'new age', 'male', 'techno', 'not opera']
[]
[]
['loud']
[]
['synth', 'loud', 'electronic', 'bells', 'rock']
['classical', 'violins', 'strings', 'classic', 'violin', 'instrumental', 'orchestral', 'orchestra', 'flutes', 'baroque']
['classical', 'strings', 'violin', 'orchestra']
['no voice', 'classical', 'strings', 'no vocal']
['no beat', 'ambient', 'weird']
['vocals', 'female', 'voice', 'female vocal', 'echo', 'piano', 'slow', 'woman', 'singing', 'female vocals', 'soft', 'female singer']
['male vocal', 'female', 'guitar', 'rock', 'singing']
[]
['male vocal', 'vocals', 'guitar', 'male vocals', 'male', 'rock']
['male vocal', 'male voice', 'pop', 'male', 'rock']
['rock']
['guitar']
[]
[]
['female', 'female voice', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
['vocals', 'female', 'female voice', 'voice', 'violin', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'women', 'english']
['vocals', 'female', 'guitar', 'female voice', 'strings', 'violin', 'female vocal', 'woman', 'cello', 'female vocals', 'english']
['female', 'female voice', 'voice', 'violin', 'woman', 'singing', 'soft']
[]
['synth', 'percussion', 'drums', 'electronic', 'weird', 'bells', 'techno', 'beat']
['drum', 'electronic', 'no vocal', 'weird', 'industrial', 'dance', 'techno', 'house', 'beat']
['fast', 'disco', 'dance', 'techno', 'beat']
['electronic', 'techno', 'beat']
['electronic', 'techno', 'beat']
['no piano']
['techno', 'beat']
['electronic', 'electronica', 'techno', 'house', 'beat']
['synth', 'electronic', 'techno']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'classical guitar', 'harp', 'lute', 'piano', 'baroque']
['techno']
['electric', 'synth', 'electronic', 'techno']
['synth', 'drums', 'electronic', 'no drums', 'techno']
['techno']
['guitar', 'slow']
['male vocal', 'country', 'male']
['male vocal', 'vocals', 'male voice', 'male singer', 'man singing', 'country', 'man', 'pop', 'piano', 'vocal']
[]
[]
['classical', 'no vocal', 'violin', 'no vocals', 'slow']
[]
[]
['vocals', 'female', 'voice', 'female vocal', 'celtic', 'woman', 'singing']
['duet', 'vocals', 'female', 'slow', 'vocal', 'singing']
['vocals', 'female', 'female vocal', 'slow', 'singing']
['duet', 'slow', 'male', 'vocal', 'voices']
['solo', 'strings', 'harp']
[]
['indian']
['ambient', 'drum', 'beat']
['guitar', 'drums', 'eastern', 'rock', 'beat']
[]
[]
['drums', 'no vocal', 'no vocals', 'indian']
['tribal', 'oriental']
['drums']
['sitar', 'drums', 'indian', 'beat']
[]
['quiet', 'electric', 'synth', 'drum', 'electronic', 'organ', 'slow', 'techno', 'beat']
['beats', 'dance', 'techno']
['dance', 'techno']
['techno']
['sitar', 'guitar', 'strings', 'no vocal', 'no vocals', 'harp', 'slow']
['female voice', 'choir']
['folk', 'women']
['choral']
['chorus', 'female', 'ambient', 'vocal', 'choir', 'women']
[]
['guitar']
['sitar', 'guitar', 'strings', 'eastern', 'indian']
['guitar', 'banjo', 'strings', 'fast', 'arabic', 'spanish']
[]
[]
['chorus', 'foreign', 'female', 'choral', 'vocal', 'singing', 'choir', 'women']
['chorus', 'vocals', 'singing', 'choir']
[]
['male vocals', 'singing']
['male vocal']
['vocals', 'jazz', 'guitar', 'pop', 'rock', 'jazzy']
['female', 'guitar', 'opera', 'no flute', 'woman', 'female vocals']
['guitar']
['no piano', 'jazz', 'guitar', 'beat']
['beats', 'jazz', 'drums', 'electronic', 'no vocal', 'no vocals', 'beat']
[]
[]
[]
['vocal']
['no vocals', 'no drums']
['ambient', 'chanting', 'choral', 'monks']
['ambient', 'male voice', 'electronic', 'chanting', 'chant', 'male vocals', 'male', 'singing', 'techno', 'monks', 'choir']
['monks']
['ambient', 'new age', 'synth', 'airy', 'electronic', 'slow', 'techno', 'beat']
['drums']
['guitar', 'female vocal', 'rock']
['guitar', 'drum', 'drums', 'no vocal', 'electric guitar', 'no vocals', 'vocal', 'rock', 'beat']
['singer', 'female', 'pop', 'vocal', 'woman', 'female vocals']
['pop', 'rock']
['guitar', 'rock', 'rap', 'hip hop']
['sitar', 'foreign', 'loud', 'indian']
['sitar', 'new age', 'loud', 'indian']
['foreign', 'indian']
['guitar', 'country']
['guitar', 'drums', 'country']
['guitar', 'instrumental']
[]
['guitar', 'drums', 'country', 'modern', 'pop', 'rock']
['techno']
['vocals', 'guitar', 'loud', 'man', 'male', 'rock']
[]
['rock']
['guitar', 'drums', 'electric guitar', 'modern', 'rock']
['ambient', 'synth', 'no vocals', 'slow', 'soft', 'noise']
['ambient']
['ambient', 'dark']
['spacey', 'ambient', 'synth', 'space', 'weird', 'no vocals', 'drone']
['ambient', 'synth', 'space', 'electronic', 'echo', 'voices', 'techno']
['ambient', 'electronic']
['guitar', 'electric', 'fast', 'electric guitar', 'punk', 'rock']
['guitar', 'no singing', 'no vocal', 'electric guitar', 'rock']
['hard rock', 'loud', 'drums', 'fast', 'rock', 'metal']
['hard rock', 'heavy', 'heavy metal', 'rock']
['heavy', 'loud', 'punk', 'rock', 'metal']
['metal']
['guitar', 'drums', 'electric guitar', 'rock']
['loud', 'rock', 'metal']
['men', 'hard', 'rock', 'metal']
['voice', 'talking', 'techno']
['synth', 'electronic']
['electronic', 'lol', 'slow']
['beats', 'ambient', 'synth', 'electronic', 'slow', 'beat', 'soft']
['ambient', 'electro']
['quiet', 'ambient', 'synth', 'no singing', 'electronic', 'no vocal', 'electro', 'no vocals', 'slow', 'different', 'techno']
['ambient', 'slow']
['ambient']
['slow']
['ambient']
['ambient', 'synth', 'drums', 'slow']
[]
['strings', 'beat']
[]
['new age', 'drums', 'instrumental', 'slow']
['jungle', 'indian', 'beat']
['new age', 'loud']
['drums', 'eastern', 'indian']
['sitar', 'beats', 'loud', 'instrumental', 'eastern']
['no vocals']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'classic', 'organ']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'classic', 'no vocal', 'no vocals', 'piano', 'old', 'slow']
['guitar', 'drums', 'rock', 'metal']
[]
['guitar', 'fast', 'rock', 'metal']
['guitar', 'male vocals', 'rock']
['modern']
['male vocal', 'male', 'vocal']
['male vocal', 'male voice', 'drums', 'male singer', 'male vocals', 'male', 'vocal', 'rock']
['male vocal', 'pop', 'male vocals', 'male', 'vocal', 'singing']
['pop', 'male']
['silence', 'quiet', 'piano']
['fast', 'techno']
['synth', 'electronic', 'fast', 'electro', 'trance', 'techno', 'beat']
['electronic', 'techno']
[]
['synth', 'trance', 'techno']
[]
['female', 'female voice', 'opera']
['quiet']
['ambient']
['voice', 'woman']
[]
['vocal', 'indian', 'woman', 'singing']
['vocals', 'no piano', 'ambient', 'vocal']
['voice', 'female vocal']
[]
['singer', 'female', 'country', 'pop', 'rock', 'singing']
['man']
['singer', 'male vocal', 'guitar', 'male voice', 'male singer', 'man', 'pop', 'rock']
['flute']
['classical', 'flute']
['flute']
['no vocal', 'no vocals', 'slow', 'flute', 'soft']
['classical', 'celtic', 'flutes', 'flute']
['classical', 'no vocals', 'flute']
['man', 'pop']
[]
[]
['male vocals']
['vocals', 'electronic', 'electronica', 'slow', 'vocal', 'rock', 'singing', 'noise']
['classical', 'violins', 'strings', 'violin', 'slow']
['harpsichord', 'classical', 'violin']
['no voice', 'classical', 'strings', 'violin']
['classical', 'strings', 'violin']
['classical', 'strings', 'classic', 'violin']
[]
['classical', 'strings', 'violin']
['no piano', 'classical', 'strings', 'violin']
['harpsichord', 'classical', 'strings', 'classic', 'fast', 'violin']
['classical', 'strings', 'fast', 'violin', 'fiddle']
['classical', 'solo', 'piano']
['no voice', 'classical', 'no vocals', 'piano']
['piano']
['classical', 'piano', 'slow', 'upbeat']
['quiet', 'ambient', 'synth', 'keyboard', 'no vocals', 'piano', 'slow', 'soft']
['no voice', 'classical', 'classic', 'no vocal', 'piano']
['classical', 'fast', 'piano']
['piano', 'slow', 'soft']
['no piano', 'strings', 'eastern', 'slow', 'indian']
['sitar', 'no piano', 'guitar', 'drum', 'strings', 'slow', 'indian']
['sitar']
['sitar', 'drums', 'indian', 'beat']
['sitar', 'no vocals', 'slow', 'indian']
['female', 'indian']
['bells']
['female vocals']
['female singing', 'wind', 'voice', 'vocal']
[]
['drums', 'fast', 'techno']
['beats', 'drums', 'electronic', 'fast', 'indian', 'beat']
[]
['beats', 'drums', 'electronic', 'fast', 'techno']
['no voice', 'ambient', 'synth', 'no singing', 'percussion', 'drum', 'drums', 'electronic', 'no vocal', 'fast', 'tribal', 'indian', 'no singer', 'techno', 'beat']
['new age', 'drums', 'electronic', 'fast', 'no vocals']
['percussion', 'drums', 'fast', 'tribal', 'beat']
['fast']
['repetitive', 'drums', 'fast']
['drums']
['electric', 'drums', 'fast']
[]
['pop', 'woman']
['female', 'female voice', 'pop', 'vocal', 'woman singing', 'female vocals', 'women']
['rock']
[]
['male vocal', 'male', 'rock']
['plucking', 'classical', 'guitar', 'quiet', 'solo', 'classic', 'classical guitar', 'lute', 'slow']
['classical', 'guitar', 'strings', 'calm']
['classical', 'guitar']
[]
['sitar', 'foreign', 'drums', 'arabic', 'lol', 'vocal', 'indian', 'woman', 'singing', 'oriental', 'female singer']
['foreign', 'female', 'female voice', 'drum', 'drums', 'female vocal', 'indian', 'woman', 'not english']
['sitar', 'indian']
['sitar', 'drums', 'eastern', 'indian']
['middle eastern', 'indian', 'india', 'female vocals']
[]
['female', 'drum', 'drums', 'indian', 'woman', 'singing']
['sitar', 'drums', 'eastern', 'indian']
['sitar', 'indian', 'oriental']
[]
[]
['sitar', 'guitar', 'strings', 'loud', 'drums', 'no vocal', 'pop']
['guitar', 'ambient', 'synth', 'loud', 'no violin', 'beat']
[]
[]
['guitar', 'synth', 'strings', 'loud', 'irish', 'rock']
['guitar', 'loud', 'soft']
['quiet', 'violins', 'drum', 'strings', 'drums', 'violin', 'slow']
['folk', 'strings', 'drums', 'country', 'violin', 'irish', 'viola', 'celtic', 'fiddle']
[]
['guitar', 'rock']
['rock']
['male vocal', 'heavy', 'guitar', 'voice', 'loud', 'male vocals', 'male', 'vocal', 'rock', 'metal']
['female', 'girl', 'man', 'pop', 'rock', 'female vocals']
['male', 'rock']
['guitar', 'electric', 'drums', 'fast', 'electric guitar', 'rock', 'metal']
['guitar', 'synth', 'organ', 'fast', 'rock']
['classical', 'strings', 'organ', 'low', 'cello', 'flute', 'soft']
['classical', 'slow', 'flute']
['birds', 'choir']
['quiet', 'voice', 'chanting', 'chant', 'bells', 'male', 'singing', 'choir']
['choir']
['quiet', 'ambient', 'bells', 'slow']
['quiet', 'slow', 'flute']
['flute']
['no voice', 'silence', 'quiet', 'ambient', 'trumpet', 'voice', 'strings', 'electronic', 'no vocal', 'dark', 'horn', 'low', 'chant', 'deep', 'slow', 'flute', 'soft']
['quiet', 'ambient', 'new age', 'lol', 'low', 'drone', 'slow', 'flute', 'soft']
['quiet', 'chanting', 'chant', 'slow', 'flute']
[]
['flute']
['ambient', 'chant', 'slow', 'flute']
['quiet', 'wind', 'low', 'slow', 'no drums', 'cello', 'flute']
['sitar', 'male vocal', 'no vocal', 'chant', 'slow', 'vocal', 'indian', 'flute']
['no voice', 'quiet', 'new age', 'strings', 'chant', 'slow', 'male', 'indian', 'india', 'flute']
['low', 'eastern', 'slow', 'flute']
['quiet', 'ambient', 'electronic', 'modern', 'slow', 'soft']
[]
['quiet', 'ambient', 'new age', 'slow', 'flute', 'soft']
['ambient', 'synth', 'low', 'slow', 'calm', 'soft']
['flutes', 'slow', 'flute']
['quiet', 'ambient', 'slow', 'flute', 'soft']
[]
['synth']
['funky', 'synth', 'drums', 'fast', 'techno', 'beat', 'upbeat']
['fast', 'techno', 'beat']
['drums', 'electronic', 'fast', 'electro', 'techno', 'beat']
[]
['vocals', 'guitar', 'voice', 'slow', 'male', 'singing']
[]
[]
['male vocal', 'guitar']
[]
['singing']
[]
['female', 'choral', 'harp', 'celtic', 'slow', 'not opera']
['light', 'women']
[]
['classical', 'strings']
[]
['guitar', 'slow']
['guitar', 'spanish']
['guitar', 'classical guitar', 'slow']
['classical', 'guitar', 'strings', 'acoustic', 'string', 'classical guitar', 'mellow', 'piano', 'slow']
['guitar']
['slow']
['synth', 'strings']
['classical', 'strings', 'loud', 'classic', 'electronic', 'violin', 'orchestra', 'slow', 'no drums']
['classical', 'violins', 'birds', 'strings', 'loud', 'classic', 'not classical', 'violin', 'slow']
['no piano', 'violins', 'ambient', 'electronic']
['ambient', 'strings', 'violin', 'orchestra']
['classical']
['no vocal', 'piano']
['clarinet', 'classical', 'horn', 'piano', 'slow', 'flute']
['classical', 'piano']
['classical', 'piano', 'slow', 'flute', 'soft']
['classical', 'piano', 'slow', 'soft']
['oboe', 'piano', 'sad', 'slow', 'flute']
['piano']
['clarinet', 'classical', 'strings', 'not rock', 'piano', 'flutes', 'slow', 'flute']
['piano']
['classical', 'piano', 'flute']
['weird', 'man', 'male vocals', 'vocal']
['chorus', 'choral', 'male']
['men', 'choral', 'man', 'choir']
['vocals', 'chanting', 'choral', 'chant', 'male vocals', 'male', 'vocal', 'singing', 'monks', 'choir']
['chant', 'monks']
[]
['ambient', 'synth', 'electronic', 'dark', 'strange', 'techno', 'beat']
['synth', 'electronic', 'slow', 'techno']
['no voice', 'synth', 'electronic', 'no vocal']
['spacey', 'synth', 'electronic', 'fast', 'techno']
['electric', 'synth', 'electronic', 'no vocal', 'instrumental', 'techno']
[]
['electronic', 'techno']
['electric', 'synth', 'electronic', 'no vocals', 'no singer', 'techno']
['electronic', 'electronica', 'techno']
['electronic']
[]
['synth', 'techno']
['guitar', 'drums', 'rock', 'beat']
['guitar', 'loud', 'drums', 'slow', 'rock']
['guitar', 'rock']
['hard rock', 'guitar', 'loud', 'rock']
['guitar', 'drum', 'drums', 'rock']
['guitar', 'rock']
['techno']
[]
['ambient']
['male vocal', 'vocals', 'spacey', 'voice', 'male voice', 'no guitar', 'pop', 'male vocals', 'male', 'techno']
['male vocal', 'vocals', 'male singer', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['pop', 'male', 'vocal', 'singing']
['jazzy']
[]
['no vocals', 'irish', 'flutes', 'flute']
['violin', 'celtic']
['violins', 'string', 'violin', 'irish', 'flute', 'fiddle']
[]
['drums', 'no vocal', 'slow']
['new age', 'drums']
['no piano', 'drums', 'slow', 'soft']
[]
['drums']
['drums']
['no voice', 'classical', 'violin', 'orchestral', 'orchestra']
['classical', 'violins', 'strings', 'violin', 'orchestral', 'orchestra']
['classical', 'strings', 'violin']
['classical', 'flute']
['classical', 'flute']
['classical', 'quiet', 'violin', 'flute']
['classical', 'violin', 'orchestra']
['classical', 'flute']
['harp', 'slow', 'flute']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'flute', 'baroque']
[]
['classic']
['soft rock', 'jazz', 'guitar', 'drum', 'drums', 'electric guitar', 'pop', 'piano', 'old', 'jazzy']
[]
['male voice', 'pop', 'jazzy']
['male vocal', 'male']
['guitar', 'slow']
['male vocal', 'vocals', 'guitar', 'voice', 'country', 'man', 'pop', 'slow', 'male', 'vocal', 'singing']
['male vocal', 'vocals', 'no piano', 'guitar', 'male voice', 'man', 'pop', 'singing']
[]
['male vocal', 'guitar', 'country', 'violin', 'man', 'male vocals', 'singing']
[]
['guitar', 'percussion', 'drums', 'fast', 'beat']
[]
[]
[]
['guitar', 'drums', 'fast']
['guitar']
['classical', 'guitar', 'classical guitar', 'spanish']
['guitar', 'fast', 'spanish']
['guitar']
['guitar', 'fast', 'country', 'spanish']
['classical', 'orchestra']
['chorus', 'vocals', 'horns', 'classical', 'strings', 'choral', 'fast', 'violin', 'orchestral', 'orchestra', 'singing', 'choir']
['opera']
['guitar', 'cello']
[]
['male vocal', 'pop']
['guitar']
[]
['chorus', 'male vocal', 'guitar', 'male voice', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing']
[]
['chorus', 'classical', 'quiet', 'classic', 'choral', 'opera', 'slow', 'vocal', 'singing', 'choir']
['synth', 'electronic', 'fast', 'dance', 'techno', 'house']
['techno']
['techno']
['electronic', 'fast', 'no vocals', 'dance', 'techno']
['fast', 'trance']
['opera', 'slow', 'singing']
['guitar', 'male voice']
['no voice', 'solo', 'piano', 'slow', 'piano solo', 'calm']
['classical', 'piano', 'slow', 'soft']
['classical', 'piano']
['piano', 'slow', 'soft']
['classical', 'solo', 'no vocal', 'no vocals', 'piano']
['piano']
[]
['male vocal', 'vocal', 'indian']
['no vocal', 'slow']
['ambient', 'new age']
['no voice', 'ambient']
[]
['quiet', 'ambient', 'slow', 'soft']
['quiet', 'ambient', 'synth', 'electronic', 'low', 'slow', 'soft']
['classical', 'ambient', 'slow']
['ambient', 'space']
['classical', 'ambient', 'electronic', 'slow']
['ambient', 'synth', 'slow', 'soft']
['eerie', 'ambient', 'synth', 'electronic', 'not classical', 'weird', 'slow']
['ambient']
[]
['ambient']
['ambient', 'no guitar', 'soft']
[]
['ambient', 'new age', 'synth', 'no vocals', 'mellow', 'slow', 'soft']
[]
['ambient', 'synth', 'weird', 'slow']
['spacey', 'quiet', 'ambient', 'new age', 'weird', 'instrumental', 'slow']
['no piano', 'ambient']
[]
[]
['no voice', 'ambient', 'no vocal']
['ambient', 'slow']
['quiet', 'ambient', 'no guitar', 'slow', 'scary']
[]
['guitar', 'quiet', 'ambient', 'new age', 'synth', 'strings', 'chanting', 'no vocal', 'violin', 'instrumental', 'mellow', 'slow', 'calm', 'soft']
['slow', 'flute', 'beat']
['beats', 'synth', 'techno']
['jazz', 'trumpet', 'electronic', 'sax', 'jazzy']
['horns', 'jazz', 'sax', 'jazzy']
['no voice', 'chimes', 'no vocal', 'no vocals', 'slow', 'soft']
['no guitar', 'bells', 'sax']
['guitar', 'electric', 'drums', 'rock', 'guitars']
['punk', 'male', 'rock', 'metal']
['rock']
['male vocal', 'male vocals', 'punk', 'rock']
['violin']
['electric', 'synth', 'drums', 'electronic', 'fast', 'electro', 'modern', 'techno', 'beat']
[]
['middle eastern', 'drums', 'electronic', 'fast', 'violin', 'eastern', 'indian', 'techno', 'beat']
['electronic', 'fast', 'electro']
['synth', 'bass', 'electronic', 'techno', 'beat']
['synth', 'electronic', 'no vocal', 'fast', 'no vocals', 'electronica', 'trance', 'dance', 'techno']
['beats', 'drums', 'electronic', 'fast', 'violin', 'techno', 'beat']
['female', 'synth', 'voice', 'electronic', 'fast', 'trance', 'female vocal', 'echo', 'vocal', 'woman', 'dance', 'techno']
[]
['voice', 'opera', 'male']
['male vocal', 'vocals', 'voice', 'male voice', 'opera', 'irish', 'man', 'slow', 'vocal', 'singing', 'english']
['quiet', 'bass', 'drums', 'slow', 'beat']
['new age', 'synth', 'no vocals', 'beat']
['techno']
[]
['electronic', 'electro', 'techno', 'beat']
['synth', 'electronic']
[]
['female', 'violin']
['female voice', 'irish', 'female vocal', 'vocal']
['chorus', 'vocals', 'female', 'slow', 'vocal']
['vocals', 'female', 'drum', 'voice', 'vocal', 'indian', 'singing']
[]
['strings', 'slow']
['sitar', 'classical', 'guitar', 'strings']
[]
['guitar', 'no vocal']
['sitar', 'eastern', 'indian']
['sitar', 'drums', 'weird', 'fast', 'eastern', 'indian']
[]
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'slow']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'harpsicord']
[]
['choir']
['chorus', 'female', 'voice', 'vocal', 'voices', 'choir', 'women']
[]
['beats', 'ambient', 'synth', 'drum', 'electronic', 'slow', 'beat']
[]
['beats']
[]
['rap', 'hip hop']
['rap', 'hip hop']
['rap', 'hip hop']
['rap', 'hip hop']
['rap', 'hip hop']
['drums', 'piano', 'slow', 'beat']
[]
[]
[]
['violin', 'indian']
['no singing', 'violin']
['folk', 'strings', 'indian']
[]
[]
['vocals', 'female voice', 'drums', 'arabic', 'female vocal', 'eastern', 'indian', 'woman', 'singing', 'female singer']
[]
['fast', 'tribal', 'female vocal', 'indian', 'woman']
['classical', 'guitar', 'no singer']
[]
['guitar', 'slow']
['guitar', 'bass', 'loud', 'punk', 'rock']
['no voice', 'guitar', 'flute']
[]
['harp', 'flute']
['guitar', 'quiet', 'strings', 'voices', 'soft']
['guitar', 'strings', 'fast', 'spanish']
['guitar', 'fast']
['guitar', 'spanish']
[]
['guitar', 'strings', 'classic']
[]
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'strings', 'harpsicord', 'piano']
['harpsichord']
['jazz']
[]
['vocals', 'foreign', 'guitar', 'man singing', 'piano', 'spanish', 'vocal']
[]
['fast']
['classical', 'opera', 'slow', 'choir']
[]
['vocals', 'classical', 'quiet', 'classic', 'choral', 'opera', 'violin', 'singing', 'voices', 'soft', 'choir']
['chorus', 'opera', 'choir']
['chorus', 'classical', 'strings', 'opera', 'choir']
['choral', 'opera', 'choir']
['drums', 'rock']
['heavy', 'loud', 'heavy metal', 'rock', 'noise', 'metal']
['techno']
['electronic']
['noise']
['ambient', 'weird', 'strange', 'slow', 'noise']
['scary']
['ambient', 'weird', 'strange', 'industrial']
['ambient', 'no vocals', 'different', 'noise']
[]
['weird']
[]
['guitar', 'drums', 'electric guitar', 'slow', 'rock']
['rock', 'metal']
['male vocal', 'heavy', 'electric guitar', 'male vocals', 'male', 'rock']
['vocals', 'female', 'soft rock', 'pop', 'slow', 'rock', 'singing', 'female vocals', 'beat']
['chorus']
['guitar', 'acoustic']
['guitar', 'harp', 'slow']
['guitar']
['guitar']
['guitar', 'no vocal']
['guitar', 'solo', 'slow']
['guitar', 'slow']
['classical', 'guitar', 'lute', 'piano', 'baroque']
['guitar', 'no vocal', 'slow']
['guitar']
['classical', 'guitar']
['classical']
['guitar']
['classical', 'piano']
['no vocals', 'piano']
['solo', 'piano']
['classical', 'piano', 'slow']
['techno']
['electronic', 'fast', 'dance', 'techno', 'house', 'beat']
['no voice', 'electric', 'synth', 'electronic', 'no vocal', 'strange', 'techno']
['electronic', 'trance', 'techno']
['voice', 'electronic', 'fast', 'dance', 'techno', 'beat']
[]
['plucking', 'classical', 'guitar', 'strings', 'string', 'fast', 'harp', 'light', 'piano', 'eastern']
['upbeat']
['plucking', 'guitar', 'strings', 'string', 'drums', 'fast', 'quick']
['guitar']
['drums', 'fast', 'tribal']
['vocals', 'slow', 'soft']
[]
['female', 'quiet', 'drums', 'pop', 'mellow', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'soft']
['guitar', 'synth', 'electronic', 'slow']
['guitar', 'synth', 'no vocal']
['funky', 'guitar', 'synth', 'strings', 'bass', 'acoustic', 'drums', 'electric guitar', 'no vocals']
['guitar', 'country', 'blues']
['guitar', 'banjo', 'country', 'blues']
[]
['instrumental', 'slow', 'flute']
['flute']
['flute']
['harp']
['ambient', 'flute']
['electric', 'sad', 'slow', 'flute']
['quiet', 'solo', 'electronic', 'light', 'slow', 'flute', 'soft']
['quiet', 'new age', 'flute', 'soft']
[]
['woodwind', 'no strings', 'wind', 'ambient', 'synth', 'electronic', 'no vocal', 'instrumental', 'bells', 'slow', 'flute', 'oriental', 'soft']
['flute']
[]
['quiet', 'ambient', 'no vocals', 'slow', 'flute']
['quiet', 'ambient', 'new age', 'no flute']
['ambient', 'violin', 'instrumental', 'slow']
['ambient', 'synth', 'airy', 'slow']
[]
['ambient', 'no vocal', 'no vocals']
['new age', 'slow']
['water']
['sitar', 'new age', 'middle eastern', 'eastern', 'male', 'indian', 'flute']
['ambient', 'new age', 'electronic', 'arabic', 'vocal', 'indian', 'techno']
['no beat', 'chanting', 'chant', 'strange', 'indian']
['vocals']
['ambient', 'synth', 'weird', 'no drums']
['beats', 'funky', 'female', 'guitar', 'synth', 'bass', 'loud', 'drums', 'electronic', 'female vocal', 'rock', 'techno', 'beat', 'hip hop']
['fast', 'electro', 'rock']
['guitar', 'soft']
['vocals', 'ambient']
[]
['indian', 'singing']
['foreign', 'middle eastern', 'voice', 'man', 'male vocals', 'indian', 'singing']
['quiet', 'ambient', 'new age', 'no vocals', 'bells', 'slow']
['female singing', 'vocals', 'female', 'rock', 'singing']
['vocals', 'pop']
['vocals', 'female', 'jazz', 'girl', 'fast', 'country', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
['electric', 'electronic', 'fast', 'techno', 'upbeat']
['techno']
['loud', 'fast', 'dance', 'techno', 'beat']
['female voice', 'electronic', 'fast', 'woman', 'rock', 'techno']
['beats', 'synth', 'electronic', 'electro', 'electronica', 'modern', 'techno', 'beat']
[]
['electronic', 'trance', 'slow', 'techno']
['ambient', 'synth', 'drums', 'electronic', 'techno', 'beat']
[]
[]
['loud', 'fast', 'electro', 'techno']
['drum', 'loud', 'drums', 'no vocal', 'techno', 'noise']
[]
[]
['hard rock', 'vocals', 'drums', 'fast', 'male', 'rock', 'singing', 'metal']
['male vocal', 'guitar', 'male voice', 'electric guitar', 'male', 'rock']
['hard rock', 'heavy', 'loud', 'male', 'rock', 'metal']
['guitar']
['classical', 'guitar', 'quiet', 'slow']
['guitar', 'strings', 'no vocal']
['guitar']
['harpsichord', 'classical', 'guitar', 'strings', 'baroque']
['classical']
['classical', 'strings', 'orchestra']
['no piano', 'classical']
['classical', 'violins', 'strings', 'classic', 'string', 'violin', 'orchestra', 'flute']
['classical', 'strings', 'violin', 'orchestral', 'flute', 'soft']
['horns', 'classical', 'strings', 'baroque']
['classical', 'flute']
['classical', 'strings', 'orchestra']
['classical', 'flutes', 'flute']
['classical', 'classic', 'flute']
[]
['flute']
[]
['classical', 'violin']
['classical', 'violin']
['drums', 'beat']
['clapping']
['drums', 'beat']
['quiet', 'drums', 'no vocals', 'beat']
['drum', 'no vocal', 'instrumental', 'industrial', 'beat']
[]
['electronic']
[]
['flute']
['guitar', 'flute']
['guitar', 'quiet', 'wind', 'flute']
['rock']
['male vocal', 'guitar', 'drums', 'rock', 'metal']
['loud', 'rock']
['harpsichord', 'clarinet', 'woodwind', 'classical', 'classic', 'violin', 'instrumental', 'oboe', 'flutes', 'flute', 'soft']
['classical']
['classical']
['harpsichord', 'classical', 'oboe', 'flute']
['harpsichord', 'classical', 'oboe', 'flute']
['classical', 'flute']
[]
['classical', 'classic', 'oboe', 'flute', 'baroque']
['classical', 'classic', 'violin', 'slow', 'flute']
['harpsichord', 'classical', 'fast', 'horn', 'flute']
['synth']
['ambient', 'orchestra', 'flute']
['ambient', 'synth', 'no vocal']
['ambient']
['classical', 'ambient', 'new age', 'no singing', 'no vocal', 'instrumental', 'slow']
['no voice', 'eerie', 'ambient', 'new age', 'synth', 'airy', 'electronic', 'no vocal', 'no vocals', 'slow', 'no drums', 'different', 'techno', 'soft']
['ambient', 'synth', 'no violin', 'slow']
['drums']
['voice', 'loud', 'male', 'vocal']
['guitar', 'rock']
['male vocal', 'vocals', 'voice', 'pop', 'male', 'vocal', 'rock', 'singing']
['guitar', 'rock']
['classical', 'guitar', 'quiet', 'harp', 'piano', 'slow', 'soft']
['guitar', 'quiet', 'slow', 'soft']
[]
['jazz', 'guitar', 'funk', 'no violin', 'pop', 'rock']
['funky', 'guitar', 'funk']
['horns', 'jazz', 'guitar', 'funk', 'trumpet', 'sax', 'jazzy', 'upbeat']
['jazz']
['upbeat']
[]
['vocals', 'choral']
['electronic', 'techno', 'house', 'beat']
['dance', 'techno', 'beat']
['beats', 'electronic', 'trance', 'techno', 'beat']
['synth', 'electronic', 'fast', 'techno', 'beat']
['beats', 'repetitive', 'drums', 'electronic', 'fast', 'disco', 'dance', 'techno', 'beat', 'upbeat']
['beats', 'electronic', 'fast', 'dance', 'techno']
['techno']
['fast', 'techno']
['beats', 'drums', 'electronic', 'techno', 'beat']
['no strings']
['synth']
['ambient', 'electronic', 'piano']
[]
['beats', 'drum', 'drums', 'rock', 'beat']
[]
['drums']
['drum', 'drums', 'techno']
[]
['no guitar', 'fast', 'rock']
[]
[]
['loud', 'rock', 'metal']
['beats', 'synth', 'bass', 'drums', 'electronic', 'no vocal', 'electro', 'slow', 'techno', 'beat']
[]
['funky', 'electronic']
['electronic', 'techno']
['beats', 'synth', 'drums', 'electronic', 'electro', 'techno', 'beat']
[]
['techno']
['singer', 'male vocal', 'vocals', 'foreign', 'guitar', 'male voice', 'acoustic', 'man', 'male vocals', 'spanish', 'slow', 'male', 'singing', 'not english']
['pop', 'spanish', 'vocal', 'female vocals']
['male']
['vocals', 'guitar', 'drums', 'pop', 'spanish']
['guitar', 'vocal', 'soft']
['techno']
['techno']
[]
['drums', 'electronic', 'beat']
['synth', 'electronic', 'techno', 'beat']
['drums', 'techno', 'beat']
['beats', 'synth', 'bass', 'drums', 'electronic', 'weird', 'dance', 'techno', 'beat']
[]
['female', 'jazz', 'country', 'female vocal', 'piano', 'blues', 'vocal', 'woman', 'rock']
['vocals', 'guitar', 'country', 'pop', 'blues', 'woman', 'rock', 'female vocals', 'not opera']
['guitar', 'piano', 'blues', 'rock']
['guitar', 'blues', 'rock']
[]
['synth', 'electro', 'techno', 'clapping', 'beat']
['electric', 'ambient', 'synth', 'electronic', 'fast', 'different', 'techno', 'clapping']
['ambient', 'synth', 'electronic', 'techno', 'clapping']
['synth', 'electronic', 'instrumental', 'trance', 'clapping']
['singing']
['male vocal', 'pop', 'male vocals', 'slow', 'male']
[]
['synth']
['fast', 'techno']
['voice', 'male', 'beat']
['male vocal', 'electronic', 'male singer', 'beat']
['synth']
['electronic', 'techno']
[]
['bass', 'electronic', 'weird', 'dance', 'techno']
['techno', 'beat']
['beats', 'drums', 'techno', 'beat']
['drums', 'fast', 'techno']
['synth', 'drums', 'fast', 'techno']
[]
['bongos', 'classical', 'strings', 'drums', 'violin', 'slow', 'cello']
['female', 'strings', 'violin', 'no vocals']
['oriental']
['male vocal', 'voice', 'slow', 'male', 'vocal', 'rock']
['male vocal', 'vocals', 'guitar', 'male singer', 'man', 'pop', 'piano', 'male', 'vocal', 'singing']
['male vocal', 'loud', 'male', 'vocal']
['rock']
['male vocal', 'guitar', 'fast', 'electric guitar', 'male vocals', 'punk', 'male', 'vocal', 'rock']
['rock']
[]
['male vocal', 'vocals', 'male voice', 'fast', 'man', 'pop', 'techno']
['singer', 'voice', 'male voice', 'electronic', 'male singer', 'man singing', 'slow', 'male', 'singing']
[]
['loud']
['male vocal', 'vocals', 'man singing', 'techno']
['male vocal', 'synth', 'techno']
['vocals', 'funky', 'female', 'electric', 'voice', 'electronic', 'electro', 'woman', 'dance', 'female vocals', 'techno', 'beat']
['funky', 'electronic', 'techno']
['female', 'voice', 'electronic', 'weird', 'woman', 'techno', 'beat']
['electronic', 'woman', 'female vocals', 'techno']
['guitar', 'drums', 'rock']
['male vocal', 'loud', 'rock', 'singing', 'metal']
['vocals', 'drums', 'male', 'rock', 'metal']
['hard rock', 'male voice', 'heavy metal', 'male', 'vocal', 'rock']
['heavy', 'guitar', 'electric guitar', 'rock', 'metal']
['hard rock', 'guitar', 'male', 'vocal', 'rock', 'metal']
['rock']
['hard rock', 'male', 'rock', 'metal']
['guitar', 'loud', 'rock']
['male', 'rock']
['guitar', 'banjo', 'strings', 'country', 'blues']
['guitar', 'banjo', 'country', 'blues']
['guitar', 'country']
['synth']
['ambient', 'new age', 'violin', 'soft']
[]
['no strings', 'ambient', 'space', 'electronic', 'no vocal', 'jungle', 'slow', 'different', 'water']
['ambient']
['ambient', 'new age', 'strings', 'violin', 'slow', 'cello']
['no voice', 'guitar', 'strings', 'classical guitar', 'spanish']
['guitar', 'no vocals']
['guitar']
[]
['male vocal', 'jazz', 'guitar', 'synth', 'bass', 'blues', 'jazzy']
['vocals', 'man', 'pop']
['male vocal', 'male vocals', 'singing']
['guitar', 'wind', 'voice', 'loud', 'drums', 'strange', 'male', 'rock', 'singing']
['electric', 'solo', 'synth', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals']
[]
['classical', 'jazz', 'electric', 'synth', 'keyboard', 'electronic', 'weird', 'fast', 'strange', 'piano']
['synth', 'electronic', 'weird', 'modern']
[]
['synth', 'electronic']
[]
['no voice', 'beats', 'funky', 'classical', 'jazz', 'guitar', 'funk', 'drum', 'drums', 'organ', 'fast', 'country', 'no vocals', 'blues', 'rock', 'beat']
['singer', 'female', 'guitar', 'pop', 'male', 'vocal', 'woman', 'rock', 'singing']
[]
['female', 'guitar', 'rock']
['female']
['solo', 'piano', 'piano solo']
['classical', 'solo', 'piano']
['classical', 'electronic']
['loud', 'electro', 'singing']
[]
[]
[]
['male vocal', 'pop']
['piano', 'vocal', 'rock', 'jazzy']
['vocals', 'funky', 'female', 'guitar', 'female voice', 'funk', 'electronic', 'vocal', 'techno']
['funky', 'female voice', 'loud', 'woman', 'rock']
['guitar', 'banjo', 'fast']
['guitar', 'fast', 'country']
['guitar']
[]
['indian']
[]
[]
['calm', 'flute']
['synth']
['ambient', 'synth', 'soft']
['sitar', 'ambient', 'new age', 'synth', 'strings', 'instrumental', 'bells', 'slow', 'indian', 'oriental']
['strings']
['chimes', 'ambient', 'new age', 'no vocals', 'slow']
['no voice', 'no piano', 'new age', 'synth', 'strings', 'loud', 'no vocals', 'instrumental', 'eastern', 'indian']
['ambient']
['ambient', 'new age', 'slow', 'clapping', 'noise']
['harpsichord', 'classical', 'no beat', 'harpsicord', 'piano']
['harpsichord', 'classical', 'harpsicord', 'piano']
['harpsichord']
['harpsichord']
['harpsichord']
['harpsichord', 'classical', 'harp', 'piano', 'no drums', 'baroque']
['harpsichord', 'classical', 'slow']
['harpsichord', 'classical', 'guitar', 'slow']
[]
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'solo', 'organ', 'instrumental', 'piano']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'fast', 'baroque']
[]
['bongos', 'guitar', 'banjo', 'drum', 'drums', 'fast', 'country']
[]
['guitar', 'loud', 'fast', 'rock']
['guitar']
['bongos', 'guitar']
['heavy', 'loud', 'fast', 'industrial', 'different', 'techno', 'beat', 'noise']
['female', 'electronic', 'fast', 'electronica', 'rock', 'female vocals', 'techno', 'beat', 'metal']
['female', 'bass', 'loud', 'drums', 'electronic', 'fast', 'female vocal', 'dance', 'techno', 'beat']
['drums', 'dance', 'techno', 'house']
['ambient', 'synth', 'loud', 'no guitar']
['loud', 'chanting']
['male vocal']
['heavy', 'rock']
['loud', 'dark', 'beat']
['electronic']
['no voice', 'electronic', 'fast']
['guitar', 'drums', 'indian']
['guitar', 'country', 'no vocals', 'indian']
['drums']
['sitar', 'guitar', 'middle eastern', 'drums', 'indian', 'india']
['indian']
['beats', 'guitar', 'banjo', 'no vocal', 'no vocals', 'eastern', 'indian']
['no voice', 'beats', 'guitar', 'drums', 'eastern', 'indian', 'beat']
['sitar', 'indian']
['guitar', 'drums', 'indian']
['hard rock', 'guitar', 'drums', 'no vocal', 'electric guitar', 'rock']
['rock']
['guitar', 'loud', 'male', 'rock', 'metal']
['hard rock', 'male vocal', 'male', 'rock', 'metal']
['male vocal', 'guitar', 'loud', 'male', 'vocal', 'rock', 'metal']
['drums', 'rock', 'metal']
['loud', 'heavy metal', 'rock', 'metal']
['drums', 'electronic', 'electro', 'tribal', 'lol', 'jungle', 'indian', 'techno', 'beat']
['sitar', 'foreign', 'middle eastern', 'eastern', 'indian']
['arabic', 'eastern', 'oriental']
['techno']
['beats', 'drums', 'rock']
['loud', 'rock']
['heavy', 'rock', 'metal']
['no voice', 'guitar', 'loud', 'hard', 'rock', 'metal']
['heavy', 'guitar', 'loud', 'fast', 'hard', 'rock']
['heavy', 'guitar', 'drums', 'electronic', 'electro', 'rock']
[]
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'rock', 'metal']
['heavy', 'guitar', 'loud', 'drums', 'no vocals', 'heavy metal', 'rock', 'metal']
['hard', 'rock']
['hard rock', 'heavy', 'guitar', 'loud', 'hard', 'rock', 'metal']
['loud', 'rock', 'metal']
['heavy', 'guitar', 'rock']
['beat']
[]
['drums', 'electronic', 'fast', 'electro', 'instrumental', 'rock', 'beat']
['indian']
['indian']
['middle eastern', 'drum', 'drums', 'arabic', 'eastern', 'indian']
['drums', 'arabic', 'eastern', 'indian', 'beat']
['indian']
['sitar', 'drums', 'eastern', 'indian']
[]
['loud', 'fast', 'techno', 'beat']
['drums', 'fast', 'techno']
['drums', 'fast', 'techno', 'beat']
['electronic', 'fast', 'trance', 'techno', 'beat']
['beats', 'drums', 'electronic', 'fast', 'trance', 'techno', 'beat']
['fast', 'techno']
[]
['choir']
['choir']
[]
['classical', 'opera', 'choir']
['choral', 'opera', 'choir']
['flute']
[]
[]
['flute']
[]
['solo', 'slow', 'flute']
[]
['wind', 'flute']
['flute']
['low', 'slow', 'flute']
[]
[]
['quiet', 'ambient', 'slow']
['silence', 'quiet', 'slow']
['classical', 'guitar']
['guitar']
['no vocals']
['classical', 'guitar', 'slow']
[]
['classical', 'violins']
['classical', 'violin']
['female', 'female vocal']
['female', 'drums']
[]
[]
[]
[]
['female voice', 'drums', 'slow', 'rock', 'beat']
['duet', 'vocals', 'classical', 'choral', 'opera', 'slow', 'male', 'vocal', 'singing', 'voices']
['guitar', 'drum', 'loud', 'drums', 'rock']
['loud', 'rock']
['guitar', 'electric guitar', 'rock']
['rock']
['male voice', 'man', 'vocal', 'rock']
['male vocal', 'pop', 'male', 'rock']
['loud', 'male', 'rock']
[]
['weird', 'techno']
['female', 'rock', 'beat']
['pop', 'woman']
['harpsichord', 'classical']
['guitar', 'banjo', 'country']
['guitar', 'country']
['guitar']
['guitar', 'country', 'blues']
['new age', 'drone']
['quiet', 'ambient', 'deep']
[]
[]
['ambient', 'electronic', 'weird', 'no flute', 'slow', 'different', 'noise']
[]
['ambient', 'space', 'weird', 'dark', 'slow']
['no piano', 'no vocals']
['spacey', 'quiet', 'ambient', 'new age', 'airy', 'space', 'weird', 'dark', 'no vocals', 'low', 'drone', 'bells', 'slow']
['ambient', 'new age']
[]
[]
[]
['ambient', 'no guitar', 'no vocal']
['ambient', 'airy', 'dark', 'slow']
['weird', 'dark', 'low']
['quiet', 'ambient']
[]
['tribal', 'flute', 'oriental']
['indian', 'flute']
['middle eastern', 'indian', 'dance', 'flute', 'oriental', 'beat']
['foreign', 'drums', 'eastern', 'indian', 'flute', 'oriental']
['sitar', 'drums', 'no vocal', 'indian']
['no vocal']
[]
[]
[]
['quiet', 'ambient', 'synth', 'space']
['ambient', 'synth', 'no vocal', 'no vocals', 'light', 'slow']
['strings', 'violin', 'slow', 'no drums']
['ambient', 'new age', 'synth', 'strings', 'no vocal', 'slow']
[]
['chanting', 'choral', 'chant', 'choir']
['vocals', 'female', 'piano', 'vocal']
['electronic', 'techno']
['synth', 'electronic']
['guitar']
['male vocal', 'vocal']
['vocals', 'male', 'rock']
[]
['drums', 'rock']
[]
['guitar', 'fast', 'rock']
['hard rock', 'heavy', 'guitar', 'drum', 'loud', 'heavy metal', 'rock', 'metal']
['electric guitar']
['no strings']
['foreign', 'female', 'fast', 'indian', 'female vocals']
['female voice', 'drums', 'weird', 'indian', 'voices', 'beat']
[]
[]
['male vocal', 'drum', 'drums', 'reggae', 'rap']
['techno']
['bass', 'drums', 'electronic', 'reggae', 'techno']
['drum', 'electronic', 'beat']
[]
[]
['electric', 'wind', 'ambient', 'new age', 'airy', 'slow', 'calm']
['ambient', 'slow']
['no piano', 'quiet', 'wind', 'ambient', 'slow']
[]
['new age']
['ambient', 'synth', 'soft']
['ambient', 'synth', 'airy']
[]
['techno']
[]
['drums', 'electronic', 'no vocal', 'fast', 'fast beat', 'dance', 'techno', 'beat']
['male vocal', 'vocals', 'vocal', 'rock']
['vocals', 'man', 'male vocals']
['singer', 'vocals', 'electric', 'male voice', 'male', 'rock']
['guitar', 'slow']
['guitar', 'folk', 'country', 'slow']
['guitar']
['guitar']
['guitar', 'folk', 'strings', 'no vocal', 'country']
['quiet', 'electric', 'ambient', 'synth', 'electronic', 'not classical', 'electro', 'techno', 'beat']
['beats', 'ambient', 'synth', 'electronic', 'fast', 'techno']
['no vocal', 'no vocals']
['techno', 'beat', 'upbeat']
['synth', 'electro', 'synthesizer', 'pop', 'techno']
['electronic']
['harpsichord', 'strings', 'harp', 'eastern']
['guitar', 'harp']
['fast', 'harp']
[]
['strings']
['classical', 'guitar', 'strings', 'classic', 'instrumental', 'harp', 'piano', 'slow']
['no voice', 'fast', 'piano']
['harpsichord', 'classical', 'strings', 'no vocal', 'harp', 'piano']
['no voice', 'jazz', 'ambient', 'new age', 'no vocals', 'slow', 'soft']
['techno', 'beat']
['beats', 'synth', 'fast', 'techno']
['beats', 'synth', 'no singing', 'drums', 'electronic', 'no guitar', 'electronica', 'techno', 'beat']
['chimes', 'classical', 'ambient', 'synth', 'drums', 'electronic']
['no singing', 'drums', 'fast', 'modern', 'techno', 'beat']
['new age', 'drums', 'no vocals', 'flutes', 'flute']
['drums', 'flute']
['percussion', 'drums', 'jungle', 'flute']
['ambient', 'percussion', 'drums', 'tribal', 'flute', 'beat']
['drum', 'drums', 'eastern', 'flute']
['drums', 'slow', 'flute', 'soft']
['drums', 'irish', 'flute']
['no vocal']
[]
['plucking', 'strings', 'fast', 'harp']
['male voice', 'loud', 'man', 'piano', 'male vocals', 'male']
['male vocal', 'piano', 'slow']
['female', 'synth', 'female vocal', 'slow', 'vocal', 'female vocals', 'techno', 'soft']
['female', 'pop', 'woman', 'female vocals', 'not opera', 'female singer']
['new age', 'no guitar', 'vocal', 'techno']
[]
['beats', 'drums', 'fast', 'beat']
['female', 'synth', 'beat']
['female', 'voice', 'drums', 'fast', 'female vocal', 'woman', 'singing', 'female vocals', 'beat']
[]
['drums', 'fast', 'dance', 'techno', 'beat']
['male vocal', 'bass', 'loud', 'drums', 'man', 'rock', 'singing']
['rock', 'flute']
['drums']
['loud', 'slow']
['flute']
['solo', 'wind', 'new age', 'slow', 'flute']
['quiet', 'flute']
['slow', 'no drums', 'different', 'flute']
['flute']
[]
['wind']
['slow']
['vocals', 'synth', 'bass', 'loud', 'electronic', 'fast', 'pop', 'dance', 'female vocals', 'techno', 'beat', 'upbeat']
['beats', 'funky', 'loud', 'electronic', 'no vocal', 'fast', 'disco', 'pop', 'dance', 'techno', 'beat', 'upbeat']
['loud', 'fast', 'dance']
['guitar']
['sitar', 'no vocals', 'instrumental', 'indian']
['sitar', 'no vocal', 'no vocals', 'indian']
['sitar', 'indian']
['repetitive']
['sitar']
[]
['sitar', 'guitar', 'indian']
['sitar', 'foreign', 'drums', 'piano', 'indian', 'india']
['guitar', 'quiet', 'indian']
['sitar', 'indian']
['sitar', 'guitar', 'strings', 'country', 'indian']
['synth', 'electronic', 'weird', 'piano', 'techno']
['synth', 'electronic', 'no vocal', 'modern', 'pop', 'piano', 'upbeat']
['no voice', 'synth', 'no vocal', 'techno']
['funky', 'synth', 'techno']
['synth', 'techno', 'beat']
['beats', 'ambient', 'synth', 'drums', 'electronic', 'no vocal', 'fast', 'pop', 'piano', 'slow', 'rock', 'dance', 'techno', 'beat', 'soft']
['beat']
['percussion', 'drums', 'not classical', 'no vocal', 'no vocals', 'synthesizer', 'slow', 'indian']
['strings', 'no vocal', 'slow']
['no piano', 'ambient', 'percussion', 'drums', 'tribal', 'slow', 'beat', 'soft']
['ambient', 'synth', 'drums', 'slow', 'beat']
['drums', 'weird', 'slow']
['no voice', 'ambient', 'drums', 'dark', 'no vocals', 'drone']
[]
[]
['ambient', 'new age', 'slow']
['classical', 'ambient', 'new age', 'birds', 'calm']
['ambient', 'synth', 'instrumental', 'slow']
['no piano', 'ambient', 'birds', 'slow']
['ambient']
[]
['ambient', 'synth', 'birds', 'electronic', 'soft']
['electronic', 'rock', 'techno']
['heavy', 'heavy metal', 'rock', 'metal']
['heavy', 'loud', 'heavy metal', 'hard', 'rock', 'metal']
['rock', 'metal']
['heavy', 'rock', 'metal']
['guitar', 'male voice', 'loud', 'rock']
['guitar', 'drums', 'male vocals', 'rock']
['punk', 'male', 'rock']
['rock']
['hard rock', 'guitar', 'loud', 'drums', 'fast', 'heavy metal', 'rock', 'metal']
['guitar', 'loud', 'electric guitar', 'rock']
[]
['guitar', 'loud', 'drums', 'rock']
['guitar', 'loud', 'rock']
['choral', 'choir']
['no guitar', 'choir']
['choral', 'choir']
['chorus', 'choral', 'vocal', 'choir']
['chorus', 'vocals', 'quiet', 'choral', 'opera', 'chant', 'soft', 'choir']
['choral', 'opera', 'male', 'vocal', 'singing', 'choir']
[]
['male']
['jazz', 'piano', 'spanish']
['silence', 'no piano', 'flutes', 'flute']
['no strings', 'classical', 'fast', 'flutes', 'flute', 'soft']
['rock']
['guitar', 'drums', 'rock']
['hard rock', 'rock', 'metal']
['techno', 'beat']
['fast', 'dance', 'techno']
['dance', 'techno']
['no vocals', 'piano']
[]
['techno']
['techno']
['drums', 'techno']
['fast', 'trance', 'dance', 'techno']
['ambient', 'synth', 'strings', 'no guitar', 'slow']
['electronic', 'techno', 'beat']
['techno']
[]
[]
['male vocal', 'vocals', 'voice', 'arabic', 'spanish', 'male', 'vocal', 'indian', 'not english', 'beat']
['sitar', 'male vocal', 'arabic', 'indian']
['sitar', 'electronic', 'fast', 'indian']
['synth', 'techno', 'beat']
['sitar', 'no vocals']
['techno']
['synth', 'drums', 'electronic', 'fast', 'techno']
['bass', 'loud', 'electronic', 'no vocal', 'no vocals', 'strange', 'techno', 'beat']
['fast', 'techno', 'beat']
[]
['techno']
['synth', 'techno', 'beat']
[]
['electronic']
['spacey', 'ambient', 'drums']
['new age', 'techno']
['electronic']
['synth', 'drum', 'electronic', 'no violin', 'slow']
['electric', 'voice', 'space', 'electronic', 'electronica', 'slow', 'vocal', 'rock', 'techno', 'beat']
[]
['guitar', 'loud', 'weird', 'heavy metal', 'rock', 'metal']
['synth', 'loud', 'fast', 'rock', 'metal']
[]
['eerie', 'ambient', 'synth', 'drums', 'no vocal', 'weird', 'no vocals', 'beat']
['ambient', 'weird', 'dark']
['female', 'eerie', 'ambient', 'voice', 'drums', 'weird', 'voices']
['drum', 'slow', 'woman', 'singing']
['new age']
['beats', 'drums', 'no vocals', 'beat']
['no voice', 'synth', 'no vocal', 'techno']
['electric', 'electronic', 'no guitar', 'techno', 'beat']
['male vocal', 'male', 'techno']
['male vocals']
['male vocal', 'vocals', 'drums', 'electronic', 'male', 'vocal', 'singing', 'techno', 'beat']
['male singer', 'man', 'male', 'singing']
['male vocal', 'electronic', 'modern', 'pop', 'male vocals']
['synth', 'techno']
['indian']
[]
['indian', 'woman', 'techno']
['synth', 'loud', 'strange', 'dance', 'beat']
['no voice', 'classical', 'no singing', 'strings', 'no vocal', 'violin', 'no vocals']
['harpsichord', 'classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestra']
['classical', 'strings', 'no vocal', 'violin', 'no vocals', 'instrumental']
['classical', 'strings', 'no vocal', 'violin', 'no vocals']
['classical', 'violins', 'strings', 'violin']
['harpsichord', 'classical', 'no vocal']
[]
['classical', 'violin', 'cello']
['classical', 'violin']
['classical', 'strings', 'cello']
['classical', 'violin', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['solo', 'strings', 'cello']
['strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'string', 'violin', 'cello']
['classical', 'strings', 'cello']
['strings']
['classical', 'strings', 'no vocal', 'violin', 'instrumental', 'cello']
[]
['strings']
['no voices', 'violin']
['classical', 'violin']
[]
['cello']
['classical', 'solo', 'strings', 'violin', 'cello']
['classical', 'violins', 'strings', 'fast', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'cello']
['strings', 'cello']
['guitar']
[]
['guitar', 'no drums']
['classical', 'guitar', 'string', 'piano']
['sax']
['guitar', 'fast', 'rock']
['guitar', 'drums', 'fast', 'sax', 'rock']
['jazz', 'bass', 'drums', 'sax', 'slow', 'jazzy']
['no piano', 'jazz', 'drums', 'sax', 'slow', 'jazzy', 'beat']
['no voice', 'jazz', 'sax']
['jazz', 'fast', 'sax', 'jazzy']
['jazz', 'drums', 'fast', 'sax']
['jazz', 'drums', 'fast', 'no vocals', 'rock', 'jazzy', 'upbeat']
['jazz', 'guitar', 'drums', 'sax', 'rock', 'jazzy']
['ambient', 'synth', 'male voice', 'electronic', 'slow', 'techno']
['synth', 'bass', 'electronic', 'no flute', 'techno']
[]
['no strings', 'drums', 'electronic', 'fast', 'electro', 'beat']
['electronic', 'fast', 'fast beat', 'techno']
['quiet', 'electric', 'synth', 'electronic', 'fast', 'electronica', 'techno', 'beat']
['no strings', 'classical', 'no guitar', 'fast', 'piano']
['classical', 'fast', 'piano']
[]
['solo', 'piano']
['classical', 'solo', 'no vocals', 'low', 'piano']
['classical', 'piano']
['classical', 'fast', 'piano']
['ambient']
['quiet', 'ambient', 'new age', 'electronic', 'dark', 'slow']
['classical', 'quiet', 'solo', 'strings', 'classic', 'violin', 'low', 'viola', 'cello']
['classical', 'cello']
[]
['choral', 'vocal', 'choir']
['opera', 'choir']
[]
['choral', 'opera', 'choir']
['choral', 'opera', 'vocal', 'choir']
['female opera', 'classical', 'female', 'opera', 'operatic', 'female vocal', 'vocal', 'woman']
['strings', 'electronic', 'no vocals', 'techno']
['birds']
['beats', 'synth', 'indian']
[]
['no vocal', 'pop', 'beat']
['opera']
['classical', 'violin', 'flute']
['classical', 'violin']
['classical', 'violin']
['no voice', 'classical', 'strings', 'violin']
['classical', 'strings', 'classic', 'violin']
['quiet', 'choral', 'vocal', 'no drums']
[]
[]
['choir']
['violin', 'piano']
[]
['no singing', 'no vocals', 'piano']
[]
['no piano', 'drum', 'drums', 'no vocals', 'indian']
['sitar', 'middle eastern', 'drum', 'drums', 'fast', 'tribal', 'eastern', 'indian', 'india']
['middle eastern', 'drums', 'indian']
['bongos', 'sitar', 'drums', 'fast', 'tribal', 'eastern', 'indian']
['bongos', 'sitar', 'beats', 'percussion', 'drum', 'drums', 'tribal', 'eastern', 'indian', 'beat']
['drums', 'indian']
['drums']
['sitar', 'percussion', 'drum', 'drums', 'no vocal', 'weird', 'tribal', 'eastern', 'indian', 'beat']
['jazz']
['guitar', 'fast']
['jazz', 'drums']
['vocals', 'female', 'female voice', 'female vocal', 'piano', 'slow', 'woman', 'female vocals', 'soft', 'female singer']
['female', 'pop', 'piano', 'vocal']
['female', 'female voice', 'female vocal', 'piano', 'slow', 'vocal', 'woman']
['no vocals']
['beats', 'guitar', 'bass', 'electronic', 'modern', 'mellow', 'piano', 'slow', 'beat']
['piano']
['ambient', 'piano']
['strings', 'electronic', 'pop', 'piano']
['no piano', 'ambient', 'new age', 'synth', 'electronic', 'not classical', 'modern', 'piano', 'slow', 'techno', 'beat']
['ambient', 'new age', 'synth', 'modern', 'pop', 'piano', 'techno']
['electronic', 'techno']
['female', 'ambient', 'new age', 'voice', 'techno']
['new age', 'electronic', 'fast', 'electro', 'no vocals', 'instrumental', 'techno']
['sitar', 'guitar', 'solo', 'slow']
['no voice', 'harpsichord', 'classical', 'guitar']
['guitar', 'slow']
['plucking', 'guitar', 'quiet', 'slow']
['opera', 'male opera', 'man', 'male']
['male vocal', 'male voice', 'opera', 'male opera', 'man', 'male vocals', 'male', 'singing']
['classic', 'opera', 'male opera', 'male']
['harpsichord', 'female opera', 'classical', 'female', 'female voice', 'opera', 'soprano', 'female vocal', 'vocal', 'woman', 'female vocals']
['drums', 'electronic', 'tribal']
[]
['horns', 'quiet', 'horn', 'slow', 'flute']
['classical', 'voice', 'strings', 'drums', 'violin', 'woman']
['female', 'strings', 'drums', 'modern', 'female vocals']
[]
['drums', 'indian']
['quiet', 'ambient', 'drums', 'tribal', 'beat']
['quiet', 'drums', 'fast', 'tribal', 'beat']
['ambient', 'drums', 'no guitar']
['beat']
['drums', 'tribal']
['ambient', 'drone']
[]
['ambient', 'percussion', 'drum', 'drums', 'beat']
['no voice', 'no vocals', 'slow']
['drums', 'no guitar']
[]
['female', 'singing']
['female vocal']
['female', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals']
['female', 'female voice', 'girl', 'no guitar', 'pop', 'slow', 'woman', 'woman singing', 'singing', 'female vocals', 'female singer']
['guitar', 'strings']
['guitar']
['quiet', 'electronic', 'weird', 'noise']
[]
['vocals', 'pop']
['silence', 'quiet']
['chimes', 'birds', 'bells', 'water']
['ambient', 'birds']
['ambient', 'birds']
['ambient', 'birds']
['chimes', 'ambient', 'birds', 'bells']
['chimes', 'no piano', 'ambient', 'bells', 'water']
['ambient', 'new age', 'synth', 'slow']
['spacey', 'ambient', 'synth', 'loud', 'instrumental', 'slow', 'soft']
['ambient', 'instrumental', 'bells']
['ambient', 'new age', 'synth', 'not rock', 'no vocal', 'no vocals', 'slow']
['ambient', 'new age', 'soft']
['ambient', 'synth', 'keyboard', 'mellow', 'soft']
['new age', 'electronic', 'mellow', 'slow']
['no voice']
['beats', 'drums', 'fast', 'slow', 'beat']
['guitar', 'drum', 'drums', 'electric guitar']
['guitar', 'drums', 'no vocal', 'fast', 'no vocals', 'modern', 'rock', 'beat', 'hip hop']
[]
['no voice', 'middle eastern', 'loud', 'drums', 'eastern', 'no singer', 'rock', 'beat']
[]
[]
[]
['no voice', 'no vocals']
['sitar', 'indian']
['sitar', 'indian']
[]
[]
['sitar', 'indian']
['indian']
[]
['harpsichord', 'classical', 'old']
['harpsichord', 'classical', 'fast', 'baroque']
['harpsichord']
[]
[]
['male vocal', 'vocals', 'man', 'rock', 'singing']
['synth', 'fast', 'techno']
['no voice', 'female', 'jazz', 'guitar', 'electric', 'female voice', 'ambient', 'bass', 'drums', 'electronic', 'no vocal', 'no vocals', 'modern', 'female vocal', 'slow', 'vocal', 'jazzy', 'singing', 'female vocals', 'techno', 'beat']
['funky', 'guitar', 'reggae']
['no voices', 'funk', 'bass', 'electronic', 'rock', 'techno', 'soft', 'hip hop']
['electronic', 'techno']
['synth', 'electronic', 'weird', 'fast', 'techno']
['electronic', 'fast']
['synth', 'electronic', 'techno']
['electronic']
[]
[]
['percussion', 'slow', 'beat']
['eerie', 'ambient', 'new age', 'drums', 'electronic', 'beat']
['beats', 'ambient', 'percussion', 'drum', 'drums', 'tribal', 'industrial', 'jungle', 'slow', 'indian', 'beat']
['synth', 'drums']
['tribal', 'beat']
['ambient', 'tribal', 'instrumental', 'slow']
['ambient', 'drums', 'electronic', 'tribal', 'modern', 'beat']
['ambient', 'drums', 'different', 'beat']
['flute']
['flute', 'soft']
['quiet', 'no guitar', 'no vocals', 'eastern', 'slow', 'flute']
['flute']
['horns', 'quiet', 'wind', 'slow', 'flute']
['heavy metal', 'punk', 'rock', 'metal']
['rock']
['guitar', 'drums', 'rock']
['punk', 'rock', 'metal']
['drums', 'no vocals', 'rock']
['loud', 'rock']
[]
['rock']
['no voice', 'quiet', 'ambient', 'synth', 'electronic', 'electronica', 'slow']
['guitar', 'no singing', 'electronic', 'dark', 'techno', 'soft']
['ambient', 'bass', 'electronic', 'low']
['ambient', 'soft']
['no voice', 'guitar', 'electro', 'soft']
['quiet', 'ambient', 'weird']
['quiet', 'ambient', 'low', 'indian', 'cello']
['bongos', 'guitar', 'percussion', 'drum', 'drums', 'slow', 'beat']
['male vocal', 'voice', 'male', 'vocal']
['vocals', 'synth', 'strings', 'no guitar', 'beat']
['vocals', 'man', 'male']
['quiet', 'slow']
['classical', 'strings', 'violin', 'slow']
['guitar', 'no vocals', 'instrumental', 'pop']
['male vocal', 'male voice', 'singing']
['quiet', 'piano', 'slow']
['classical', 'quiet', 'piano', 'slow']
['piano', 'slow']
['quiet', 'piano', 'soft']
['piano']
['classical', 'piano', 'slow']
['classical', 'strings', 'violin', 'no vocals', 'no drums', 'cello']
['violin']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings']
['classical', 'violins', 'strings', 'no vocal', 'opera', 'violin', 'instrumental', 'slow', 'cello']
['classical', 'strings', 'violin']
['classical']
['classical', 'violins']
['classical', 'quiet', 'strings', 'violin', 'slow']
['classical', 'strings', 'violin', 'no vocals', 'slow']
['classical']
[]
['rock']
['country', 'male vocals', 'male', 'rock', 'singing']
['loud', 'country', 'pop', 'male', 'vocal', 'rock', 'upbeat']
['vocals', 'guitar', 'loud', 'country', 'male vocals', 'blues', 'rock']
['guitar', 'drums', 'fast', 'country', 'pop', 'rock']
['voice', 'talking', 'piano']
['beat']
['techno']
['loud', 'fast', 'industrial', 'hard', 'noise']
['drums', 'fast', 'techno', 'beat']
['loud']
['middle eastern', 'percussion', 'drum', 'drums', 'fast', 'tribal', 'modern', 'indian', 'oriental']
[]
['beats', 'percussion', 'drum', 'drums', 'tribal', 'beat']
['percussion', 'drums', 'no vocal']
['drums']
['classical', 'strings', 'electronic', 'violin', 'slow', 'scary']
['guitar', 'synth', 'drums', 'no vocal', 'techno', 'beat']
[]
['not classical', 'dark']
['electronic', 'fast', 'electronica', 'upbeat', 'soft']
[]
['synth', 'fast', 'techno', 'beat']
[]
[]
[]
[]
['guitar', 'drums', 'no flute', 'rock']
['male', 'rock']
['man', 'male']
[]
['male vocal', 'vocals', 'guitar', 'male', 'vocal']
[]
['male vocal', 'guitar', 'male voice', 'male']
['sitar', 'no piano', 'guitar', 'strings', 'violin', 'slow', 'soft']
['sitar', 'slow', 'indian']
['guitar', 'slow']
['sitar', 'no singing', 'instrumental', 'indian']
['sitar', 'guitar', 'no vocals']
['sitar', 'guitar', 'quiet', 'ambient', 'strings', 'low', 'piano', 'slow', 'indian']
['solo', 'synth', 'electronic']
['guitar']
['no voice', 'guitar', 'synth', 'loud', 'drums', 'electronic', 'fast', 'synthesizer', 'modern', 'pop', 'rock', 'techno', 'beat']
[]
['no piano', 'synth', 'electronic', 'fast', 'techno', 'beat']
['synth']
['electronic', 'pop']
['beats', 'drums', 'electronic', 'fast', 'modern', 'techno', 'beat']
['synth', 'drums', 'fast', 'upbeat']
['techno']
[]
[]
[]
['no piano', 'ambient', 'new age', 'synth', 'deep', 'noise']
['drums', 'dark', 'deep']
['ambient', 'electronic', 'dark', 'slow', 'beat']
['noise']
['rock', 'beat']
['beats', 'loud', 'drums', 'fast', 'rock', 'beat', 'upbeat']
['rock']
[]
['drums']
['guitar', 'drums', 'no vocal']
['beats', 'guitar', 'drums', 'rock', 'techno', 'beat']
['heavy', 'loud', 'no vocals', 'rock']
['rock']
['no vocal', 'no vocals']
[]
['heavy', 'guitar', 'rock']
['hard rock', 'male vocal', 'male singer', 'man singing', 'male vocals', 'punk', 'male', 'rock']
['vocals', 'guitar', 'male vocals', 'male', 'vocal', 'rock']
[]
['male vocal', 'guitar', 'male', 'rock', 'singing']
['bells']
[]
['chimes', 'classic', 'organ', 'bells']
['classical', 'organ', 'no vocals', 'different']
['guitar', 'voice', 'male voice', 'talking']
['singer', 'male vocal', 'vocals', 'guitar', 'folk', 'voice', 'male voice', 'acoustic', 'male singer', 'man singing', 'country', 'man', 'male', 'blues', 'vocal', 'jazzy', 'singing']
['male vocal', 'guitar', 'male voice', 'acoustic guitar', 'male singer', 'country', 'man', 'male']
['male vocal', 'vocals', 'guitar', 'man singing', 'male vocals', 'blues', 'vocal', 'singing']
['sitar', 'no vocal', 'eastern', 'indian']
['arabic', 'indian']
['female', 'arabic', 'indian', 'singing']
['harpsichord', 'harpsicord', 'loud', 'classic', 'piano']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical']
['harpsichord', 'classical', 'no vocals']
['harpsichord', 'classical', 'harpsicord', 'classic', 'piano']
['harpsichord', 'classical', 'baroque']
['harpsichord', 'classical', 'solo', 'harpsicord', 'classic']
['harpsichord', 'classical', 'strings', 'harpsicord', 'fast']
['harpsichord', 'medieval']
['harpsichord', 'classical', 'harpsicord', 'piano', 'upbeat', 'baroque']
['classical', 'harpsicord', 'classic', 'violin', 'cello']
['classical', 'violin', 'cello']
['classical', 'strings', 'violin']
['harpsichord', 'classical', 'happy', 'strings', 'harpsicord', 'violin', 'cello', 'baroque']
['classical', 'violins']
['harpsichord', 'classical', 'strings', 'violin', 'cello', 'baroque']
[]
[]
['guitar', 'banjo', 'folk', 'medieval', 'lute', 'piano', 'slow']
[]
['piano']
[]
['classical', 'solo', 'piano']
['classical', 'solo', 'piano', 'slow', 'soft']
['classical', 'solo', 'piano']
['piano']
[]
['piano']
['classical', 'no singing', 'piano']
['piano']
['solo', 'piano']
[]
['classical', 'solo', 'piano']
['classical', 'solo', 'classic', 'piano']
['classical', 'classic', 'piano', 'slow']
['piano']
['fast', 'piano']
['classical', 'quiet', 'harp', 'piano', 'slow', 'soft']
['classical', 'piano']
['classical', 'piano', 'slow', 'calm']
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'orchestra', 'flute', 'baroque']
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'flute', 'baroque']
['classical', 'violin']
['classical', 'flute']
[]
['classical', 'strings', 'classic', 'violin', 'cello']
['guitar', 'strings', 'instrumental', 'lute', 'sad', 'slow', 'soft']
['classical', 'guitar', 'solo', 'strings', 'string', 'classical guitar', 'harp', 'sad', 'slow']
[]
['classical', 'guitar', 'strings', 'slow']
['guitar']
['guitar', 'country', 'no vocals', 'blues']
[]
['beats', 'drum', 'drums', 'beat']
['vocals', 'beats', 'female', 'soft rock', 'guitar', 'female voice', 'ambient', 'new age', 'synth', 'drum', 'voice', 'girl', 'drums', 'electronic', 'modern', 'pop', 'female vocal', 'mellow', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'beat', 'soft', 'female singer']
['pop']
['female', 'pop', 'woman']
['vocals', 'female', 'electric', 'female voice', 'synth', 'electronic', 'electro', 'female vocal', 'slow', 'woman', 'techno', 'beat']
[]
['beats', 'synth', 'fast', 'electro', 'instrumental', 'modern', 'pop', 'slow', 'techno', 'beat']
['female voice', 'drums']
['ambient', 'synth', 'bass', 'drums', 'electronic', 'weird', 'electronica', 'no drums', 'techno', 'beat']
['drum', 'electronic', 'techno']
['electronic', 'no vocal']
['jazz', 'drums', 'electronic', 'fast', 'horn', 'modern', 'techno', 'beat']
['guitar', 'fast', 'jazzy']
['beats', 'funky', 'jazz', 'electric', 'funk', 'drums', 'electronic', 'fast', 'rock', 'beat']
['ambient', 'synth', 'no vocals', 'low']
['jazz', 'ambient', 'funk', 'trumpet', 'drums', 'rock']
['beats', 'trumpet', 'drums', 'techno', 'beat']
[]
['no voice', 'funky', 'ambient', 'drums', 'electronic', 'slow', 'techno', 'beat']
['jazz', 'synth', 'trumpet', 'no vocal', 'techno']
['beats', 'electronic', 'techno', 'beat']
['no piano', 'spacey', 'synth', 'low', 'synthesizer', 'slow']
[]
['quiet', 'ambient', 'weird', 'dark', 'no vocals', 'horn', 'low', 'echo', 'slow']
['horns', 'wind', 'ambient', 'trumpet', 'no vocal', 'flute']
[]
[]
['vocals', 'electronic', 'trance', 'slow']
['male vocal', 'vocals', 'synth', 'voice', 'electronic', 'weird', 'man singing', 'strange', 'man', 'mellow', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'singing', 'techno']
[]
['male vocals', 'vocal']
['techno']
['male']
['loud', 'modern', 'male vocals', 'slow', 'male', 'rock']
['electronic', 'slow']
['no piano', 'guitar', 'weird', 'indian', 'voices']
['vocals', 'eerie', 'synth', 'electronic', 'weird', 'strange', 'scary']
['ambient', 'space', 'electro']
[]
['electronic', 'no vocals']
[]
[]
['electronic', 'weird', 'techno']
['no voice', 'no vocal', 'no vocals', 'slow', 'beat', 'soft']
['vocals', 'female', 'pop']
['synth', 'electronic', 'electro', 'techno', 'beat']
['dance', 'techno', 'beat']
['electro', 'instrumental', 'techno']
['electronic', 'fast', 'electro', 'disco', 'pop', 'dance', 'techno', 'beat']
['techno']
[]
['electronic', 'dance']
['fast', 'dance', 'techno']
['fast', 'electro', 'trance', 'techno']
['dance', 'techno', 'beat']
['techno']
['dance', 'techno']
['lol', 'dance', 'beat']
['guitar']
['no voice', 'guitar', 'folk', 'acoustic', 'mellow']
['guitar']
['guitar', 'no vocal', 'fast', 'acoustic guitar', 'harp', 'light']
[]
['singer', 'chant', 'slow', 'vocal', 'female vocals', 'choir']
['synth', 'bass', 'electronic', 'no vocal', 'weird', 'synthesizer', 'techno']
['rock']
['heavy', 'electric', 'loud', 'electronic', 'industrial', 'vocal', 'rock', 'techno']
['synth', 'modern']
['synth', 'loud', 'electronic', 'trance', 'rock', 'techno']
[]
[]
[]
['guitar', 'quiet', 'piano', 'slow']
['classical']
['piano', 'slow']
['classical', 'guitar', 'organ', 'piano']
['harpsichord', 'classical', 'guitar', 'piano']
['no piano', 'quiet', 'dark', 'low', 'piano']
['male vocal', 'guitar', 'man', 'pop', 'rock']
['guitar']
['male vocal', 'loud', 'rock']
['loud', 'rock']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'cello']
[]
[]
['classical', 'violin', 'cello']
['no vocals', 'cello']
['classical', 'cello']
['classical', 'violin', 'cello']
['classical', 'solo', 'cello']
['violins']
['harpsichord', 'classical', 'strings', 'violin', 'slow']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'string', 'violin', 'old']
['strings', 'violin']
['classical', 'classic', 'violin']
['harpsichord', 'classical', 'strings', 'baroque']
['harpsichord', 'classical', 'classic', 'baroque']
['classical', 'strings']
[]
['classical', 'violin']
['classical', 'strings', 'classic', 'no vocal']
['harpsichord', 'classical', 'strings', 'medieval', 'classic', 'no vocal', 'violin', 'soft']
['harpsichord', 'classical', 'classic', 'different', 'baroque']
['harpsichord', 'classical', 'strings', 'harpsicord']
['harpsichord', 'classical', 'solo', 'strings', 'harp', 'baroque']
['man singing', 'man', 'male vocals']
[]
[]
['guitar', 'male voice', 'male', 'english']
[]
['male vocal', 'guitar', 'country', 'man', 'pop', 'male']
['drums']
[]
['world', 'sitar', 'guitar', 'string', 'drums', 'modern', 'indian', 'india']
[]
['sitar', 'guitar', 'synth', 'drums', 'no vocals', 'slow', 'indian', 'beat', 'soft']
['sitar', 'guitar', 'string', 'drums', 'indian']
['sitar', 'guitar']
['sitar', 'indian']
[]
['beats', 'drums', 'techno', 'beat']
[]
[]
['female vocal', 'techno']
[]
[]
[]
['vocals', 'woman', 'singing']
['beats', 'synth', 'drum', 'drums', 'electronic', 'dance', 'techno', 'house', 'beat']
['synth', 'drums', 'electronic', 'techno', 'beat']
['fast', 'electro', 'techno']
['beats', 'techno']
['drums', 'electronic', 'techno', 'beat']
['vocals']
['modern', 'pop', 'techno']
['male vocal', 'funk', 'loud', 'disco', 'man', 'pop', 'male', 'vocal']
['techno']
['not classical', 'electro', 'dance', 'techno', 'beat']
['funky', 'no strings', 'synth', 'bass', 'drums', 'electronic', 'fast', 'trance', 'dance', 'techno', 'house', 'beat']
['funky', 'weird', 'fast', 'trance', 'pop', 'dance', 'techno', 'beat']
['beats', 'funky', 'synth', 'funk', 'electronic', 'no vocals', 'disco', 'dance', 'techno', 'house', 'beat']
['techno']
['techno']
['dance', 'techno', 'upbeat']
['electronic', 'fast', 'dance', 'techno', 'beat']
['techno']
['dance', 'techno', 'beat']
['female', 'guitar', 'loud', 'rock']
['bass', 'loud', 'electronic', 'weird', 'electro', 'no vocals', 'trance', 'industrial', 'techno', 'upbeat']
['drums', 'electronic', 'no guitar', 'weird', 'electro', 'strange', 'techno']
['loud', 'rock', 'techno']
[]
[]
['guitar', 'weird', 'fast', 'heavy metal', 'rock']
['heavy', 'loud', 'fast', 'rock', 'techno']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'heavy metal', 'man', 'punk', 'rock', 'metal']
['hard rock', 'loud', 'fast', 'heavy metal', 'punk', 'rock', 'metal']
['opera']
[]
['duet', 'female', 'opera', 'choir']
['vocals']
[]
[]
['vocals', 'classical', 'female', 'voice', 'choral', 'opera', 'vocal', 'singing', 'choir']
['solo', 'drum', 'drums', 'tribal', 'indian', 'beat']
['drums']
['drums', 'fast']
['drums', 'tribal']
['percussion', 'drums', 'tribal']
[]
['hard rock', 'guitar', 'rock']
['male singer', 'man', 'male vocals', 'male', 'vocal', 'jazzy']
['jazz', 'loud', 'male singer', 'male vocals', 'blues']
['guitar', 'solo', 'loud', 'electric guitar', 'blues', 'rock']
['male vocal', 'jazz', 'guitar', 'male voice', 'male', 'blues', 'vocal']
['no voice', 'jazz', 'drums']
[]
['jazz', 'guitar', 'drums']
[]
['synth', 'no guitar', 'fast', 'dance', 'techno', 'beat']
[]
['beats', 'no singing', 'electronic', 'fast', 'dance', 'techno', 'beat']
[]
[]
['synth', 'electronic', 'trance', 'rock', 'dance', 'techno', 'beat']
['sitar', 'drums', 'chanting', 'indian', 'singing', 'oriental']
['sitar', 'drums', 'indian', 'oriental']
['male vocal', 'voice', 'male voice', 'male singer', 'man', 'male vocals', 'slow', 'male', 'vocal', 'soft', 'english']
['male vocal', 'vocals', 'no piano', 'voice', 'male voice', 'talking', 'man', 'male vocals', 'slow', 'techno']
['male vocal', 'quiet', 'voice', 'strange', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'singing', 'beat', 'soft']
[]
['female', 'guitar', 'female vocal', 'slow', 'woman', 'soft']
['piano']
['solo', 'piano']
['no voice', 'no vocal', 'violin', 'irish', 'piano', 'celtic']
['classical', 'violin', 'piano']
['guitar', 'fast', 'violin', 'piano']
['violin', 'piano']
['female', 'opera', 'celtic', 'slow', 'vocal', 'singing']
['classical', 'strings', 'classic', 'violin', 'orchestra']
['no voice', 'classical', 'violins', 'strings', 'violin', 'no vocals', 'cello']
['classical', 'violins', 'strings', 'violin']
['guitar', 'no flute']
[]
['guitar', 'acoustic', 'slow']
['guitar', 'strings', 'slow']
['guitar', 'classical guitar', 'slow']
['harp', 'slow']
['guitar']
['drums', 'electronic', 'fast', 'techno', 'beat']
['beats', 'funky', 'electronic', 'electronica', 'different', 'techno', 'beat']
['funky', 'voice', 'techno', 'beat']
['techno']
['ambient', 'female vocal', 'slow', 'vocal']
['ambient', 'classic', 'violin', 'slow']
['ambient', 'new age', 'synth', 'violin', 'female vocal', 'slow', 'soft', 'water']
[]
['vocals', 'ambient', 'new age', 'female vocal']
[]
['female', 'pop', 'female vocal', 'vocal', 'rock', 'singing']
['rock']
['guitar', 'fast', 'pop', 'female vocal', 'woman', 'singing']
['female']
['classical', 'opera']
['female', 'opera', 'female vocal', 'woman']
['harpsichord', 'classical']
['harpsichord', 'vocals', 'classical', 'female', 'quiet', 'female voice', 'strings', 'opera', 'violin', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing']
['female', 'drum', 'drums', 'fast', 'woman', 'techno']
['voice', 'drums']
['guitar', 'drums', 'rock']
[]
['rock']
[]
['female', 'guitar', 'voice', 'loud', 'drums', 'rock', 'female singer']
['electric', 'electronic', 'fast', 'electro', 'techno']
['electronic', 'fast', 'electronica', 'techno']
[]
['no vocals', 'techno']
[]
[]
['male vocal', 'horns', 'guitar', 'male voice', 'loud', 'fast', 'male singer', 'dark', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['guitar', 'loud', 'pop', 'rock']
['loud', 'electronic', 'fast', 'electronica', 'dance', 'techno', 'beat']
['voice', 'electronic', 'techno', 'house']
['dance', 'techno', 'beat']
['no singing', 'fast', 'trance', 'no singer', 'techno']
['fast', 'electronica', 'trance', 'disco', 'techno']
['electronic', 'fast', 'dance', 'techno']
['fast', 'dance', 'techno', 'beat']
['male']
[]
['men', 'choral', 'chant', 'male', 'monks', 'choir']
['piano']
['classical', 'piano']
['classical', 'piano']
['classical', 'piano', 'piano solo']
['classical', 'piano']
['classical', 'piano']
['piano']
['no vocal', 'piano']
['classical', 'solo', 'new age', 'loud', 'fast', 'piano']
['guitar', 'drums', 'female vocal']
['vocals', 'beats', 'female', 'female voice', 'bass', 'drums', 'electro', 'female vocal', 'woman singing', 'jazzy', 'female vocals', 'beat', 'upbeat']
['beats', 'drums', 'no vocal', 'no vocals', 'beat']
['vocals', 'female', 'female voice', 'drums', 'electronic', 'sad', 'vocal', 'woman', 'beat']
['beat']
['guitar', 'loud', 'not classical', 'fast', 'rock', 'beat']
[]
['guitar', 'loud', 'drums', 'fast', 'rock']
['classical', 'quiet', 'solo', 'piano', 'slow', 'calm']
['classical', 'quiet', 'solo', 'piano', 'slow', 'piano solo', 'soft']
['no vocal', 'piano']
[]
['classical', 'solo', 'piano', 'slow', 'calm', 'soft']
['strings', 'cello']
['classical', 'strings', 'classic', 'violin', 'low', 'instrumental', 'slow', 'cello']
[]
['vocals', 'weird']
['man', 'pop', 'male', 'singing']
['drums', 'no flute']
['vocals', 'pop']
[]
[]
['no vocals']
['harpsichord', 'classical', 'strings', 'no vocal', 'no vocals', 'indian', 'oriental']
['opera', 'vocal', 'soft']
['vocals', 'female', 'classic', 'opera']
['classical', 'female', 'opera', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'soft']
['violins', 'violin', 'celtic']
['ambient']
['violin']
['synth', 'electronic', 'fast', 'electro', 'techno', 'beat']
['synth', 'electronic', 'fast', 'modern', 'techno']
[]
['synth', 'electronic', 'no vocals', 'techno']
['synth']
['guitar', 'male', 'vocal']
['rock']
['male vocal', 'guitar']
['male vocal', 'guitar', 'male singer', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['guitar']
['male vocal', 'vocals', 'guitar', 'man singing', 'country', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['loud', 'electronic', 'fast', 'electro', 'techno']
['funky', 'electronic', 'fast', 'instrumental', 'dance', 'techno', 'beat', 'upbeat']
['fast', 'techno']
['weird', 'techno']
['ambient']
['quiet', 'ambient', 'space', 'weird', 'scary', 'soft', 'noise']
['eerie', 'quiet', 'ambient', 'drone']
[]
['ambient', 'dark']
[]
['synth']
[]
['new age', 'scary']
['ambient', 'dark']
[]
['ambient']
['classical', 'violins', 'strings', 'violin', 'slow']
['classical', 'female', 'violins', 'opera', 'violin', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
[]
['opera']
['strings', 'harp', 'piano']
['strings', 'harp', 'slow', 'soft']
['classical', 'guitar', 'strings', 'classic', 'harp']
['percussion', 'drum', 'drums', 'tribal', 'bells', 'slow']
['guitar', 'drum', 'loud', 'drums', 'rock']
['drum', 'drums', 'bells', 'slow']
[]
['jazz', 'guitar', 'electronic', 'jazzy']
['jazz', 'guitar', 'fast', 'piano', 'jazzy']
['jazz', 'guitar', 'piano', 'upbeat']
['jazz', 'no vocals']
['jazz', 'guitar', 'piano', 'jazzy']
['guitar', 'drums']
[]
['guitar', 'voice', 'male vocals']
['female', 'fast', 'pop', 'female vocal', 'vocal', 'woman', 'rock']
['pop', 'woman']
['singer', 'guitar', 'male']
['female', 'female vocal', 'woman']
['beats', 'no strings', 'ambient', 'synth', 'electronic', 'different', 'beat']
[]
['electronic', 'modern']
['guitar']
['guitar']
['no voice', 'guitar', 'solo', 'strings', 'no vocal', 'no vocals', 'no drums']
['classical', 'guitar', 'strings', 'string', 'fast']
['electronic']
['fast']
['jazz', 'drums', 'fast', 'piano', 'jazzy']
['drum', 'drums']
['jazz', 'drums']
['no voice', 'jazz', 'drums', 'piano', 'slow', 'jazzy']
['modern', 'piano']
[]
['drums', 'fast', 'piano']
['fast', 'piano']
['no voice', 'beats', 'percussion', 'drum', 'drums', 'beat']
['drums', 'beat']
['beats', 'new age', 'synth', 'drums', 'electro', 'dance', 'techno', 'beat']
['electronic', 'techno']
['beats', 'ambient', 'synth', 'drums', 'electronic', 'fast', 'electro', 'techno', 'beat']
['synth', 'fast', 'soft']
[]
['electronica', 'techno', 'beat']
['beats', 'no strings', 'drums', 'electronic', 'fast']
['electro', 'techno']
['vocals', 'beats', 'synth', 'woman', 'techno', 'beat']
['female', 'dance']
['electronic', 'female vocal', 'woman']
['female', 'synth', 'voice', 'electronica', 'singing', 'techno']
['classical', 'piano']
['classical', 'piano']
['solo', 'no flute', 'piano']
['piano']
['organ']
['man']
['soft rock', 'pop', 'sax', 'rock', 'singing']
['male vocal', 'jazz', 'piano', 'sax', 'jazzy']
['reggae']
['no vocal']
['beats', 'jazz', 'guitar', 'electronic', 'reggae', 'pop', 'jazzy']
['guitar', 'no singing', 'drums', 'reggae', 'no vocals', 'jazzy', 'beat']
['classical', 'strings', 'opera', 'orchestra']
['female', 'opera', 'slow', 'woman', 'singing']
['quiet', 'strings', 'opera', 'orchestral', 'orchestra', 'singing']
['opera', 'vocal']
['female', 'opera', 'violin', 'vocal', 'singing', 'english']
['vocals', 'female', 'woman', 'no drums']
['vocals', 'voice']
['quiet', 'low', 'slow', 'soft']
['opera']
['female', 'opera']
['classical', 'opera']
['quiet', 'strings', 'opera']
['opera']
['clapping']
['classical', 'quiet', 'strings', 'violin', 'slow', 'soft']
['vocals', 'classical', 'strings', 'string', 'violin', 'slow', 'vocal']
['classical', 'no guitar', 'opera', 'slow']
['male voice', 'opera', 'male']
['classical', 'strings', 'violin', 'orchestra', 'slow']
[]
['no piano', 'classical', 'quiet', 'strings', 'male voice', 'opera', 'violin', 'male opera', 'man', 'orchestra', 'slow', 'male', 'vocal', 'singing']
['male vocal', 'classical', 'male voice', 'opera', 'man singing', 'male opera', 'man', 'male']
['opera', 'man']
['classical', 'quiet', 'strings', 'violin', 'slow', 'soft']
['guitar']
['guitar', 'drums']
['beat']
[]
['ambient', 'percussion', 'drum', 'drums', 'no vocal', 'no vocals', 'rock']
['world', 'ambient', 'percussion', 'drum', 'drums', 'not rock', 'no guitar', 'tribal', 'beat']
['electronic', 'organ', 'rock']
['rock']
['male vocal', 'guitar', 'loud', 'male', 'vocal', 'rock']
['rock']
['choral', 'opera', 'low', 'male', 'singing']
['opera', 'operatic', 'man', 'slow', 'male', 'singing']
['opera', 'man', 'male', 'vocal']
['classical', 'opera', 'slow', 'male', 'vocal', 'singing']
['classical', 'solo', 'organ', 'opera', 'operatic', 'slow', 'male', 'singing']
['male vocal', 'opera', 'man', 'male']
['vocals', 'opera', 'male', 'indian']
['beats', 'percussion', 'drum', 'drums', 'electronic', 'fast', 'techno', 'beat', 'quick']
['reggae']
['male vocal', 'male voice']
['beats', 'guitar', 'pop']
['vocals', 'foreign', 'voice', 'male voice', 'electronic', 'man', 'pop', 'eastern']
[]
[]
[]
['classical', 'solo', 'violins', 'strings', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'cello']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'guitar', 'organ', 'instrumental']
['classical', 'strings']
['classical', 'strings', 'orchestra']
['classical', 'violin']
['classical', 'wind', 'strings', 'classic', 'no vocal', 'violin', 'no vocals', 'oboe', 'orchestra', 'slow', 'flute', 'baroque']
['indian']
['foreign']
['sitar', 'percussion', 'drums', 'no vocals', 'instrumental']
['bongos', 'sitar', 'drums', 'indian']
['drums', 'electronic', 'vocal', 'indian', 'singing', 'beat']
['sitar', 'middle eastern', 'modern', 'indian', 'beat']
[]
['piano']
['drums', 'techno', 'beat']
['male vocal', 'vocals', 'male voice', 'man singing', 'vocal', 'jazzy']
['vocals', 'pop', 'echo', 'techno', 'beat']
['electronic', 'pop', 'singing']
['drums', 'techno', 'beat']
['fast', 'techno']
['beats', 'dance', 'techno']
['techno']
['electro', 'techno']
['techno', 'beat']
['beats', 'fast', 'electro', 'no vocals', 'trance', 'techno', 'beat']
['electronic', 'fast', 'electronica', 'trance', 'dance', 'techno', 'beat']
['techno']
['flutes', 'slow', 'flute']
['wind', 'flutes', 'slow', 'flute']
['classical', 'flutes', 'flute']
[]
['no voice', 'flute']
['woodwind', 'flutes', 'slow', 'flute']
['flute']
['classical', 'classic', 'violin', 'orchestra']
['classical', 'violins', 'strings', 'orchestra']
['classical', 'orchestra']
[]
['classical', 'quiet']
[]
['classical', 'violins', 'classic', 'orchestra']
[]
['no voice', 'classical', 'ambient', 'synth', 'no singing', 'electronic', 'no vocal', 'fast', 'no vocals', 'flutes', 'techno', 'flute']
['synth', 'electronic', 'no vocal']
['synth', 'organ', 'echo']
[]
['synth', 'fast']
['chimes', 'no violin', 'bells', 'slow']
['chimes', 'bells', 'slow']
[]
['ambient', 'strings', 'string', 'low', 'bells', 'slow', 'cello']
['chimes']
['jazz', 'sax', 'rock']
['guitar', 'country', 'man', 'rock']
['country']
['vocals', 'loud', 'country', 'rock', 'singing']
['classical', 'guitar', 'solo']
['guitar', 'drums', 'slow']
['jazz', 'guitar', 'drums', 'mellow', 'slow', 'jazzy', 'soft']
['jazz', 'guitar', 'slow', 'jazzy']
['jazz', 'electronic', 'piano', 'jazzy']
['guitar', 'slow']
['not classical']
['guitar', 'drums', 'slow', 'jazzy']
['guitar']
['guitar', 'quiet', 'banjo', 'solo', 'strings', 'no vocals', 'piano', 'flute']
['guitar', 'strings', 'flute']
['flute']
['no voice', 'classical', 'quiet', 'flutes', 'slow', 'flute']
['ambient', 'no vocal', 'slow']
['spacey']
[]
['no beat', 'ambient', 'new age', 'loud', 'electronica', 'trance']
['ambient', 'new age']
['guitar', 'ambient', 'strings', 'flute']
['classical', 'guitar', 'quiet', 'piano']
['guitar']
['classical', 'guitar', 'solo', 'acoustic', 'no vocal', 'acoustic guitar', 'no vocals', 'slow', 'soft']
['classical', 'guitar', 'solo', 'acoustic', 'slow', 'no drums', 'calm', 'soft']
['guitar', 'solo']
['guitar', 'slow']
[]
[]
['male voice', 'drums', 'man singing', 'slow', 'male', 'vocal', 'rock']
['electronic', 'indian']
['electronic']
['electronic', 'electronica', 'man', 'techno']
['electronic', 'piano', 'male', 'techno']
[]
[]
['guitar']
['guitar']
['guitar', 'strings']
['no voice', 'guitar', 'quiet', 'strings', 'no vocal', 'no vocals', 'spanish']
[]
[]
['vocals', 'guitar', 'drums', 'piano', 'slow', 'vocal', 'singing']
['vocals', 'guitar', 'man', 'piano', 'slow']
['male vocal', 'guitar', 'drum', 'voice', 'drums', 'man', 'pop', 'male vocals', 'slow', 'vocal', 'rock']
['piano', 'rock']
[]
['spacey', 'jazz', 'ambient', 'synth', 'no singing', 'electronic', 'no vocal', 'piano', 'techno']
['solo', 'synth', 'bass', 'keyboard', 'electronic', 'weird', 'low', 'deep', 'slow']
['drums', 'techno', 'beat']
['no violin', 'techno']
['rock']
['classical', 'piano']
['vocals', 'piano', 'female vocals']
['guitar', 'male', 'not english']
['foreign', 'piano', 'spanish', 'singing']
[]
['slow', 'vocal']
['guitar', 'drums']
['male vocal', 'vocals', 'man', 'male', 'vocal', 'rock', 'singing']
[]
['guitar', 'bass', 'male']
['loud', 'drums', 'electronic', 'fast', 'no vocals', 'rock', 'techno']
['no voice', 'hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'no vocal', 'fast', 'no vocals', 'heavy metal', 'male vocals', 'male', 'rock', 'metal']
['male vocal', 'male voice', 'man singing', 'man', 'male vocals', 'male', 'vocal', 'rock']
['electronic', 'techno']
['ambient', 'electronic', 'piano', 'slow']
['electronic', 'no vocal', 'fast', 'no vocals']
['beats', 'synth', 'drums', 'electronic', 'fast', 'electro', 'dance', 'techno', 'beat']
['synth']
['beats', 'fast', 'dance', 'techno']
['quiet', 'ambient', 'electronic', 'echo', 'techno', 'soft']
['synth', 'electronic', 'techno']
[]
['electronic', 'dance', 'techno']
[]
['electronic', 'no guitar', 'electro', 'no singer', 'techno']
['synth', 'electronic', 'techno']
['synth', 'no vocals', 'techno']
[]
['electronic', 'industrial', 'techno']
['foreign', 'guitar', 'harp', 'slow', 'vocal', 'woman singing', 'soft']
['woman']
['harp', 'slow']
['opera', 'female singer']
['woman']
['female', 'female voice', 'woman']
[]
['guitar', 'drums']
['guitar', 'drum', 'no vocal']
['guitar', 'indian']
['guitar']
['jazz', 'guitar', 'spanish']
['guitar', 'drums', 'fast', 'spanish', 'guitars']
['guitar', 'no singing']
['guitar', 'drums', 'fast', 'piano', 'spanish']
[]
['vocal', 'woman']
[]
['female', 'voice', 'pop', 'female vocal', 'woman', 'woman singing']
['classical', 'quiet', 'strings', 'violin']
[]
[]
['strings']
['electronic']
['no voice', 'synth', 'electronic', 'weird', 'techno']
[]
['beats', 'electronic', 'fast', 'disco', 'dance', 'techno']
['fast', 'electro', 'dance', 'techno', 'clapping', 'beat']
['weird', 'fast', 'no flute', 'techno']
[]
['classical', 'quiet', 'strings', 'not rock', 'violin', 'slow', 'cello', 'soft']
['classical', 'strings', 'bass', 'classic', 'no guitar', 'violin', 'cello']
['classical', 'violin', 'cello']
['classical', 'strings', 'violin', 'instrumental', 'cello']
['classical', 'cello']
['echo', 'techno']
[]
['electric', 'female voice', 'ambient', 'new age', 'synth', 'drums', 'electronic', 'electro', 'electronica', 'strange', 'echo', 'voices', 'techno']
['electronic', 'slow', 'techno']
['electronic']
['spacey', 'ambient', 'synth', 'electronic', 'electro', 'electronica', 'female vocal', 'slow', 'techno']
['electric', 'ambient', 'synth', 'electronic', 'techno']
['female', 'ambient', 'synth', 'electronic', 'fast', 'electro', 'female vocal', 'slow']
['new age', 'drums', 'electronic', 'electronica', 'techno']
['world', 'synth', 'loud', 'electronic', 'fast', 'techno']
['electric', 'electronic']
[]
['synth', 'electronic', 'modern', 'vocal', 'woman', 'techno']
[]
[]
['no voice', 'electronic', 'no vocals']
['guitar', 'no vocal', 'fast', 'no vocals']
['beats', 'drums', 'electronic', 'fast', 'electronica', 'dance', 'techno', 'beat']
['synth', 'electronic', 'fast', 'no vocals', 'dance']
['electronic', 'upbeat']
['female', 'female vocal', 'slow']
['sitar', 'arabic', 'indian']
[]
['female', 'drums', 'indian', 'woman']
['harp', 'piano']
[]
['spacey', 'ambient', 'new age', 'piano']
[]
['ambient', 'new age']
[]
[]
[]
['ambient', 'new age', 'synth', 'electronic', 'piano', 'slow', 'soft']
['no piano']
[]
['vocals', 'slow', 'vocal', 'singing']
[]
['loud', 'rock']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'heavy metal', 'rock', 'metal']
['rock', 'metal']
['heavy', 'guitar', 'loud', 'drums', 'fast', 'rock', 'beat']
['rock']
['electronic', 'fast', 'techno']
['techno']
['synth', 'fast', 'techno']
['synth', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'techno', 'beat']
['synth', 'electronic', 'electro', 'no vocals', 'techno']
['electronic', 'fast', 'techno']
['female', 'ambient', 'drums', 'woman']
['guitar']
['drums', 'indian', 'beat']
['vocals', 'electronic', 'no vocals', 'techno', 'beat']
['not opera']
['electronic', 'female vocal']
['female', 'electronic', 'female vocal', 'vocal', 'woman']
['female', 'female voice', 'voice', 'girl', 'lol', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals', 'techno']
['guitar', 'strings', 'string', 'drums']
['male voice', 'no flute', 'pop', 'rock', 'singing', 'beat']
['pop', 'male vocals', 'english']
['piano', 'rock']
['male vocal', 'country', 'pop', 'male vocals', 'vocal', 'rock', 'singing']
[]
['guitar', 'acoustic', 'classical guitar', 'slow', 'soft']
['guitar']
['guitar', 'strings', 'acoustic', 'slow']
['singer', 'female', 'solo', 'drum', 'drums', 'no vocals', 'slow', 'vocal', 'beat']
['female']
['vocals', 'female', 'female voice', 'vocal', 'woman', 'woman singing', 'female vocals', 'beat', 'female singer']
[]
[]
['voice', 'loud', 'horn', 'female vocal', 'slow', 'woman']
[]
['female vocal', 'indian', 'woman', 'female vocals']
['indian']
['vocals', 'foreign', 'female', 'eastern', 'indian', 'woman', 'singing', 'female vocals', 'voices', 'not english']
[]
['woman', 'singing']
['foreign', 'vocal']
['harpsichord', 'woodwind', 'classical', 'guitar', 'harpsicord', 'medieval', 'flutes', 'slow', 'cello', 'flute']
['heavy', 'synth', 'drums', 'no vocal', 'techno', 'beat']
['beats', 'synth']
['sitar', 'middle eastern', 'drums', 'electronic', 'strange', 'eastern', 'indian']
['fast', 'techno', 'beat']
[]
['drum', 'drums', 'indian', 'clapping']
[]
['world', 'vocals', 'beats', 'foreign', 'female', 'drum', 'voice', 'drums', 'chanting', 'tribal', 'arabic', 'vocal', 'indian', 'female vocals', 'voices', 'clapping', 'choir', 'women']
['vocals', 'tribal', 'voices']
['guitar', 'acoustic', 'blues']
['guitar', 'fast', 'country']
['guitar']
['guitar', 'drum']
['male vocal', 'vocals', 'soft rock', 'guitar', 'pop', 'male vocals', 'male', 'rock', 'singing']
['guitar', 'rock']
['no guitar', 'indian', 'flute', 'soft']
['slow']
['world', 'female', 'ambient', 'synth', 'drum', 'voice', 'loud', 'drums', 'no vocal', 'irish', 'eastern', 'slow', 'vocal', 'indian', 'woman', 'woman singing', 'singing', 'women']
[]
['vocals', 'foreign', 'female', 'female voice', 'middle eastern', 'loud', 'drums', 'tribal', 'arabic', 'chant', 'modern', 'female vocal', 'eastern', 'vocal', 'indian', 'woman', 'woman singing', 'rock', 'singing', 'female vocals', 'not english', 'oriental']
['vocals', 'female', 'female vocal', 'eastern', 'woman', 'singing', 'female singer']
['indian', 'female vocals']
['harpsichord', 'classical', 'guitar', 'strings', 'piano', 'slow']
[]
[]
[]
['chimes', 'synth', 'loud', 'electronic', 'electronica', 'bells', 'techno', 'beat']
['chimes', 'bells', 'techno']
['guitar', 'drum', 'slow', 'rock']
['vocals', 'guitar', 'ambient', 'male']
[]
['sitar']
['sitar', 'strings', 'eastern']
['plucking', 'sitar', 'strings', 'string', 'instrumental', 'eastern', 'indian', 'oriental']
[]
['no vocals', 'instrumental']
['female', 'loud', 'female vocal', 'woman']
['guitar', 'soft']
['classical', 'guitar', 'quiet', 'classic', 'no vocal', 'slow', 'soft']
['guitar', 'piano', 'slow']
['guitar']
[]
['female opera', 'female', 'solo', 'opera', 'vocal', 'woman']
['classical', 'female', 'opera', 'woman', 'singing']
['opera', 'vocal', 'woman']
['female', 'opera']
[]
['female', 'classic', 'opera']
['classical', 'opera']
['classical', 'opera']
['techno', 'beat']
['ambient', 'electronic', 'no vocals', 'industrial', 'slow']
['synth', 'electronic', 'weird', 'indian', 'no drums']
['synth', 'drums', 'weird', 'jungle', 'indian', 'techno']
['new age', 'synth', 'electronic', 'electro', 'slow']
['drums', 'slow', 'beat']
['ambient', 'new age', 'synth', 'electronic', 'electro', 'slow', 'flute', 'beat']
[]
['solo', 'piano', 'slow']
['classical', 'oboe', 'piano', 'slow', 'flute']
['duet', 'clarinet', 'woodwind', 'classical', 'guitar', 'quiet', 'classic', 'no guitar', 'violin', 'oboe', 'piano', 'orchestra', 'slow', 'different', 'flute']
['ambient', 'new age', 'no vocal', 'modern', 'piano', 'slow', 'flute']
[]
[]
['new age', 'synth', 'calm']
['no piano', 'female voice', 'female vocal']
['new age', 'piano', 'slow']
['classical', 'ambient', 'new age', 'bells']
['chimes', 'ambient', 'synth', 'electronic']
[]
['spacey', 'ambient', 'electronic', 'no vocal', 'no vocals', 'techno']
['electronic']
['ambient', 'slow']
['chimes', 'bells']
['no voice', 'sitar', 'chimes', 'quiet', 'ambient', 'synth', 'voice', 'no vocal', 'no vocals', 'bells', 'mellow', 'piano', 'slow', 'woman', 'calm', 'soft']
[]
['chorus', 'quiet', 'chanting']
[]
['chorus', 'choral', 'opera', 'male', 'choir']
['chorus', 'vocals', 'classical', 'solo', 'chanting', 'choral', 'opera', 'chant', 'slow', 'vocal', 'singing', 'voices', 'choir']
['opera', 'male']
['vocals', 'female', 'female voice', 'pop', 'female vocal', 'piano', 'slow', 'vocal', 'woman singing']
[]
['female', 'electric', 'female voice', 'ambient', 'new age', 'synth', 'drum', 'girl', 'electronic', 'pop', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'dance', 'singing', 'techno']
['female', 'drums']
[]
['drum', 'drums']
[]
['male vocal', 'guitar', 'male voice', 'male', 'rock']
['male vocal', 'vocals', 'heavy', 'guitar', 'male voice', 'loud', 'electric guitar', 'man', 'male', 'vocal', 'rock', 'metal']
['male vocal', 'loud', 'heavy metal', 'male vocals', 'rock']
[]
['hard rock', 'male vocal', 'heavy', 'male voice', 'loud', 'drums', 'punk', 'male', 'rock', 'metal']
['male vocal', 'male voice', 'loud', 'male vocals', 'rock', 'metal']
['male', 'rap']
[]
['male vocal', 'electronic', 'techno', 'rap', 'hip hop']
['classical', 'violins', 'strings', 'violin', 'slow']
['classical', 'violin', 'harp', 'orchestra', 'slow']
['flute']
['classical', 'harp', 'piano', 'flute', 'soft']
['woodwind', 'slow', 'flute']
['classical', 'quiet', 'strings', 'light', 'slow', 'flute']
['classical', 'no vocal', 'flute']
['classical', 'strings', 'piano', 'slow', 'flute']
['classical', 'strings', 'classic', 'violin', 'orchestral', 'orchestra', 'flutes', 'flute']
['classical', 'strings', 'classic', 'fast', 'flute']
['classical', 'fast', 'flute']
['no piano', 'classical', 'strings', 'orchestra', 'flute', 'quick']
['classical', 'orchestra', 'flute']
['classical', 'strings', 'violin', 'flute']
[]
['classical', 'organ', 'flute']
['flute']
['classical', 'violin', 'harp', 'slow', 'flute']
['classical', 'violins', 'strings']
['classical', 'strings', 'fast', 'violin', 'orchestra']
['synth', 'drum', 'bass', 'drums', 'electronic']
['modern', 'piano']
['jazz', 'ambient', 'strange']
['percussion', 'echo']
['funky', 'drums', 'techno', 'beat']
['no voice', 'beats', 'synth', 'percussion', 'bass', 'drums', 'beat']
[]
['drum', 'modern']
[]
[]
['beat']
[]
['male voice', 'talking', 'rock', 'metal']
['hard rock', 'rock', 'metal']
['heavy metal', 'rock']
['guitar', 'loud', 'fast', 'hard', 'male vocals', 'rock', 'noise', 'metal']
['guitar', 'loud', 'drums', 'electric guitar', 'rock', 'metal']
['loud', 'fast', 'rock']
['hard rock', 'rock', 'metal']
['heavy', 'guitar', 'solo', 'loud', 'fast', 'heavy metal', 'rock', 'metal']
['hard rock', 'guitar', 'loud', 'fast', 'rock', 'metal']
['loud', 'drums', 'fast', 'rock']
['electronic', 'techno', 'beat']
['techno']
[]
[]
['drums', 'fast', 'techno']
['beats', 'fast', 'techno', 'beat']
['beats', 'drums', 'electronic', 'fast', 'techno', 'beat']
['fast', 'dance', 'techno']
['piano']
['synth', 'electronic', 'organ', 'fast']
['synth', 'keyboard', 'electronic', 'bells', 'piano']
[]
['electric', 'synth', 'electronic', 'no guitar', 'no vocal', 'no vocals', 'bells', 'techno']
['female voice', 'girl', 'drums', 'woman', 'woman singing', 'beat']
['female', 'female vocal', 'woman']
['female', 'synth']
['vocals', 'female', 'voice', 'female vocal', 'vocal', 'woman', 'singing']
['electronic', 'pop', 'female vocal', 'female vocals', 'beat']
['female', 'female voice', 'new age', 'voice', 'drums', 'electronic', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals']
['vocals', 'female', 'female vocal', 'woman', 'woman singing', 'singing']
[]
['repetitive', 'loud', 'fast', 'rock']
['bass', 'drums', 'man singing', 'irish']
['vocals', 'men', 'foreign', 'folk', 'male voice', 'drums', 'singing', 'not english']
[]
['men', 'singing']
['male voice', 'irish']
['electronic']
[]
['electronic', 'electro', 'electronica', 'modern', 'techno', 'beat']
['synth', 'electro', 'dance', 'techno']
['drums', 'fast', 'techno', 'beat']
['beats', 'synth', 'electronic', 'fast', 'electro', 'trance', 'modern', 'dance', 'techno', 'beat']
['synth', 'drums', 'electronic', 'techno']
['fast', 'electronica', 'techno']
['no voice', 'beats', 'drums', 'electronic', 'fast', 'trance', 'fast beat', 'dance', 'techno', 'beat']
['beats', 'drums', 'electronic', 'techno', 'beat']
['beats', 'drums', 'electronic', 'fast', 'disco', 'techno', 'beat']
[]
['quiet', 'electronic', 'bells']
['sitar', 'bells', 'indian']
['indian']
[]
['sitar', 'ambient', 'synth', 'drums', 'electronic', 'weird', 'drone', 'bells', 'indian', 'techno']
['techno']
['no voice']
['ambient', 'synth', 'drums', 'electronic', 'techno']
['ambient']
['new age', 'space', 'electronic', 'drone']
['beats', 'no vocal', 'strange']
['noise']
['drums', 'techno', 'noise']
['classical', 'quiet', 'strings', 'violin']
['violin', 'slow']
['violin']
['strings', 'drums', 'violin']
['violin', 'celtic', 'fiddle']
['classical', 'strings', 'violin']
['violins', 'violin']
['female', 'female voice', 'female vocal', 'vocal', 'indian', 'singing']
['classical', 'violin']
['classical', 'violins', 'strings', 'violin', 'chant', 'viola', 'slow', 'indian', 'woman', 'singing']
['female', 'voice', 'old', 'woman']
['female', 'voice', 'vocal', 'woman']
['singer', 'vocals', 'foreign', 'female', 'female voice', 'voice', 'female vocal', 'slow', 'vocal', 'indian', 'woman', 'woman singing']
['synth']
['electric', 'electronic', 'fast', 'techno', 'beat']
['techno']
['guitar', 'electronic', 'fast', 'techno']
['synth', 'fast', 'electro', 'techno']
['fast', 'techno']
['beats', 'fast', 'techno']
['fast', 'techno']
['techno']
['no voice', 'drums', 'electronic', 'fast', 'electronica', 'techno', 'beat']
['no vocal', 'techno']
[]
['electric', 'electronic', 'fast', 'electronica', 'techno']
['techno']
['new age', 'synth', 'drums', 'electronic', 'fast', 'rock', 'techno']
['electronic', 'techno']
['guitar', 'beat']
['guitar', 'fast', 'rock', 'beat', 'upbeat']
['guitar', 'fast']
['guitar', 'no vocal']
['guitar', 'fast']
['beats', 'quiet', 'synth', 'electronic', 'no vocal', 'different', 'techno', 'beat']
['beats', 'electronic', 'not classical', 'techno', 'house', 'beat']
['beats', 'quiet', 'electric', 'electronic', 'modern', 'slow', 'dance', 'techno', 'beat']
['no voice', 'ambient', 'percussion', 'drums', 'electronic', 'no vocal', 'no vocals', 'no singer', 'dance', 'techno', 'beat']
['rock']
['rock', 'metal']
['hard rock', 'vocals', 'guitar', 'drums', 'heavy metal', 'male vocals', 'rock', 'metal']
['rock', 'metal']
['no piano', 'classical', 'violins', 'synth', 'strings', 'classic', 'no vocal', 'violin', 'slow']
[]
['electronic', 'arabic', 'eastern', 'beat']
['drums']
['guitar', 'synth', 'loud', 'drums', 'not rock', 'fast', 'instrumental', 'rock']
['harpsichord', 'classical', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'fast', 'harp']
['harpsichord']
['classical', 'harpsicord']
['harpsichord', 'classical', 'harpsicord', 'classic']
['rock', 'metal']
['electric', 'synth', 'drums', 'piano']
[]
['keyboard', 'no vocal', 'no vocals', 'piano', 'spanish', 'slow']
['vocals', 'spanish']
['funky', 'jazz', 'guitar', 'funk', 'voice', 'bass', 'drums', 'fast', 'reggae', 'pop', 'spanish', 'vocal', 'jazzy', 'singing', 'voices']
['funk', 'male vocals', 'rock', 'voices']
['male vocal', 'vocals', 'guitar', 'voice', 'acoustic', 'country', 'male', 'vocal', 'rock', 'dance', 'beat']
['duet', 'male vocal', 'vocals', 'guitar', 'country', 'man', 'pop', 'male vocals', 'vocal', 'rock', 'singing']
['classical', 'quiet', 'synth', 'strings', 'electronic', 'no guitar', 'violin', 'orchestra', 'slow', 'rock']
['guitar', 'synth', 'loud', 'drums', 'fast', 'no vocals', 'rock', 'techno', 'beat']
['male voice', 'male vocals', 'male', 'rock', 'metal']
['hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'rock', 'different', 'metal']
['guitar', 'drums', 'electronic', 'no vocal', 'slow', 'rock', 'beat']
['vocals', 'classical', 'guitar', 'quiet', 'male voice', 'choral', 'opera', 'man', 'piano', 'male', 'vocal', 'singing', 'soft']
['male vocal', 'classical', 'guitar', 'voice', 'opera', 'man singing', 'man', 'slow', 'male']
['vocals', 'classical', 'male']
['opera', 'man', 'slow', 'singing']
['male vocal', 'classical', 'opera', 'male opera', 'man', 'harp', 'male', 'vocal']
['guitar', 'ambient', 'drum', 'strings', 'drums', 'no guitar', 'piano', 'slow', 'soft']
['classical', 'guitar', 'new age', 'strings', 'drums', 'spanish', 'beat']
['female', 'vocal']
[]
['ambient', 'talking']
[]
['synth', 'electronic', 'electronica']
['vocals', 'ambient', 'drums', 'slow', 'male']
['vocals', 'guitar', 'new age', 'synth', 'drums', 'electronic', 'no vocal', 'fast', 'male vocals', 'vocal', 'techno']
['loud', 'industrial', 'rock']
['guitar', 'bass', 'rock']
['rock']
['male vocal', 'guitar', 'male voice', 'loud', 'vocal', 'rock']
['rock']
['funky', 'drums', 'electronic', 'dance', 'techno', 'beat']
['voice', 'electronic', 'weird', 'electronica', 'techno', 'beat', 'rap', 'hip hop']
['funk']
['solo', 'piano', 'slow']
[]
['piano']
['no vocal', 'no vocals', 'piano']
['piano']
['classical', 'piano']
['male vocal', 'vocals', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal', 'singing', 'soft']
['man', 'slow', 'male']
['male vocal', 'vocals', 'male voice', 'male singer', 'pop', 'male vocals', 'slow', 'male', 'singing', 'soft', 'english']
['synth', 'drums', 'bells', 'piano', 'slow']
['jazz', 'ambient', 'synth', 'airy', 'electronic', 'instrumental', 'light', 'piano', 'slow', 'techno']
['slow']
['new age', 'bells', 'mellow', 'slow']
['no vocal']
['chanting']
['funky', 'synth', 'electronic', 'weird', 'slow', 'techno', 'beat']
['techno']
['no strings', 'drums', 'techno']
['guitar', 'electronic', 'no vocal', 'fast', 'techno']
['no piano']
['slow', 'male', 'vocal']
['male vocal', 'male vocals', 'slow', 'male']
['guitar', 'male voice']
['male vocal', 'slow', 'indian']
['strings', 'man']
['male vocal', 'foreign', 'male voice', 'man', 'male']
['classical', 'oboe', 'flute']
['opera']
['duet', 'clarinet', 'classical', 'strings', 'opera', 'violin', 'oboe', 'woman']
['opera']
['duet', 'classical', 'opera']
['vocals', 'classical', 'opera', 'male opera', 'operatic', 'singing']
[]
['classical', 'guitar']
['guitar', 'strings']
['opera']
['classical', 'female', 'guitar', 'voice', 'vocal', 'woman', 'female vocals', 'soft', 'female singer']
['female', 'solo', 'voice', 'medieval', 'opera', 'female vocal', 'woman', 'singing']
['classical', 'opera']
['female', 'opera']
['funky', 'voice', 'drums', 'electronic', 'weird', 'techno', 'beat']
['electronic']
[]
['funky', 'synth', 'funk', 'bass', 'drums', 'electronic', 'fast', 'no vocals', 'rock', 'beat', 'upbeat']
[]
['guitar', 'quiet', 'slow', 'calm', 'flute']
['flute']
['guitar', 'strings', 'horn', 'slow', 'flute']
['classical', 'guitar', 'slow', 'flute', 'soft']
['guitar', 'no vocal', 'slow', 'flute']
['beats', 'quiet', 'electronic']
['electronic']
['happy', 'synth', 'electronic', 'fast', 'electronica', 'techno', 'beat', 'quick']
['fast', 'techno']
['electronic', 'no vocal', 'techno']
['electronic']
['synth', 'electronic', 'no vocals', 'piano']
[]
[]
['fast']
[]
['synth', 'electronic', 'slow']
['spacey', 'ambient', 'synth', 'electronic', 'no vocals', 'instrumental', 'techno']
[]
['no beat', 'synth', 'electronic']
['spacey', 'ambient', 'new age', 'synth', 'electronic']
[]
['no piano', 'electric', 'synth', 'electronic', 'techno']
['bass', 'no vocal', 'techno']
['electric', 'synth', 'electronic', 'techno']
['ambient', 'electronic', 'weird', 'instrumental', 'techno']
['electronic', 'weird', 'techno']
['classical', 'flute']
[]
['classical', 'violins', 'strings', 'orchestra']
['female', 'quiet', 'opera', 'vocal', 'woman', 'cello']
['opera']
[]
['chorus', 'strings', 'choral']
['no piano', 'classical', 'strings', 'violin', 'light', 'flutes']
['electric', 'synth', 'electronic', 'no vocal', 'electronica', 'techno']
['drums', 'electronic']
[]
['synth', 'electro', 'modern', 'techno', 'beat']
['synth', 'drums', 'electronic', 'no guitar', 'reggae', 'pop', 'techno', 'beat']
['rock', 'techno']
['techno']
['electronic', 'fast', 'electro', 'light', 'techno']
['drums', 'modern']
[]
['ambient', 'fast', 'beat']
['no vocals']
['synth', 'fast']
['male voice', 'drums', 'beat']
['male voice', 'man', 'techno']
['vocals', 'voice', 'male voice', 'drums', 'electronic']
['soft']
[]
[]
['spacey', 'new age', 'electronic']
['no piano']
['strings', 'drums', 'rock']
['talking', 'drone', 'slow']
['eerie', 'noise']
['ambient', 'talking', 'weird', 'dark', 'noise']
[]
['ambient', 'dark']
[]
[]
[]
['ambient', 'voice', 'vocal']
['voice', 'talking']
[]
['no beat', 'ambient', 'noise']
[]
[]
[]
[]
['indian']
['chimes', 'guitar', 'quiet', 'ambient', 'drums', 'bells', 'indian', 'rock']
['sitar', 'indian']
['eerie', 'ambient', 'drums', 'weird', 'no vocals', 'slow', 'indian', 'scary', 'choir']
['ambient', 'no vocal']
['vocals', 'silence', 'female', 'quiet', 'slow', 'soft']
['guitar', 'no drums']
['no voice', 'harpsichord', 'classical', 'guitar', 'solo', 'strings', 'classical guitar', 'lute', 'spanish', 'slow']
[]
['classical', 'guitar', 'solo', 'no vocals', 'piano']
['classical', 'guitar', 'strings', 'piano', 'soft']
['classical', 'guitar', 'quiet', 'strings', 'classical guitar', 'harp', 'lute', 'piano']
['classical', 'guitar', 'classic', 'no vocal', 'no vocals', 'slow']
['guitar', 'quiet', 'banjo', 'slow']
['no voice', 'guitar', 'classic']
['classical']
['classical', 'guitar', 'no vocals', 'harp', 'slow']
['classical', 'no vocal', 'no vocals', 'piano']
['country', 'violin', 'irish', 'celtic', 'fiddle']
['classical', 'strings', 'string', 'fast', 'violin']
['classical', 'strings', 'violin']
['classical', 'strings', 'violin', 'irish', 'fiddle']
['strings', 'country', 'violin', 'irish', 'celtic']
['folk', 'drums', 'fast', 'violin', 'irish', 'celtic', 'fiddle']
['male vocal', 'vocals', 'guitar', 'solo', 'drum', 'voice', 'male voice', 'drums', 'male singer', 'man singing', 'no vocals', 'modern', 'man', 'pop', 'piano', 'male vocals', 'slow', 'male', 'rock', 'singing', 'soft']
['male vocal', 'drums', 'pop', 'rock']
['male voice', 'rock']
['heavy', 'guitar', 'electric', 'loud', 'heavy metal', 'hard', 'rock']
[]
['hard rock', 'heavy', 'guitar', 'loud', 'no vocals', 'hard', 'rock', 'metal']
['rock', 'metal']
['classical', 'violins', 'strings', 'flute']
['classical', 'violins', 'violin', 'instrumental', 'flutes', 'cello', 'flute']
['classical', 'happy', 'strings', 'fast', 'flutes', 'flute']
['classical', 'flute']
['classical', 'violins', 'strings', 'classic', 'violin', 'flute']
['classical', 'strings', 'violin', 'flute']
['classical', 'flute']
['synth', 'electronic', 'weird', 'fast', 'electro', 'techno', 'beat', 'upbeat']
['fast', 'dance', 'techno', 'beat']
['funky', 'drums', 'fast', 'trance', 'rock', 'dance', 'techno', 'beat']
['fast', 'trance', 'dance', 'techno']
['no voice', 'classical', 'fast', 'piano']
['piano']
['classical', 'solo', 'repetitive', 'fast', 'piano']
['piano']
['piano']
['solo', 'new age', 'piano', 'piano solo']
['no guitar', 'piano']
['piano']
['fast', 'fast beat', 'techno', 'house']
['voice', 'different']
[]
[]
['harpsichord', 'classical', 'harp']
[]
['harpsichord', 'classical']
['harpsichord', 'classical', 'fast', 'quick']
['harpsichord', 'classical', 'baroque']
['harpsichord', 'classical']
['no voice', 'electronic', 'no vocal', 'weird', 'fast', 'no vocals', 'electronica', 'dance', 'techno', 'beat']
['electronic', 'no vocals', 'techno', 'beat']
['beats', 'electronic', 'techno']
['electronic', 'techno']
['electronic', 'electro', 'techno']
[]
['beats', 'electric', 'synth', 'electronic', 'electro', 'dance', 'techno', 'beat']
['beats', 'synth', 'electronic', 'fast', 'electro', 'techno', 'beat']
['vocals', 'strings', 'drums', 'chanting', 'indian', 'singing']
['sitar', 'male vocal', 'foreign', 'voice', 'chanting', 'chant', 'male vocals', 'indian', 'singing']
['eastern', 'indian', 'oriental']
['vocal', 'indian', 'india']
['vocals', 'foreign', 'no piano', 'indian']
['strings', 'indian']
['strings', 'no vocal', 'violin', 'instrumental', 'jazzy', 'cello']
['guitar']
['classical', 'guitar', 'strings', 'classical guitar', 'no flute']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'acoustic', 'classic', 'piano', 'spanish']
['guitar', 'no vocals', 'lute']
['vocals', 'classical', 'female', 'guitar', 'female voice', 'girl', 'opera', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
[]
['foreign', 'ambient', 'voice', 'male voice', 'chanting', 'chant', 'eastern', 'slow', 'male', 'vocal', 'indian', 'india', 'singing']
['no piano', 'opera', 'indian']
['spacey', 'ambient', 'synth', 'airy', 'no guitar', 'no vocals', 'no singer', 'different']
['ambient', 'new age', 'violin', 'soft']
[]
['classical', 'ambient', 'birds', 'slow']
['violins', 'ambient', 'string']
['no drums']
['solo', 'loud', 'rock', 'guitars', 'singing']
['fast', 'rock']
['drums', 'rock']
['hard rock', 'heavy', 'guitar', 'solo', 'loud', 'drums', 'electric guitar', 'rock', 'metal']
['bongos', 'ambient', 'drums', 'techno']
['drums', 'no vocal', 'tribal', 'no vocals', 'indian']
['indian']
[]
['fast', 'indian']
['jazz', 'pop']
['funky', 'female', 'jazz', 'guitar', 'drum', 'pop', 'female vocal', 'vocal', 'woman']
[]
[]
[]
['guitar', 'electric guitar', 'rock']
[]
['strings', 'violin']
['strings']
['folk', 'strings', 'medieval', 'country', 'violin', 'irish']
['guitar', 'violin']
['fast', 'violin', 'irish']
[]
['male vocal', 'beats', 'voice', 'bass', 'male voice', 'drums', 'opera', 'piano', 'beat']
[]
[]
[]
['male vocal', 'vocals', 'male voice', 'drums', 'electronic', 'opera', 'man', 'male vocals', 'vocal']
['male vocal', 'jazz', 'drums', 'pop', 'spanish', 'male']
['guitar', 'drums', 'pop']
['male vocal', 'vocals', 'guitar', 'folk', 'male voice', 'country', 'man', 'male', 'vocal', 'rock', 'singing', 'voices']
['male vocal', 'vocals', 'guitar', 'man singing', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'singing']
['guitar', 'loud', 'drums', 'no vocals', 'instrumental', 'pop']
['country', 'pop']
['no voice', 'guitar', 'male voice']
['male vocal', 'guitar', 'folk', 'voice', 'male voice', 'male singer', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'rock']
['guitar']
['singer', 'male vocal', 'vocals', 'guitar', 'folk', 'voice', 'acoustic guitar', 'man', 'pop', 'male vocals', 'male', 'vocal', 'woman', 'singing']
['singer', 'male vocal', 'guitar', 'folk', 'voice', 'male voice', 'acoustic', 'acoustic guitar', 'male singer', 'country', 'lol', 'male vocals', 'male']
['electronic', 'electro', 'techno']
['ambient', 'drums', 'electronic', 'slow', 'beat']
['electronic', 'industrial', 'techno', 'beat']
[]
['male']
['guitar', 'pop', 'male', 'rock']
['male voice', 'male', 'singing']
['vocals', 'pop', 'vocal', 'rock']
[]
['female', 'lol', 'singing', 'not opera']
['vocals', 'no piano', 'female', 'violins', 'choral', 'vocal', 'singing', 'women']
['female', 'choir']
['voice']
['female']
['vocal']
['quiet', 'ambient', 'dark']
['ambient', 'weird']
['ambient', 'new age', 'slow']
['ambient', 'electronic', 'strange', 'slow']
['dark', 'scary', 'no drums', 'noise']
['no voice', 'ambient', 'loud', 'no guitar', 'no vocal', 'no vocals', 'noise']
['ambient', 'loud', 'bells', 'noise']
['noise']
['dark']
['classical', 'strings', 'violin']
[]
[]
['drums', 'techno']
['synth', 'drums', 'fast', 'techno', 'beat', 'upbeat']
['synth', 'drums', 'fast', 'techno']
[]
['electronic', 'fast', 'fast beat', 'piano', 'techno']
['vocals', 'guitar', 'male voice', 'loud', 'drums', 'electric guitar', 'man singing', 'male', 'vocal', 'rock']
['vocals', 'rock', 'singing']
['male vocal', 'male singer', 'modern', 'man', 'pop', 'male', 'vocal', 'rock']
['voice', 'loud', 'fast', 'vocal', 'rock', 'singing']
['rock']
['male vocal', 'vocals', 'guitar', 'loud', 'drums', 'fast', 'rock', 'singing']
['drums', 'rock']
['singer', 'hard rock', 'vocals', 'guitar', 'loud', 'punk', 'male', 'vocal', 'rock', 'metal']
['punk', 'male', 'rock']
['guitar', 'loud', 'electric guitar', 'rock']
['synth', 'techno']
['male vocal', 'pop', 'male']
['vocals', 'guitar', 'male singer', 'male', 'vocal']
['singer', 'male vocal', 'guitar', 'synth', 'male voice', 'loud', 'male singer', 'modern', 'pop', 'male vocals', 'male', 'vocal', 'rock']
[]
[]
['male vocal', 'male vocals', 'male', 'rock']
['male vocals', 'male', 'rock']
[]
['rock']
['female', 'drums', 'punk', 'rock', 'singing', 'metal']
['guitar', 'female voice', 'drum', 'rock']
['fast', 'rock']
['vocals', 'female', 'guitar', 'fast', 'electric guitar', 'punk', 'vocal', 'rock']
['classical', 'echo', 'piano']
['classical', 'strings', 'violin', 'sax', 'slow', 'soft']
['strings', 'violin', 'slow']
['ambient']
['slow']
['ambient', 'orchestra', 'slow', 'voices']
['slow', 'woman', 'choir']
['voices']
['strings', 'slow']
['female', 'ambient', 'new age', 'strings', 'female vocals', 'voices', 'choir']
['vocal']
['hard rock', 'punk', 'rock', 'metal']
['piano', 'noise']
[]
['male vocal', 'voice', 'strings', 'male voice', 'modern', 'man', 'pop', 'piano', 'male vocals', 'slow', 'male', 'singing']
['no voice', 'no singing', 'loud', 'no vocal', 'male singer', 'piano', 'slow', 'male', 'vocal']
['vocals', 'man singing', 'man', 'mellow', 'piano']
[]
['electronic', 'techno', 'beat']
['female', 'trance', 'dance', 'techno']
[]
[]
['beats', 'drum', 'drums', 'electronic', 'electro', 'no vocals', 'beat']
['synth']
['drums', 'rock', 'techno']
['female', 'drums', 'electronic', 'female vocal', 'vocal', 'woman', 'techno']
['female', 'female voice', 'loud', 'pop', 'female vocals']
['female', 'female voice', 'drums', 'electronic', 'fast', 'female vocal', 'vocal', 'female vocals', 'techno', 'female singer']
['female']
[]
[]
['ambient', 'electronic', 'indian', 'india', 'techno']
[]
['no guitar', 'no vocal', 'dark', 'synthesizer', 'slow']
['funky', 'no piano', 'electronic', 'fast', 'electro', 'slow', 'techno']
['guitar', 'electronic', 'techno', 'beat']
['guitar']
['classical', 'guitar', 'soft']
['guitar', 'solo', 'strings', 'acoustic', 'modern', 'soft']
['guitar', 'solo', 'acoustic']
['guitar']
[]
['drum', 'drums']
['drums']
[]
[]
['beats', 'funky', 'jazz', 'guitar', 'no singing', 'drums', 'electronic', 'organ', 'fast', 'piano', 'jazzy', 'techno', 'beat']
['jazz', 'funk', 'drums', 'fast', 'jazzy']
['jazz', 'drums', 'piano', 'jazzy']
['no voice', 'plucking', 'violin']
['violins', 'synth', 'strings', 'slow']
['classical', 'new age', 'strings', 'drums', 'violin', 'no vocals', 'bells', 'oriental']
['strings', 'drums', 'no vocal', 'violin', 'no vocals', 'beat']
['strings']
['no vocal', 'beat']
['jazz', 'guitar', 'country']
['drums', 'electronic', 'rock', 'beat']
['male', 'rock']
['female vocal', 'singing', 'upbeat']
[]
['guitar', 'drums']
['male vocal', 'soft rock', 'guitar', 'male voice', 'fast', 'country', 'pop', 'slow', 'male']
['male vocal', 'guitar', 'male voice', 'man', 'rock']
[]
['guitar', 'banjo', 'country', 'instrumental', 'pop']
[]
['strings', 'bass', 'no vocal', 'violin', 'slow']
['female', 'slow', 'vocal', 'singing', 'women']
['singer', 'female singing', 'vocals', 'female', 'guitar', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
['guitar']
['duet', 'vocals', 'violin', 'singing', 'female vocals']
['new age', 'vocal']
['sitar', 'beats', 'banjo', 'vocal', 'beat']
['indian']
['vocals', 'vocal', 'indian', 'woman', 'singing']
['guitar', 'oriental']
[]
[]
['classical']
['guitar', 'synth', 'piano']
['synth', 'no vocal']
['no voice', 'beats', 'ambient', 'synth', 'electronic', 'no vocal', 'fast', 'no vocals', 'slow', 'no singer', 'techno', 'beat', 'upbeat']
['classical', 'guitar', 'classic', 'piano', 'slow']
['classical', 'guitar']
['classical', 'flute']
['harpsichord', 'clarinet', 'classical', 'wind', 'trumpet', 'flute']
['harpsichord', 'clarinet', 'classical', 'no singing', 'trumpet', 'classic', 'oboe', 'old', 'flute', 'not opera', 'baroque']
[]
[]
['strings', 'orchestra']
['classical', 'strings', 'slow']
[]
['hard rock', 'guitar', 'loud', 'drums', 'rock', 'metal']
['hard rock', 'vocal', 'rock', 'singing', 'metal']
['guitar', 'electric', 'rock']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'electric guitar', 'heavy metal', 'rock', 'metal']
['sitar', 'indian']
['eastern']
['guitar']
['sitar', 'guitar', 'ambient', 'dark', 'no vocals', 'piano', 'eastern', 'slow', 'indian']
[]
[]
[]
['classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['woman']
['classical', 'female', 'opera']
['classical', 'string', 'opera', 'violin']
[]
['guitar']
['female', 'female vocal', 'woman', 'rock', 'singing']
['vocals', 'female', 'female vocal', 'slow', 'vocal', 'woman', 'rock', 'female vocals']
['harpsichord', 'guitar', 'violin', 'indian']
[]
['classical', 'strings', 'violin']
['violin']
['classic', 'violin', 'cello']
['harpsichord', 'classical', 'strings', 'violin', 'no vocals', 'harp', 'slow', 'soft', 'baroque']
['harpsichord', 'classical', 'strings', 'violin', 'harp', 'sad', 'slow', 'cello']
['harpsichord', 'classical', 'quiet', 'strings', 'harpsicord', 'classic', 'no vocal', 'violin', 'no vocals', 'slow']
[]
['classical', 'violin']
['classical', 'string', 'violin']
['classical']
[]
['slow']
['harpsichord', 'classical', 'strings', 'harpsicord', 'violin', 'slow', 'cello', 'baroque']
['harpsichord', 'classical', 'strings', 'cello']
['harpsichord', 'classical', 'strings']
['classical']
['classical', 'violin']
['harpsichord', 'classical', 'strings', 'string', 'violin', 'old', 'soft']
['harpsichord', 'no piano', 'classical', 'strings', 'string', 'fast', 'violin', 'old', 'cello']
['classical', 'strings', 'fast', 'violin']
['harpsichord', 'classical', 'strings']
[]
[]
['ambient', 'techno']
['synth', 'electronic', 'trance']
['ambient', 'new age', 'synth', 'drum', 'electronic', 'no vocal', 'instrumental', 'trance', 'dance', 'techno', 'beat', 'noise']
['ambient', 'synth', 'electronic']
['electronic', 'techno']
[]
['no voice', 'spacey', 'ambient', 'new age', 'synth', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'modern', 'techno', 'beat']
['ambient', 'synth', 'electronic', 'no guitar', 'techno']
['female', 'talking', 'woman', 'clapping']
['guitar', 'quiet', 'harp', 'slow']
['guitar', 'strings', 'harp', 'slow']
[]
['no voice', 'classical', 'oboe']
['harpsichord', 'horns', 'classical', 'fast', 'oboe']
['no vocals', 'light']
['electronic', 'bells']
['no vocal', 'no vocals']
['quiet', 'ambient', 'slow']
['sitar', 'indian']
['guitar', 'loud', 'weird', 'fast', 'indian', 'rock']
['sitar', 'loud', 'indian']
['sitar', 'loud', 'indian']
['loud', 'fast', 'indian']
['indian']
['synth']
['classical', 'spacey', 'ambient', 'new age', 'airy', 'slow', 'techno', 'soft']
[]
['ambient', 'airy', 'no vocal']
[]
['ambient', 'new age', 'synth', 'chanting', 'weird', 'voices', 'techno', 'noise']
[]
['ambient', 'no guitar', 'light']
[]
['electronic']
[]
['synth', 'drums', 'techno', 'beat']
['beats', 'synth', 'no vocal', 'weird', 'techno', 'beat']
['electronica', 'beat']
['female', 'guitar', 'bells']
['guitar', 'female voice', 'female vocal', 'woman']
['vocals', 'female', 'guitar', 'pop', 'piano', 'woman']
['bass']
['calm']
['ambient', 'no vocal', 'violin', 'low', 'instrumental', 'deep', 'slow', 'flute']
['woodwind', 'no piano', 'wind', 'ambient', 'horn', 'slow', 'india', 'cello', 'flute']
[]
['soft']
[]
['quiet', 'water']
['beats', 'fast', 'modern', 'techno', 'beat']
['fast', 'dance', 'techno']
['fast', 'techno']
[]
['fast', 'techno']
['techno']
[]
['ambient', 'no flute']
['guitar', 'synth', 'keyboard', 'loud', 'electronic', 'fast', 'piano', 'upbeat']
[]
[]
['female', 'strings', 'electronic', 'not classical', 'modern', 'jazzy']
['piano']
['guitar', 'bass', 'drums', 'pop', 'beat']
[]
['guitar', 'rock']
['male vocal', 'guitar', 'country', 'male', 'vocal', 'rock']
['country', 'male vocals', 'blues', 'rock']
[]
['male vocal', 'guitar', 'electric guitar', 'rock']
[]
['male', 'rock']
[]
['male', 'rock']
['guitar', 'drums', 'slow', 'rock', 'guitars']
['singer', 'hard rock', 'male vocal', 'guitar', 'male voice', 'man', 'male', 'rock', 'metal']
['hard rock', 'male voice', 'rock', 'metal']
['male vocal']
['male vocal', 'drums', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal']
['male vocal', 'guitar', 'drums', 'country']
['choir']
['guitar', 'drums', 'rock']
['singer', 'guitar', 'loud', 'male singer', 'male', 'rock']
['heavy', 'guitar', 'male voice', 'loud', 'electric guitar', 'hard', 'male', 'rock', 'metal']
['hard rock', 'loud', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'rock']
['spacey', 'synth', 'dark']
['vocals', 'female', 'arabic', 'indian']
['female', 'indian']
[]
['female', 'ambient', 'new age', 'voice', 'electronic', 'not rock', 'talking', 'female vocal', 'slow', 'vocal', 'woman']
['vocal', 'indian', 'woman', 'female vocals']
[]
['female', 'female voice', 'piano', 'slow', 'singing']
['foreign', 'female', 'voice', 'female vocal', 'piano', 'slow', 'woman', 'singing', 'soft']
[]
['vocals', 'female', 'spacey', 'voice', 'girl', 'piano', 'vocal', 'woman']
['vocals', 'foreign', 'classical', 'female', 'female voice', 'ambient', 'new age', 'airy', 'voice', 'female vocal', 'slow', 'vocal', 'indian', 'woman', 'singing', 'calm', 'not opera']
['ambient', 'no vocals', 'piano']
['funky', 'country']
['piano']
['male voice', 'pop']
['silence', 'quiet', 'electric', 'ambient', 'synth', 'electronic', 'organ', 'synthesizer', 'techno']
[]
['electronic', 'no vocal', 'techno', 'beat']
[]
['ambient', 'synth', 'electronic', 'instrumental', 'trance']
['ambient', 'new age', 'fast beat', 'slow', 'beat']
['synth', 'electronic', 'fast', 'trance', 'dance', 'techno']
['beats', 'electronic', 'fast', 'rock', 'dance', 'techno', 'house', 'beat']
['techno']
['synth', 'loud', 'fast', 'trance', 'dance', 'techno', 'house']
['fast', 'dance']
['guitar']
['guitar', 'fast', 'country']
['guitar', 'banjo']
['guitar', 'voice']
['guitar', 'slow']
[]
['vocals', 'guitar', 'solo', 'country', 'pop', 'male']
['male vocal', 'vocals', 'soft rock', 'guitar', 'male voice', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
[]
['guitar', 'rock']
['male vocal', 'vocals', 'guitar', 'male voice', 'vocal', 'rock']
['male vocal', 'vocals', 'female', 'country', 'man', 'pop', 'male', 'vocal', 'rock']
[]
['foreign', 'female', 'electronic', 'electro', 'female vocal', 'vocal', 'indian', 'woman singing', 'beat']
['beats', 'electronic', 'fast', 'violin', 'techno', 'beat']
['ambient', 'strings', 'violin', 'slow']
['strings', 'slow']
['classical', 'spacey', 'ambient', 'new age', 'strings', 'classic', 'violin', 'slow', 'cello']
['strings', 'violin']
['ambient', 'synth', 'drone']
['piano']
['classical', 'solo', 'no singing', 'piano', 'slow']
['classical', 'piano', 'slow']
['quiet', 'solo', 'piano', 'slow', 'soft']
['piano']
['classical', 'classic', 'piano', 'slow', 'soft']
['classical', 'guitar', 'strings', 'string', 'slow']
['female', 'indian', 'singing', 'techno']
['sitar', 'vocals', 'drums', 'electronic', 'violin', 'indian', 'techno', 'oriental', 'beat']
['female voice', 'pop', 'indian']
['synth', 'electronic', 'weird', 'man', 'male', 'vocal', 'techno']
['electronic', 'fast', 'electro', 'disco', 'techno', 'house']
['vocals', 'talking', 'man', 'woman', 'techno']
['electronic', 'woman', 'dance', 'techno']
[]
['rock']
['new age', 'electronic', 'no guitar', 'fast', 'fast beat', 'techno', 'beat']
['electronic', 'techno', 'beat']
['electronic']
['electronic', 'fast', 'electro', 'no vocals', 'electronica', 'trance', 'dance', 'techno', 'beat']
[]
['horns', 'spacey', 'electric', 'ambient', 'synth', 'electronic', 'weird', 'techno']
[]
['solo', 'wind', 'low', 'strange', 'slow', 'flute']
['ambient', 'horn', 'slow', 'flute']
['slow', 'flute']
['jazz', 'drums']
['guitar', 'funk', 'drums', 'rock', 'beat']
[]
['piano']
['jazz', 'drums', 'pop', 'piano', 'jazzy']
['jazz', 'piano', 'slow', 'jazzy']
['jazz', 'keyboard', 'loud', 'fast', 'rock', 'jazzy']
['jazz', 'piano']
['jazz', 'drums', 'electronic', 'fast', 'no vocals', 'piano']
['quiet']
['pop', 'slow']
['vocal', 'woman']
['guitar', 'pop']
['female', 'electronic', 'pop', 'vocal', 'woman', 'rock']
['classical', 'quiet', 'ambient', 'slow', 'soft']
['classical', 'ambient', 'synth', 'strings', 'electronic', 'slow']
[]
['guitar', 'slow']
['guitar', 'strings']
['guitar', 'ambient', 'classical guitar', 'piano', 'slow']
[]
['ambient', 'no vocals']
['classical', 'ambient', 'orchestra', 'slow', 'soft']
['classical', 'guitar', 'strings', 'no vocals', 'slow']
['drums', 'violin']
['classical', 'synth', 'strings', 'electronic', 'no vocals', 'instrumental', 'techno']
['middle eastern', 'drums', 'eastern', 'indian', 'beat']
['indian']
['indian', 'rock']
['instrumental', 'pop', 'indian', 'rock']
['sitar', 'guitar', 'middle eastern', 'drums', 'no vocal', 'fast', 'eastern', 'indian', 'rock', 'oriental', 'beat']
['vocals', 'female', 'female voice', 'girl', 'vocal', 'woman', 'not english', 'oriental']
[]
['vocals', 'foreign', 'eastern', 'vocal', 'indian']
[]
['drums', 'tribal', 'no flute', 'beat']
['no voices', 'percussion', 'drums', 'deep', 'slow']
['dark', 'slow']
[]
['no voice', 'wind', 'ambient', 'drums', 'slow']
['quiet', 'ambient', 'drum', 'slow']
[]
['male vocal', 'guitar', 'male', 'rock']
[]
[]
['male vocal', 'guitar', 'voice', 'male voice', 'country', 'male vocals', 'male', 'rock']
[]
['guitar', 'loud', 'rock']
['guitar', 'loud', 'electronic', 'rock']
['no piano', 'classical', 'strings']
['slow']
['ambient']
['classical', 'solo', 'fast', 'piano']
['no vocals', 'piano', 'slow']
['ambient', 'new age', 'piano']
['ambient', 'new age', 'synth', 'electronic', 'no vocals']
['no beat', 'ambient', 'new age', 'electronic']
['ambient']
['ambient', 'soft']
['synth']
['ambient', 'no vocals', 'techno', 'not opera']
['techno']
['vocals', 'beats', 'electric', 'ambient', 'synth', 'drums', 'electronic', 'fast', 'electro', 'modern', 'fast beat', 'slow', 'vocal', 'techno', 'beat']
['guitar', 'slow']
['guitar', 'blues']
['guitar', 'solo', 'folk', 'acoustic', 'no vocal', 'country', 'slow', 'blues']
['foreign', 'opera', 'irish', 'male', 'vocal', 'singing']
['guitar', 'electric guitar', 'rock']
['loud', 'man singing', 'punk', 'male', 'rock', 'metal']
['male vocal', 'heavy', 'heavy metal', 'rock', 'metal']
['no voice', 'guitar', 'drums', 'rock']
[]
[]
['male vocal', 'vocals', 'drum', 'voice', 'bass', 'loud', 'man singing', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['rock']
['talking', 'rock']
['heavy', 'guitar', 'loud', 'drums', 'electric guitar', 'rock', 'metal']
['rock']
['rock']
['hard rock', 'loud', 'electric guitar', 'rock', 'metal']
['choral']
['chorus', 'classical', 'choral', 'opera', 'choir']
['choir']
['choral', 'choir']
['chanting', 'no violin', 'choir']
['chorus', 'classical', 'choral', 'opera', 'choir']
['chorus', 'female', 'quiet', 'ambient', 'choral', 'chant', 'slow', 'singing', 'monks', 'choir']
['singing']
['classical', 'female', 'choral', 'opera', 'slow', 'choir']
['vocals', 'not english']
[]
['opera']
[]
['female', 'opera', 'singing', 'choir', 'women']
[]
[]
['opera', 'slow', 'vocal']
['female', 'opera']
[]
[]
['classical', 'female', 'not rock', 'opera', 'vocal', 'woman']
['classical', 'female', 'opera']
['classical', 'female', 'quiet', 'opera', 'harp', 'female vocal', 'slow', 'woman', 'female vocals']
['guitar', 'piano', 'slow']
['no piano', 'jazz', 'guitar', 'strings', 'bass', 'drums', 'slow', 'jazzy', 'flute']
['slow', 'jazzy', 'flute']
['guitar', 'strings', 'piano', 'slow', 'clapping']
['singer', 'female', 'female voice', 'modern', 'bells', 'pop', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'female singer']
['guitar', 'keyboard', 'no vocal', 'bells', 'piano', 'clapping']
[]
['foreign']
['male vocal', 'not english']
['arabic', 'man', 'vocal', 'singing']
[]
['male vocal', 'vocals', 'foreign', 'male voice', 'tribal', 'man', 'eastern', 'male', 'vocal', 'indian']
['guitar', 'country', 'blues']
['jazz', 'guitar', 'solo', 'acoustic', 'blues']
['guitar', 'blues']
['electronic', 'techno']
['no vocal', 'techno']
[]
['techno']
['strings']
['pop']
['jazz', 'guitar', 'pop', 'jazzy']
['female', 'female voice', 'female vocal', 'vocal', 'woman', 'female singer']
['pop', 'vocal', 'singing']
['female', 'woman']
[]
['opera', 'chant', 'male', 'choir']
['choral', 'opera', 'chant', 'slow', 'male', 'voices', 'choir']
['classical', 'choral', 'male', 'singing', 'choir']
['classical', 'chant', 'monks', 'choir']
['guitar', 'no vocal', 'spanish']
['guitar', 'string', 'fast']
['indian']
['guitar', 'indian', 'india']
['synth', 'fast', 'techno']
['singer', 'female voice', 'fast', 'woman', 'rock']
['male vocal', 'vocals', 'male voice', 'fast', 'pop', 'male vocals', 'rock', 'techno']
['hard rock', 'male vocal', 'fast', 'male vocals', 'male', 'vocal', 'rock']
['synth', 'electronic']
['guitar', 'synth', 'loud', 'electronic', 'weird', 'man', 'rock', 'singing']
['chorus', 'vocal', 'choir']
['chorus', 'vocals', 'no strings', 'female', 'voice', 'classic', 'no violin', 'choral', 'opera', 'vocal', 'woman', 'singing', 'voices', 'choir', 'women']
['chorus', 'choral', 'vocal', 'singing', 'choir', 'women']
[]
['new age', 'instrumental', 'woman']
[]
['female', 'female voice', 'drums', 'electronic', 'weird', 'vocal', 'indian', 'woman', 'beat']
['drums', 'electronic', 'no vocals', 'techno', 'beat']
['electronic', 'vocal', 'voices', 'techno', 'beat', 'hip hop']
['classical', 'strings', 'violin']
[]
['classical', 'strings', 'violin']
['classical', 'strings']
[]
[]
['classical', 'strings', 'violin']
[]
['classical', 'strings']
['classical', 'violins', 'strings']
['no piano', 'classical', 'violins', 'strings', 'violin', 'instrumental', 'orchestra']
['violin']
['classical', 'violin']
['no piano', 'classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'viola']
['violin', 'no vocals']
['harpsichord', 'clasical', 'classical', 'violins', 'strings', 'classic', 'no vocal', 'violin', 'baroque']
['pop']
[]
['female singing', 'female', 'girl', 'pop', 'woman']
['female singing', 'female', 'irish', 'pop', 'female vocal', 'vocal', 'woman', 'female vocals', 'upbeat']
['female', 'pop', 'english']
['guitar', 'drums', 'electronic', 'fast', 'techno', 'beat']
['drums', 'fast', 'techno', 'beat']
['fast', 'techno']
['no voice', 'beats', 'synth', 'drum', 'drums', 'electronic', 'fast', 'fast beat', 'dance', 'techno', 'beat']
[]
['piano']
[]
['no voice', 'synth', 'electronic', 'weird', 'no vocals']
[]
['synth', 'loud', 'electronic', 'slow', 'techno']
['ambient', 'strings', 'instrumental', 'piano', 'beat']
['slow']
['no voice', 'synth', 'strings']
['funky', 'horns', 'jazz', 'funk', 'trumpet', 'loud', 'drums', 'no vocal', 'fast', 'pop', 'rock', 'jazzy']
['funky', 'loud', 'fast', 'dance', 'hip hop']
[]
['synth', 'loud', 'electronic', 'fast', 'electro', 'electronica', 'pop', 'dance', 'techno', 'beat']
['harpsichord', 'classical', 'strings', 'medieval', 'no flute']
['harpsichord', 'solo', 'harpsicord', 'medieval', 'classic', 'baroque']
['classical', 'strings', 'violin']
['classical', 'strings', 'violin', 'dark', 'cello']
['female', 'drums', 'tribal', 'female vocal', 'woman']
[]
[]
['classical', 'guitar', 'strings', 'classic', 'acoustic guitar', 'harp', 'slow']
['guitar', 'harp']
['harpsichord']
['classical', 'guitar']
['guitar', 'slow']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'no vocal', 'no vocals', 'harp', 'lute', 'baroque']
['guitar']
['guitar', 'classic', 'classical guitar']
['no voice', 'fast', 'electro', 'techno', 'beat']
['fast', 'techno']
[]
['drums', 'industrial', 'techno', 'beat']
['guitar', 'drums', 'country', 'rock']
[]
['blues', 'rock']
['bass']
['guitar', 'new age', 'slow', 'techno']
[]
[]
[]
['classical', 'classic', 'piano']
['piano']
['piano']
['classical', 'solo', 'classic', 'piano']
['classical', 'quiet', 'solo', 'classic', 'low', 'piano', 'slow', 'soft']
['piano']
['classical', 'quiet', 'solo', 'dark', 'low', 'piano', 'slow']
['classical', 'guitar']
['male vocal', 'fast', 'man', 'male', 'rock', 'metal']
['hard rock', 'loud', 'male vocals', 'rock', 'singing', 'metal']
['vocals', 'guitar', 'loud', 'rock']
['loud', 'rock']
['no piano', 'guitar', 'loud', 'drums', 'rock']
['strings', 'opera']
[]
['female', 'opera']
['duet', 'chorus', 'classical', 'female', 'strings', 'choral', 'opera', 'violin', 'operatic', 'slow', 'soft']
['synth', 'bass', 'drums', 'electronic', 'techno', 'beat']
['electronic', 'electro', 'dance']
[]
['percussion', 'drums', 'weird', 'tribal', 'jungle', 'indian', 'flute']
['drums']
['percussion', 'drum', 'drums', 'jungle']
['beats', 'percussion', 'drum', 'drums', 'tribal', 'instrumental', 'jungle', 'beat']
['drums', 'electronic']
[]
[]
['loud', 'fast', 'modern', 'singing', 'techno']
['vocals', 'loud', 'pop', 'voices', 'beat']
['female', 'loud', 'fast', 'pop', 'rock']
['vocals', 'female', 'female voice', 'voice', 'loud', 'electronic', 'female vocal', 'techno']
['male voice']
['bass', 'piano', 'slow']
['medieval', 'drums', 'dark', 'piano', 'slow', 'beat']
['ambient', 'bass', 'dark', 'no flute', 'piano', 'slow', 'different', 'soft']
[]
['low', 'no flute', 'piano']
[]
['vocals', 'female', 'voice', 'piano']
['female', 'female vocal', 'piano', 'slow', 'woman', 'singing']
['piano']
['classical', 'cello']
['quiet']
[]
[]
['electronic']
['synth']
['synth', 'electronic', 'electro', 'no vocals', 'beat']
['electronic']
['plucking', 'no singing', 'no vocal', 'no vocals', 'harp', 'light', 'slow', 'oriental']
['guitar']
['classical', 'violins', 'strings', 'violin']
['guitar']
['male vocal', 'vocals', 'guitar', 'voice', 'male singer', 'male vocals', 'male']
['male vocal', 'guitar', 'male voice', 'country']
['vocals', 'guitar', 'voice', 'acoustic', 'country', 'man', 'pop', 'rock', 'singing']
['singing']
[]
['dance', 'techno']
['beats', 'funky', 'drums', 'electronic', 'fast', 'dance', 'techno', 'house', 'beat', 'upbeat']
['no vocal', 'no vocals', 'disco', 'dance', 'techno', 'beat']
['electronic', 'techno']
['electronic', 'fast', 'trance', 'disco', 'dance', 'techno', 'beat']
['techno']
['dance', 'techno', 'beat']
['fast', 'techno']
['dance', 'techno', 'beat']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'acoustic', 'classic', 'classical guitar', 'slow']
['classical', 'guitar', 'strings', 'classical guitar', 'harp', 'slow', 'baroque']
['harpsichord', 'classical', 'guitar', 'mellow', 'slow', 'calm']
['guitar']
['classical', 'guitar', 'acoustic', 'not rock', 'country']
['classical', 'guitar', 'strings', 'violin', 'slow', 'cello']
[]
['harpsichord', 'guitar', 'violin', 'no drums']
['violin']
['violin']
['classical', 'guitar', 'violin', 'instrumental']
['classical', 'guitar', 'strings', 'violin', 'slow']
['classical', 'violin', 'no vocals', 'slow', 'cello']
['opera', 'woman']
['classical', 'strings', 'opera', 'woman']
['voice', 'opera']
['female', 'opera', 'vocal']
['classical', 'opera', 'operatic', 'soft']
['opera', 'woman singing', 'soft']
['guitar']
['rock']
['male vocal', 'guitar', 'drums', 'vocal', 'rock']
['male vocal', 'vocals', 'heavy', 'guitar', 'drums', 'electric guitar', 'dark', 'rock', 'singing', 'metal']
[]
['drums', 'rock']
['male voice', 'man', 'rock']
['classical', 'violins', 'fast', 'orchestra', 'flutes', 'quick']
[]
[]
['flute']
['classical', 'quiet', 'ambient', 'no vocals', 'slow', 'flute']
['new age', 'flute']
['no vocal', 'calm', 'flute']
['wind', 'no vocal', 'no vocals']
['classical', 'wind', 'ambient', 'new age', 'no vocal', 'oboe', 'light', 'slow', 'flute']
[]
[]
[]
['harpsichord', 'no vocal']
['harpsichord', 'classical', 'strings', 'harpsicord']
['harpsichord']
[]
['harpsichord', 'classical', 'harpsicord']
['harpsicord']
['male vocal', 'vocals', 'guitar', 'electric', 'drums', 'modern', 'male', 'vocal', 'rock']
['guitar']
['vocals', 'guitar', 'drums', 'fast', 'vocal', 'rock']
['male vocal', 'male voice', 'man', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'vocals', 'voice', 'male voice', 'man', 'male vocals', 'male', 'singing', 'beat', 'metal', 'english']
['guitar', 'male vocals', 'male', 'rock']
['male vocal', 'vocals', 'male singer', 'male', 'rock', 'metal']
[]
['not classical', 'rock']
['guitar', 'rock']
['quiet', 'drum', 'drums', 'no flute', 'beat']
['new age', 'drum', 'drums', 'weird']
[]
['noise']
['ambient', 'drums', 'electronic']
['no voices', 'drums', 'indian']
[]
['strange']
['synth', 'drums', 'electronic', 'beat']
['percussion', 'drums', 'tribal', 'beat']
['ambient', 'synth', 'slow', 'scary']
['no piano', 'ambient', 'dark']
['electronic', 'weird']
['guitar', 'synth', 'electronic']
['guitar']
['guitar', 'no vocal', 'spanish']
['classical', 'guitar', 'fast', 'no vocals', 'spanish']
['guitar']
['voice', 'opera', 'arabic', 'chant', 'eastern', 'slow', 'vocal', 'indian', 'singing']
['world', 'male vocal', 'foreign', 'percussion', 'drum', 'drums', 'chanting', 'male singer', 'tribal', 'chant', 'echo', 'male vocals', 'male', 'indian', 'beat']
['drums', 'indian']
['sitar', 'middle eastern', 'drums', 'fast', 'indian', 'flute']
['male vocal', 'beats', 'men', 'foreign', 'middle eastern', 'percussion', 'drum', 'voice', 'male voice', 'drums', 'chanting', 'tribal', 'chant', 'man', 'jungle', 'eastern', 'vocal', 'indian', 'india', 'dance', 'beat']
['male vocal', 'middle eastern', 'drums', 'fast', 'arabic', 'indian', 'beat']
['guitar', 'strings', 'slow']
['rock']
['heavy', 'guitar', 'loud', 'heavy metal', 'rock', 'metal']
['rock']
['hard rock', 'guitar', 'loud', 'heavy metal', 'rock', 'metal']
['rock']
['hard rock', 'heavy', 'loud', 'rock', 'metal']
[]
['synth', 'organ']
['rock', 'beat']
[]
['beat']
['beats', 'ambient', 'drums', 'electronic', 'not rock', 'organ', 'weird', 'electronica', 'modern', 'slow', 'rock', 'jazzy', 'techno', 'beat']
['bass', 'loud', 'electronic', 'organ', 'electro', 'trance', 'dance', 'techno', 'beat']
['male vocal', 'loud', 'pop', 'singing']
[]
['male vocal', 'male voice', 'man singing', 'man', 'piano', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['male']
[]
['vocals', 'vocal', 'woman']
[]
[]
['female', 'opera', 'flutes', 'flute']
['synth']
['male vocal', 'pop', 'male']
['synth', 'drums', 'electronic', 'techno', 'beat']
['electronic', 'instrumental', 'pop', 'male', 'techno', 'upbeat']
[]
['electronic', 'talking', 'techno', 'choir']
['female voice', 'drums', 'electronic', 'fast', 'vocal', 'voices', 'techno', 'beat']
['vocals', 'singing']
['pop', 'beat']
['vocals', 'drums', 'electronic', 'tribal', 'pop', 'voices', 'techno', 'beat']
['vocals', 'singing', 'techno']
['no voice', 'guitar', 'strings', 'string', 'fast', 'no vocals', 'instrumental']
['guitar', 'strings', 'fast']
[]
['guitar', 'no vocals', 'piano']
['guitar', 'fast', 'harp', 'spanish']
[]
['chimes', 'strings', 'harp', 'piano']
['no voice', 'quick']
['classical', 'classic', 'harp']
['guitar', 'solo', 'happy', 'strings']
['guitar', 'strings', 'fast', 'harp', 'upbeat']
[]
[]
[]
['piano']
['classical', 'strings', 'no vocal', 'violin', 'sad']
['classical', 'quiet', 'violins', 'strings', 'no vocal', 'violin', 'no vocals', 'instrumental']
['classical', 'violin', 'cello']
['classical', 'violins', 'strings', 'violin', 'slow', 'baroque']
['classical', 'strings', 'violin']
['violins', 'violin']
['silence', 'classical', 'quiet', 'strings', 'classic', 'violin', 'no vocals', 'slow']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestra', 'cello']
['classical', 'violins', 'strings', 'violin', 'piano']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'violins', 'strings', 'violin', 'slow', 'cello', 'soft']
['classical', 'strings', 'classic']
['classical', 'violins', 'strings', 'classic']
['eerie', 'quiet', 'slow', 'flute', 'noise']
['quiet', 'slow', 'flute']
['flute', 'oriental']
['flute']
['flute']
['male vocal', 'loud', 'male vocals', 'rock']
['hard rock', 'male vocal', 'vocals', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'male', 'vocal', 'rock', 'singing', 'clapping', 'metal']
['drums', 'rock']
['guitar']
['classical', 'guitar', 'solo', 'slow', 'calm']
['new age', 'synth', 'slow']
['ambient', 'synth', 'no vocal', 'no vocals', 'pop', 'slow']
['synth', 'electronic', 'pop', 'slow']
[]
['ambient', 'new age', 'synth', 'electronic', 'bells', 'slow']
['no voice', 'tribal']
['new age', 'no vocal', 'jungle', 'techno']
['ambient', 'synth', 'different']
['vocals', 'ambient', 'drums', 'weird', 'indian', 'woman', 'voices']
[]
[]
['country', 'rock']
['male vocal', 'vocals', 'guitar', 'folk', 'strings', 'loud', 'country', 'violin', 'male vocals']
['male vocal', 'vocals', 'voice', 'male voice', 'loud', 'modern', 'pop', 'male vocals', 'vocal', 'rock', 'singing']
['rock']
['chimes', 'quiet']
['chimes', 'spacey', 'ambient', 'new age', 'trumpet', 'no vocal', 'no vocals', 'slow']
['classical', 'trumpet', 'electronic']
['chimes', 'no piano', 'ambient', 'trumpet', 'bells', 'soft']
['chimes', 'no piano', 'ambient']
['ambient', 'new age']
['ambient']
['ambient', 'new age', 'strings', 'no guitar', 'slow']
[]
['no voice', 'ambient', 'no vocals']
['ambient', 'new age']
['electric', 'ambient', 'new age', 'strings']
['chimes', 'ambient', 'new age', 'bells', 'slow']
['guitar']
['no singing', 'no vocal', 'country']
['guitar', 'banjo', 'light', 'guitars']
['guitar', 'guitars']
['guitar', 'no flute', 'slow']
['sitar', 'strings']
['plucking', 'sitar', 'guitar', 'strings', 'string', 'piano', 'eastern', 'indian', 'techno', 'oriental']
[]
['harpsichord', 'sitar', 'strings', 'loud', 'indian']
['sitar', 'guitar', 'strings']
['harpsichord']
['harpsichord', 'classical', 'classic']
['harpsichord', 'classical']
['harpsichord', 'classical', 'solo', 'harpsicord']
['harpsichord', 'classical', 'medieval', 'organ', 'piano']
['harpsichord', 'classical', 'piano']
['harpsichord', 'classical']
['harpsichord', 'classical']
[]
['guitar', 'bass']
[]
['vocals', 'no piano', 'female', 'male voice', 'pop', 'vocal', 'rock', 'singing']
['rock']
['male vocal', 'vocals', 'male voice', 'drums', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['beats', 'drums', 'electronic', 'slow', 'indian', 'beat']
['strings', 'no vocal', 'fast', 'upbeat']
['not classical', 'fast', 'eastern', 'indian', 'techno']
['electronic', 'fast', 'no vocals', 'techno']
['drums', 'fast', 'pop', 'indian', 'upbeat', 'quick']
['harpsichord', 'classical', 'solo', 'strings', 'violin', 'viola', 'cello']
['no piano', 'classical', 'strings', 'violin']
[]
['classical', 'slow']
['harpsichord', 'classical', 'guitar', 'quiet', 'solo', 'folk', 'strings', 'string', 'old', 'slow', 'soft']
['classical', 'guitar', 'strings', 'no vocals', 'instrumental', 'harp', 'lute', 'slow']
['guitar']
['piano', 'slow']
['classical', 'piano']
['piano']
['classical', 'piano', 'slow', 'soft']
['classical', 'quiet', 'no vocals', 'piano', 'slow', 'soft']
['classical', 'quiet', 'piano', 'slow', 'soft']
['classical', 'classic', 'piano']
['classical', 'fast', 'piano']
['classical', 'piano']
['classical', 'classic', 'piano']
[]
['classical', 'strings', 'harpsicord', 'violin', 'not opera']
[]
['flute']
['harpsichord', 'classical', 'strings', 'harpsicord', 'organ', 'violin', 'orchestra', 'flute']
['harpsichord', 'classical', 'violin', 'baroque']
['no piano', 'classical', 'violins', 'violin']
['classical']
['classical', 'strings', 'violin', 'slow']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'slow']
['classical', 'violins', 'strings', 'piano', 'slow']
['classical']
[]
['violin', 'cello']
['duet', 'no piano', 'classical', 'strings', 'string', 'violin', 'deep', 'viola', 'slow', 'cello']
['classical', 'solo', 'violin', 'cello']
['no beat', 'solo', 'violin', 'slow']
['classical', 'strings', 'classic', 'string', 'violin', 'slow', 'cello']
['classical', 'strings', 'classic', 'violin', 'slow', 'cello']
[]
['violins', 'violin', 'cello']
['no voice', 'classical', 'violins', 'no vocal', 'violin']
['classical', 'solo', 'violins', 'strings', 'string', 'violin', 'cello', 'soft']
['classical', 'violins', 'strings', 'cello']
['classical', 'strings', 'violin', 'cello', 'baroque']
['classical', 'strings', 'classic', 'violin', 'low', 'slow', 'cello', 'baroque']
['classical', 'violins', 'strings', 'violin', 'orchestra', 'cello']
['classical', 'strings', 'violin', 'sad', 'slow', 'baroque']
['classical', 'strings', 'cello', 'soft']
['violin']
['classical', 'strings']
[]
[]
['classical', 'violins', 'strings', 'violin']
['guitar']
['guitar', 'strings']
['guitar', 'quiet', 'strings', 'slow']
['guitar']
['classical']
['guitar', 'strings']
['guitar', 'acoustic']
['harpsichord', 'classical', 'guitar', 'quiet', 'acoustic guitar', 'harp', 'slow']
['guitar']
['classical', 'guitar', 'solo', 'piano', 'baroque']
['classical', 'guitar', 'classic']
['classical', 'guitar', 'acoustic', 'classical guitar', 'spanish', 'slow']
['male vocal', 'new age']
['chanting', 'not rock', 'chant', 'choir']
['vocals', 'chanting', 'slow']
['male vocal', 'choral', 'opera', 'slow', 'male']
['classical', 'ambient', 'slow']
['electronic']
['vocals', 'guitar', 'drums', 'male', 'vocal', 'rock']
['guitar', 'rock']
[]
['loud', 'male', 'rock', 'metal']
['funky', 'guitar', 'funk', 'drums', 'reggae', 'modern']
['guitar']
[]
['guitar', 'banjo', 'solo', 'acoustic', 'country', 'blues', 'guitars', 'jazzy']
['guitar', 'blues']
['quiet', 'drums', 'noise']
['ambient', 'drums', 'fast']
['drums']
[]
['no strings', 'ambient', 'drums', 'different', 'beat', 'water']
['drums', 'noise']
['no voice', 'drums']
['ambient', 'drums', 'soft', 'water']
['no voice', 'no voices', 'ambient', 'no vocal', 'dark']
['eerie', 'no beat', 'ambient', 'loud', 'drums', 'drone', 'deep', 'noise']
['ambient', 'space', 'weird', 'dark', 'no vocals', 'drone', 'calm', 'noise']
[]
['ambient', 'electronic']
['ambient']
[]
['no voice', 'eerie', 'ambient', 'synth', 'drums', 'dark', 'industrial', 'echo', 'slow', 'techno']
['loud', 'dark', 'no vocals']
[]
[]
[]
['electronic', 'industrial', 'techno', 'noise']
['ambient', 'repetitive', 'electronica', 'industrial', 'techno']
['ambient']
['ambient', 'electronic', 'no guitar', 'dark', 'soft']
['quiet', 'chanting', 'echo']
['spacey', 'slow']
[]
['ambient', 'airy', 'weird', 'no vocals', 'lol', 'industrial', 'noise']
['no voice', 'ambient', 'new age', 'synth', 'drums', 'tribal', 'dark', 'drone', 'industrial']
['ambient', 'drums', 'electronic', 'no vocal']
[]
['techno']
[]
['pop', 'woman', 'singing']
['vocals', 'female', 'guitar', 'female voice', 'female vocal', 'vocal', 'woman', 'woman singing', 'rock', 'singing', 'female vocals']
[]
['funky', 'guitar', 'drums', 'country', 'blues', 'rock']
['guitar', 'folk', 'country', 'blues']
['sitar', 'guitar', 'banjo', 'strings', 'country', 'blues']
['guitar', 'no vocal', 'country', 'blues']
[]
['female', 'guitar', 'folk', 'voice', 'loud', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'female vocals', 'not opera', 'female singer', 'english']
[]
['quiet', 'new age', 'strings', 'piano', 'slow', 'soft']
['string', 'violin']
['guitar', 'violins', 'violin']
[]
['classical', 'irish']
['strings', 'weird', 'indian']
['opera', 'choir']
['choral', 'choir']
['choral', 'opera', 'male', 'choir']
['chorus', 'choral', 'opera', 'male vocals', 'male', 'not opera', 'choir']
[]
['loud', 'electronic', 'weird', 'fast', 'techno', 'beat', 'noise']
['heavy', 'synth', 'electronic', 'no vocal', 'electro', 'dark', 'modern', 'industrial', 'hard', 'rock', 'techno', 'beat']
['loud', 'fast', 'rock', 'techno', 'noise']
['beats', 'quiet', 'ambient', 'slow', 'techno', 'beat']
['female', 'voice', 'drums', 'electronic', 'fast', 'pop', 'woman', 'techno']
['synth', 'drums']
['ambient', 'drums', 'electronic', 'not classical', 'pop', 'slow', 'rock', 'singing', 'techno']
['guitar', 'rock']
['country']
['singer', 'man', 'male']
['guitar', 'country']
['rock']
['classical', 'violin', 'cello']
['classical', 'strings', 'cello']
['classical', 'solo', 'violin', 'no vocals', 'cello']
['classical', 'violin', 'cello']
['classical', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'violins', 'violin', 'cello']
[]
[]
['chimes', 'no piano', 'drums', 'bells', 'flute']
['no vocals', 'slow', 'flute']
['flute']
['not rock', 'flute']
['flute']
['drums']
['guitar', 'rock']
['fast', 'punk', 'vocal', 'rock', 'singing', 'metal']
['rock']
[]
['male vocal', 'guitar', 'rock']
['fast', 'electric guitar', 'rock']
['synth', 'drums', 'electronic', 'weird', 'beat']
['no voice', 'synth', 'drums', 'techno', 'beat']
['male vocal', 'male voice', 'fast', 'pop', 'male vocals', 'male', 'rock']
['rock']
[]
['male voice', 'rock']
[]
['male vocal', 'foreign', 'voice', 'male voice']
[]
['male vocal', 'foreign', 'arabic']
[]
['bass', 'drums', 'electronic', 'no guitar', 'slow', 'techno', 'beat']
['beats', 'bass', 'drums', 'beat']
['electronic', 'modern', 'beat', 'soft']
['synth', 'drums', 'beat']
[]
['new age', 'synth', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'modern', 'fast beat', 'slow', 'techno', 'beat', 'soft']
['electronic', 'techno']
['electronic', 'electro', 'techno']
[]
['drums', 'weird', 'noise']
[]
[]
['voice']
['male']
['guitar', 'opera', 'man', 'singing']
['harpsichord', 'male vocal', 'vocals', 'male voice', 'male', 'singing']
['foreign', 'guitar', 'folk', 'male voice', 'opera', 'man', 'male vocals', 'male', 'singing', 'not english']
['beats', 'ambient', 'techno', 'beat']
['techno', 'beat']
['techno']
['beats', 'synth', 'fast', 'techno']
['drums', 'fast', 'dance', 'techno', 'beat']
[]
['electric', 'drums', 'techno', 'beat']
['beats', 'electronic', 'fast', 'rock', 'techno', 'beat']
['silence', 'foreign', 'quiet', 'drum', 'voice', 'bass', 'talking', 'low', 'slow', 'vocal']
['male vocal', 'techno']
[]
['electronic', 'fast', 'dance', 'techno']
['loud', 'heavy metal', 'rock', 'metal']
['hard rock', 'rock', 'metal']
['talking', 'man', 'vocal']
['foreign', 'voice', 'talking', 'man', 'male vocals', 'male', 'vocal', 'not opera']
['voice', 'male']
['voice', 'talking', 'vocal']
['foreign', 'male voice', 'chanting', 'opera', 'chant', 'vocal']
['choral', 'choir']
['chimes', 'electronic', 'organ', 'bells']
[]
['strange', 'no flute']
['drums', 'weird', 'fast', 'different', 'noise']
[]
['drums']
['vocals', 'female voice', 'drums']
[]
['ambient', 'drum', 'drums', 'beat']
['beats', 'percussion', 'drums', 'fast', 'techno', 'beat', 'upbeat']
[]
['new age', 'synth', 'drums', 'electronic', 'weird', 'electro', 'tribal', 'electronica', 'strange', 'techno']
['woman', 'beat']
['female', 'drums', 'woman', 'singing', 'female vocals', 'techno', 'beat']
['no flute']
['male vocal', 'violins', 'voice', 'strings', 'male voice', 'violin', 'male', 'vocal', 'cello']
['singer', 'male vocal', 'vocals', 'guitar', 'voice', 'strings', 'male voice', 'violin', 'man', 'piano', 'slow', 'vocal', 'calm']
['slow']
['piano', 'vocal']
['harpsichord', 'classical', 'strings', 'piano']
['silence', 'quiet']
['ambient']
['ambient', 'synth', 'electronic', 'trance', 'slow']
[]
['ambient', 'drums', 'instrumental', 'strange', 'techno']
['ambient', 'new age', 'synth', 'electronic', 'electro', 'techno']
[]
[]
['no voice', 'synth', 'electronic', 'no vocal', 'electronica', 'dance', 'techno']
['ambient', 'synth', 'slow', 'techno']
['electronic', 'slow']
['ambient', 'slow']
['vocals', 'guitar', 'drums', 'mellow', 'light', 'slow', 'vocal', 'singing', 'soft']
['vocals', 'vocal']
[]
['male']
['choir']
[]
['male', 'choir']
['chanting', 'chant', 'man', 'male', 'monks', 'choir']
['chorus', 'male vocal', 'male voice', 'chant', 'male', 'vocal', 'choir']
['slow', 'flute']
['classical', 'flute']
[]
['harpsichord', 'classical', 'guitar', 'harpsicord', 'medieval', 'harp']
['irish', 'flute']
['flute']
['hard rock', 'guitar', 'male voice', 'loud', 'male vocals', 'rock']
['drums', 'rock']
['guitar', 'male voice', 'hard', 'male vocals', 'rock']
['heavy', 'rock', 'metal']
['guitar']
['classical', 'guitar', 'quiet', 'no violin', 'piano', 'slow', 'soft']
[]
['guitar', 'strings', 'instrumental', 'piano', 'slow', 'soft']
['techno']
['drums', 'fast', 'trance', 'disco', 'dance', 'techno', 'beat']
['no vocal', 'fast', 'techno']
['fast', 'dance', 'techno']
['fast', 'vocal', 'techno']
['electronic', 'fast', 'woman', 'dance', 'female vocals', 'techno']
['chant', 'deep']
['chanting', 'low', 'chant', 'deep', 'male']
['choral', 'choir']
['choral', 'male', 'monks']
['chanting', 'opera', 'male', 'choir']
['vocals', 'choral', 'chant', 'male', 'vocal', 'choir']
['opera']
['medieval']
['foreign', 'classical', 'folk', 'strings', 'spanish', 'not english']
['female']
['quiet', 'wind', 'ambient', 'drums', 'dance', 'no drums', 'beat']
['beats', 'ambient', 'repetitive', 'electronic', 'weird', 'fast', 'no vocals', 'techno', 'beat']
['beats', 'synth', 'electronic', 'fast', 'disco', 'dance', 'techno', 'beat', 'upbeat']
['synth', 'percussion', 'drums', 'modern', 'dance', 'techno', 'beat']
['drums', 'fast', 'techno']
['female', 'drums']
['female voice', 'drum', 'female vocal', 'slow', 'woman']
['slow']
['slow']
[]
['violin']
['male vocal', 'guitar', 'male', 'rock']
['guitar', 'loud', 'male', 'rock', 'singing']
['male vocal', 'male voice', 'fast', 'man singing', 'male', 'rock']
['male vocal', 'guitar', 'loud', 'rock']
['rock']
['loud', 'drums', 'fast', 'rock']
['classical', 'female', 'voice', 'strings', 'violin', 'slow', 'singing', 'cello']
[]
[]
['female', 'female voice', 'ambient', 'piano', 'woman', 'woman singing', 'soft']
['piano', 'vocal', 'female vocals']
['female', 'female vocal', 'woman', 'female vocals']
['vocal']
['harpsichord', 'classical', 'strings', 'harpsicord', 'organ', 'fast']
['harpsichord']
['new age', 'electronic', 'slow']
[]
[]
['voice', 'loud', 'fast', 'pop', 'rock', 'singing']
['classical', 'violin']
['classical', 'strings', 'violin', 'no drums', 'cello']
['classical', 'strings', 'classic', 'violin', 'cello']
['classical', 'strings', 'classic', 'violin', 'cello']
['classical', 'solo', 'strings', 'cello']
['classical', 'classic', 'violin']
['classical', 'solo', 'strings', 'violin', 'slow', 'cello']
[]
['classical', 'violin']
['classical', 'strings', 'violin']
['classical', 'strings', 'fast', 'violin']
['classical', 'quiet', 'violin']
['classical', 'strings', 'violin']
['classical', 'solo', 'strings', 'violin', 'slow']
['classical', 'solo', 'strings', 'no vocal', 'violin']
['classical', 'violins', 'strings']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin']
[]
[]
['vocals', 'female', 'quiet', 'female voice', 'low', 'mellow', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'voices', 'soft', 'choir', 'women']
['guitar', 'slow']
['sitar', 'no vocal', 'no vocals', 'slow', 'indian']
[]
['sitar', 'synth', 'slow']
['sitar']
['sitar', 'guitar', 'slow', 'indian']
[]
['sitar', 'slow']
['sitar', 'bass', 'drums', 'no vocals', 'slow']
['jazz', 'no vocal', 'sax', 'slow', 'jazzy']
['drums', 'no guitar']
['synth', 'drums']
['jazz', 'new age', 'trumpet', 'violin', 'sax', 'jazzy', 'beat']
['electronic', 'dance', 'techno', 'hip hop']
['electro', 'dance', 'techno']
['drums', 'dance', 'techno']
['heavy', 'loud', 'fast', 'male', 'rock', 'dance', 'techno', 'metal']
['voice', 'talking', 'dance', 'techno']
[]
['beats', 'electronic', 'techno']
['synth', 'fast', 'electronica', 'techno']
[]
['electronic', 'techno']
['electronic']
['modern']
['male vocal', 'male voice', 'man', 'male', 'rock', 'singing', 'metal', 'english']
['male vocal', 'male voice', 'male vocals', 'male', 'vocal', 'rock', 'metal', 'english']
['harpsichord', 'no piano', 'female', 'strings', 'opera', 'operatic', 'slow', 'woman', 'cello', 'female vocals', 'baroque']
['chimes', 'quiet', 'ambient', 'synth', 'electronic', 'dark', 'bells']
['no piano', 'ambient', 'synth', 'classic']
[]
['classic', 'no violin', 'choral', 'opera', 'orchestra', 'scary']
['classical', 'strings', 'slow']
[]
['ambient']
['ambient', 'slow']
['no voice', 'ambient', 'synth', 'electronic', 'no vocal', 'no vocals']
[]
['quiet', 'ambient', 'electronic', 'slow', 'calm']
['no vocals', 'slow']
['ambient', 'slow', 'soft']
['pop', 'male']
['vocals', 'male', 'vocal', 'singing']
['foreign', 'man']
['vocals', 'pop', 'male', 'singing']
['synth', 'drums', 'no vocals', 'rock', 'beat']
['vocals', 'pop', 'slow', 'vocal']
['electronic', 'no flute']
['guitar', 'rock']
['hard rock', 'loud', 'punk', 'male', 'vocal', 'rock']
['organ', 'beat']
[]
['guitar', 'soft']
['strings', 'slow']
['guitar', 'harp', 'slow']
['guitar', 'strings', 'harp']
['guitar', 'strings', 'string', 'harp', 'lute', 'slow']
['guitar', 'solo', 'harp', 'slow']
['vocals', 'vocal']
['male vocal', 'solo', 'voice', 'male voice', 'chant', 'male']
['man', 'male', 'vocal']
['male vocal', 'foreign', 'solo', 'man', 'male vocals', 'male', 'vocal', 'not english']
['pop', 'male']
['male vocal', 'guitar', 'man', 'pop', 'singing']
[]
['guitar', 'singing']
['electronic', 'rock', 'techno']
['loud', 'electronic', 'fast', 'dance', 'techno', 'beat']
['guitar']
['vocals', 'guitar', 'man', 'pop', 'male vocals', 'singing']
['male vocal', 'vocals', 'male voice', 'electronic', 'man singing', 'man', 'pop', 'mellow', 'male vocals', 'male', 'vocal', 'singing']
['male voice', 'pop']
[]
[]
['vocals', 'vocal', 'voices', 'techno']
['guitar', 'rock']
[]
['guitar', 'voice', 'no violin', 'soft']
[]
['sitar', 'foreign', 'oriental']
['sitar', 'middle eastern', 'percussion', 'drums', 'fast', 'eastern', 'indian', 'beat']
['sitar', 'strings', 'indian', 'india']
['fast', 'indian']
['sitar', 'arabic', 'indian', 'oriental']
['banjo', 'fast', 'instrumental', 'indian', 'beat']
['sitar', 'string', 'eastern', 'indian']
[]
[]
[]
['beats', 'loud', 'electronic', 'fast', 'electronica', 'techno']
['techno']
['electronic', 'fast', 'electro', 'trance', 'modern', 'dance', 'techno', 'house', 'beat']
[]
['electronic', 'weird', 'no vocals', 'electronica', 'instrumental', 'techno']
['electronic', 'fast', 'techno', 'noise']
['electronic']
['synth', 'instrumental', 'strange']
['guitar', 'strings', 'weird', 'electric guitar', 'slow']
['guitar', 'electronic', 'electric guitar']
['ambient', 'new age']
['guitar', 'solo', 'ambient', 'electric guitar', 'rock']
['opera', 'male']
['hard rock', 'guitar', 'electric', 'loud', 'drums', 'fast', 'electric guitar', 'rock', 'metal']
['female', 'quiet', 'opera', 'female vocal', 'woman', 'woman singing', 'soft', 'female singer']
['female', 'opera', 'female vocal']
['opera', 'singing']
['classical', 'opera']
['female', 'female voice', 'opera', 'female vocal', 'woman']
['slow']
['cello']
['classical', 'violins', 'strings', 'classic', 'string', 'violin', 'slow', 'cello', 'baroque']
['classical', 'quiet', 'strings', 'violin', 'low', 'slow', 'cello']
['classical', 'solo', 'strings', 'string', 'violin', 'slow', 'cello', 'soft']
['solo', 'violin', 'cello']
['strings', 'violin', 'slow', 'cello', 'soft']
['classical', 'violin']
['funk', 'fast', 'dance', 'techno', 'beat']
['vocals', 'foreign', 'female', 'loud', 'fast', 'pop', 'female vocal', 'vocal', 'dance', 'singing', 'techno', 'beat', 'female singer', 'rap']
['weird']
['harpsichord', 'classical', 'no vocals']
['harpsichord', 'strings', 'baroque']
['classical', 'opera', 'vocal']
['choral', 'opera', 'male', 'vocal', 'choir']
['female', 'opera']
[]
[]
['spacey', 'ambient', 'electronic', 'slow', 'different']
[]
[]
['no piano', 'classical', 'ambient', 'new age', 'synth', 'electronic', 'weird', 'no vocals', 'piano', 'slow']
['female', 'ambient', 'slow', 'vocal']
['classical', 'female', 'female voice', 'electronic', 'weird', 'opera', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing']
['piano']
['classical', 'quiet', 'solo', 'piano', 'soft']
[]
['silence', 'quiet', 'ambient', 'new age', 'synth', 'airy', 'low', 'no flute', 'soft']
['slow']
['quiet', 'ambient', 'techno']
[]
['ambient', 'soft']
[]
['ambient', 'synth', 'no violin', 'weird', 'low', 'deep', 'slow']
['ambient', 'electronic', 'weird', 'echo', 'noise']
['no voice', 'ambient', 'drums', 'not opera', 'beat']
['quiet', 'ambient']
['strange']
['classical']
['classical', 'strings', 'orchestra']
['classical', 'orchestra']
['classical', 'strings', 'opera', 'violin', 'orchestra']
['strings', 'classic', 'orchestral', 'orchestra']
[]
[]
['fast', 'pop', 'male', 'rap']
['male vocal', 'synth', 'loud', 'electronic', 'no vocal', 'weird', 'fast', 'male', 'vocal', 'techno']
[]
['classical', 'violins', 'strings', 'violin', 'sad', 'slow', 'cello']
[]
['drums', 'violin', 'modern']
['no voice', 'strings', 'violin', 'dark', 'no vocals', 'sad', 'slow', 'cello']
['strings', 'no vocal', 'violin', 'dark', 'deep', 'sad', 'singing']
['loud', 'drums', 'lol', 'voices']
['guitar', 'synth', 'electronic', 'no vocals', 'slow']
['male vocal', 'quiet', 'male singer', 'man singing', 'male vocals', 'slow', 'male', 'rock']
['guitar', 'electric guitar', 'slow']
['vocal']
[]
[]
['male voice', 'male vocals', 'male', 'vocal', 'rock']
['vocals', 'rock']
[]
['hard rock', 'heavy', 'heavy metal', 'male', 'rock', 'metal']
['classical', 'flute']
['classical', 'quiet', 'strings', 'violin', 'instrumental', 'flutes', 'flute']
['classical']
['classical', 'strings']
['no voice', 'no piano', 'classical', 'strings', 'string', 'no vocal', 'violin']
['classical', 'violin', 'slow']
['classical', 'strings', 'no vocal']
['classical', 'strings', 'no vocal', 'violin', 'orchestra']
['flute']
['woodwind', 'solo', 'slow', 'indian', 'flute']
['quiet', 'horn', 'low', 'flute']
['flute']
['wind']
['flute']
[]
['no vocal', 'drone', 'slow']
['wind', 'flute']
['solo', 'horn', 'slow', 'indian', 'flute']
[]
['middle eastern', 'drum', 'strings', 'drums', 'indian']
['indian']
['drums']
['indian']
['classical', 'quiet', 'opera', 'operatic']
['opera', 'singing']
['female', 'opera', 'operatic', 'woman']
['female', 'female voice', 'opera', 'vocal', 'woman']
[]
['female', 'opera', 'female vocal']
['classical', 'female', 'female voice', 'opera', 'vocal', 'woman']
['female opera', 'female', 'female voice', 'opera', 'female vocal', 'woman']
['bass', 'slow']
[]
['vocals', 'new age', 'voice']
['synth', 'modern', 'dance', 'techno', 'beat']
[]
[]
[]
['classical', 'violin']
['middle eastern', 'indian']
['violin']
[]
['indian']
['middle eastern', 'drums', 'flutes', 'indian', 'flute']
['middle eastern', 'drums', 'fast']
['world', 'foreign', 'drum', 'strings', 'loud', 'drums', 'violin', 'arabic', 'eastern', 'indian', 'flute', 'oriental']
['guitar', 'violins']
['plucking', 'sitar', 'guitar', 'strings', 'string', 'slow', 'indian']
[]
['guitar', 'rock']
['rock']
['male vocal', 'guitar', 'loud', 'fast', 'modern', 'male', 'rock', 'singing']
['guitar', 'loud', 'rock']
['fast', 'rock', 'metal']
['sitar', 'classical', 'guitar', 'strings', 'harp', 'no flute', 'piano']
['sitar', 'classical', 'no vocal', 'harp', 'piano']
['fast']
[]
['strings', 'piano']
['harpsichord', 'classical', 'strings', 'fast', 'piano']
[]
['female', 'opera', 'vocal', 'woman']
['slow', 'woman']
['classical', 'female', 'opera', 'operatic', 'woman']
['singer', 'vocals', 'men', 'female', 'guitar', 'voice', 'opera', 'vocal', 'woman']
['opera', 'male']
['opera', 'operatic']
['voice', 'electronic', 'talking', 'beat']
['beats', 'pop']
[]
['jazz', 'sax']
[]
[]
['chanting']
['ambient', 'no violin']
['eastern', 'no drums']
['synth', 'chanting', 'noise']
[]
['ambient', 'weird']
[]
['no voice', 'ambient', 'weird']
['noise']
['guitar', 'ambient', 'electronic', 'electro', 'strange', 'slow', 'indian', 'noise']
['beats', 'quiet', 'ambient', 'new age', 'synth', 'percussion', 'drums', 'electronic', 'slow', 'no drums', 'calm', 'techno', 'beat', 'soft', 'noise', 'water']
['drums']
['soft']
['chimes', 'quiet', 'ambient', 'not rock', 'no guitar', 'no vocal', 'electro', 'no vocals', 'slow', 'soft']
['female', 'female voice', 'female vocal']
['electronic', 'techno']
['drums', 'electronic', 'fast', 'techno']
['female', 'female voice', 'electronic', 'female singer']
['industrial', 'techno']
['voice', 'drums', 'electronic', 'fast', 'electro', 'dance', 'techno', 'beat']
[]
['electronic', 'slow']
['vocals', 'no vocals']
['electronic']
[]
['electronic']
['electronic', 'techno']
['percussion', 'drum', 'drums', 'no vocals', 'not opera']
[]
['fast']
['no violin']
['sitar', 'beats', 'guitar', 'ambient', 'new age', 'middle eastern', 'drums', 'fast', 'eastern', 'indian', 'beat']
[]
['electronic', 'fast', 'techno']
['drums']
['no voice', 'harpsichord']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'piano', 'old', 'slow']
['classical', 'strings']
['harpsichord']
[]
['harpsichord', 'classical', 'strings', 'no vocals']
['guitar', 'drums', 'rock', 'metal']
['hard rock', 'guitar', 'male', 'rock', 'metal']
['hard rock', 'guitar', 'solo', 'drum', 'drums', 'electric guitar', 'rock']
['heavy', 'guitar', 'rock']
['male vocal', 'guitar', 'voice', 'electric guitar', 'rock', 'metal']
['voice', 'drums']
['male vocal', 'vocals', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal']
['male vocal', 'drums', 'man', 'male vocals', 'vocal', 'rock']
['male vocal', 'vocals', 'male voice', 'loud', 'man', 'vocal', 'rock']
['guitar', 'rock', 'techno']
['male vocal', 'vocals', 'guitar', 'loud', 'electric guitar', 'man', 'male vocals', 'male', 'vocal', 'rock']
['classical', 'guitar', 'solo', 'no vocals', 'piano', 'slow']
['classical', 'guitar', 'strings', 'lute']
['classical', 'guitar', 'solo', 'strings', 'acoustic', 'classic', 'harp', 'slow', 'soft']
['singer', 'chorus', 'vocals', 'bass', 'male voice', 'drums', 'man singing', 'male', 'blues', 'vocal', 'rock', 'singing', 'beat']
[]
['jazz', 'trumpet', 'sax']
['no vocals', 'light', 'piano', 'slow']
['piano']
[]
['new age', 'piano']
['no voice', 'classical', 'strings', 'no vocal', 'fast', 'piano', 'slow']
['techno']
['indian']
['sitar']
['arabic', 'indian']
[]
['ambient', 'no vocals']
['classical', 'quiet', 'ambient', 'strings', 'drums', 'electronic', 'dark', 'instrumental', 'female vocal', 'slow', 'beat', 'soft']
['electric', 'ambient', 'new age', 'synth', 'percussion', 'drums', 'electronic', 'slow', 'woman', 'female vocals', 'techno', 'beat', 'soft']
[]
['flute']
['harpsichord', 'classical', 'flutes', 'slow', 'flute', 'baroque']
['flute']
['flute']
['harpsichord', 'classical', 'flute']
['harpsichord', 'classical', 'slow', 'flute']
[]
['classical', 'violins']
['classical', 'violins', 'strings', 'classic', 'violin', 'no vocals', 'instrumental']
['harpsichord', 'classical', 'strings', 'violin']
['classical', 'violins', 'violin']
['fast', 'violin']
['classical', 'violin']
['classical', 'strings', 'classic', 'violin']
['beat']
['slow', 'techno']
['ambient', 'no guitar', 'slow']
['ambient', 'drums', 'slow', 'calm', 'soft']
['drums', 'slow', 'beat']
[]
['rock']
['guitar', 'loud', 'drums', 'electronic', 'weird', 'rock']
['guitar']
['guitar', 'slow']
['guitar']
['classical', 'guitar']
[]
['classical', 'harpsicord', 'violin']
[]
['harpsichord', 'classical', 'quiet', 'strings', 'classic', 'violin', 'low', 'slow']
['harpsichord', 'classical', 'violin']
['beats', 'electric', 'synth', 'drums', 'electronic', 'weird', 'electro', 'dance', 'techno', 'not opera', 'beat']
['vocals', 'voice', 'male voice', 'electronic', 'slow', 'vocal', 'techno']
['vocals']
['no voice', 'horns', 'jazz', 'trumpet', 'drums', 'electronic', 'no vocal', 'no vocals', 'horn', 'instrumental', 'pop', 'sax', 'slow', 'jazzy', 'beat']
['male vocal', 'vocals', 'soft rock', 'male voice', 'electronic', 'weird', 'man singing', 'electro', 'man', 'techno', 'soft']
['trumpet', 'mellow', 'sax', 'vocal', 'jazzy', 'singing']
[]
['beats', 'drums', 'voices']
[]
[]
[]
['foreign', 'male']
['male vocal', 'foreign', 'indian']
['electric', 'synth', 'bass', 'male voice', 'drums', 'electronic', 'modern', 'pop', 'piano', 'techno', 'beat', 'upbeat']
['electronic']
['male voice', 'electro', 'man', 'pop', 'male', 'vocal']
['pop']
[]
[]
['drums']
['synth', 'electronic', 'techno']
['jazz', 'guitar']
[]
['guitar', 'percussion', 'drum', 'drums', 'rock', 'beat']
['guitar', 'rock', 'metal']
['guitar', 'country']
['banjo', 'fast']
['middle eastern']
['drums', 'fast']
['drum', 'drums']
['indian']
['clarinet', 'classical', 'piano', 'slow', 'flute', 'upbeat']
['classical', 'piano', 'flute']
['classical', 'piano']
['classical', 'piano']
['clarinet', 'classical', 'piano']
[]
['vocals']
['guitar']
['choral']
['female', 'choir']
['ambient', 'flute']
['new age', 'flute']
['ambient', 'new age', 'flutes', 'slow', 'indian', 'calm', 'flute']
['guitar', 'wind', 'ambient', 'drums', 'jungle', 'slow', 'flute']
['flute']
['choral', 'opera', 'choir']
['choir']
['vocals', 'choral', 'vocal', 'singing', 'choir', 'women']
['vocals', 'choral', 'choir']
['choral']
[]
['male vocal', 'acoustic guitar', 'man singing', 'country', 'male', 'vocal']
['male vocal', 'guitar', 'voice', 'male voice', 'male singer', 'man singing', 'country', 'man', 'pop', 'male vocals', 'male', 'blues', 'vocal', 'singing', 'clapping']
['male vocal', 'vocals', 'guitar', 'man singing', 'country', 'man', 'male vocals', 'male', 'blues', 'vocal']
['man', 'blues', 'singing']
[]
['drum', 'drums', 'instrumental']
[]
['beats', 'jazz', 'guitar', 'quiet', 'drum', 'bass', 'drums', 'no vocal', 'low', 'mellow', 'sax', 'slow', 'blues', 'jazzy']
['jazz', 'drums', 'sax']
['jazz', 'sax', 'jazzy']
['jazz', 'sax']
['horns', 'jazz', 'trumpet', 'drums', 'sax', 'jazzy']
['jazz', 'bass', 'drums', 'rock', 'jazzy', 'techno']
['jazz', 'sax', 'jazzy']
[]
[]
['space', 'no vocal']
[]
['guitar']
['guitar']
['vocal', 'singing']
['ambient']
['reggae', 'voices']
['beats', 'loud', 'drums', 'rock', 'dance', 'techno']
[]
[]
['electronic', 'fast', 'electro', 'modern', 'vocal', 'techno', 'house']
['female', 'drums', 'electronic', 'talking', 'trance', 'female vocal', 'techno']
['electronica', 'man', 'techno']
[]
['female', 'electronic', 'female vocal', 'vocal', 'dance', 'techno']
['no piano', 'classical', 'strings', 'classic', 'violin', 'orchestra', 'soft']
['classical', 'flute']
['classical', 'quiet', 'strings', 'violin', 'harp', 'flute']
['classical', 'light', 'flute']
['classical', 'strings', 'classic', 'harp', 'piano', 'flute']
['classical', 'violins', 'strings', 'violin', 'orchestral', 'orchestra']
[]
['classical', 'flute', 'soft']
['no voice', 'classical', 'no vocals', 'flute']
['classical', 'flute']
['classical', 'strings', 'classic', 'string', 'harp', 'orchestra', 'flute']
['classical', 'flute']
['classical', 'strings', 'flute']
['classical', 'strings', 'violin', 'flutes', 'flute']
['classical', 'violins', 'strings', 'violin', 'no flute', 'flute']
['no piano', 'classical', 'strings', 'violin', 'piano', 'flute']
['classical']
['classical', 'flute']
['harpsichord', 'classical', 'violin']
['harpsichord', 'classical', 'strings', 'classic', 'violin']
[]
['classical', 'violin']
['horns', 'classical', 'strings', 'violin', 'sad', 'flute']
['classical', 'no vocal', 'violin', 'slow']
[]
['female', 'talking', 'echo']
[]
[]
['classical']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'baroque']
['vocals', 'male']
['foreign', 'vocal', 'singing', 'voices', 'not english']
[]
['male vocal', 'opera', 'man singing', 'man', 'slow']
['guitar', 'fast', 'no drums']
[]
['classical']
['harpsichord', 'classical']
[]
['harpsichord', 'classical', 'strings', 'organ', 'piano']
[]
['guitar', 'electric guitar', 'rock']
['hard rock', 'female', 'guitar', 'pop', 'male', 'rock']
['guitar']
[]
['vocals', 'female', 'guitar', 'voice', 'drums', 'fast', 'electric guitar', 'female vocal', 'vocal', 'woman', 'rock']
['beats', 'percussion', 'drum', 'no violin', 'beat']
['synth', 'electronic', 'beat']
['female', 'funk', 'female vocal', 'slow', 'beat', 'female singer']
['no violin', 'pop', 'slow', 'woman', 'singing', 'female vocals']
['vocals', 'drums', 'female vocal', 'techno', 'beat']
['woman']
['synth', 'drums', 'electro', 'beat']
['classical', 'guitar', 'quiet', 'strings', 'harp', 'piano', 'soft', 'baroque']
['ambient', 'synth', 'strings', 'slow']
['ambient', 'synth', 'strings', 'electronic', 'trance', 'no flute', 'slow', 'no drums', 'flute']
['synth', 'slow']
[]
['strings']
['indian']
[]
['sitar', 'foreign', 'guitar', 'middle eastern', 'percussion', 'drums', 'fast', 'eastern', 'indian', 'beat']
['sitar', 'fast', 'indian']
['no piano', 'middle eastern', 'drums', 'eastern', 'indian']
['no piano', 'fast', 'arabic', 'indian']
['sitar']
['percussion', 'drum', 'drums', 'jungle', 'indian', 'beat', 'water']
['no vocal', 'pop', 'vocal', 'indian', 'dance']
[]
['drums', 'dance', 'techno']
['electronic', 'fast', 'instrumental', 'trance', 'dance', 'techno', 'beat', 'quick']
[]
['bongos', 'beats', 'new age', 'drum', 'drums', 'electronic', 'no vocal', 'weird', 'fast', 'trance', 'jungle', 'dance', 'techno', 'house', 'beat']
[]
[]
['harp', 'slow', 'flute']
['wind', 'harp', 'slow', 'flute']
['sitar', 'clarinet', 'woodwind', 'chimes', 'solo', 'ambient', 'oboe', 'slow', 'indian', 'calm', 'flute', 'soft']
['flute']
['no guitar', 'flute']
['percussion', 'drums', 'flute']
['flute']
['woodwind', 'bells', 'indian', 'flute']
[]
['foreign', 'indian', 'flute']
['classical', 'solo', 'wind', 'sax', 'slow', 'jazzy', 'flute']
['guitar', 'rock']
['male vocal', 'vocals', 'synth', 'male voice', 'male singer', 'man singing', 'pop', 'male', 'rock', 'techno']
['male vocal', 'loud', 'male singer', 'rock']
['vocals', 'male', 'rock']
['synth', 'electronic', 'fast', 'techno', 'upbeat']
['synth', 'techno']
['fast', 'techno', 'beat']
[]
[]
['classical', 'new age', 'synth', 'strings', 'electronic', 'no vocal', 'techno']
['synth', 'electronic', 'techno', 'beat']
['guitar', 'slow']
['guitar', 'male voice', 'drums', 'slow', 'male', 'rock']
['guitar', 'slow', 'rock']
['vocals', 'guitar', 'acoustic', 'drums', 'pop', 'male', 'vocal']
['guitar', 'drums', 'acoustic guitar', 'slow', 'rock']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'harpsicord', 'baroque']
['harpsichord', 'classical', 'baroque']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'solo', 'keyboard', 'fast', 'slow']
['harpsichord', 'classical', 'strings']
['drums', 'electronic', 'tribal']
['beats', 'funky', 'drum', 'bass', 'drums', 'electronic', 'no vocals', 'slow', 'different', 'beat']
['beat']
['bass', 'drums', 'reggae', 'techno']
[]
['classical', 'guitar', 'classic', 'harp', 'soft']
['vocals', 'eerie', 'quiet', 'ambient', 'synth', 'electronic', 'weird', 'slow', 'soft']
['ambient', 'synth', 'electronic', 'slow', 'techno']
[]
['no voice', 'no singing', 'electronic', 'pop', 'techno']
[]
[]
['quiet', 'ambient']
['singer', 'vocals', 'solo', 'chanting', 'choral', 'opera', 'chant', 'man', 'vocal']
['choral', 'choir']
['choir']
['female', 'drums', 'woman', 'beat', 'female singer']
['no piano', 'female voice', 'pop', 'female vocal', 'slow', 'woman']
['female', 'female voice', 'pop', 'vocal', 'woman', 'female vocals', 'english']
[]
['guitar', 'quiet', 'lute', 'slow']
['loud', 'drums', 'pop', 'piano']
['funky', 'modern', 'no flute', 'soft']
['ambient', 'new age', 'synth', 'bass', 'loud', 'drums', 'electronic', 'no vocal', 'weird', 'fast', 'no vocals', 'modern', 'piano', 'techno', 'beat']
['synth']
['fast', 'techno']
[]
['guitar', 'slow']
['guitar', 'solo', 'acoustic', 'mellow', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'harp', 'slow']
['classical', 'guitar', 'strings', 'acoustic', 'no violin', 'no vocal', 'classical guitar', 'slow']
['voice', 'talking', 'male']
['no vocal', 'deep', 'techno']
['synth', 'techno', 'beat']
[]
['sitar', 'fast', 'indian']
[]
['classical', 'strings']
[]
['vocals', 'voice', 'chanting', 'choral', 'vocal', 'singing', 'voices']
[]
['chorus', 'vocals', 'spanish', 'singing']
['vocal', 'voices']
['guitar']
['country']
['male vocal', 'vocals', 'guitar', 'folk', 'male singer', 'country', 'modern', 'man', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'folk', 'country', 'man', 'pop', 'male']
['guitar', 'slow', 'soft']
[]
[]
['horns', 'classical', 'trumpet', 'horn', 'oboe']
['classical', 'oboe']
['solo', 'piano', 'slow']
[]
['classical', 'strings', 'string', 'violin', 'piano', 'slow']
['classical', 'strings', 'violin', 'irish', 'piano']
[]
['classical', 'violin', 'irish', 'piano', 'celtic', 'soft']
['hard rock', 'guitar', 'electric', 'electric guitar', 'rock', 'guitars']
['rock']
['rock']
['guitar', 'rock']
['male vocal', 'guitar', 'folk', 'male voice', 'male singer', 'man singing', 'country', 'man', 'pop', 'male vocals', 'slow', 'male', 'singing', 'soft']
['male vocal', 'guitar', 'voice', 'male voice', 'acoustic', 'country', 'man', 'male vocals', 'vocal', 'singing', 'soft']
['vocals', 'guitar', 'voice', 'country', 'violin', 'man', 'male', 'singing']
['singer', 'male vocal', 'vocals', 'guitar', 'folk', 'male voice', 'male singer', 'country', 'man', 'pop', 'slow', 'male', 'vocal', 'singing']
['male vocal', 'country', 'vocal', 'singing']
['male vocal', 'male voice', 'country', 'slow', 'singing']
[]
['male voice', 'drums', 'singing', 'techno']
['guitar', 'rock']
['guitar', 'synth', 'loud', 'no vocals', 'guitars', 'noise']
['classical', 'strings', 'violin', 'oriental']
['classical', 'violins', 'violin', 'instrumental']
['flute']
['classical', 'flute']
['guitar']
['guitar', 'fast', 'instrumental', 'spanish']
['sitar', 'guitar', 'fast', 'acoustic guitar', 'spanish']
['sitar', 'guitar', 'eastern', 'spanish', 'indian']
['guitar', 'eastern', 'spanish']
['guitar']
['guitar', 'quiet', 'bass']
[]
['silence', 'quiet', 'drums']
['hard rock', 'guitar', 'loud', 'fast', 'rock']
['rock']
['female', 'guitar', 'female voice', 'female vocal', 'vocal', 'woman', 'rock', 'jazzy', 'female singer']
['guitar', 'woman']
['vocals', 'pop', 'vocal', 'rock', 'female vocals', 'english']
['female', 'female vocal', 'indian', 'techno', 'beat']
['vocals', 'female', 'synth', 'strange', 'female vocal', 'vocal', 'indian', 'techno', 'upbeat']
['fast']
['guitar']
['guitar', 'solo', 'acoustic']
['guitar', 'acoustic']
['ambient']
['ambient']
['ambient', 'new age', 'synth', 'electronic', 'slow', 'soft']
['ambient', 'light', 'slow']
['ambient', 'slow']
[]
['eerie', 'ambient']
['no piano', 'spacey', 'ambient']
['ambient', 'no vocals', 'slow', 'soft']
['ambient', 'not rock', 'instrumental', 'slow']
['quiet', 'bells', 'slow']
['chimes', 'ambient', 'new age', 'synth', 'drum', 'drums', 'weird', 'bells']
['no voice', 'drums']
['ambient', 'synth', 'violin', 'bells', 'soft']
['noise']
['no beat', 'ambient', 'strings', 'string', 'violin', 'slow', 'water']
['classical', 'strings', 'classic', 'violin', 'slow', 'soft']
['ambient']
[]
[]
['beats', 'ambient', 'new age', 'drums', 'slow']
[]
['drums', 'electronic', 'indian']
[]
['flute']
['guitar', 'strings', 'eastern', 'no drums', 'different']
['female', 'female voice', 'synth', 'drums', 'female vocal', 'vocal', 'woman']
['vocals', 'guitar', 'voice', 'no vocal', 'electric guitar', 'pop', 'mellow', 'rock']
['harpsichord']
['harpsicord']
['harpsichord', 'classical', 'strings', 'harpsicord', 'fast', 'quick', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'fast']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'classic', 'fast']
['harpsichord', 'classical']
[]
[]
['ambient', 'electronic', 'vocal']
['ambient', 'new age', 'synth', 'voice', 'electronic', 'chanting', 'chant', 'not english']
['ambient', 'electronic']
[]
['synth']
['synth']
[]
[]
['weird']
[]
['guitar', 'synth']
[]
[]
['beats', 'ambient', 'synth']
['no guitar']
['ambient', 'synth', 'piano', 'slow']
['synth', 'piano', 'slow']
['ambient', 'slow', 'soft']
['fast', 'techno']
['techno']
['pop', 'techno']
['techno']
['beats', 'no piano', 'electric', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
['no voice', 'bass', 'fast', 'electro', 'dance', 'techno', 'beat']
['no voice', 'classical', 'quiet', 'no guitar', 'no vocal', 'oboe', 'piano']
['male voice', 'opera', 'man singing', 'male']
['opera']
['classical', 'male voice', 'opera', 'male vocals', 'male']
['male voice', 'opera']
['opera']
['classical', 'voice', 'male voice', 'opera', 'man', 'male']
['classical', 'quiet', 'classic', 'violin']
['classical', 'violins', 'classic', 'choral', 'opera', 'violin', 'lol', 'orchestra', 'choir']
['classical', 'female', 'classic', 'choral', 'opera', 'violin', 'operatic', 'orchestra', 'choir']
['guitar', 'male voice', 'man', 'harp']
['guitar', 'opera']
[]
[]
['sitar', 'drums', 'fast', 'arabic', 'indian', 'india']
['sitar', 'drums', 'slow', 'indian', 'oriental']
['drums', 'indian']
['drum', 'drums', 'instrumental', 'indian']
['classical', 'guitar', 'string', 'drums', 'fast', 'electric guitar', 'violin', 'punk', 'slow', 'rock']
['guitar', 'rock']
['rock']
['guitar', 'rock']
['guitar', 'no vocals', 'spanish', 'slow']
['classical', 'guitar', 'strings', 'acoustic', 'slow']
['classical', 'guitar', 'strings', 'classical guitar', 'slow']
['classical', 'guitar', 'acoustic', 'no vocal']
['guitar', 'piano', 'slow']
['guitar', 'strings', 'no vocal', 'no vocals']
['classical', 'strings', 'harp', 'no flute']
['classical', 'guitar', 'strings']
['classical', 'guitar', 'classical guitar', 'lute', 'piano', 'slow']
['classical', 'piano']
['classical', 'solo', 'happy', 'fast', 'piano', 'upbeat']
['piano']
['classical', 'fast', 'piano']
[]
['classical', 'fast', 'piano', 'old']
['guitar', 'loud']
[]
['ambient', 'drums', 'slow']
['guitar', 'new age', 'synth', 'drums', 'indian', 'rock']
['ambient', 'new age', 'drums', 'no vocals']
['bongos', 'drums']
['beats', 'synth']
['ambient', 'no vocals']
['ambient']
[]
['new age', 'drums', 'fast', 'calm', 'techno']
[]
['guitar', 'slow']
['guitar', 'string', 'no vocals', 'slow']
['guitar', 'piano', 'slow']
['guitar', 'slow']
[]
[]
['male vocal', 'vocals', 'male voice', 'drums', 'man singing', 'male vocals', 'slow', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'funk', 'voice', 'bass', 'drums', 'man', 'male vocals', 'slow', 'male', 'rock']
['male vocal', 'vocals', 'guitar', 'pop', 'piano', 'male']
['male vocal', 'man', 'pop', 'male vocals', 'male', 'vocal']
['synth', 'electronic', 'electro', 'techno']
['electric', 'synth', 'electronic', 'dance', 'techno']
['electronic', 'electro', 'electronica', 'techno']
['synth', 'electronic', 'pop', 'dance', 'techno']
['techno']
['synth', 'fast', 'techno']
['electronic', 'techno']
['beats', 'synth', 'electronic', 'fast', 'electro', 'no vocals', 'dance', 'techno', 'beat']
['electronic', 'fast', 'modern', 'techno']
[]
['classical', 'quiet', 'happy', 'strings', 'violin', 'no vocals', 'slow', 'flute']
['classical', 'strings', 'classic', 'violin', 'flute']
[]
[]
['classical', 'violins', 'strings', 'violin', 'flute']
['classical', 'strings', 'flute']
['classical', 'strings', 'violin', 'flute']
[]
['strings', 'flute']
['soft']
['ambient', 'weird', 'strange', 'slow', 'scary']
['ambient', 'airy', 'no guitar']
['drone']
['no voice', 'ambient', 'electronic']
['no strings', 'ambient', 'new age']
['no vocals', 'noise']
['quiet', 'ambient', 'synth', 'no vocal', 'violin', 'no vocals', 'piano', 'slow', 'cello', 'soft']
['ambient', 'strings', 'slow']
[]
['ambient', 'organ', 'soft']
['spacey', 'quiet', 'ambient', 'slow']
[]
['synth', 'no guitar', 'beat']
['beat']
['synth', 'electronic']
['classical', 'electric', 'synth', 'keyboard', 'electronic', 'not rock', 'no guitar', 'organ', 'weird', 'strange', 'synthesizer', 'piano', 'slow', 'dance', 'different', 'techno']
['electronic', 'organ', 'weird']
['electronic']
['electric', 'keyboard', 'organ', 'electronica']
['no voice', 'weird', 'techno']
['beats', 'electronic', 'techno']
['funky', 'synth', 'electronic', 'fast', 'techno', 'beat']
['techno']
['electronic', 'fast', 'dance', 'singing', 'techno']
['funky', 'drums', 'fast', 'dance', 'techno']
[]
[]
['classical', 'guitar', 'no singing', 'no vocal', 'classical guitar', 'no drums']
[]
[]
['classical', 'guitar', 'strings', 'lol', 'baroque']
['male vocal', 'vocals', 'guitar', 'male voice']
['man', 'pop', 'rock', 'singing']
['guitar', 'fast', 'pop', 'male', 'rock']
[]
['ambient']
['ambient', 'electronic', 'weird', 'instrumental', 'no drums']
[]
['no piano', 'new age', 'synth', 'electronic', 'no guitar', 'weird', 'strange', 'techno']
['drums', 'electronic']
['vocals', 'drums']
[]
['funky', 'pop']
['solo', 'no vocal', 'piano', 'soft']
['solo', 'piano', 'slow']
[]
['piano']
['classical', 'classic', 'piano']
['classical', 'dark', 'piano']
['classical', 'piano', 'slow']
['piano', 'slow']
['drums', 'indian']
['drums', 'soft']
['beats', 'no strings', 'percussion', 'drum', 'drums', 'electronic', 'no violin', 'beat']
['ambient', 'drums', 'weird', 'tribal']
['beats', 'ambient', 'synth', 'drum', 'drums', 'electronic', 'weird', 'techno']
['ambient', 'weird', 'dark']
['no singing', 'bells', 'soft']
['ambient', 'weird']
['slow']
['beats', 'ambient', 'new age', 'drum', 'drums', 'electronic', 'not classical', 'no vocal', 'weird', 'electro', 'no vocals', 'instrumental', 'bells', 'techno', 'beat']
['drums', 'no vocal', 'fast', 'techno', 'quick']
['opera', 'vocal', 'choir']
['male voice', 'opera', 'choir']
['choral']
['female singing', 'horns', 'classical', 'female', 'classic', 'choral', 'opera', 'vocal', 'voices', 'choir']
['chorus', 'female opera', 'vocals', 'classical', 'female', 'choral', 'opera', 'orchestra', 'choir']
['vocals', 'male voice', 'man singing', 'man', 'male', 'vocal']
['voice', 'male voice', 'pop', 'male', 'vocal', 'rock', 'singing']
['vocals']
['male vocal', 'vocals', 'fast', 'pop', 'male vocals', 'rock']
['guitar', 'dark']
[]
['no voice', 'hard rock', 'heavy', 'guitar', 'loud', 'no vocal', 'rock', 'metal']
['guitar', 'electric guitar', 'dark', 'rock']
['male vocal', 'man', 'rock']
['male voice', 'man', 'rock', 'metal']
['hard rock', 'vocals', 'guitar', 'drum', 'loud', 'drums', 'fast', 'hard', 'rock', 'metal']
['hard rock', 'male voice', 'rock', 'metal']
['drums', 'rock']
['vocal']
['world', 'chorus', 'vocals', 'foreign', 'voice', 'choral', 'vocal', 'singing', 'choir']
['choir']
[]
['chorus', 'foreign', 'female', 'chant', 'male', 'vocal', 'singing', 'voices', 'choir']
['heavy']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'no vocals', 'heavy metal', 'rock', 'metal']
['metal']
['quiet', 'ambient', 'light', 'slow']
['quiet', 'chanting', 'slow', 'vocal']
['slow', 'flute']
['male voice', 'slow', 'flute']
['male vocal', 'chant', 'man', 'slow', 'male']
[]
['vocal']
['chant', 'vocal']
[]
['male voice', 'chant', 'slow']
['male vocal', 'no guitar', 'strange', 'flute']
['ambient', 'calm', 'flute']
['no voice', 'male vocal', 'female', 'eerie', 'quiet', 'ambient', 'male voice', 'slow', 'vocal', 'woman', 'flute']
['chorus', 'male vocal', 'vocals', 'slow', 'male', 'vocal', 'indian', 'singing']
['silence', 'classical', 'quiet', 'ambient', 'low']
[]
['ambient', 'talking', 'dark', 'voices']
['male voice']
['voice', 'male voice', 'talking']
['quiet', 'ambient', 'slow']
['quiet', 'ambient', 'talking', 'weird', 'slow', 'soft']
[]
['ambient', 'new age', 'soft']
[]
[]
['vocals', 'new age', 'female vocal', 'slow', 'male', 'vocal', 'woman', 'dance', 'voices']
['beats', 'repetitive', 'drums', 'electronic', 'electronica', 'techno', 'beat']
['vocals', 'female', 'female voice', 'vocal']
['vocals', 'female', 'electronic', 'fast', 'pop', 'vocal', 'singing']
['guitar', 'quiet', 'opera']
['female', 'opera']
['female opera', 'female', 'guitar', 'female voice', 'opera', 'female vocal', 'vocal', 'woman']
['classical', 'female', 'voice', 'opera', 'woman']
[]
[]
['electric', 'electronic', 'fast', 'fast beat', 'techno', 'upbeat']
[]
[]
[]
['male vocal', 'male voice', 'man singing', 'man', 'male vocals', 'slow', 'male', 'vocal']
['guitar', 'drums', 'slow']
[]
['male vocal', 'voice', 'loud', 'man', 'pop', 'piano', 'slow', 'male', 'vocal', 'singing']
['vocals', 'male voice', 'man singing', 'man', 'vocal', 'singing']
['male singer', 'rock', 'english']
['hard rock', 'guitar', 'man', 'vocal', 'rock']
[]
['vocals', 'man', 'pop', 'rock', 'singing']
['man', 'rock']
['male vocal', 'guitar', 'man', 'pop', 'male', 'vocal', 'woman', 'rock', 'singing']
['man', 'rock', 'singing']
['drum', 'drums', 'rock']
['rock']
['male vocal', 'guitar', 'male voice', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['drums', 'pop', 'rock', 'singing']
[]
['male vocal', 'vocals', 'guitar', 'man', 'male vocals', 'slow', 'singing']
['male vocal', 'vocals', 'foreign', 'no piano', 'classical', 'guitar', 'voice', 'medieval', 'male voice', 'opera', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['guitar', 'lute', 'male']
[]
['vocals', 'female', 'folk', 'female voice', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'flute', 'soft']
['no piano', 'sax']
['sax']
['no voice', 'sitar', 'indian']
['guitar']
['no vocal', 'no vocals', 'bells', 'slow']
['drums', 'flute']
[]
[]
['guitar', 'bass', 'drums', 'no vocal', 'slow', 'rock', 'not opera', 'metal']
['guitar', 'loud', 'rock']
['man', 'rock']
['vocal', 'rock', 'metal']
[]
['bass', 'loud', 'rock']
['ambient', 'electronic', 'electro', 'pop']
[]
[]
['no voice', 'beats', 'jazz', 'electric', 'drum', 'loud', 'electronic', 'fast', 'dance', 'jazzy', 'beat']
['jazz', 'guitar', 'drums', 'country']
['male vocal', 'guitar', 'male voice', 'male singer', 'man', 'male', 'vocal', 'rock']
['duet', 'guitar', 'drums', 'male singer', 'country', 'man', 'pop', 'male vocals', 'male']
['guitar']
['guitar', 'pop', 'vocal']
['country', 'rock']
['male vocal', 'soft rock', 'pop', 'male']
['rock']
['jazz', 'guitar', 'jazzy']
['vocals', 'voice', 'country', 'man', 'male', 'jazzy', 'singing']
['opera', 'choir']
['chorus', 'vocals', 'chanting', 'choral', 'opera', 'chant', 'slow', 'male', 'choir']
['female', 'choral', 'opera', 'male', 'vocal', 'voices', 'choir']
[]
['male vocal', 'vocals', 'synth', 'man', 'rock']
['male vocal', 'male voice', 'loud', 'drums', 'male singer', 'man singing', 'rock']
['hard rock', 'heavy', 'loud', 'fast', 'heavy metal', 'hard', 'rock', 'techno', 'metal']
['guitar']
['male vocal', 'guitar', 'rock']
['guitar', 'rock']
['loud', 'vocal', 'rock']
['guitar', 'organ', 'rock']
[]
['sitar', 'guitar', 'banjo']
[]
['hard rock', 'vocals', 'heavy', 'loud', 'heavy metal', 'scary', 'rock', 'noise', 'metal']
['loud', 'heavy metal', 'rock', 'metal']
['hard rock', 'heavy', 'loud', 'heavy metal', 'rock', 'metal']
['rock', 'metal']
['no voice', 'bass', 'no vocals', 'low', 'deep', 'techno']
['beats', 'funky', 'synth', 'drum', 'bass', 'drums', 'beat']
['no voice', 'drums']
['bongos', 'beats', 'synth', 'electronic', 'electro', 'instrumental', 'strange', 'techno', 'beat']
['drums']
['chant', 'man', 'voices']
[]
['chant']
['new age', 'chanting', 'instrumental', 'chant', 'slow', 'choir']
[]
['drums']
['beats', 'synth', 'techno']
['singer']
['fast', 'spanish', 'singing']
[]
['foreign', 'fast', 'spanish']
[]
['guitar']
['guitar', 'classical guitar', 'slow']
[]
['vocal']
[]
[]
['female', 'pop', 'woman']
['foreign', 'female', 'female vocal', 'slow', 'vocal', 'woman', 'rock', 'singing']
['singer', 'female', 'female voice', 'drums', 'pop', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'female singer']
['female', 'drums', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'soft']
['vocals', 'female', 'female voice', 'girl', 'loud', 'pop', 'woman', 'rock']
[]
['guitar', 'slow']
['classical', 'no voices', 'guitar', 'solo', 'harp', 'slow', 'soft']
[]
['harp']
['harp']
['plucking', 'guitar', 'harp']
['country']
['male vocal', 'guitar', 'voice', 'bass', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['jazz', 'country', 'blues', 'jazzy']
['male vocal', 'male singer', 'country', 'male', 'blues', 'singing']
['drums', 'no vocals', 'instrumental']
['sitar', 'guitar', 'electronic', 'weird', 'pop', 'eastern', 'rock', 'guitars', 'beat']
['guitar']
['guitar']
['guitar', 'drums', 'fast', 'hard', 'rock']
['rock']
['solo', 'piano']
['guitar', 'rock']
['synth', 'piano']
['electronic', 'piano']
['quiet', 'instrumental']
['guitar']
['ambient', 'slow']
['singer', 'foreign', 'female', 'voice', 'choral', 'celtic', 'woman']
['female', 'female vocal']
['violin']
[]
[]
['violin', 'slow']
['male vocal', 'male voice', 'man', 'male vocals', 'male', 'vocal', 'rock', 'singing']
[]
['male vocal', 'vocals', 'man', 'male', 'rock']
['guitar', 'male', 'vocal', 'rock']
[]
['loud', 'rock', 'rap', 'metal']
['new age', 'synth', 'horn', 'low', 'slow', 'flute']
['quiet', 'slow', 'flute']
['slow', 'flute']
['quiet']
['quiet', 'ambient']
['quiet', 'ambient', 'slow', 'soft']
['beats', 'drum', 'drums', 'no vocal', 'techno', 'beat']
[]
['techno', 'beat']
['funky', 'synth', 'bass', 'male voice', 'drums', 'electro', 'male vocals', 'male', 'dance', 'house', 'beat']
['strings', 'drums', 'soft']
['beat']
[]
['beats', 'drums', 'beat']
['beats', 'drums', 'not rock', 'dance', 'beat']
['female', 'guitar', 'female voice', 'acoustic', 'female vocal', 'vocal']
['vocals', 'female', 'guitar', 'female voice', 'voice', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'singing', 'female vocals', 'english']
[]
['guitar', 'female voice', 'female vocal', 'woman', 'english']
['guitar', 'female voice', 'male voice', 'drums', 'rock']
['female', 'guitar', 'female voice', 'woman', 'rock']
['rock']
['synth', 'drum', 'drums', 'no vocal', 'no vocals', 'slow', 'beat']
[]
['ambient', 'electronic']
['guitar', 'electric', 'electronic', 'beat', 'soft']
['slow']
['ambient', 'new age', 'electronic']
['vocals', 'guitar', 'pop']
['rock']
['rock']
['male vocal', 'loud', 'male', 'vocal', 'rock']
['guitar', 'rock']
[]
['synth', 'electronic', 'techno']
[]
[]
['synth', 'electronic', 'slow', 'techno']
['synth', 'electronic', 'techno']
['quiet', 'electric', 'synth', 'bass', 'electronic', 'electronica', 'slow', 'beat']
['spacey', 'synth', 'drums', 'electronic', 'weird', 'techno', 'beat']
['loud', 'rock', 'metal']
[]
['loud', 'male', 'rock', 'metal']
['classical', 'female', 'guitar', 'opera', 'harp', 'woman']
['opera']
[]
['flute']
['classical', 'solo', 'new age', 'airy', 'flute']
['wind', 'flute']
[]
['flute']
['drum', 'drums', 'arabic', 'slow', 'indian', 'flute']
['ambient', 'drum', 'drums', 'no vocal', 'tribal', 'bells', 'indian', 'flute']
['electronic']
['no voice', 'funky', 'synth', 'electronic', 'no guitar', 'no vocal', 'weird', 'electro', 'pop', 'techno', 'beat', 'upbeat']
['synth', 'loud', 'electronic', 'techno']
[]
['funky', 'bass', 'drums', 'electronic', 'instrumental', 'modern', 'slow', 'flute', 'beat']
['electric', 'electronic', 'weird', 'indian']
['world', 'synth', 'drum', 'electronic', 'fast', 'strange', 'pop', 'flute', 'beat']
['slow']
['guitar', 'slow', 'indian']
['funky', 'guitar', 'drums', 'indian', 'woman']
['singer', 'foreign', 'guitar', 'man', 'no flute', 'female vocal', 'vocal', 'indian', 'singing']
['vocals', 'fast', 'male vocals', 'male', 'rock']
['harp', 'slow', 'woman']
['female', 'female voice', 'female vocals']
['vocals', 'female']
['vocal']
['female vocal']
['vocals', 'foreign', 'female', 'folk', 'celtic', 'woman', 'singing', 'female vocals']
['drum', 'drums']
['pop']
['pop']
['pop', 'woman']
['female', 'pop', 'woman', 'woman singing']
['vocals', 'pop', 'vocal', 'singing']
['foreign', 'female', 'arabic', 'vocal', 'indian', 'india', 'woman']
[]
['vocals', 'foreign', 'female', 'guitar', 'voice', 'opera', 'piano', 'spanish', 'vocal', 'indian', 'woman', 'singing']
['male vocal', 'foreign', 'piano', 'singing']
['vocals', 'female', 'vocal', 'woman']
['sitar', 'guitar', 'voice', 'piano', 'vocal', 'indian', 'woman']
['vocals', 'guitar', 'piano']
['male vocal', 'vocals', 'foreign', 'guitar', 'voice', 'man', 'female vocal', 'piano', 'sad', 'slow', 'male', 'vocal', 'woman singing', 'singing']
['ambient', 'electronic']
['slow']
['ambient', 'flute']
['classical', 'strings', 'violin', 'baroque']
['classical', 'strings', 'violin', 'baroque']
['violin']
['classical', 'violins', 'strings', 'harpsicord', 'classic', 'violin', 'no vocals', 'cello']
['singer', 'hard rock', 'male vocal', 'guitar', 'electric', 'male voice', 'electric guitar', 'male singer', 'heavy metal', 'man', 'male vocals', 'male', 'vocal', 'rock', 'beat']
['rock']
['male vocal', 'vocals', 'male voice', 'male', 'rock']
[]
['male vocal', 'vocals', 'funk', 'drum', 'bass', 'electronic', 'man', 'pop', 'male vocals', 'male', 'rock', 'singing', 'beat']
['guitar', 'no vocal']
['harpsichord', 'guitar', 'quiet', 'solo', 'strings', 'string', 'slow', 'flute']
[]
['harpsichord', 'classical', 'guitar', 'quiet', 'no singing', 'not rock', 'soft']
['no guitar', 'flute']
[]
['guitar', 'quiet', 'wind', 'string', 'harp', 'slow', 'flute', 'soft']
['flute']
['no voice', 'plucking', 'female', 'guitar', 'wind', 'string', 'no vocal', 'slow', 'vocal', 'flute', 'oriental', 'soft']
['no vocal', 'slow']
['classical', 'guitar', 'quiet', 'slow', 'no drums', 'soft']
['ambient', 'strings', 'slow', 'flute']
['guitar', 'ambient', 'instrumental', 'slow', 'flute']
['drums', 'beat']
['guitar', 'reggae', 'no vocals']
['guitar', 'drums']
[]
[]
['guitar', 'loud', 'drums', 'hard', 'rock', 'metal']
['guitar', 'drums', 'rock']
['guitar', 'rock']
[]
['vocals', 'voice', 'loud', 'vocal', 'rock']
['loud', 'punk', 'rock']
['guitar', 'rock']
['solo', 'piano']
['piano']
['classical', 'solo', 'piano']
['male vocal', 'guitar', 'drums', 'fast', 'electric guitar', 'male vocals', 'male', 'rock', 'singing', 'metal']
['male vocal', 'male voice', 'fast', 'rock']
['female', 'female voice', 'synth', 'electronic', 'female vocal', 'vocal', 'woman', 'dance', 'singing', 'techno']
['woman']
[]
['techno']
['female']
['rock']
['vocals', 'heavy', 'guitar', 'drums', 'heavy metal', 'male vocals', 'slow', 'rock', 'metal']
['rock']
['hard rock', 'vocal', 'rock']
['heavy', 'rock', 'metal']
[]
['drums', 'electronic']
[]
['eastern', 'indian']
['drums', 'indian']
['beat']
['new age', 'drums', 'techno', 'beat']
['guitar', 'electronic', 'modern']
['sitar', 'silence', 'quiet', 'piano', 'slow', 'oriental']
[]
['horn', 'slow', 'flute']
[]
['woodwind', 'no drums', 'flute']
['harp', 'flute']
['ambient', 'flute']
['classical', 'quiet', 'wind', 'ambient', 'organ', 'weird', 'low', 'harp', 'echo', 'slow', 'flute', 'soft']
['quiet', 'ambient']
[]
['wind', 'ambient', 'slow', 'indian', 'flute']
['slow', 'flute']
['guitar', 'quiet']
['flute']
[]
['quiet', 'ambient', 'slow', 'flute', 'soft']
['oriental']
['indian']
['indian']
['drums', 'no violin', 'fast', 'techno', 'beat']
[]
['techno']
['fast']
['fast']
['no vocal', 'no vocals', 'piano', 'soft']
['guitar', 'ambient', 'voice', 'male voice', 'piano', 'slow']
['quiet', 'synth', 'weird', 'tribal', 'low', 'slow']
['eerie', 'ambient', 'voice', 'dark', 'echo', 'slow']
[]
['new age']
['ambient', 'no vocal', 'low', 'not opera']
[]
[]
['ambient', 'drone']
['electronic', 'pop', 'dance', 'techno']
['synth', 'electronic', 'no drums', 'techno']
[]
['dance', 'techno']
['no vocals', 'trance', 'dance', 'techno', 'beat']
['pop', 'dance', 'techno', 'beat']
['ambient', 'no vocals']
['techno']
[]
['techno']
['techno']
[]
['beats', 'synth', 'electronic', 'techno', 'beat']
['beats', 'synth', 'electronic', 'electro', 'techno', 'beat']
['electric', 'electronic', 'fast', 'modern', 'techno', 'beat']
['no voice', 'jazz', 'ambient', 'drums', 'techno', 'beat']
['weird', 'noise']
['funky', 'synth', 'electronic', 'weird', 'fast', 'instrumental', 'modern', 'dance', 'techno', 'beat', 'rap']
['electric']
['electronic', 'techno']
['new age', 'electronic', 'weird', 'electro', 'strange', 'modern', 'voices', 'techno', 'noise']
['electric']
[]
['fast', 'techno']
['beats', 'synth', 'electronic', 'fast', 'fast beat', 'dance', 'techno', 'beat']
['fast', 'electro', 'trance', 'techno']
['fast', 'trance', 'techno']
[]
[]
['electric', 'synth', 'electronic', 'fast', 'electro', 'trance', 'dance', 'techno', 'beat']
['fast', 'pop', 'dance', 'techno', 'beat', 'upbeat']
['instrumental', 'dance', 'techno']
['no piano', 'classical', 'violin']
[]
['foreign', 'strings', 'medieval', 'male voice', 'violin', 'irish', 'male vocals', 'vocal']
['male vocal', 'vocals', 'opera', 'irish', 'man']
['male vocal', 'vocals', 'classical', 'folk', 'voice', 'strings', 'medieval', 'male voice', 'opera', 'man singing', 'violin', 'irish', 'man', 'celtic', 'old', 'male', 'vocal']
['violin']
['medieval', 'male voice', 'opera', 'violin', 'irish', 'male']
['medieval', 'opera', 'male singer', 'violin', 'man', 'male', 'vocal', 'singing']
['beats', 'funky', 'electric', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
[]
['techno']
['synth', 'no singing', 'electronic', 'no vocal', 'fast', 'techno', 'beat']
[]
['beat']
['electronic', 'fast', 'rock', 'techno']
['piano']
['dance', 'techno']
['synth', 'fast', 'techno', 'beat']
[]
['beats', 'synth', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'disco', 'dance', 'techno', 'upbeat']
['no voice', 'guitar', 'no vocal', 'country']
['guitar', 'pop']
['guitar', 'country']
[]
['male vocal', 'vocals', 'guitar', 'drums', 'man', 'pop', 'male', 'rock', 'singing']
['male vocal', 'rock']
['vocals', 'female', 'guitar', 'female vocal', 'male', 'rock', 'singing', 'female vocals', 'different']
['drum', 'jazzy']
['female', 'female vocal', 'slow', 'woman', 'singing', 'female vocals', 'female singer']
['female', 'female voice', 'female vocal', 'vocal', 'woman', 'jazzy']
[]
[]
['duet', 'girl', 'singing']
['duet']
['slow', 'vocal', 'woman']
['vocals', 'guitar', 'no singing', 'no vocals', 'piano', 'slow', 'singing', 'soft']
[]
['electronic', 'no vocals']
['fast', 'techno', 'beat']
['fast', 'electro', 'techno']
['drums', 'techno']
['fast', 'fast beat', 'dance', 'techno']
['ambient', 'synth', 'electronic', 'slow', 'techno']
['electronic', 'fast', 'dance', 'techno', 'upbeat']
['electronic', 'fast', 'techno']
['electronic']
['electric', 'synth', 'drums', 'techno', 'beat']
[]
['piano', 'slow']
['male vocal', 'folk', 'piano', 'vocal']
['vocals', 'female', 'piano', 'slow', 'vocal']
['singer', 'male vocal', 'vocals', 'female', 'folk', 'voice', 'male voice', 'man singing', 'man', 'pop', 'piano', 'male vocals', 'male', 'vocal', 'singing']
['male singer', 'piano']
[]
[]
['synth', 'electronic', 'fast', 'no vocals', 'techno', 'soft']
[]
['quiet', 'ambient', 'electronic', 'slow', 'techno', 'beat', 'soft']
[]
['piano']
['slow']
['no voice', 'strings']
['strings', 'loud', 'slow']
[]
[]
['ambient', 'piano', 'slow', 'no drums']
['synth', 'strings', 'low', 'piano', 'slow']
['piano']
['quiet', 'ambient', 'slow']
['classical', 'indian']
['singing']
[]
['no voice', 'bongos', 'beats', 'no voices', 'percussion', 'drum', 'drums', 'fast', 'tribal', 'indian', 'voices']
['indian', 'woman', 'woman singing']
['female vocal', 'vocal', 'indian', 'woman']
['chorus', 'female', 'woman']
['jazz', 'guitar']
[]
['jazz', 'drums', 'jazzy']
['jazz', 'piano', 'slow', 'jazzy']
['jazz', 'keyboard', 'drums', 'piano', 'blues']
['jazz', 'synth', 'piano', 'jazzy']
[]
[]
['beats', 'drum', 'drums', 'electronic', 'fast', 'fast beat', 'techno', 'beat']
['techno']
[]
[]
['spacey', 'ambient', 'new age', 'electronic', 'weird', 'instrumental', 'techno', 'flute']
['synth', 'flute']
['synth', 'modern', 'techno', 'beat']
['beats', 'ambient', 'synth', 'strings', 'electronic', 'violin', 'trance', 'techno', 'beat']
['no voice', 'classical', 'solo', 'strings', 'no vocal', 'violin', 'cello']
['solo', 'strings', 'fast', 'violin', 'cello']
['classical', 'no singing', 'no vocal', 'cello']
[]
[]
['beats', 'loud', 'drums', 'fast', 'industrial', 'techno', 'beat']
['dance']
['drum', 'fast', 'fast beat', 'techno', 'beat']
['techno']
[]
[]
['electronic', 'techno']
['beats', 'drums', 'electronic', 'fast', 'industrial', 'jungle', 'dance', 'techno', 'house', 'beat']
[]
['guitar']
[]
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'folk', 'no violin', 'harp']
['slow']
['classical', 'guitar']
['classical', 'guitar', 'slow', 'no drums']
['classical', 'guitar', 'strings', 'classical guitar', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'solo', 'piano']
['string', 'soft']
['no piano', 'classical', 'guitar', 'solo', 'strings', 'acoustic', 'piano']
['woman']
['vocals', 'female', 'woman', 'woman singing', 'singing']
['female', 'pop', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'soft', 'female singer']
['guitar', 'drums', 'slow']
['classical', 'violins', 'strings', 'slow']
['classical', 'violin']
['classical', 'violins', 'strings', 'string', 'violin', 'orchestral']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'harp', 'lute', 'slow']
['classical', 'guitar', 'no beat', 'strings', 'classical guitar']
['classical', 'guitar']
['no piano', 'classical', 'ambient', 'strings', 'slow', 'water']
['ambient', 'flute']
['quiet', 'ambient', 'weird', 'slow']
['slow', 'no drums', 'flute']
['quiet', 'ambient']
['ambient', 'new age', 'synth', 'airy', 'electronic', 'no vocals', 'sax', 'slow', 'flute', 'soft']
['ambient', 'instrumental', 'slow', 'flute']
['ambient', 'water']
['bass', 'electronic', 'no vocals', 'beat']
['vocal', 'indian', 'woman']
['drums', 'fast']
['classical', 'guitar', 'classical guitar', 'slow']
[]
['classical', 'guitar', 'acoustic guitar']
['ambient', 'electronica']
['piano']
['classical', 'solo', 'piano', 'slow', 'piano solo']
['classical', 'solo', 'piano']
['piano']
['classical', 'solo', 'piano', 'slow', 'soft']
['piano']
['classical', 'piano', 'soft']
[]
['classical', 'quiet', 'classic', 'piano']
['harpsichord', 'classical', 'guitar', 'quiet', 'solo', 'strings', 'harpsicord', 'string', 'no violin', 'light', 'piano', 'slow']
['harpsichord', 'quiet', 'strings', 'piano', 'soft']
['harpsichord', 'classical', 'low', 'harp']
['harpsichord', 'strings', 'piano']
['classical', 'piano']
['piano']
['fast', 'no vocals', 'piano']
['classic', 'piano']
['no voice', 'classical', 'quiet', 'piano']
['classical', 'quiet', 'solo', 'piano', 'slow', 'piano solo']
['classical', 'quiet', 'no guitar', 'piano', 'slow']
['classical', 'piano']
['harpsichord', 'classical', 'violin']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'violin', 'slow', 'no drums', 'baroque']
['classical', 'strings', 'violin']
['classical', 'quiet', 'classic', 'violin', 'low', 'no flute', 'cello', 'soft']
['classical', 'violins', 'strings', 'classic', 'violin', 'cello', 'soft']
['classical', 'quiet', 'violin', 'cello']
[]
[]
['techno', 'beat', 'upbeat']
['no voice', 'beats', 'drums', 'electronic', 'fast', 'fast beat', 'dance', 'techno', 'house', 'beat', 'upbeat']
['techno']
['techno', 'beat']
['techno']
['chanting', 'singing']
['man', 'choir']
['choir']
['no piano', 'choral', 'male', 'voices', 'choir']
['chorus', 'chanting', 'choral', 'opera', 'male', 'monks', 'choir']
['classical', 'violins', 'strings', 'violin']
[]
['male vocal', 'heavy', 'male voice', 'loud', 'fast', 'heavy metal', 'rock', 'metal']
['synth']
['techno']
['loud']
['female', 'pop', 'female vocal', 'rock', 'women']
['pop']
[]
['ambient', 'synth', 'drum', 'dark', 'mellow', 'jazzy', 'beat']
[]
['female', 'woman', 'singing']
['beats', 'drum', 'drums']
['jazz', 'guitar', 'new age', 'piano', 'rock', 'beat']
['guitar', 'fast', 'instrumental', 'upbeat']
['beats', 'synth', 'loud', 'drums', 'fast', 'techno', 'beat']
['drums', 'electronic', 'fast', 'no vocals', 'fast beat', 'techno', 'beat']
['guitar', 'electric', 'synth', 'fast', 'fast beat', 'dance']
[]
['ambient', 'bells', 'techno']
['violins', 'violin', 'slow']
[]
['guitar']
[]
['guitar', 'banjo', 'folk', 'strings', 'string', 'country', 'blues']
['guitar', 'banjo']
['guitar', 'banjo', 'blues']
[]
['ambient', 'trance']
[]
['no voices', 'ambient', 'synth', 'electronic', 'dark', 'techno']
['ambient', 'synth', 'no guitar', 'trance', 'techno']
['ambient', 'new age', 'synth', 'airy', 'loud', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'modern', 'hard', 'light', 'dance', 'techno', 'house']
['synth', 'electronic', 'fast', 'trance', 'dance', 'techno']
['electric', 'synth', 'electronic', 'fast', 'no vocals', 'synthesizer', 'disco', 'techno', 'beat']
['electronic', 'fast', 'electro', 'techno']
['male vocal', 'voice', 'country']
[]
['male vocal', 'guitar', 'male vocals', 'rock', 'singing']
['guitar', 'drums', 'rock', 'guitars', 'beat']
['guitar', 'male voice', 'man', 'male', 'rock']
['rock', 'metal']
['heavy', 'electric guitar', 'rock', 'metal']
['violin', 'slow', 'indian']
['sitar', 'middle eastern', 'bells', 'indian']
['sitar', 'middle eastern', 'fast', 'arabic', 'eastern', 'indian', 'india', 'oriental']
['indian']
['guitar']
['classical', 'guitar', 'strings', 'violin', 'slow', 'cello']
[]
['guitar', 'no vocal', 'violin']
['rock']
['hard rock', 'guitar', 'loud', 'electric guitar', 'rock']
['vocals', 'rock']
['jazz', 'rock']
['vocals', 'female', 'happy']
['guitar', 'rock']
['duet', 'female', 'loud', 'modern', 'female vocal', 'woman', 'rock', 'jazzy', 'female singer']
['vocals', 'female', 'pop', 'woman']
[]
['classical', 'strings', 'slow']
['classical', 'violin', 'oboe']
[]
['loud', 'violin', 'eastern', 'indian']
['drums', 'violin']
['foreign', 'voice']
['quiet', 'drums']
['jazz', 'guitar', 'ambient', 'synth', 'percussion', 'drums', 'modern', 'rock', 'jazzy', 'beat']
['synth']
['techno', 'beat']
['no voice', 'beats', 'funky', 'jazz', 'guitar', 'electric', 'synth', 'no singing', 'drum', 'drums', 'electronic', 'no vocal', 'fast', 'electric guitar', 'electro', 'electronica', 'instrumental', 'pop', 'slow', 'jazzy', 'techno', 'beat', 'upbeat']
['guitar']
['guitar', 'synth', 'weird', 'electric guitar', 'no vocals', 'instrumental', 'pop', 'slow', 'jazzy']
['beats', 'guitar', 'drums', 'electronic', 'electric guitar', 'electro', 'pop', 'beat']
['rock']
[]
['solo', 'no guitar', 'piano']
['piano']
['solo', 'piano', 'piano solo']
['classical', 'piano']
['electronic', 'modern', 'beat']
['electric', 'electronic', 'fast beat', 'techno', 'beat']
['electronic', 'electro', 'techno']
['electric', 'ambient', 'new age', 'synth', 'drums', 'electronic', 'electro', 'instrumental', 'techno', 'beat']
['techno', 'beat']
['no violin']
['ambient', 'new age', 'synth', 'electronic', 'no vocals', 'pop', 'slow', 'techno', 'beat']
['female', 'female voice', 'girl', 'drums', 'pop', 'female vocal', 'vocal', 'singing', 'female singer']
['no flute']
['beats', 'drums', 'electronic', 'no vocals']
['female', 'modern', 'female vocals', 'female singer']
['female voice', 'ambient', 'synth', 'loud', 'slow', 'singing', 'female vocals', 'techno']
['foreign', 'voice', 'male singer', 'man', 'slow', 'indian', 'soft']
[]
['indian']
['sitar', 'male vocal', 'voice', 'arabic', 'eastern', 'male', 'indian']
['bongos', 'drums', 'jungle']
['sitar', 'middle eastern', 'drums', 'electronic', 'no vocals', 'arabic', 'indian', 'oriental']
['arabic', 'male', 'indian']
['chorus', 'vocals', 'classical', 'female', 'choral', 'vocal', 'choir']
['women']
['drums', 'no vocal']
['guitar', 'loud', 'drums', 'rock', 'beat']
['electric guitar', 'rock']
['strings']
['no piano', 'classical', 'violins', 'strings', 'violin', 'orchestral', 'orchestra', 'slow', 'cello']
['classical', 'slow']
[]
[]
['sitar', 'strings', 'string', 'indian']
['sitar', 'guitar', 'strings', 'indian']
['sitar', 'guitar', 'banjo', 'solo', 'strings', 'eastern', 'indian', 'guitars']
[]
[]
['flute']
['classical', 'strings', 'cello', 'flute']
[]
['drums', 'fast', 'beat']
['hard rock', 'guitar', 'loud', 'drums', 'electric guitar', 'hard', 'rock']
['no voice', 'guitar', 'loud', 'drums', 'no vocal', 'electric guitar', 'rock']
['rock', 'metal']
['guitar', 'loud', 'rock']
['techno']
[]
['electronic', 'trance', 'techno', 'noise']
['loud', 'fast', 'industrial', 'dance', 'techno', 'noise']
['drums']
['drum', 'drums', 'tribal', 'bells']
[]
['male vocal', 'vocals', 'guitar', 'acoustic', 'man singing', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['guitar', 'country']
['male vocal', 'vocals', 'guitar', 'voice', 'drums', 'country', 'modern', 'male vocals', 'slow', 'male', 'vocal']
['male voice', 'country', 'male vocals', 'rock']
['guitar', 'country', 'man', 'pop', 'male vocals', 'singing']
['guitar', 'male voice']
[]
['guitar', 'strings', 'drums', 'talking', 'male vocals', 'rock']
['guitar', 'solo', 'loud', 'man', 'vocal', 'rock']
['harpsichord', 'guitar', 'banjo', 'harp']
['chimes', 'guitar', 'quiet', 'keyboard', 'instrumental', 'bells', 'no flute', 'piano', 'slow']
['female', 'guitar', 'woman', 'female singer']
['female', 'guitar', 'pop', 'female vocal', 'woman', 'women']
['female', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'soft']
['guitar', 'bells', 'light']
['guitar', 'solo', 'folk', 'acoustic', 'country', 'slow']
['male vocal', 'guitar', 'country', 'vocal']
['male vocal', 'guitar', 'country', 'pop', 'slow']
[]
['man']
['male vocal', 'guitar', 'acoustic', 'male']
['singer', 'guitar']
['no vocals']
['no voice', 'quiet', 'ambient', 'electronic', 'weird', 'slow', 'dance']
['piano']
['no voice', 'bass', 'slow']
['ambient', 'slow']
['ambient', 'slow', 'scary']
['no vocal', 'no vocals', 'piano']
['jazzy']
['no voice', 'beat']
[]
['new age', 'synth', 'electronic', 'fast', 'electro', 'trance', 'dance', 'techno', 'beat']
['beats', 'electric', 'drum', 'repetitive', 'drums', 'electronic', 'no vocal', 'electro', 'no vocals', 'fast beat', 'techno', 'house', 'beat']
['no piano', 'techno']
['electronic', 'techno', 'beat']
['synth', 'techno']
['beats', 'electronic', 'slow', 'techno']
[]
['electronic', 'electronica', 'techno']
['quiet', 'techno']
[]
[]
[]
['electronic', 'dark', 'beat']
['no singing', 'piano', 'slow']
['piano']
['classical', 'jazz', 'piano']
['classical', 'piano', 'jazzy']
['jazz', 'bass', 'drums', 'fast', 'piano', 'jazzy', 'upbeat']
['jazz', 'bass', 'drums', 'piano', 'jazzy', 'upbeat']
['piano', 'rock']
['jazz', 'piano']
['jazz', 'piano', 'jazzy']
['no voice', 'classical', 'quiet', 'solo', 'piano', 'slow', 'piano solo', 'soft']
['hard rock', 'punk', 'male', 'rock', 'metal']
['male vocal', 'guitar', 'loud', 'fast', 'rock', 'metal']
['electric', 'electronic', 'no vocal', 'electro', 'no vocals', 'techno']
['singer', 'male vocal', 'beats', 'electric', 'ambient', 'synth', 'voice', 'male voice', 'drums', 'electronic', 'electro', 'electronica', 'modern', 'pop', 'male vocals', 'male', 'vocal', 'techno', 'beat']
['male vocal', 'voice', 'male voice', 'electronic', 'man', 'male', 'vocal', 'techno']
[]
[]
['new age', 'synth', 'electronic', 'no vocals', 'instrumental', 'modern', 'bells', 'slow', 'house', 'beat']
['harpsichord', 'classical', 'strings', 'fast', 'violin', 'cello']
['harpsichord', 'classical', 'classic']
['classical', 'strings', 'classic', 'cello']
['classical', 'violins', 'strings', 'classic', 'fast', 'cello']
['harpsichord', 'no piano', 'classical', 'strings', 'harpsicord', 'medieval', 'classic', 'horn', 'oboe', 'light', 'piano', 'orchestra', 'old', 'baroque']
['no piano', 'classical']
['classical', 'classic', 'piano']
['classical', 'solo', 'fast', 'piano']
['fast', 'piano']
['classical', 'piano']
['classical', 'fast', 'piano']
['piano']
['classical', 'piano']
['solo', 'piano']
['guitar', 'strings', 'no vocal', 'harp', 'slow']
['classical', 'quiet', 'piano', 'slow', 'soft']
['no voice', 'classical', 'solo', 'piano']
[]
['solo', 'piano']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'instrumental', 'orchestra', 'flutes', 'flute', 'baroque']
['classical', 'strings', 'violin', 'orchestra']
['classical', 'violin', 'orchestra']
[]
['classical']
['classical', 'solo', 'cello']
['strings', 'classic', 'cello']
['cello']
[]
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'cello']
[]
['classical', 'violins', 'strings', 'classic', 'string', 'violin', 'no vocals', 'low', 'cello']
['classical', 'strings', 'bass', 'violin', 'low', 'cello']
['classical', 'strings', 'violin', 'cello']
[]
['classical', 'guitar', 'strings', 'classic', 'classical guitar', 'country']
['classical', 'guitar', 'strings', 'classic', 'harp', 'slow']
['guitar', 'quiet', 'piano', 'soft']
[]
['guitar']
['guitar', 'strings', 'violin', 'slow']
['female', 'female voice', 'middle eastern', 'chanting', 'eastern', 'indian', 'woman', 'singing', 'not opera']
['indian', 'woman']
['new age', 'slow']
['indian']
[]
[]
['male vocal', 'male voice', 'male vocals', 'rap', 'hip hop']
['vocals', 'male voice', 'man', 'pop', 'male', 'vocal', 'beat', 'rap', 'hip hop']
['vocals', 'rap']
['loud', 'drums', 'weird', 'fast', 'no vocals', 'fast beat', 'techno', 'beat']
['electric', 'loud', 'fast', 'no vocals', 'industrial', 'rock', 'techno', 'metal']
['drums', 'fast', 'fast beat', 'rock', 'techno']
[]
['loud', 'pop', 'rock']
['guitar', 'loud', 'rock']
['male vocal', 'vocals', 'loud', 'male', 'rock', 'singing', 'metal']
['duet', 'classical', 'guitar', 'acoustic', 'classical guitar', 'no vocals', 'spanish', 'slow']
['guitar', 'folk', 'strings', 'acoustic', 'no vocals', 'modern', 'slow', 'guitars', 'soft']
['guitar']
['quiet', 'choral', 'choir']
['electronic', 'no vocals']
['female', 'pop', 'female singer']
['female', 'female voice', 'disco', 'pop', 'vocal', 'woman', 'dance', 'singing', 'techno', 'beat']
['female', 'woman', 'rock']
['female', 'trance', 'techno', 'beat']
['woman']
['techno']
['electronic', 'weird', 'techno']
['drone']
['quiet', 'ambient', 'deep', 'slow']
['synth', 'repetitive', 'electronic', 'electro', 'low', 'slow', 'techno', 'beat']
[]
['electronic', 'weird']
['beats', 'spacey', 'electric', 'synth', 'repetitive', 'drums', 'electronic', 'electronica', 'slow', 'techno', 'beat']
['techno']
['synth', 'electronic', 'techno']
['synth', 'electronic', 'techno']
['electronic']
['electronic', 'no vocals', 'pop']
['synth', 'drums', 'electronic', 'no violin', 'techno']
['synth', 'electronic', 'slow', 'techno']
['new age', 'electronic', 'slow', 'techno']
['spacey', 'synth', 'electronic', 'electronica', 'techno']
['sitar', 'guitar', 'bass', 'indian']
['sitar']
[]
[]
['indian']
['classical', 'guitar', 'quiet', 'string', 'soft']
['classical', 'guitar']
['ambient', 'slow', 'vocal']
['vocal', 'woman']
['slow']
[]
['synth', 'slow']
['cello']
['classical', 'solo', 'classic', 'violin', 'cello']
['classical', 'solo', 'violin', 'viola', 'cello']
['classical', 'solo', 'violin']
[]
[]
[]
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'string', 'piano', 'slow', 'soft']
['harpsichord']
[]
['harpsichord', 'classical', 'harpsicord', 'instrumental']
['harpsichord', 'harpsicord', 'soft']
['classical', 'violin', 'cello']
['classical', 'bass', 'cello']
['classical', 'solo', 'strings', 'classic', 'violin', 'cello']
['harpsichord', 'classical', 'guitar', 'strings']
['harpsichord', 'strings']
[]
['harpsichord', 'classical', 'piano']
['harpsichord', 'classical', 'harpsicord', 'classic']
['guitar', 'acoustic', 'country', 'slow']
[]
['guitar']
['guitar', 'no vocals']
['beat']
[]
['guitar', 'ambient', 'slow', 'soft']
['guitar', 'strings', 'slow', 'calm', 'soft']
['vocals', 'female', 'guitar', 'quiet', 'slow', 'vocal', 'singing']
['guitar', 'slow', 'singing']
['vocal', 'woman']
['quiet']
[]
['fast', 'dance', 'techno', 'house']
['electronic', 'fast', 'dance', 'techno', 'beat']
['bass', 'drums', 'electronic', 'fast', 'no vocals', 'trance', 'dance', 'techno', 'clapping', 'beat', 'upbeat']
['electronic', 'fast', 'techno']
['no vocal', 'dance', 'techno']
['fast', 'techno']
['fast', 'no vocals', 'techno']
['female', 'female voice', 'voice', 'electronic', 'fast', 'techno']
['indian']
['strings', 'fast']
[]
[]
['no voice', 'guitar', 'strings', 'loud', 'fast']
['guitar', 'solo', 'drums', 'fast', 'electric guitar', 'techno', 'upbeat']
[]
[]
['guitar', 'electric', 'fast', 'electric guitar', 'rock']
['guitar', 'electronic', 'fast']
['men', 'classical', 'chanting', 'choral', 'opera', 'chant', 'man', 'male vocals', 'old', 'male', 'vocal', 'voices', 'monks', 'choir']
['chanting', 'male vocals', 'male', 'singing', 'choir']
['opera', 'chant', 'vocal']
[]
['choir']
['harpsichord', 'female vocal', 'not english', 'women']
['harpsichord', 'vocals', 'female', 'folk', 'voice', 'opera', 'irish', 'celtic', 'woman', 'singing', 'women']
['harpsichord', 'vocals', 'vocal', 'women']
['classical', 'guitar', 'quiet', 'strings', 'harp', 'lute', 'slow', 'calm']
['guitar', 'slow']
['harp']
['classical', 'harp', 'piano']
['classical', 'strings', 'no vocals', 'harp']
['harp']
['voice', 'talking', 'woman']
['singer', 'female voice', 'voice', 'drums', 'pop', 'woman', 'female vocals']
['drums', 'no flute']
['no piano', 'guitar', 'drums', 'fast', 'rock']
['violin', 'pop']
['vocals', 'voice', 'drums', 'vocal', 'indian']
['drums', 'weird', 'violin', 'female vocal', 'eastern', 'indian', 'beat']
['drums', 'rock']
['female', 'jazz', 'female voice', 'voice', 'female vocal', 'piano', 'vocal', 'woman', 'singing', 'female singer']
['piano']
['female', 'voice', 'girl', 'female vocal', 'piano', 'woman', 'singing', 'female vocals', 'female singer', 'english']
['choral', 'choir']
['quiet', 'chanting', 'choral', 'opera', 'choir']
['quiet', 'choral', 'no flute', 'vocal', 'voices', 'choir']
['vocals', 'ambient', 'choral', 'choir']
['classical', 'choral', 'slow', 'vocal', 'choir']
['men', 'classical', 'choral', 'choir']
['guitar', 'drums', 'man singing', 'country', 'vocal', 'rock']
['male vocal', 'loud', 'country', 'man', 'pop', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'male voice', 'male singer', 'man singing', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'country', 'slow', 'male', 'vocal', 'rock']
['vocals', 'male voice', 'male singer', 'country', 'male']
['male vocal', 'guitar', 'loud', 'drums', 'country', 'man', 'male', 'rock']
['harpsichord', 'classical', 'guitar', 'harpsicord']
[]
['electronic', 'weird', 'techno']
['electronic', 'electronica', 'techno']
[]
['beats']
['indian']
['drums', 'beat']
['no piano', 'drum', 'electronic', 'dark', 'indian', 'techno', 'beat']
['electronic', 'techno']
['guitar']
['new age', 'beat']
['male vocal', 'electronic', 'male', 'beat']
['vocals', 'ambient', 'industrial', 'hip hop']
['male voice', 'dark']
['male vocal', 'vocals', 'not classical', 'dark', 'male', 'rock']
['electronic', 'no guitar']
['synth', 'voice', 'electronic', 'electronica', 'echo', 'techno']
['synth', 'electronic', 'techno', 'beat']
['electronic', 'electro', 'techno']
['electronic', 'techno', 'beat']
['synth', 'voice', 'male voice', 'electronic', 'fast', 'electro', 'techno', 'beat']
[]
['beats', 'drums', 'electronic', 'techno']
['male vocal', 'beats', 'electric', 'drums', 'electronic', 'electro', 'low', 'male', 'vocal', 'rock', 'techno', 'beat']
['male vocal', 'vocals', 'guitar', 'voice', 'drums', 'fast', 'male singer', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing', 'techno']
['male vocal', 'vocals', 'synth', 'male voice', 'drums', 'male', 'vocal', 'rock', 'dance', 'singing', 'techno']
['trance', 'indian', 'techno']
['classical', 'guitar', 'harp', 'slow']
['slow']
[]
['no voice', 'classical', 'guitar', 'strings', 'no vocal', 'classical guitar', 'no vocals', 'spanish']
['guitar']
['flute']
['classical', 'solo', 'medieval', 'irish', 'slow', 'flute', 'oriental']
['no drums', 'flute']
['flute']
['instrumental', 'flute']
['beats', 'electric', 'synth', 'drums', 'electronic', 'no vocal', 'fast', 'electronica', 'disco', 'fast beat', 'dance', 'techno', 'beat']
['techno']
['no voice', 'beats', 'synth', 'funk', 'electronic', 'no vocal', 'fast', 'no vocals', 'fast beat', 'dance', 'techno', 'house', 'beat', 'upbeat']
['electronic', 'fast', 'dance', 'techno', 'beat']
['electronic', 'fast', 'violin', 'electro', 'dance', 'techno', 'upbeat']
['dance', 'techno']
['violin']
['harpsichord']
['harpsichord', 'strings']
['no voice', 'harpsichord', 'strings', 'harpsicord', 'harp', 'slow']
['harpsichord', 'no vocal', 'no vocals']
['harpsichord', 'classical', 'harpsicord']
['harpsichord']
['harpsichord', 'guitar', 'quiet', 'strings', 'medieval', 'slow']
['harpsichord', 'classical', 'guitar', 'strings', 'keyboard', 'harp', 'soft']
['electronic', 'techno']
['electronic', 'techno']
['synth', 'electronic', 'techno']
['electronic', 'electro', 'dance', 'techno']
['electric', 'synth', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'dance', 'techno']
[]
['techno']
['synth', 'drums', 'electronic', 'electronica', 'techno']
['strings', 'electronic']
['guitar', 'ambient', 'new age', 'electronic', 'instrumental']
[]
['no piano', 'ambient', 'synth', 'electronic']
['techno']
['vocals', 'male voice', 'electronic', 'fast', 'trance', 'male', 'techno']
['heavy', 'drums', 'rock', 'techno', 'metal']
['no singing', 'techno']
[]
['male voice']
['percussion', 'drums']
['no singing', 'loud', 'drums', 'no vocals']
['heavy', 'percussion', 'loud', 'drums', 'techno', 'beat', 'noise', 'hip hop']
[]
[]
['solo', 'piano']
['piano']
['piano']
['plucking', 'guitar', 'repetitive', 'strings', 'weird', 'fast', 'beat']
[]
['guitar', 'banjo']
['guitar', 'strings', 'string', 'weird', 'violin', 'spanish', 'indian']
['harpsichord', 'strings', 'harp']
['fast']
['indian']
['world', 'strings', 'fast', 'harp', 'indian']
['strings']
[]
['sitar', 'guitar', 'no vocals', 'slow', 'soft']
['guitar', 'strings', 'slow']
[]
[]
['classical', 'jazz', 'guitar', 'spanish']
['guitar', 'drums']
['guitar', 'acoustic', 'spanish']
[]
['loud', 'no vocal', 'violin', 'dark', 'orchestra', 'slow', 'beat']
['no voice', 'drums', 'electronic', 'violin', 'no vocals', 'modern', 'indian', 'beat']
['strings', 'soft']
['drums', 'indian']
['no piano', 'strings', 'fast']
['middle eastern', 'violin', 'horn', 'indian']
[]
['techno']
['drums', 'techno', 'beat']
['synth', 'drums', 'electronic', 'no guitar', 'clapping']
['no voice', 'no strings', 'techno', 'beat']
['no voice', 'synth', 'drums', 'electronic', 'no vocal', 'weird', 'techno', 'beat']
['no voice', 'beats', 'synth', 'electronic', 'techno']
['techno', 'beat']
['funky', 'slow', 'techno']
['synth', 'drums', 'electronic', 'electronica', 'drone', 'vocal', 'rock', 'beat']
[]
[]
[]
['electronic', 'organ', 'weird']
[]
['electronic', 'weird', 'strange']
[]
['spacey', 'electric', 'space', 'electronic']
['synth', 'airy', 'electronic', 'no guitar', 'no vocal', 'fast', 'techno']
['synth', 'keyboard', 'electronic', 'organ', 'weird', 'fast', 'techno']
[]
[]
['drums', 'trance', 'dance', 'beat']
['funky', 'drums', 'beat']
['electronic']
['drums', 'techno', 'noise']
['space', 'scary']
[]
[]
['female', 'slow', 'vocal', 'singing', 'female vocals', 'choir', 'women']
['opera']
[]
['female', 'opera', 'slow', 'vocal', 'singing', 'voices']
['woman']
['not english']
['drums', 'fast', 'indian', 'beat']
['sitar', 'female', 'middle eastern', 'eastern', 'indian', 'female vocals']
['vocals', 'girl', 'indian', 'woman']
['vocals', 'foreign', 'drums', 'arabic', 'bells', 'indian', 'singing']
['vocals', 'foreign', 'voice', 'eastern', 'vocal', 'indian', 'singing', 'voices']
['vocal', 'indian']
['sitar', 'foreign', 'middle eastern', 'no vocals', 'eastern', 'indian', 'india', 'beat']
['arabic', 'vocal', 'indian']
['sitar', 'male vocal', 'middle eastern', 'man singing', 'horn', 'chant', 'male', 'not english']
['guitar']
['electronic', 'fast', 'instrumental']
['synth', 'drums', 'electronic', 'no vocal', 'no vocals']
['noise']
['world', 'beats', 'airy', 'strings', 'drums', 'weird', 'violin', 'modern', 'slow', 'indian', 'dance', 'beat']
['guitar', 'percussion', 'strings', 'drums', 'electronic', 'no vocal', 'weird', 'violin', 'no vocals', 'indian', 'no drums', 'techno', 'beat']
['classical', 'female', 'female voice', 'voice', 'opera', 'vocal', 'woman', 'singing', 'female vocals']
['guitar', 'opera', 'vocal', 'woman', 'female singer']
[]
['rock', 'metal']
['rock']
['hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'heavy metal', 'hard', 'male', 'rock', 'guitars', 'metal']
['guitar', 'rock', 'metal']
['guitar', 'rock']
[]
['fast', 'heavy metal', 'rock', 'metal']
['chorus', 'vocals', 'choral', 'opera', 'chant', 'choir']
['chorus', 'chanting', 'choral', 'opera', 'slow', 'vocal', 'singing', 'voices', 'choir']
['choral', 'voices', 'choir']
['choral']
['guitar', 'country']
['male vocal', 'vocals', 'guitar', 'loud', 'vocal']
['guitar', 'loud', 'not opera']
['vocals', 'guitar', 'loud', 'man', 'pop', 'male vocals', 'male', 'rock']
['techno']
['no voices', 'techno', 'beat']
['synth', 'drums', 'beat']
['no voice', 'ambient', 'electronic', 'no vocal', 'no vocals', 'slow', 'techno']
['no piano', 'ambient', 'synth', 'electronic', 'weird', 'techno']
['ambient']
['synth', 'electronic', 'weird', 'beat']
['loud']
['synth', 'loud', 'drums', 'electronic', 'no vocal', 'weird', 'electro', 'techno']
['electric', 'synth', 'electronic', 'trance', 'bells', 'calm']
['guitar']
['guitar', 'strings', 'slow']
['beats', 'synth', 'loud', 'electronic', 'techno']
['female', 'opera']
['classical', 'flute']
[]
['ambient', 'scary']
['classical', 'ambient']
['classical']
['jazz', 'drums', 'piano', 'jazzy']
['slow', 'jazzy', 'soft']
['drums', 'fast', 'no singer', 'rock']
[]
['hard rock', 'guitar', 'loud', 'drums', 'rock', 'guitars', 'metal']
['male vocal', 'vocals', 'voice', 'male voice', 'chant', 'man', 'male', 'indian']
[]
['men', 'chanting', 'choral', 'chant', 'male', 'vocal', 'choir']
[]
['opera']
['chanting', 'chant']
['chanting', 'choral', 'opera', 'chant', 'male', 'monks', 'choir']
['techno']
['electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'trance', 'fast beat', 'techno']
['electronic', 'fast', 'dance', 'techno']
['techno']
[]
['synth', 'fast', 'dance', 'techno']
['electronic', 'electronica', 'techno']
['electronic', 'fast', 'techno']
['techno']
['techno']
['synth', 'fast', 'modern', 'techno', 'beat']
[]
['vocals', 'guitar', 'male voice', 'man', 'vocal']
['male vocal', 'guitar', 'folk', 'male voice', 'male singer', 'pop', 'male', 'vocal', 'singing']
['male vocal', 'soft rock', 'guitar', 'folk', 'voice', 'male voice', 'acoustic', 'acoustic guitar', 'male singer', 'man', 'pop', 'mellow', 'slow', 'male', 'vocal', 'rock', 'singing', 'soft']
['male vocal', 'guitar', 'folk', 'male voice', 'acoustic guitar', 'man', 'slow', 'male', 'vocal']
['rock']
['vocals', 'talking']
['guitar', 'drum', 'drums', 'rock']
['loud', 'drums', 'rock']
['electronica', 'strange', 'techno']
['ambient', 'new age', 'synth', 'loud', 'weird', 'electro', 'techno']
['synth', 'electronic', 'fast', 'techno']
[]
['electronic']
[]
['repetitive', 'electronic', 'fast', 'techno']
['horns', 'ambient', 'new age', 'synth', 'no singing', 'airy', 'loud', 'electronic', 'fast', 'instrumental', 'techno', 'beat']
['guitar', 'loud', 'drums', 'fast', 'hard', 'rock']
['guitar', 'loud', 'drums', 'no vocal', 'electric guitar', 'no vocals', 'rock']
[]
['loud', 'rock']
['guitar', 'loud', 'drums', 'fast', 'modern', 'rock']
['no singing', 'rock']
['guitar', 'rock']
['loud', 'rock']
['rock']
['no voice', 'guitar', 'loud', 'rock']
['guitar', 'rock']
['rock']
['foreign', 'singing']
['duet', 'vocals', 'opera', 'vocal', 'women']
['foreign', 'female', 'singing', 'choir']
['piano', 'slow', 'beat']
['piano']
['quiet', 'string', 'piano']
['guitar', 'piano', 'slow']
['harpsichord', 'strings']
['piano']
['harp']
['hard rock', 'heavy', 'guitar', 'fast', 'electric guitar', 'punk', 'rock', 'metal']
['guitar', 'male singer', 'heavy metal', 'rock', 'metal']
['loud', 'rock', 'metal']
['male vocal', 'classical', 'opera', 'male opera', 'male']
[]
['opera']
['classical', 'strings', 'classic', 'violin', 'no vocals', 'orchestra', 'flute', 'baroque']
['drum', 'drums']
['jazz', 'drums', 'piano', 'sax', 'slow', 'jazzy', 'beat']
['foreign', 'female', 'eastern', 'sax', 'slow', 'indian', 'jazzy', 'singing', 'female vocals']
['female vocal']
['jazz', 'guitar', 'not classical', 'rock', 'jazzy']
[]
['violins', 'strings', 'violin']
['classical', 'violin', 'baroque']
['solo', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'viola']
['cello']
['classical', 'spacey', 'ambient', 'horn', 'instrumental', 'slow', 'flute', 'soft']
[]
['beat']
['guitar', 'ambient', 'synth', 'voice', 'electronic', 'no guitar', 'electric guitar', 'electro', 'man', 'vocal', 'voices', 'techno']
['slow']
['guitar', 'electric', 'synth', 'drums', 'electronic', 'electric guitar', 'techno']
[]
['ambient', 'synth', 'electronic', 'trance', 'slow']
['ambient', 'new age']
['guitar', 'ambient', 'synth']
[]
[]
['weird', 'drone', 'water']
['harpsichord', 'classical', 'strings', 'harpsicord', 'medieval', 'no vocal', 'violin', 'harp', 'piano', 'baroque']
['no voice', 'harpsichord', 'classical', 'strings', 'no vocal', 'no vocals', 'harp', 'baroque']
['strings', 'violin']
[]
[]
['classical', 'male voice', 'classic', 'opera', 'violin', 'male']
['strings', 'opera', 'violin']
['quiet', 'opera', 'slow', 'vocal']
[]
['classical', 'opera', 'singing']
['guitar', 'electric guitar', 'bells', 'rock']
[]
[]
['classical']
['percussion', 'drum', 'drums', 'no vocal', 'fast', 'fast beat', 'techno', 'beat']
['beats', 'percussion', 'repetitive', 'drums', 'fast', 'rock', 'dance', 'techno', 'beat']
['drums']
['drums', 'fast', 'techno', 'house']
['beats', 'drums', 'electronic', 'fast', 'no vocals', 'fast beat', 'techno', 'house', 'beat', 'upbeat']
['harpsichord', 'classical', 'guitar', 'banjo', 'strings', 'harpsicord', 'string', 'no vocal']
['male vocal', 'guitar', 'no vocal', 'fast', 'male singer', 'man singing', 'country', 'pop', 'male', 'rock', 'upbeat']
['singer', 'guitar', 'man singing', 'country', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['male vocal', 'guitar', 'pop']
['male voice', 'country', 'man', 'pop', 'male', 'rock']
['no voice', 'guitar', 'slow']
['classical', 'guitar', 'strings', 'slow']
['guitar', 'piano', 'spanish', 'slow']
['classical', 'guitar', 'strings', 'harp', 'slow', 'calm']
['classical', 'guitar', 'solo', 'piano']
[]
['guitar', 'strings', 'classical guitar', 'harp']
['classical', 'guitar', 'solo', 'string', 'classical guitar', 'spanish', 'slow']
['guitar', 'no beat', 'electric', 'solo', 'electric guitar']
['guitar', 'voice', 'drums']
['male singer', 'male vocals', 'slow', 'male']
['male vocal', 'guitar', 'voice', 'bass', 'rock']
['guitar', 'slow', 'male', 'vocal']
['rock', 'singing']
['drums', 'male']
['clasical', 'classical', 'violins', 'flute']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'classic', 'violin', 'no vocals', 'flute', 'baroque']
['classical', 'strings', 'classic', 'violin', 'orchestra']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestra']
['no piano', 'classical', 'violins', 'strings', 'classic', 'orchestral', 'orchestra']
[]
['harpsichord', 'classical', 'quiet', 'flute']
['no voice', 'classical', 'strings', 'violin', 'no vocals', 'orchestral', 'orchestra']
['classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'quiet', 'flute']
['harpsichord', 'classical', 'strings', 'violin', 'slow', 'flute']
['plucking', 'sitar', 'guitar', 'fast', 'eastern']
[]
['sitar']
['sitar']
[]
[]
['harpsichord', 'classical', 'guitar', 'strings']
['guitar', 'acoustic', 'soft']
['classical guitar']
['plucking', 'classical', 'guitar', 'no vocal']
['classical', 'guitar', 'slow']
['harpsichord', 'classical', 'violin', 'no flute']
[]
['male vocal', 'vocals', 'guitar', 'solo', 'male voice', 'acoustic', 'acoustic guitar', 'slow']
['guitar', 'strings', 'weird', 'fast']
['guitar']
['no voice', 'guitar', 'acoustic', 'fast']
['guitar', 'solo', 'acoustic', 'fast', 'country']
[]
['guitar', 'fast']
['guitar']
[]
['guitar']
['guitar']
['guitar', 'strings']
['no piano', 'jazz', 'guitar', 'blues', 'jazzy']
[]
['jazz', 'guitar', 'country', 'slow', 'blues', 'jazzy']
[]
['classical', 'female', 'guitar', 'opera', 'female vocal', 'vocal', 'woman']
['synth', 'strings', 'electronic']
['synth', 'electronic', 'no guitar', 'trance']
['electronic', 'techno', 'beat']
['techno']
['electronic', 'no vocals', 'synthesizer', 'techno']
['synth', 'electronic', 'no vocals', 'techno']
[]
['synth', 'electronic', 'dark', 'no vocals', 'slow', 'techno']
['electric', 'techno']
['electronic', 'techno']
[]
[]
['classic', 'flute']
['classical', 'strings', 'slow', 'flute']
['classical', 'strings', 'classic', 'violin', 'flute']
['classical', 'strings', 'cello', 'flute']
['classical', 'strings', 'violin', 'orchestral', 'flute']
[]
['classical', 'quiet', 'strings', 'classic', 'string', 'violin', 'cello', 'flute']
['classical', 'strings', 'no guitar', 'violin', 'slow', 'cello', 'flute']
['classical', 'violins', 'violin']
['female', 'guitar', 'female voice', 'acoustic guitar', 'female vocal', 'woman', 'singing', 'female singer']
['female', 'guitar', 'woman']
['guitar', 'voice', 'woman']
['vocals', 'female', 'guitar', 'female voice', 'modern', 'pop', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals']
['female', 'guitar', 'female voice', 'country', 'pop', 'female vocal', 'woman', 'singing']
['guitar', 'drums', 'fast', 'rock', 'beat']
['funky', 'funk', 'voice', 'electronic', 'fast', 'strange', 'man', 'voices', 'techno', 'not english', 'beat', 'rap', 'hip hop']
['electronic', 'fast', 'dance', 'techno']
['fast', 'techno', 'rap', 'hip hop']
['male vocal', 'fast', 'spanish', 'vocal', 'techno']
['beats', 'synth', 'funk', 'drum', 'voice', 'drums', 'spanish', 'male', 'dance', 'jazzy', 'techno', 'clapping', 'beat']
['male vocal', 'electronic', 'weird', 'techno', 'rap']
[]
['beats', 'synth', 'drum', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'pop', 'techno', 'beat']
['drums', 'techno', 'beat']
['electronic', 'techno']
['no voice', 'synth', 'percussion', 'drums', 'fast', 'no vocals', 'dance', 'techno', 'beat']
['drums', 'fast', 'beat']
['beats', 'percussion', 'drums', 'no violin', 'beat']
[]
['guitar', 'new age']
[]
['drums']
[]
['synth', 'loud', 'fast', 'no vocals']
['middle eastern', 'drums', 'fast', 'beat']
['guitar', 'solo', 'synth', 'strings', 'drums', 'fast', 'techno']
['quiet', 'synth', 'no singing', 'percussion', 'drum', 'drums', 'fast', 'tribal', 'beat']
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'orchestra', 'soft']
['classical', 'strings', 'opera', 'orchestral', 'orchestra', 'woman']
['opera']
['vocals', 'classical', 'female', 'female voice', 'voice', 'strings', 'classic', 'opera', 'violin', 'operatic', 'orchestra', 'vocal', 'woman', 'female singer']
['classical', 'female', 'opera', 'vocal']
['opera']
['opera']
['female', 'opera']
['classical', 'clapping']
['female vocals']
['ambient', 'synth', 'slow']
[]
['deep']
[]
['no voice', 'piano', 'beat']
['ambient', 'piano', 'slow']
['slow', 'no singer']
['no vocal']
['electronic', 'piano', 'techno', 'beat']
['soft']
['opera']
['female', 'female voice', 'opera', 'woman']
['opera']
['classical', 'female', 'opera', 'woman', 'woman singing', 'singing']
[]
[]
['foreign', 'female', 'guitar', 'female voice', 'new age', 'drum', 'drums', 'female vocal', 'slow', 'vocal', 'indian', 'woman', 'singing', 'female vocals', 'not english', 'beat', 'women']
['heavy metal', 'male', 'rock']
['hard rock', 'loud', 'male vocals', 'rock']
[]
['guitar']
['no voice', 'classical', 'guitar', 'piano']
['guitar', 'slow']
['classical', 'guitar', 'strings', 'classical guitar', 'celtic', 'slow']
['classical', 'guitar', 'sad']
['classical', 'guitar', 'quiet', 'strings', 'piano', 'slow', 'soft']
['classical', 'guitar', 'harp', 'slow']
['guitar', 'string']
['quiet', 'weird']
['chimes', 'drum', 'drums', 'bells', 'flutes', 'flute']
['world', 'drums', 'jungle', 'flutes', 'flute']
['synth', 'flute']
['guitar', 'solo', 'acoustic', 'slow']
['female', 'guitar', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals']
['classical', 'strings', 'violin', 'slow']
['heavy', 'guitar', 'male voice', 'punk', 'male', 'rock']
['synth', 'electronic', 'electro', 'pop', 'techno', 'beat']
['electronic', 'techno', 'beat']
['synth', 'electronic', 'techno', 'beat']
['electronic', 'techno', 'beat']
['electric', 'synth', 'electronic', 'no guitar', 'techno', 'beat']
['beats', 'synth', 'electronica', 'dance', 'techno']
['techno']
['electronic', 'techno']
['ambient', 'slow']
[]
['quiet', 'ambient']
[]
['classical']
['not rock', 'slow']
['ambient']
['synth', 'techno']
[]
[]
['violins', 'strings', 'violin', 'orchestral']
['no piano', 'violin', 'cello']
['slow']
['classical', 'violin', 'sad', 'slow', 'cello', 'soft']
['strings', 'drums', 'violin', 'sad', 'slow', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
[]
['vocals', 'violin']
['vocals', 'female', 'voice', 'slow', 'woman']
['strings', 'violin']
['ambient', 'electronic', 'weird', 'slow', 'techno']
['guitar', 'male vocals', 'vocal']
['singer', 'male vocal', 'guitar', 'fast', 'pop', 'male', 'vocal', 'rock', 'singing']
['vocals', 'guitar', 'drums', 'electric guitar', 'rock']
['voice', 'man']
['no voice', 'guitar', 'electric', 'solo', 'electric guitar', 'rock']
['male vocal', 'guitar', 'pop', 'male']
['male vocal', 'jazz', 'rock', 'singing']
['funky', 'bass']
['beats', 'funky', 'female', 'jazz', 'female voice', 'bass', 'drums', 'female vocal', 'jazzy', 'female vocals', 'beat']
['loud', 'vocal', 'woman', 'jazzy']
['guitar']
[]
['guitar', 'woman']
['guitar']
['vocal']
['female', 'female vocal', 'slow', 'vocal']
['opera', 'woman', 'no drums', 'singing']
['cello']
['classical', 'flute']
['chanting', 'choral', 'chant', 'voices', 'choir']
['chorus', 'choral', 'opera', 'choir']
['chant', 'choir']
[]
['piano']
[]
[]
['bells', 'piano', 'soft']
['jazz']
[]
['violin']
['classical', 'violins', 'folk', 'fast', 'country', 'violin', 'irish', 'fiddle']
['beats', 'drums', 'violin', 'irish', 'fiddle']
[]
['female', 'female voice', 'voice', 'no guitar', 'opera', 'slow']
['singer', 'female', 'female vocal', 'vocal', 'soft']
['opera', 'violin', 'vocal']
['female opera', 'female', 'female voice', 'opera', 'violin', 'slow', 'woman']
['no voice', 'classical', 'guitar', 'banjo', 'piano']
['plucking', 'harpsichord', 'classical', 'guitar']
[]
['vocal']
['female', 'female voice', 'voice', 'pop', 'female vocal', 'woman', 'singing']
['guitar', 'rock', 'singing', 'female singer']
['beats', 'female', 'electronic', 'fast', 'trance', 'techno', 'beat']
['beat']
['harpsichord', 'sitar', 'classical', 'fast', 'oriental']
['fast', 'harp']
['no voice', 'sitar', 'no singing', 'fast', 'piano', 'indian']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'classical guitar', 'harp', 'lute', 'baroque']
['classical', 'guitar']
['classical', 'guitar', 'strings', 'classic', 'classical guitar', 'harp', 'slow']
['classical', 'guitar', 'fast', 'classical guitar', 'piano', 'spanish', 'soft']
['female', 'violins', 'drum', 'strings', 'drums']
['female', 'medieval', 'no flute', 'woman', 'female vocals']
['female', 'female voice', 'vocal', 'woman']
['classical', 'piano', 'slow']
['clarinet', 'classical', 'quiet', 'no vocal', 'no vocals', 'piano', 'slow', 'flute']
['classical', 'quiet', 'piano', 'slow']
['clarinet', 'woodwind', 'classical', 'piano', 'slow', 'flute']
['clarinet', 'piano', 'slow']
['flutes']
['clarinet', 'classical', 'quiet', 'oboe', 'piano', 'slow', 'flute']
['piano', 'flute', 'soft']
['choral']
['vocal', 'choir']
['chorus', 'choral', 'opera', 'chant', 'vocal', 'choir']
[]
['man singing']
['opera', 'chant', 'male', 'vocal']
[]
['chorus', 'choral', 'opera', 'choir']
['vocals', 'chant', 'choir']
['vocals', 'heavy', 'punk', 'vocal', 'rock', 'rap']
['hard rock', 'guitar', 'male voice', 'fast', 'heavy metal', 'male vocals', 'punk', 'male', 'rock', 'metal']
['quiet', 'slow']
[]
[]
[]
[]
['quiet']
[]
[]
['quiet', 'ambient', 'electronic', 'jungle', 'slow']
['dark']
[]
['ambient']
['ambient', 'electronic']
['spacey', 'deep']
[]
['synth', 'drums', 'electronic', 'electro', 'instrumental', 'modern']
[]
['spacey', 'ambient', 'new age', 'synth', 'electronic', 'modern', 'slow']
['beats', 'synth', 'electronic', 'weird', 'techno']
['no voice', 'no beat', 'ambient', 'new age', 'synth', 'keyboard', 'electronic', 'no vocal', 'piano', 'slow', 'no drums']
['woodwind', 'oboe', 'slow']
['classical', 'flute']
['quiet', 'ambient', 'string', 'slow', 'flute']
['quiet', 'wind', 'new age', 'slow', 'flute', 'soft']
['ambient', 'no guitar', 'slow']
['ambient', 'slow', 'flute']
['woodwind', 'flute']
['classical', 'classic', 'no vocals', 'flutes', 'flute']
['harpsichord', 'clasical', 'classical', 'fast', 'flute']
['classical', 'flute']
[]
['harpsichord', 'guitar', 'acoustic', 'slow', 'flute']
['harpsichord', 'classical', 'classic']
[]
['choral', 'choir']
[]
['choral', 'opera', 'choir']
['classical', 'choral', 'opera', 'vocal', 'choir']
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'cello']
['harpsichord', 'classical', 'strings', 'violin']
['harpsichord', 'classical', 'strings', 'classic', 'violin']
['classical', 'strings', 'violin', 'baroque']
['classical', 'strings', 'fast']
['classical', 'violins', 'classic', 'violin']
['classical', 'violins', 'strings', 'fast', 'violin']
['harpsichord', 'no piano', 'classical', 'violins', 'strings', 'classic', 'violin', 'orchestra', 'cello']
['classical', 'strings']
['harpsichord', 'clasical', 'classical', 'strings', 'bass', 'medieval', 'string', 'violin', 'piano', 'slow', 'cello', 'baroque']
['harpsichord', 'classical', 'strings', 'violin', 'baroque']
['classical', 'strings', 'medieval', 'baroque']
['classical', 'strings', 'violin']
['classical', 'strings', 'classic', 'fast', 'violin']
['no voice', 'classical', 'violin', 'no vocals']
['classical', 'violins', 'strings', 'fast', 'violin', 'orchestra']
['vocals', 'female', 'country', 'pop', 'vocal', 'woman', 'woman singing']
['vocals', 'female', 'guitar', 'rock']
['female', 'guitar', 'pop', 'woman singing', 'singing']
[]
['harpsichord', 'strings']
['classical', 'guitar', 'strings', 'violin', 'eastern']
['harpsichord', 'classical', 'folk', 'strings', 'medieval', 'fast', 'irish', 'celtic', 'indian']
['strings', 'country', 'violin', 'irish']
['classical', 'drums', 'organ', 'slow']
['irish']
['strings', 'fast', 'violin', 'eastern']
['violin']
['male']
['noise']
['ambient', 'synth', 'electronic', 'no vocal']
[]
['ambient']
['ambient', 'synth', 'electronic']
['new age', 'synth', 'electronic']
['techno']
['beat']
['synth', 'no singing', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'trance', 'dance', 'techno', 'house', 'beat', 'upbeat']
['electronic', 'fast', 'electro', 'synthesizer', 'disco', 'dance', 'techno', 'beat']
['fast']
['female', 'synth', 'voice', 'strings', 'electronic', 'fast', 'trance', 'disco', 'dance', 'techno', 'beat']
['quiet', 'bells']
['jazz', 'man', 'piano', 'spanish']
['male vocal', 'jazz', 'spanish', 'male', 'vocal', 'soft']
[]
[]
[]
['rock']
['jazz', 'no violin', 'piano', 'rock']
['vocals', 'female', 'guitar', 'loud', 'pop', 'slow', 'vocal', 'woman', 'rock', 'singing', 'female vocals']
['male', 'rock', 'beat']
['rock']
['guitar']
['guitar', 'modern', 'pop', 'slow']
['vocals', 'guitar', 'mellow', 'slow', 'vocal', 'singing', 'voices', 'different', 'soft']
['vocals']
['piano', 'slow', 'vocal']
['classical', 'quiet', 'flute', 'soft']
['opera', 'choir']
['classical', 'opera', 'flute', 'choir']
['opera']
['opera', 'women']
['classic', 'flute']
['duet', 'classical', 'opera', 'vocal', 'singing']
['guitar', 'acoustic']
['classical', 'violins', 'folk', 'strings', 'country', 'violin', 'irish', 'fiddle']
['guitar', 'folk', 'country', 'no vocals', 'blues']
[]
['guitar', 'country']
[]
['ambient', 'electronic', 'slow']
['no voice', 'chimes', 'eerie', 'spacey', 'quiet', 'electronic', 'bells', 'slow', 'soft']
['chimes']
['chimes', 'synth', 'no vocal', 'bells']
['classical', 'guitar']
['indian']
['sitar', 'indian', 'not opera']
['no flute']
[]
['sitar', 'guitar', 'repetitive', 'strings', 'no vocal', 'fast', 'no vocals', 'indian']
['sitar', 'weird', 'indian']
['sitar', 'loud', 'weird', 'eastern', 'indian', 'oriental']
['sitar', 'ambient', 'eastern', 'indian']
['sitar', 'eastern', 'slow', 'indian']
['sitar', 'beat']
['sitar', 'guitar', 'strings', 'no vocals', 'indian']
['sitar', 'indian']
[]
['sitar', 'string', 'no vocal', 'eastern', 'indian']
['sitar', 'indian']
['no voice', 'sitar', 'no vocal', 'weird', 'indian']
['sitar']
['guitar']
['sitar', 'guitar', 'indian']
['no voice', 'sitar', 'new age', 'synth', 'strings', 'fast', 'eastern', 'indian', 'no drums']
['beats', 'drums', 'electronic', 'fast', 'electro', 'electronica', 'fast beat', 'techno']
['electronic', 'weird', 'fast']
['synth', 'electronic', 'electronica', 'techno']
['weird']
['rock']
['hard rock', 'loud', 'rock']
['guitar', 'loud', 'rock']
['hard rock', 'heavy', 'male voice', 'loud', 'fast', 'punk', 'male', 'rock', 'metal']
['hard rock', 'loud', 'male', 'rock', 'metal']
['harpsichord', 'classical', 'quiet', 'solo', 'classic', 'piano']
[]
['opera']
['harpsichord', 'female', 'classic', 'opera', 'vocal']
['female', 'strings', 'opera', 'female vocal']
[]
['female', 'opera']
['strings', 'violin', 'irish', 'celtic', 'no drums', 'fiddle']
['guitar', 'banjo', 'folk', 'strings', 'medieval', 'country', 'violin', 'irish', 'fiddle']
['guitar', 'strings', 'country', 'irish', 'celtic']
['sitar', 'strings', 'violin']
['celtic', 'fiddle']
['irish']
['sitar', 'banjo', 'strings', 'irish', 'celtic', 'indian', 'fiddle']
['harpsichord', 'harpsicord', 'harp', 'piano']
['guitar', 'solo', 'no vocal', 'fast']
[]
[]
['piano', 'no drums']
['harpsichord', 'classical', 'guitar', 'instrumental', 'harp', 'piano']
['harpsichord', 'strings', 'no vocals', 'harp', 'piano']
['piano', 'slow']
['vocals', 'quiet', 'ambient', 'no guitar', 'slow']
['ambient', 'modern']
['female', 'drums', 'techno', 'beat']
['drums']
[]
['new age', 'drums', 'no vocal', 'techno', 'flute']
['ambient', 'drums', 'fast', 'instrumental', 'techno', 'flute', 'beat']
['ambient', 'new age', 'drum', 'drums']
['vocals']
['male vocal', 'guitar', 'pop', 'male', 'vocal']
['male vocal', 'vocals', 'soft rock', 'pop', 'slow', 'male', 'vocal', 'rock']
[]
['rock']
[]
['foreign', 'drums', 'indian']
['male singer', 'man', 'rock']
['guitar', 'loud', 'rock']
['classical', 'guitar', 'soft']
['classical', 'quiet']
['no voice', 'classical', 'guitar', 'solo', 'classical guitar', 'lute', 'piano']
['classical', 'guitar', 'quiet', 'strings', 'classical guitar', 'lute', 'slow', 'soft']
['guitar', 'harp', 'slow']
['classical', 'guitar', 'solo', 'strings', 'acoustic guitar', 'classical guitar', 'harp', 'slow', 'calm']
['classical', 'guitar', 'no flute']
[]
['classical', 'solo', 'classic', 'piano']
['piano']
['classical', 'solo', 'piano']
[]
['classical', 'solo', 'fast', 'piano', 'piano solo']
['guitar', 'drums', 'no vocal', 'fast', 'no singer', 'rock']
['man', 'rock']
['rock']
['rock']
['male vocal', 'male voice', 'male singer', 'male', 'rock']
[]
['classical', 'piano', 'techno']
['weird', 'fast', 'indian', 'techno']
['female', 'fast', 'indian']
['vocals', 'female', 'fast', 'no vocals', 'beat', 'women']
['fast', 'indian', 'woman']
['fast']
['female voice', 'voice', 'female vocal', 'singing']
['vocals', 'foreign', 'female', 'female voice', 'opera', 'female vocal', 'vocal', 'indian', 'woman', 'singing', 'female vocals']
['ambient']
['rock']
['loud', 'rock', 'metal']
['woman', 'singing', 'female singer']
[]
['vocal']
['slow', 'soft']
['drum', 'drums']
['foreign', 'female', 'strings', 'drums', 'no vocals', 'arabic', 'indian']
['drums']
['drums']
['heavy', 'guitar', 'drums', 'rock', 'metal']
['heavy', 'loud', 'fast', 'rock', 'metal']
['rock']
['heavy', 'loud', 'drums', 'rock', 'metal']
['guitar', 'loud', 'fast', 'heavy metal', 'hard', 'rock', 'metal']
['quiet', 'ambient', 'drums', 'instrumental', 'bells']
['drums']
['dark', 'flute']
['ambient', 'drums']
['drums', 'slow', 'indian']
['beats', 'percussion', 'drum', 'drums', 'tribal', 'no vocals', 'jungle', 'beat']
['bongos', 'drums', 'tribal', 'dark', 'flute', 'beat']
[]
['harpsichord', 'classical']
['harpsichord']
['harpsichord', 'classical', 'solo', 'harpsicord']
['foreign', 'voice', 'male voice', 'chanting', 'opera', 'man singing', 'chant', 'man', 'male', 'vocal', 'singing', 'choir']
['classical', 'male voice', 'choral', 'opera', 'chant', 'man', 'male']
['chorus', 'men', 'classical', 'quiet', 'ambient', 'male voice', 'chanting', 'choral', 'opera', 'low', 'chant', 'male vocals', 'slow', 'male', 'vocal', 'no drums', 'singing', 'voices', 'different', 'monks', 'soft', 'choir']
['chanting', 'choral', 'monks']
['male', 'rock', 'singing']
[]
['synth', 'drums', 'not classical', 'fast', 'modern', 'dance', 'techno']
['violin', 'electronica', 'techno']
['electronic', 'fast', 'techno']
['fast', 'techno']
['synth', 'electronic', 'fast', 'techno']
['synth', 'drums', 'fast', 'violin', 'trance', 'modern', 'fast beat', 'dance', 'techno', 'beat', 'upbeat']
['synth', 'fast', 'dance', 'techno', 'upbeat']
['strings', 'fast']
['electronic', 'no vocals', 'slow', 'beat']
['synth', 'electronic']
['female']
[]
['harpsichord', 'classical', 'harpsicord', 'classic', 'piano']
['harpsichord', 'classical', 'strings', 'harpsicord', 'violin', 'harp', 'piano']
['harpsichord', 'classical', 'solo', 'no singing', 'strings', 'medieval', 'no vocals']
['guitar', 'happy', 'piano', 'slow', 'no drums']
['female', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'female vocals', 'not opera']
['vocal']
['female', 'girl']
['beats', 'techno']
[]
[]
['hard rock', 'loud', 'heavy metal', 'hard', 'rock', 'metal']
['heavy', 'loud', 'drums', 'rock', 'metal']
[]
['heavy', 'drums', 'hard', 'rock', 'metal']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'heavy metal', 'hard', 'rock', 'guitars', 'metal']
['heavy', 'guitar', 'loud', 'rock', 'metal']
['female', 'fast', 'female vocal', 'vocal', 'woman', 'beat']
['vocals', 'jazzy', 'singing', 'female singer', 'english']
['female', 'woman']
['guitar', 'fast', 'spanish']
['female', 'voice', 'female vocal', 'woman', 'singing']
['guitar', 'female vocal', 'vocal']
['guitar']
['slow']
['guitar', 'strings', 'spanish', 'slow']
['classical', 'guitar', 'lute']
[]
['guitar', 'country', 'blues']
['guitar']
['bass', 'drums', 'electronic', 'modern']
['female', 'jazz', 'female voice', 'voice', 'loud', 'vocal', 'woman', 'woman singing', 'singing', 'female singer']
['female', 'guitar', 'female voice', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'singing']
[]
['drums']
[]
['guitar', 'rock']
['vocal', 'rock']
['male vocal', 'guitar', 'pop', 'vocal', 'rock', 'voices']
['male vocal', 'drums', 'male singer', 'man singing', 'pop', 'male vocals', 'vocal', 'rock', 'guitars', 'singing', 'english']
['man', 'rock']
['quiet', 'water']
['wind', 'ambient', 'low', 'slow', 'flute']
['slow', 'flute', 'water']
[]
['no beat', 'ambient', 'slow', 'water']
['eerie', 'ambient', 'new age', 'synth', 'percussion', 'weird', 'strange', 'echo', 'noise']
['techno']
[]
['loud', 'industrial', 'noise']
['electronic', 'no vocals', 'techno', 'not opera', 'beat', 'noise']
['no voice', 'electronic', 'no vocal', 'weird', 'techno', 'noise']
['sitar', 'middle eastern', 'arabic', 'eastern', 'indian']
[]
['drums', 'weird', 'reggae', 'male', 'hip hop']
['beats', 'drums', 'electronic', 'weird', 'electro', 'reggae', 'techno', 'beat']
['synth', 'funk', 'electronic', 'reggae', 'echo', 'vocal', 'techno']
['piano']
['quiet', 'piano', 'soft']
['piano', 'slow']
['ambient', 'no vocal', 'no vocals', 'drone', 'slow']
['ambient']
['no singing']
['quiet', 'slow']
['wind', 'horn', 'slow', 'flute']
['synth', 'strange', 'slow']
[]
['ambient', 'synth', 'horn', 'slow', 'calm', 'flute']
['quiet', 'solo', 'wind', 'ambient', 'electronic', 'horn', 'jungle', 'mellow', 'slow', 'flute']
['guitar']
['guitar', 'upbeat']
[]
['guitar', 'banjo', 'fast', 'country']
['guitar', 'fast', 'country']
[]
['low']
['ambient', 'loud', 'dark', 'industrial']
['heavy', 'synth', 'loud', 'drums', 'weird', 'fast', 'industrial']
['no voice', 'loud', 'drums', 'no vocal', 'dark', 'modern', 'industrial', 'rock', 'techno', 'beat']
['ambient', 'strings', 'soft']
['synth', 'weird', 'techno']
['new age', 'electronic', 'beat']
['ambient', 'drum', 'drums', 'electronic', 'dark', 'techno', 'beat']
['classical', 'opera', 'slow', 'male', 'choir']
['chorus', 'choral']
['choral', 'opera', 'choir']
['opera', 'voices', 'choir']
['beats', 'drums', 'female vocal', 'vocal', 'woman', 'female vocals', 'beat']
['female', 'female voice', 'voice', 'girl', 'electronic', 'electronica', 'modern', 'female vocal', 'vocal', 'woman', 'woman singing', 'dance', 'singing', 'techno', 'female singer']
['drums', 'no vocal']
[]
['fast', 'dance', 'techno']
['female', 'ambient', 'new age', 'electronic', 'fast', 'trance', 'dance', 'techno']
['fast', 'dance', 'techno']
['electronic', 'techno']
['synth', 'electronic', 'electro', 'no flute', 'techno']
['fast', 'dance', 'techno', 'beat']
['synth', 'fast', 'techno']
['fast', 'techno']
[]
['male vocal', 'male']
['male vocal', 'male voice', 'pop', 'rock']
[]
['drums', 'man', 'rock', 'singing', 'beat']
['fast', 'singing']
['vocals', 'rock']
['singer', 'vocals', 'loud', 'pop', 'male', 'rock', 'singing']
['drums']
['guitar', 'synth', 'drums', 'electronic', 'fast', 'no vocals', 'pop', 'rock', 'dance', 'beat', 'upbeat']
['no voice', 'funk', 'drums', 'fast', 'no vocals', 'rock', 'beat', 'upbeat']
['fast', 'pop']
['synth', 'piano']
['synth', 'electronic', 'fast', 'electro', 'trance', 'techno']
['synth', 'electronic', 'electro', 'mellow', 'techno']
['electro', 'light']
['synth', 'electronic', 'no vocal', 'techno']
['techno']
[]
['funky', 'synth', 'funk', 'bass', 'fast', 'eastern', 'indian', 'rock', 'techno', 'beat']
['no singing', 'fast', 'indian', 'dance', 'beat']
[]
['beats', 'synth', 'drums', 'electronic', 'techno', 'beat']
['quiet', 'dark', 'deep', 'slow', 'techno']
['electronic']
['electro']
['electric', 'electronic', 'no vocals', 'techno']
['no voice', 'electronic', 'fast', 'techno']
['classical', 'quiet', 'solo', 'piano', 'soft']
['fast', 'beat']
['synth', 'male', 'techno']
['loud', 'drums', 'electronic', 'electro', 'techno', 'beat']
['no voice', 'loud', 'techno', 'beat']
['quiet', 'flute']
['flute']
['classical', 'quiet', 'medieval', 'classic', 'organ', 'piano', 'flutes', 'slow', 'flute', 'soft']
['classical', 'flute']
['no vocals', 'slow', 'flute', 'soft']
['classical', 'medieval', 'flutes', 'flute', 'baroque']
['classical', 'no vocal', 'no vocals', 'flutes', 'slow', 'flute']
['flute']
['medieval', 'flute']
['ambient', 'choral', 'slow', 'male']
['chorus', 'slow']
['chorus', 'ambient', 'chant', 'choir']
['slow', 'choir']
['choir']
['hard rock', 'heavy metal', 'hard', 'rock', 'metal']
[]
['hard rock', 'loud', 'heavy metal', 'hard', 'rock', 'metal']
['male voice', 'loud', 'man', 'hard', 'male vocals', 'punk', 'male', 'rock', 'metal']
['funky', 'funk', 'repetitive', 'drums', 'electronic', 'weird', 'fast', 'instrumental', 'dance', 'techno', 'beat']
['beats', 'electronic', 'fast', 'techno', 'beat']
['vocals', 'percussion', 'drums', 'electronic', 'techno', 'beat', 'hip hop']
['fast', 'techno']
['electronic', 'dance', 'techno', 'beat']
['dance', 'techno', 'beat']
['drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['no vocal']
[]
['vocals', 'beat']
['synth', 'drums', 'no violin']
['male vocal', 'voice', 'man singing', 'slow', 'vocal']
['techno']
[]
['fast', 'beat']
['weird']
[]
['synth', 'electronic', 'weird', 'no vocals', 'piano']
['jazz', 'guitar', 'synth', 'fast', 'pop']
['beats', 'jazz', 'guitar', 'electric', 'ambient', 'bass', 'drums', 'electronic', 'weird', 'fast', 'electro', 'instrumental', 'techno']
['world', 'male vocal', 'beats', 'male voice', 'electronic', 'male', 'vocal']
[]
[]
['chorus', 'classical', 'opera']
[]
['opera', 'violin', 'choir']
['synth', 'electronic', 'techno']
['classical', 'synth', 'electronic', 'electro', 'beat']
['electric', 'synth', 'electronic', 'no vocal', 'no vocals', 'modern', 'techno']
['synth', 'drums', 'electronic', 'techno', 'beat']
['drums', 'electronic', 'techno']
['beats', 'synth', 'electronic', 'fast', 'trance', 'techno']
['electronic', 'weird', 'techno']
['electronic', 'no guitar', 'techno']
['harpsichord', 'classical', 'harpsicord', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'piano']
['harpsichord', 'classical', 'strings']
['harpsichord', 'classical', 'no vocals']
['harpsichord']
['harpsichord', 'classical', 'strings', 'harpsicord', 'medieval', 'fast', 'no vocals', 'harp', 'piano', 'baroque']
['guitar', 'vocal']
['male vocal', 'guitar', 'male singer', 'pop', 'piano', 'male', 'vocal', 'singing']
['vocals', 'guitar', 'man singing', 'pop', 'piano']
['vocals', 'pop', 'rock']
['guitar', 'country', 'piano', 'blues']
['guitar', 'country', 'man', 'pop', 'male', 'rock', 'singing']
['rock', 'singing']
['guitar', 'rock']
['beats', 'beat']
[]
[]
['ambient']
['funky', 'electric', 'synth', 'voice', 'electronic', 'no vocal', 'electro', 'slow', 'jazzy', 'techno', 'beat']
['quiet', 'strings', 'slow', 'soft']
['classical', 'ambient', 'drums', 'slow', 'beat']
['drums']
['world', 'beats', 'drums', 'tribal', 'indian']
['drums']
['ambient', 'drums', 'no vocals', 'instrumental', 'beat']
['drums', 'no vocals']
['drum', 'drums']
['world', 'drums', 'slow', 'techno']
['ambient', 'loud', 'drums']
[]
['new age', 'drums', 'tribal', 'jungle']
['soft rock', 'guitar', 'country', 'slow', 'rock']
[]
['guitar', 'drums', 'no vocal', 'instrumental', 'slow', 'male', 'rock']
[]
[]
['sitar', 'guitar', 'strings', 'drums', 'indian', 'india']
['sitar', 'strings']
['no vocal']
[]
[]
['no voice', 'harpsichord', 'classical', 'guitar', 'banjo', 'new age', 'string', 'harp']
['strings', 'oriental']
[]
['wind', 'ambient']
['loud']
['ambient', 'deep']
['classical', 'violins', 'wind', 'ambient', 'strings', 'loud', 'orchestral', 'orchestra', 'different']
['silence', 'quiet']
[]
['wind', 'slow', 'flute']
['quiet', 'new age', 'flute']
['female', 'fast', 'techno']
['pop', 'techno', 'beat']
['female', 'synth', 'voice', 'fast', 'dance', 'female vocals', 'techno', 'beat']
['vocal']
['female', 'female vocal', 'techno', 'beat']
[]
['classical', 'strings', 'medieval', 'violin', 'piano', 'baroque']
['classical', 'violins']
['no voice', 'classical', 'violins', 'strings', 'classic', 'violin', 'soft', 'baroque']
['classical', 'guitar', 'harp', 'old', 'slow']
['classical']
['classical', 'violins', 'strings', 'string', 'violin', 'slow']
['classical', 'violins', 'strings', 'violin', 'sad', 'slow']
['clasical', 'classical', 'violins', 'strings', 'violin', 'sad']
['violin']
['guitar']
['guitar', 'slow', 'guitars', 'soft']
['guitar']
['female', 'banjo', 'country', 'female vocal', 'vocal']
['vocals', 'female', 'female voice', 'voice', 'fast', 'country', 'man', 'pop', 'male', 'woman', 'rock']
['male vocal', 'male voice', 'man', 'male', 'singing']
['jazz', 'drums', 'slow']
['jazz', 'no vocals', 'jazzy']
[]
['jazz', 'drums', 'organ', 'fast', 'no vocals', 'no singer']
['jazz', 'keyboard', 'drums', 'piano', 'slow']
['jazz']
['ambient', 'female vocal', 'flute']
[]
['synth', 'drums']
['female voice', 'ambient', 'new age', 'synth', 'voice', 'loud', 'drums', 'electronic', 'weird', 'fast', 'electro', 'no flute', 'indian']
[]
['guitar', 'slow']
['no voice', 'guitar', 'strings', 'no vocal', 'fast', 'no vocals', 'slow']
['guitar', 'strings', 'acoustic', 'string', 'no vocal', 'harp', 'slow']
['guitar', 'strings', 'acoustic', 'slow']
['beats', 'drums', 'techno', 'beat']
['beats', 'funky', 'drums', 'electronic', 'electro', 'modern', 'slow', 'techno', 'beat']
[]
['beats']
['electronic', 'electro', 'no vocals', 'dance', 'techno', 'beat']
['no voice']
['electro', 'techno']
['guitar']
['guitar', 'folk']
[]
['guitar', 'piano', 'flute']
['classical', 'harp', 'piano', 'slow', 'flute']
['guitar', 'banjo']
['guitar', 'banjo', 'strings', 'fast']
['banjo']
['guitar']
['sitar', 'guitar', 'country', 'no vocals', 'blues']
['guitar', 'banjo', 'country', 'blues']
['synth', 'loud', 'electronic', 'fast', 'dance', 'techno', 'beat']
[]
['electronic', 'electronica', 'techno']
['loud', 'no vocal', 'fast', 'techno']
['loud', 'electronic', 'fast', 'electro', 'trance', 'dance', 'techno']
['beats', 'drum', 'drums', 'electronic', 'weird', 'no vocals', 'piano', 'slow', 'different', 'beat']
[]
['piano', 'techno']
[]
['beat']
['quiet', 'ambient']
['drum', 'drums', 'no guitar', 'tribal', 'slow']
['foreign', 'voice', 'drums', 'eastern', 'indian']
['middle eastern', 'not rock', 'male vocals', 'male', 'not english']
[]
['beats', 'electric', 'synth', 'electronic', 'electro']
['jazz', 'electronic', 'beat']
[]
[]
['weird']
['synth', 'no guitar', 'organ', 'fast']
[]
['guitar']
['guitar', 'synth', 'rock']
['rock']
['rock']
['male vocal', 'rock']
['loud', 'electronic', 'fast', 'rock']
['slow']
['no voice', 'no vocal', 'flute']
['flute']
['flute']
['ambient', 'flute']
['ambient', 'low', 'soft']
['sitar', 'guitar', 'strings', 'bass', 'choir']
['loud', 'drums', 'eastern', 'indian', 'beat']
['female']
[]
['indian']
['sitar', 'eastern', 'vocal', 'indian']
['guitar', 'drums', 'no vocals', 'instrumental', 'slow', 'male']
['country']
['not classical']
['chorus', 'vocals', 'classical', 'opera', 'male', 'singing', 'choir']
[]
['chorus', 'choral', 'choir']
['vocal', 'choir']
['vocals', 'classical', 'choral', 'voices', 'choir']
['opera', 'choir']
['singing']
['vocals', 'female', 'percussion', 'drums', 'chanting', 'vocal', 'voices']
['no singing', 'piano']
[]
['classical', 'solo', 'piano']
['classical', 'solo', 'piano']
['classical', 'piano']
['metal']
['hard rock', 'vocals', 'heavy', 'guitar', 'loud', 'fast', 'male', 'rock', 'metal']
['techno']
['synth', 'electronic', 'techno', 'beat']
['synth', 'electronic', 'fast', 'techno']
[]
['synth', 'electronic', 'no vocal', 'fast', 'no vocals', 'techno']
['synth', 'electronic', 'modern', 'techno', 'beat']
[]
['electronic', 'fast']
['synth', 'loud', 'electronic', 'electronica', 'synthesizer', 'pop', 'techno']
['guitar', 'rock']
['guitar', 'loud', 'man', 'punk', 'rock']
[]
['rock']
[]
['female', 'soft rock', 'guitar', 'girl', 'drums', 'pop', 'male', 'vocal', 'rock']
[]
['male', 'rock']
[]
['choral', 'slow', 'vocal', 'choir']
['quiet', 'ambient', 'chanting', 'slow', 'soft']
['ambient', 'strings']
['classical', 'ambient', 'strings', 'slow', 'soft']
['chorus', 'ambient', 'violin', 'irish', 'slow']
[]
[]
['guitar', 'folk']
['guitar']
['male vocal', 'guitar', 'male singer', 'man']
['duet', 'vocals', 'classical', 'opera', 'woman', 'singing']
[]
['electronic', 'trance', 'techno', 'beat']
['no voice', 'drums', 'electronic', 'fast', 'techno', 'beat']
['beats', 'electronic', 'techno']
['percussion', 'drums', 'fast', 'techno']
['weird']
['techno']
['talking', 'fast', 'techno', 'beat']
['synth', 'electronic', 'male vocals', 'vocal', 'singing', 'techno']
['electronic', 'techno']
['no strings', 'classical', 'piano']
['piano']
[]
['wind', 'ambient', 'slow', 'scary', 'noise']
['different']
['wind', 'slow']
['eerie', 'ambient', 'electronic', 'no vocals', 'soft']
['guitar', 'singing']
['no guitar']
['vocals', 'indian']
[]
['foreign', 'pop', 'indian']
['guitar', 'drums', 'electronic', 'fast', 'arabic', 'flute', 'upbeat']
['middle eastern', 'percussion', 'drums']
['guitar', 'drums', 'instrumental', 'eastern', 'indian', 'beat']
['vocals', 'foreign', 'jazz', 'loud', 'drums', 'weird', 'eastern', 'indian', 'jazzy', 'beat', 'upbeat']
['classical', 'piano', 'slow']
['piano', 'slow']
['piano']
['pop', 'piano']
['piano']
['classical', 'solo', 'loud', 'no vocals', 'modern', 'piano', 'slow']
['quiet', 'solo', 'new age', 'piano', 'slow', 'soft']
['classical', 'piano']
['guitar']
['jazz', 'guitar', 'slow', 'jazzy']
['jazz', 'guitar', 'bass']
['jazz', 'guitar', 'mellow', 'slow']
['jazz', 'guitar', 'strings', 'bass', 'country', 'instrumental', 'slow']
['voice', 'opera', 'irish', 'female vocal', 'woman singing']
['solo', 'no singing', 'no vocal', 'flute']
['synth', 'drums', 'electronic', 'slow', 'techno', 'beat']
['male vocal', 'electronic', 'man', 'male', 'vocal', 'dance', 'techno', 'not opera', 'beat']
['vocals', 'no piano', 'ambient', 'synth', 'electronic', 'vocal', 'techno', 'beat']
['male vocal', 'male voice', 'male singer', 'pop', 'male', 'vocal']
['vocals', 'slow', 'choir']
['choral', 'choir']
['classical', 'female', 'choir']
['chorus', 'choir']
['classical', 'piano', 'dance']
['singer', 'classical', 'solo', 'piano', 'slow', 'singing']
['singer', 'male vocal', 'vocals']
['foreign', 'spanish', 'vocal', 'indian', 'woman']
['classical', 'violin']
['violin']
['classical', 'strings', 'classic', 'opera', 'violin']
[]
['classical', 'strings', 'classic', 'fast', 'violin', 'oboe', 'flute', 'baroque']
['classical', 'violins', 'strings', 'violin']
['no piano', 'classical', 'strings', 'classic', 'oboe', 'orchestra', 'different', 'flute']
['classical', 'strings', 'classic', 'violin', 'oboe', 'flute']
['classical', 'medieval', 'classic', 'violin', 'flutes', 'flute']
['female', 'woman', 'female vocals']
['female voice', 'girl', 'vocal', 'woman']
['beats', 'female', 'female voice', 'drum', 'voice', 'drums', 'electronic', 'female vocal', 'slow', 'woman', 'singing', 'techno', 'beat']
['horns', 'jazz', 'ambient', 'synth', 'electro', 'strange', 'piano', 'sax', 'jazzy']
['female', 'voice', 'female vocal', 'woman']
['piano', 'soft']
['piano']
['classical', 'no vocal', 'piano', 'slow']
['classical', 'female', 'guitar', 'quiet', 'solo', 'female voice', 'voice', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'soft']
['female', 'quiet', 'solo', 'opera', 'vocal', 'woman']
['classical', 'female', 'opera', 'slow', 'vocal', 'woman', 'singing']
['opera', 'female vocal', 'vocal', 'woman']
['violins', 'violin', 'no drums']
['strings', 'loud', 'vocal', 'singing', 'voices']
['vocal', 'woman', 'women']
['guitar']
['techno']
['electronic', 'fast', 'electro', 'dance', 'techno']
['synth', 'electronic', 'fast', 'dance', 'techno', 'beat']
['fast', 'dance', 'techno']
['techno']
['beats', 'dance', 'techno']
['synth', 'fast', 'techno', 'beat']
['no voice', 'fast', 'dance', 'techno']
['no violin', 'vocal']
['female', 'female voice', 'opera', 'not english']
['voice', 'opera', 'man']
['harp', 'soft']
['female opera', 'female', 'voice', 'opera', 'harp', 'female vocal', 'celtic', 'vocal']
['piano']
[]
['female', 'girl', 'female vocal', 'piano', 'slow', 'vocal', 'indian', 'woman', 'singing']
['female']
[]
['voice', 'slow']
['piano', 'woman', 'female singer']
['female', 'female vocal']
['female', 'piano', 'slow']
['quiet', 'ambient', 'new age', 'loud']
['ambient']
['ambient', 'no vocal']
['ambient']
['instrumental', 'mellow', 'slow']
[]
[]
[]
['ambient']
['no voice', 'ambient', 'new age', 'no vocals', 'calm', 'water']
['ambient', 'not rock', 'slow', 'no drums']
['synth', 'percussion', 'drum', 'drums', 'beat']
['drums', 'beat']
['drum', 'drums', 'electronic', 'tribal', 'beat']
['beats', 'drums', 'beat']
['beats', 'drums']
[]
['synth', 'slow']
['chorus', 'male voice', 'weird', 'strange']
['ambient', 'synth', 'electronic', 'not classical', 'dark', 'slow']
['drums']
[]
['fast', 'dance', 'techno']
['techno']
['electronic', 'fast', 'electro', 'fast beat', 'dance', 'techno', 'beat']
[]
['fast', 'techno']
['fast', 'techno']
['fast', 'pop', 'dance', 'techno']
[]
[]
['singer', 'male vocal', 'loud', 'punk', 'rock']
[]
['voice', 'electronic', 'weird', 'man', 'industrial', 'echo', 'techno']
['no piano', 'synth', 'electronic', 'vocal', 'techno']
[]
[]
[]
['classical', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin']
['classical', 'strings']
['classical', 'violins', 'strings', 'no guitar', 'violin']
['harpsichord', 'string']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'violin']
[]
['classical', 'violin']
['harpsichord', 'classical', 'strings', 'violin', 'baroque']
['harpsichord', 'classical', 'strings', 'violin', 'slow']
['guitar', 'strings', 'drums', 'rock']
['male', 'rock', 'metal']
['male vocal', 'guitar', 'percussion', 'male', 'rock']
['rock']
['singer', 'guitar', 'electric guitar', 'rock']
[]
['vocal', 'indian']
['harpsichord', 'classical']
['classical', 'fast', 'violin', 'cello']
[]
[]
['guitar', 'classical guitar']
['spacey', 'quiet', 'slow']
['ambient']
['singer', 'male vocal', 'classical', 'voice', 'strings', 'male voice', 'weird', 'fast', 'strange', 'man', 'male', 'vocal', 'singing']
['synth', 'electronic', 'fast', 'no vocals', 'trance', 'dance', 'techno']
['synth', 'strings', 'electronic', 'electro', 'trance', 'techno']
['drums', 'electronic', 'fast', 'dance', 'techno']
['electronic', 'electro', 'dance', 'techno']
['synth', 'loud', 'electronic', 'fast', 'modern', 'techno', 'upbeat']
['techno']
[]
['quiet']
['synth', 'electronic', 'electronica', 'flute']
['synth', 'electronic']
['ambient', 'drums', 'slow']
['drums', 'tribal', 'woman']
['drums']
['wind', 'drum', 'drums', 'tribal', 'different', 'flute']
['guitar', 'acoustic', 'spanish', 'slow']
['male vocal', 'guitar', 'acoustic', 'talking', 'male vocals', 'male', 'beat', 'soft']
['male vocal', 'guitar', 'folk', 'drums', 'man', 'male']
[]
['male vocal', 'guitar', 'drum', 'string', 'drums', 'male vocals', 'vocal']
['male vocal', 'guitar', 'voice', 'male voice', 'country', 'man', 'pop', 'vocal', 'rock']
['singer', 'male vocal', 'guitar', 'drum', 'voice', 'male voice', 'drums', 'talking', 'man', 'male']
['guitar', 'vocal']
[]
[]
['electronic', 'no vocal']
['ambient', 'synth', 'electronic', 'no vocal', 'no vocals', 'instrumental', 'light', 'soft']
['quiet', 'slow']
[]
[]
['quiet']
['quiet', 'no vocals', 'soft']
['quiet', 'drum', 'drums', 'electronic', 'no violin', 'tribal', 'slow', 'techno']
['classical', 'quiet', 'piano', 'slow', 'soft']
['classical', 'piano', 'soft']
['classical', 'piano', 'slow']
['no voice', 'classical', 'piano']
[]
['classical', 'fast', 'piano']
['classical', 'solo', 'classic', 'fast', 'piano']
['classical', 'classic', 'no violin', 'fast', 'piano']
['classical', 'solo', 'classic', 'piano']
['slow']
['guitar', 'slow']
['world', 'vocals', 'guitar', 'folk', 'strings', 'chanting', 'no vocal', 'vocal', 'indian']
['guitar', 'strings', 'drums', 'fast', 'indian']
['drums', 'eastern']
['guitar', 'indian']
['bongos', 'sitar', 'female', 'guitar', 'string', 'eastern', 'spanish', 'vocal', 'indian']
['female', 'drums', 'tribal', 'female vocal', 'vocal', 'indian']
['drums', 'no guitar']
['guitar', 'clapping']
['classical', 'solo', 'strings', 'classic', 'string', 'violin', 'sad', 'slow', 'cello']
['classical', 'violins', 'strings', 'classic', 'string', 'violin', 'piano', 'slow']
['classical', 'violin', 'slow']
[]
[]
['guitar', 'new age', 'no vocal', 'slow']
['guitar', 'strings', 'piano']
['classical', 'guitar', 'strings', 'classic', 'no vocals', 'sad', 'slow']
['piano']
['classical', 'piano']
['piano']
['classical', 'solo', 'piano', 'slow']
['piano']
['harp', 'soft']
['classical', 'guitar', 'quiet', 'solo', 'piano', 'slow', 'soft']
['no piano', 'techno']
['fast', 'electro', 'dance', 'techno']
['male vocal', 'loud', 'electronic', 'fast', 'male singer', 'electro', 'trance', 'techno', 'beat']
['beats', 'loud', 'fast', 'rock', 'dance', 'techno']
[]
['drum', 'drums', 'electronic', 'dance', 'beat']
['no vocals']
['electronic']
['beats', 'repetitive', 'drums', 'electronic', 'no vocal', 'weird', 'trance', 'dance', 'techno', 'beat']
[]
[]
['drums', 'trance', 'techno']
['beats', 'ambient', 'electronic', 'techno', 'beat']
['synth', 'electronic', 'techno']
['classical', 'quiet', 'opera']
['hard rock', 'guitar', 'bass', 'rock', 'metal']
['no singing', 'rock']
[]
['guitar']
['guitar', 'strings']
['guitar']
['guitar', 'no violin', 'rock']
['guitar', 'solo', 'acoustic']
['guitar', 'no singing']
['guitar']
['guitar', 'strings', 'classic']
['guitar']
['guitar']
['guitar']
['guitar', 'strings', 'oriental']
['guitar']
['sitar', 'guitar', 'strings', 'eastern', 'indian']
['guitar', 'fast']
['sitar', 'guitar', 'indian']
['sitar', 'guitar', 'fast', 'indian']
['guitar', 'banjo', 'strings']
['sitar', 'guitar', 'solo']
['sitar', 'guitar', 'banjo', 'solo', 'spanish', 'slow']
['vocals', 'guitar', 'electric', 'synth', 'loud', 'electronic', 'weird', 'no vocals', 'techno']
['vocal', 'rock']
['male vocal', 'guitar', 'male voice', 'man', 'male', 'rock', 'singing']
['guitar']
['guitar', 'classical guitar']
['guitar', 'slow']
['classical', 'guitar', 'solo', 'mellow']
['opera', 'singing']
['guitar']
['no strings', 'classical', 'guitar', 'solo', 'strings']
['guitar', 'slow']
['guitar', 'soft']
['jazz', 'guitar', 'bass', 'acoustic', 'loud', 'no vocal', 'piano', 'guitars', 'no drums']
['guitar', 'acoustic']
['no voice', 'classical', 'guitar', 'piano', 'slow', 'choir']
['funky', 'voice', 'male', 'vocal']
['singer', 'male vocal', 'no piano', 'voice', 'male voice', 'man singing', 'male vocals', 'slow', 'male', 'vocal', 'voices', 'beat']
[]
['sitar', 'indian']
['sitar', 'strings', 'loud', 'fast', 'eastern', 'indian']
['sitar', 'male voice', 'indian', 'india']
['indian']
['strings', 'violin', 'cello']
[]
['classical', 'strings', 'violin', 'cello']
['classical', 'slow', 'cello']
['classical', 'folk', 'strings', 'violin', 'no vocals', 'irish', 'cello']
['sitar', 'strings', 'drums', 'indian']
['drums', 'fast', 'indian']
['sitar', 'beats', 'percussion', 'electronic', 'indian', 'techno']
['sitar', 'indian']
['sitar', 'eastern', 'indian']
['sitar', 'indian']
[]
['slow', 'choir']
['chorus', 'choral', 'singing']
['classical', 'choral', 'opera', 'violin', 'choir']
['drums', 'beat']
['reggae']
[]
['synth', 'drums', 'electronic', 'reggae', 'techno']
['beats', 'reggae', 'no vocals', 'modern', 'flute']
['guitar']
['ambient', 'new age', 'drums', 'electronic', 'no guitar', 'fast', 'rock', 'techno']
['synth', 'no singing', 'electronic', 'not classical', 'different']
['classical', 'guitar', 'ambient', 'new age', 'weird', 'no vocals', 'slow', 'techno']
['no piano', 'slow']
['loud', 'electronic', 'fast', 'slow', 'techno']
['no voice', 'classical', 'violins', 'strings', 'violin']
[]
['classical', 'female', 'voice', 'opera', 'vocal']
['classical', 'female', 'opera', 'vocal']
['opera', 'vocal']
['classical', 'violin']
[]
['classical', 'violins', 'strings', 'violin']
['classical', 'strings', 'violin']
['female opera', 'classical', 'female', 'opera', 'violin', 'woman']
['female', 'opera']
['guitar', 'no vocal', 'no vocals', 'piano', 'slow']
[]
['male vocal', 'guitar', 'male singer', 'man', 'male vocals', 'blues', 'rock']
[]
['vocals', 'guitar', 'solo', 'voice', 'male voice', 'acoustic guitar', 'man singing', 'country', 'man', 'male vocals', 'slow', 'male', 'singing']
['male vocal', 'guitar', 'male voice', 'acoustic', 'vocal']
['male vocal', 'guitar', 'folk', 'man singing', 'man', 'vocal']
['male voice']
[]
['male voice', 'singing']
['electronic', 'electronica', 'dance', 'techno']
[]
['drums', 'electronic', 'modern', 'pop', 'upbeat']
['guitar', 'fast', 'slow', 'beat', 'upbeat']
['classical', 'guitar', 'strings', 'string', 'harp']
['classical', 'harp']
['guitar']
['drum', 'drums', 'indian']
['sitar', 'ambient', 'percussion', 'drums', 'arabic', 'bells', 'indian', 'beat']
['sitar', 'drums', 'instrumental', 'bells', 'slow', 'indian']
['middle eastern', 'no vocal', 'indian', 'india']
[]
['sitar', 'drum', 'drums', 'tribal', 'eastern', 'indian', 'oriental']
['indian', 'beat']
['sitar', 'drums', 'modern', 'eastern', 'indian', 'beat']
['sitar', 'guitar', 'ambient', 'drum', 'drums', 'dark', 'eastern', 'slow', 'indian']
['indian']
['bass', 'electronic', 'instrumental', 'slow', 'beat']
['no voice', 'funky', 'synth', 'electronic', 'weird', 'no vocals', 'slow', 'beat']
['loud', 'rock', 'techno']
['vocals', 'loud', 'pop']
['vocals', 'loud', 'electronic']
['jazz', 'guitar', 'jazzy']
['vocals', 'voice', 'man singing', 'pop', 'male', 'vocal', 'singing']
[]
['vocals', 'guitar', 'voice', 'male voice', 'loud', 'man singing', 'modern', 'man', 'pop', 'male vocals', 'male', 'vocal']
['male vocal', 'vocals', 'guitar', 'folk', 'voice', 'male voice', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'vocals', 'pop']
['voice']
['male voice', 'loud', 'pop', 'rock']
['male vocal', 'guitar', 'male vocals', 'male', 'vocal', 'rock']
['vocals', 'loud', 'rock']
[]
['bass', 'drums', 'jazzy']
['funky', 'electronic', 'organ', 'weird', 'jazzy']
['funky', 'jazz', 'drums', 'rock']
['piano', 'jazzy']
['jazz', 'fast', 'piano', 'jazzy']
['funky', 'jazz', 'electric', 'synth', 'funk', 'organ', 'electro', 'piano', 'jazzy', 'techno']
['jazz']
['choral', 'vocal']
[]
['vocals', 'foreign', 'indian']
['vocals', 'female', 'vocal', 'indian', 'woman singing', 'singing', 'voices', 'women']
['female', 'violin', 'vocal', 'indian', 'flute']
['beats']
[]
['beat']
['techno']
['dance', 'techno', 'beat']
['techno']
[]
[]
['no voice', 'synth', 'no vocals']
[]
['classic', 'not rock']
['strings', 'violin']
[]
['chorus', 'foreign', 'female', 'female vocals']
['vocals', 'foreign', 'chant', 'celtic', 'choir']
['vocals', 'foreign', 'female', 'choral', 'vocal', 'choir', 'women']
[]
['no vocal']
['ambient', 'electronic', 'techno']
['talking', 'beat']
[]
['male vocal', 'man', 'male', 'rap', 'hip hop']
['vocals', 'rap']
['techno', 'rap']
['talking', 'beat', 'rap']
['hip hop']
['synth', 'rap', 'hip hop']
['jazz', 'jazzy']
['drum', 'drums', 'jazzy']
['no voice', 'jazz', 'no singing', 'drum', 'keyboard', 'loud', 'drums', 'fast', 'instrumental', 'piano', 'jazzy', 'upbeat']
['jazz', 'blues', 'jazzy']
['drum', 'voice', 'bass', 'drums', 'slow', 'vocal', 'beat']
['vocals', 'beats', 'female', 'female voice', 'ambient', 'vocal']
['fast', 'rock', 'techno']
[]
['ambient', 'synth', 'slow']
['ambient', 'synth', 'electronic', 'no vocals', 'modern', 'techno']
['no voice', 'guitar', 'no vocal', 'piano', 'slow', 'no singer']
['guitar', 'electric guitar', 'no vocals', 'rock']
['singer', 'male vocal', 'guitar', 'male singer', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['guitar', 'electric guitar', 'rock', 'singing', 'metal']
[]
['no voice', 'guitar', 'loud', 'rock']
['guitar', 'rock']
[]
['rock']
['rock', 'singing']
[]
['guitar', 'loud', 'rock']
['male vocal', 'male voice', 'male']
['singer', 'male vocal', 'guitar', 'voice', 'male voice', 'man', 'pop', 'male vocals', 'male', 'rock', 'guitars', 'singing', 'soft', 'english']
['male vocal', 'soft rock', 'guitar', 'country', 'slow', 'male', 'vocal']
['guitar', 'male voice']
[]
['guitar', 'no vocals', 'no singer']
['guitar', 'strings', 'no vocal', 'country', 'no vocals', 'slow']
['beat']
['guitar', 'synth', 'electronic', 'piano']
[]
['harpsichord', 'ambient', 'electronic', 'violin', 'old', 'techno']
['no singer', 'techno']
['synth', 'electronic', 'fast', 'techno']
['loud', 'electronic', 'beat']
['no voice', 'beats', 'synth', 'drum', 'bass', 'drums', 'electronic', 'no vocal', 'fast', 'beat']
['electronic', 'fast', 'techno']
['guitar', 'electric', 'synth', 'keyboard', 'electronic', 'electronica', 'different']
['beats', 'synth', 'electronic', 'fast', 'electro', 'no vocals', 'synthesizer', 'techno']
['guitar', 'loud', 'rock', 'soft']
['guitar', 'rock']
['guitar', 'loud', 'drums', 'rock']
['guitar', 'blues', 'rock', 'guitars']
['guitar', 'quiet', 'electric guitar']
['guitar']
['classical', 'no singing', 'no vocal', 'no vocals']
['horns', 'classical', 'horn', 'oboe']
['woodwind', 'horns', 'classical', 'classic', 'no vocals', 'oboe', 'slow', 'flute']
['classical', 'no singing', 'no vocal', 'horn', 'instrumental', 'slow']
['harpsichord', 'classical', 'guitar', 'quiet', 'strings', 'harp', 'piano', 'slow']
['classical', 'guitar', 'quiet', 'strings', 'piano']
['no piano', 'guitar', 'strings', 'slow']
['classical', 'guitar', 'no vocal', 'slow']
['piano']
['solo', 'piano', 'slow']
['piano']
['classical', 'solo', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['harpsichord', 'classical', 'strings', 'flute']
['classical', 'strings']
['classical', 'violins', 'strings', 'classic', 'violin', 'orchestra', 'flutes', 'flute']
['classical', 'flute']
['flute']
['clasical', 'classical', 'strings', 'violin', 'orchestra', 'flute']
['strings', 'string', 'no vocals', 'slow']
['classical', 'ambient', 'violin', 'slow']
['violins', 'violin']
['classical', 'violins', 'ambient', 'strings', 'violin', 'no vocals', 'slow', 'cello']
['ambient', 'strings', 'violin', 'slow']
['quiet']
['guitar', 'woman singing', 'women']
['vocals', 'female', 'guitar', 'female vocal', 'woman']
[]
[]
['rock', 'singing', 'techno']
[]
['beats', 'synth', 'funk', 'bass', 'electronic', 'electro', 'slow', 'techno', 'beat']
['electronic']
['electronic']
['synth', 'no vocal', 'techno']
['beats', 'funky', 'drums', 'electronic', 'weird', 'slow', 'techno']
['ambient', 'synth', 'electronic', 'slow', 'dance', 'techno']
['quiet']
[]
['synth', 'fast', 'techno']
['fast', 'techno']
['synth', 'techno']
['synth', 'electronic', 'fast', 'techno', 'beat']
['electronic', 'fast', 'electronica', 'trance', 'techno']
[]
['instrumental']
['classical', 'guitar', 'strings', 'harp']
['new age', 'strings']
['strings', 'fast', 'not opera']
['guitar', 'violins', 'strings', 'violin', 'irish']
[]
[]
['classical', 'solo', 'cello']
['classical', 'solo', 'violins', 'strings', 'violin', 'cello']
['strings', 'violin']
['cello']
[]
['harpsichord', 'classical']
['no voice', 'harpsichord', 'classical', 'strings', 'slow']
['harpsichord', 'classical', 'strings', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'violin', 'viola', 'cello', 'baroque']
['slow']
['strings', 'instrumental']
[]
[]
['harpsichord', 'classical', 'solo', 'harpsicord']
['harpsichord', 'classical', 'quiet', 'strings', 'harpsicord', 'no violin', 'no vocals', 'piano', 'slow']
['cello']
['classical', 'solo', 'violins', 'violin', 'viola', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'classic', 'string', 'violin', 'viola', 'cello']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical']
['harpsichord', 'classical']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'medieval', 'harp', 'piano', 'old', 'slow', 'baroque']
['harpsichord', 'harpsicord']
[]
['harpsichord', 'classical', 'harpsicord', 'harp']
['drums', 'fast', 'tribal', 'beat']
['tribal']
['drums']
['drums']
[]
['strings', 'drums', 'fast', 'indian']
['drums', 'no vocal']
['fast', 'eastern', 'indian']
[]
['sitar', 'electronic', 'fast', 'eastern', 'indian', 'techno', 'beat']
[]
['rock']
[]
['loud', 'rock']
['classical', 'jazz', 'guitar', 'quiet', 'no singing', 'strings', 'acoustic', 'drums', 'no vocals', 'instrumental', 'modern', 'light', 'piano', 'slow', 'guitars', 'not opera', 'soft']
['clarinet', 'jazz', 'fast', 'violin', 'sax', 'jazzy', 'upbeat']
['clarinet', 'jazz', 'trumpet', 'drums', 'fast']
['jazz']
['beats', 'drums', 'tribal']
[]
['drum', 'drums', 'eastern']
['no voice', 'bongos', 'ambient', 'percussion', 'drum', 'drums', 'tribal', 'jungle', 'slow', 'indian', 'beat']
['drums']
['bongos', 'drums', 'tribal']
['drums']
[]
['drums']
['percussion', 'drums']
['no strings', 'drum', 'drums']
['drums', 'beat']
[]
['sitar', 'guitar', 'banjo', 'strings', 'drums', 'spanish', 'indian']
['sitar', 'middle eastern', 'eastern', 'indian']
['sitar', 'electronic', 'beat']
['middle eastern', 'bass', 'drums']
['synth', 'electronic', 'techno']
[]
[]
[]
[]
['synth', 'drums', 'modern', 'techno', 'beat']
['harpsichord', 'classical', 'strings', 'classic']
['harpsichord', 'classical']
['harpsichord', 'guitar']
['harpsichord', 'sitar', 'classical', 'classic', 'no vocal', 'fast', 'baroque']
[]
['harpsichord', 'classical', 'guitar']
['harpsichord', 'classical', 'strings', 'harpsicord', 'fast', 'baroque']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'medieval', 'piano', 'slow']
['harpsichord', 'classical']
[]
[]
[]
['ambient', 'space', 'talking']
['ambient']
['violin', 'piano']
['piano']
['fast', 'piano']
['jazz', 'fast', 'piano']
['classical', 'jazz', 'no vocal', 'piano']
['classical', 'no vocal', 'no vocals', 'piano']
['fast']
['synth', 'fast', 'techno']
['chimes', 'bells']
[]
['drums']
['soft rock', 'guitar', 'drum', 'loud', 'drums', 'no vocal', 'fast', 'man', 'pop', 'rock']
['male vocal', 'vocals', 'guitar', 'male voice', 'drums', 'country', 'low', 'man', 'male vocals', 'male', 'singing', 'english']
['male vocal', 'voice', 'man', 'rock']
['rock']
['woman']
[]
['vocals', 'female', 'voice', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'soft', 'female singer']
[]
['silence', 'quiet']
['slow']
['quiet']
['no piano', 'classical', 'ambient', 'strings', 'bass', 'dark', 'no vocals', 'scary']
['voice', 'male voice', 'talking', 'man']
['loud', 'noise']
['loud', 'fast', 'rock', 'techno', 'noise', 'metal']
['loud', 'fast', 'techno']
['fast']
['guitar', 'no drums', 'techno']
['voice', 'male vocals']
['male vocal', 'male vocals', 'vocal', 'rock']
['male vocal', 'vocals', 'funky', 'guitar', 'funk', 'male voice', 'man', 'male vocals', 'male', 'rock']
['guitar', 'male voice', 'male vocals', 'male', 'rock']
['vocals', 'guitar', 'male voice', 'drums', 'pop', 'male', 'rock']
['happy', 'drums', 'electronic', 'techno', 'beat']
['fast', 'techno']
['female voice', 'fast', 'dance', 'singing', 'techno']
['synth', 'electronic', 'fast', 'trance', 'modern', 'dance', 'techno']
['techno']
['female', 'loud', 'fast', 'dance', 'techno']
['loud', 'fast', 'trance', 'female vocal', 'dance', 'techno', 'beat']
['female', 'fast', 'electro', 'woman singing', 'dance', 'techno']
['techno']
[]
['classical', 'violin']
['classical', 'flute']
[]
['harpsichord', 'classical', 'medieval', 'fast', 'flute', 'soft']
['flute']
['noise']
['singing']
['ambient', 'voice', 'pop', 'slow', 'vocal']
['vocals']
['guitar', 'male voice', 'drums', 'techno']
['vocals', 'drums', 'weird']
['new age', 'synth', 'drums', 'pop', 'techno']
['female', 'female voice', 'woman', 'woman singing', 'female vocals']
['female', 'female voice', 'ambient', 'female vocals']
['ambient', 'new age', 'echo']
['vocals', 'female', 'voice', 'woman', 'not opera']
[]
[]
['female', 'guitar', 'female voice']
[]
['woman', 'singing']
['irish', 'clapping']
['guitar', 'spanish', 'indian']
['harpsichord', 'classical', 'guitar', 'strings', 'no vocals', 'harp', 'slow', 'soft']
['chimes', 'string', 'harp']
[]
['men', 'chant', 'choir']
['drums', 'no guitar']
[]
['classical', 'violins', 'strings', 'violin', 'slow']
[]
['male vocal', 'men', 'choir']
['classical', 'new age', 'drum', 'strings', 'drums', 'electronic', 'violin', 'instrumental', 'slow', 'rock', 'beat']
[]
['male vocal', 'vocals', 'new age', 'voice', 'male voice', 'loud', 'electronic', 'chanting', 'choral', 'weird', 'man singing', 'chant', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing', 'voices', 'techno', 'monks', 'choir']
['guitar', 'strings', 'male voice', 'loud', 'drums', 'weird', 'violin', 'chant', 'slow', 'male', 'rock', 'voices']
['male vocal', 'heavy', 'men', 'foreign', 'voice', 'male voice', 'drums', 'electronic', 'chanting', 'weird', 'man singing', 'chant', 'strange', 'man', 'deep', 'male', 'vocal', 'rock', 'beat']
[]
['ambient', 'no vocal', 'violin', 'dark']
['no voice', 'beats', 'ambient', 'new age', 'percussion', 'drums', 'electronic', 'no vocals', 'sax']
['new age', 'loud', 'electronic', 'fast']
['loud', 'no vocal', 'fast', 'techno']
[]
['ambient', 'synth', 'electronic', 'fast', 'no vocals']
[]
['ambient', 'violin', 'slow']
[]
['classical']
['synth', 'electronic', 'no guitar', 'no vocals', 'electronica', 'techno']
['synth', 'techno']
['ambient', 'synth', 'electronic', 'organ', 'echo', 'slow']
['classical', 'quiet', 'ambient', 'synth', 'electronic', 'organ', 'violin', 'light', 'slow', 'soft']
[]
[]
['techno']
['beats', 'drums', 'electronic', 'fast', 'electro', 'techno', 'beat']
['beats', 'synth', 'no vocal', 'techno']
['synth', 'drums', 'electronic', 'fast', 'electronica', 'trance', 'techno']
['hard rock', 'guitar', 'percussion', 'drum', 'male voice', 'drums', 'fast', 'electric guitar', 'rock', 'beat', 'metal']
[]
['male vocal', 'vocal', 'rock', 'metal']
['loud', 'hard', 'rock', 'metal']
['metal']
['hard rock', 'vocals', 'heavy', 'guitar', 'male voice', 'loud', 'man', 'male vocals', 'punk', 'male', 'rock', 'singing', 'metal']
['beats', 'percussion', 'drum', 'drums', 'electronic', 'no vocal', 'techno', 'beat']
[]
['techno']
[]
['funky', 'electronic', 'dance', 'techno', 'beat']
['beats', 'no singing', 'electronic', 'fast', 'no vocals', 'trance', 'beat']
[]
['electric', 'synth', 'electronic', 'fast', 'slow', 'beat']
['drum', 'drums', 'electronic', 'electro', 'different', 'techno', 'beat']
['electronic', 'weird', 'fast', 'electro', 'industrial', 'techno']
['ambient', 'synth', 'electronic', 'weird', 'electro', 'techno']
[]
['guitar', 'folk', 'acoustic']
[]
['guitar']
[]
['vocals', 'guitar', 'male voice', 'male', 'rock']
['male vocal', 'man singing', 'country', 'man', 'pop', 'piano', 'male vocals', 'male', 'rock']
['male vocal', 'guitar', 'spanish']
['vocals', 'foreign', 'clapping', 'flute']
['guitar', 'male voice', 'strange']
['beats', 'synth', 'electronic', 'fast', 'techno']
['techno']
['fast', 'techno']
['synth', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
['fast', 'dance', 'techno']
['fast', 'techno']
['electric', 'fast', 'dance', 'techno', 'beat']
['synth', 'electronic']
[]
[]
['beats', 'electronic', 'fast', 'dance', 'techno', 'house']
['techno']
[]
['guitar', 'no vocal', 'no vocals']
['guitar', 'fast']
['classical', 'strings', 'violin', 'light', 'flutes', 'flute']
['flute']
['classical', 'violins', 'strings', 'violin', 'flute']
[]
[]
['classical', 'strings', 'violin', 'flute']
['guitar']
['rock']
['guitar', 'solo', 'loud', 'fast', 'electric guitar', 'no vocals', 'rock']
['quiet', 'ambient']
[]
[]
[]
['drums']
['female voice', 'weird']
[]
['no piano', 'female', 'female voice', 'synth', 'voice', 'loud', 'pop', 'female vocal', 'woman', 'female vocals']
['female singing', 'female', 'female voice', 'voice', 'pop', 'female vocal', 'vocal', 'woman', 'female vocals', 'female singer']
['ambient', 'new age', 'synth', 'slow']
['chorus', 'men', 'classical', 'choral', 'slow', 'male', 'choir']
['choral', 'male', 'voices', 'choir']
['chorus', 'vocals', 'choral', 'opera', 'chant', 'male', 'vocal', 'choir']
['opera', 'bells', 'slow', 'voices']
['vocals', 'man', 'rock', 'singing', 'rap']
['vocals', 'loud', 'rock', 'metal']
[]
['heavy', 'loud', 'hard', 'rock', 'metal']
['country']
['male vocal', 'guitar', 'drums', 'man singing', 'country', 'man', 'male vocals', 'male', 'rock']
['male vocal', 'man singing', 'pop', 'male vocals', 'male', 'vocal', 'singing']
['male singer', 'country', 'pop', 'male', 'vocal', 'rock']
['vocals', 'guitar', 'country', 'man', 'rock']
[]
['guitar']
['ambient']
['no piano', 'ambient', 'space', 'weird']
['ambient', 'dark']
['ambient', 'no flute']
['classical', 'ambient', 'new age', 'synth', 'no singing', 'no vocal', 'no vocals']
['ambient', 'dark']
[]
[]
['ambient', 'noise']
['no beat']
['weird']
['new age', 'techno']
['harpsichord', 'classical', 'strings', 'harpsicord', 'baroque']
[]
['baroque']
['quiet', 'ambient', 'drums', 'tribal', 'low', 'indian', 'soft']
[]
['quiet', 'ambient', 'percussion', 'drums', 'electronic', 'no guitar', 'fast', 'tribal', 'instrumental', 'modern', 'slow', 'indian', 'techno', 'soft']
[]
['ambient', 'drums', 'electronic', 'beat']
['drums', 'tribal', 'indian', 'soft']
['no vocals']
['quiet', 'voice']
['no voice', 'strings', 'drums', 'violin', 'no vocals', 'indian', 'fiddle']
['folk', 'eastern']
[]
['guitar', 'harp', 'slow', 'no drums']
[]
['classical', 'guitar', 'solo', 'strings', 'harp', 'piano', 'slow']
['classical', 'strings', 'harp', 'slow']
[]
[]
['beats', 'synth', 'drums', 'electronic', 'fast', 'trance', 'dance', 'techno', 'beat']
['synth', 'drums', 'electronic', 'fast', 'trance', 'techno', 'beat']
['electronic', 'slow', 'techno']
[]
['classical', 'female', 'guitar', 'opera', 'female singer']
['classical', 'guitar', 'vocal', 'female vocals', 'flute']
['quiet', 'ambient', 'strange', 'bells']
['ambient', 'bells']
['ambient']
['spacey', 'ambient', 'no singing', 'electronic', 'no vocals', 'slow']
['sitar', 'piano', 'indian']
[]
['beats', 'jazz', 'guitar', 'drum', 'mellow', 'slow']
[]
['sitar', 'guitar', 'slow', 'indian']
[]
[]
['ambient', 'water']
[]
[]
['voice', 'opera', 'choir']
['male vocal', 'ambient']
['ambient']
['quiet', 'wind', 'ambient', 'new age', 'synth', 'airy', 'strange', 'slow', 'woman', 'flute', 'soft']
['quiet', 'no singing', 'no vocals', 'slow']
['hard rock', 'loud', 'rock', 'metal']
['hard rock', 'heavy', 'loud', 'dark', 'heavy metal', 'male', 'rock', 'metal']
['guitar', 'loud', 'drums', 'fast', 'electric guitar', 'rock', 'metal']
['heavy', 'loud', 'hard', 'rock', 'metal']
['guitar', 'drum', 'drums', 'fast', 'rock', 'metal']
['rock', 'metal']
['harpsichord', 'strings']
['harpsichord']
['harpsichord']
['harpsichord', 'classical', 'harpsicord', 'classic']
[]
[]
['no singing']
['beats', 'ambient', 'synth', 'weird', 'modern', 'slow', 'beat']
[]
['electronic', 'no vocal', 'techno']
[]
['ambient', 'electronic', 'techno']
['ambient', 'percussion', 'beat']
['drums']
['male vocal', 'vocals', 'jazz', 'man', 'pop', 'piano', 'male vocals', 'male', 'vocal']
['jazz', 'trumpet', 'male voice', 'horn', 'sax', 'blues', 'jazzy', 'singing']
['male vocal', 'jazz', 'man singing', 'man']
['beats', 'bass', 'loud', 'electronic', 'fast', 'electro', 'techno', 'beat']
['beats', 'electronic', 'electronica', 'dance', 'techno', 'beat']
[]
['drums', 'fast', 'techno', 'beat']
['world', 'male vocal', 'vocals', 'synth', 'voice', 'male voice', 'electronic', 'weird', 'fast', 'tribal', 'strange', 'modern', 'man', 'male vocals', 'male', 'techno', 'beat']
['synth', 'fast', 'modern', 'industrial', 'techno', 'beat']
['no piano', 'classical', 'guitar', 'quiet', 'strings', 'violin', 'piano', 'slow', 'cello', 'soft']
['male vocal', 'vocals', 'man', 'singing']
['strings']
['male vocal', 'man', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'vocals', 'man', 'male vocals', 'vocal', 'singing']
[]
[]
['modern']
['male vocal', 'male voice', 'drums', 'man', 'singing', 'beat']
[]
['synth', 'male', 'beat']
['synth', 'techno', 'beat']
['electronic']
['no flute', 'techno']
[]
['funk', 'bass', 'drums', 'different', 'beat']
['chimes', 'ambient', 'bells']
['slow']
['slow']
[]
['male vocal', 'man', 'pop', 'male vocals']
['male vocal', 'vocals', 'male voice', 'male singer', 'man singing', 'sax']
['guitar', 'man singing', 'country', 'man', 'piano', 'male vocals', 'male', 'vocal', 'rock']
['vocals', 'guitar', 'no vocals']
['male voice', 'male singer', 'country', 'man', 'pop', 'rock']
['guitar']
['no voice', 'violin']
['classical', 'violin', 'slow', 'cello']
['guitar', 'electric', 'weird', 'no vocals']
['electronic', 'techno']
['weird']
['male vocal', 'classical', 'opera', 'male opera', 'male']
['classical', 'opera', 'orchestra', 'slow', 'singing']
['classical', 'opera', 'lol', 'male']
['hard rock', 'guitar', 'quiet', 'drums', 'electric guitar', 'hard', 'rock']
['loud', 'rock']
['rock']
['guitar', 'no vocals', 'rock']
['rock']
['harpsichord', 'classical', 'solo', 'harpsicord', 'no vocals']
['harpsichord', 'happy', 'classic']
['harpsichord', 'classical', 'strings', 'harpsicord', 'medieval', 'baroque']
['harpsichord', 'classical']
['opera', 'man singing', 'male opera', 'man']
['classical', 'opera', 'singing']
['strings', 'opera', 'violin', 'male']
['opera']
['vocals', 'classical']
[]
['male vocal', 'vocals', 'classical', 'quiet', 'violins', 'voice', 'strings', 'male voice', 'classic', 'opera', 'man singing', 'violin', 'operatic', 'instrumental', 'man', 'male vocals', 'orchestra', 'male', 'vocal', 'singing', 'voices', 'soft']
['opera']
['strings']
['female opera', 'vocals', 'clarinet', 'classical', 'female', 'quiet', 'female voice', 'voice', 'strings', 'classic', 'opera', 'soprano', 'violin', 'operatic', 'female vocal', 'oboe', 'old', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'flute', 'soft', 'female singer']
['opera']
['clarinet', 'classical', 'solo', 'wind', 'oboe', 'slow', 'flute', 'soft']
['classical', 'violin']
['classical', 'voice', 'opera']
['classical', 'female voice', 'opera', 'violin', 'female vocal', 'slow']
['classical', 'strings', 'violin', 'no vocals', 'flute']
['classical', 'female', 'female voice', 'wind', 'strings', 'string', 'opera', 'oboe', 'vocal', 'woman', 'flute']
['female', 'opera', 'violin', 'woman']
['opera', 'violin', 'slow']
['plucking', 'guitar', 'solo']
['guitar', 'banjo', 'strings']
['guitar', 'banjo', 'folk', 'fast', 'lol']
['classical', 'piano', 'baroque']
[]
['electronic', 'electro', 'reggae']
[]
['reggae', 'slow']
['classical', 'guitar', 'strings', 'classic']
[]
['classical', 'guitar', 'piano', 'slow']
['guitar']
['classical', 'guitar', 'piano', 'slow']
['male vocal', 'guitar', 'male singer', 'vocal']
['guitar', 'rock', 'flute']
['singer', 'male vocal', 'vocals', 'jazz', 'guitar', 'female voice', 'man', 'vocal', 'rock']
['rock']
['male vocal', 'rock']
['male voice', 'rock', 'metal']
['drums', 'rock']
['rock']
['electronic', 'fast', 'electro', 'trance', 'techno']
['beats', 'electronic', 'fast', 'trance', 'techno']
['electronic', 'fast', 'techno']
['no voice', 'synth', 'no singing', 'electronic', 'techno', 'beat']
[]
['fast', 'techno']
[]
['guitar', 'drums', 'fast', 'dance', 'beat']
['loud', 'electronic', 'techno']
['guitar', 'synth', 'loud', 'electronic', 'fast', 'electronica', 'rock', 'techno']
[]
[]
['guitar']
['no piano', 'guitar', 'folk', 'classical guitar', 'spanish']
['guitar', 'solo', 'no vocals', 'spanish']
['guitar', 'no flute']
['guitar']
['guitar', 'singing']
['male vocal', 'guitar', 'man', 'slow', 'male']
['harpsichord', 'classical', 'flute']
['classical']
['no strings', 'classical', 'female', 'ambient', 'synth', 'strings', 'no vocal', 'no vocals', 'mellow', 'slow']
['vocals', 'female', 'female voice', 'ambient', 'new age', 'airy', 'no vocal', 'opera', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals']
['vocals', 'female', 'spacey', 'ambient', 'new age', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing']
[]
['quiet', 'ambient', 'airy', 'light', 'slow']
[]
['ambient']
['ambient', 'slow']
['ambient']
['quiet', 'no beat', 'soft']
['guitar']
['guitar', 'strings']
['silence', 'quiet']
['vocals', 'guitar', 'bass', 'drums', 'no vocals', 'man', 'slow', 'male', 'vocal', 'beat']
['guitar']
['guitar']
[]
['guitar', 'quiet', 'no guitar', 'piano', 'slow']
['quiet', 'synth']
['electronic', 'weird']
['electronic', 'no vocal', 'weird', 'modern']
['guitar', 'drum', 'drums', 'electronic', 'techno', 'beat']
['strings', 'drums', 'electronic', 'weird', 'pop']
['guitar', 'slow']
['beats', 'guitar', 'quiet', 'new age', 'bass', 'loud', 'electronic', 'modern', 'slow', 'rock', 'beat']
['electric', 'voice', 'male voice', 'loud', 'drums', 'electronic', 'weird', 'techno', 'beat']
['vocals', 'beats', 'funky', 'synth', 'drums', 'electronic', 'electro', 'strange', 'jazzy', 'techno', 'beat', 'noise']
['vocals', 'drums', 'electronic', 'talking', 'industrial', 'techno']
['ambient', 'drums', 'fast', 'slow']
[]
['drums', 'no vocals', 'not opera', 'beat']
['ambient']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'medieval', 'string', 'irish', 'lute']
['strings', 'violin', 'slow']
['opera', 'male opera', 'man', 'male']
['opera']
['opera', 'male opera', 'man', 'singing']
[]
['male vocal', 'opera', 'man', 'male', 'vocal']
['male voice', 'opera', 'male opera', 'man', 'male', 'vocal']
['male vocal', 'opera', 'violin', 'male opera', 'man', 'male', 'vocal']
['male vocal', 'vocals', 'opera', 'male opera', 'male', 'singing']
['opera', 'vocal']
['classical', 'violins', 'strings', 'classic', 'violin']
['harpsichord', 'classical', 'strings', 'violin']
['classical', 'classic']
['drums']
['strings']
['beat']
[]
['slow', 'indian', 'beat']
['funky', 'synth', 'bass', 'drums', 'electronic', 'techno', 'beat']
['drums', 'jazzy']
['male vocal', 'ambient']
['drums', 'man', 'slow', 'beat']
['pop', 'techno']
['male vocal', 'vocals', 'jazz', 'trumpet', 'male voice', 'drums', 'modern', 'disco', 'pop', 'sax', 'male', 'vocal', 'dance', 'beat']
[]
[]
[]
['male voice', 'male', 'vocal']
['female', 'voice', 'electronic', 'weird', 'female vocal', 'voices']
[]
[]
['vocals', 'female']
['guitar', 'new age', 'electronic', 'techno']
[]
['guitar', 'new age', 'synth', 'techno']
['vocals', 'fast', 'tribal', 'no flute', 'vocal', 'techno']
[]
[]
['indian']
['no vocal', 'indian']
['sitar', 'strings', 'indian']
['female', 'ambient', 'new age', 'vocal']
['singer', 'synth']
['male vocal', 'vocals', 'female', 'synth', 'voice', 'male', 'vocal']
['singing']
[]
['female', 'no vocal', 'electro', 'female vocal']
['new age', 'synth', 'electronic']
['classical', 'strings', 'violin', 'soft']
[]
['classical', 'female', 'opera', 'soprano', 'woman']
['female', 'voice', 'strings', 'opera', 'soprano']
['opera', 'man']
[]
['pop', 'woman', 'singing', 'women']
['fast', 'woman']
['female vocals']
[]
[]
['classical', 'flute']
['classical', 'flute']
['classical', 'harp', 'flute']
['strings', 'violin']
['classical', 'violin']
['harpsichord', 'violin']
['harpsichord', 'classical', 'strings', 'violin']
['violin']
['classical', 'violins', 'strings', 'violin']
['harpsichord', 'violin']
['harpsichord', 'classical', 'strings', 'country', 'violin']
['classical', 'strings', 'fast', 'violin', 'fiddle']
['harpsichord', 'classical', 'strings', 'country', 'violin', 'irish']
['violin', 'fiddle']
['drums', 'electronic', 'no vocals', 'beat']
['ambient', 'electronic', 'techno', 'beat']
['no piano', 'synth', 'electronic', 'slow']
['ambient']
['funky', 'funk', 'electronic']
['electronic', 'fast', 'dance', 'techno']
['synth', 'electronic', 'fast', 'no vocals', 'disco', 'dance', 'techno', 'beat']
['electric', 'electronic', 'fast', 'dance', 'techno']
['electronic', 'fast', 'rock', 'techno']
['fast', 'techno']
['electronic', 'dance', 'techno']
['fast', 'techno']
['synth', 'techno', 'beat']
['beats', 'electronic', 'fast', 'techno']
['chorus', 'classical', 'choral', 'opera', 'slow', 'choir']
['guitar', 'folk']
['guitar', 'banjo']
['guitar']
['guitar', 'banjo']
['dark']
['ambient', 'no vocals', 'slow']
[]
['hard rock', 'metal']
['hard rock', 'heavy', 'loud', 'rock']
['guitar', 'rock']
['guitar', 'electric', 'rock']
['guitar', 'spanish']
['male singer', 'man', 'spanish', 'male']
[]
[]
[]
['guitar', 'folk']
[]
['harpsichord', 'classical', 'instrumental']
['harpsichord', 'classical', 'harp', 'piano']
['harpsichord', 'classical']
['piano']
['clarinet', 'fast', 'violin', 'oboe', 'piano', 'flute']
['clarinet', 'classical', 'flute']
['piano']
['clarinet', 'classical']
['ambient', 'no vocals']
['ambient', 'electronic', 'slow', 'soft']
['ambient', 'synth', 'electronic', 'beat']
[]
['beats', 'synth', 'electronic', 'electro', 'techno']
['electronic', 'techno']
[]
['funky', 'electronic', 'electronica', 'instrumental']
[]
[]
['monks', 'choir']
['chanting', 'choral', 'opera', 'chant', 'male vocals', 'male', 'voices', 'monks', 'choir']
['chant', 'vocal']
['male vocal', 'techno']
['male vocal', 'synth', 'voice', 'male voice', 'electronic', 'fast', 'electronica', 'slow', 'male', 'techno']
['electronic', 'fast']
['beats', 'drum', 'bass', 'drums', 'electronic', 'fast', 'no vocals', 'rock', 'techno', 'beat']
['electric']
[]
['chant', 'choir']
['chorus', 'choral', 'opera', 'chant', 'male', 'monks', 'not opera', 'choir']
['guitar', 'drums', 'punk', 'rock', 'metal']
['punk', 'rock']
['hard rock', 'male vocal', 'vocals', 'heavy', 'guitar', 'male voice', 'loud', 'heavy metal', 'hard', 'punk', 'male', 'rock', 'metal']
['rock']
['hard rock', 'male vocal', 'loud', 'punk', 'rock']
['synth', 'electronic', 'electro', 'techno']
['synth', 'electronic', 'techno']
['synth', 'electronic', 'fast', 'electro', 'techno']
['new age', 'synth', 'drums', 'electronic', 'no vocals', 'techno']
['keyboard']
['hard rock', 'heavy', 'guitar', 'drums', 'fast', 'heavy metal', 'hard', 'rock', 'metal']
['guitar', 'strings']
['no voice', 'guitar', 'strings', 'drums', 'fast', 'instrumental', 'eastern', 'spanish', 'guitars']
['eastern', 'indian']
['guitar']
['guitar', 'drums', 'indian', 'oriental']
['guitar']
['guitar', 'strings', 'not classical']
[]
['classical', 'violins']
[]
['classical', 'violin']
[]
['singer', 'male vocal', 'guitar', 'male voice', 'country', 'pop', 'male vocals', 'male', 'singing']
['vocals', 'guitar', 'country', 'rock']
['guitar', 'country', 'slow', 'male', 'blues', 'rock', 'singing']
['harpsichord', 'classical', 'guitar', 'strings', 'classic', 'harp']
['guitar', 'strings', 'classical guitar']
['classical', 'guitar', 'strings', 'classical guitar', 'harp']
['no voice', 'classical', 'guitar']
['guitar', 'strings']
['classical', 'violin']
['harpsichord', 'classical', 'strings', 'violin']
['classical']
[]
[]
['fast beat']
['spacey', 'talking', 'industrial', 'techno', 'beat']
['synth', 'electronic', 'techno', 'beat']
['drums', 'beat']
['beats', 'drums', 'electronic', 'fast', 'dance', 'techno', 'house', 'beat']
['drums', 'beat']
['fast beat', 'techno']
['guitar', 'solo']
['guitar', 'solo', 'country', 'blues']
[]
[]
[]
['classical', 'guitar', 'no vocal', 'harp']
['guitar', 'quiet', 'solo', 'no singing', 'piano', 'slow', 'soft']
['guitar', 'no flute', 'piano', 'slow']
['guitar']
['weird', 'scary']
[]
['techno']
[]
['bass', 'piano', 'woman', 'dance', 'techno', 'beat', 'upbeat']
[]
[]
['beats', 'funky', 'synth', 'electronic', 'electro', 'techno', 'beat']
['repetitive', 'strings', 'different', 'clapping']
[]
['drums', 'jungle', 'soft']
['female', 'drum', 'drums', 'tribal', 'no vocals', 'jungle', 'vocal', 'voices', 'beat']
['bongos', 'no strings', 'percussion', 'drum', 'drums', 'female vocals']
['middle eastern', 'drums', 'modern', 'eastern', 'indian', 'beat']
['no voice', 'oriental']
['synth', 'weird', 'fast', 'electro', 'electronica', 'arabic', 'indian', 'techno']
['vocals', 'female', 'female voice', 'synth', 'electronic', 'weird', 'electronica', 'techno']
['fast', 'dance']
['synth', 'strings', 'violin']
['no voice', 'violin']
['electronic', 'fast', 'electro', 'techno']
['strings', 'fast', 'beat']
['drums', 'electronic', 'fast', 'indian']
[]
['electronic', 'fast', 'electro', 'vocal', 'techno']
['slow', 'beat']
['ambient', 'synth', 'slow']
[]
['ambient']
['beats', 'ambient', 'drums', 'electronic', 'electro', 'no vocals', 'bells', 'techno', 'flute', 'beat']
['no voice', 'beats', 'ambient', 'synth', 'no vocals', 'electronica', 'modern', 'techno', 'beat']
['techno']
['synth', 'drums']
['beats', 'bass', 'drums', 'reggae', 'beat']
['guitar', 'loud', 'drums', 'electric guitar', 'no vocals', 'rock', 'guitars']
['rock']
['rock']
[]
['punk', 'rock', 'metal']
['guitar', 'loud', 'electric guitar', 'rock']
['synth', 'space', 'electronic', 'weird', 'dark', 'modern', 'deep', 'techno']
['fast', 'techno']
['no piano', 'no vocal', 'weird', 'fast', 'no vocals', 'techno']
['fast', 'techno']
['hard rock', 'fast', 'rock', 'metal']
['singer', 'classical', 'opera', 'woman']
[]
['opera', 'vocal', 'woman', 'singing']
['classical', 'opera', 'woman', 'singing', 'female vocals']
['sitar', 'guitar', 'banjo', 'no vocals', 'eastern', 'indian']
['sitar', 'banjo']
['sitar']
['sitar', 'strings', 'indian']
['sitar', 'guitar', 'banjo', 'strings']
['guitar']
['guitar', 'strings', 'no vocals', 'slow']
['female', 'guitar', 'woman', 'female vocals']
['female']
['female', 'guitar', 'female vocal', 'singing']
[]
['guitar', 'no vocal', 'slow', 'rock']
['rock']
[]
['vocals', 'foreign', 'female voice', 'eastern', 'vocal', 'indian', 'woman', 'woman singing', 'singing', 'female vocals', 'voices', 'not english', 'women']
['female', 'vocal', 'voices', 'choir']
['chorus', 'foreign', 'female', 'folk', 'singing', 'flute']
[]
['hard rock', 'male voice', 'loud', 'male singer', 'male vocals', 'punk', 'male', 'rock', 'metal']
['hard rock', 'heavy', 'male voice', 'loud', 'rock', 'metal']
['rock', 'metal']
['classical', 'choral', 'opera', 'singing', 'choir']
['drums', 'choral', 'opera', 'choir']
['chorus', 'classical', 'opera', 'vocal']
['instrumental', 'piano']
['classical', 'solo', 'modern', 'piano', 'slow']
['piano']
['classical', 'solo', 'modern', 'piano', 'slow']
['piano', 'sad']
['guitar']
['guitar']
['no voice', 'classical', 'guitar', 'strings', 'classical guitar', 'no vocals', 'slow']
['classical', 'guitar', 'classic', 'spanish', 'slow']
[]
['foreign', 'female', 'middle eastern', 'drums', 'chanting', 'arabic', 'eastern', 'indian', 'woman', 'woman singing']
['foreign', 'female', 'female voice', 'drums', 'opera', 'tribal', 'vocal', 'indian', 'woman', 'singing', 'female vocals', 'oriental']
['drums']
['female', 'percussion', 'drum', 'drums', 'chanting', 'tribal', 'eastern', 'vocal', 'indian', 'woman', 'singing', 'oriental']
['female', 'female voice', 'indian']
['drums', 'tribal']
[]
['violin']
['vocals', 'pop', 'vocal', 'singing']
['vocals', 'pop', 'male', 'vocal']
['vocals', 'no guitar', 'vocal']
[]
['electronic', 'electro', 'techno']
['electronic', 'techno']
['no voice', 'drum', 'loud', 'drums', 'fast', 'rock', 'techno', 'beat']
['drums', 'weird', 'fast']
['guitar', 'bass', 'instrumental', 'beat']
['jazz', 'guitar', 'bass', 'drums']
['jazz', 'guitar', 'funk', 'bass', 'keyboard', 'drums', 'upbeat']
['jazz']
['jazz', 'jazzy']
['electronic', 'no vocal', 'techno']
['electronic', 'rock', 'beat']
['beats', 'percussion', 'drums', 'electronic', 'electronica', 'techno']
['harpsichord']
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'baroque']
[]
['techno']
['fast', 'techno']
['classical', 'strings', 'medieval', 'classic', 'violin']
['classical', 'violin']
['classical', 'strings', 'classic', 'violin']
['classical', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'cello']
['classical', 'violins', 'strings', 'medieval', 'classic', 'violin', 'slow', 'cello', 'baroque']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'harp', 'baroque']
['drums', 'no vocal', 'slow', 'beat']
['techno']
['synth', 'techno']
[]
['vocals', 'guitar', 'loud', 'rock']
['rock']
['vocals', 'electronic', 'fast', 'electro', 'pop', 'rock', 'dance', 'techno']
['vocals', 'female', 'loud', 'talking', 'fast', 'vocal', 'dance', 'techno', 'beat']
[]
['voice', 'techno']
[]
['male vocal', 'male voice', 'loud', 'fast', 'man singing', 'heavy metal', 'punk', 'rock', 'metal']
['heavy', 'male voice', 'loud', 'punk', 'male', 'rock', 'metal']
['no voice', 'guitar', 'no vocal', 'slow']
['guitar', 'quiet', 'classical guitar', 'piano', 'slow']
['guitar', 'soft']
['guitar', 'no vocal']
['guitar']
['classical', 'quiet', 'piano', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'fast', 'no vocals', 'harp', 'piano']
['classical', 'guitar', 'classical guitar', 'piano', 'slow', 'soft']
['singer', 'female singing', 'female', 'guitar', 'country', 'modern', 'pop', 'female vocal', 'woman', 'female vocals', 'female singer']
[]
[]
[]
['guitar', 'string']
['instrumental']
['strings']
['sitar']
['no voice', 'harpsichord', 'sitar', 'guitar', 'eastern', 'indian']
['strings', 'violin', 'slow', 'cello']
['ambient', 'calm']
['ambient', 'new age', 'slow', 'voices']
['chorus', 'choral', 'opera', 'chant', 'male', 'choir']
['chorus', 'choral', 'opera', 'choir']
['choral', 'opera', 'chant', 'choir']
['chorus', 'choral', 'opera', 'choir']
['male vocal', 'choral', 'opera']
['vocals', 'choral', 'opera']
[]
['ambient']
['drums']
['vocals', 'guitar', 'male singer', 'pop', 'male', 'singing', 'voices']
['male vocal', 'vocals', 'soft rock', 'guitar', 'male voice', 'drums', 'pop', 'male', 'vocal', 'rock', 'singing']
[]
[]
['pop']
['classical', 'guitar', 'quiet', 'slow']
['singer', 'female', 'medieval', 'opera', 'irish', 'vocal', 'woman singing']
[]
['female', 'celtic', 'woman', 'singing']
['classical', 'guitar', 'opera', 'piano', 'slow', 'woman']
[]
['folk', 'no singing', 'strings', 'no vocal', 'country', 'no vocals', 'instrumental', 'celtic', 'no singer', 'upbeat', 'fiddle']
['violin', 'irish', 'upbeat', 'fiddle']
[]
['beats', 'guitar', 'percussion', 'drum', 'strings', 'drums', 'beat']
['guitar', 'country', 'indian']
['jazz', 'guitar', 'strings']
['beats', 'drum', 'bass', 'drums', 'beat']
['guitar', 'banjo', 'solo', 'fast', 'electric guitar', 'country', 'indian', 'rock']
['guitar', 'banjo', 'country']
['no voice', 'ambient', 'new age', 'violin', 'no vocals', 'mellow', 'slow']
['violin']
['classical', 'ambient', 'orchestra', 'slow']
['violin']
['violin', 'slow']
['ambient']
['new age']
[]
['female', 'vocal', 'woman']
['drum', 'string', 'drums', 'tribal', 'instrumental', 'indian']
['bongos']
['no voice', 'world', 'sitar', 'vocals', 'female voice', 'new age', 'drums', 'female vocal', 'eastern', 'indian']
['bongos', 'classical', 'violin', 'slow', 'cello']
['violin']
['guitar', 'banjo', 'no vocal', 'country', 'no vocals']
[]
['guitar', 'banjo', 'blues']
['male vocal', 'vocals', 'guitar', 'male voice', 'acoustic', 'man', 'male']
['male vocal', 'guitar', 'man singing', 'man']
['soft rock', 'guitar', 'acoustic', 'country', 'soft']
['clarinet', 'bass', 'violin', 'dark', 'low', 'deep', 'slow', 'indian', 'flute']
[]
['weird', 'vocal']
['synth']
[]
['no piano', 'violins', 'strings', 'violin', 'cello']
['vocals', 'classical', 'female voice', 'voice', 'strings', 'bass', 'string', 'violin', 'slow', 'cello', 'soft']
['classical', 'violin']
['guitar', 'quiet', 'strings', 'acoustic', 'acoustic guitar', 'slow', 'soft']
[]
['techno']
['fast', 'techno']
['drum', 'drums', 'fast', 'techno', 'beat']
['bass', 'loud', 'drums', 'fast', 'trance', 'fast beat', 'techno', 'beat']
['drums', 'trance', 'techno']
['beats', 'electric', 'drum', 'loud', 'drums', 'electronic', 'no vocal', 'fast', 'rock', 'dance', 'techno', 'beat', 'upbeat']
['drums', 'fast', 'techno', 'beat']
['piano']
['no piano', 'classical', 'guitar', 'folk', 'strings', 'violin', 'slow', 'cello', 'fiddle']
['violin', 'irish', 'cello']
['violin']
['classical']
[]
[]
['female', 'synth', 'electronic', 'electronica', 'female vocal', 'vocal', 'woman', 'woman singing', 'techno']
['female', 'female vocal']
['female', 'girl', 'vocal', 'woman', 'techno', 'beat']
['singer', 'female voice', 'synth', 'woman', 'singing']
['drums', 'rock', 'voices', 'beat']
['female', 'female voice', 'pop', 'female vocal', 'woman singing', 'techno']
['hard rock', 'rock']
['guitar', 'bass', 'drums', 'rock', 'metal']
['guitar', 'drum', 'drums', 'rock', 'beat']
['guitar', 'rock']
[]
['male vocal', 'guitar', 'keyboard', 'fast', 'vocal', 'rock']
[]
[]
['choral', 'monks', 'choir']
['female', 'opera', 'choir']
['classical', 'quiet', 'choral', 'opera', 'choir']
['men', 'classical', 'female', 'choral', 'opera', 'choir', 'women']
['vocals', 'chanting', 'no guitar', 'choral', 'choir']
['female', 'opera', 'singing']
['chorus', 'female', 'quiet', 'choral', 'opera', 'slow', 'choir']
['quiet', 'choral', 'opera', 'chant', 'slow', 'vocal', 'choir']
['chorus', 'classical', 'choral', 'opera', 'vocal', 'woman', 'singing', 'choir']
['classical', 'choral', 'opera', 'choir']
['guitar', 'acoustic', 'acoustic guitar', 'country']
['male vocal', 'guitar', 'male voice', 'country', 'man', 'pop', 'piano']
['male vocal', 'country', 'pop', 'male']
[]
[]
['guitar', 'no vocal', 'no vocals', 'rock']
['male vocal', 'guitar', 'male', 'rock']
['guitar', 'male vocals', 'rock', 'metal']
['guitar', 'drums', 'rock']
['male vocal', 'voice', 'male voice', 'male', 'rock']
['hard rock', 'guitar', 'drums', 'fast', 'punk', 'rock', 'metal']
['guitar', 'no vocal', 'electric guitar', 'rock']
['rock']
['classical', 'solo', 'piano']
['classical', 'classic', 'piano', 'piano solo']
['classical', 'piano']
['no voice', 'silence', 'quiet', 'wind']
['vocals', 'female', 'girl', 'drums', 'irish', 'pop', 'female vocal', 'woman', 'woman singing', 'singing', 'female vocals']
['singer', 'vocals', 'female', 'guitar', 'male voice', 'man', 'pop', 'vocal', 'singing']
['male vocal', 'vocals', 'guitar', 'pop', 'piano', 'male vocals', 'male', 'vocal', 'rock']
[]
['vocals', 'guitar', 'piano', 'male', 'vocal']
[]
[]
['quiet']
['drone']
['ambient', 'electronic', 'no vocals']
['eerie', 'electric', 'ambient', 'synth', 'weird', 'dark', 'slow', 'scary']
['new age', 'drum', 'drums', 'not classical', 'modern', 'piano', 'slow', 'cello', 'soft']
['piano', 'slow']
['strings', 'violin', 'piano', 'slow']
['guitar', 'piano']
['piano']
['piano']
['drum', 'drums', 'piano', 'slow']
['female', 'piano']
['vocals', 'female', 'female voice', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'female vocals']
['violin', 'pop', 'woman', 'female vocals']
[]
['violin']
['sitar', 'synth', 'electronic', 'weird', 'eastern', 'indian', 'india']
['oriental']
['drums']
['fast', 'eastern', 'flutes', 'indian']
['world', 'middle eastern', 'drums', 'electronic', 'fast', 'indian', 'beat']
[]
[]
['no singing', 'strings', 'loud', 'no vocal', 'fast', 'no vocals', 'piano']
['sitar', 'indian']
[]
['bass', 'electronic', 'techno', 'beat', 'upbeat']
['dance', 'techno']
['dance', 'techno']
[]
['electronic', 'trance', 'techno']
['fast', 'electronica', 'dance', 'techno', 'beat']
['beats', 'fast', 'electro', 'techno']
['techno']
[]
['ambient', 'drums', 'jazzy']
['beat']
['ambient', 'synth', 'techno']
['guitar', 'violin', 'flute', 'soft']
['guitar', 'no vocals', 'slow']
['male vocal', 'male']
['male vocal', 'classical', 'guitar', 'singing']
['guitar', 'bass', 'drums', 'electric guitar', 'rock', 'jazzy', 'beat']
['guitar']
['male vocal', 'male', 'vocal', 'rock']
['funky', 'guitar', 'funk', 'pop']
['male vocal', 'funk', 'vocal']
['funky', 'funk', 'rock']
['bass', 'no vocals', 'deep', 'techno']
[]
['electric', 'synth', 'vocal']
['bongos', 'solo', 'drums', 'fast']
['percussion', 'drums', 'beat']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'harp']
['harpsichord', 'clasical', 'classical', 'strings']
['harpsichord', 'classical', 'classic', 'harp', 'piano']
['harpsichord']
['harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord', 'medieval', 'piano', 'old', 'baroque']
['guitar', 'new age', 'strings', 'harp', 'no flute', 'piano', 'slow']
['guitar', 'quiet', 'strings']
['beats', 'percussion', 'drums', 'tribal', 'beat']
['percussion', 'drum', 'drums']
[]
['world', 'beats', 'percussion', 'drum', 'drums', 'fast', 'tribal', 'indian', 'beat']
['quiet', 'ambient', 'synth', 'drum', 'drums', 'instrumental', 'drone']
['no vocal']
[]
['dark', 'slow']
['quiet', 'ambient', 'bass', 'not classical', 'dark', 'slow']
['quiet', 'ambient', 'weird', 'dark', 'low', 'drone', 'industrial']
['quiet', 'no beat', 'ambient', 'drums', 'electronic', 'dark', 'low', 'slow', 'beat']
['ambient', 'no vocal', 'slow']
[]
[]
[]
['classical', 'strings', 'violin', 'piano', 'fiddle']
['violin']
['strings', 'medieval', 'violin', 'fiddle']
['sitar', 'foreign', 'guitar', 'strings', 'drums', 'slow']
['sitar']
['sitar', 'strings', 'not classical', 'eastern', 'indian']
['no voice', 'no vocal']
[]
['sitar', 'guitar', 'weird', 'strange', 'indian']
['sitar', 'fast', 'indian']
['indian']
[]
['no voice', 'voice', 'instrumental', 'indian']
['sitar']
['guitar', 'drums', 'no vocal', 'eastern', 'indian']
[]
['electronic']
['ambient', 'synth', 'drum', 'drums', 'techno']
['no voice', 'ambient', 'no singing', 'no vocal', 'no vocals', 'slow', 'beat']
['electronic', 'no vocal', 'instrumental', 'piano', 'techno']
[]
['synth', 'electronic', 'electro', 'synthesizer', 'no flute', 'techno', 'flute', 'beat']
['new age', 'piano', 'techno']
[]
['ambient', 'woman']
[]
['female', 'female voice', 'female vocals']
['no singing', 'bass', 'electronic', 'no vocal', 'deep', 'techno', 'beat']
['guitar', 'bass', 'loud', 'drums', 'electronic', 'fast', 'modern', 'rock', 'guitars', 'techno', 'beat']
['guitar', 'piano', 'vocal', 'rock']
['drums']
['classical', 'folk', 'strings', 'violin', 'slow', 'cello', 'fiddle']
[]
['male vocal', 'foreign', 'strings', 'male voice', 'choral', 'opera', 'violin', 'man', 'singing']
['vocals', 'male vocals', 'vocal']
['string', 'opera', 'violin', 'male']
['male vocal', 'folk', 'voice', 'strings', 'medieval', 'male voice', 'opera', 'violin', 'male', 'vocal', 'singing', 'not english']
['male vocal', 'foreign', 'voice', 'strings', 'male voice', 'opera', 'man singing', 'violin', 'man', 'male vocals', 'spanish', 'male', 'singing', 'different']
['vocals', 'classical', 'violins', 'strings', 'male voice', 'violin', 'irish', 'male', 'vocal', 'singing']
[]
['medieval', 'opera', 'violin', 'irish', 'male', 'singing']
[]
['hard rock', 'rock', 'metal']
['guitar', 'man singing', 'man', 'male vocals', 'rock', 'metal']
['hard rock', 'guitar', 'rock', 'metal']
[]
['rock']
['guitar', 'banjo', 'folk', 'fast', 'celtic']
['sitar', 'guitar', 'banjo', 'fast', 'country', 'strange', 'eastern', 'indian']
['guitar', 'banjo', 'no vocals']
['fast']
[]
['guitar', 'loud', 'fast']
['guitar', 'loud']
[]
['techno']
['fast', 'techno']
['electronic', 'fast', 'no vocals', 'dance', 'techno']
['female', 'electronica', 'pop', 'techno']
['quiet', 'new age', 'bells']
['jazz', 'new age', 'electronic']
['vocals', 'ambient', 'new age', 'loud', 'no vocal', 'violin']
[]
[]
[]
['sitar', 'loud', 'eastern', 'indian', 'oriental']
['sitar', 'strings', 'loud', 'fast', 'indian', 'oriental']
['female', 'guitar', 'voice', 'girl', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'female singer']
['vocals', 'female', 'female voice', 'girl', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'soft', 'female singer']
[]
['vocals', 'pop', 'vocal', 'woman', 'female vocals']
['vocals', 'female', 'guitar', 'girl', 'pop', 'female vocal', 'rock', 'female vocals', 'female singer']
['funky', 'drums', 'dance', 'techno', 'beat']
['loud', 'drums', 'dance', 'beat']
['beats', 'funky', 'jazz', 'drums', 'fast', 'jungle', 'indian', 'beat']
['techno']
[]
['beat']
['fast', 'techno', 'beat']
['guitar']
['guitar', 'folk', 'strings']
['guitar', 'no vocal', 'country', 'instrumental', 'guitars']
['guitar']
['guitar', 'drum', 'rock']
['guitar', 'rock']
['rock']
['female', 'female voice', 'loud', 'pop', 'piano', 'woman', 'female vocals', 'female singer']
['classical', 'strings', 'baroque']
['classical', 'violins', 'strings', 'violin', 'orchestra']
['classical', 'strings']
[]
['guitar', 'solo', 'harp', 'slow']
[]
['drums', 'electronic', 'no vocal', 'male vocals', 'slow', 'rock', 'beat']
['man', 'slow', 'male']
['male vocal', 'soft rock', 'male singer']
[]
['female', 'medieval', 'flute', 'female singer']
['female', 'harp', 'celtic']
[]
[]
['irish', 'female vocals', 'flute']
['drums', 'celtic', 'flute']
[]
['trumpet']
[]
['electronic', 'electronica', 'lol', 'flute']
[]
[]
['beats', 'repetitive', 'loud', 'electronic', 'weird', 'strange', 'techno', 'noise']
['classic', 'no vocals', 'piano', 'slow', 'soft']
['foreign', 'female', 'female voice', 'string', 'piano', 'spanish', 'vocal', 'woman', 'singing', 'not english']
['vocals', 'female', 'guitar', 'opera', 'piano', 'spanish', 'male', 'vocal', 'singing']
[]
[]
['classical', 'guitar', 'no singing', 'voice', 'strings', 'piano', 'spanish', 'male', 'woman', 'singing']
['male vocal', 'foreign', 'female', 'female voice', 'voice', 'man singing', 'man', 'piano', 'slow', 'male', 'vocal', 'singing', 'soft']
['male vocal', 'piano']
['man', 'piano']
['piano']
['quiet', 'ambient']
['ambient']
['ambient']
['wind', 'ambient', 'drums', 'noise']
['quiet', 'wind', 'ambient', 'weird']
['no vocals', 'noise']
[]
['eerie', 'quiet', 'wind', 'ambient', 'no vocal']
['wind', 'ambient', 'weird', 'noise']
['ambient', 'weird', 'slow', 'noise']
['guitar', 'new age', 'electronic', 'chant', 'piano', 'slow', 'soft']
['vocals', 'female', 'guitar', 'quiet', 'pop', 'slow', 'vocal', 'jazzy', 'singing', 'beat']
['chimes', 'no vocals', 'pop', 'piano', 'upbeat', 'soft']
['beats', 'drums', 'fast']
['drums', 'fast', 'jungle', 'dance', 'techno', 'beat']
[]
[]
['beats', 'synth', 'fast', 'no vocals', 'dance', 'techno', 'beat']
['electronic', 'fast', 'techno']
['no voice', 'classical', 'solo', 'piano', 'slow']
['classical', 'solo', 'fast', 'piano', 'piano solo']
['piano']
['no strings', 'classical', 'piano']
[]
['jazz', 'guitar', 'female voice', 'female vocal']
[]
[]
['female', 'guitar', 'drums', 'female vocal', 'woman', 'flute', 'beat']
['female', 'guitar', 'female vocal', 'vocal', 'jazzy', 'singing', 'female vocals', 'flute']
['guitar', 'piano']
['loud', 'rock', 'metal']
['pop']
['male vocal', 'guitar', 'male voice', 'male singer', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['drum', 'voice', 'drums', 'modern', 'slow', 'male', 'vocal', 'rock', 'singing']
[]
[]
['woman singing']
['female', 'female voice', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'female singer']
['guitar']
['female singing', 'female', 'guitar', 'loud', 'pop', 'female vocal', 'woman', 'rock', 'singing', 'female vocals', 'female singer']
[]
['loud', 'female vocal', 'woman', 'rock']
['loud', 'fast', 'punk', 'rock', 'metal']
['rock', 'metal']
['electronic', 'techno', 'beat']
[]
['fast']
[]
['bongos', 'beats', 'solo', 'percussion', 'drum', 'drums']
['percussion', 'drum', 'drums', 'reggae']
['percussion', 'drum', 'drums', 'fast', 'tribal', 'beat']
['percussion', 'drums', 'beat']
[]
['dance', 'techno']
['loud', 'fast', 'techno', 'beat']
['techno']
['no piano', 'loud', 'drums', 'electronic', 'fast', 'hard', 'dance', 'techno']
['ambient', 'chanting', 'drone']
['drums', 'no vocals']
['ambient', 'drums', 'slow']
['slow']
[]
['piano', 'soft']
['classical', 'piano']
['silence', 'classical', 'quiet', 'piano', 'slow']
['classical', 'quiet', 'solo', 'no vocal', 'piano', 'slow', 'piano solo', 'soft']
['classical', 'quiet', 'piano', 'soft']
['female', 'fast', 'woman', 'dance', 'female vocals', 'techno', 'beat']
[]
['female vocal', 'woman', 'dance', 'techno']
['beats', 'female', 'trance', 'pop', 'vocal', 'dance', 'techno']
[]
['female', 'fast', 'female vocal', 'dance', 'female vocals', 'techno', 'beat']
['fast', 'techno']
['techno']
['synth', 'techno']
[]
['ambient', 'synth', 'electronic', 'slow']
['drums', 'fast', 'trance', 'fast beat', 'dance', 'techno', 'beat']
['fast', 'piano', 'techno']
['ambient', 'electronic', 'fast', 'techno']
['fast']
['fast', 'techno']
['fast', 'rock']
['vocals', 'foreign', 'man', 'spanish', 'male']
['spanish']
['chorus', 'vocals', 'foreign', 'male voice', 'spanish', 'vocal', 'singing', 'voices', 'not english', 'choir']
['foreign', 'folk', 'spanish', 'vocal']
['voices']
['female', 'guitar', 'quiet', 'no vocal', 'piano']
['female', 'opera', 'female vocal']
['chorus', 'choral', 'opera', 'slow', 'vocal', 'choir']
['choral', 'choir']
['choral', 'opera', 'chant', 'vocal', 'choir']
['male vocal', 'male voice', 'chanting', 'choral', 'opera', 'chant', 'man', 'lute', 'piano', 'male', 'vocal']
[]
[]
['classical', 'strings', 'violin', 'flute', 'soft']
['violin']
['classical', 'violin']
['classical', 'strings', 'violin', 'oboe']
['classical', 'classic', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'slow']
['clasical', 'classical', 'strings', 'violin', 'oboe', 'flute']
['oboe', 'slow', 'flute']
['classical', 'strings', 'classic', 'violin', 'orchestra']
[]
['no piano', 'classical', 'guitar', 'strings', 'medieval', 'classic', 'classical guitar', 'harp', 'lute', 'piano', 'slow']
[]
['classical', 'guitar']
['classical', 'guitar', 'strings', 'harp']
['quiet', 'electronic', 'weird']
[]
['electric', 'ambient', 'synth', 'electronic', 'weird', 'slow', 'techno']
['electronic', 'techno']
['no beat', 'ambient', 'space', 'electronic', 'slow', 'techno']
['no voice', 'quiet', 'ambient']
['female', 'quiet', 'slow', 'choir']
['vocals', 'female voice', 'drums', 'tribal', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'voices', 'beat']
['drums']
['drums']
[]
['drum', 'drums', 'slow']
['guitar', 'funk', 'drums', 'beat', 'upbeat']
['funky', 'jazz', 'funk', 'drums', 'pop', 'jazzy', 'beat']
['funky', 'jazz', 'guitar', 'funk', 'instrumental', 'pop', 'rock', 'jazzy']
['funk', 'pop', 'female vocal']
['quiet', 'piano', 'sad', 'slow']
['solo', 'piano', 'slow']
['classical', 'solo', 'piano', 'slow', 'soft']
[]
['classical', 'piano', 'slow']
[]
['solo', 'piano']
['classical', 'solo', 'classic', 'no vocals', 'piano', 'slow']
['piano']
['talking', 'male']
['ambient', 'drone', 'slow', 'male', 'vocal', 'soft']
['ambient', 'slow']
['ambient']
['no beat', 'ambient', 'new age', 'synth', 'strings', 'no vocal', 'no vocals', 'orchestral', 'slow', 'calm', 'soft']
[]
['drums', 'tribal', 'beat']
['percussion', 'drums']
['beats', 'percussion', 'drum', 'drums', 'tribal', 'beat']
['percussion', 'drums']
['synth', 'techno']
['female voice', 'girl', 'electronic', 'pop']
['female', 'pop', 'female vocals']
[]
['synth', 'dance', 'techno', 'beat']
['synth', 'drum', 'repetitive', 'loud', 'drums', 'fast', 'electro', 'synthesizer', 'rock', 'techno', 'beat']
['sitar', 'indian']
['sitar', 'arabic', 'eastern', 'indian', 'oriental']
['quiet', 'ambient', 'no vocals', 'slow']
['new age', 'synth', 'airy']
[]
['electric', 'synth', 'slow']
['ambient', 'new age', 'synth', 'electronic', 'no vocal', 'fast', 'electro', 'no vocals', 'slow', 'techno']
['ambient', 'synth', 'electronic', 'tribal', 'no vocals', 'instrumental', 'slow']
[]
[]
['male vocals', 'slow', 'male']
['male voice', 'slow']
['male vocal', 'guitar', 'male voice', 'man singing', 'man', 'pop', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'electric guitar', 'pop', 'vocal', 'rock']
['guitar', 'rock', 'singing']
[]
['new age', 'weird', 'slow', 'vocal']
['male vocal', 'vocals', 'foreign', 'ambient', 'new age', 'male singer', 'electronica', 'slow', 'male', 'vocal', 'singing']
['vocals', 'ambient', 'voices', 'techno']
['weird']
['chorus', 'vocals', 'loud', 'choral', 'singing']
['ambient', 'electronic', 'weird']
['synth', 'fast']
[]
['female', 'synth']
['classical', 'new age', 'synth', 'drums', 'electronic', 'no vocal', 'electric guitar', 'no vocals', 'pop', 'slow']
['no guitar']
['harpsichord', 'classical', 'quiet', 'strings', 'harp', 'slow']
['classical']
['harpsichord', 'classical', 'violin']
['harpsichord', 'classical', 'string', 'violin']
[]
['classical']
[]
['harpsichord', 'classical', 'violins', 'strings', 'violin']
[]
['piano']
['no piano', 'guitar', 'female voice', 'new age', 'strings', 'piano', 'slow', 'vocal']
['vocals', 'pop']
['fast']
['female', 'pop', 'female vocal', 'woman', 'woman singing', 'beat', 'female singer']
['harpsichord', 'classical', 'fast']
[]
['classical', 'cello']
['strings', 'violin', 'cello']
[]
['no strings', 'drums', 'techno']
['loud', 'fast', 'pop', 'woman', 'rock', 'beat']
['guitar', 'loud', 'no vocal', 'fast', 'no vocals', 'rock']
['loud', 'fast', 'rock']
['classical', 'guitar', 'strings', 'string', 'slow']
['strings']
[]
['classical', 'guitar', 'strings', 'fast', 'harp']
[]
['electric', 'electronic', 'fast', 'techno', 'soft']
['beats', 'quiet', 'happy', 'ambient', 'synth', 'percussion', 'bass', 'drums', 'electronic', 'fast', 'no vocals', 'instrumental', 'fast beat', 'techno', 'beat', 'upbeat']
['fast', 'piano']
['classical', 'piano']
['piano']
['classical', 'piano']
[]
['classical', 'piano']
['classical', 'fast', 'piano']
['classical', 'piano']
['guitar', 'quiet', 'piano', 'soft']
['silence', 'classical', 'guitar', 'quiet', 'acoustic', 'classic', 'piano', 'slow', 'no drums', 'calm', 'soft']
['classical', 'guitar', 'quiet', 'solo', 'piano']
['classical', 'guitar', 'quiet', 'solo', 'string', 'slow']
['solo', 'piano']
['classical', 'solo', 'keyboard', 'loud', 'fast', 'piano']
['piano']
['classical', 'solo', 'fast', 'modern', 'piano']
[]
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'violin', 'no flute', 'cello']
['cello']
['classical', 'strings', 'violin', 'cello']
[]
['female voice', 'pop', 'female vocal', 'vocal', 'singing', 'female vocals']
['vocal']
['female', 'fast', 'rock', 'female vocals']
['pop', 'techno']
['vocal']
['beats', 'synth', 'fast']
['drums', 'rock']
[]
['chorus']
[]
['choral', 'opera', 'choir']
['choral', 'opera', 'choir']
['chorus', 'vocals', 'classical', 'female', 'strings', 'opera', 'vocal', 'singing', 'choir']
['male vocal', 'foreign', 'man', 'male vocals', 'spanish', 'male', 'vocal', 'singing']
['male voice']
['spanish', 'male']
['female', 'guitar']
['female', 'guitar', 'vocal', 'singing']
['guitar']
['female', 'guitar', 'strings', 'slow', 'vocal', 'woman', 'singing']
['female', 'guitar', 'folk', 'man', 'vocal', 'woman', 'female vocals']
['guitar', 'strings']
['guitar', 'strings']
[]
['synth']
[]
[]
['violin']
['new age', 'loud', 'drums', 'violin', 'strange']
['strings', 'drums', 'electronic', 'violin', 'indian']
[]
['guitar', 'string', 'oriental']
['guitar', 'quiet', 'solo', 'ambient', 'middle eastern', 'spanish']
['foreign', 'guitar', 'quiet', 'solo', 'ambient', 'strings', 'no vocal']
[]
['guitar', 'quiet', 'strings', 'acoustic', 'acoustic guitar', 'indian', 'soft']
['not classical', 'noise']
[]
[]
['no vocal', 'no vocals', 'noise']
['ambient']
['ambient', 'dark', 'industrial', 'rock']
['guitar', 'no singing']
[]
['classical', 'guitar', 'solo', 'strings', 'lute', 'slow']
['guitar', 'solo', 'medieval', 'harp']
['guitar', 'slow']
[]
['ambient', 'synth', 'drums', 'electronic']
['drums', 'bells']
['bongos', 'no piano', 'ambient', 'drums', 'bells', 'no singer']
['guitar', 'no singing', 'piano']
['classical', 'guitar', 'quiet', 'strings', 'classic', 'no vocal', 'harp', 'lute', 'piano', 'spanish', 'slow', 'baroque']
['guitar', 'rock']
['guitar', 'punk', 'rock']
['fast', 'rock']
[]
['quiet', 'ambient', 'synth', 'strings', 'no vocal', 'opera', 'low', 'slow', 'flute']
['vocals', 'female', 'synth', 'no guitar', 'organ', 'drone', 'female vocal', 'slow', 'vocal', 'soft']
['no piano', 'classical', 'female', 'female voice', 'voice', 'strings', 'opera', 'piano', 'slow']
['ambient', 'new age', 'synth', 'voice', 'female vocal', 'slow', 'woman', 'calm', 'soft']
['female', 'strings', 'classic', 'vocal']
['female', 'female voice', 'dark', 'female vocal', 'vocal', 'woman']
['female', 'female voice', 'opera', 'indian', 'singing']
['vocals', 'opera']
['female', 'quiet', 'new age', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'oriental', 'soft']
['guitar', 'male', 'singing']
['synth', 'electronic', 'low', 'slow']
['quiet', 'ambient', 'synth', 'not rock', 'organ', 'no vocal', 'slow', 'soft']
[]
['guitar', 'wind']
['sitar', 'guitar', 'strings']
['sitar', 'guitar']
['no voice', 'synth', 'bass', 'drums', 'electronic', 'no vocal', 'weird', 'echo', 'techno']
['funky', 'drums', 'modern', 'beat']
['drums', 'techno', 'beat']
['beats']
['ambient', 'new age', 'synth', 'bass', 'drums', 'beat']
['beats', 'spacey']
['classical']
['ambient', 'drums', 'dark']
['loud', 'weird']
['classical', 'ambient', 'piano', 'slow', 'noise']
['ambient', 'weird', 'scary']
['drums', 'chanting', 'fast', 'no vocals', 'noise', 'choir']
['classical', 'guitar', 'banjo', 'solo', 'classical guitar', 'country', 'piano', 'slow']
['drums', 'electronic', 'fast', 'techno', 'beat']
['drums', 'fast', 'rock', 'techno', 'beat']
['drums', 'fast', 'trance', 'techno']
['drums', 'electronic', 'fast', 'techno']
['drums', 'fast', 'trance', 'dance', 'techno']
[]
[]
['ambient']
['vocals', 'opera', 'slow', 'choir']
['duet', 'vocals', 'classical', 'female', 'female voice', 'medieval', 'opera', 'vocal', 'woman', 'woman singing', 'singing', 'choir']
['female singing', 'vocals', 'classical', 'female', 'guitar', 'female voice', 'voice', 'opera', 'lute', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing', 'different']
['opera']
['female opera', 'vocals', 'classical', 'female', 'solo', 'opera', 'soprano', 'woman']
['male vocal', 'no piano', 'guitar', 'voice', 'vocal', 'woman']
['guitar', 'man', 'slow']
['drums', 'male', 'rock']
['guitar']
['guitar', 'drums', 'country', 'piano']
['guitar', 'loud', 'drums', 'electric guitar', 'piano', 'rock', 'jazzy']
['guitar', 'loud', 'drums', 'electric guitar', 'piano', 'rock']
['female', 'loud', 'pop', 'female vocal', 'piano', 'slow', 'woman', 'woman singing']
['guitar', 'country', 'pop']
['country']
['no voice', 'guitar', 'country']
['guitar']
['guitar', 'folk', 'acoustic', 'no vocal', 'country', 'pop', 'blues', 'jazzy']
['female', 'pop', 'female vocal', 'singing', 'female vocals']
['female', 'pop', 'female vocal', 'vocal']
['female', 'female vocal', 'female vocals']
['harp', 'flute']
['flute']
['drum', 'flute']
['classical', 'new age', 'no vocal', 'instrumental', 'orchestra', 'slow', 'flute', 'soft']
['jazz', 'ambient', 'new age', 'trumpet', 'drums', 'horn', 'modern', 'flutes', 'sax', 'blues', 'jazzy', 'flute']
['no piano', 'guitar', 'ambient', 'new age', 'middle eastern', 'eastern', 'flutes', 'indian']
[]
[]
[]
[]
['male', 'techno', 'beat']
['techno']
['no voice', 'synth', 'electronic', 'pop', 'techno', 'beat']
['dance', 'techno']
['beats', 'synth', 'fast', 'electro', 'techno', 'beat']
['electronic', 'fast', 'rock', 'techno']
['techno']
['loud', 'electronic', 'fast', 'trance', 'techno']
['male voice', 'rock', 'metal']
['guitar', 'loud', 'rock']
['hard rock', 'guitar', 'fast', 'rock', 'metal']
['loud', 'no vocal', 'weird', 'noise']
['heavy', 'electric', 'loud', 'drums', 'fast', 'industrial', 'hard', 'techno', 'noise', 'metal']
['funky', 'jazz', 'guitar', 'jazzy']
['jazz', 'synth', 'male voice', 'fast', 'rock']
['electronic', 'not classical', 'pop', 'rock', 'techno']
['loud', 'no vocal', 'no vocals', 'indian']
[]
['electronic', 'electronica', 'techno']
['loud', 'fast', 'no vocals', 'rock', 'techno', 'metal']
['loud', 'electronic', 'techno']
['beats', 'synth', 'loud', 'fast', 'rock', 'techno']
['hard rock', 'fast', 'rock', 'techno', 'noise']
['no voice', 'strings', 'drums', 'violin']
[]
['strings', 'not classical', 'violin']
['strings', 'violin']
['violin']
['drums']
[]
['male vocal', 'vocals', 'guitar', 'male voice', 'man', 'vocal', 'rock']
['vocals', 'rock']
['guitar', 'loud', 'man', 'male vocals', 'male', 'vocal', 'rock']
['hard rock', 'male vocal', 'vocals', 'male vocals', 'male', 'vocal', 'rock', 'singing', 'metal']
['guitar', 'rock']
['male vocal', 'male', 'rock', 'singing']
['male vocal', 'guitar', 'male vocals']
['guitar', 'slow', 'male']
['no piano', 'guitar', 'ambient', 'slow']
['duet', 'male vocal', 'slow']
['classical', 'guitar', 'strings', 'classic', 'violin', 'low', 'slow', 'cello', 'soft']
['classical', 'guitar', 'violins', 'strings', 'violin', 'slow', 'cello', 'baroque']
[]
[]
['violin']
['classical', 'medieval', 'fast']
['no voice', 'classical', 'instrumental', 'oboe', 'old', 'baroque']
['guitar']
['guitar', 'no flute', 'slow']
['classical', 'classic', 'piano', 'no singer']
['classical', 'solo', 'classic', 'piano']
['classical', 'solo', 'fast', 'piano', 'soft']
[]
['piano']
['quiet', 'piano', 'slow']
[]
[]
[]
['country']
['classical', 'no vocals', 'oboe']
[]
['no voice', 'classical', 'violin', 'soft']
['classical', 'quiet', 'strings', 'organ', 'violin', 'flute']
['classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'strings', 'no vocal', 'violin']
['classical', 'quiet', 'solo', 'strings', 'string', 'organ', 'violin', 'slow', 'flute', 'soft']
['classical', 'violins', 'strings', 'string', 'violin', 'instrumental', 'cello', 'flute', 'soft']
[]
['classical', 'solo', 'strings', 'bass', 'classic', 'string', 'fast', 'cello']
['violin']
['classical', 'solo', 'violins', 'strings', 'classic', 'fast', 'violin', 'cello']
['cello']
['classical', 'strings', 'violin', 'flute']
['classical', 'orchestra']
[]
['classical', 'strings', 'flute']
['flute']
['guitar', 'man singing', 'pop', 'male vocals']
['rock']
['soft rock', 'male', 'rock', 'singing']
['techno']
[]
['violins', 'strings']
['fast', 'techno', 'beat', 'upbeat']
['beats', 'electronic', 'fast', 'techno', 'beat']
['drums', 'electronic', 'fast', 'techno', 'beat']
['no piano', 'fast', 'techno']
['beats', 'electric', 'electronic', 'fast', 'modern', 'dance', 'voices', 'techno', 'beat']
['violin', 'techno']
['beats', 'electronic', 'fast', 'dance', 'techno', 'beat']
['beats', 'loud', 'electronic', 'fast', 'lol', 'techno']
['electric', 'electronic', 'singing', 'techno']
['synth', 'no singing', 'electronic', 'no vocal', 'electro', 'no vocals', 'techno']
['wind']
['world', 'sitar', 'classical', 'strings', 'harp', 'piano', 'eastern', 'slow', 'indian', 'calm', 'oriental', 'soft']
['sitar', 'strings', 'indian']
['sitar', 'drum', 'drums', 'tribal', 'slow']
['sitar', 'no vocals', 'eastern', 'indian']
['sitar']
['sitar', 'guitar', 'drums', 'eastern', 'indian']
['no voice', 'guitar']
['guitar', 'strings']
['guitar']
[]
['male vocal', 'guitar', 'male voice', 'acoustic', 'male singer', 'man', 'pop', 'slow', 'male', 'vocal', 'singing', 'soft']
['male vocal', 'vocals', 'guitar', 'male', 'voices']
['guitar', 'folk', 'vocal', 'soft']
['guitar', 'rock']
['male vocal', 'male voice', 'hard', 'male', 'vocal', 'rock', 'metal']
['male vocal', 'guitar', 'rock', 'metal']
['guitar', 'drums', 'rock']
['male voice', 'pop', 'vocal', 'rock']
['rock', 'metal']
['hard rock', 'loud', 'no vocals', 'rock', 'metal']
['electronic', 'fast', 'techno']
['synth', 'drums', 'electronic', 'fast', 'dance', 'techno', 'beat']
['electronic', 'techno']
['synth', 'electronic', 'fast', 'electro', 'electronica', 'trance', 'dance', 'techno', 'beat']
['synth', 'electro', 'techno']
['vocals', 'funky', 'drums', 'rock', 'rap']
['rap', 'hip hop']
['rap']
['funk', 'bass', 'male voice', 'drums', 'rap']
['quiet', 'low']
['beats', 'female', 'ambient', 'voice', 'electronic', 'woman']
['world', 'drums', 'india', 'woman']
['female singing', 'foreign', 'female', 'drums', 'woman']
[]
['female', 'ambient', 'female vocal', 'woman']
['no guitar', 'disco', 'dance', 'techno', 'beat']
[]
['electronic', 'fast', 'techno']
[]
['trance', 'dance', 'techno']
['synth', 'percussion', 'electronic', 'no vocal', 'fast', 'no vocals', 'trance', 'techno', 'upbeat']
[]
['drums', 'electronic', 'fast', 'dance', 'techno', 'house']
['electronic', 'dance', 'techno']
['ambient', 'low', 'slow']
['strings', 'slow', 'cello']
[]
['classical', 'ambient', 'strings', 'violin', 'modern', 'slow']
['ambient', 'strings', 'violin', 'sad', 'cello']
['guitar', 'quiet', 'bass', 'no vocal', 'no vocals', 'piano', 'no singer']
['jazz', 'piano', 'blues', 'jazzy']
['piano']
['guitar', 'strings', 'guitars', 'baroque']
['classical', 'guitar', 'quiet', 'no vocals', 'harp', 'slow']
['guitar']
[]
['classical', 'violin', 'cello']
['solo', 'fast', 'violin']
['harpsichord', 'classical', 'guitar', 'strings', 'piano']
[]
['guitar']
['classical', 'solo', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'violin', 'cello']
['classical', 'solo', 'strings', 'classic', 'violin', 'cello']
['no voice', 'harpsichord', 'no vocal', 'fast', 'no vocals']
['harpsichord', 'harpsicord', 'fast', 'piano']
['guitar']
['guitar']
['guitar', 'acoustic', 'acoustic guitar']
['guitar', 'country']
['guitar', 'strings', 'country']
[]
['synth', 'bass', 'electronic', 'electro', 'techno', 'beat']
['electric', 'synth', 'electronic', 'electro', 'techno']
['synth', 'techno']
['electronic', 'techno', 'beat']
['synth', 'electronic', 'techno']
[]
['electric', 'synth', 'electronic', 'fast', 'synthesizer', 'modern', 'techno']
['male vocal', 'foreign', 'classical', 'guitar', 'singing']
['guitar', 'slow']
[]
['rock']
['hard rock', 'male vocal', 'vocals', 'guitar', 'voice', 'loud', 'man singing', 'male', 'rock', 'singing', 'metal']
['electric guitar', 'rock']
['singer', 'harpsichord', 'vocals', 'classical', 'female', 'harpsicord', 'opera', 'slow', 'vocal', 'woman']
[]
['harpsichord', 'classical', 'female', 'guitar', 'quiet', 'female voice', 'voice', 'opera', 'operatic', 'female vocal', 'vocal', 'woman', 'woman singing', 'female vocals', 'soft']
['female vocal']
['harpsichord', 'female opera', 'classical', 'female', 'female voice', 'harpsicord', 'girl', 'opera', 'operatic', 'female vocal', 'vocal', 'woman', 'female vocals', 'female singer', 'baroque']
[]
['electric', 'electronic', 'techno']
['female', 'fast', 'female vocal', 'techno']
[]
['female', 'synth', 'loud', 'pop', 'woman']
['techno']
['vocals', 'female', 'electronic', 'modern', 'pop', 'vocal']
['vocal', 'singing', 'women']
['funky', 'synth', 'slow', 'techno']
['male vocal', 'vocals', 'talking', 'weird', 'dance', 'techno', 'beat', 'rap', 'hip hop']
[]
['techno', 'beat']
[]
[]
[]
['drums']
['beats', 'techno', 'beat']
['electronic', 'fast', 'beat']
['harpsichord', 'classical', 'medieval', 'fast', 'flutes', 'flute']
[]
['guitar']
['guitar', 'slow', 'soft']
['guitar']
['male', 'cello']
['funk', 'rock']
['jazz']
['quiet', 'synth', 'piano']
['female', 'girl', 'female vocal', 'woman', 'english']
['female voice', 'no guitar', 'piano']
['singer', 'female singing', 'vocals', 'female', 'guitar', 'quiet', 'female voice', 'synth', 'voice', 'girl', 'keyboard', 'organ', 'modern', 'pop', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'soft', 'female singer', 'women']
['harpsichord', 'classical', 'guitar', 'strings', 'harp', 'slow']
['classical', 'guitar', 'solo', 'strings', 'harp']
['female', 'female voice', 'voice', 'vocal', 'woman', 'singing', 'female vocals']
['female', 'ambient', 'female vocal', 'mellow', 'piano', 'slow', 'voices']
['vocals']
[]
['female', 'ambient', 'new age', 'female vocal', 'piano']
['techno']
['soft']
['female', 'voice', 'slow', 'vocal', 'woman', 'female vocals', 'soft']
['new age']
['no voice', 'slow', 'techno']
['female', 'quiet', 'ambient', 'electronic', 'female vocal', 'slow', 'woman']
['guitar', 'electric', 'solo', 'no singing', 'no vocals', 'slow']
['guitar']
['guitar', 'bass', 'no vocal', 'no vocals', 'slow', 'calm']
['guitar', 'slow']
['guitar', 'country']
['guitar', 'strings', 'slow']
['guitar', 'drum', 'bass', 'modern', 'pop', 'slow']
[]
['country']
['guitar']
['voice']
[]
['funky', 'guitar', 'electronic']
[]
['guitar', 'voice', 'male voice', 'male singer', 'man', 'male', 'rock', 'singing']
['male vocals', 'male', 'rock']
['male vocal', 'vocals', 'guitar', 'male vocals', 'male', 'rock']
[]
['rock']
['guitar', 'rock', 'singing']
['guitar', 'loud', 'man singing', 'rock']
['opera', 'chant', 'male']
['male', 'choir']
['male vocal', 'classical', 'male voice', 'choral', 'chant', 'choir']
['chorus', 'male vocal', 'choral', 'opera', 'soprano', 'male opera', 'man', 'male vocals', 'male', 'vocal', 'choir']
['electric', 'drum']
['jazz', 'guitar', 'electric', 'synth', 'no vocal', 'no vocals', 'pop', 'piano', 'slow', 'upbeat']
['weird', 'modern', 'piano', 'different']
[]
['vocals', 'guitar']
['vocals']
['guitar', 'voice', 'vocal']
['folk', 'man', 'male', 'vocal']
['guitar', 'different']
['male vocal', 'vocals', 'guitar', 'man', 'male vocals', 'vocal', 'singing']
[]
['guitar']
['ambient', 'new age', 'electronic', 'trance', 'water']
['monks']
['ambient', 'new age', 'modern']
['ambient', 'space', 'electronic', 'electro']
[]
['classical', 'spacey', 'quiet', 'no beat', 'ambient', 'new age', 'synth', 'keyboard', 'electronic', 'no vocal', 'electro', 'no vocals', 'electronica', 'strange', 'fast beat', 'slow', 'techno', 'beat', 'soft', 'water']
['spacey', 'ambient', 'new age', 'synth', 'electronic']
['no piano', 'spacey', 'electric', 'synth', 'electronic']
['vocals', 'man', 'rock']
[]
['guitar', 'string', 'irish']
['bells']
['guitar', 'piano']
['vocals', 'man singing', 'country', 'male', 'rock', 'singing']
['classical', 'piano', 'slow']
['piano', 'slow']
['loud', 'fast', 'heavy metal', 'man', 'hard', 'punk', 'male', 'rock', 'metal']
[]
['wind', 'slow', 'flute']
['flute']
['guitar', 'slow']
['female', 'electronic', 'electro', 'singing']
['pop', 'vocal', 'woman', 'singing']
['rock']
[]
['flute']
['flute']
['classical', 'wind', 'flutes', 'flute']
['flute']
['guitar', 'strings', 'drums', 'indian']
['indian']
['guitar', 'percussion', 'no vocals']
['guitar', 'harp', 'indian']
['female vocal', 'singing']
['vocals', 'choir', 'women']
['women']
[]
['guitar', 'quiet', 'piano', 'slow']
['harpsichord', 'classical', 'guitar', 'harp', 'slow', 'soft']
['guitar', 'quiet', 'strings', 'string', 'classical guitar', 'harp', 'slow', 'soft']
['classical', 'guitar', 'strings']
['sitar', 'no piano', 'classical', 'guitar', 'quiet', 'solo', 'strings', 'acoustic', 'classical guitar', 'harp', 'piano', 'slow', 'cello']
['classical', 'strings', 'violin', 'flute']
['flute']
[]
['violin']
[]
['classical', 'strings', 'violin', 'flute']
['flute']
['violin', 'flute']
['classical', 'violins', 'flute']
[]
['synth']
['keyboard', 'electronic', 'slow']
['jazzy']
['beats', 'drum', 'bass', 'drums', 'electronic', 'no guitar', 'slow', 'rock', 'techno', 'beat']
['electronic', 'beat']
[]
['no strings', 'quiet', 'harp', 'piano']
['piano', 'slow', 'soft']
[]
['piano']
['piano', 'soft']
['piano']
['guitar']
['guitar', 'man', 'male vocals', 'rock']
['male vocal', 'guitar', 'loud']
['male vocal', 'folk', 'male singer', 'man singing', 'country', 'man', 'slow', 'male', 'vocal']
['guitar', 'male voice', 'loud', 'male singer', 'country', 'man', 'slow', 'male']
[]
['guitar', 'country', 'man', 'male']
[]
['hard rock', 'heavy', 'drums', 'rock', 'metal']
['hard rock', 'rock']
[]
['hard rock', 'rock', 'metal']
['loud', 'fast', 'electric guitar', 'rock', 'metal']
['hard rock', 'rock', 'metal']
['heavy metal', 'rock', 'metal']
['indian', 'beat']
[]
['synth', 'drums', 'indian']
['drums', 'tribal']
['slow', 'indian']
['world', 'ambient', 'drums', 'no violin', 'weird', 'tribal', 'indian', 'beat']
['drums', 'tribal', 'indian', 'techno']
['synth']
[]
['no voice', 'strings', 'soft']
['ambient', 'new age', 'middle eastern', 'modern']
['ambient', 'synth', 'drums']
['ambient', 'new age', 'electronic', 'no vocal', 'strange', 'slow', 'calm']
['sitar', 'strings', 'violin', 'slow', 'indian', 'oriental']
['no voice', 'wind', 'ambient', 'new age', 'synth', 'drums', 'electronic']
['harpsichord', 'strings', 'fast']
['harpsichord', 'classical', 'harpsicord', 'fast']
['no vocals']
['guitar', 'electronic', 'weird', 'opera']
['male vocal', 'guitar', 'drums', 'no vocal', 'man', 'male', 'rock', 'singing', 'metal']
['drums', 'fast', 'rock', 'metal']
['male vocal', 'drums', 'heavy metal', 'punk', 'male', 'rock', 'metal']
['hard rock', 'guitar', 'rock', 'metal']
['female', 'vocal']
[]
['vocals', 'classical', 'female', 'female voice', 'opera', 'slow']
['singer', 'female opera', 'classical', 'female', 'guitar', 'opera', 'operatic', 'lute', 'slow', 'vocal', 'singing', 'soft']
['vocals', 'female', 'guitar', 'opera', 'violin', 'woman']
['choral', 'choir']
['chorus', 'choral', 'choir']
[]
['vocals', 'choral', 'choir']
['guitar', 'no singing', 'strings', 'acoustic', 'acoustic guitar']
[]
['guitar', 'male', 'vocal', 'rock']
['vocals', 'rock']
['guitar', 'no singing']
['classical', 'strings', 'classic', 'violin']
['female voice', 'strings', 'opera', 'woman']
['classical', 'strings', 'opera', 'violin']
['harpsichord', 'harpsicord', 'fast']
[]
['jazz', 'bass', 'piano']
['jazz', 'piano', 'jazzy']
['jazz', 'no vocals', 'piano']
['funky', 'jazz', 'weird']
['jazz']
['synth', 'slow']
['jazz', 'drums', 'piano', 'jazzy']
['fast', 'piano', 'slow', 'rock', 'jazzy']
['indian']
['sitar', 'middle eastern', 'indian']
[]
['loud', 'drums', 'fast', 'beat']
['classical', 'female', 'female voice', 'opera', 'female vocal', 'woman', 'woman singing', 'female vocals', 'women']
['male vocal', 'male voice']
['chant']
['loud', 'choral', 'chant', 'male', 'choir']
[]
['chant', 'choir']
['male voice', 'chanting', 'choral', 'chant', 'slow', 'male', 'vocal']
['vocals', 'men', 'chanting', 'choral', 'opera', 'male opera']
['new age', 'drum', 'drums', 'electronic', 'no vocal', 'fast', 'trance', 'dance', 'techno', 'beat', 'upbeat']
['no voice', 'electronic', 'no vocal', 'techno', 'beat']
['electronic', 'dance', 'techno']
[]
['synth', 'electronic', 'fast', 'dance', 'techno']
['electronic', 'no vocal', 'techno']
['funky', 'synth', 'electronic', 'techno']
[]
['harpsichord', 'classical', 'guitar', 'strings']
['opera', 'fast']
['opera']
['solo', 'piano', 'slow', 'piano solo']
['classical', 'no vocals', 'piano', 'piano solo']
['piano']
['solo', 'piano']
['piano']
['solo', 'new age', 'piano', 'slow', 'piano solo']
['synth', 'electronic']
['electronic']
['electronic', 'dance', 'techno']
['techno']
['electronic', 'techno']
['piano', 'techno']
['electronic', 'fast', 'electronica', 'techno']
['drum', 'drums']
[]
['drums', 'jungle', 'woman', 'beat']
['beats', 'drum', 'drums', 'electronic', 'indian', 'woman']
['percussion', 'drums', 'tribal', 'jungle', 'vocal', 'indian', 'beat']
['synth', 'drums', 'vocal', 'indian', 'beat']
['drums', 'tribal']
['drums']
['drum', 'drums', 'techno']
['ambient', 'new age', 'percussion', 'drums', 'no guitar', 'tribal', 'jungle', 'indian', 'techno']
['bongos', 'beats', 'ambient', 'drum', 'drums', 'weird', 'tribal', 'jungle', 'beat']
['beat']
['drums', 'slow', 'rock']
['vocals', 'soft rock', 'guitar', 'pop']
[]
['guitar', 'male vocals', 'rock']
['spacey', 'no beat', 'ambient', 'new age', 'electronic', 'electro', 'techno']
[]
['techno', 'beat']
[]
[]
['no guitar', 'electronica']
[]
['synth', 'loud', 'electronic', 'no vocal', 'weird', 'fast', 'electro', 'instrumental', 'trance', 'modern', 'pop', 'dance', 'techno', 'beat']
['ambient', 'new age', 'synth', 'electronic', 'no vocal', 'fast', 'instrumental', 'techno', 'beat']
[]
['ambient', 'electronic', 'fast', 'dance', 'techno', 'beat']
['ambient', 'synth', 'strings', 'loud', 'organ']
['guitar', 'talking', 'rock']
['rock']
['hard rock', 'vocals', 'men', 'guitar', 'fast', 'male vocals', 'punk', 'male', 'rock', 'singing', 'beat', 'metal']
['loud', 'rock']
['classical', 'solo', 'male voice', 'opera', 'male opera', 'man', 'male']
['guitar', 'quiet', 'slow']
[]
[]
['guitar']
['classical', 'strings', 'violin', 'slow', 'no drums', 'cello']
['guitar', 'electric guitar', 'slow']
['jazzy']
['jazz', 'no flute', 'sax', 'jazzy']
['jazz', 'sax', 'slow', 'blues', 'jazzy']
['guitar', 'slow', 'clapping', 'beat']
[]
[]
['classical', 'violins', 'violin']
['opera']
['classical', 'piano', 'slow', 'piano solo']
['classical', 'piano']
['no voice', 'ambient', 'synth', 'strings', 'electronic', 'no vocals', 'instrumental', 'slow', 'techno', 'beat']
['drum', 'electronic', 'techno', 'beat']
[]
['beats', 'synth', 'electronic', 'electro', 'no vocals', 'slow', 'beat']
[]
['ambient', 'drums', 'electronic', 'no vocal', 'slow', 'techno']
['ambient', 'synth', 'electronic', 'no vocals', 'techno']
[]
['plucking', 'guitar', 'repetitive', 'weird']
['guitar', 'strings']
['guitar']
['guitar', 'fast']
['guitar', 'no violin']
['guitar', 'drums']
['jazz', 'guitar', 'strings', 'instrumental', 'jazzy']
['guitar', 'strings', 'no vocals']
['piano']
[]
[]
['chimes', 'electric', 'techno']
[]
['synth', 'electronic', 'strange', 'no flute', 'techno']
['electronic', 'techno']
['spacey', 'electronic', 'fast', 'electro', 'modern', 'techno']
['funky', 'jazz', 'drums', 'electronic', 'organ', 'pop', 'piano', 'slow', 'jazzy']
['no voices', 'jazzy']
['soft rock', 'jazz', 'drums', 'modern', 'piano', 'slow', 'rock', 'soft']
[]
['slow', 'soft']
['keyboard', 'electronic', 'mellow', 'soft']
['funky', 'jazz', 'keyboard', 'drums', 'electronic', 'fast', 'piano']
['jazz', 'guitar']
['guitar']
['jazz', 'guitar', 'blues']
['quiet', 'ambient', 'synth', 'airy', 'low', 'slow', 'flute', 'soft', 'choir']
['ambient', 'synth', 'soft']
['no vocals']
['no piano', 'guitar', 'solo', 'slow']
['guitar', 'sad', 'slow']
['classical', 'strings', 'classic', 'violin', 'orchestra']
['classical', 'strings', 'classic', 'violin']
['classical']
[]
['classical', 'strings', 'classic', 'violin']
[]
['classical', 'strings']
['classical', 'quiet', 'violins', 'strings', 'classic', 'violin', 'orchestra']
['classical', 'strings', 'orchestra']
['jazz', 'guitar', 'bass', 'drums']
['vocals', 'jazz', 'guitar', 'happy', 'voice', 'drums', 'no vocal', 'fast', 'vocal', 'jazzy', 'beat', 'rap']
['beat']
[]
[]
['fast', 'beat']
['chorus', 'choral', 'male', 'voices', 'choir']
['classical', 'strings']
['guitar']
['guitar', 'solo', 'string', 'slow']
['harpsichord', 'classical', 'strings', 'classic', 'irish', 'old', 'flutes', 'flute']
['classical', 'flute']
['synth', 'electronic']
['electronic', 'strange', 'man', 'male vocals']
['new age', 'pop']
['beats', 'funk', 'electronic', 'techno']
['classical', 'strings', 'loud', 'classic', 'string', 'violin', 'piano', 'sad', 'slow', 'cello']
['flute']
['classical', 'strings', 'violin']
['classical', 'opera', 'woman']
['no guitar', 'opera']
['oboe', 'slow']
['female opera', 'classical', 'female', 'female voice', 'opera', 'vocal', 'woman', 'female singer']
['opera']
['opera']
['harpsichord', 'classical', 'guitar', 'no singing', 'strings', 'harpsicord', 'medieval', 'acoustic', 'classical guitar', 'no vocals', 'lute', 'slow', 'baroque']
['female', 'fast', 'singing']
['male voice', 'pop', 'male', 'rock']
['classical', 'guitar', 'solo', 'folk', 'strings', 'string', 'classical guitar']
['drone', 'slow']
[]
['ambient', 'electronic', 'low']
['no voice', 'ambient', 'new age', 'synth', 'drums', 'electronic', 'weird', 'trance', 'modern', 'techno', 'beat']
['ambient', 'new age', 'drums', 'electro', 'techno', 'beat']
['loud', 'drums', 'electronic', 'fast', 'techno']
['choral']
['chorus', 'choral', 'vocal', 'choir']
[]
['female opera', 'classical', 'female', 'voice', 'opera']
['classical', 'opera']
['classical', 'female', 'violins', 'female voice', 'voice', 'strings', 'classic', 'opera', 'violin', 'vocal', 'woman', 'baroque']
['opera', 'violin']
['opera', 'soprano', 'violin', 'female vocal', 'female singer']
['female voice', 'opera']
['classical', 'female', 'female voice', 'strings', 'opera', 'violin', 'operatic', 'woman']
[]
[]
['beat']
['vocals', 'beats', 'female', 'vocal', 'woman', 'techno', 'beat']
['ambient', 'no guitar', 'talking', 'beat']
['female', 'female voice', 'drums', 'vocal']
['female', 'female voice', 'drums', 'female vocal', 'singing', 'beat']
['classical', 'guitar', 'no vocal']
['classical', 'guitar', 'strings', 'classical guitar', 'lute', 'piano']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'medieval', 'harp', 'lute', 'piano', 'slow']
['guitar']
['guitar']
['guitar', 'strings', 'no vocals', 'piano', 'soft']
['no vocals', 'piano']
['solo', 'happy', 'bells', 'piano', 'upbeat']
['piano']
[]
['organ']
['harpsichord', 'instrumental', 'flutes', 'flute']
['no vocal', 'flute']
['classical', 'flute']
['guitar', 'drums', 'rock']
[]
[]
[]
['funky', 'jazz', 'guitar', 'synth', 'funk', 'drums', 'electronic', 'fast', 'country', 'electro', 'pop', 'rock']
['jazz', 'drum', 'pop']
['beats', 'guitar', 'synth', 'drums', 'electronic', 'weird', 'mellow']
['flute', 'beat']
['jazz', 'flute']
['electronica', 'flute']
['guitar', 'piano', 'slow']
['classical', 'guitar', 'solo', 'sad', 'slow', 'soft']
['guitar', 'slow']
['guitar', 'solo', 'slow']
['classical', 'guitar', 'slow']
['harpsichord', 'classical', 'strings', 'violin', 'irish', 'instrumental', 'indian']
[]
['classical', 'female', 'violins', 'strings', 'violin', 'female vocal', 'woman', 'singing']
[]
['female', 'voice', 'woman']
['classical', 'violins', 'strings', 'medieval', 'string', 'fast', 'violin', 'piano']
['classical', 'strings', 'violin']
['no voice', 'beats', 'guitar', 'drum', 'drums', 'beat']
['female', 'funk', 'female vocal', 'woman']
['female', 'voice']
['funk', 'voice']
['funky', 'jazz', 'guitar', 'funk', 'bass', 'rock']
['drums', 'rock']
['rock', 'metal']
['hard rock', 'heavy', 'loud', 'drums', 'rock', 'metal']
['hard rock', 'loud', 'rock', 'metal']
['classical', 'violin']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'violin', 'no flute']
['classical', 'violins', 'strings', 'classic', 'violin', 'no vocals']
['guitar', 'drum', 'drums']
[]
['drums']
['drum', 'drums', 'singing']
['woman']
['vocals', 'female', 'female voice', 'electronic', 'no guitar', 'electro', 'pop', 'woman', 'singing', 'different', 'techno']
['beats', 'drums', 'electronic', 'electro', 'piano', 'woman', 'beat']
['no voice', 'synth', 'electronic', 'no vocals', 'slow', 'beat']
['guitar', 'electric guitar', 'rock']
['punk', 'rock']
['voices']
['synth', 'drums', 'slow', 'beat']
['synth', 'drums', 'electronic', 'beat']
['synth', 'bass', 'electronic', 'electronica', 'beat']
['drums']
['piano', 'beat']
[]
['guitar', 'solo', 'strings']
['guitar', 'folk', 'jazzy']
['no piano', 'classic']
[]
['classical', 'violins', 'strings', 'classic', 'violin', 'quick']
['classical']
['no voice', 'classical', 'strings', 'classic', 'violin', 'different']
['violin']
[]
['guitar', 'strings', 'light']
['guitar']
['guitar', 'male voice', 'talking', 'man', 'male', 'vocal', 'rock']
['guitar', 'male', 'rock']
['rock']
['classical', 'guitar']
['sitar', 'drums', 'india']
['slow']
['guitar', 'strings', 'no vocal']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'acoustic', 'piano', 'slow']
['no piano', 'guitar', 'piano']
['quiet', 'synth']
['male voice', 'man', 'pop']
[]
['vocals']
['modern']
['singing']
['vocals', 'electronic', 'pop', 'male', 'vocal', 'rock', 'singing']
['vocal', 'rock']
[]
['no voice', 'guitar', 'acoustic', 'country', 'no vocals', 'no flute']
['classical', 'guitar']
['guitar']
['repetitive', 'drums', 'trance', 'techno', 'beat']
['beats', 'fast', 'dance', 'techno', 'beat']
['drums', 'techno']
['drums', 'electronic']
['guitar']
['no piano', 'synth', 'male vocals', 'vocal', 'rock']
[]
['female', 'synth', 'drums', 'fast', 'female vocal']
['reggae', 'female vocals', 'beat']
['female', 'female voice', 'girl', 'pop']
['female', 'female vocals']
[]
['synth', 'electronic', 'fast', 'electro', 'techno', 'beat']
['electronic', 'fast', 'modern', 'fast beat', 'rock', 'techno']
[]
['ambient', 'bass', 'low', 'deep', 'slow']
['loud', 'drums', 'deep']
[]
['drone']
['male voice', 'talking', 'voices', 'techno']
['electronic', 'techno']
['electronic', 'dark']
['no strings', 'drums', 'techno']
['space', 'electronic']
['techno']
['fast', 'techno']
['no vocal', 'fast', 'techno']
['electronic', 'fast', 'techno']
['no piano', 'electronic', 'electro', 'techno']
['synth', 'electronic', 'fast', 'techno']
['synth', 'electronic', 'fast', 'trance', 'dance', 'techno']
['electric', 'fast', 'techno', 'beat']
['synth', 'electronic', 'fast', 'disco', 'rock', 'dance', 'techno', 'house']
['synth', 'electronic', 'fast', 'techno', 'beat']
[]
['fast', 'techno']
['electronic', 'fast', 'techno']
['beats', 'electronic', 'fast', 'rock', 'dance', 'techno', 'house', 'beat']
['fast', 'electro', 'techno']
['beats', 'electronic', 'fast', 'dance', 'techno', 'upbeat']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'medieval', 'fast', 'no vocals', 'piano', 'baroque']
['harpsichord', 'fast']
['chanting', 'monks']
[]
['choral', 'male', 'vocal']
[]
['chorus', 'men']
['classical', 'violin']
[]
['female opera', 'classical', 'female', 'violins', 'strings', 'opera', 'violin', 'slow', 'woman']
['female voice', 'voice', 'strings', 'opera', 'soprano', 'violin', 'female singer']
[]
['vocals', 'guitar', 'singing']
['male vocal', 'guitar', 'male vocals', 'slow', 'soft']
['singer', 'male vocal', 'vocals', 'male voice', 'male singer', 'man singing', 'slow', 'male', 'vocal', 'singing']
[]
[]
['violin', 'pop']
[]
['strings', 'piano']
[]
[]
['guitar', 'strings', 'weird', 'fast']
[]
['harp']
['harpsichord']
['harpsichord', 'no piano', 'guitar', 'strings', 'fast']
['guitar', 'strings', 'no vocals', 'harp']
['harp']
['guitar', 'solo', 'classical guitar', 'harp', 'spanish', 'slow']
['guitar', 'spanish']
['guitar', 'solo', 'strings', 'slow', 'not opera']
['guitar']
[]
['harpsichord', 'classical', 'guitar', 'quiet', 'strings', 'harp', 'lute', 'slow', 'oriental']
['guitar', 'piano', 'slow']
['classical', 'guitar', 'piano', 'slow']
['harpsichord', 'classical', 'guitar', 'strings', 'classical guitar', 'violin', 'lute', 'slow', 'no drums', 'baroque']
['classical', 'guitar', 'solo']
['classical', 'guitar', 'solo', 'acoustic', 'classic', 'string', 'classical guitar', 'slow']
[]
['bells']
['electronic', 'techno', 'beat']
['techno']
['beats', 'weird', 'instrumental']
[]
['techno']
['guitar', 'rock', 'metal']
['drums', 'fast', 'punk', 'rock', 'metal']
['heavy', 'fast', 'rock', 'metal']
[]
['classical', 'guitar', 'quiet', 'ambient', 'electronic', 'no vocal', 'piano', 'slow', 'no drums']
['spacey', 'ambient', 'strings']
['no voice', 'classical', 'ambient', 'no singing', 'strings', 'violin', 'strange', 'orchestra', 'slow', 'scary', 'soft']
['classical', 'ambient', 'new age', 'no flute']
['no voice', 'no vocals']
['ambient', 'slow']
['ambient', 'classic', 'no vocal', 'slow', 'soft']
['classical', 'no beat', 'ambient', 'orchestral', 'slow']
['techno']
['loud', 'techno']
['heavy', 'synth', 'loud', 'electronic', 'fast', 'industrial', 'rock', 'techno', 'metal']
['loud', 'electronic', 'techno']
['loud', 'electronic', 'fast', 'techno', 'beat']
['electric', 'fast', 'electro', 'techno']
['male vocal', 'pop', 'rock', 'singing']
[]
[]
[]
['electronic']
['electronic', 'no violin', 'fast', 'modern', 'techno']
['electronic', 'fast', 'rock', 'techno', 'house', 'beat']
['guitar', 'electronic']
['funk', 'drums', 'electronic', 'fast', 'rock', 'dance', 'techno', 'beat']
[]
[]
[]
['guitar', 'soft']
['guitar', 'soft']
['guitar', 'solo', 'ambient', 'slow', 'soft']
['vocals', 'classical', 'female', 'guitar', 'quiet', 'female voice', 'opera', 'woman', 'female vocals', 'not english']
['opera', 'woman']
['female', 'voice', 'no guitar', 'opera', 'woman']
['opera', 'old', 'woman']
['female']
['no piano', 'classical', 'female', 'female voice', 'opera', 'female vocal', 'slow', 'woman', 'singing']
['harpsichord', 'harpsicord', 'woman']
['harpsichord', 'female', 'strings', 'harpsicord', 'classic', 'opera', 'woman', 'singing']
['harpsichord', 'classical', 'female', 'opera', 'soprano', 'vocal', 'woman']
['harpsichord', 'opera', 'operatic', 'vocal']
['instrumental', 'piano', 'slow', 'soft']
['no vocal', 'piano', 'slow']
['piano']
['chimes', 'ambient', 'strings', 'bells', 'piano', 'slow']
['piano']
['no voice', 'guitar', 'loud', 'piano', 'rock']
['guitar', 'loud', 'drums', 'fast', 'rock', 'guitars', 'metal']
['guitar', 'loud', 'drums', 'fast', 'rock', 'metal']
['guitar', 'electric guitar', 'rock']
['guitar', 'fast', 'rock']
['rock']
['drums', 'fast', 'electric guitar', 'piano', 'rock']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'string']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'baroque']
['funky']
['trumpet', 'fast', 'dance']
['drums', 'fast', 'beat']
['voices', 'beat']
['vocals', 'foreign', 'guitar', 'synth', 'loud', 'weird', 'male singer', 'synthesizer', 'pop', 'male vocals', 'spanish', 'male', 'vocal', 'indian', 'techno', 'not english']
[]
[]
[]
['beats', 'electronic', 'not classical', 'electro', 'techno']
[]
['sitar', 'guitar', 'strings', 'fast', 'eastern', 'indian']
[]
['indian']
['sitar', 'fast', 'indian']
['quiet', 'electronic']
['ambient', 'no vocals']
['talking', 'beat', 'rap']
['drum', 'bass', 'drums']
['male vocal', 'vocals', 'voice', 'bass', 'drums', 'man', 'slow', 'beat']
['guitar']
['male voice', 'pop', 'rock']
['male voice', 'male']
[]
[]
['guitar', 'percussion', 'no vocal', 'slow']
[]
['female voice', 'electronic', 'fast', 'disco', 'dance', 'techno', 'beat']
['fast']
['beats', 'loud', 'electronic', 'fast', 'techno']
['synth', 'drum']
[]
['drums']
['female', 'guitar', 'pop', 'woman', 'female singer']
['female', 'guitar', 'voice', 'pop', 'female vocal', 'vocal', 'woman', 'female vocals', 'female singer']
['ambient', 'drums', 'female vocals']
['guitar', 'ambient', 'new age', 'synth', 'no vocals', 'slow']
['duet']
['duet']
['duet', 'vocals', 'female', 'choral', 'opera', 'woman', 'choir', 'women']
['chant']
['vocals', 'foreign', 'voice', 'vocal', 'female vocals']
[]
['synth']
['male vocal', 'voice', 'modern', 'pop', 'male vocals', 'male', 'vocal']
['synth', 'male voice', 'drums', 'pop', 'male vocals', 'singing']
['loud', 'drums', 'fast', 'rock']
['loud', 'rock']
['synth', 'no vocal', 'fast', 'no vocals', 'strange', 'pop', 'beat']
['classical', 'choral', 'opera', 'chant', 'slow', 'vocal', 'choir']
['chorus', 'choral', 'opera', 'slow', 'choir']
['choir']
['slow']
[]
['jazz', 'guitar', 'slow', 'guitars']
['jazz', 'guitar', 'blues']
['guitar']
['guitar', 'drums', 'slow']
['male', 'rock', 'singing']
['male vocal', 'male voice', 'pop', 'male', 'vocal', 'rock']
['vocals', 'loud', 'pop']
['male vocal', 'guitar', 'drums', 'male singer', 'blues', 'vocal']
['male']
['loud', 'rock']
['drums', 'piano']
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'slow', 'guitars', 'soft']
['male vocal', 'guitar', 'male vocals', 'vocal']
['male vocal', 'vocals', 'guitar', 'synth', 'pop', 'slow', 'male']
['soft rock', 'guitar', 'pop', 'male vocals', 'slow', 'male', 'singing']
['ambient', 'synth', 'electronic', 'techno']
['synth', 'no vocal']
['electronic', 'fast', 'electronica', 'techno']
['fast', 'techno']
['synth', 'electronic', 'fast', 'dance', 'techno', 'beat', 'upbeat']
['electric', 'synth', 'electronic', 'fast', 'electro', 'trance', 'techno', 'house']
['fast', 'techno']
[]
['female']
['guitar']
['guitar']
[]
['male vocals']
[]
['vocals', 'piano', 'singing']
['drone']
['sitar', 'funky', 'percussion', 'drum', 'drums', 'tribal', 'indian']
['beats', 'banjo', 'loud', 'drums', 'bells', 'eastern', 'indian', 'beat']
['drum', 'drums', 'beat']
['indian']
['vocals', 'classical', 'female', 'female voice', 'voice', 'opera', 'vocal', 'female vocals', 'choir']
['male vocal', 'guitar', 'male voice', 'man']
['male vocal', 'guitar', 'male voice', 'opera', 'man singing', 'male vocals']
['male vocal', 'guitar', 'male voice', 'male singer', 'man', 'lute', 'male', 'vocal']
['male vocal', 'guitar', 'no vocal', 'male singer']
['guitar']
['male vocal', 'horns', 'guitar', 'trumpet', 'male voice', 'male singer', 'country', 'man', 'pop', 'male vocals', 'sax', 'male', 'vocal', 'singing']
['vocals', 'guitar']
['vocals', 'guitar', 'voice', 'slow', 'vocal', 'singing', 'flute']
['clarinet', 'female', 'guitar', 'slow', 'vocal', 'singing', 'voices', 'flute', 'choir']
['piano']
['solo', 'piano', 'slow']
['piano']
['classical', 'strings', 'violin']
[]
['opera', 'oboe']
['male vocal', 'classical', 'male voice', 'opera', 'violin', 'male']
['horns', 'classical', 'violin', 'oboe']
['woodwind', 'classical', 'violins', 'strings', 'classic', 'opera', 'violin', 'oboe', 'slow', 'vocal']
['classical', 'opera', 'man']
['classical', 'violins', 'strings', 'classic', 'opera', 'violin', 'male opera', 'oboe', 'orchestra', 'vocal', 'singing', 'baroque']
['male vocal', 'classical', 'strings', 'opera', 'operatic', 'oboe', 'male', 'vocal', 'choir']
['classical', 'violins', 'opera', 'man', 'male', 'vocal']
['classical']
['loud', 'piano']
['male vocal', 'vocals', 'guitar', 'male voice', 'male singer', 'country', 'man', 'pop', 'piano', 'male vocals']
['country', 'pop', 'piano']
['guitar', 'country', 'male', 'rock']
['classical', 'classic', 'piano']
['classical', 'piano']
['classical', 'classic', 'piano']
['female', 'synth', 'electronic', 'weird', 'modern', 'female vocal', 'slow', 'singing', 'female vocals']
[]
['drums', 'strange', 'rock']
['heavy', 'loud', 'drums', 'no flute', 'rock', 'noise']
['piano']
['piano', 'vocal']
['guitar', 'strings', 'no vocal', 'piano']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'heavy metal', 'hard', 'rock', 'metal']
[]
['drums', 'electronic', 'techno', 'beat']
['fast', 'dance', 'techno']
['funky', 'synth', 'drum', 'drums', 'electronic', 'fast', 'electro', 'disco', 'dance', 'techno', 'house', 'beat', 'upbeat']
['electronic', 'techno']
['techno', 'beat']
['male voice', 'man', 'male', 'vocal', 'rock']
['female opera', 'female', 'strings', 'opera', 'slow', 'vocal', 'woman']
['classical', 'female', 'opera', 'operatic', 'female vocal', 'woman', 'singing']
['opera', 'woman']
['classical', 'female', 'violins', 'strings', 'opera', 'operatic', 'vocal', 'woman', 'woman singing', 'singing']
['no piano', 'classical', 'female', 'opera', 'soprano', 'female vocal', 'orchestra', 'vocal']
['classical', 'strings', 'opera']
['opera']
['classical', 'opera']
[]
['hard rock', 'guitar', 'loud', 'drums', 'rock', 'singing']
['drums', 'no vocal', 'no vocals', 'beat']
['ambient', 'new age', 'drums', 'no vocal', 'weird', 'tribal', 'techno', 'soft']
[]
['ambient', 'drums', 'beat']
[]
['ambient', 'drums', 'weird']
['guitar', 'strings', 'slow']
['no piano', 'guitar', 'quiet', 'strings', 'instrumental', 'slow']
['guitar']
[]
[]
['no piano', 'electronic', 'electro', 'techno', 'beat']
['synth', 'drums', 'electronic', 'pop', 'beat']
['electric', 'synth', 'no singing', 'electronic', 'echo', 'beat']
['electronica', 'deep']
[]
['new age', 'slow']
['harpsichord']
['harpsichord', 'classical', 'harpsicord', 'medieval', 'fast']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'old']
['harpsichord', 'classical', 'harpsicord', 'fast']
[]
['harpsichord', 'classical', 'piano']
['violins', 'folk', 'fast', 'country', 'violin', 'irish', 'fiddle']
['banjo', 'country', 'violin', 'fiddle']
['country', 'irish', 'celtic', 'fiddle']
[]
['world', 'vocals', 'female', 'voice', 'chanting', 'vocal', 'voices', 'choir']
['foreign', 'indian']
['tribal']
['bongos', 'beats', 'percussion', 'drum', 'drums', 'tribal', 'beat']
['vocals', 'drums', 'tribal', 'singing', 'choir']
['vocals', 'voice', 'drums', 'tribal', 'chant', 'eastern', 'singing', 'choir']
['chorus', 'men', 'chanting', 'choral', 'opera', 'chant', 'male', 'choir']
['weird', 'electro', 'noise']
['techno']
[]
['loud', 'electronic', 'fast', 'trance', 'techno', 'beat']
['drum', 'fast', 'techno', 'beat']
['weird', 'modern']
['guitar', 'no vocals']
['guitar', 'rock']
['male vocal', 'solo', 'man', 'male vocals', 'male', 'vocal', 'rock']
['guitar', 'fast', 'rock']
['guitar']
['male vocal', 'vocals', 'soft rock', 'guitar', 'voice', 'drums', 'weird', 'male singer', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'rock', 'metal']
['choral', 'opera', 'choir']
['choral', 'vocal', 'choir']
['chorus', 'classical', 'choral', 'opera', 'woman', 'voices', 'choir']
['talking', 'spanish']
['male vocal', 'male voice', 'male singer', 'spanish', 'male']
['horns', 'loud', 'rock']
['fast', 'spanish', 'jazzy']
[]
['guitar', 'quiet', 'piano', 'slow', 'soft']
['classical', 'guitar']
[]
[]
['classical', 'quiet', 'no beat', 'solo', 'wind', 'no vocal', 'no vocals', 'bells', 'oboe', 'flutes', 'slow', 'flute', 'soft']
['quiet', 'flute', 'soft']
['guitar', 'quiet', 'harp', 'piano', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'lute', 'piano', 'slow', 'calm', 'soft']
[]
['no voice', 'guitar', 'quiet', 'solo', 'harp', 'piano', 'different', 'soft']
['piano']
['classical', 'guitar', 'piano']
['no voice', 'classical', 'no voices', 'guitar', 'quiet', 'classical guitar', 'piano', 'sad', 'slow', 'soft']
['classical', 'harp', 'piano']
['classical', 'guitar', 'quiet', 'lol', 'harp', 'piano', 'slow', 'soft']
['beats', 'electronic', 'techno', 'beat']
[]
['no piano', 'guitar', 'weird', 'fast', 'electronica', 'techno']
['no singing', 'electronic', 'techno']
[]
[]
['instrumental', 'soft']
['ambient', 'synth', 'strings', 'electronic', 'piano']
[]
['ambient']
['electronic', 'slow']
['synth']
['violin']
[]
['bongos', 'folk', 'drum', 'strings', 'medieval', 'string', 'drums', 'violin', 'irish', 'celtic', 'fiddle']
['violin', 'fiddle']
['jazz', 'trumpet', 'drums', 'mellow', 'sax', 'beat']
['voice', 'pop', 'male vocals', 'male', 'vocal']
['male vocal', 'guitar', 'drums', 'male singer', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing', 'beat']
['man']
['male vocal', 'country', 'man', 'rock']
['jazz', 'ambient', 'jazzy']
['solo', 'no vocals', 'indian', 'oriental']
[]
['guitar', 'eastern']
['no voice', 'plucking', 'guitar', 'strings', 'no vocal', 'no vocals', 'instrumental', 'oriental']
[]
[]
['plucking', 'guitar', 'no singing', 'strings', 'string', 'no vocal', 'low', 'slow']
['vocals', 'female voice', 'voice', 'woman']
['vocals', 'female', 'choral', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals', 'voices', 'women']
['vocals', 'voice', 'slow', 'singing']
['classic', 'violin']
['ambient', 'strings', 'violin', 'slow']
['violin']
['classical', 'strings', 'violin', 'viola', 'slow', 'cello', 'soft']
['quiet', 'violin', 'slow', 'calm']
['violin', 'cello']
[]
[]
[]
['guitar', 'ambient', 'no drums']
['guitar', 'acoustic', 'country']
['guitar']
['dance', 'techno', 'beat']
['fast']
['loud', 'fast', 'indian', 'dance', 'beat']
['beats', 'loud', 'drums', 'electronic', 'fast', 'tribal', 'eastern', 'indian', 'dance', 'techno', 'beat']
['sitar', 'loud', 'fast']
['clapping']
['sitar', 'beats', 'foreign', 'guitar', 'strings', 'drums', 'fast', 'eastern', 'indian', 'beat', 'upbeat', 'quick']
['guitar', 'drums', 'fast', 'indian', 'dance', 'flute']
['drums', 'fast', 'beat']
['fast']
[]
['guitar', 'folk', 'country', 'blues']
['male vocal', 'guitar', 'country', 'pop', 'male']
['male vocal', 'man', 'slow']
['male vocal', 'guitar', 'folk', 'male voice', 'country', 'vocal']
['guitar']
['male vocal', 'guitar', 'no beat', 'soft']
['classical', 'solo', 'classic', 'piano']
['classical', 'piano', 'piano solo']
['drums']
['vocals', 'drums', 'vocal', 'singing']
['female', 'medieval', 'opera', 'female vocal', 'vocal', 'woman', 'woman singing']
['medieval']
['vocals', 'female', 'no vocal', 'no vocals', 'irish', 'indian']
['vocals', 'foreign', 'female', 'female voice', 'drums', 'opera', 'spanish', 'vocal', 'woman', 'woman singing', 'female vocals', 'not english']
['classical', 'guitar', 'strings', 'harp', 'lute', 'piano', 'slow', 'soft']
['guitar']
['guitar']
['classical', 'guitar', 'strings', 'medieval', 'instrumental', 'piano', 'spanish', 'slow']
['singer', 'vocals', 'guitar', 'drums', 'pop', 'male vocals', 'male', 'rock', 'soft']
['rock']
['sitar', 'indian', 'oriental']
['sitar', 'guitar']
['sitar', 'guitar', 'no singing', 'drums', 'no vocals']
['sitar', 'spanish']
['sitar', 'guitar', 'fast', 'indian']
['guitar', 'electric', 'rock']
['vocals', 'loud', 'pop', 'male vocals', 'rock']
['male vocal', 'vocals', 'guitar', 'male voice', 'male', 'vocal', 'rock', 'singing']
[]
['male vocal', 'male', 'vocal', 'techno']
['male vocal', 'beats', 'fast', 'pop']
['duet', 'male vocal', 'vocals', 'beats', 'fast', 'pop', 'techno']
['pop']
['pop', 'different']
['vocal']
['ambient', 'new age', 'synth', 'no guitar', 'no drums', 'techno']
['loud', 'man', 'rock']
['rock']
['male', 'rock']
['classical', 'quiet', 'solo', 'piano', 'slow', 'soft']
['piano', 'slow']
['classical', 'classic', 'piano']
['classical', 'piano', 'soft']
['classical', 'solo', 'no flute', 'piano', 'slow', 'soft']
['classical', 'quiet', 'piano', 'soft']
['not opera']
['woman']
['female', 'female vocal']
['woman']
['vocals', 'drums', 'fast', 'indian']
['male vocal', 'vocals', 'beats', 'foreign', 'male voice', 'reggae', 'trance', 'man', 'male vocals', 'male', 'vocal', 'rap']
['ambient', 'drums', 'electronic', 'fast', 'no singer', 'techno']
[]
['ambient', 'synth', 'slow']
['beat']
['organ', 'slow']
['bass', 'drums', 'no vocal', 'no vocals', 'instrumental', 'piano', 'slow', 'techno', 'beat']
[]
['ambient', 'synth', 'airy', 'bass', 'electronic', 'weird', 'slow', 'no drums']
['ambient', 'synth', 'drum', 'keyboard', 'organ', 'piano', 'slow', 'jazzy', 'beat', 'soft']
['pop', 'dance', 'singing', 'techno']
['woman', 'dance', 'techno', 'beat']
['vocals', 'female', 'techno']
['choral', 'choir']
['choir']
['men', 'choral', 'chant', 'male', 'monks']
['choral', 'chant', 'male', 'monks', 'choir']
[]
[]
[]
['choral', 'opera', 'choir']
['choir']
['classical', 'quiet', 'violins', 'happy', 'strings', 'string', 'violin', 'orchestra']
['clarinet', 'classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'oboe', 'flute']
['no voice', 'clarinet', 'classical', 'wind', 'strings', 'fast', 'flute']
['classical', 'strings', 'violin', 'flute', 'baroque']
['no voice', 'clarinet', 'classical', 'violins', 'strings', 'classic', 'string', 'violin', 'oboe', 'orchestra', 'slow', 'flute']
[]
[]
['quiet', 'wind', 'ambient']
['classical', 'strings', 'string', 'violin', 'slow', 'cello']
['slow', 'indian']
['slow', 'cello']
['classical']
['classical', 'strings', 'not rock', 'violin']
['ambient', 'synth', 'strings', 'classic', 'slow', 'soft']
['silence', 'guitar', 'quiet', 'slow', 'soft']
[]
['vocal', 'female vocals', 'choir']
[]
['female', 'voice']
[]
['female', 'female vocal', 'woman', 'female vocals']
[]
['chimes', 'synth', 'no violin', 'bells', 'slow']
['female', 'female vocal', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'soft']
['female', 'female voice', 'voice', 'female vocal', 'woman', 'female vocals']
['female']
[]
[]
['female voice', 'pop', 'beat']
['vocals', 'female', 'female voice', 'ambient', 'new age', 'drums', 'electronic', 'modern', 'pop', 'female vocal', 'slow', 'female vocals', 'not opera']
['quiet', 'ambient', 'slow', 'calm', 'water']
[]
[]
['male vocal', 'foreign', 'guitar', 'folk', 'male vocals', 'spanish', 'vocal', 'indian']
['sitar', 'man', 'indian']
['guitar', 'folk', 'voice', 'vocal', 'not english']
['guitar']
['singer', 'foreign', 'voice', 'man', 'male']
[]
['vocal']
[]
['heavy', 'no guitar', 'weird', 'industrial', 'techno']
['female', 'drums', 'vocal', 'rock']
['beats', 'female', 'drum', 'voice', 'loud', 'drums', 'industrial', 'rock', 'techno', 'beat']
[]
['ambient', 'drums', 'beat']
['slow']
['quiet', 'choral', 'voices']
['classical', 'quiet', 'strings', 'harp', 'slow', 'soft']
['classical', 'ambient', 'slow']
[]
['guitar', 'male voice', 'slow', 'singing']
['male vocal', 'vocals', 'guitar', 'acoustic', 'male singer', 'man singing', 'modern', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'guitar', 'folk']
['guitar', 'voice', 'male singer']
['male vocal', 'vocals', 'guitar', 'rock', 'singing']
['guitar', 'country', 'beat']
['synth', 'electronic']
['beats', 'synth', 'drums', 'electronic', 'electro', 'dance', 'techno', 'beat']
['drums', 'electronic', 'techno']
['rock']
['ambient', 'new age', 'synth', 'electronic', 'electro', 'electronica']
['electronic']
['ambient', 'synth']
['synth']
['electronic']
[]
['ambient']
[]
['harpsichord', 'classical', 'strings', 'harpsicord', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'quick']
['no piano', 'classical', 'strings', 'violin']
['harpsichord', 'classical', 'violin']
['classical', 'violins', 'classic', 'violin', 'orchestra']
[]
['violin']
['classical', 'solo', 'strings', 'string', 'violin', 'cello']
['strings', 'fast', 'violin']
['no vocals']
['classical', 'strings', 'fast', 'cello']
['no voice', 'classical', 'solo', 'violins', 'strings', 'classic', 'string', 'fast', 'violin', 'modern', 'orchestra', 'cello', 'quick']
[]
['guitar']
['male vocal', 'vocals', 'guitar', 'voice', 'man singing', 'man', 'mellow', 'male vocals', 'slow', 'male']
['guitar', 'ambient', 'new age', 'loud', 'drums', 'piano', 'slow', 'soft']
['guitar', 'no vocal', 'no vocals', 'modern', 'slow']
['guitar', 'drums', 'slow']
['no voice', 'guitar', 'ambient', 'drums', 'slow', 'beat']
['no piano', 'classical', 'guitar', 'quiet', 'solo', 'medieval', 'harp', 'lute', 'piano', 'slow', 'soft', 'baroque']
['no piano', 'classical', 'guitar', 'quiet', 'no vocals', 'lute']
['strings', 'eastern']
['no voice', 'sitar', 'guitar', 'solo', 'middle eastern', 'no vocal', 'harp', 'eastern', 'indian']
['harpsichord', 'sitar', 'foreign', 'strings', 'harp', 'eastern', 'indian']
[]
['sitar', 'strings', 'no vocals']
[]
['sitar', 'foreign', 'guitar', 'strings', 'slow', 'indian']
['sitar', 'no vocal', 'no vocals']
['strings', 'piano']
[]
['harpsichord', 'sitar', 'strings', 'harpsicord', 'no vocal', 'no vocals', 'harp']
['solo', 'piano']
['classical']
['guitar', 'drums', 'male singer', 'man', 'pop', 'male', 'vocal', 'rock', 'rap']
['male vocals', 'punk', 'male']
['guitar', 'solo', 'electric guitar', 'rock']
['male vocals', 'rap']
['jazz', 'bass', 'drums']
['slow', 'male', 'vocal']
[]
['vocals', 'drums']
['guitar', 'quiet', 'acoustic guitar', 'slow']
['guitar', 'female voice', 'drums', 'low', 'slow', 'vocal', 'female singer']
[]
['guitar', 'slow']
['guitar', 'strings', 'no vocal', 'slow', 'cello']
['guitar', 'slow', 'cello']
['classical', 'piano']
[]
['piano']
['classical', 'no vocals', 'piano']
['piano']
['female opera', 'female', 'female voice', 'opera', 'lute', 'woman']
['female', 'opera', 'operatic', 'female vocals']
['female', 'guitar', 'opera', 'female vocal', 'woman', 'female vocals']
['opera', 'female vocals']
['opera']
['electronic']
['classical', 'quiet', 'solo', 'piano', 'slow', 'soft']
['classical', 'quiet', 'no vocal', 'piano']
['piano']
['piano']
['classical', 'piano', 'slow']
['rock']
['no voice', 'electronic', 'no vocal', 'no vocals', 'dance', 'techno', 'beat']
['synth', 'drums', 'electronic', 'fast', 'dance', 'techno']
[]
['beats', 'electric', 'loud', 'drums', 'electronic', 'fast', 'trance', 'techno']
['beats', 'drums', 'electronic', 'fast', 'techno']
[]
['beats', 'loud', 'fast', 'techno']
['fast', 'techno', 'house']
['piano']
['classical', 'female', 'piano', 'singing', 'female vocals']
[]
['piano']
['female singing', 'female', 'female voice', 'girl', 'modern', 'female vocal', 'piano', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals']
['singer', 'female', 'quiet', 'solo', 'female vocal', 'piano', 'slow', 'woman', 'soft']
['piano']
['female', 'opera', 'woman']
['classical', 'female', 'strings', 'opera', 'woman']
['guitar', 'bass', 'drums', 'pop', 'slow', 'vocal', 'soft']
['vocal', 'rock']
['singer', 'drums', 'pop', 'rock']
['male vocal', 'drums', 'male', 'rock']
['male vocal', 'guitar', 'fast', 'male vocals', 'male', 'rock', 'singing']
['rock']
['guitar', 'fast']
[]
['techno']
['vocals', 'female', 'jazz', 'female voice', 'drums', 'pop', 'female vocal', 'woman', 'singing']
['female', 'drums', 'modern', 'pop', 'female vocal', 'vocal', 'female vocals', 'techno']
[]
['rock', 'singing', 'beat']
['vocals', 'female', 'female voice', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'english']
['drums', 'rock', 'beat']
['drums']
['drums', 'techno', 'beat']
['woman']
['foreign', 'female', 'tribal', 'vocal', 'indian', 'singing']
['vocals', 'vocal', 'singing']
[]
['percussion', 'drum', 'drums', 'fast', 'tribal', 'jungle']
['vocals', 'foreign', 'female', 'girl', 'drums', 'vocal', 'female vocals']
[]
['opera', 'soprano', 'female vocal', 'vocal']
['flute']
['classical', 'flute']
['female', 'opera']
['classical']
['female', 'opera']
['electronic']
['electronic', 'techno']
['foreign', 'voice', 'male voice', 'electronic', 'weird', 'electro', 'indian', 'techno', 'not english']
['synth', 'electronic', 'electro']
['spacey', 'quiet', 'ambient', 'new age', 'no guitar', 'slow', 'no drums', 'different', 'soft']
[]
[]
['ambient', 'drone', 'slow']
['spacey', 'ambient', 'new age']
['ambient', 'slow', 'singing']
['vocals', 'no strings', 'eerie', 'ambient', 'noise']
['quiet']
['silence', 'no voices', 'quiet', 'slow']
['harpsichord', 'sitar', 'guitar', 'drums', 'arabic']
['indian']
['sitar', 'beats', 'drums', 'indian']
[]
['sitar', 'country', 'arabic', 'lol', 'modern', 'indian', 'oriental', 'beat']
['no piano', 'eastern', 'indian']
['sitar', 'foreign', 'guitar', 'middle eastern', 'strings', 'string', 'strange', 'slow', 'indian']
['indian']
[]
['dark']
['slow', 'indian']
['spacey', 'ambient', 'new age', 'synth', 'drum', 'electronic', 'dark', 'deep', 'slow']
['classical', 'guitar', 'acoustic']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'classical guitar', 'slow']
['classical', 'guitar', 'solo', 'piano', 'slow']
[]
['men', 'opera']
['classical', 'female', 'strings', 'opera', 'orchestra', 'woman', 'singing']
['opera', 'orchestra', 'male']
['sitar', 'vocals', 'male voice', 'loud', 'male', 'indian', 'india']
['sitar', 'vocals', 'voice', 'male voice', 'man', 'male vocals', 'male', 'vocal', 'indian', 'singing', 'techno']
['eastern', 'slow', 'indian', 'oriental']
[]
['vocal']
['no voices', 'strings']
['female', 'woman', 'woman singing', 'soft']
[]
['female voice', 'ambient', 'strings', 'slow', 'soft']
['female', 'girl', 'female vocal', 'woman', 'female vocals']
['vocals', 'no piano', 'female', 'female voice', 'ambient', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'soft']
['percussion', 'piano']
['jazz', 'synth', 'keyboard', 'organ', 'jazzy']
[]
['fast', 'piano']
['jazz', 'guitar', 'loud', 'fast', 'piano', 'jazzy']
['guitar', 'no vocal', 'piano', 'rock']
['guitar']
['classical', 'guitar', 'solo', 'strings', 'no vocal', 'instrumental', 'no flute', 'slow']
[]
[]
['guitar', 'solo', 'acoustic', 'fast', 'slow', 'calm']
['guitar', 'no vocals']
['reggae']
['no voice', 'guitar', 'synth', 'drum', 'voice', 'drums', 'reggae', 'modern', 'mellow', 'rock', 'beat']
['guitar']
['drums', 'reggae']
['reggae', 'jazzy']
['singer', 'vocals', 'female voice', 'voice', 'female vocal', 'slow', 'vocal', 'indian', 'woman']
['indian']
['foreign', 'middle eastern', 'female vocal', 'eastern', 'indian']
['sitar', 'female', 'female voice', 'eastern', 'indian']
['indian']
[]
['indian']
[]
['sitar', 'middle eastern', 'drums', 'indian', 'woman']
['bongos', 'percussion', 'drums', 'indian']
['jazz', 'guitar', 'drums']
['hard rock', 'guitar', 'loud', 'electric guitar', 'no vocals', 'rock', 'metal']
[]
['guitar', 'male', 'rock', 'metal']
['rock']
['hard rock', 'heavy', 'guitar', 'loud', 'fast', 'heavy metal', 'hard', 'rock', 'metal']
['choral', 'opera']
['choral', 'opera', 'choir']
['choir']
[]
['silence', 'classical', 'guitar', 'quiet', 'acoustic']
['classical', 'guitar', 'quiet', 'solo', 'no vocals', 'instrumental', 'piano', 'spanish', 'slow']
['harpsichord', 'classical', 'strings', 'classic']
['classical', 'harpsicord', 'violin', 'slow']
['harpsichord', 'guitar', 'violin']
['guitar', 'solo', 'no vocal', 'acoustic guitar', 'electric guitar', 'no vocals', 'slow', 'rock']
['male vocal', 'guitar', 'quiet', 'voice', 'male voice', 'modern', 'pop', 'slow', 'male', 'vocal', 'rock', 'singing']
['guitar', 'male voice', 'male']
['vocals', 'guitar', 'rock']
['guitar', 'man']
['male vocal', 'guitar', 'voice', 'male voice', 'male vocals', 'slow', 'male', 'vocal', 'rock']
[]
['guitar']
['male vocal', 'guitar']
['male vocal', 'guitar', 'male voice', 'acoustic guitar', 'slow', 'male', 'singing']
[]
['male vocal', 'vocals', 'guitar', 'ambient', 'male voice', 'acoustic', 'man', 'male vocals', 'vocal']
['vocals', 'guitar', 'solo', 'slow']
['guitar', 'banjo', 'no vocal', 'fast', 'country', 'blues']
['quiet', 'slow']
[]
['no vocals']
['electronic', 'techno']
['electric', 'electronic', 'pop', 'dance', 'techno', 'beat']
[]
['no voice', 'no vocal']
[]
['beats', 'no vocals', 'modern', 'disco', 'pop', 'techno', 'beat', 'upbeat']
['talking', 'reggae', 'echo']
[]
['drum', 'drums', 'reggae', 'techno', 'beat']
['harpsichord']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'medieval', 'loud', 'classic', 'baroque']
['harpsichord', 'classical', 'strings', 'medieval', 'harp']
['harpsichord']
[]
['harpsichord', 'piano']
['harpsichord', 'classical']
['harpsichord']
[]
['rock']
[]
['guitar', 'rock']
['hard rock', 'guitar', 'heavy metal', 'rock', 'metal']
['rock']
['drums']
['drum', 'drums']
['no voice', 'fast']
[]
['ambient', 'synth', 'no vocal']
['drums', 'electronic']
['male vocal', 'guitar', 'percussion', 'drums', 'fast', 'fast beat', 'vocal', 'rock']
[]
['drum', 'drums', 'male', 'vocal', 'beat']
['classical', 'guitar', 'classic', 'harp']
[]
['guitar', 'harp']
[]
['classical', 'guitar', 'quiet', 'strings', 'harp', 'eastern', 'slow']
['classical', 'guitar', 'harp']
['classical', 'harp']
['guitar', 'harp']
[]
['male vocal', 'vocals', 'guitar', 'electronic', 'modern', 'male vocals', 'male', 'rock', 'singing']
['vocals', 'rock']
['vocals', 'guitar', 'synth', 'voice', 'slow', 'male', 'rock']
['guitar']
['singer', 'folk', 'country']
['guitar', 'country', 'beat']
['guitar', 'country', 'slow']
['country']
[]
['ambient', 'electronic', 'no vocals', 'slow', 'techno']
['male vocal', 'chanting', 'chant', 'male', 'singing']
['chorus', 'male vocal', 'chant', 'man', 'male', 'vocal', 'choir']
[]
['quiet', 'jazzy']
['jazz', 'male voice', 'organ', 'man', 'slow', 'jazzy']
[]
[]
['guitar', 'man', 'piano', 'slow', 'male', 'singing', 'calm', 'english']
['male vocal', 'vocals', 'guitar', 'vocal']
['male voice', 'male singer', 'man', 'male', 'vocal']
['singer', 'guitar', 'male voice', 'acoustic', 'male singer', 'soft']
['foreign', 'violin', 'irish', 'spanish', 'vocal', 'singing', 'voices', 'not english']
['duet', 'vocals', 'foreign', 'female', 'folk', 'irish', 'celtic', 'vocal']
[]
['female voice', 'drums', 'not english']
['classical', 'fast', 'piano']
['classical', 'solo', 'classic', 'fast', 'piano']
['classical', 'piano']
['harpsichord', 'no vocal', 'violin', 'cello']
['harpsichord', 'violin', 'orchestra', 'baroque']
['no voice', 'harpsichord', 'classical', 'strings', 'string', 'violin', 'no vocals', 'orchestra', 'cello', 'baroque']
[]
['harpsichord', 'classical', 'classic', 'oboe']
['harpsichord', 'classical', 'oboe', 'baroque']
['harpsichord', 'classical']
['classical', 'instrumental', 'oboe', 'no singer', 'baroque']
['classical', 'guitar', 'strings']
['classical', 'guitar', 'strings']
['classical', 'guitar', 'banjo', 'no violin']
['classical', 'guitar', 'classic', 'classical guitar', 'harp']
['classical', 'guitar']
['guitar']
['guitar']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'classic', 'old', 'flutes', 'slow', 'flute', 'baroque']
['harpsichord', 'classical', 'violins', 'violin', 'flutes', 'flute']
['classical', 'violin', 'piano', 'orchestra', 'flute']
['man', 'male', 'singing', 'rap']
['voices', 'rap', 'hip hop']
[]
['guitar']
['guitar', 'banjo', 'strings', 'acoustic', 'country', 'no vocals', 'slow']
['guitar', 'guitars']
['female', 'female vocal', 'slow']
['female', 'slow', 'vocal']
['no voice', 'strings', 'violin', 'irish']
['classical', 'strings', 'fast', 'violin', 'irish']
['classical', 'strings', 'fast', 'violin', 'irish', 'celtic', 'fiddle']
['strings', 'violin', 'irish']
[]
['violins', 'folk', 'country', 'violin', 'irish', 'celtic', 'fiddle']
['drums']
['new age', 'synth', 'loud', 'electronic', 'not classical', 'weird', 'fast', 'dark', 'modern', 'industrial', 'pop', 'rock', 'techno', 'beat', 'upbeat']
[]
['beats', 'electronic', 'no vocal', 'rock']
['guitar', 'strings', 'acoustic', 'no vocal', 'spanish', 'slow']
['guitar']
['classical', 'violin', 'cello']
['classical', 'violin', 'slow', 'cello']
['classical', 'solo', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'no flute', 'cello']
[]
['classical', 'strings', 'string', 'violin', 'slow', 'cello']
[]
[]
['classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'quiet', 'strings', 'no vocal', 'violin', 'no vocals', 'cello']
['classical', 'violins', 'strings', 'violin', 'no flute', 'slow', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical']
['no voice', 'classical', 'no voices', 'strings', 'no vocal', 'violin', 'no vocals', 'cello']
['harpsichord', 'solo', 'slow']
['no voice', 'harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'piano', 'slow', 'baroque']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'string', 'harp', 'piano', 'old', 'no drums']
['guitar', 'voice', 'male singer', 'pop', 'male', 'woman', 'rock', 'female vocals']
['man', 'male', 'rock', 'singing']
['male vocal', 'fast', 'pop', 'male', 'rock']
['male vocal', 'vocals', 'loud', 'man', 'male vocals', 'male', 'rock']
['rock']
[]
['birds', 'electronic', 'male singer', 'male', 'techno']
['female', 'female voice', 'girl', 'pop', 'beat', 'female singer']
['female', 'female voice', 'pop', 'vocal', 'woman', 'female vocals', 'techno']
['female voice']
['vocals', 'female', 'loud', 'woman', 'dance', 'female vocals']
['electronic', 'pop', 'rock', 'singing']
['guitar', 'rock']
['vocals', 'guitar', 'pop', 'vocal', 'rock']
['vocals', 'male voice', 'male', 'rock', 'different']
['loud', 'drums', 'man singing', 'man', 'pop', 'male', 'rock']
['fast']
['techno']
['drums', 'male', 'rock']
['rock']
['guitar', 'loud', 'rock']
['loud', 'rock', 'metal']
['guitar', 'female vocal', 'vocal', 'woman']
['female', 'voice', 'pop', 'vocal', 'woman', 'singing']
['guitar', 'female voice']
[]
['guitar', 'pop', 'female singer']
['female', 'pop', 'female vocal']
['male', 'rock']
['rock']
['rock']
['hard rock', 'male', 'rock']
['rock']
['chimes', 'guitar', 'no violin', 'bells', 'slow']
['female', 'guitar', 'female voice', 'female vocal', 'piano', 'slow', 'vocal', 'female vocals']
['female', 'guitar', 'voice', 'no vocal', 'pop', 'female vocal', 'soft', 'female singer']
['vocal', 'woman', 'woman singing']
['vocal', 'woman', 'female vocals']
[]
['male vocal', 'guitar', 'lol', 'pop', 'singing', 'calm']
['male vocal', 'vocals', 'guitar', 'drums', 'pop', 'male', 'vocal', 'beat']
['vocals', 'soft rock', 'guitar', 'male voice', 'modern', 'pop', 'mellow', 'slow', 'male', 'vocal', 'singing', 'voices', 'upbeat']
['vocals', 'guitar', 'man', 'pop', 'slow', 'vocal', 'singing', 'calm', 'voices']
['vocals', 'guitar', 'pop', 'male vocals', 'slow', 'beat']
['no voice', 'guitar', 'strings', 'piano', 'slow', 'soft']
['no voice', 'plucking', 'vocals', 'classical', 'guitar', 'no singing', 'strings', 'no vocal', 'violin', 'instrumental', 'celtic', 'vocal', 'singing', 'fiddle']
['male vocal', 'man', 'male', 'english']
['classical']
['classical', 'guitar', 'violin', 'flute']
['flute']
['guitar', 'indian', 'beat']
['techno', 'beat']
[]
['beats', 'drums']
['guitar']
[]
['guitar', 'modern', 'pop', 'flute']
['classical', 'violins', 'strings', 'no vocal', 'orchestra']
['guitar', 'synth', 'male voice', 'slow', 'rock']
['vocals']
['strings', 'weird']
[]
['fast', 'electronica', 'rock']
['ambient', 'synth', 'loud', 'electronic', 'weird', 'fast', 'slow', 'rock']
[]
['opera', 'irish', 'singing']
['classical', 'female voice', 'opera', 'woman']
[]
['female', 'folk', 'female voice', 'medieval', 'opera', 'irish', 'female vocal', 'celtic', 'vocal', 'woman', 'woman singing', 'soft']
['no voice', 'no vocal', 'violin', 'no vocals']
[]
['classical', 'ambient', 'no vocal', 'no vocals', 'slow']
[]
[]
['male vocal', 'male', 'rock']
['hard rock', 'heavy', 'voice', 'loud', 'hard', 'male', 'rock', 'metal']
['guitar', 'male voice', 'male vocals', 'rock', 'metal']
['solo', 'loud', 'fast', 'electric guitar', 'punk', 'rock']
['guitar', 'slow']
['singer', 'male vocal', 'vocals', 'guitar', 'male voice', 'male singer', 'man singing', 'man', 'male vocals', 'slow', 'male', 'vocal', 'singing']
[]
['male vocal']
['vocals', 'chanting', 'choral', 'male', 'vocal', 'choir']
['plucking', 'world', 'sitar', 'guitar', 'quiet', 'solo', 'strings', 'drums', 'weird', 'no vocals', 'no drums', 'beat']
[]
['percussion', 'drum', 'drums', 'indian', 'singing', 'beat']
[]
['guitar', 'trumpet', 'drums', 'no vocals', 'no singer', 'jazzy', 'techno']
['jazz', 'trumpet', 'drums', 'modern', 'jazzy', 'flute', 'beat']
['sitar', 'drums', 'indian']
['guitar', 'loud', 'drums', 'rock', 'techno']
['synth', 'loud', 'fast', 'pop', 'slow', 'rock', 'different', 'beat']
[]
['ambient']
['vocals', 'vocal']
['female singing', 'no piano', 'female', 'female voice', 'female vocal', 'slow', 'woman', 'female vocals']
[]
['female', 'electronic', 'woman', 'rock']
['female voice', 'fast', 'woman']
[]
['vocals', 'female', 'female vocal', 'techno']
['female voice', 'synth', 'voice', 'electronic', 'pop', 'vocal', 'woman', 'woman singing', 'dance', 'female vocals', 'techno']
['techno']
['loud', 'electronic', 'techno', 'beat']
['synth', 'loud', 'drums', 'electronic', 'instrumental', 'techno']
[]
['bass', 'synthesizer']
['classical', 'flute']
['classical', 'violins', 'classic', 'violin', 'flutes', 'flute']
['classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'violin']
['flute']
['classical', 'strings', 'no guitar', 'no vocal', 'violin', 'flutes', 'flute']
['piano']
['piano']
['piano']
['piano']
['rock']
['loud', 'rock']
['male vocal', 'guitar', 'no singing', 'loud', 'male vocals', 'male', 'rock']
['choir']
['opera']
['opera', 'male', 'choir']
['choral', 'opera', 'male opera', 'man', 'male', 'choir']
['male vocal', 'opera', 'male opera', 'slow', 'male', 'choir']
['chorus', 'vocals', 'choral', 'singing', 'choir']
['choral', 'opera', 'male opera', 'male']
[]
['guitar', 'no vocals', 'indian']
['strings', 'fast', 'harp']
[]
['piano']
['piano']
['classical', 'solo', 'piano']
['new age', 'piano']
[]
['vocals', 'female vocal', 'soft']
['female', 'vocal']
['voice', 'vocal', 'singing']
['new age', 'fast', 'female vocal', 'vocal']
['singer', 'vocals', 'female', 'female voice', 'voice', 'pop', 'female vocal', 'vocal', 'woman', 'rock', 'female vocals', 'female singer']
['vocals', 'female', 'female voice', 'female vocals']
['vocals', 'pop', 'vocal', 'woman', 'rock']
['female', 'voice', 'pop', 'rock']
[]
['techno', 'beat']
['electronic', 'dance', 'techno']
['techno', 'beat']
[]
['techno']
['harpsichord', 'classical']
['harpsichord']
['classical', 'opera', 'slow', 'woman']
['vocal']
['opera', 'female vocal']
[]
[]
[]
[]
['beats', 'foreign', 'female', 'ambient', 'weird', 'echo']
['drums', 'electronic']
['beats', 'voices', 'techno']
[]
['voices']
[]
['beats', 'synth', 'electronic', 'dance', 'techno', 'beat', 'quick']
['no singing', 'electronic', 'no vocal', 'fast', 'no vocals', 'dance', 'techno']
['female', 'fast', 'pop', 'woman', 'dance', 'techno', 'beat']
['no voice', 'fast', 'dance', 'techno']
[]
['fast', 'dance', 'techno']
['ambient', 'synth', 'space', 'electronic', 'electro', 'techno', 'beat']
['beats', 'drums', 'electronic', 'fast', 'techno', 'house', 'beat']
['hard rock', 'guitar', 'electric guitar', 'piano', 'rock']
['electronic', 'techno']
['horns', 'spacey']
['ambient']
['ambient']
['ambient']
[]
['no voice', 'ambient', 'new age', 'no vocal', 'no vocals', 'soft']
['ambient']
['spacey', 'ambient', 'new age', 'slow', 'soft']
['ambient', 'new age', 'synth']
['ambient', 'strange', 'slow', 'calm', 'soft']
['ambient']
['quiet', 'ambient', 'new age', 'synth', 'airy', 'mellow', 'slow', 'calm', 'soft']
[]
['ambient', 'classic']
['quiet', 'ambient', 'synth', 'drone', 'slow', 'flute']
['ambient', 'slow', 'calm']
['guitar', 'bass', 'rock']
['loud', 'heavy metal', 'man', 'rock', 'metal']
['heavy', 'loud', 'rock']
['vocals', 'voice', 'male voice', 'man', 'slow', 'singing', 'voices']
['guitar', 'male voice', 'vocal']
['male vocal', 'guitar', 'male singer', 'country', 'man', 'male vocals', 'slow', 'male', 'blues', 'singing']
['guitar', 'male voice', 'male singer', 'country', 'male', 'vocal', 'no drums']
[]
['male vocal', 'vocals', 'guitar', 'country', 'man', 'male vocals', 'male', 'vocal']
['no piano', 'drums']
['singer', 'guitar', 'folk', 'irish', 'vocal', 'clapping']
['singer', 'vocal', 'clapping']
['female singing', 'female', 'vocal', 'woman', 'clapping']
['guitar', 'clapping']
['woman', 'singing', 'clapping']
[]
['talking']
['quiet', 'ambient']
['dark', 'drone', 'slow']
['ambient']
[]
['eerie', 'ambient', 'no vocals']
[]
['ambient', 'drone']
[]
[]
['vocals', 'female', 'female vocal', 'celtic', 'singing']
['vocals', 'vocal', 'singing']
['drums', 'electronic', 'no vocal', 'no vocals', 'slow', 'male', 'beat']
[]
['slow', 'vocal', 'singing']
['male vocal', 'vocals', 'male voice', 'drums', 'man singing', 'man', 'pop', 'slow', 'male', 'rock']
['guitar', 'fast']
['fast']
['strings']
['ambient', 'new age', 'synth', 'slow', 'jazzy', 'beat']
['electronic', 'strange', 'techno', 'water']
['bass', 'electronic', 'slow', 'beat']
['spacey', 'ambient', 'electronic', 'techno']
['synth']
['ambient', 'drums', 'dark', 'beat']
[]
['electronic', 'fast', 'electro', 'electronica', 'techno', 'beat']
['no piano', 'drums', 'electronic', 'fast', 'electro', 'techno', 'beat']
['drums', 'techno', 'beat']
['beats', 'drums', 'no vocal', 'fast', 'no vocals', 'trance', 'fast beat', 'dance', 'techno', 'beat']
['classical', 'quiet', 'slow', 'flute']
['vocals', 'female', 'voice', 'male voice', 'opera', 'woman', 'singing', 'flute']
['singer', 'classical', 'quiet', 'instrumental', 'flutes', 'slow', 'cello', 'flute', 'soft', 'baroque']
['opera', 'man', 'male', 'flute']
['vocals', 'classical', 'voice', 'opera', 'man', 'vocal']
[]
['beats', 'electric', 'synth', 'electronic', 'weird', 'fast', 'strange', 'dance', 'techno', 'beat']
[]
['electronic', 'weird', 'techno', 'beat']
['funky', 'electronic', 'weird']
[]
['beats', 'synth', 'loud', 'drums', 'electronic', 'electro', 'rock', 'no drums', 'techno', 'beat']
['violin']
[]
['guitar', 'quiet', 'electric guitar', 'slow', 'guitars']
['guitar', 'male voice']
['guitar']
['guitar']
['guitar', 'male vocals', 'slow']
['harpsichord']
[]
[]
['opera', 'male opera']
['opera']
['opera', 'chant', 'man']
[]
['strings', 'male voice', 'opera', 'violin', 'chant', 'male', 'cello']
[]
['classical', 'piano']
['harpsichord', 'classical', 'guitar', 'soft']
['harpsichord', 'classical', 'harp', 'piano']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'piano', 'baroque']
[]
['harpsichord', 'clasical', 'classical', 'classic', 'harp', 'piano']
['male vocal', 'vocals', 'men', 'folk', 'voice', 'drums', 'country', 'tribal', 'irish', 'man', 'male', 'vocal', 'singing', 'voices']
[]
[]
['male vocal', 'vocals', 'man singing', 'irish', 'male', 'vocal']
['drum', 'voice', 'drums', 'man singing', 'irish', 'man', 'male', 'indian', 'english']
['singing']
['folk', 'drum', 'male voice', 'drums', 'irish', 'man', 'celtic', 'singing']
['male vocal', 'irish', 'male', 'english']
['guitar', 'strings']
['classical', 'guitar']
['guitar', 'slow']
[]
['classical', 'guitar', 'quiet', 'solo', 'strings', 'acoustic', 'slow', 'soft']
['guitar', 'strings', 'slow']
['guitar', 'strings']
['guitar', 'solo', 'strings', 'classical guitar', 'slow', 'calm']
['guitar', 'classical guitar']
['no voice', 'no voices', 'guitar', 'drums']
[]
['guitar']
['guitar', 'loud', 'fast', 'spanish']
['slow', 'scary']
[]
['synth']
['ambient', 'new age', 'no vocals', 'indian']
[]
[]
['synth', 'pop']
['world', 'ambient', 'new age', 'loud', 'weird', 'fast', 'no vocals', 'instrumental', 'indian']
['no vocals', 'instrumental']
['ambient', 'loud', 'no vocal', 'no vocals', 'instrumental']
['guitar', 'country', 'rock']
[]
[]
['classical', 'opera', 'woman']
[]
['female opera', 'female', 'opera', 'woman']
['duet', 'chorus', 'female', 'quiet', 'male voice', 'choral', 'opera', 'vocal', 'voices', 'choir']
['harpsichord', 'irish', 'flute']
['flute']
['flute']
['beats', 'drums']
['pop']
[]
['beats', 'techno']
['pop', 'male', 'vocal']
[]
[]
['men', 'classical', 'quiet', 'male voice', 'opera', 'male opera', 'chant', 'man', 'male', 'monks']
['beats', 'funky', 'synth', 'funk', 'electronic', 'weird', 'strange', 'techno', 'beat']
['drums', 'no drums']
['synth', 'electronic', 'no violin', 'instrumental', 'techno']
['drums']
['no piano', 'drums', 'electronic']
['loud', 'drums', 'techno', 'beat']
['drums']
['drums', 'techno', 'beat']
['classical', 'strings', 'violin']
['female', 'opera']
['classical', 'strings', 'classic', 'opera']
['opera', 'operatic']
['female voice', 'opera']
[]
['classical', 'opera']
['opera', 'vocal']
['classical', 'classic', 'opera']
['female opera', 'female', 'female voice', 'opera', 'female vocal', 'woman']
['classical', 'strings', 'opera', 'orchestral']
['classical', 'male voice', 'opera']
['male vocal', 'classical', 'violins', 'male voice', 'opera', 'male singer', 'male opera', 'man', 'male vocals', 'male', 'singing']
['male voice', 'opera', 'male']
['classical', 'strings', 'opera', 'man', 'male']
['voice', 'opera', 'male opera', 'man', 'male']
[]
['female', 'quiet', 'folk', 'ambient', 'new age', 'voice', 'no vocal', 'drone', 'slow', 'vocal', 'singing', 'female vocals', 'soft']
[]
['bongos', 'beats', 'drums']
[]
[]
['drums']
['drums']
['world', 'vocals', 'foreign', 'no piano', 'new age', 'percussion', 'drums', 'chanting', 'choral', 'tribal', 'eastern', 'vocal', 'women']
[]
['synth', 'electronic', 'modern']
[]
[]
['opera']
['female', 'opera', 'woman']
['female opera', 'female', 'opera']
['female', 'opera']
['opera']
['female', 'solo', 'opera', 'slow', 'vocal', 'woman', 'not english']
['female', 'opera', 'woman', 'female vocals']
['chorus', 'quiet', 'female voice', 'choral', 'choir']
['chorus', 'soft']
['choral', 'voices', 'choir']
['chorus', 'chanting', 'choral', 'vocal', 'soft', 'choir']
['chorus', 'vocals', 'classical', 'female', 'choral', 'vocal', 'soft', 'choir']
[]
[]
['classical', 'solo', 'piano']
['no vocals', 'piano']
['classical', 'fast', 'dark', 'piano']
['classical', 'quiet', 'light', 'piano']
[]
['classical', 'piano']
[]
['piano']
['piano']
['quiet', 'piano', 'soft']
['classical', 'fast', 'piano']
['classical', 'solo', 'fast', 'piano', 'piano solo']
['guitar', 'country']
['country']
['guitar', 'country']
['banjo', 'country']
['classical', 'solo', 'piano']
['classical', 'solo', 'modern', 'piano']
['piano']
['drum']
['female', 'pop']
['female', 'female voice', 'synth', 'drum', 'electronic', 'techno']
['female', 'ambient', 'synth', 'drums', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'beat']
[]
[]
[]
['guitar', 'bass', 'violin']
['no voice', 'classical', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'strings', 'bass', 'violin']
['guitar', 'rock']
['guitar']
['guitar', 'acoustic guitar', 'instrumental']
['guitar', 'strings', 'no vocal', 'country', 'no vocals']
[]
['guitar']
[]
[]
['guitar']
['vocals', 'beats', 'female', 'jazz', 'female voice', 'drum', 'drums', 'female vocal', 'woman', 'jazzy', 'beat']
['female', 'jazz', 'female vocal', 'vocal', 'woman', 'singing']
['jazz']
['female', 'female voice', 'slow']
['ambient', 'electronic', 'low', 'deep', 'slow']
[]
['rock']
['male voice', 'loud', 'drums', 'electronic', 'no vocals', 'electronica', 'instrumental', 'pop', 'rock', 'techno']
['electric', 'synth', 'electronic', 'fast', 'electro', 'techno']
['male vocal', 'guitar', 'synth', 'male voice', 'loud', 'drums', 'electronic', 'electro', 'male vocals', 'vocal', 'techno']
[]
['new age', 'synth', 'loud', 'indian']
['piano', 'slow']
['electronic', 'electro', 'different', 'techno']
['female', 'synth', 'electronic', 'fast', 'electro', 'female vocal', 'woman', 'dance', 'techno', 'beat']
['no vocals', 'techno']
['synth', 'rock', 'techno']
['female', 'electronic', 'weird', 'techno']
['techno']
['synth', 'electronic', 'fast', 'dance', 'techno', 'beat']
['female', 'electronic', 'fast', 'dance', 'female vocals', 'techno']
['ambient', 'new age', 'synth', 'electronic', 'slow', 'techno', 'beat']
[]
['guitar', 'drum', 'bass', 'drums', 'no vocal', 'no vocals', 'no singer', 'rock', 'beat']
['male vocal', 'vocals', 'guitar', 'drums', 'vocal', 'rock']
['male vocal', 'rock']
['guitar', 'drums', 'rock']
['guitar', 'loud', 'rock']
['guitar', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'strings', 'classic', 'string', 'harp', 'slow', 'calm', 'soft']
['classical', 'guitar', 'slow', 'soft']
['guitar']
['jazz', 'man', 'male', 'singing', 'clapping']
['male vocal', 'jazz', 'folk', 'country', 'man']
['male vocal', 'country']
['guitar']
['jazz', 'guitar', 'spanish', 'slow']
[]
['harpsichord', 'classical', 'harpsicord', 'baroque']
['harpsichord', 'piano', 'baroque']
['harpsichord', 'classical', 'piano']
['harpsichord', 'classical', 'strings', 'classic', 'piano']
['classical', 'strings', 'violin', 'no flute', 'flute', 'upbeat']
['no piano', 'guitar', 'bass', 'country']
['vocals', 'guitar', 'country']
[]
['male vocal', 'country', 'man']
[]
['guitar', 'drums', 'man singing', 'country', 'man', 'pop', 'male', 'vocal', 'singing', 'english']
['guitar', 'solo', 'medieval']
['classical', 'guitar']
['guitar']
[]
['drums', 'slow', 'vocal', 'rock']
['synth', 'dark']
['voice', 'male voice', 'electronic', 'pop', 'echo', 'male', 'singing']
['singing']
['no voice', 'guitar', 'strings', 'no vocals', 'slow']
['sitar', 'guitar', 'harp', 'piano', 'indian']
['sitar']
['no beat', 'middle eastern', 'eastern']
['string']
['sitar', 'foreign', 'middle eastern', 'strings', 'drums', 'arabic', 'eastern', 'indian', 'oriental']
['ambient', 'weird']
[]
['eerie', 'weird', 'strange', 'techno', 'noise']
[]
[]
[]
[]
['female']
['female', 'guitar', 'female voice', 'electronic', 'vocal', 'woman', 'singing', 'techno']
[]
['no beat', 'keyboard', 'pop', 'piano']
['classical', 'strings', 'fast', 'no vocals', 'harp', 'piano', 'indian', 'no drums', 'quick']
['guitar']
['opera', 'male']
['classical', 'quiet', 'slow', 'flute', 'soft']
[]
[]
['guitar', 'vocal', 'singing']
['opera']
['funky', 'synth', 'repetitive', 'drums', 'electronic', 'no vocals', 'instrumental', 'techno', 'beat']
['drums', 'techno', 'beat']
['beats', 'fast', 'techno']
['techno']
['no guitar', 'fast', 'techno']
['drums', 'fast', 'trance', 'dance', 'techno', 'beat']
['techno']
['synth', 'electronic', 'electro', 'techno']
['electronic']
['electronic', 'fast']
['new age', 'synth', 'electronic']
['drum', 'drums', 'no vocal', 'beat', 'upbeat']
[]
['male vocal', 'male', 'rock']
['electronic', 'fast', 'dance', 'techno', 'beat']
['synth', 'electro', 'dance', 'techno', 'beat']
['techno']
['synth', 'electronic', 'dance', 'techno']
[]
['bass', 'electronic', 'fast', 'dance', 'techno']
['hard rock', 'drums', 'rock', 'metal']
['hard rock', 'rock']
['female', 'voice', 'opera', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing']
['vocals', 'opera']
['female', 'opera', 'lol', 'woman']
['female', 'opera', 'soprano', 'harp', 'female vocal', 'vocal', 'singing']
['female', 'opera', 'soprano']
['female', 'opera']
['female', 'opera', 'woman', 'singing']
['female', 'opera']
['sitar', 'indian', 'india']
[]
[]
['drums']
['slow', 'indian']
['sitar', 'string', 'eastern', 'slow', 'indian', 'oriental']
['sitar', 'no piano', 'guitar', 'indian']
['sitar', 'fast', 'indian']
['sitar', 'synth', 'no vocal', 'no vocals', 'indian']
[]
['electronic', 'fast beat', 'techno', 'beat']
['beats', 'synth', 'drums', 'fast', 'techno', 'beat']
['beats', 'drums', 'fast', 'fast beat', 'techno', 'beat']
['drums', 'fast', 'dance', 'techno', 'beat']
[]
[]
['piano']
['quiet', 'piano']
[]
[]
['female', 'female voice', 'indian', 'india', 'rock']
['bass', 'loud', 'weird', 'violin', 'industrial']
['singer', 'sitar', 'male vocal', 'soft rock', 'guitar', 'voice', 'male voice', 'loud', 'drums', 'male singer', 'modern', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['guitar', 'modern']
['rock']
['rock']
['rock']
['drums', 'pop', 'rock', 'singing']
['male', 'rock']
['male vocal', 'vocals', 'vocal', 'rock', 'singing']
['ambient', 'synth', 'drums', 'slow']
['ambient', 'new age', 'synth', 'space', 'electronic', 'dark', 'electronica', 'trance', 'slow', 'dance', 'techno', 'beat']
[]
['classical', 'guitar', 'strings', 'harp', 'slow']
['guitar', 'no vocal', 'no vocals']
['guitar', 'acoustic', 'slow']
['classical', 'guitar', 'harp', 'slow']
[]
['classical']
[]
['plucking', 'female', 'violin', 'no drums', 'female vocals']
['electronic']
['sitar', 'vocals', 'beats', 'guitar', 'synth', 'drum', 'strings', 'drums', 'eastern', 'vocal', 'voices', 'beat']
['foreign', 'no singing', 'no vocal', 'indian', 'techno']
['drums', 'indian']
['guitar', 'piano', 'slow']
['classical', 'guitar', 'quiet', 'fast', 'piano', 'spanish', 'soft']
[]
['beats', 'electric', 'electronic', 'electro', 'trance', 'techno']
['techno']
['fast', 'electro', 'techno', 'beat']
[]
['electronic', 'no vocal', 'fast', 'no singer', 'techno', 'beat']
['no strings', 'electronic', 'fast', 'electro', 'techno']
['techno']
['strings', 'drums']
['guitar', 'bass', 'slow']
['guitar', 'bass', 'no vocal', 'no vocals', 'indian']
[]
[]
['guitar']
['harpsichord']
['harpsichord', 'classical', 'fast']
['fast']
['piano']
[]
['silence', 'classical', 'guitar', 'quiet', 'classical guitar', 'harp', 'piano']
['electronic']
['no vocals']
['electronic', 'electro', 'techno', 'beat']
['electric', 'electronic', 'techno']
['ambient', 'electronic', 'no vocal', 'weird', 'techno', 'beat']
[]
[]
['male vocal', 'guitar', 'male', 'vocal']
['guitar', 'pop', 'female vocal']
[]
['guitar', 'hard', 'male', 'rock']
['hard rock', 'guitar', 'drum', 'loud', 'heavy metal', 'male', 'vocal', 'rock', 'metal']
['rock', 'metal']
['hard rock', 'rock', 'metal']
['hard rock', 'male vocal', 'guitar', 'loud', 'rock']
['guitar', 'bass']
['funky', 'jazz', 'synth', 'funk', 'drums', 'fast beat', 'jazzy']
['jazz', 'jazzy', 'techno']
[]
['jazz', 'keyboard', 'jazzy', 'beat']
['vocals', 'guitar', 'country', 'man', 'male', 'vocal', 'singing']
['male vocal', 'guitar', 'folk', 'voice', 'man', 'male vocals', 'male', 'vocal']
['guitar', 'country', 'male']
['guitar', 'folk', 'voice', 'male singer', 'country', 'male', 'vocal', 'singing']
['country', 'vocal']
['choir']
['quiet', 'chanting']
['silence', 'classical', 'female', 'quiet', 'choral', 'opera', 'slow', 'choir']
[]
['ambient', 'beat']
['flute']
['singing']
[]
['beats', 'drums', 'electronic', 'no guitar', 'techno', 'beat']
['beats', 'trance', 'techno', 'beat']
['electronic', 'techno']
['synth', 'techno']
['drums', 'electronic', 'techno']
[]
['weird', 'beat']
['electronic', 'fast', 'techno']
['synth', 'fast', 'beat']
['guitar', 'no vocals']
['hard rock', 'heavy', 'loud', 'drums', 'electronic', 'fast', 'electro', 'industrial', 'techno', 'noise']
['no voice', 'loud', 'drums', 'electronic', 'fast', 'industrial', 'noise']
['heavy', 'loud', 'electronic', 'fast', 'electro', 'techno']
['loud', 'techno']
['fast', 'techno', 'beat']
['heavy', 'electric', 'loud', 'drums', 'fast', 'industrial', 'rock', 'techno']
['ambient']
['ambient', 'voices', 'choir']
['vocals', 'eerie', 'ambient', 'weird', 'vocal', 'singing', 'voices', 'soft', 'choir']
['choral', 'opera', 'choir']
['chorus', 'choral', 'vocal', 'choir']
['jazz', 'guitar', 'male voice', 'drums', 'blues', 'rock']
['jazz', 'trumpet', 'no vocal', 'no vocals', 'jazzy']
['male vocal', 'male singer', 'blues']
['world', 'vocals', 'foreign', 'female', 'female voice', 'fast', 'modern', 'pop', 'spanish', 'vocal', 'indian', 'woman', 'rock', 'singing', 'female vocals', 'voices', 'different', 'women']
[]
['foreign', 'female', 'india']
['vocals', 'funky', 'foreign', 'horns']
[]
['talking', 'male']
['ambient', 'repetitive', 'drums', 'electronic', 'slow', 'no drums']
['ambient', 'electronic', 'no guitar', 'trance']
['ambient', 'electronic', 'no vocals', 'slow', 'flute']
['choral']
['ambient', 'electronic', 'not rock', 'techno']
['no voice', 'beats', 'quiet', 'female voice', 'ambient', 'synth', 'echo', 'slow', 'techno', 'beat']
['electronic', 'weird', 'opera', 'electro', 'beat']
['chorus', 'quiet', 'violins', 'ambient', 'new age', 'opera', 'echo', 'vocal', 'voices', 'choir']
[]
['piano']
['water']
['guitar', 'strings', 'no drums']
['guitar', 'string', 'slow']
['plucking', 'classical', 'guitar', 'quiet', 'strings', 'acoustic', 'harp', 'flute']
['female']
['foreign', 'voice', 'girl', 'chant', 'vocal', 'woman', 'singing', 'voices', 'not english', 'women']
[]
['hard rock', 'guitar', 'hard', 'rock', 'metal']
['hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'drums', 'heavy metal', 'industrial', 'hard', 'male vocals', 'male', 'rock', 'metal']
['heavy metal', 'rock', 'metal']
['guitar', 'no vocals']
[]
[]
['funky', 'jazz', 'piano', 'jazzy']
['jazz', 'keyboard', 'organ', 'fast', 'piano', 'jazzy']
['piano', 'jazzy']
['jazz', 'piano', 'jazzy']
['funky', 'jazz', 'guitar', 'synth', 'no singing', 'drum', 'bass', 'keyboard', 'electronic', 'no guitar', 'weird', 'no vocals', 'strange', 'jazzy']
['no flute', 'piano', 'rock']
['jazz', 'piano', 'jazzy']
[]
['drums', 'piano']
['jazz', 'drums']
['piano']
['jazz']
['vocals', 'techno']
[]
['fast', 'rock', 'techno']
['techno']
[]
['loud', 'dance', 'techno', 'beat']
['beats', 'fast', 'fast beat', 'techno', 'beat']
['drum', 'repetitive', 'electronic', 'fast', 'techno', 'beat']
['loud', 'drums', 'fast', 'techno', 'beat']
['guitar', 'loud', 'rock']
['voice', 'male voice', 'loud', 'fast', 'punk', 'male', 'rock']
['vocals', 'guitar', 'loud', 'drums', 'rock']
['guitar', 'banjo', 'solo', 'country', 'blues']
['guitar', 'banjo', 'fast', 'country']
['guitar', 'acoustic', 'no vocals', 'blues']
['female', 'female vocal', 'rock', 'female vocals']
['guitar', 'country', 'pop', 'singing']
['female', 'pop', 'woman', 'rock']
['guitar', 'fast', 'rock']
['jazz', 'guitar', 'drums', 'electronic', 'fast', 'electric guitar', 'modern', 'rock']
['guitar', 'loud', 'rock']
['vocals', 'guitar', 'rock']
['hard rock', 'male vocal', 'guitar', 'loud', 'fast', 'rock', 'metal']
['guitar', 'loud', 'rock']
[]
['horns', 'synth', 'bells']
['drum', 'indian']
[]
['sitar', 'middle eastern', 'drums', 'female vocal', 'indian', 'female vocals']
['world', 'sitar', 'drum', 'drums', 'indian']
['male vocal', 'vocals', 'guitar', 'male voice', 'acoustic guitar', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'singing']
['guitar']
['guitar', 'male voice', 'slow', 'male']
['singer', 'male vocal', 'guitar', 'folk', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal']
['guitar', 'country']
['drums']
['techno']
['drums', 'beat']
['strings', 'fast']
['world', 'harpsichord', 'sitar', 'lol', 'harp', 'piano', 'indian']
['harpsichord', 'strings', 'harpsicord', 'piano', 'eastern']
[]
['classical', 'quiet', 'organ', 'slow']
['classical', 'classic', 'organ']
[]
['classical', 'organ']
['classical', 'organ', 'piano']
['organ']
['classical', 'organ', 'no vocals']
['harpsichord', 'classical', 'strings', 'violin']
['classical', 'strings', 'violin']
['guitar', 'banjo']
[]
['guitar', 'slow']
['guitar', 'solo', 'strings', 'no vocal', 'no vocals']
['guitar', 'slow']
['guitar', 'quiet', 'solo', 'harp', 'piano', 'slow', 'soft']
[]
['choral', 'singing', 'choir']
['piano']
[]
['classical', 'solo', 'classic', 'piano', 'slow', 'soft']
['solo', 'piano', 'soft']
['classical', 'solo', 'piano', 'sad', 'slow']
['piano']
['classical', 'piano']
['piano']
['electronic', 'fast', 'techno']
['techno']
['electric', 'synth', 'electronic', 'techno', 'beat']
[]
['synth', 'electronic', 'fast', 'techno']
['electro', 'techno']
['guitar', 'rock']
['hard rock', 'male vocal', 'loud', 'male vocals', 'male', 'vocal', 'rock', 'metal']
['guitar', 'loud', 'male', 'rock']
['guitar', 'rock']
[]
['male vocal', 'electronic', 'electro', 'trance', 'male', 'dance', 'singing', 'techno']
['synth', 'electronic', 'dance', 'soft']
['vocals', 'ambient', 'synth', 'voice', 'male voice', 'electronic', 'techno', 'soft']
['wind', 'ambient', 'no vocals', 'female vocal']
['techno']
['synth', 'beat']
['synth', 'loud', 'no vocal', 'strange', 'beat']
[]
['no voice', 'no voices', 'piano']
['guitar', 'classic', 'light', 'slow', 'soft']
['vocals', 'female', 'guitar', 'female voice', 'voice', 'girl', 'female vocal', 'vocal', 'woman', 'singing']
['guitar', 'woman']
['female', 'guitar', 'female vocal', 'woman', 'woman singing', 'singing']
['guitar', 'female vocal', 'woman', 'singing', 'female vocals']
[]
['male vocal', 'foreign', 'voice', 'male voice', 'opera', 'male singer', 'man singing', 'irish', 'man', 'male vocals', 'male', 'vocal', 'singing', 'not english']
['male voice', 'male singer', 'male']
['guitar']
['no voice', 'classical', 'guitar', 'classical guitar']
[]
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'harp', 'piano', 'spanish']
[]
['classical', 'guitar', 'strings', 'medieval', 'lute']
['classical', 'guitar', 'classical guitar']
['classical']
['guitar', 'no singing', 'classic', 'no vocal', 'no singer']
[]
['drums']
['synth', 'drums', 'no vocal', 'jungle', 'rock', 'techno']
['beats', 'new age', 'funk', 'drums', 'electronic', 'fast', 'modern', 'dance', 'techno', 'beat', 'soft']
['chorus', 'choral', 'choir']
['female', 'choral', 'opera', 'female vocals', 'choir']
['chorus', 'vocals', 'choral', 'chant', 'vocal', 'singing', 'soft', 'choir', 'women']
['opera', 'choir']
['plucking', 'classical', 'guitar', 'quiet', 'string', 'no vocal', 'no vocals', 'slow']
['classical', 'guitar', 'solo', 'strings', 'lute']
['classical', 'guitar', 'strings', 'slow']
['guitar']
[]
[]
['classical', 'harp', 'slow', 'soft']
['no voice', 'chimes', 'guitar', 'ambient', 'new age', 'strings', 'no vocal', 'no vocals', 'instrumental', 'harp', 'piano', 'slow', 'soft']
['female', 'drums', 'singing', 'not english']
['drums']
['ambient', 'drums', 'no violin']
['drum', 'bass', 'drums', 'low', 'slow', 'beat']
['classical', 'solo', 'piano', 'slow', 'piano solo', 'soft']
['classical', 'piano']
['classical', 'violin']
['female', 'quiet', 'voice', 'opera', 'singing', 'soft']
['singer', 'vocals', 'female', 'opera', 'female vocal', 'slow', 'vocal', 'singing']
['classical', 'female']
['female', 'female voice', 'voice', 'opera', 'woman']
['silence', 'quiet', 'woman', 'singing']
['female', 'opera', 'fast', 'violin', 'irish', 'vocal', 'woman singing', 'singing']
['guitar']
['guitar', 'singing']
[]
['ambient', 'no vocals', 'low', 'soft']
['quiet', 'ambient', 'airy', 'electronic', 'strange', 'slow']
['slow']
[]
['violin', 'slow']
['ambient']
['ambient', 'slow']
['slow']
[]
['classical', 'quiet', 'ambient', 'strings', 'mellow', 'slow']
['funky', 'synth', 'drums', 'electronic', 'fast', 'electronica', 'techno', 'beat']
['jazz', 'drums', 'piano']
['drums', 'no vocals', 'piano']
['electronic', 'weird']
['drum', 'drums', 'electronic', 'weird', 'tribal', 'techno']
[]
['beat']
[]
['beats', 'funky', 'synth', 'drum', 'bass', 'drums', 'electronic', 'fast', 'modern', 'disco', 'dance', 'techno', 'beat', 'upbeat']
[]
['fast', 'rock', 'techno']
['electric', 'electronic', 'fast', 'techno', 'beat']
['fast', 'electro', 'techno']
['vocals', 'drums', 'electronic', 'weird', 'fast', 'electro', 'fast beat', 'dance', 'techno', 'beat', 'upbeat']
['techno', 'beat']
['fast', 'jungle', 'techno', 'beat']
['electronic', 'fast', 'techno', 'house']
['guitar', 'drum', 'country', 'rock']
['country']
['guitar', 'country', 'blues', 'rock', 'singing']
[]
['singing']
['guitar', 'slow', 'singing']
['male vocal']
['vocals', 'voice']
['duet', 'medieval', 'choral', 'singing', 'choir']
['singing']
['choral']
['vocals', 'classical', 'choral', 'opera', 'woman', 'singing', 'choir']
['opera']
['chorus', 'men', 'classical', 'choral', 'opera', 'lol', 'low', 'chant', 'male', 'vocal', 'singing', 'voices', 'monks', 'soft', 'choir']
['vocal', 'choir']
['choral', 'choir']
[]
['classical', 'female', 'choral', 'opera', 'choir']
['chorus', 'voices', 'choir']
['choral', 'opera', 'woman', 'choir']
['chorus', 'choir']
['choral']
['chorus', 'choir']
['choir']
[]
[]
['chant']
['chanting', 'choral', 'opera', 'male vocals', 'male']
['choral', 'opera', 'chant', 'monks', 'choir']
['opera']
['opera', 'slow', 'singing']
[]
['male vocal', 'vocals', 'male voice', 'opera', 'chant', 'man', 'male']
['opera', 'chant', 'male']
['no piano', 'weird', 'opera']
['men', 'chanting', 'choral', 'male vocals', 'vocal']
[]
['chant', 'man', 'male']
['male vocal', 'vocals', 'opera', 'chant', 'man', 'male']
[]
['chanting', 'chant', 'monks']
['male vocal', 'male voice', 'loud', 'choral', 'opera', 'chant', 'man', 'male', 'singing', 'monks']
['choral', 'opera', 'chant', 'male']
['men', 'male', 'monks']
['men', 'no guitar', 'opera', 'chant', 'vocal', 'choir']
['male vocal', 'no strings', 'chanting', 'choral', 'opera', 'chant', 'man', 'male', 'vocal', 'monks', 'choir']
['chorus', 'vocals', 'choral', 'male', 'voices']
['men', 'chant', 'singing', 'monks', 'choir']
['chant', 'choir']
['male vocal']
['chant', 'choir']
['men', 'chanting', 'choral', 'chant', 'male', 'choir']
['choral', 'chant']
[]
['vocals', 'middle eastern', 'eastern']
['middle eastern', 'no vocals', 'eastern', 'vocal', 'indian']
[]
['middle eastern', 'arabic', 'eastern', 'male', 'indian', 'india']
['celtic', 'vocal', 'woman']
[]
[]
[]
['vocal', 'singing']
[]
['fast']
['no piano', 'electric', 'ambient', 'synth', 'electronic', 'echo', 'techno']
['no voice', 'funky', 'no piano', 'jazz', 'guitar', 'funk', 'drums', 'slow', 'jazzy', 'techno', 'beat']
['electric', 'synth', 'electronic', 'techno']
['guitar', 'vocal', 'rock', 'singing']
['hip hop']
['rap', 'hip hop']
[]
['electronic', 'weird', 'male vocals', 'vocal', 'indian', 'noise', 'rap']
['vocals', 'loud', 'weird', 'modern', 'pop', 'echo', 'male', 'vocal', 'techno', 'rap', 'hip hop']
['loud', 'weird', 'opera', 'choir']
['classical', 'strings', 'opera', 'singing', 'choir']
['chorus', 'classical', 'choral', 'opera', 'choir']
['classical', 'opera', 'choir']
['horns', 'classical', 'orchestra']
['harpsichord', 'no piano', 'classical', 'guitar', 'strings', 'violin', 'harp', 'piano', 'slow']
['classical', 'ambient', 'strings', 'violin', 'harp', 'piano', 'slow']
['classical', 'strings', 'classic', 'violin', 'irish', 'harp', 'indian']
['classical', 'guitar', 'strings', 'indian']
[]
['guitar', 'strings']
['guitar', 'quick']
['guitar', 'fast']
['guitar', 'fast', 'no vocals', 'harp']
['harpsichord', 'guitar', 'strings', 'violin', 'no vocals', 'eastern', 'indian']
[]
['sitar', 'strings', 'indian']
['indian']
['sitar', 'drums', 'indian']
['sitar', 'guitar', 'middle eastern', 'drums', 'eastern', 'indian']
['sitar', 'indian']
['synth', 'loud', 'electronic', 'weird', 'fast', 'electro', 'bells', 'techno']
['synth', 'techno']
['electronic', 'industrial', 'rock', 'techno']
['loud', 'fast', 'techno']
['loud', 'drums', 'modern', 'techno', 'beat']
['beats', 'electric', 'loud', 'drums', 'fast', 'techno', 'beat']
['violin', 'cello']
['classical', 'strings', 'violin', 'cello']
[]
['classical', 'strings', 'classic', 'violin', 'viola']
[]
['classical', 'solo', 'violins', 'strings', 'string', 'violin', 'no vocals', 'orchestral', 'slow', 'cello', 'baroque']
['classical', 'quiet', 'solo', 'piano', 'sad', 'slow', 'piano solo']
['violin', 'piano']
['piano']
['slow']
[]
[]
['female', 'ambient', 'bass', 'electronic', 'choral', 'electronica', 'slow', 'vocal', 'singing', 'choir']
['female', 'female voice', 'synth', 'female vocal', 'vocal', 'woman', 'woman singing', 'voices']
[]
['classical', 'female', 'new age', 'slow']
[]
['quiet', 'ambient', 'slow', 'soft']
['ambient', 'new age', 'synth', 'drums', 'fast', 'instrumental', 'techno', 'beat']
['beats', 'synth', 'electronic', 'fast', 'no vocals', 'instrumental', 'trance', 'dance', 'techno', 'clapping', 'beat']
['fast', 'dance', 'techno']
['choral', 'choir']
['chorus', 'opera', 'choir']
['vocals', 'female', 'pop', 'vocal', 'woman singing']
['vocals', 'female', 'female voice', 'drums', 'vocal']
['female', 'fast', 'female vocal']
['female voice', 'electronic', 'fast', 'techno']
['classical', 'classic', 'fast', 'piano']
['piano']
['classical', 'piano']
['piano']
['classical', 'fast', 'piano']
['classical', 'fast', 'piano']
['classical', 'fast', 'no flute', 'piano']
['classical', 'classic', 'fast', 'piano']
['fast', 'piano']
['fast', 'piano']
['solo', 'classic', 'fast', 'piano']
['classical', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin']
['classical', 'solo', 'strings', 'violin', 'cello']
['no voice', 'classical', 'quiet', 'strings', 'no vocal', 'violin', 'instrumental', 'cello']
['classical', 'quiet', 'strings', 'violin', 'cello']
[]
['clasical', 'classical', 'solo', 'violins', 'strings', 'classic', 'violin', 'cello']
['ambient']
['ambient', 'synth', 'voice', 'bass', 'male voice', 'electronic', 'talking', 'trance', 'man', 'male', 'scary', 'dance', 'techno']
[]
['ambient', 'loud', 'drums', 'electronica']
[]
[]
[]
['spacey', 'ambient', 'new age', 'synth', 'electronic', 'man', 'voices', 'techno']
['opera']
['classical', 'strings', 'opera', 'violin', 'female vocal']
[]
['fast', 'pop', 'spanish', 'techno', 'beat']
['male vocal', 'guitar', 'funk', 'drums', 'spanish', 'singing']
['vocals', 'female', 'pop', 'rock', 'techno']
['spanish', 'singing']
['vocals', 'funky', 'male vocals', 'spanish', 'vocal']
['pop', 'spanish']
[]
['funky', 'loud', 'fast', 'sax', 'vocal', 'singing', 'upbeat']
['male vocal', 'male voice', 'opera', 'man singing', 'male opera', 'man', 'male vocals', 'male', 'vocal']
['chorus', 'male vocal', 'vocals', 'horns', 'classical', 'strings', 'male voice', 'opera', 'male opera', 'man', 'slow', 'male', 'vocal', 'singing']
['male vocal', 'opera', 'male opera']
['classical', 'quiet', 'opera']
['male vocal', 'classical', 'male voice', 'choral', 'opera', 'man', 'male', 'vocal', 'singing']
['classical', 'guitar', 'synth', 'strings', 'orchestral', 'orchestra', 'slow']
['guitar', 'spanish']
['guitar', 'strings', 'pop', 'spanish']
[]
['guitar', 'spanish']
['guitar', 'fast', 'spanish']
['guitar', 'acoustic', 'acoustic guitar']
['guitar']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'medieval', 'slow']
['classical', 'guitar', 'solo', 'classical guitar', 'slow', 'soft']
['classical', 'guitar', 'solo', 'acoustic guitar', 'slow']
['guitar']
['guitar', 'no singing', 'no vocal', 'different', 'soft']
[]
['beats', 'fast', 'techno', 'upbeat']
[]
['voice', 'electronic', 'weird', 'fast', 'techno', 'not english']
['vocals', 'foreign', 'female', 'female voice', 'loud', 'fast', 'techno']
[]
[]
['sitar', 'male vocal', 'vocals', 'foreign', 'loud', 'fast', 'man', 'male vocals', 'eastern', 'male', 'indian', 'singing']
[]
['guitar', 'male voice', 'opera', 'man', 'male', 'vocal', 'baroque']
['male']
['male vocal', 'classical', 'guitar', 'male voice', 'opera', 'man singing', 'man', 'male', 'vocal', 'not english']
['male vocal', 'foreign', 'guitar', 'voice', 'male voice', 'male', 'not english', 'baroque']
[]
['male vocal', 'vocals', 'voice', 'lute', 'slow', 'male', 'singing']
['ambient', 'no guitar', 'soft']
['vocals', 'male voice', 'loud', 'drums', 'fast', 'male vocals', 'rock', 'techno', 'metal']
[]
['guitar', 'synth', 'loud', 'fast', 'piano']
['male vocal', 'vocals', 'ambient', 'synth', 'voice', 'loud', 'electronic', 'not classical', 'man', 'piano', 'vocal', 'singing']
['classical']
['harpsichord', 'classical', 'strings', 'fast', 'violin', 'oboe', 'baroque']
['classical', 'violins', 'strings', 'orchestra']
['country']
['guitar', 'banjo', 'country']
[]
['guitar', 'banjo', 'folk', 'strings', 'country', 'no vocals']
[]
['female', 'guitar', 'bass', 'slow', 'vocal', 'woman', 'jazzy', 'beat']
['drums', 'slow']
['female', 'ambient', 'drums', 'electronic', 'electro', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'techno', 'beat', 'rap']
[]
['vocals', 'techno']
['singing']
['electronic', 'fast', 'voices', 'techno']
['techno']
['techno']
['reggae']
[]
['classical', 'guitar', 'harp']
['no voice', 'classical', 'guitar', 'acoustic']
['guitar']
['guitar']
['classical', 'guitar', 'strings', 'slow']
['classical', 'guitar']
['classical', 'guitar', 'lute', 'slow']
['no voice', 'harpsichord', 'classical', 'guitar', 'solo', 'folk', 'strings', 'medieval', 'acoustic', 'string', 'classical guitar', 'slow']
['male', 'rock']
['guitar', 'punk', 'rock']
['hard rock', 'guitar', 'loud', 'hard', 'rock', 'metal']
['hard rock', 'rock']
['drum', 'male voice', 'male', 'vocal', 'rock']
['rock']
['harpsichord', 'guitar', 'no vocal']
[]
['sitar', 'guitar']
['no voice', 'sitar', 'guitar', 'middle eastern', 'strings', 'string', 'harp', 'eastern', 'indian']
[]
['guitar', 'middle eastern', 'indian']
['sitar', 'guitar', 'banjo', 'strings', 'indian']
[]
['guitar', 'slow']
['guitar']
['classical', 'guitar', 'quiet', 'solo', 'classical guitar', 'harp', 'slow', 'baroque']
['guitar', 'solo', 'strings', 'slow']
['quiet', 'violin']
['clasical', 'classical', 'quiet', 'strings', 'classic', 'violin', 'different']
['classical', 'quiet', 'solo', 'strings', 'violin', 'soft']
['violin']
['classical', 'quiet', 'solo', 'violins', 'strings', 'string', 'no vocal', 'violin', 'slow', 'soft']
['guitar', 'strings', 'string', 'indian']
[]
['sitar', 'guitar', 'banjo', 'strings', 'harp', 'indian']
['guitar']
['harpsichord', 'classical', 'fast', 'piano', 'old']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'classic', 'fast', 'harp', 'piano', 'orchestra', 'baroque']
['guitar', 'loud', 'drums', 'electric guitar', 'country', 'rock']
['rock']
['guitar', 'drums']
['singer', 'male vocal', 'vocals', 'pop', 'male', 'vocal', 'rock', 'singing']
['male vocal', 'soft rock', 'guitar', 'voice', 'male voice', 'man singing', 'man', 'no flute', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing', 'voices']
['classical', 'quiet', 'violin', 'harp', 'oboe', 'flute']
['classical', 'strings', 'violin']
[]
['classical', 'classic', 'oboe', 'flute']
['classic', 'violin']
['harpsichord', 'no piano', 'classical', 'quiet', 'violins', 'strings', 'violin', 'light', 'orchestra', 'flutes', 'slow', 'flute', 'soft']
['classical', 'quiet', 'violins', 'strings', 'classic', 'string', 'violin', 'orchestra', 'flute']
['classical']
['classical', 'classic']
['guitar', 'banjo', 'country', 'blues']
['guitar', 'folk', 'acoustic', 'country', 'blues', 'rock']
['guitar', 'country', 'no vocals', 'blues']
['foreign', 'chant', 'vocal', 'indian']
['sitar', 'foreign', 'guitar', 'middle eastern', 'drums', 'eastern', 'indian', 'no singer']
['female', 'indian']
[]
[]
['organ']
['no guitar']
['happy']
[]
['happy', 'synth', 'keyboard', 'no vocal', 'fast']
['organ']
['synth']
['guitar', 'drums', 'rock']
['guitar']
['guitar']
['guitar']
['classic', 'piano']
['harpsichord', 'classical', 'strings', 'violin', 'cello']
['classical', 'cello']
['harpsichord', 'classical', 'strings', 'harpsicord', 'violin', 'harp', 'slow', 'cello']
['classical', 'oboe']
['guitar', 'slow']
['no voice', 'guitar', 'no singing', 'strings', 'classical guitar', 'no vocals', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'soft']
['classical', 'guitar', 'quiet', 'slow', 'soft']
['guitar', 'quiet', 'solo', 'no vocal', 'slow']
['classical', 'guitar']
['classical', 'violin']
['classical', 'strings', 'classic', 'fast', 'violin', 'slow']
[]
['classical', 'strings', 'flute']
['classical', 'strings', 'flute']
['harpsichord', 'classical', 'strings', 'violin', 'cello', 'flute']
['no voice', 'classical', 'strings', 'no vocal', 'no vocals', 'flute']
[]
[]
['vocals', 'classical', 'male voice', 'male', 'rap', 'hip hop']
['male', 'rap', 'hip hop']
['woman']
['female', 'irish', 'vocal', 'woman', 'woman singing', 'singing']
['vocals', 'classical', 'female', 'female voice', 'opera', 'female vocal', 'celtic', 'indian', 'woman', 'female vocals', 'not english']
['female', 'opera', 'woman']
['sitar', 'drums']
['beats', 'synth', 'drum', 'drums', 'tribal', 'mellow', 'slow']
[]
[]
['guitar']
['no piano', 'guitar']
['guitar', 'strings']
['cello']
['classical', 'strings', 'classic', 'violin', 'viola', 'cello']
['string', 'no guitar', 'violin', 'cello']
['strings', 'no vocal', 'violin', 'cello']
['harpsichord', 'classical', 'harpsicord', 'fast']
['harpsichord', 'guitar', 'classic']
['harpsichord']
['harpsichord', 'guitar', 'classic']
['harpsichord', 'classical', 'harpsicord', 'harp', 'piano', 'baroque']
['classical', 'solo', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'no vocals', 'cello']
['classical', 'solo', 'fast', 'violin', 'cello']
['violin']
['classical', 'solo', 'strings', 'string', 'violin', 'cello']
[]
['classical', 'solo', 'strings', 'violin', 'cello']
['harpsichord']
['harpsichord', 'classical', 'fast', 'instrumental', 'piano']
['ambient', 'no guitar', 'slow']
['not rock', 'instrumental']
[]
['synth', 'techno']
[]
[]
[]
['guitar', 'country', 'blues']
[]
['funky', 'electronic', 'beat']
[]
['beats', 'synth', 'drums', 'electronic', 'techno', 'beat', 'upbeat']
[]
['bass', 'techno', 'rap']
['ambient', 'techno', 'beat']
['bass', 'electronic']
['loud', 'drums', 'electronic', 'weird', 'electro', 'industrial', 'rock', 'techno', 'beat', 'noise']
['heavy', 'loud', 'electronic', 'weird', 'industrial', 'hard', 'rock', 'techno', 'metal']
['industrial']
['drums', 'techno', 'beat']
['no violin', 'violin', 'piano', 'flute']
['vocals', 'jazz', 'blues', 'jazzy']
['men', 'country']
[]
['loud', 'fast', 'rock']
['guitar', 'loud', 'drums', 'fast', 'eastern', 'rock']
['guitar', 'drums', 'no vocal', 'fast', 'rock']
[]
['new age', 'synth', 'modern', 'pop', 'slow', 'techno']
['synth']
['fast', 'techno', 'beat']
['new age', 'synth', 'drums', 'electronic', 'no guitar', 'beat']
['beats', 'no voices', 'techno']
['ambient', 'synth', 'electronic', 'beat']
[]
['techno']
['new age', 'synth', 'drums', 'electronic', 'fast', 'electro', 'no vocals', 'electronica', 'trance', 'disco', 'pop', 'dance', 'techno', 'beat', 'upbeat']
['dance', 'techno']
['male vocal', 'vocals', 'guitar', 'voice', 'male voice', 'drums', 'male singer', 'country', 'man', 'pop', 'male', 'rock']
[]
['male vocal', 'male singer', 'rock']
['male vocal', 'man singing', 'country', 'pop', 'rock']
['synth', 'no violin', 'no vocal', 'no vocals', 'piano', 'slow']
['drums']
['synth', 'drums', 'not classical', 'fast']
['harpsichord', 'chimes', 'new age', 'synth', 'instrumental', 'light', 'piano', 'slow']
['guitar', 'drums']
['vocals', 'funky', 'guitar', 'male voice', 'drums', 'country', 'man', 'pop', 'male vocals', 'blues', 'rock', 'singing']
['loud', 'vocal', 'rock', 'rap']
['male vocal', 'male voice', 'man singing', 'country', 'man', 'pop', 'male', 'singing']
['male vocal', 'male voice', 'country', 'man', 'pop', 'male', 'vocal', 'rock']
['male vocal', 'vocals', 'guitar', 'voice', 'male voice', 'acoustic', 'man', 'male', 'vocal', 'soft']
['male vocal', 'vocals', 'guitar', 'male voice', 'drums', 'male singer', 'man singing', 'country', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal', 'singing', 'calm']
['talking']
['vocal', 'woman']
['female', 'female voice', 'woman']
['drums']
['no flute', 'vocal', 'singing', 'beat']
['drums']
['foreign', 'indian', 'singing']
['female', 'voice', 'drums', 'no vocal', 'talking', 'vocal', 'rap', 'hip hop']
['vocals', 'female', 'female voice', 'synth', 'voice', 'talking', 'vocal', 'woman', 'techno', 'rap']
['arabic', 'indian', 'oriental']
['violin', 'sad', 'cello']
['sad']
['duet', 'celtic', 'vocal', 'not opera']
[]
['harp']
['guitar', 'quiet', 'slow']
['classical', 'guitar', 'solo', 'strings', 'harp', 'piano', 'slow']
['solo', 'strings', 'harp']
['classical', 'guitar', 'strings', 'harp', 'piano']
['guitar', 'quiet', 'harp', 'piano', 'slow']
['guitar', 'harp']
['ambient', 'rock', 'techno']
[]
['drums', 'electronic', 'dance', 'techno', 'beat']
['synth', 'techno']
[]
['electronic', 'rock']
['quiet', 'synth', 'electronic']
['spacey', 'ambient', 'synth', 'space', 'electronic', 'no vocal']
['no voice', 'eerie']
['quiet', 'weird']
['synth', 'slow']
[]
[]
['ambient', 'strings', 'instrumental', 'slow']
['no voice', 'no vocals']
[]
['quiet', 'ambient']
['slow']
['rock']
['guitar']
['guitar', 'male vocals']
['hard rock', 'male vocal', 'vocals', 'heavy', 'guitar', 'male', 'rock']
['chorus', 'men', 'classical', 'chanting', 'choral', 'opera', 'chant', 'male', 'vocal', 'monks', 'choir']
['chorus', 'choral', 'opera', 'man singing', 'choir']
['man']
['female voice', 'voice', 'medieval', 'opera', 'operatic', 'man', 'male', 'vocal', 'woman', 'singing']
['male vocal', 'guitar', 'opera', 'male singer', 'male']
['classical', 'guitar', 'opera', 'man', 'male', 'vocal', 'singing']
['drums']
['vocals', 'male vocals', 'punk', 'rock', 'different']
['rock']
['guitar', 'fast', 'electric guitar', 'rock']
['punk', 'male', 'vocal', 'rock']
['ambient', 'new age', 'strings', 'soft']
['female vocals']
['female', 'female voice', 'female vocal', 'vocal', 'female vocals', 'not opera']
['female', 'ambient', 'synth', 'female vocal', 'woman', 'techno', 'soft']
['female', 'female voice', 'new age', 'synth', 'electronic', 'female vocal', 'woman', 'singing', 'female vocals', 'techno']
[]
['synth', 'dance']
['singer', 'female', 'loud', 'drums', 'electronic', 'fast', 'pop', 'woman', 'rock', 'singing', 'female vocals', 'techno', 'beat']
['female', 'ambient', 'electronic', 'slow', 'vocal', 'beat']
['vocals', 'female', 'ambient', 'synth', 'slow', 'soft']
['electronic']
['synth', 'drums', 'electronic', 'electric guitar', 'electronica', 'rock', 'different', 'techno', 'beat']
['electric', 'electronic', 'dark', 'beat']
['spacey', 'quiet', 'ambient', 'synth', 'slow']
[]
[]
['electronic', 'no vocal', 'no vocals', 'techno']
['synth', 'electronic', 'no vocals']
['ambient', 'synth', 'electronic', 'techno', 'beat']
['electronic']
['electronic', 'no vocal', 'fast', 'techno']
[]
['synth', 'electronic']
['electronic', 'no vocals', 'techno']
['synth', 'no vocal', 'electro', 'no vocals', 'techno', 'house', 'beat']
['no piano', 'synth', 'electronic', 'dance', 'techno', 'beat']
['electronic', 'dance', 'techno']
['harpsichord']
['harpsichord', 'classical', 'no vocals']
['female voice', 'opera']
['sitar', 'indian']
['male vocal', 'vocals', 'guitar', 'weird', 'man', 'male', 'vocal']
[]
['electric', 'ambient', 'loud', 'no drums']
['sitar']
['classical', 'guitar']
['guitar']
['rap', 'hip hop']
['male', 'rap', 'hip hop']
['male vocal', 'rap', 'hip hop']
['beats', 'synth', 'no vocals', 'techno', 'beat']
['synth', 'electronic', 'no vocal', 'fast', 'electro', 'techno', 'beat']
['no piano', 'new age', 'synth', 'fast', 'techno']
[]
['no vocal']
['electric', 'new age', 'synth', 'loud', 'electronic', 'fast', 'no vocals', 'modern', 'techno', 'beat', 'upbeat']
['electronic']
['guitar', 'loud', 'hard', 'rock', 'guitars', 'metal']
['guitar', 'rock']
['heavy', 'loud', 'heavy metal', 'rock', 'metal']
['synth']
['synth', 'loud', 'techno', 'beat']
['no strings', 'ambient', 'synth', 'electronic', 'beat']
['ambient', 'synth', 'drums', 'electronic', 'no vocal', 'weird', 'fast', 'fast beat', 'pop', 'techno']
['fast']
['male vocal', 'quiet', 'male voice', 'opera', 'male singer', 'man singing', 'man', 'male', 'vocal']
['talking', 'man']
[]
['ambient', 'drums', 'no vocal', 'no vocals', 'slow']
['loud', 'piano', 'beat']
['guitar', 'new age', 'voice', 'drums', 'piano', 'slow', 'vocal', 'voices', 'soft']
['ambient']
['voice', 'drums', 'not classical', 'talking', 'weird', 'vocal', 'voices', 'beat']
['jazz', 'drums', 'weird', 'slow']
['guitar', 'rock']
['jazz', 'guitar', 'drums', 'no vocal', 'electric guitar', 'slow', 'blues', 'rock', 'guitars']
['guitar', 'no violin', 'no vocal', 'electric guitar', 'male vocals', 'slow', 'oriental']
[]
['beats', 'drums', 'weird', 'dance', 'flute', 'beat']
['weird', 'fast', 'indian', 'rock', 'techno', 'flute', 'oriental']
['synth', 'no violin', 'fast', 'dance']
[]
[]
[]
['guitar', 'quiet', 'acoustic', 'no vocal', 'no vocals', 'modern', 'mellow', 'slow', 'soft']
['guitar', 'solo', 'no vocal', 'acoustic guitar', 'classical guitar', 'slow']
['guitar', 'quiet', 'strings', 'slow']
['guitar']
['guitar', 'acoustic', 'soft']
['no piano', 'guitar', 'solo', 'no vocal', 'slow']
[]
['vocals', 'foreign', 'female', 'indian', 'singing']
[]
['male vocal', 'strings', 'opera', 'male opera', 'male', 'singing']
['guitar', 'rock']
['guitar']
['male vocal', 'guitar', 'male singer', 'man', 'singing']
[]
['male vocal', 'vocals', 'guitar', 'male voice', 'acoustic', 'man singing', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['guitar']
['male vocal', 'guitar', 'folk', 'acoustic', 'acoustic guitar', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['classical', 'solo', 'strings', 'classic', 'fast', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['quiet']
[]
[]
[]
['rock']
['harpsichord', 'classical', 'harpsicord']
[]
['harpsichord', 'classical', 'harpsicord', 'medieval', 'slow']
['harpsichord', 'harp']
[]
['harpsichord']
['harpsichord', 'strings', 'harpsicord']
['classical', 'quiet', 'violins', 'strings', 'harp', 'piano']
['male vocal', 'classical', 'guitar', 'medieval', 'male voice', 'man', 'male', 'choir']
['male vocal', 'classical', 'violins', 'folk', 'strings', 'man singing', 'violin', 'man', 'celtic', 'vocal', 'singing']
['strings', 'opera', 'violin', 'singing']
['man', 'male']
['drums', 'heavy metal', 'rock']
['rock']
['rock', 'metal']
['guitar', 'rock']
['male vocal', 'drums', 'country', 'pop', 'male', 'rock']
['guitar', 'country']
[]
['male vocal', 'vocals', 'guitar', 'country', 'pop', 'piano', 'male vocals', 'rock']
['techno']
['electric', 'synth', 'techno']
['synth', 'no vocals', 'slow', 'techno']
['guitar', 'ambient', 'new age', 'electronic', 'modern', 'slow']
['no voice', 'guitar', 'no vocals', 'slow', 'rock', 'calm']
['guitar', 'no singing', 'drum', 'drums', 'no vocal', 'fast', 'electric guitar', 'no vocals', 'rock', 'beat']
['hard rock', 'heavy', 'guitar', 'loud', 'drums', 'fast', 'heavy metal', 'rock', 'metal']
['rock']
['hard rock', 'loud', 'man singing', 'man', 'punk', 'male', 'rock']
['male vocal', 'vocals', 'guitar', 'loud', 'fast', 'male vocals', 'punk', 'male', 'rock']
['guitar', 'guitars']
['duet', 'vocals', 'opera', 'vocal', 'woman', 'singing']
['classical', 'guitar', 'medieval', 'vocal', 'woman']
['foreign', 'female', 'voice', 'opera', 'vocal']
['duet', 'classical', 'female', 'guitar', 'strings', 'singing']
['female', 'guitar', 'female voice', 'medieval', 'opera', 'chant', 'female vocal', 'vocal', 'female vocals']
['duet', 'vocals', 'choral', 'vocal', 'singing', 'voices', 'choir']
['funky', 'funk', 'bass', 'drums', 'no vocal', 'no vocals', 'female vocal', 'techno', 'beat']
[]
['not classical', 'techno', 'beat']
[]
['quiet', 'synth', 'slow']
['sad', 'slow']
['slow']
['guitar', 'strings']
[]
['female', 'electronic', 'woman', 'beat']
['female', 'female voice', 'pop', 'female vocal', 'vocal', 'female vocals']
['no strings', 'female', 'ambient', 'voice', 'electronic', 'electro', 'female vocal', 'slow', 'vocal', 'woman', 'female vocals', 'beat', 'female singer']
['pop']
['new age', 'synth', 'dance', 'techno']
['choral', 'choir']
['chorus', 'monks', 'choir']
['chorus', 'vocals', 'classical', 'choral', 'opera', 'choir']
['choral', 'opera', 'vocal', 'choir']
['choral', 'opera', 'choir']
[]
['singing', 'techno', 'beat']
['soft rock', 'pop', 'not opera']
['male singer', 'male']
['pop', 'male vocals']
['female', 'opera', 'female vocal']
['classical', 'female', 'opera', 'violin', 'woman']
['female', 'opera']
['female', 'opera', 'vocal']
['female opera', 'vocals', 'classical', 'quiet', 'strings', 'opera', 'vocal', 'woman', 'singing', 'soft']
['female', 'opera']
['opera', 'woman']
['classical', 'opera', 'violin']
['classical', 'female', 'opera', 'soprano', 'female vocal', 'vocal']
['female', 'female voice', 'opera', 'violin', 'female vocal', 'woman', 'soft']
['opera', 'female singer']
['strings', 'opera', 'violin', 'woman', 'singing']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'classical guitar', 'piano', 'soft']
['medieval']
['guitar', 'solo', 'lute', 'piano', 'calm']
['guitar', 'piano']
['classical', 'guitar', 'strings', 'medieval', 'classic', 'classical guitar', 'lute', 'piano', 'slow']
['classical', 'guitar', 'folk']
['classical']
['guitar']
['guitar', 'calm']
['guitar', 'solo']
['classical', 'guitar', 'harp', 'slow']
['choral', 'slow', 'choir']
['choral', 'choir']
['chorus', 'choral', 'slow', 'soft', 'choir']
['choral', 'no drums', 'choir']
['choral', 'choir']
[]
['guitar', 'banjo', 'fast', 'country']
['guitar']
['guitar']
['classical', 'guitar', 'drums', 'piano', 'slow']
['vocals', 'soft rock', 'guitar', 'male voice', 'loud', 'drums', 'pop', 'male vocals', 'male', 'rock']
[]
[]
['guitar', 'rock']
['guitar', 'fast', 'country', 'rock']
['female', 'guitar', 'female voice', 'pop', 'female vocal', 'vocal', 'woman', 'jazzy', 'female vocals']
['piano']
['silence', 'female', 'voice', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'female vocals', 'flute']
['piano', 'slow', 'flute']
[]
['piano']
['piano']
[]
['silence', 'no guitar', 'flute']
['male vocal', 'soft rock', 'guitar', 'acoustic', 'drums', 'male singer', 'country', 'man', 'pop', 'male vocals', 'slow', 'male', 'singing', 'english']
['guitar', 'not classical', 'acoustic guitar', 'country', 'no flute']
[]
['classical', 'opera', 'flute']
['classical', 'quiet', 'flute']
['opera']
['singer', 'male vocal', 'classical', 'solo', 'voice', 'male voice', 'opera', 'man singing', 'male opera', 'operatic', 'man', 'slow', 'male', 'vocal', 'indian', 'soft', 'choir']
['male vocal', 'vocals', 'soft rock', 'guitar', 'voice', 'male voice', 'modern', 'man', 'pop', 'piano', 'male vocals', 'male', 'vocal', 'rock', 'singing', 'upbeat']
['guitar', 'country', 'man', 'pop', 'male']
['vocals', 'guitar', 'male singer', 'country', 'man', 'pop', 'male', 'rock', 'singing', 'upbeat']
['male vocal']
['male vocal', 'guitar', 'voice', 'drums', 'man singing', 'pop', 'male', 'vocal', 'rock']
['male vocal', 'vocals', 'organ', 'talking', 'man', 'pop', 'piano', 'male vocals', 'male', 'rock']
[]
['female', 'opera', 'female vocal', 'vocal', 'woman', 'female vocals']
['foreign', 'indian']
['chorus', 'vocals', 'female', 'folk', 'female vocal', 'female vocals']
['world', 'foreign', 'female', 'middle eastern', 'arabic', 'chant', 'female vocal', 'slow', 'vocal', 'singing', 'voices', 'choir']
['male vocal', 'soft rock', 'guitar', 'male voice', 'male singer', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['singer', 'classical', 'guitar', 'male singer', 'violin', 'male']
['singer', 'male vocal', 'vocals', 'soft rock', 'guitar', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['man', 'pop', 'male', 'vocal']
[]
['no voice', 'guitar', 'banjo', 'strings', 'country']
['guitar']
['guitar', 'banjo', 'country']
['harpsichord', 'classical', 'guitar', 'strings', 'light', 'slow', 'flute', 'soft']
['harpsichord', 'classical', 'folk', 'fast', 'flutes', 'flute', 'baroque']
['harpsichord', 'classical', 'strings', 'medieval', 'violin', 'flute']
['no vocal', 'flute']
['harpsichord', 'classical', 'irish', 'flutes', 'flute']
['classical', 'guitar', 'fast', 'harp']
['guitar']
[]
['chorus', 'female', 'opera', 'vocal', 'choir', 'women']
['choral', 'choir']
['chorus', 'female', 'choral', 'opera', 'singing', 'choir']
['synth', 'electronic', 'electro', 'techno']
['male']
['synth', 'piano', 'techno']
['beat']
['vocals', 'pop', 'techno', 'beat']
['male vocal', 'male', 'vocal', 'rock', 'singing', 'techno']
['no voice', 'beats', 'jazz', 'slow', 'beat']
[]
['vocals', 'jazz', 'male voice', 'drums', 'fast', 'male']
['vocals', 'jazz', 'drums', 'vocal', 'jazzy', 'singing']
['male vocal', 'vocals', 'modern', 'pop', 'woman']
['pop']
['man', 'pop', 'vocal']
['female voice', 'woman']
['female', 'opera', 'harp', 'woman']
['female', 'guitar', 'opera', 'vocal', 'woman', 'singing']
['classical', 'female', 'guitar', 'female voice', 'voice', 'classic', 'opera', 'operatic', 'female vocal', 'vocal', 'singing', 'female vocals']
['classical', 'opera', 'female vocal', 'woman', 'singing']
['harpsichord', 'guitar', 'quiet', 'strings', 'slow', 'baroque']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'no vocals', 'harp', 'piano', 'slow', 'soft']
[]
['harpsichord', 'classical', 'solo', 'slow', 'baroque']
[]
['classical', 'strings', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'no vocal', 'violin', 'no vocals', 'piano', 'baroque']
['classical', 'strings', 'classic', 'orchestra']
['classical']
['classical', 'strings', 'fast', 'violin']
[]
['classical', 'guitar', 'banjo', 'classical guitar', 'mellow', 'slow']
['guitar', 'acoustic', 'blues']
['chorus', 'classical', 'opera']
['classical', 'quiet', 'classic', 'choral', 'opera', 'male']
[]
[]
['no singer', 'rock']
['rock', 'metal']
['rock']
['male vocal', 'rock']
['hard rock', 'male vocal', 'rock']
['male vocal', 'vocals', 'guitar', 'loud', 'rock', 'singing']
['guitar', 'bass', 'rock']
['guitar', 'rock']
['classical', 'guitar', 'quiet', 'harp', 'piano', 'slow']
['female vocal', 'woman']
[]
['female', 'female vocal', 'vocal']
['rap']
[]
[]
['rap', 'hip hop']
['classical', 'opera', 'choir']
['vocals', 'classical', 'strings', 'choral', 'opera', 'orchestra', 'vocal', 'female vocals', 'soft', 'choir']
['electric', 'ambient', 'synth', 'drums', 'electronic', 'echo', 'techno', 'beat', 'noise']
['synth', 'drum', 'repetitive', 'electronic', 'reggae', 'slow', 'techno', 'beat']
['beats', 'new age', 'synth', 'no singing', 'bass', 'drums', 'no guitar', 'no vocal', 'electro', 'trance', 'slow', 'rock', 'techno', 'beat']
['foreign', 'voice', 'male voice', 'drums', 'male', 'vocal', 'indian', 'voices']
['male vocal', 'reggae']
['drums']
['guitar']
['vocals', 'guitar', 'folk']
['vocals', 'guitar', 'man', 'slow']
['guitar']
['guitar', 'drums', 'electric guitar', 'rock']
['hard rock', 'guitar', 'heavy metal', 'male', 'rock']
[]
['punk', 'male', 'rock']
['ambient', 'airy', 'electronic', 'slow']
[]
['ambient', 'no guitar', 'bells', 'slow']
['dark']
[]
['no voice', 'ambient', 'no singing', 'no guitar', 'indian', 'flute']
['dark', 'slow', 'scary']
[]
['vocals', 'ambient', 'chanting', 'bells']
['spacey', 'quiet', 'ambient', 'space', 'weird', 'no vocals']
['sitar', 'middle eastern', 'lol', 'slow']
['plucking', 'sitar', 'guitar', 'percussion', 'drum', 'no vocals', 'slow', 'indian', 'oriental']
['sitar']
['modern', 'indian']
['sitar', 'guitar', 'ambient', 'eastern', 'slow', 'indian', 'oriental']
['electronic', 'no vocal', 'weird', 'indian']
['sitar', 'drums', 'electronic', 'fast', 'no vocals', 'celtic', 'indian']
['harpsichord']
['harpsichord', 'classical']
['no singing', 'percussion', 'drum', 'drums', 'tribal', 'slow']
[]
[]
['female', 'drums', 'chanting', 'tribal', 'vocal', 'woman', 'female vocals']
['drums', 'tribal', 'female vocals']
[]
['choral', 'chant', 'male']
[]
['choral', 'voices', 'choir']
[]
['male vocal', 'choral', 'opera', 'male']
[]
['vocals', 'guitar', 'voice', 'male voice', 'fast', 'male vocals', 'punk', 'male', 'rock']
['singer', 'male vocal', 'guitar', 'fast', 'male vocals', 'rock']
['no voice', 'hard rock', 'beats', 'guitar', 'loud', 'drums', 'fast', 'instrumental', 'rock', 'guitars', 'upbeat']
['guitar', 'rock']
['no voice', 'drums', 'fast', 'no vocals', 'techno', 'beat']
['drums', 'fast', 'fast beat', 'techno']
['drum', 'drums', 'fast', 'techno', 'beat']
['heavy', 'beats', 'drums', 'fast', 'techno']
['drums']
['guitar', 'solo', 'classical guitar', 'slow']
['plucking', 'classical', 'guitar', 'quiet', 'solo', 'no vocals', 'spanish', 'slow', 'soft']
['classical', 'guitar']
[]
['classical', 'guitar']
['classical', 'slow']
['drums', 'man', 'male', 'vocal', 'rock']
['male vocal', 'guitar', 'male voice', 'drums', 'electric guitar', 'rock']
[]
['no piano', 'jazz', 'guitar', 'drums', 'electric guitar', 'slow', 'rock', 'beat']
['guitar', 'drums', 'indian']
['silence']
['opera']
['female', 'opera']
['opera', 'woman', 'singing']
['vocals', 'classical', 'female', 'solo', 'female voice', 'voice', 'opera', 'vocal', 'woman']
[]
['harpsichord']
['harpsichord', 'classical', 'solo', 'strings']
['no voice', 'guitar', 'no vocals', 'slow', 'soft']
['vocals', 'guitar']
[]
['female', 'jazz', 'guitar', 'female voice', 'funk', 'pop', 'female vocal', 'vocal', 'woman', 'female vocals', 'english']
['female', 'jazz', 'drums', 'pop', 'female vocal', 'woman', 'woman singing', 'rock']
[]
['female', 'female voice', 'modern', 'pop', 'female vocal', 'woman', 'rock', 'female vocals']
['female', 'female voice', 'drums', 'pop', 'female vocal', 'woman', 'rock', 'female vocals', 'beat']
[]
['no voice', 'no singing', 'strings']
['classical', 'guitar', 'no vocal', 'no vocals', 'slow']
['classical', 'guitar']
['flute']
['classical']
['silence', 'classical', 'guitar', 'quiet', 'folk', 'strings', 'country', 'slow']
['sitar', 'classical', 'guitar', 'banjo', 'classical guitar', 'country']
['classical guitar']
['guitar', 'folk', 'country', 'man']
['male vocal', 'vocals']
['male vocal', 'female', 'guitar', 'folk', 'voice', 'acoustic', 'man', 'male', 'vocal', 'singing']
['no voice', 'folk', 'strings', 'violin', 'instrumental']
['guitar', 'violin', 'fiddle']
['no voice', 'guitar', 'strings', 'country', 'violin']
['guitar', 'no singing', 'strings', 'no vocal', 'violin']
['sitar', 'classical', 'guitar', 'slow']
[]
['harpsicord']
['no voice', 'harpsichord', 'sitar', 'no piano', 'classical', 'strings', 'string', 'fast', 'harp', 'piano', 'eastern', 'indian']
['harpsichord', 'classical', 'strings', 'harpsicord', 'instrumental', 'harp']
['piano']
['harpsichord', 'guitar', 'no vocal', 'piano']
['no voice', 'classical', 'guitar', 'solo', 'folk', 'acoustic', 'no vocal', 'old', 'spanish', 'slow']
['beats', 'drum', 'drums', 'talking', 'reggae', 'man', 'male vocals', 'male', 'beat', 'rap', 'hip hop']
['pop']
['male vocal', 'man', 'pop', 'male vocals', 'male', 'vocal', 'singing']
['male vocal', 'vocals', 'male voice', 'drums', 'reggae', 'man', 'pop', 'male vocals', 'male', 'singing']
['guitar', 'rock']
['vocal']
['guitar', 'banjo', 'solo', 'folk', 'no vocal', 'fast', 'country']
['guitar', 'banjo']
['banjo']
['guitar', 'banjo']
['classical', 'jazz', 'guitar', 'solo', 'no vocal', 'no vocals', 'slow', 'jazzy']
['jazz', 'guitar', 'quiet', 'solo', 'acoustic', 'spanish', 'slow', 'jazzy', 'soft']
['slow']
['drums', 'electro', 'techno', 'beat']
[]
['repetitive', 'drums', 'electronic', 'fast', 'electronica', 'techno', 'beat']
['drum', 'drums', 'fast', 'trance', 'industrial', 'dance', 'techno', 'beat']
['beats', 'drums', 'fast', 'disco', 'dance', 'techno', 'beat']
[]
['harp']
['violin']
['violin']
['classical', 'voice', 'strings', 'male voice', 'opera', 'violin']
['male vocal', 'voice', 'opera', 'male']
['classical', 'strings']
['opera', 'male singer']
['classical', 'male voice', 'opera', 'man']
['classical', 'opera', 'male singer', 'male opera', 'man', 'male', 'vocal']
[]
['classical', 'violins', 'violin']
['harpsichord', 'classical', 'quiet', 'opera', 'male singer', 'male opera', 'slow', 'singing']
['classical', 'opera', 'male']
['classical', 'strings', 'string', 'baroque']
['classical', 'piano', 'slow']
['classical', 'piano']
['piano']
[]
['guitar', 'drum', 'drums', 'rock']
['rock']
[]
['classical', 'opera', 'violin']
['classical', 'female', 'opera', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'women']
['vocals', 'female', 'female voice', 'strings', 'opera', 'slow', 'woman']
[]
[]
[]
['male vocal', 'guitar', 'male', 'vocal']
['piano']
['piano']
['solo', 'piano']
['classical', 'violin', 'piano', 'cello']
['piano']
['piano']
['classical', 'piano']
['guitar', 'voice', 'talking', 'vocal', 'rock']
['loud', 'fast', 'punk', 'rock', 'metal']
['rock']
['solo', 'string', 'violin', 'no vocals', 'slow']
['classical', 'violin']
[]
['classical', 'solo', 'violin', 'cello']
['plucking', 'sitar', 'foreign', 'guitar', 'banjo', 'strings', 'string', 'weird', 'no vocals', 'indian', 'oriental']
['strings']
['solo', 'strings', 'violin', 'cello']
['techno']
['electronic', 'fast', 'techno', 'beat']
['beats', 'dance', 'techno']
['middle eastern', 'drums', 'tribal', 'indian']
['drums']
['drum', 'drums', 'tribal']
['drums', 'eastern', 'indian']
['beat']
['drums', 'jungle']
['beats', 'drums']
['female', 'classic', 'opera', 'woman']
['opera']
['classical', 'opera', 'flute']
['classical', 'violins', 'strings', 'classic', 'violin', 'baroque']
[]
['harpsichord']
[]
['opera']
[]
['vocals', 'classical', 'female', 'guitar', 'female voice', 'voice', 'opera', 'harp', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals']
[]
['guitar', 'country']
['guitar', 'country', 'slow']
['guitar']
['harpsichord', 'cello']
['strings']
['violin', 'flute']
['classical', 'guitar', 'strings', 'violin']
['female', 'guitar', 'pop', 'female vocal', 'vocal', 'woman', 'rock']
['female', 'girl', 'modern', 'pop', 'woman', 'rock', 'singing', 'female singer']
['female', 'guitar', 'girl', 'loud', 'drums', 'pop', 'woman', 'singing', 'female vocals', 'female singer']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'flutes', 'flute', 'baroque']
['classical', 'strings', 'classic', 'fast', 'violin', 'irish', 'flutes', 'flute']
['electronic', 'electronica', 'techno', 'beat']
[]
['pop']
['soft rock', 'guitar', 'electric', 'synth', 'drums', 'fast', 'country', 'pop', 'mellow', 'rock', 'upbeat']
['synth', 'electronic', 'weird', 'no vocals', 'fast beat', 'techno']
['opera', 'choir']
['female singing', 'female opera', 'female', 'opera', 'female vocal', 'vocal', 'woman', 'singing']
['male vocal', 'classical', 'opera', 'violin', 'male opera', 'man', 'male', 'vocal']
['vocals', 'classical', 'female', 'solo', 'violins', 'female voice', 'classic', 'choral', 'opera', 'operatic', 'male', 'vocal', 'singing']
['guitar']
[]
['female', 'guitar', 'voice']
['chorus']
['vocals', 'female', 'no guitar', 'choral', 'chant', 'vocal', 'singing', 'voices', 'choir']
[]
['chorus', 'vocals', 'vocal', 'choir']
['vocals', 'choral', 'vocal', 'female vocals', 'oriental', 'choir']
['guitar']
[]
['guitar', 'quiet', 'banjo', 'strings', 'classical guitar', 'no vocals', 'slow', 'no drums', 'soft']
['guitar']
[]
['synth', 'drums', 'weird']
['electronic', 'techno']
['electronic', 'modern', 'techno']
[]
['synth', 'no singing', 'drum', 'drums', 'electronic', 'weird', 'techno']
[]
['classical', 'solo', 'no singing', 'classic', 'piano', 'slow']
['classical', 'solo', 'piano', 'slow']
['ambient', 'electronic', 'piano', 'slow', 'different']
['beats', 'female voice', 'synth', 'drum', 'voice', 'bass', 'female vocal', 'piano', 'slow', 'woman', 'techno', 'beat']
['piano', 'slow', 'beat']
['ambient', 'drum', 'drums', 'weird', 'piano', 'slow']
[]
['female', 'piano']
[]
['beats', 'drum', 'drums', 'tribal', 'bells']
[]
['drums', 'beat']
[]
['beats', 'drums', 'fast', 'tribal', 'beat']
['drum', 'drums']
['bongos', 'percussion', 'drum', 'drums', 'fast', 'tribal', 'no vocals', 'bells', 'jungle', 'oriental', 'beat']
['electronic', 'techno']
['loud', 'drums', 'electronic', 'fast', 'pop', 'rock']
['cello']
['classical', 'strings', 'classic', 'orchestra', 'slow', 'cello']
[]
['quiet', 'ambient', 'synth', 'electronic', 'slow', 'calm']
['no voice', 'organ', 'no vocals', 'slow', 'no singer']
['ambient', 'new age', 'synth']
['classical', 'ambient', 'new age', 'synth', 'strings', 'violin', 'slow', 'soft']
['no beat', 'wind', 'ambient', 'new age', 'instrumental', 'slow']
['ambient', 'no guitar']
['new age', 'electronica']
['ambient', 'new age', 'synth', 'strings', 'electronic', 'electro', 'slow']
[]
['ambient', 'new age', 'synth', 'classic', 'no vocals', 'electronica', 'instrumental', 'slow', 'techno']
['no voice', 'no beat', 'ambient', 'synth', 'airy', 'no vocal', 'slow']
['ambient', 'electronic', 'bells', 'techno']
['airy']
[]
['organ']
['no vocals']
['folk', 'not rock', 'instrumental']
['loud', 'fast', 'no vocals', 'irish']
['eastern']
['middle eastern', 'strings', 'drums', 'irish', 'eastern', 'indian', 'upbeat']
['choral', 'choir']
[]
['vocal', 'choir']
['chorus', 'choral', 'choir']
['classical', 'guitar', 'string', 'harp', 'slow']
['guitar']
['classical', 'strings', 'opera', 'violin', 'vocal']
['female opera', 'vocals', 'classical', 'female', 'female voice', 'opera', 'female vocal', 'vocal', 'woman', 'woman singing', 'singing']
['singer', 'chorus', 'classical', 'female', 'voice', 'opera', 'woman', 'singing', 'female vocals']
[]
[]
['opera', 'woman', 'calm']
[]
['classical']
['classical', 'female', 'opera', 'woman']
['female opera', 'classical', 'female', 'opera', 'violin', 'vocal', 'woman', 'woman singing']
['classical', 'female', 'female voice', 'strings', 'opera', 'violin', 'vocal', 'woman']
['choir']
['vocals', 'classical', 'female', 'female voice', 'voice', 'medieval', 'choral', 'female vocal', 'female vocals']
[]
[]
['guitar', 'drums', 'pop', 'slow', 'no drums']
['guitar']
['guitar']
['guitar', 'slow']
[]
[]
['synth', 'electronic', 'electro', 'no vocals', 'techno']
['vocals', 'beats', 'foreign', 'female', 'female voice', 'ambient', 'middle eastern', 'drum', 'drums', 'female vocal', 'vocal', 'indian', 'woman', 'singing', 'female vocals', 'beat']
['percussion', 'drums', 'modern', 'beat']
['vocals', 'beats', 'synth', 'funk', 'voice', 'electronic', 'not rock', 'talking', 'weird', 'modern', 'pop', 'vocal', 'rock', 'dance', 'voices', 'techno', 'house', 'beat']
['spacey', 'female voice', 'synth', 'weird', 'slow']
['voice']
[]
[]
[]
[]
['vocals', 'chanting', 'chant', 'vocal', 'indian', 'singing', 'not english']
[]
['guitar', 'beat']
['drum', 'drums', 'no vocal', 'beat']
['trumpet']
['horns', 'jazz', 'trumpet', 'weird', 'chant', 'bells', 'sax', 'singing', 'choir']
['vocals', 'female', 'jazz', 'guitar', 'new age', 'voice', 'drums', 'choral', 'vocal', 'woman', 'jazzy', 'different', 'choir', 'women']
['funky', 'horns', 'jazz', 'guitar', 'funk', 'trumpet', 'jazzy', 'beat', 'upbeat']
['female', 'guitar', 'pop', 'female vocal', 'female vocals']
['classical', 'solo', 'strings', 'classic', 'violin', 'cello']
['no voice', 'classical', 'strings', 'violin', 'deep', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'no vocal', 'opera', 'fast', 'violin', 'slow', 'cello']
['cello']
['strings', 'violin', 'cello']
['beats', 'electronic', 'fast', 'techno', 'beat', 'upbeat']
['fast', 'no vocals', 'dance', 'techno']
['drums', 'dance', 'techno']
['beats', 'no vocal', 'fast', 'techno', 'beat']
['fast', 'techno', 'upbeat']
['fast', 'no vocals', 'electronica', 'disco', 'dance', 'techno', 'house', 'beat', 'upbeat']
[]
['singing']
['guitar', 'acoustic', 'country', 'blues']
['guitar', 'country', 'upbeat']
[]
['guitar', 'blues']
['no piano', 'guitar', 'banjo', 'country']
['bass', 'electro', 'techno']
[]
['hard rock', 'guitar', 'loud', 'rock']
['hard rock', 'punk', 'rock']
['guitar', 'loud', 'fast', 'vocal', 'rock']
['hard rock', 'guitar', 'fast', 'rock']
['synth', 'electronic', 'bells']
['no drums']
['classical', 'strings', 'violin', 'orchestra', 'slow', 'cello']
['classical', 'strings', 'violin', 'orchestra', 'calm']
[]
['classical', 'guitar', 'quiet', 'piano', 'no drums', 'soft']
['classical', 'guitar', 'piano', 'slow']
['piano', 'piano solo']
['classical', 'piano', 'soft']
['classical', 'classic', 'piano']
[]
['piano']
['piano']
[]
['voice', 'vocal', 'choir']
['choir']
['chorus', 'choral', 'opera', 'male', 'choir']
['chorus', 'vocals', 'choral', 'opera', 'male', 'singing', 'voices', 'choir']
['choral']
['duet', 'female opera', 'female', 'opera', 'vocal']
['classical', 'female', 'female voice', 'classic', 'opera']
['opera']
['guitar', 'drums', 'no singer', 'rock']
['singer', 'male vocal', 'guitar', 'voice', 'electric guitar', 'male', 'rock', 'metal']
['rock']
['bass', 'rock']
['piano']
['female', 'ambient', 'new age', 'synth', 'voice', 'electronic', 'echo', 'woman', 'techno', 'soft']
['loud', 'electronic', 'fast', 'electronica', 'trance', 'slow', 'woman', 'dance']
['female', 'voice', 'woman', 'female vocals']
[]
[]
['strings', 'slow']
['piano', 'slow']
['beats', 'drum', 'drums', 'piano', 'slow', 'beat']
['synth', 'drums', 'electronic', 'no vocals', 'piano', 'slow', 'beat']
[]
['ambient', 'synth', 'electronic', 'piano']
[]
[]
['beat']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'spanish', 'slow']
['classical', 'guitar', 'solo', 'acoustic', 'classical guitar']
['sitar', 'guitar', 'slow']
[]
['classical', 'opera', 'male']
['female', 'quiet', 'opera', 'vocal']
['female opera', 'female', 'opera', 'slow', 'singing']
['quiet', 'male voice', 'opera', 'man', 'male']
['quiet', 'no vocal', 'piano', 'slow']
['synth', 'slow']
['classical', 'ambient', 'new age', 'lol', 'piano', 'slow', 'soft']
['synth']
['guitar', 'slow']
['electronic', 'techno']
['beats', 'electronic', 'techno']
['electronic', 'techno', 'beat']
['no voice', 'drums', 'electronic', 'techno']
['drum', 'drums', 'fast', 'punk', 'rock', 'metal']
['fast', 'punk', 'rock']
['no piano', 'classical', 'solo', 'strings', 'violin', 'slow']
['no voice', 'classic', 'no vocal', 'violin', 'irish', 'piano']
['guitar']
[]
['eerie', 'ambient', 'synth']
['eerie', 'ambient']
['ambient', 'weird', 'dark', 'slow', 'scary']
['quiet', 'ambient']
['man']
['male vocal', 'vocals', 'guitar', 'male singer', 'man', 'pop', 'male vocals', 'slow', 'male', 'vocal']
['vocals', 'guitar', 'drums', 'man', 'pop', 'slow', 'male', 'vocal', 'soft']
['soft rock', 'male']
['guitar', 'hard', 'slow', 'rock']
['classical', 'violins', 'ambient', 'strings', 'bass', 'string', 'no vocal', 'weird', 'violin', 'dark', 'low', 'sad', 'slow', 'cello']
['new age', 'synth', 'space']
['dance', 'techno', 'beat']
['electronic', 'weird', 'fast', 'techno']
['ambient', 'electronic', 'techno']
[]
['guitar', 'acoustic', 'slow', 'soft']
['guitar']
['guitar']
['vocals', 'female', 'violin', 'female vocal', 'slow', 'vocal', 'singing', 'voices', 'not english']
['female', 'strings', 'violin', 'celtic', 'fiddle']
['vocals', 'voices']
['violin']
['harpsichord', 'vocal']
['female', 'quiet', 'opera', 'female vocal', 'vocal', 'female singer']
['opera']
[]
['jazz', 'drums']
['chimes', 'ambient', 'synth', 'bass', 'electronic', 'slow']
['ambient', 'synth', 'synthesizer']
['beats', 'no piano', 'no vocal', 'electronica']
['male vocal', 'guitar', 'man', 'lute', 'celtic', 'male', 'vocal', 'singing']
['singer', 'guitar', 'folk', 'man', 'male', 'singing']
['guitar', 'folk', 'opera', 'vocal', 'woman']
['weird', 'techno']
['drums', 'fast']
['guitar', 'new age', 'synth', 'drums', 'electronic', 'weird', 'instrumental', 'strange', 'indian', 'techno', 'beat']
['fast', 'trance', 'different', 'techno']
['beats', 'drums', 'techno', 'beat']
[]
[]
['sitar', 'guitar', 'middle eastern', 'percussion', 'drums', 'no vocal', 'fast', 'fast beat', 'eastern', 'indian', 'upbeat']
['beats', 'drums', 'fast']
['classical', 'quiet', 'solo', 'classic', 'fast', 'piano', 'slow', 'soft']
['classical', 'piano', 'piano solo']
[]
['classical', 'quiet', 'solo', 'classic', 'fast', 'piano']
['classical', 'fast', 'piano']
['classical', 'classic', 'piano']
[]
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'oboe', 'old', 'cello', 'baroque']
['classical', 'harpsicord']
['harpsichord', 'classical', 'violins', 'no flute', 'cello']
[]
['classical', 'violins', 'strings', 'violin', 'flute']
['classical', 'strings', 'flute']
['harpsichord', 'classical', 'strings', 'flute']
['classical', 'guitar', 'no singing', 'no vocals', 'no singer', 'soft']
['no voice', 'classical', 'guitar', 'strings', 'lute', 'baroque']
['no piano', 'classical', 'guitar', 'strings', 'classic', 'no violin', 'piano', 'slow']
['classical', 'guitar', 'no vocal', 'no vocals', 'slow']
[]
['guitar']
['classical', 'guitar', 'classical guitar', 'slow']
['classical', 'guitar', 'strings', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'solo', 'classical guitar', 'no vocals', 'low', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'classical guitar', 'slow', 'soft']
['quiet', 'echo', 'techno']
[]
[]
['quiet', 'synth', 'electronic', 'strange', 'beat']
['quiet', 'ambient', 'synth', 'strings', 'mellow', 'slow']
['ambient', 'slow']
['electric guitar']
['vocals', 'drum', 'keyboard', 'drums', 'reggae', 'male', 'vocal']
['drums', 'pop', 'rock', 'singing']
['male vocal', 'vocals', 'jazz', 'guitar', 'voice', 'male voice', 'drums', 'male singer', 'man', 'male vocals', 'slow', 'male', 'blues', 'vocal', 'rock', 'jazzy', 'singing']
['male vocal', 'jazz', 'male voice', 'drums', 'man', 'male']
['jazz', 'instrumental']
['guitar', 'beat']
['classical', 'guitar', 'quiet', 'strings', 'classic']
['guitar']
[]
['solo', 'violin', 'cello']
[]
['classical', 'solo', 'strings', 'fast', 'violin', 'instrumental', 'cello']
['classical', 'strings', 'fast', 'cello']
['harpsichord']
[]
[]
[]
['classical', 'solo', 'strings', 'string', 'violin', 'slow', 'cello']
['classical', 'no vocal', 'no vocals']
['classical', 'strings', 'fast', 'violin', 'cello']
['harpsichord']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'harp', 'slow']
[]
['jazz', 'guitar', 'spanish']
['soft rock', 'guitar', 'pop', 'spanish']
['guitar', 'strings', 'modern']
['male', 'singing', 'monks', 'choir']
['choral', 'chant', 'male']
['male vocal', 'men', 'classical', 'male voice', 'chanting', 'choral', 'opera', 'chant', 'man', 'male vocals', 'male', 'vocal', 'monks', 'choir']
['guitar', 'no drums']
['guitar']
['male vocal', 'male singer', 'country', 'man', 'male']
['guitar', 'pop', 'male']
['horns', 'classical', 'ambient', 'synth', 'electronic']
['male vocal', 'male voice', 'man singing', 'man', 'piano']
['horns', 'synth', 'no vocal', 'no vocals', 'slow', 'jazzy']
['guitar']
['sitar', 'guitar', 'middle eastern', 'oriental']
['eastern']
['sitar', 'guitar', 'fast', 'indian']
['sitar', 'guitar', 'indian']
['piano', 'noise']
['female voice', 'new age', 'piano', 'celtic', 'slow', 'woman']
[]
['female', 'female vocals']
['guitar']
['guitar', 'solo', 'acoustic']
['classical', 'guitar', 'solo', 'acoustic']
['strings', 'classical guitar', 'harp']
['classical', 'strings', 'classic', 'harp']
['guitar', 'harp']
['harpsichord', 'classical', 'guitar', 'solo', 'string', 'harp']
['guitar', 'male voice', 'country', 'singing']
['male vocal', 'country']
['male', 'rock']
['male vocal', 'vocals', 'country', 'male vocals', 'slow', 'rock']
['male vocal', 'vocals', 'country', 'guitars']
['guitar', 'loud', 'rock']
['male vocal', 'country']
['voice', 'drums', 'country', 'man']
[]
['electronic', 'fast', 'techno']
['electronic', 'techno', 'upbeat']
['beats', 'ambient', 'synth', 'strings', 'electronic', 'no drums']
['synth', 'voice', 'electronic', 'talking', 'fast', 'techno']
['loud', 'fast', 'techno']
['female', 'female voice', 'ambient', 'drums', 'electronic', 'weird', 'woman']
['electronic', 'talking', 'weird', 'techno']
['electronic', 'talking', 'techno']
['man', 'techno']
[]
['pop', 'female vocal', 'quick']
['vocals', 'female', 'fast', 'pop', 'female vocal', 'woman', 'singing', 'beat']
[]
['female', 'synth', 'voice', 'strings', 'pop', 'vocal', 'no drums', 'singing']
['voice', 'girl', 'talking', 'woman']
['guitar', 'strings', 'string']
['guitar', 'fast', 'guitars']
[]
[]
['guitar', 'no vocals', 'no singer']
['classical', 'guitar', 'strings', 'fast']
['classical', 'guitar', 'strings', 'classical guitar', 'slow']
[]
['classical', 'guitar', 'strings', 'slow']
['guitar']
['classical', 'guitar', 'classical guitar', 'no vocals']
[]
['harpsichord']
['male vocal', 'jazz', 'male voice', 'male singer']
['pop', 'male']
['funky', 'jazz', 'synth', 'funk', 'fast', 'no vocals', 'disco', 'pop', 'dance', 'techno']
[]
['new age', 'slow']
[]
[]
['drums', 'piano']
['vocals', 'drums', 'woman', 'techno']
['male vocal', 'middle eastern', 'fast', 'indian']
['slow']
['guitar']
['guitar', 'slow', 'cello']
['guitar', 'ambient', 'slow']
['guitar']
['guitar', 'no vocals', 'slow', 'different', 'soft']
['guitar', 'slow', 'calm']
['drums', 'electronic', 'slow', 'techno']
['electronic', 'no guitar', 'no vocal', 'weird']
['ambient', 'new age', 'synth', 'loud', 'electronic', 'no vocals', 'strange']
['new age', 'synth', 'electronic', 'techno']
[]
[]
['new age', 'synthesizer']
['synth', 'no singing', 'repetitive', 'electronic', 'no vocals', 'techno']
[]
['synth', 'electronic', 'fast', 'techno', 'noise']
['classical', 'guitar']
['guitar', 'country', 'man', 'male', 'vocal']
[]
[]
['guitar', 'country']
['acoustic guitar', 'man', 'male vocals']
['birds', 'electronic', 'fast', 'noise']
['electronic', 'weird', 'techno']
['ambient', 'new age', 'techno']
['synth', 'electronic', 'techno', 'noise']
[]
['ambient', 'synth', 'loud', 'electronic', 'weird', 'techno', 'clapping', 'beat', 'noise']
['electronic', 'techno']
['no voice', 'synth', 'electronic', 'techno', 'beat']
['techno', 'beat']
['classical', 'piano']
['classical', 'fast', 'piano']
['classical', 'fast', 'piano']
['classical', 'piano']
['classical', 'solo', 'classic', 'no flute', 'piano']
['classical', 'no vocal', 'fast', 'piano']
['piano']
[]
['harpsichord', 'classical', 'strings', 'harpsicord', 'fast']
[]
['funky', 'guitar']
['modern', 'beat']
['flute']
['classical', 'piano']
['piano', 'soft']
['piano']
['piano']
['classical', 'piano']
['male vocal', 'male voice', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['guitar', 'pop', 'rock']
['flute']
['folk', 'new age', 'irish', 'female vocal', 'woman', 'singing', 'female vocals', 'women', 'english']
['female', 'woman', 'woman singing']
['female', 'pop']
['no voice', 'quiet', 'ambient', 'no singing', 'indian']
['sitar', 'weird', 'arabic', 'eastern', 'indian']
['no voice', 'percussion', 'drum', 'drums', 'electronic', 'no vocals', 'instrumental', 'beat']
['beats', 'modern', 'indian']
['fast', 'indian']
['beats', 'beat']
['male vocal', 'men', 'guitar', 'man', 'rock']
['rock']
['guitar']
[]
['female']
['vocal']
['vocal']
['female', 'voice', 'woman', 'woman singing']
['opera', 'man', 'no flute', 'male']
[]
[]
['jazz', 'bass', 'drums', 'piano', 'beat']
['jazz', 'keyboard', 'drums', 'no guitar', 'piano', 'slow', 'jazzy']
['drums']
['drums', 'slow', 'jazzy', 'beat']
['guitar', 'voice', 'male voice', 'man', 'male']
[]
['male vocal', 'foreign', 'guitar', 'man', 'male']
['singer', 'guitar', 'percussion', 'male singer']
['foreign', 'guitar', 'percussion', 'drum', 'voice', 'male voice', 'drums', 'male']
['guitar', 'male vocals']
['guitar', 'spanish']
['male vocal', 'pop', 'vocal', 'singing']
['vocals', 'guitar', 'drums', 'country', 'pop', 'piano', 'male', 'rock']
['slow']
[]
['country', 'man']
['jazz', 'man']
['man']
['beats', 'fast', 'dance', 'techno']
['electronic', 'techno']
['chorus', 'vocals', 'choral', 'opera', 'voices', 'choir']
['choral', 'choir']
['no piano', 'classical', 'violin', 'slow', 'cello']
['classical']
['female opera', 'opera', 'violin', 'singing']
['strings', 'opera', 'violin', 'man', 'male', 'vocal']
['opera', 'singing', 'choir']
['classical', 'strings', 'string', 'opera', 'orchestra', 'voices']
['vocal']
['indian']
['vocals', 'indian']
['vocals', 'foreign', 'female voice', 'middle eastern', 'loud', 'weird', 'fast', 'hard', 'eastern', 'vocal', 'indian', 'rock', 'techno', 'noise', 'metal']
['electronic', 'not opera']
['eerie', 'synth', 'electronic', 'electro', 'techno', 'beat']
['horns', 'jazz', 'dance', 'jazzy', 'techno']
['harpsichord', 'classical']
[]
['male vocal', 'vocals', 'guitar', 'male singer', 'man', 'pop', 'piano', 'male vocals', 'male', 'vocal', 'rock']
['guitar']
['guitar', 'man', 'pop', 'male', 'vocal', 'not opera']
[]
['quiet', 'ambient', 'slow', 'soft']
['no piano', 'classical', 'guitar', 'quiet', 'slow']
['guitar']
['guitar']
['classical', 'guitar', 'quiet']
['drums', 'tribal']
['ambient']
['ambient', 'drums', 'slow']
['male vocal', 'foreign', 'male voice', 'arabic', 'man', 'eastern', 'male', 'vocal']
[]
[]
['sitar', 'guitar', 'middle eastern', 'strings', 'string', 'no vocals', 'arabic', 'instrumental', 'eastern', 'india', 'oriental']
['sitar', 'guitar', 'strings', 'fast', 'eastern', 'indian']
[]
['no voice', 'sitar', 'guitar', 'strings', 'indian', 'oriental']
['no voice', 'guitar']
['classical', 'guitar']
['guitar', 'solo', 'strings', 'no vocal', 'harp', 'piano', 'spanish', 'sad', 'slow']
['guitar', 'strings']
['classical', 'guitar', 'harp', 'slow']
['classical']
['silence', 'water']
['guitar', 'slow']
['organ']
[]
['slow']
['vocals', 'no strings', 'quiet', 'chant', 'slow', 'male', 'monks', 'choir']
['chorus', 'classical', 'choir']
['quiet', 'choral', 'choir']
['no piano', 'vocal']
['female', 'opera']
['classical', 'strings', 'opera']
['classical', 'opera', 'female vocal']
[]
['classical', 'violins', 'strings', 'opera', 'violin', 'no vocals', 'orchestra']
['male vocal', 'opera', 'male', 'vocal']
['opera']
['classical', 'strings', 'violin']
['vocals', 'classical', 'violins', 'voice', 'strings', 'male voice', 'opera', 'man singing', 'man', 'male', 'clapping']
['vocals', 'female', 'female voice', 'female vocal', 'vocal']
['female', 'no beat', 'female voice', 'opera', 'female vocal', 'vocal', 'woman']
[]
[]
['modern']
['vocals', 'female', 'opera', 'fast', 'vocal', 'voices', 'techno']
['ambient', 'no guitar']
['guitar', 'strings']
['classical', 'guitar', 'no singing', 'strings', 'no vocals', 'harp', 'slow', 'soft']
['classical', 'guitar', 'strings', 'string']
[]
[]
[]
['foreign', 'guitar', 'drums', 'indian', 'india']
['sitar', 'guitar']
['sitar', 'female', 'female voice', 'strings', 'fast', 'arabic', 'eastern', 'indian', 'woman', 'singing', 'oriental']
['guitar', 'bass', 'rock']
['male vocal', 'guitar', 'male voice', 'fast', 'male singer', 'modern', 'man', 'pop', 'male vocals', 'male', 'rock', 'singing']
['male vocal', 'guitar', 'loud', 'man', 'vocal', 'rock', 'clapping']
['male voice', 'man singing', 'man', 'pop', 'male', 'vocal', 'rock']
['loud', 'fast', 'rock']
['guitar', 'quiet']
[]
['guitar', 'slow']
['classical', 'guitar', 'strings', 'piano', 'slow']
['no voice', 'guitar', 'no vocals', 'lute', 'piano']
[]
['classical', 'guitar', 'strings', 'medieval']
['classical', 'guitar', 'solo', 'piano', 'spanish', 'slow']
['classical', 'guitar', 'strings']
['classical', 'guitar']
['ambient', 'electronic']
[]
['ambient', 'synth', 'piano']
['piano', 'slow']
[]
[]
['harpsichord', 'classical', 'strings', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'no vocal', 'violin', 'no vocals']
[]
['harpsichord', 'classical', 'quiet', 'strings', 'harp', 'slow', 'flute', 'baroque']
['harpsichord', 'piano', 'flute']
['solo', 'trumpet', 'no vocals', 'horn', 'slow']
['vocal', 'singing']
['vocals']
[]
['slow', 'singing']
['pop']
['strange', 'vocal']
['classical', 'female', 'guitar', 'female voice', 'medieval', 'opera', 'irish', 'vocal', 'woman', 'singing']
['piano']
['female', 'lute', 'vocal', 'woman', 'female vocals']
['woman']
['female', 'opera', 'singing']
['choral', 'choir']
['guitar', 'quiet', 'strings', 'slow']
[]
['no piano', 'classical', 'guitar', 'strings', 'piano', 'slow']
['harpsichord', 'classical', 'guitar', 'strings', 'slow']
[]
['classical', 'guitar', 'no singing', 'strings']
['classical', 'guitar', 'no vocal', 'harp', 'slow']
['male vocal', 'guitar', 'man', 'pop', 'slow', 'male', 'singing', 'soft']
['guitar', 'drums', 'no vocal', 'no vocals', 'slow']
['male vocal', 'vocals', 'female', 'guitar', 'voice', 'male voice', 'drums', 'man', 'pop', 'slow', 'male', 'vocal', 'soft']
[]
[]
['guitar', 'banjo', 'country']
['guitar', 'banjo', 'solo', 'fast', 'country']
['male vocal', 'vocals', 'weird']
['chant', 'male', 'singing']
['men', 'choral', 'opera', 'male', 'choir']
['harpsichord', 'classical', 'strings']
['harpsichord', 'classical', 'harpsicord', 'fast']
['harpsichord', 'classical', 'fast']
['harpsichord', 'classical', 'violins', 'harpsicord', 'fast']
['harpsichord', 'classical', 'fast', 'piano']
['female', 'slow']
['techno']
['beats', 'synth', 'reggae', 'beat']
['quiet']
['guitar', 'acoustic', 'country', 'slow', 'blues']
['guitar', 'country', 'blues']
[]
['guitar', 'slow']
['strings', 'harp', 'piano', 'slow', 'soft']
['guitar', 'drums']
['vocals', 'guitar', 'drums']
['pop']
['no violin']
[]
['vocals', 'man singing', 'male vocals', 'vocal']
['drums', 'rock']
['bass', 'techno', 'beat']
['no voice', 'electronic', 'dance', 'techno', 'beat']
['electronic', 'techno', 'house']
['beats', 'electric', 'voice', 'electronic', 'electronica', 'disco', 'dance', 'techno', 'beat']
['beats', 'fast', 'no vocals', 'techno']
['classical', 'guitar', 'repetitive', 'slow']
['classical', 'guitar', 'quiet', 'acoustic', 'no vocals', 'soft']
['harpsichord', 'sitar', 'no piano', 'guitar', 'harp']
[]
['strings', 'medieval']
['no voices', 'guitar', 'celtic']
['violin', 'irish']
['violin', 'irish', 'harp']
['flute']
['classical', 'medieval', 'classic', 'flute']
['classical', 'light', 'flute']
['classical', 'quiet', 'wind', 'medieval', 'organ', 'flute', 'soft']
[]
['vocals', 'female', 'voice', 'electronic', 'no vocals', 'techno', 'beat']
['beats', 'drums', 'vocal']
['pop']
['synth', 'bass', 'electronic', 'fast', 'electro', 'no vocals', 'techno', 'upbeat']
['singing', 'techno']
['harpsichord', 'harpsicord']
['harpsichord']
['classical']
['harpsichord', 'classical', 'harpsicord', 'classic', 'no vocals', 'piano', 'slow', 'guitars']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'organ', 'no flute']
['harpsichord', 'harpsicord']
['classical', 'guitar', 'quiet', 'no vocal', 'classical guitar', 'slow']
['classical', 'guitar', 'quiet', 'classical guitar', 'harp', 'soft']
['classical', 'guitar', 'strings', 'harp', 'slow', 'soft']
['guitar', 'solo', 'harp', 'slow']
['classical', 'guitar', 'no vocals']
['classical', 'guitar', 'harp', 'slow']
['classical', 'guitar', 'solo']
['classical', 'guitar', 'quiet', 'classical guitar', 'slow', 'soft']
['drum', 'strings', 'violin', 'instrumental', 'cello']
['cello']
['violin']
[]
[]
[]
['electronic', 'fast']
[]
['techno']
['synth', 'techno']
['fast', 'techno']
['drums', 'fast', 'trance', 'techno']
['woman']
['loud', 'techno']
['singer', 'hard rock', 'male vocal', 'male voice', 'punk', 'rock']
[]
['slow']
['world', 'vocals', 'female', 'chant', 'vocal', 'singing', 'voices']
['female', 'ambient', 'female vocal']
['female', 'female voice', 'ambient', 'girl', 'electronic', 'slow', 'woman']
['ambient']
['harpsichord', 'string']
['harpsichord', 'harpsicord', 'fast', 'old']
[]
[]
['violins', 'drum', 'strings', 'drums', 'no vocal', 'violin', 'celtic', 'eastern']
['classical', 'folk', 'strings', 'drums', 'violin', 'irish']
['guitar', 'woman', 'singing']
['female', 'female voice', 'opera', 'female vocal', 'choir']
[]
[]
[]
['male vocal', 'vocals', 'male voice', 'irish', 'man', 'vocal']
['folk', 'male voice', 'irish', 'man', 'male']
['singer', 'male vocal', 'voice', 'male voice', 'irish', 'man', 'male', 'vocal']
[]
[]
[]
['electronic']
['happy', 'electronic', 'electro', 'techno']
['electronic', 'slow']
['no voice', 'drums', 'tribal']
[]
['female voice']
[]
['guitar', 'solo']
['guitar']
['guitar', 'no vocal', 'classical guitar', 'slow', 'no drums']
['guitar']
['guitar', 'strings', 'slow']
['no voices', 'guitar', 'synth', 'harp', 'soft']
['guitar', 'ambient', 'acoustic', 'instrumental', 'mellow', 'slow']
[]
['guitar', 'drums']
[]
['male vocal', 'male voice', 'loud', 'drums', 'male singer', 'country', 'man', 'pop', 'male vocals', 'male', 'vocal', 'rock']
['male vocal', 'male voice', 'man', 'pop', 'rock']
['male voice', 'vocal']
['opera', 'male', 'vocal', 'singing']
['guitar']
[]
['female', 'opera', 'vocal']
['choral', 'singing', 'voices']
[]
['chimes', 'classical', 'drum', 'drums', 'organ', 'bells', 'slow', 'beat']
['drums']
['new age', 'drum', 'drums', 'organ', 'instrumental', 'flutes', 'slow', 'flute']
['drum', 'drums', 'flute']
[]
[]
['male voice', 'opera', 'man', 'singing']
[]
['strings', 'piano', 'cello']
['piano']
['quiet', 'piano', 'slow']
['jazz', 'fast', 'piano', 'blues']
['classical', 'jazz', 'quiet', 'piano']
['jazz', 'piano', 'jazzy']
['classical', 'quiet', 'piano', 'slow', 'soft']
[]
['piano']
['new age', 'percussion', 'strings', 'no vocals', 'instrumental', 'slow']
['voices', 'clapping', 'noise']
['not classical']
[]
['foreign', 'female', 'woman', 'singing']
['guitar', 'country']
['guitar']
[]
['guitar', 'spanish']
['funky']
['spanish']
['classical', 'guitar', 'no drums']
[]
['classical', 'guitar', 'no vocal', 'no vocals', 'instrumental']
[]
['guitar']
['classical', 'guitar', 'solo', 'strings', 'acoustic', 'acoustic guitar', 'country', 'no drums']
['guitar']
['classical', 'strings', 'choral', 'opera', 'choir']
['choral', 'choir']
['classical', 'guitar', 'banjo', 'strings', 'no vocals']
['harpsichord', 'classical', 'violins', 'strings', 'violin', 'slow', 'baroque']
['harpsichord', 'classical', 'violins', 'strings', 'harpsicord', 'classic', 'fast', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'piano']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'cello']
['harpsichord', 'classical', 'violin']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'baroque']
['guitar', 'country']
['drums', 'no vocal', 'piano', 'slow']
['guitar', 'no vocals']
['guitar', 'drums', 'pop', 'rock']
['guitar', 'drums', 'electric guitar', 'country', 'slow']
['no voice', 'guitar', 'drum', 'voice', 'drums', 'no flute', 'piano', 'slow', 'beat']
['female vocal', 'vocal']
['vocal']
['female', 'guitar', 'female voice', 'lol', 'pop', 'beat']
[]
['drums']
[]
[]
['opera']
['chorus', 'choral', 'opera']
['fast', 'techno']
['synth', 'drums', 'electronic', 'fast', 'techno', 'beat']
['beats', 'electric', 'repetitive', 'drums', 'electronic', 'no vocal', 'fast', 'electro', 'fast beat', 'dance', 'techno', 'beat']
['guitar', 'strings', 'violin', 'no vocals', 'spanish', 'jazzy']
['guitar', 'violin', 'spanish']
['guitar', 'spanish']
['classical', 'guitar', 'new age', 'strings', 'violin', 'instrumental', 'spanish']
['repetitive', 'electronic', 'weird', 'synthesizer', 'techno']
['funky', 'synth', 'repetitive', 'electronic', 'weird', 'fast', 'no vocals', 'modern', 'techno']
['synth', 'electronic', 'no vocal', 'weird', 'fast', 'electro', 'techno']
[]
['electro']
['vocals', 'guitar', 'quiet', 'ambient', 'voice', 'acoustic', 'man', 'slow', 'male', 'vocal', 'woman singing', 'singing', 'soft']
['male voice', 'vocal', 'singing']
[]
['guitar', 'slow']
['guitar', 'woman']
['vocals', 'guitar', 'woman']
['classical', 'violins', 'strings', 'violin', 'flute']
['classical', 'flute']
['classical', 'flute']
['classical', 'strings', 'no vocal', 'violin']
['guitar', 'rock', 'metal']
['punk', 'rock', 'metal']
['classical', 'piano', 'slow', 'soft']
['harpsichord']
['harpsichord', 'classical', 'solo', 'harpsicord', 'piano', 'baroque']
['no voice', 'harpsichord']
['harpsichord', 'classical', 'quiet']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'baroque']
['guitar', 'drums', 'electric guitar', 'no vocals', 'rock']
['heavy', 'loud', 'fast', 'punk', 'male', 'rock', 'metal']
[]
['harpsichord', 'classical', 'guitar']
['harpsichord', 'clasical', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'harp', 'piano', 'baroque']
['classical']
['harpsichord']
['strings', 'classic']
['harpsichord', 'classical', 'guitar', 'fast']
['harpsichord', 'classical', 'strings', 'harpsicord', 'fast', 'piano']
['vocals', 'classical', 'choral', 'slow', 'singing', 'choir']
['duet', 'vocals', 'opera']
['duet', 'vocals', 'choral', 'opera', 'female vocal', 'no drums', 'choir']
['duet', 'classical', 'female', 'choral', 'vocal', 'singing', 'voices']
['chorus', 'choral', 'choir']
['classical', 'violins', 'strings', 'classic', 'violin']
['opera']
['male voice', 'opera', 'operatic']
['female', 'female voice', 'woman', 'female vocals']
['female', 'female voice', 'opera', 'female vocal', 'singing', 'female vocals']
['classical', 'no vocal', 'violin', 'harp', 'slow']
[]
['funky', 'jazz', 'guitar', 'funk', 'drums', 'no vocal', 'no vocals', 'instrumental', 'jazzy', 'beat']
['jazzy']
['funky', 'female', 'female voice', 'pop', 'vocal', 'dance', 'beat', 'female singer']
['guitar', 'piano', 'slow', 'beat']
['singing']
[]
['vocals', 'female', 'voice', 'female vocal', 'slow', 'woman', 'singing', 'female vocals']
['slow', 'vocal']
['duet', 'slow', 'vocal']
['classical', 'opera', 'choir']
['opera', 'choir']
['vocals', 'ambient', 'drums', 'weird', 'tribal', 'vocal', 'indian']
['new age']
['beats', 'ambient', 'voice', 'man', 'beat']
['singer', 'male vocal', 'male voice', 'male', 'rock']
['guitar']
[]
['electronic']
['rap']
['loud', 'drums', 'fast', 'house', 'rap', 'hip hop']
[]
['classical', 'violins', 'strings', 'no vocal', 'cello']
['guitar']
['guitar', 'slow']
[]
['classical', 'guitar', 'acoustic', 'slow']
[]
['classical', 'guitar', 'slow']
['fast', 'hard', 'punk', 'rock', 'metal']
[]
['synth', 'electronic', 'fast', 'techno']
['ambient', 'piano']
['electronic', 'fast', 'techno']
['electronic', 'no vocal', 'techno']
['no vocal', 'techno']
['quiet', 'synth', 'electronic', 'modern', 'harp', 'slow']
['chant', 'woman', 'choir', 'women']
[]
['classical', 'guitar', 'quiet', 'solo', 'strings', 'classical guitar', 'slow']
['guitar', 'indian']
['classical', 'guitar', 'slow']
['classical', 'piano']
['classical', 'piano']
['piano']
['harpsichord', 'classical']
['no voice', 'harpsichord', 'classical']
['classical', 'solo', 'no vocal', 'piano']
['violin']
['vocals', 'classical', 'violins', 'strings', 'violin', 'orchestra', 'singing']
['no piano', 'classical', 'female', 'opera']
['opera']
['opera']
[]
['pop', 'vocal', 'singing']
['country']
['vocal']
[]
['vocals', 'jazz', 'trumpet', 'jazzy']
['singer', 'vocals', 'pop', 'vocal']
['violin', 'piano']
['strings', 'fast', 'violin', 'piano', 'upbeat']
['drum', 'drums', 'echo', 'indian']
['ambient', 'drums', 'jungle', 'indian']
[]
['no voice', 'drums', 'fast']
['classical', 'guitar', 'no vocal', 'instrumental']
['guitar', 'lute', 'slow']
['guitar', 'celtic']
['classical', 'guitar']
['opera']
['female', 'opera', 'vocal', 'singing']
['female singing', 'female opera', 'classical', 'female', 'voice', 'opera', 'vocal', 'woman', 'singing']
['female opera', 'female', 'opera', 'male']
['female', 'guitar', 'voice', 'opera', 'female singer']
['female', 'opera', 'woman']
['female opera', 'classical', 'female', 'opera', 'operatic', 'female vocal', 'vocal', 'woman', 'soft']
['guitar', 'strings']
['guitar', 'banjo', 'country', 'blues']
['guitar', 'banjo']
['guitar', 'banjo', 'country']
['no voice', 'guitar', 'banjo', 'country', 'blues']
['guitar', 'quiet', 'strings', 'instrumental', 'slow']
['singing']
['female', 'drums', 'rock']
['female vocal', 'woman singing', 'rock']
['female', 'voice', 'drums', 'female vocal', 'vocal', 'woman', 'rock', 'female singer']
['guitar', 'bass', 'electronic', 'no vocals', 'pop', 'slow']
['guitar', 'bass']
['beats', 'beat']
['guitar', 'male']
['vocals', 'guitar', 'male voice', 'man']
['guitar', 'voice', 'man', 'vocal', 'singing']
['male vocal', 'guitar', 'vocal', 'singing']
['vocals', 'guitar', 'acoustic', 'country', 'male']
['guitar', 'male singer']
['guitar']
[]
['guitar', 'acoustic', 'country', 'blues', 'guitars']
['guitar', 'banjo', 'country', 'no vocals', 'blues']
['choral', 'choir']
['techno']
['voice', 'loud', 'talking', 'strange', 'rap']
['harpsichord', 'violin']
[]
['strings', 'flute']
['classical', 'strings', 'violin']
[]
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'flute', 'baroque']
[]
['classical']
[]
['harpsichord', 'woodwind', 'classical', 'strings', 'classic', 'violin', 'flute']
['classical', 'piano']
['classical', 'fast', 'piano']
['classical', 'piano']
['classical', 'quiet', 'classic', 'piano', 'slow', 'calm']
['classical', 'solo', 'piano']
[]
['no strings', 'classical', 'solo', 'piano']
['piano']
['classical', 'piano']
['classical', 'guitar', 'strings', 'classical guitar']
['classical', 'guitar', 'slow']
['oboe', 'flute']
['classical', 'no vocal', 'oboe']
['classical', 'not rock', 'soft']
['violin']
['classical', 'violin']
['no voice']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin']
['classical', 'violins', 'strings', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'viola', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
[]
['cello']
['classical', 'strings', 'classic', 'violin', 'cello']
['no vocals', 'pop']
['beats', 'guitar', 'new age', 'drum', 'drums', 'modern', 'no singer', 'beat']
['ambient', 'drums', 'fast']
['guitar', 'new age', 'drum', 'drums', 'no vocal', 'pop', 'jazzy', 'beat', 'soft']
['beats', 'guitar', 'drum', 'drums', 'no vocal', 'mellow']
['silence', 'quiet', 'ambient', 'new age', 'no vocals', 'piano', 'slow', 'voices', 'soft']
['quiet']
['strings', 'medieval', 'harp', 'lute']
['classical', 'guitar', 'strings']
['no piano', 'ambient', 'strange']
['drums', 'weird', 'slow', 'techno', 'beat']
[]
['beats', 'drums', 'electronic', 'electro', 'electronica', 'techno', 'beat']
['weird', 'scary', 'dance']
[]
['quiet', 'piano']
['ambient']
['ambient', 'electronic', 'techno']
['vocal']
['female voice', 'electronic', 'beat']
['voice', 'electronic', 'rock', 'techno']
['techno', 'beat']
[]
['female', 'female voice', 'ambient', 'synth', 'electronic', 'electronica', 'woman', 'techno', 'soft']
['harpsichord', 'strings']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'harp', 'piano']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'strings', 'baroque']
['harpsichord', 'classical', 'strings', 'harp', 'piano']
['harpsichord']
['classical', 'cello']
['classical', 'violins', 'strings', 'violin', 'slow', 'cello']
['classical', 'solo', 'violin', 'cello']
['classical', 'solo', 'strings', 'classic', 'violin', 'cello']
['classical', 'strings', 'violin']
['solo', 'violin']
['strings', 'cello']
['classical', 'solo', 'strings', 'string', 'fast', 'violin', 'viola', 'cello']
['violin']
[]
['vocals', 'vocal', 'choir']
['choir']
['loud', 'chant', 'male vocals', 'monks', 'choir']
[]
['fast', 'electro', 'dance', 'techno', 'beat']
['fast', 'techno', 'beat']
['drums', 'fast', 'techno', 'beat']
[]
['electronic', 'fast', 'trance', 'techno']
['beats', 'loud', 'drums', 'electronic', 'fast', 'electro', 'electronica', 'fast beat', 'dance', 'techno', 'beat']
['drums', 'electronic', 'fast', 'techno', 'beat']
['beats', 'drum', 'fast', 'dance', 'techno', 'beat']
['male vocal', 'guitar', 'male voice', 'drums', 'male singer', 'country', 'man', 'pop', 'male', 'vocal', 'rock']
['male vocal', 'guitar', 'country', 'man', 'vocal', 'rock']
['male vocal', 'vocals', 'guitar', 'country', 'male', 'vocal', 'rock']
['vocal']
['male vocal', 'drums', 'pop', 'male vocals', 'rock']
['vocals', 'country', 'man', 'beat']
['guitar', 'strings', 'spanish', 'slow']
['no piano', 'classical', 'guitar']
['classical', 'guitar', 'solo']
['guitar', 'quiet', 'piano']
['classical', 'guitar', 'classical guitar', 'piano', 'soft']
['guitar']
['synth', 'electronic', 'techno']
['electronic', 'techno']
[]
['talking', 'techno']
['electronic', 'fast', 'techno']
['guitar']
['guitar', 'male voice', 'man', 'male', 'vocal', 'rock']
['guitar', 'voice', 'man', 'pop', 'male vocals', 'male', 'rock']
['male vocal', 'vocals', 'rock']
['funky', 'guitar', 'drum', 'fast', 'electric guitar', 'no vocals', 'strange', 'rock']
['classical', 'ambient', 'voice', 'organ', 'talking', 'strange', 'man', 'flutes', 'flute']
['guitar', 'ambient', 'slow', 'male', 'rock']
['guitar', 'rock']
['drum', 'weird']
['no piano', 'guitar', 'synth', 'drums', 'piano', 'rock']
[]
[]
['drums', 'fast', 'indian', 'techno']
['male vocal', 'drum', 'voice', 'loud', 'drums', 'talking', 'weird', 'fast', 'electro', 'dark', 'man', 'industrial', 'techno', 'noise']
['fast', 'rock', 'techno']
['no voice', 'synth', 'electronic', 'no vocal', 'techno']
[]
['no piano', 'guitar', 'strings', 'medieval']
['guitar', 'banjo', 'string', 'country']
['guitar', 'acoustic', 'country']
['male vocal', 'talking', 'country', 'man', 'singing']
['vocals', 'country', 'blues', 'rap']
['guitar', 'strings', 'harp']
['guitar', 'harp']
['classical', 'guitar', 'harp']
['classical', 'guitar', 'harp']
[]
['hard rock', 'male vocal', 'guitar', 'voice', 'male voice', 'male', 'vocal', 'rock', 'metal']
['heavy', 'guitar', 'electric guitar', 'heavy metal', 'male', 'blues', 'rock']
['rock']
['rock']
['classical', 'strings', 'violin', 'piano', 'sad', 'slow', 'cello']
['classical', 'oboe', 'piano', 'sax']
['classical', 'strings', 'violin', 'piano', 'slow', 'cello']
['ambient', 'synth', 'weird']
['electronic', 'slow']
['guitar', 'ambient', 'synth', 'weird', 'no vocals', 'instrumental', 'piano', 'slow']
['no voice', 'no voices', 'guitar', 'synth', 'electronic', 'no vocals', 'no drums', 'flute']
['guitar', 'ambient', 'loud', 'no vocals', 'flute']
['no voice', 'guitar', 'ambient', 'new age', 'synth', 'strings', 'loud', 'drums', 'electronic', 'weird', 'fast', 'no vocals', 'instrumental', 'modern', 'slow', 'techno', 'beat', 'upbeat', 'quick']
['choral', 'voices', 'choir']
[]
['choral']
['chorus', 'classical', 'female', 'choral', 'opera', 'female vocal', 'vocal', 'choir']
[]
['classical', 'strings', 'violin', 'sad', 'slow', 'cello']
['vocals', 'piano', 'singing', 'choir']
['electronic']
['male vocal', 'male voice', 'country', 'pop', 'male']
['singer', 'guitar', 'male voice', 'male singer', 'country', 'man', 'pop', 'male vocals', 'slow', 'vocal']
['trumpet']
['male vocal', 'vocals', 'male voice', 'keyboard', 'man', 'male', 'vocal']
['slow']
['jazz', 'slow', 'jazzy']
['jazz', 'drum', 'beat', 'rap']
['jazz', 'trumpet', 'drums', 'no vocal', 'jazzy', 'flute']
['jazz']
['female', 'jazz', 'trumpet', 'drums', 'sax', 'woman', 'jazzy', 'singing', 'female vocals', 'female singer']
[]
['loud', 'rock']
['hard rock', 'guitar', 'fast', 'electric guitar', 'rock']
['chorus', 'choral', 'choir']
['classical', 'no vocals', 'piano']
['drums', 'electronic', 'fast', 'electro', 'techno']
['synth', 'electronic', 'fast', 'electro', 'techno']
['electronic', 'fast', 'electro', 'modern', 'no flute', 'techno', 'beat']
['beats', 'techno', 'beat']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'classic', 'harp', 'piano', 'baroque']
['harpsichord', 'classical']
['harpsichord', 'classical', 'guitar', 'no guitar', 'harp']
[]
['chorus', 'chanting', 'vocal', 'indian']
['chorus', 'vocals', 'voice', 'chanting', 'choral', 'male', 'female vocals', 'voices', 'choir']
['vocals', 'choral', 'chant', 'male', 'vocal']
[]
['vocals', 'foreign', 'old', 'spanish', 'vocal', 'voices', 'choir']
['vocals', 'foreign', 'chant', 'vocal', 'voices', 'not english']
['vocals', 'foreign', 'choral', 'old', 'spanish', 'vocal', 'woman', 'singing', 'voices', 'choir']
['female', 'no guitar', 'vocal', 'choir']
['soft']
['duet', 'vocals', 'female', 'drums', 'vocal']
['female', 'singing', 'choir']
['opera', 'orchestra']
['classical', 'female voice', 'trumpet', 'opera', 'violin', 'vocal']
['classical', 'female', 'strings', 'opera', 'violin']
[]
['classical', 'opera', 'violin']
['singer', 'classical', 'opera']
['female', 'opera']
['classical', 'strings']
['strings']
['classical', 'strings', 'medieval', 'violin', 'cello']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'cello']
['male vocal', 'opera', 'slow']
['male vocal', 'male voice', 'opera', 'man', 'singing']
['harpsichord', 'guitar']
['harpsichord']
['harpsichord', 'classical', 'solo', 'slow']
['harpsichord', 'classical']
['quiet', 'classic', 'no vocal', 'piano', 'slow']
[]
['classical', 'quiet', 'strings', 'classic', 'organ', 'violin', 'slow', 'soft']
['classical', 'strings', 'violin', 'slow']
['voice', 'opera', 'low']
['quiet', 'opera']
[]
['opera', 'vocal']
['classical', 'female', 'voice', 'strings', 'opera', 'female vocal', 'slow', 'woman']
[]
['classical', 'guitar', 'acoustic', 'slow', 'soft']
[]
['classical', 'guitar', 'no drums']
['classical', 'guitar', 'strings', 'classical guitar']
['guitar', 'no flute']
['guitar', 'string', 'no vocal']
['classical', 'guitar', 'solo', 'strings', 'no vocals', 'instrumental']
[]
[]
['no voice', 'guitar', 'acoustic', 'acoustic guitar', 'instrumental', 'slow', 'flute']
['chorus', 'opera', 'chant', 'slow', 'choir']
['chorus', 'vocals', 'choral', 'voices', 'choir']
['chorus', 'vocals', 'choral', 'opera', 'vocal', 'choir']
['chorus', 'classical', 'choral', 'opera', 'choir']
['guitar', 'slow']
['classical', 'guitar']
['guitar']
['classical', 'guitar', 'guitars']
['new age', 'drum', 'bass', 'drums', 'techno']
['world', 'beats', 'female', 'voice', 'drums', 'no vocal', 'female vocal']
['opera', 'woman']
['female', 'opera']
['drums', 'electronic', 'no vocal', 'fast', 'trance', 'modern', 'techno']
['drums', 'techno']
['drum', 'drums', 'fast', 'techno', 'beat']
['bass', 'fast', 'techno']
[]
['guitar', 'banjo', 'strings']
['vocals', 'vocal', 'choir']
['vocals', 'choral', 'tribal', 'echo', 'vocal', 'singing', 'choir']
['chorus', 'female', 'singing']
['classical', 'no vocals', 'piano']
['classical', 'strings', 'no vocals']
['classical', 'strings', 'no vocal', 'fast', 'orchestra']
['classical', 'guitar']
[]
['guitar']
['guitar', 'acoustic']
[]
['male vocal', 'folk', 'country', 'man', 'male']
['no piano', 'choral', 'choir']
['choral', 'male', 'voices', 'choir']
['choir']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'harp', 'piano', 'slow']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'fast', 'harp', 'piano']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'piano']
['harpsichord']
['harpsichord', 'no vocal', 'fast']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'fast', 'piano']
['harpsichord', 'classical', 'harpsicord', 'harp']
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'harp', 'lute', 'piano', 'slow', 'soft', 'baroque']
['drums']
['techno']
[]
['guitar', 'rock']
['loud', 'hard', 'rock']
['rock']
['hard rock', 'guitar', 'rock']
['female', 'voice', 'drums', 'electronic', 'female vocal', 'rock', 'techno']
['loud', 'rock']
['harpsichord', 'classical', 'no vocal']
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'medieval']
['no piano', 'quiet', 'synth', 'electronic']
['synth', 'electronic', 'techno']
['electronic', 'weird', 'electro', 'techno', 'beat']
['synth', 'techno']
['synth', 'electronic', 'techno']
['electronic']
['drums', 'electronic', 'weird', 'electro', 'modern', 'no drums', 'techno']
['electronic', 'techno']
['ambient', 'electronic']
['classical', 'piano', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'harp', 'slow']
['classical', 'guitar', 'quiet', 'medieval', 'classical guitar', 'piano', 'old', 'spanish', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'quiet', 'strings', 'piano']
['classical', 'guitar', 'strings', 'classical guitar', 'slow']
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'lute', 'slow']
[]
['guitar']
[]
['harpsichord', 'no piano', 'classical', 'solo', 'strings', 'harpsicord', 'medieval', 'no vocals', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'classic', 'string', 'no vocals', 'piano', 'baroque']
['harpsichord', 'classical', 'guitar', 'harpsicord']
['harpsichord', 'classical', 'guitar', 'solo']
['female']
['vocals', 'drums', 'woman', 'rock']
['female', 'female voice', 'voice', 'pop', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'rock', 'soft', 'female singer']
['drums']
[]
['chanting', 'eastern', 'indian', 'voices']
['vocals', 'no guitar', 'weird']
['guitar', 'quiet', 'solo', 'strings', 'piano', 'slow']
['classical', 'guitar', 'strings']
['guitar']
['guitar', 'no vocal']
['guitar']
['guitar', 'string', 'guitars']
['quiet', 'ambient', 'chant']
[]
['spacey', 'ambient']
[]
['chorus', 'men', 'choral', 'male', 'choir']
['chorus', 'chanting', 'choral', 'opera', 'chant', 'male', 'vocal', 'singing', 'choir']
['choir']
['classical', 'guitar', 'harp']
['no voice', 'piano', 'slow']
['quiet', 'piano', 'soft']
['quiet', 'piano', 'slow']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'strings', 'classical guitar', 'harp', 'lute', 'piano', 'slow']
['classical', 'guitar', 'strings', 'string', 'harp', 'no flute']
[]
['no voice', 'classical', 'guitar', 'quiet', 'solo', 'strings', 'classic', 'fast', 'classical guitar', 'piano', 'slow', 'guitars', 'soft']
['guitar']
['chorus', 'classical', 'choral', 'opera', 'violin', 'orchestra', 'vocal', 'choir']
['guitar', 'banjo', 'country', 'blues']
['guitar']
['guitar', 'banjo', 'acoustic', 'fast', 'country', 'blues']
['sitar', 'guitar', 'banjo', 'country', 'blues']
['no piano', 'guitar', 'banjo', 'folk', 'strings', 'fast', 'country', 'no vocals', 'lol', 'blues', 'rock', 'fiddle']
['drums', 'electric guitar', 'rock']
['loud', 'man', 'male vocals', 'punk', 'male', 'vocal', 'rock']
['male vocal', 'heavy', 'loud', 'male vocals', 'male', 'rock']
['synth', 'electronic']
['guitar', 'synth', 'electronic', 'pop', 'techno']
['guitar', 'electric', 'electronic', 'no guitar', 'pop', 'piano', 'no drums', 'different', 'techno']
[]
['synth', 'no vocal', 'no vocals', 'piano']
[]
['male vocal', 'guitar', 'drums', 'male singer', 'man singing', 'country', 'pop', 'piano', 'male', 'rock']
['pop', 'male vocals', 'rock', 'singing']
['male']
['jazz', 'male voice', 'loud', 'pop', 'sax', 'jazzy']
['classical', 'strings', 'no vocals']
[]
['male vocal', 'classical', 'strings', 'opera', 'man']
['male vocal', 'classical', 'voice', 'strings', 'violin', 'orchestra', 'male', 'singing', 'baroque']
['guitar']
['piano', 'slow']
['classical', 'quiet', 'piano']
[]
[]
[]
['harpsichord', 'no piano', 'classical', 'guitar', 'solo', 'strings', 'string', 'classical guitar', 'no vocals', 'harp', 'piano', 'spanish', 'slow']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'classic', 'harp', 'lute', 'slow']
['guitar', 'no vocal', 'spanish']
['guitar', 'strings']
['guitar', 'slow']
[]
['drums', 'irish']
[]
['irish', 'celtic', 'eastern']
['folk', 'irish', 'celtic']
['irish', 'celtic']
['irish']
['no voice', 'folk', 'medieval', 'irish', 'instrumental', 'celtic', 'indian', 'fiddle']
['classical', 'piano', 'slow']
['piano']
['opera']
['female voice', 'opera', 'vocal', 'woman']
[]
[]
['vocals', 'female', 'vocal', 'indian']
['classical', 'strings', 'violin']
['chorus', 'choral', 'opera', 'singing', 'voices', 'choir']
['vocals', 'choral', 'opera', 'violin', 'operatic', 'choir']
['classical', 'strings', 'classic', 'irish']
['piano']
['female', 'female vocal', 'piano', 'jazzy']
['folk', 'female voice', 'female vocal', 'piano', 'woman', 'not opera', 'women']
[]
['female', 'folk', 'voice', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'singing', 'female vocals', 'female singer']
['female', 'piano', 'vocal']
['classical']
['classical', 'strings']
[]
['classical', 'violin']
['harpsichord', 'classical']
['harpsichord', 'no vocal', 'no vocals']
[]
[]
['beats', 'funky', 'no vocal', 'weird', 'modern', 'beat', 'rap', 'hip hop']
['drums', 'jungle']
['drum', 'birds', 'loud', 'drums', 'no guitar', 'tribal', 'bells', 'jungle', 'beat']
['drum', 'drums', 'beat']
[]
['birds', 'drums', 'tribal', 'bells', 'jungle', 'beat']
['drums', 'tribal']
['loud', 'drums', 'chanting', 'tribal', 'indian']
['drum', 'drums']
['female', 'drums', 'tribal', 'indian', 'singing']
['female', 'drum', 'voice', 'drums', 'tribal']
['drums', 'indian', 'female vocals']
['world', 'indian', 'woman']
['birds', 'drums', 'chanting', 'jungle', 'indian']
['drums']
[]
['singer', 'male vocal', 'guitar', 'folk', 'male voice', 'acoustic', 'man', 'male', 'vocal', 'singing']
['guitar']
['duet', 'vocal', 'singing']
['voices']
['guitar', 'country']
[]
[]
['vocals', 'female', 'female voice', 'pop', 'female vocal', 'woman', 'singing', 'female vocals']
[]
['male vocal', 'foreign', 'guitar', 'voice', 'medieval', 'male voice', 'opera', 'male singer', 'man singing', 'man', 'male', 'vocal', 'not english']
['male vocal', 'male voice', 'opera', 'male', 'singing']
['singer', 'male vocal', 'vocals', 'classical', 'folk', 'strings', 'medieval', 'male voice', 'opera', 'male singer', 'man singing', 'male', 'vocal']
['electronic']
['female voice', 'female vocal', 'indian', 'woman']
['classical', 'violin', 'cello']
[]
[]
['classical', 'guitar', 'no violin', 'slow', 'soft']
['classical', 'guitar', 'quiet', 'soft']
['guitar', 'slow']
[]
['classical', 'strings', 'violin', 'cello']
['guitar', 'solo', 'harp', 'light']
['guitar', 'solo', 'classical guitar', 'slow']
['classical', 'guitar', 'slow']
['guitar', 'no vocal']
['classical', 'guitar', 'slow']
['guitar']
['classical', 'guitar', 'strings', 'harp', 'slow']
['guitar']
['guitar']
['guitar']
['strings', 'indian']
['indian']
['sitar', 'eastern', 'indian']
['sitar', 'indian']
[]
[]
['hard rock', 'male vocal', 'heavy', 'guitar', 'drum', 'loud', 'drums', 'fast', 'heavy metal', 'punk', 'male', 'vocal', 'rock', 'beat', 'metal']
['guitar', 'banjo', 'strings', 'vocal']
['female', 'country', 'female vocal', 'female vocals']
['country', 'violin']
['guitar', 'banjo', 'violins', 'folk', 'strings', 'country', 'violin', 'guitars']
['funky', 'ambient', 'synth', 'bass', 'electronic', 'weird', 'low', 'drone', 'slow']
['electronic', 'slow']
['electronic', 'fast', 'electro', 'techno', 'beat']
[]
['no piano', 'loud', 'drums', 'electronic', 'slow', 'techno']
[]
['strings', 'violin', 'cello']
['classical', 'strings', 'no vocal', 'cello']
['violin']
['chant', 'male', 'monks']
['chanting', 'choral', 'opera', 'choir']
[]
['chant', 'male', 'vocal', 'monks']
['men', 'chanting', 'opera', 'choir']
['guitar', 'folk', 'fast', 'country', 'no vocals']
['guitar', 'country']
['guitar', 'acoustic', 'country']
['guitar', 'banjo', 'country']
['classical', 'fast', 'piano']
['classical', 'solo', 'fast', 'piano']
['piano']
['piano']
['piano']
['piano']
['classical', 'strings', 'classic']
['no piano', 'classical', 'strings', 'opera', 'violin', 'piano', 'orchestra', 'soft']
['female', 'opera', 'vocal', 'woman']
['female', 'opera', 'woman']
['female opera', 'opera']
['female', 'opera']
['female opera', 'classical', 'female', 'violins', 'opera', 'vocal', 'woman', 'singing', 'female singer']
['irish', 'eastern']
['eastern', 'vocal', 'indian']
['no voice', 'violins', 'strings', 'irish', 'celtic', 'eastern']
['guitar']
['no voice', 'classical', 'no voices', 'guitar', 'instrumental']
[]
['classical', 'guitar', 'solo', 'classic']
['classical', 'guitar', 'quiet', 'slow', 'soft']
['no voice', 'guitar', 'spanish', 'slow']
[]
['guitar']
[]
['guitar', 'electric', 'rock']
['guitar', 'pop', 'rock']
['celtic', 'woman']
['guitar', 'singing']
[]
['female', 'female vocal', 'celtic', 'no drums', 'soft', 'female singer', 'english']
['vocals', 'foreign', 'violin', 'fiddle']
['vocals', 'voice', 'violin', 'vocal', 'indian', 'singing', 'not english', 'women', 'fiddle']
['singing']
['vocals', 'no piano', 'folk', 'strings', 'drums', 'violin', 'fiddle']
['no piano', 'electronic', 'weird', 'strange', 'echo', 'scary']
['synth', 'electronic', 'no vocals', 'electronica', 'techno']
['beats', 'electric', 'ambient', 'synth', 'drums', 'electronic', 'weird', 'strange', 'industrial', 'techno', 'beat']
['beat']
['bass', 'fast']
['electronic', 'weird']
[]
['chorus', 'choral', 'vocal', 'choir']
[]
['male vocal', 'vocals', 'ambient', 'voice', 'weird', 'man', 'male', 'beat', 'soft']
['vocal', 'singing', 'techno']
['male vocal', 'vocals', 'ambient', 'male voice', 'electronic', 'no violin', 'weird', 'slow', 'male', 'vocal']
['singing']
['male vocal', 'man', 'piano', 'male vocals', 'vocal', 'singing', 'soft']
['harpsichord', 'classical', 'strings', 'violin']
[]
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'cello', 'quick', 'baroque']
['harpsichord', 'classical', 'violin', 'flute']
['classical']
['classical', 'organ', 'violin', 'flute']
['harpsichord', 'classical', 'strings', 'classic', 'fast', 'violin', 'flute']
['classical', 'quiet', 'solo', 'piano', 'slow', 'soft']
['classical', 'quiet', 'solo', 'piano', 'slow', 'soft']
['piano', 'slow']
['classical', 'quiet', 'classic', 'piano', 'slow', 'soft']
[]
['quiet', 'piano', 'sad', 'slow']
['piano']
['classical', 'quiet', 'no singing', 'strings', 'no vocal', 'harp', 'piano', 'no singer']
['piano']
['horns', 'classical', 'happy', 'strings', 'classic', 'fast', 'violin', 'oboe', 'orchestra']
['classical', 'guitar', 'fast']
['harpsichord']
['classical', 'guitar']
['classical', 'violins', 'strings', 'violin']
['classical', 'violins', 'strings', 'string', 'violin', 'slow', 'soft']
['classical']
['classical', 'violins', 'strings', 'violin']
['violin']
['classical', 'violin', 'cello']
['classical', 'solo', 'cello']
['classical', 'violins', 'strings', 'bass', 'cello']
['classical', 'strings', 'violin', 'cello']
['violin']
['classical', 'solo', 'strings', 'string', 'violin', 'cello']
[]
['classical', 'strings', 'no vocal', 'violin', 'deep', 'cello']
['wind', 'dark', 'drone']
[]
[]
[]
['men', 'classical', 'opera', 'woman']
['classical', 'guitar', 'strings', 'harpsicord', 'harp', 'no flute', 'piano']
[]
['guitar', 'quiet', 'ambient', 'no guitar', 'piano', 'slow', 'different', 'soft']
['soft rock']
['vocals', 'slow', 'singing']
[]
['vocals', 'female', 'guitar']
['no piano', 'classical', 'guitar', 'quiet', 'keyboard', 'piano', 'slow', 'soft']
['ambient', 'no vocals', 'piano', 'slow']
['vocals', 'female', 'female vocal', 'piano', 'slow', 'male', 'singing', 'calm', 'female singer']
['vocals', 'female', 'vocal']
['duet', 'vocals', 'foreign', 'female', 'spanish', 'vocal', 'choir']
['female', 'spanish', 'singing', 'voices', 'clapping']
['vocal', 'singing', 'clapping']
['foreign', 'voice', 'fast', 'tribal', 'spanish', 'clapping']
['harpsichord', 'sitar', 'classical']
['no voice', 'harpsichord', 'classical', 'strings', 'harpsicord', 'violin']
['harpsichord', 'classical', 'no vocals']
['harpsichord', 'baroque']
['harpsichord', 'classical', 'classic']
['harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord']
['violin']
['solo', 'violin', 'cello']
['classical', 'solo', 'violins', 'violin', 'cello']
['violin', 'cello']
[]
['classical', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'slow', 'cello']
['classical', 'violin']
['classical', 'solo', 'strings', 'violin', 'slow', 'cello']
['classical', 'violin', 'cello']
['classical', 'solo', 'violin', 'viola', 'slow', 'cello']
[]
['woodwind', 'classical', 'quiet', 'medieval', 'flutes', 'flute', 'soft']
['flutes', 'flute']
['guitar', 'strings', 'indian']
['sitar', 'guitar', 'string', 'indian']
['guitar', 'fast', 'spanish']
['guitar']
[]
['classical', 'folk', 'male voice', 'irish', 'celtic', 'vocal']
['male vocal', 'vocals', 'folk', 'happy', 'strings', 'classic', 'violin', 'irish', 'man', 'fiddle']
['synth', 'electronic', 'weird', 'vocal', 'techno']
['electronic', 'electro', 'techno']
['female']
['harp']
['classical', 'guitar', 'strings', 'string', 'harp', 'lute', 'piano']
['guitar', 'harp']
[]
['classical', 'guitar', 'no vocals', 'harp', 'piano']
['classical', 'harp', 'piano']
[]
['strings', 'harp']
['vocals', 'choral', 'opera', 'chant', 'male', 'choir']
['vocals', 'choral', 'choir']
['jazz', 'violin', 'horn', 'sax']
['trumpet']
['sax']
['jazz', 'drums', 'sax', 'jazzy']
['jazz', 'trumpet', 'drums', 'horn', 'sax', 'jazzy']
['jazz', 'sax']
['jazz', 'loud', 'rock', 'jazzy']
['jazz', 'jazzy']
['female', 'pop', 'piano', 'vocal', 'woman', 'singing', 'female vocals']
['instrumental', 'piano']
['electronic', 'weird', 'fast', 'industrial', 'techno']
['electronic', 'electro', 'techno']
['beats', 'electronic']
['electronic', 'techno']
['guitar', 'quiet', 'soft']
['guitar', 'slow']
['guitar', 'quiet', 'solo', 'strings', 'no vocals', 'mellow', 'slow']
['guitar', 'solo', 'slow', 'soft']
['guitar']
['guitar', 'slow', 'soft']
[]
['vocals', 'foreign', 'female', 'vocal', 'indian', 'voices']
['sitar', 'vocals', 'foreign', 'not rock', 'eastern', 'vocal', 'indian', 'singing', 'voices', 'oriental', 'women']
['harpsichord', 'classical']
['harpsichord', 'classical']
['classical']
['synth', 'drums', 'electronic', 'electronica', 'techno']
['synth', 'dance', 'techno', 'beat']
[]
['classical', 'guitar', 'solo', 'strings', 'medieval', 'no vocals', 'instrumental', 'harp', 'slow', 'no singer']
['guitar']
['jazz', 'trumpet', 'country', 'no flute', 'sax', 'jazzy']
['jazzy']
[]
['eastern']
['classical', 'strings', 'harpsicord', 'loud', 'no flute']
['loud', 'modern', 'techno']
['flute']
['harpsichord', 'folk', 'no drums', 'flute']
['no voice', 'classical', 'flute']
[]
['no voice', 'flute']
['rock', 'beat']
['female', 'rock']
['vocals', 'female', 'guitar', 'female voice', 'voice', 'drums', 'pop', 'female vocal', 'vocal', 'woman', 'woman singing', 'rock', 'singing', 'female vocals', 'beat']
['vocals', 'female', 'guitar', 'fast', 'pop', 'vocal', 'woman', 'woman singing', 'rock', 'upbeat']
['female', 'pop', 'female vocal', 'rock']
[]
['choir']
['vocals', 'classical', 'guitar', 'quiet', 'voice', 'piano', 'singing']
['vocals', 'folk', 'acoustic', 'choral', 'vocal', 'singing', 'choir']
['folk', 'male', 'singing', 'voices', 'soft']
['classical', 'guitar', 'strings', 'violin', 'soft']
['guitar', 'medieval', 'flute']
['opera', 'woman']
['classical', 'opera', 'woman']
['female', 'guitar', 'synth', 'bass', 'drums', 'electronic']
['female', 'female voice', 'pop', 'vocal', 'woman', 'rock', 'female singer']
[]
['guitar', 'no vocal', 'blues']
['opera', 'female singer']
['opera', 'slow']
['opera', 'woman']
['classical', 'solo', 'strings', 'classic', 'violin', 'slow', 'cello']
['classical', 'strings', 'slow', 'cello']
['classical', 'strings', 'violin', 'cello']
['violin']
[]
['classical', 'violins', 'strings', 'violin']
['classical', 'string', 'orchestra']
['opera']
['classical', 'strings', 'classic', 'opera', 'violin', 'orchestra']
['classical', 'voice', 'male voice', 'opera', 'violin', 'male opera', 'operatic', 'man', 'male', 'vocal', 'singing']
[]
['classical', 'organ', 'baroque']
['harpsichord']
['harpsichord', 'classical', 'synth', 'harpsicord', 'classic', 'piano', 'baroque']
['guitar']
['classical', 'guitar', 'slow']
[]
[]
[]
['harpsichord', 'classical', 'strings', 'organ', 'violin', 'baroque']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'string', 'no vocal', 'violin', 'no vocals', 'orchestra', 'old', 'baroque']
['silence', 'classical', 'quiet']
['slow']
['female', 'vocal', 'woman']
['no piano', 'spacey', 'ambient', 'synth', 'airy', 'slow', 'vocal']
['ambient']
['ambient']
['no voice', 'guitar', 'no vocal']
[]
['harpsichord', 'classical', 'guitar', 'strings', 'medieval', 'classical guitar', 'violin', 'harp', 'piano', 'slow', 'baroque']
['classical', 'strings', 'harp']
['female', 'opera', 'fast', 'woman']
['classical', 'strings', 'opera', 'violin']
['singing']
['female', 'opera']
[]
['female', 'quiet', 'female voice', 'opera', 'operatic', 'slow']
['ambient']
['synth', 'electronic', 'techno']
['no vocals', 'electronica', 'techno']
[]
['synth', 'techno']
['no vocals', 'beat']
['beats', 'drum', 'drums', 'electronic', 'fast', 'rock', 'techno', 'beat']
['electronic', 'electro', 'slow']
['no voice', 'loud', 'fast', 'no vocals', 'techno', 'beat']
['jazz', 'electronic', 'piano']
['horns', 'jazz', 'trumpet', 'percussion', 'drums', 'electronic', 'no vocal', 'horn', 'slow', 'beat']
['new age', 'trumpet', 'drums', 'electronic', 'slow', 'techno']
['trumpet', 'bass', 'drums', 'electronic', 'fast', 'fast beat', 'beat']
['guitar']
['male vocal', 'classical', 'male voice', 'harp', 'vocal', 'singing']
['guitar', 'slow', 'singing']
[]
[]
['classical', 'male voice']
['classical', 'guitar', 'solo', 'folk', 'strings', 'lute']
['classical', 'guitar']
['classical', 'guitar', 'acoustic guitar', 'slow']
['choir']
['voices']
[]
['female opera', 'opera', 'woman']
['classical', 'guitar', 'piano', 'soft']
['guitar', 'quiet', 'slow']
[]
[]
['guitar', 'quiet', 'strings', 'fast', 'piano', 'soft']
['classical', 'guitar', 'piano']
['guitar', 'strings', 'no vocal']
['classical', 'guitar', 'quiet', 'classical guitar', 'piano', 'slow', 'soft']
['guitar', 'quiet', 'classic', 'no vocal', 'harp', 'piano', 'slow']
[]
['no voice', 'harpsichord', 'classical', 'guitar', 'strings', 'classic', 'no vocals', 'harp', 'slow', 'baroque']
['classical']
['harpsichord', 'classical', 'guitar', 'harp']
['harpsichord', 'classical', 'harpsicord', 'piano']
['harpsichord', 'classical', 'piano', 'baroque']
['harpsichord', 'classical']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'no vocals']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'fast', 'no vocals', 'harp', 'baroque']
['harpsichord']
['ambient', 'synth', 'no vocals', 'slow']
[]
['male vocal', 'classical', 'guitar']
['singer', 'harpsichord', 'male vocal', 'vocals', 'classical', 'guitar', 'medieval', 'male voice', 'string', 'male singer', 'male opera', 'man', 'male', 'singing', 'english']
['classical', 'guitar', 'voice', 'opera', 'man singing']
['no voice', 'classical', 'guitar', 'classic', 'no vocal', 'harp']
['classical', 'guitar', 'strings', 'acoustic', 'harp', 'piano']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'classic']
['classical', 'opera']
['classical', 'choral', 'choir']
['classical', 'quiet', 'choral', 'opera', 'soft', 'choir']
['chanting', 'choral', 'opera', 'chant', 'male']
[]
['silence', 'violin']
[]
['strings', 'medieval', 'country', 'violin', 'fiddle']
['singer', 'vocals', 'female', 'female voice', 'female vocal', 'vocal', 'woman', 'female vocals']
['synth', 'drums', 'electronic', 'pop', 'female vocal', 'woman', 'woman singing', 'rock', 'singing']
['female', 'female voice', 'pop', 'female vocal', 'vocal', 'beat']
['female', 'female voice', 'voice', 'drums', 'woman', 'woman singing', 'rock', 'female vocals', 'techno']
['female', 'female vocal']
['female', 'drums', 'fast', 'modern', 'slow', 'techno', 'beat', 'female singer']
['guitar', 'banjo', 'blues']
['guitar']
['guitar']
['classical', 'guitar']
['guitar']
['no voice', 'classical', 'guitar', 'strings', 'slow', 'soft']
['choral', 'choir']
['quiet']
['choral', 'opera', 'voices', 'choir']
['opera']
['drums', 'rock']
['male voice', 'electric guitar', 'male vocals', 'punk', 'rock']
[]
['electronic']
['opera']
[]
['opera', 'singing', 'choir']
[]
['choral', 'opera', 'vocal', 'choir']
['chorus', 'choral', 'opera', 'different', 'choir']
['male vocal', 'foreign', 'solo', 'voice', 'male voice', 'chant', 'male', 'singing']
['foreign', 'man singing', 'man']
[]
['sitar', 'male vocal', 'foreign', 'guitar', 'banjo', 'folk', 'strings', 'country', 'male vocals', 'eastern', 'vocal', 'indian', 'not english']
['guitar', 'strings', 'drums', 'male vocals', 'indian', 'singing']
['male vocal', 'guitar', 'strings', 'male voice', 'fast', 'man', 'male']
['classical', 'classic']
['female', 'opera', 'woman']
['female opera', 'female', 'opera', 'voices']
['female opera', 'opera', 'fast', 'woman']
['harpsichord', 'classic']
['harpsichord', 'loud', 'organ', 'fast']
['guitar']
['classical', 'guitar', 'strings', 'acoustic', 'string', 'classical guitar', 'lute']
[]
['drums', 'dance']
['beats', 'repetitive', 'drums', 'fast', 'techno', 'beat']
['percussion', 'drums', 'no violin', 'fast', 'beat']
[]
['harpsichord', 'classical', 'piano', 'baroque']
['harpsichord', 'classical', 'baroque']
[]
['harpsichord', 'classical', 'organ', 'piano', 'baroque']
['harpsichord', 'classical', 'strings', 'piano', 'old', 'baroque']
['no voice', 'harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord', 'piano']
[]
['silence', 'classical', 'quiet', 'horn', 'slow', 'different', 'soft']
['quiet']
[]
['guitar', 'classic']
[]
['classical', 'violins', 'strings', 'violin', 'indian', 'cello']
['classical', 'classic', 'country', 'violin', 'cello']
['classical', 'strings', 'violin']
['violins', 'violin']
['guitar']
['guitar']
['guitar', 'slow', 'soft']
['male voice', 'opera', 'male', 'vocal', 'singing']
['male voice']
['male vocal', 'vocals', 'foreign', 'classical', 'folk', 'male voice', 'opera', 'male singer', 'man singing', 'man', 'piano', 'male', 'vocal', 'singing', 'soft', 'english']
['male vocal', 'foreign', 'irish', 'man', 'male']
['chorus', 'female', 'choral', 'opera', 'choir']
['chorus', 'classical', 'female', 'choral', 'singing', 'choir']
['irish', 'woman']
[]
['female', 'celtic', 'vocal', 'woman', 'choir']
[]
['classical', 'guitar', 'harp', 'light', 'slow', 'soft']
['classical', 'guitar', 'strings', 'string', 'no vocal', 'classical guitar', 'not opera']
['sitar', 'string', 'tribal', 'indian']
['sitar']
['sitar', 'indian']
['sitar', 'guitar', 'indian']
['sitar', 'guitar', 'eastern', 'indian', 'india']
['sitar', 'indian']
['sitar', 'indian']
['sitar']
['sitar', 'indian']
['country', 'violin', 'irish', 'fiddle']
['guitar', 'country', 'violin', 'no vocals']
['guitar', 'country', 'no vocals']
['choir']
['choir']
['choir']
['quiet', 'choral', 'slow', 'soft', 'choir']
['chorus', 'vocals', 'classical', 'choral', 'opera', 'vocal', 'choir']
[]
['harpsichord', 'classical', 'solo', 'violin', 'oboe', 'orchestra', 'slow', 'flute']
['opera']
['classical', 'opera']
['female opera', 'classical', 'female', 'strings', 'classic', 'opera', 'violin', 'female vocal', 'slow', 'woman']
['classical', 'strings', 'violin', 'slow', 'flute']
['piano', 'slow', 'jazzy']
['drums', 'piano']
['classical', 'solo', 'piano', 'slow', 'piano solo', 'soft']
['strings', 'violin', 'irish', 'piano', 'slow']
['classical', 'violin', 'piano']
['classical', 'no vocal', 'piano', 'slow']
['no singing', 'piano']
[]
['classical', 'new age', 'strings', 'violin', 'piano', 'slow', 'cello']
['piano']
['piano']
['female singing', 'foreign', 'female', 'female voice', 'vocal', 'woman']
['female', 'opera', 'female vocal', 'vocal']
['opera', 'vocal', 'voices', 'choir', 'women']
['no piano', 'sad', 'singing', 'voices', 'choir']
['classical', 'piano']
['classical', 'solo', 'fast', 'piano']
['classical', 'fast', 'piano']
['classical', 'quiet', 'piano', 'soft']
[]
['classical', 'violins', 'strings', 'opera', 'violin']
['opera']
['opera']
['duet', 'female opera', 'classical', 'female', 'opera', 'violin', 'singing', 'voices']
['chorus', 'vocals', 'quiet', 'ambient', 'choral', 'opera', 'chant', 'slow', 'soft', 'choir']
['chorus', 'classical', 'choral', 'opera', 'chant', 'vocal', 'choir']
[]
['world', 'vocals', 'female', 'tribal', 'vocal', 'not english', 'choir']
['chorus', 'foreign', 'female', 'chanting', 'tribal', 'spanish', 'vocal', 'singing', 'not english', 'women']
['guitar', 'banjo', 'country']
[]
['harpsichord', 'classical', 'guitar', 'medieval', 'no vocals']
['harpsichord', 'classical', 'solo', 'harpsicord', 'baroque']
['harpsichord']
[]
[]
['electric', 'techno', 'beat']
['beats', 'drum', 'electronic', 'beat']
['beat']
['guitar', 'quiet']
['classical', 'guitar', 'slow']
['guitar', 'slow']
['guitar']
[]
['classical', 'guitar', 'quiet', 'solo', 'strings', 'classical guitar', 'piano', 'soft']
['classical', 'solo', 'violin', 'orchestra', 'cello']
['classical', 'classic', 'violin', 'cello']
['classical', 'solo', 'strings', 'fast', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello', 'soft']
[]
[]
['classical', 'strings', 'classic', 'violin']
['classical', 'strings', 'classic', 'violin', 'no vocals']
['opera']
['classical', 'classic', 'opera', 'violin', 'female vocal', 'woman singing']
['female opera', 'classical', 'female', 'opera']
['vocals', 'classical', 'female', 'female voice', 'opera', 'violin', 'slow']
['classical', 'strings', 'violin', 'no vocals']
['classical', 'violins', 'strings', 'classic', 'violin', 'flute']
['classical']
['duet', 'world', 'foreign', 'indian', 'woman', 'singing', 'voices', 'women']
[]
[]
['sitar', 'guitar', 'strings', 'fast', 'eastern']
['opera', 'singing']
['choir']
['chorus', 'men', 'choral', 'opera', 'male opera', 'chant', 'male', 'monks', 'choir']
[]
['female', 'chant', 'eastern', 'vocal', 'indian', 'woman', 'singing']
['chorus', 'vocals', 'female', 'choral', 'vocal', 'singing', 'choir']
['female', 'choir']
['piano']
['classical', 'solo', 'classic', 'piano']
['classical', 'solo', 'fast', 'piano', 'piano solo']
[]
['classical', 'piano']
['piano']
['classical', 'piano']
['classical', 'solo', 'fast', 'piano', 'slow']
['guitar', 'banjo', 'blues']
['guitar', 'banjo', 'no vocal', 'country', 'blues']
['guitar', 'banjo']
['no piano', 'guitar', 'banjo', 'country', 'blues']
[]
[]
['female', 'opera', 'operatic', 'choir']
['duet', 'opera']
[]
['classical', 'violins', 'strings', 'violin', 'orchestral', 'slow']
['classical', 'strings', 'violin', 'instrumental', 'slow']
['strings', 'piano']
['classical', 'female', 'quiet', 'ambient', 'voice', 'strings', 'modern', 'piano', 'slow', 'vocal', 'woman', 'no drums', 'soft']
['strings']
['classical', 'violin', 'slow']
['no voice', 'classical', 'strings', 'no vocal', 'no vocals', 'horn', 'instrumental', 'slow', 'soft']
[]
['classical', 'strings']
['no voice', 'harpsichord', 'classical', 'guitar', 'strings', 'classical guitar', 'slow']
['guitar']
[]
['classical', 'guitar', 'solo', 'strings', 'acoustic', 'lute', 'slow']
['classical', 'guitar', 'strings', 'piano', 'slow']
[]
['techno']
[]
[]
['techno']
['no voice', 'quiet', 'ambient', 'noise']
['guitar']
['classical', 'guitar', 'acoustic', 'classical guitar', 'harp', 'piano', 'slow']
['classical', 'guitar', 'strings', 'classic', 'string', 'classical guitar', 'lute', 'piano', 'slow']
['guitar', 'banjo', 'country']
['classical', 'guitar', 'no singing', 'strings', 'no vocal', 'piano']
['guitar', 'slow', 'soft']
['jazz', 'guitar']
['jazz', 'guitar']
['woodwind', 'solo', 'oboe', 'flute']
['classical']
['duet', 'harpsichord', 'classical', 'quiet', 'strings', 'classic', 'violin', 'slow']
['clarinet', 'jazz', 'jazzy', 'flute']
[]
['jazz', 'funk', 'drums', 'jazzy']
['clarinet', 'jazz', 'trumpet', 'jazzy', 'flute']
['no voice', 'oriental']
['ambient', 'electronic']
['strings', 'weird', 'fast', 'strange', 'eastern', 'indian', 'guitars', 'techno']
['sitar', 'indian']
['synth', 'indian']
['harpsichord', 'no voices', 'strings']
[]
['classical']
['harpsichord', 'classical', 'strings', 'classic', 'string', 'violin', 'harp', 'slow']
['harpsichord', 'classical', 'strings', 'cello']
['harpsichord', 'classical', 'quiet', 'strings', 'violin', 'slow']
['classical', 'piano']
['quiet', 'piano']
['piano']
['classical', 'no vocal', 'piano', 'calm']
['piano']
['solo', 'piano']
['harpsichord', 'classical', 'classic', 'fast', 'violin', 'piano', 'cello']
['classical', 'strings', 'classic', 'violin', 'piano', 'orchestra', 'cello', 'soft']
['classical', 'piano']
['classical', 'classic', 'piano', 'cello']
['classical', 'strings', 'classic', 'fast', 'violin', 'piano', 'orchestra', 'cello']
['classical']
['piano']
['guitar']
[]
['classical', 'guitar', 'instrumental']
['piano']
['classical', 'guitar']
['classical', 'strings', 'classical guitar']
[]
['no voice', 'classic', 'no vocal']
['no piano', 'horns', 'classical', 'strings', 'classic', 'horn', 'oboe', 'soft']
['classical', 'quiet', 'violins', 'strings', 'violin', 'orchestra', 'slow']
['classical', 'strings', 'violin', 'slow', 'baroque']
['no voice', 'classical', 'violins', 'strings', 'violin', 'no vocals', 'slow']
['solo', 'strings', 'bass', 'violin', 'deep', 'slow', 'cello']
['classical', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['guitar', 'drums', 'rock', 'metal']
['loud', 'rock']
['hard rock', 'vocals', 'loud', 'rock', 'metal']
['quiet', 'birds']
['guitar']
[]
['male vocal', 'soft rock', 'guitar', 'male voice', 'loud', 'male vocals', 'male', 'rock']
['male vocal', 'guitar', 'man singing', 'country', 'pop']
['country', 'vocal', 'rock']
['male vocal', 'vocals', 'loud', 'man', 'pop', 'male', 'vocal', 'rock', 'singing', 'upbeat']
[]
['silence', 'guitar', 'strings', 'acoustic']
['harpsichord', 'classical', 'strings', 'violin']
[]
['harpsichord', 'classical', 'strings']
['harpsichord', 'classical']
['harpsichord']
['harpsichord', 'clasical', 'classical', 'solo', 'harpsicord', 'fast', 'piano']
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'classic']
['harpsichord', 'classical', 'classic', 'harp']
['classical', 'strings', 'violin', 'instrumental', 'slow', 'cello']
['classical', 'violin', 'cello']
['classical', 'cello']
['classical', 'violin', 'cello']
['classical', 'violin', 'cello']
['classical', 'solo', 'violins', 'strings', 'classic', 'violin', 'cello']
['classical', 'solo', 'strings', 'fast', 'violin']
['classical', 'solo', 'string', 'violin']
['violin']
['bells']
['male voice', 'male singer', 'man', 'pop', 'vocal']
['vocals', 'guitar', 'male voice', 'male']
['guitar']
['guitar', 'country', 'blues', 'singing']
['vocals', 'electric', 'synthesizer', 'singing']
['techno']
['vocal']
['guitar', 'drums', 'electric guitar', 'rock', 'beat']
['loud', 'rock']
['male vocal', 'loud', 'pop', 'rock']
['rock']
[]
['guitar', 'loud', 'fast', 'rock']
['vocals', 'rock']
['ambient']
['guitar']
['female', 'guitar', 'loud', 'fast', 'pop']
['guitar', 'electric', 'loud', 'electronic', 'no vocal', 'fast', 'rock', 'techno', 'beat']
['female vocal']
['loud', 'fast']
['drums', 'beat']
['female', 'drums', 'fast', 'female vocal', 'vocal', 'woman', 'techno']
['female', 'drum', 'fast', 'female vocal', 'vocal', 'woman']
['no voice', 'bongos', 'beats', 'funky', 'female', 'guitar', 'female voice', 'voice', 'drums', 'fast', 'electric guitar', 'fast beat', 'beat', 'upbeat']
[]
['female', 'female vocal', 'vocal', 'singing']
['slow', 'calm']
['no voice', 'medieval', 'classic', 'slow', 'flute', 'baroque']
['classical', 'harpsicord', 'classic', 'fast', 'no vocals']
['harpsichord', 'classical', 'strings', 'fast']
['harpsichord', 'classical', 'solo', 'harpsicord', 'fast']
['guitar']
['drums', 'techno']
['no piano', 'drums', 'rock', 'techno', 'beat']
['electric', 'no vocals', 'techno']
['drum', 'drums', 'electronic', 'fast', 'fast beat', 'dance', 'techno', 'beat', 'upbeat']
[]
['choral']
['female', 'no guitar', 'choral', 'singing', 'choir']
[]
['vocals', 'female', 'no flute', 'vocal', 'singing', 'choir']
[]
['opera', 'woman', 'singing']
['classical', 'opera', 'soprano']
['voice', 'opera', 'woman singing']
['female', 'opera', 'operatic', 'woman', 'singing']
['opera', 'female vocals']
['opera', 'male opera', 'man', 'slow', 'soft']
['harpsichord', 'violin']
['classical', 'violin']
['classical', 'violins']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'viola', 'orchestra']
[]
['drums']
['guitar', 'acoustic']
['guitar']
['harpsichord', 'classical', 'guitar', 'banjo', 'string', 'country']
['classical']
['harpsichord', 'classical', 'guitar', 'strings', 'baroque']
['classical', 'slow']
[]
['harpsichord', 'classical', 'violin']
['no piano', 'spacey', 'noise']
[]
['loud', 'techno']
['loud', 'techno', 'house']
['loud', 'fast', 'techno']
['hard rock']
[]
['loud', 'rock', 'techno', 'noise', 'metal']
['classical', 'guitar', 'quiet', 'solo', 'classical guitar', 'piano', 'slow', 'soft']
['harpsichord', 'classical', 'guitar', 'strings', 'no vocal', 'slow']
['harpsichord']
['synth']
['weird', 'industrial']
['classical', 'violin']
['duet', 'vocals', 'classical', 'female', 'voice', 'choral', 'opera', 'male', 'singing', 'baroque']
['male vocal', 'classical', 'female', 'voice', 'strings', 'opera', 'violin', 'male opera', 'man', 'male vocals', 'male']
['opera', 'man']
['classical', 'voice', 'strings', 'opera', 'violin', 'man', 'male']
['choral', 'choir']
['choir']
['vocal', 'choir']
[]
['blues']
['guitar', 'banjo', 'strings', 'blues']
['male vocal', 'vocals', 'guitar', 'ambient', 'synth', 'voice', 'space', 'electronic', 'weird', 'male vocals', 'slow', 'male', 'vocal', 'singing', 'techno']
['male vocal', 'vocals', 'man singing', 'slow']
['vocal']
['male vocal']
['guitar', 'rock']
['sitar', 'classical', 'guitar', 'banjo', 'solo', 'strings']
['strings', 'violin', 'sad', 'slow']
['classical', 'strings', 'violin', 'low', 'deep', 'slow', 'cello']
['classical', 'violins', 'strings']
['classical', 'strings', 'violin', 'slow']
['strings', 'violin']
['classical', 'flute']
[]
['harpsichord', 'classical', 'slow', 'flute']
['no piano', 'strings', 'medieval', 'violin', 'cello', 'flute', 'baroque']
['classical', 'flute']
['guitar', 'harp', 'flute']
['classical', 'flute']
['no vocal', 'flute']
['male vocal', 'vocals', 'guitar', 'male voice', 'male singer', 'man', 'male vocals', 'male', 'vocal', 'rock', 'singing']
['punk', 'rock']
['punk', 'rock']
['classical', 'strings', 'violin', 'orchestra', 'baroque']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'no vocals']
['female opera', 'classical', 'female', 'female voice', 'voice', 'opera', 'soprano', 'operatic', 'female vocal', 'orchestra', 'vocal', 'woman', 'woman singing']
['female opera', 'female', 'strings', 'opera', 'soprano', 'violin', 'female vocal']
['classical', 'violin', 'orchestra']
[]
['female opera', 'female', 'opera', 'lol']
['classical', 'female', 'opera', 'woman']
['classical', 'female', 'violins', 'strings', 'no guitar', 'opera', 'fast', 'violin', 'orchestra', 'female vocals']
['female', 'opera', 'vocal']
['classical', 'strings', 'violin']
['guitar', 'electronic', 'mellow']
['jazz', 'guitar', 'fast', 'electric guitar', 'instrumental', 'soft']
['classical', 'jazz', 'guitar', 'modern', 'jazzy', 'soft']
['jazz', 'guitar']
['classical', 'guitar', 'no singing', 'string', 'no vocals']
['classical', 'guitar', 'strings', 'soft']
['classical', 'guitar', 'solo', 'strings', 'harp', 'slow']
['drums']
['no piano', 'drum', 'drums', 'dark']
['guitar', 'banjo']
['guitar', 'banjo', 'fast', 'country', 'blues']
['guitar', 'fast', 'country', 'modern']
[]
['girl', 'singing']
['female vocal']
['female', 'synth', 'loud', 'vocal']
['female', 'opera', 'no flute']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'organ', 'instrumental', 'baroque']
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'slow']
['guitar', 'harp']
['classical', 'guitar', 'irish', 'not opera']
['fast', 'piano']
['classical', 'strings', 'fast', 'violin', 'piano']
['violin', 'irish', 'piano', 'fiddle']
[]
['guitar', 'solo', 'classical guitar']
['guitar', 'banjo', 'solo', 'strings', 'no vocals', 'spanish']
[]
['guitar', 'spanish']
['harpsichord']
['classical', 'guitar', 'quiet', 'harp', 'slow']
['guitar', 'acoustic', 'slow']
['classical', 'guitar', 'strings', 'classic', 'no flute']
['voice', 'woman']
['female voice', 'ambient', 'girl', 'slow']
['male vocal', 'folk', 'violin', 'male vocals']
['violin', 'irish', 'fiddle']
['vocals', 'guitar', 'vocal']
['silence', 'classical', 'guitar', 'quiet', 'low', 'piano', 'slow']
['guitar']
['classical', 'guitar', 'quiet', 'strings', 'acoustic', 'soft']
['slow']
['electronic', 'no vocal']
['choral', 'choir']
[]
['choral', 'choir']
['vocals', 'classical', 'guitar', 'folk', 'happy', 'voice', 'medieval', 'fast', 'violin', 'lute', 'old', 'male', 'vocal', 'singing', 'voices']
['vocals', 'guitar', 'folk', 'male voice', 'irish', 'man', 'vocal', 'singing', 'voices']
['chant', 'slow', 'singing', 'choir']
['choir']
[]
['guitar', 'slow']
[]
['classical', 'guitar', 'quiet', 'strings', 'harp', 'piano', 'slow']
['strings']
['classical', 'medieval', 'flutes', 'no drums', 'flute']
['chorus', 'female opera', 'classical', 'female', 'choral', 'opera', 'woman', 'choir']
['chorus', 'choral', 'choir']
['chorus', 'choral', 'vocal', 'choir']
['male vocal', 'classical', 'opera', 'male opera', 'man', 'male', 'vocal', 'singing']
['chorus', 'choral', 'opera', 'choir']
['chorus', 'vocals', 'choral', 'opera', 'singing', 'choir']
['choral', 'choir']
['guitar', 'banjo', 'strings']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'classical guitar', 'harp', 'lute', 'piano', 'slow']
['classical', 'guitar', 'banjo', 'solo', 'strings']
[]
[]
['harpsichord', 'classical', 'harp']
['no piano', 'classical', 'guitar', 'quiet', 'piano', 'soft']
['guitar']
['classical', 'guitar', 'strings', 'no vocal', 'no vocals']
['guitar', 'classical guitar']
['fast', 'piano']
['classical', 'solo', 'fast', 'piano']
['classical', 'solo', 'piano', 'slow', 'soft']
['classic', 'piano']
['classical', 'piano']
['piano', 'slow']
['drum', 'woman']
['harpsichord', 'classical', 'voice', 'opera', 'vocal', 'woman', 'woman singing']
['female opera', 'opera']
['no voice', 'harpsichord', 'classical', 'guitar', 'quiet', 'old', 'slow']
['classical', 'guitar', 'no vocals', 'instrumental']
[]
['plucking', 'harpsichord', 'classical', 'guitar', 'solo', 'string', 'classical guitar', 'harp', 'slow', 'soft']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'slow', 'soft']
['opera', 'operatic']
[]
['female opera', 'classical', 'female', 'opera', 'female vocals']
['guitar']
['classical', 'guitar']
['choral', 'opera', 'vocal', 'choir']
['silence', 'guitar']
[]
['classical', 'guitar', 'strings', 'slow']
['guitar']
['guitar', 'drums', 'country', 'pop', 'rock']
[]
['guitar', 'drums', 'country', 'pop', 'rock']
['female', 'opera']
['female', 'opera', 'woman', 'choir']
[]
['choral', 'female vocals', 'choir', 'women']
['chanting', 'choir']
['female', 'voice', 'choir']
['choral', 'vocal', 'choir']
['classical', 'strings', 'violin']
['classical', 'violins', 'strings', 'classic', 'violin', 'baroque']
['classical', 'strings', 'violin']
['classical', 'no vocals']
['harpsichord', 'no piano', 'classical', 'violins', 'strings', 'harpsicord', 'classic', 'violin', 'no vocals', 'piano', 'cello']
[]
[]
['quiet', 'violin', 'piano']
['no voice', 'classical', 'quiet', 'strings', 'violin', 'piano', 'slow', 'cello']
['classical', 'violin', 'piano', 'slow', 'cello', 'soft']
['classical', 'quiet', 'violin']
[]
['classical', 'strings', 'piano', 'slow']
['horns', 'classical', 'trumpet', 'fast', 'horn', 'oboe', 'slow', 'flute']
['horns', 'classical', 'classic', 'horn', 'oboe']
['harpsichord', 'horns', 'classical', 'oboe']
[]
['plucking', 'classical', 'guitar', 'solo', 'strings', 'classic', 'piano']
['classical', 'guitar', 'medieval', 'classical guitar', 'baroque']
['harpsichord', 'classical', 'guitar', 'baroque']
['harpsichord', 'classical', 'guitar', 'quiet', 'banjo', 'strings', 'piano']
['harpsichord', 'classical', 'guitar', 'piano']
['classical', 'strings', 'violin']
['strings', 'no vocal', 'violin', 'cello']
['cello']
['classical', 'violin', 'cello']
['classical', 'solo', 'strings', 'violin', 'cello']
['classical', 'solo', 'deep', 'cello']
['no piano', 'classical', 'strings', 'cello']
['classical', 'violin', 'no flute', 'cello']
['classical', 'violin']
['classical', 'strings', 'violin']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'baroque']
['classical', 'violins', 'strings', 'fast', 'violin']
['classical', 'violins', 'classic', 'violin']
['classical']
['harpsichord', 'classical', 'strings', 'violin', 'celtic']
['classical', 'strings', 'violin', 'no drums']
['guitar', 'bass']
['rock']
['rock']
[]
[]
[]
[]
['guitar', 'electric guitar', 'punk', 'rock']
['harpsichord', 'classical', 'strings', 'classic', 'harp', 'piano']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'organ', 'fast', 'harp']
['harpsichord', 'classical', 'medieval']
['harpsichord', 'harp', 'slow']
[]
['harpsichord', 'sitar', 'classical', 'guitar', 'strings', 'classic', 'harp', 'piano']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'slow', 'soft']
['harpsichord', 'classical', 'harpsicord', 'no vocals', 'no drums']
['classical', 'strings', 'violin', 'cello']
['classical', 'solo', 'strings', 'classic', 'violin', 'cello']
['classical', 'strings', 'violin', 'no vocals', 'cello']
['classical', 'violins', 'strings', 'no vocal', 'violin', 'no drums', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'violins', 'strings', 'string', 'violin', 'slow', 'cello']
['classical', 'violin']
['classical', 'violins', 'strings', 'string', 'violin']
['choral', 'choir']
['chorus', 'vocals', 'female', 'choral', 'choir']
['synth', 'electronic', 'organ', 'techno']
['funky', 'no piano', 'electronic', 'weird', 'fast', 'pop', 'dance', 'techno']
['techno', 'rap']
[]
['fast', 'dance', 'techno']
['vocals', 'female', 'female voice', 'opera', 'singing', 'female singer']
['male vocal', 'guitar']
['guitar', 'voice', 'man', 'male']
['male vocal', 'male', 'vocal']
['classical', 'guitar', 'folk', 'piano']
['guitar', 'solo']
['guitar', 'banjo', 'fast']
['synth', 'strings', 'electronic', 'weird', 'slow', 'techno']
['ambient', 'synth', 'drums', 'electronic', 'no guitar', 'slow', 'techno', 'beat']
['guitar', 'ambient', 'synth', 'not classical', 'slow', 'vocal', 'singing']
[]
['harpsichord', 'strings']
['classical', 'harpsicord', 'piano']
['classical']
[]
['harpsichord', 'classical', 'solo', 'harpsicord']
['harpsichord', 'classical', 'no vocal', 'baroque']
[]
['no flute', 'vocal', 'woman', 'choir', 'women']
['vocals', 'female', 'choral', 'choir']
['chimes', 'chant']
['female', 'opera', 'woman']
['voice', 'woman']
['opera']
['female vocal']
[]
['female voice', 'female vocal', 'vocal', 'woman', 'choir']
[]
['chorus', 'vocals', 'female', 'female voice', 'vocal', 'woman', 'singing', 'choir', 'female singer']
['chorus', 'choral', 'opera', 'vocal', 'choir']
[]
['choir']
['female', 'female voice', 'opera']
['female', 'opera', 'violin']
['female opera', 'opera', 'vocal']
[]
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'violin', 'old', 'cello', 'baroque']
['classical', 'violins', 'strings', 'fast', 'violin', 'cello']
[]
['classical', 'quiet', 'strings', 'classic', 'cello', 'female vocals']
['female', 'opera']
['female', 'opera']
['female opera', 'strings', 'opera', 'violin']
['violin']
['harpsichord', 'classical', 'classic', 'violin', 'no vocals']
['harpsichord', 'no piano', 'classical', 'strings', 'violin']
['classical', 'slow', 'flute']
['classical', 'quiet', 'flute']
['harpsichord', 'classical', 'flute']
['harpsichord', 'classical', 'flute']
['harpsichord', 'sitar', 'classical', 'guitar', 'harpsicord', 'medieval', 'loud', 'organ', 'harp', 'piano', 'slow']
['guitar', 'acoustic', 'acoustic guitar', 'pop']
['guitar']
['classical', 'female', 'opera', 'operatic', 'vocal', 'singing']
['classical', 'violins', 'classic', 'orchestra']
['female', 'opera', 'vocal']
['female opera', 'classical', 'female', 'opera', 'vocal', 'woman']
['classical', 'opera', 'violin']
['female', 'opera', 'soprano']
[]
['guitar']
['classical', 'guitar', 'classical guitar']
['classical', 'guitar', 'classic']
['classical', 'guitar', 'solo', 'strings', 'no vocal', 'classical guitar', 'no vocals', 'lute', 'slow']
['organ']
['female opera', 'classical', 'opera', 'woman', 'singing']
['female', 'opera', 'vocal', 'woman']
[]
['female', 'opera']
['female voice', 'opera', 'woman']
['soft']
['classical', 'violins', 'strings', 'classic']
['classical', 'strings', 'classic', 'violin', 'irish', 'baroque']
['sitar', 'classical', 'guitar', 'medieval', 'spanish']
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'spanish', 'slow']
['female', 'opera', 'soprano', 'female vocal', 'woman']
['harpsichord', 'classical', 'guitar', 'strings', 'acoustic']
['guitar']
['guitar', 'happy', 'slow', 'blues']
['ambient', 'new age', 'strings', 'electronic', 'synthesizer', 'bells', 'mellow', 'slow']
[]
['no voice', 'electric', 'ambient', 'synth', 'loud', 'electronic', 'fast', 'electronica', 'techno', 'beat']
['guitar', 'quiet', 'acoustic', 'piano', 'slow']
['guitar', 'strings']
['guitar', 'acoustic']
['guitar', 'quiet', 'string', 'piano', 'slow', 'soft']
['classical', 'quiet']
['guitar', 'soft']
[]
['harpsichord', 'classical', 'strings']
['harpsichord', 'classical', 'fast']
['harpsichord', 'classical', 'no violin']
['harpsichord']
[]
['harpsichord', 'classical']
[]
['male vocal', 'classical', 'guitar', 'voice', 'male voice', 'male singer', 'man', 'slow', 'male', 'vocal', 'singing']
['male vocal', 'classical', 'irish', 'vocal']
['duet', 'male vocal', 'vocals', 'men', 'classical', 'not rock', 'opera', 'male vocals']
[]
['harpsichord', 'classical', 'strings', 'classic', 'no vocal', 'piano']
['guitar']
['guitar', 'classical guitar', 'piano']
['classical', 'guitar', 'piano', 'slow', 'soft']
['guitar', 'solo']
['classical', 'guitar', 'strings', 'slow']
['harpsichord', 'classical', 'no vocal', 'fast']
[]
['harpsichord', 'strings']
['harpsichord', 'classical', 'solo', 'strings', 'harpsicord', 'classic', 'no vocal', 'fast', 'baroque']
['harpsichord']
[]
['vocals', 'choral', 'opera', 'choir']
['chorus', 'choral', 'opera', 'slow']
['chorus', 'no piano', 'choral', 'choir']
['choral', 'opera', 'vocal', 'choir']
['choral', 'opera', 'choir']
['choir']
['chorus', 'men', 'chanting', 'choral', 'opera', 'choir']
['chorus', 'slow', 'choir']
['vocals', 'choral', 'vocal', 'women']
[]
['female voice', 'medieval', 'harp', 'vocal', 'woman', 'singing', 'female vocals']
['folk', 'vocal', 'singing']
['new age', 'electronica', 'male', 'vocal']
[]
['foreign', 'electronic', 'fast', 'rock', 'techno', 'not english']
['vocals', 'fast', 'modern', 'vocal', 'techno', 'not english']
['drums', 'fast', 'techno']
['foreign']
[]
['guitar', 'loud', 'male vocals', 'punk', 'rock', 'singing']
['harpsichord']
['sitar', 'classical', 'guitar', 'strings', 'acoustic', 'lute', 'indian']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'harpsicord', 'harp', 'piano', 'slow']
['harpsichord', 'classical', 'harpsicord', 'baroque']
['guitar', 'drums', 'rock']
['hard rock', 'male vocal', 'guitar', 'loud', 'fast', 'man', 'punk', 'rock', 'beat']
['male singer', 'punk', 'rock']
[]
['vocals', 'classical', 'guitar', 'voice', 'male voice', 'opera', 'man singing', 'man', 'slow', 'male', 'singing']
['opera', 'male opera']
['classical']
['classical', 'guitar']
['opera', 'vocal']
[]
['classical', 'violins', 'strings', 'classic', 'violin', 'soft']
['classic', 'opera', 'violin', 'male']
['male vocal', 'opera', 'male opera', 'man', 'male']
['opera', 'male']
['classical', 'opera', 'male opera', 'male']
['classical', 'strings', 'opera', 'violin']
['strings', 'male voice', 'opera', 'male']
['strings', 'male voice', 'opera', 'male opera', 'operatic', 'man', 'male', 'vocal', 'singing']
[]
['opera', 'male opera', 'man', 'male', 'singing']
[]
['guitar']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'classic', 'classical guitar', 'slow', 'no drums', 'soft']
['guitar', 'string', 'slow']
['guitar', 'folk']
['female', 'guitar', 'quiet', 'voice', 'strings', 'bass', 'string', 'bells', 'harp', 'piano', 'slow', 'soft']
['female', 'quiet', 'folk', 'irish', 'female vocal', 'slow', 'vocal', 'woman', 'singing']
['classical', 'guitar', 'strings', 'violin', 'harp']
['female', 'guitar', 'female voice', 'female vocal', 'vocal']
['female', 'voice', 'opera', 'vocal', 'woman']
['classical', 'strings', 'classic', 'violin', 'harp', 'piano']
['female', 'harp', 'celtic', 'vocal', 'woman', 'singing']
['female', 'male', 'vocal', 'woman']
['classical', 'violin']
['classical', 'female', 'voice', 'opera', 'female vocal', 'vocal', 'singing', 'cello']
['no piano', 'classical', 'female', 'strings', 'classic', 'opera', 'violin', 'vocal']
['opera']
['guitar']
['classical', 'guitar', 'classical guitar']
['guitar', 'strings', 'piano', 'slow']
['classical', 'guitar', 'classic', 'piano', 'slow', 'quick']
['classical', 'guitar']
['guitar']
['classical', 'guitar', 'strings']
['classical', 'guitar']
['harpsichord']
['guitar', 'quiet']
['guitar']
['classical', 'guitar']
['guitar', 'solo', 'slow']
['guitar', 'strings', 'no vocals', 'slow']
['guitar']
['classical', 'solo', 'light', 'piano']
['classical', 'piano']
['classical', 'piano']
['lol', 'piano']
['classical', 'quiet', 'piano']
['classical', 'solo', 'classic', 'harp', 'piano']
['classical', 'piano']
['piano']
['piano']
['classical', 'piano', 'slow']
['guitar', 'no singing', 'country']
['guitar', 'banjo', 'solo', 'fast']
['sitar', 'guitar', 'banjo', 'fast']
['classical', 'female', 'opera']
['male vocal', 'classical', 'solo', 'voice', 'male voice', 'classic', 'opera', 'male singer', 'male opera', 'man', 'male vocals', 'slow', 'male', 'vocal', 'soft']
['male vocal', 'opera', 'male opera']
['male vocal', 'voice', 'strings', 'male voice', 'opera', 'man singing', 'male opera', 'man', 'male vocals', 'male']
['male vocal', 'opera', 'male opera', 'male']
['no piano', 'guitar', 'slow']
['guitar', 'no vocal', 'classical guitar', 'slow']
['classical', 'guitar', 'strings', 'harpsicord', 'celtic', 'old']
['beats', 'electronic', 'weird', 'fast', 'violin', 'irish', 'quick']
[]
['fast', 'fiddle']
['chorus', 'vocals', 'female', 'choral', 'opera', 'singing', 'voices', 'choir', 'women']
[]
['quiet', 'opera', 'female vocals', 'soft']
['opera']
[]
['foreign', 'opera', 'man', 'vocal']
['harpsichord', 'classical', 'strings', 'harpsicord', 'slow', 'cello']
['harpsichord', 'classical', 'violin', 'cello']
['classical', 'strings', 'classic', 'piano']
['classical', 'violins', 'strings', 'classic', 'violin', 'piano']
['classical', 'strings', 'piano']
['classical', 'violins', 'violin', 'piano']
['classical', 'strings', 'classic', 'fast', 'violin', 'piano']
[]
['female opera', 'female', 'guitar', 'opera', 'operatic', 'female vocal', 'vocal', 'woman', 'singing']
['hard rock', 'rock', 'metal']
['man singing', 'man', 'rock']
['male vocal', 'vocals', 'heavy', 'guitar', 'loud', 'drums', 'heavy metal', 'male', 'vocal', 'rock', 'metal']
['rock', 'metal']
['rock']
['hard rock', 'heavy', 'loud', 'heavy metal', 'male', 'rock', 'metal']
[]
['harpsichord', 'strings', 'harpsicord']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'piano']
[]
['classical', 'solo', 'violin', 'cello']
['classical', 'strings', 'violin', 'slow', 'cello']
['solo', 'violin', 'sad', 'slow', 'cello']
['classical', 'solo', 'strings', 'classic', 'string', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
['classical', 'strings', 'violin', 'cello']
[]
['solo', 'strings', 'violin']
['chorus', 'vocals', 'classical', 'quiet', 'choral', 'opera', 'slow', 'vocal', 'singing', 'voices', 'soft', 'choir']
['bells']
['guitar', 'banjo', 'no vocals', 'indian']
['guitar', 'banjo', 'fast']
['guitar', 'banjo', 'strings', 'no vocal', 'fast', 'country', 'blues']
[]
['guitar', 'piano', 'slow', 'vocal', 'singing']
[]
[]
['duet', 'classical', 'opera', 'singing', 'female vocals']
[]
['foreign', 'female', 'singing', 'voices']
['vocal', 'voices']
['vocals', 'spanish', 'women']
['voice', 'spanish']
[]
['classical', 'female', 'opera', 'vocal', 'woman', 'singing']
['vocals', 'classical', 'female', 'quiet', 'female voice', 'classic', 'opera', 'soprano', 'operatic', 'slow', 'woman', 'woman singing', 'singing', 'soft']
['vocal']
['vocals', 'classical', 'female', 'quiet', 'opera', 'vocal', 'singing']
['guitar', 'solo', 'folk', 'fast', 'country']
['guitar', 'folk', 'country', 'blues']
[]
['vocals', 'choral', 'opera', 'low', 'chant', 'slow', 'male', 'vocal', 'voices', 'soft', 'choir']
['chorus', 'vocals', 'men', 'choral', 'opera', 'male', 'choir']
['chorus', 'choral', 'opera', 'male', 'choir']
['chant', 'vocal', 'choir']
['violin']
['violin']
['classical', 'strings', 'classic', 'fast', 'violin']
['classical', 'strings', 'violin', 'slow']
['classical', 'violins', 'strings', 'violin', 'irish']
['classical', 'strings', 'violin', 'irish', 'soft', 'fiddle']
['harpsichord', 'violin', 'celtic']
[]
['no vocals', 'slow', 'flute']
['classical', 'flute']
['classical', 'flute']
['flute']
['slow', 'flute']
['classical', 'instrumental', 'mellow', 'no drums', 'flute']
['classical', 'medieval', 'organ', 'instrumental', 'flutes', 'slow', 'flute', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'baroque']
['harpsichord', 'classical']
['harpsichord', 'fast']
['guitar', 'quiet', 'slow', 'jazzy']
['guitar', 'solo', 'mellow', 'slow']
['classical', 'violins', 'strings', 'classic', 'string', 'fast', 'violin', 'orchestral', 'piano', 'flute', 'baroque']
['classical', 'strings', 'fast', 'violin', 'orchestra', 'baroque']
['guitar', 'acoustic']
[]
['guitar', 'solo', 'slow']
[]
['flutes', 'flute']
['vocals', 'foreign', 'female', 'guitar', 'folk', 'female voice', 'medieval', 'irish', 'female vocal', 'celtic', 'slow', 'vocal', 'woman', 'woman singing', 'singing', 'female vocals', 'flute', 'not english']
['no piano', 'female', 'vocal', 'female vocals', 'female singer']
['chorus', 'vocals', 'no strings', 'foreign', 'vocal']
['chorus', 'female', 'choral']
['chorus', 'vocals', 'foreign', 'female', 'chanting', 'chant', 'vocal', 'voices', 'not english', 'choir', 'women']
['vocal', 'indian']
[]
['pop']
['duet', 'harpsichord', 'classical', 'strings', 'violin', 'slow', 'cello']
['harpsichord', 'classical', 'strings', 'violin']
['vocals', 'female', 'voice', 'vocal', 'singing', 'not english']
['chorus', 'vocals', 'female', 'vocal', 'singing', 'choir']
['women']
['chorus', 'singing', 'choir']
['male vocal', 'vocals', 'men', 'classical', 'quiet', 'violins', 'strings', 'male voice', 'choral', 'opera', 'man singing', 'violin', 'man', 'slow', 'male', 'vocal', 'singing', 'soft', 'choir']
['classical']
['classical', 'violins', 'strings', 'choral', 'opera', 'violin', 'slow', 'no drums', 'soft', 'choir']
['classical', 'classic', 'opera', 'singing', 'choir']
['male vocal', 'foreign', 'male voice', 'opera', 'man', 'male', 'vocal']
['voice', 'male voice', 'opera', 'male']
['classical', 'no vocal', 'fast', 'violin', 'no vocals', 'orchestra']
['choir']
['choir']
['guitar', 'strings']
['guitar', 'string']
['classical', 'guitar', 'harp']
['classical', 'guitar', 'strings']
['no voice', 'harpsichord', 'classical', 'guitar', 'folk', 'strings', 'classic', 'no vocals', 'slow']
['no strings', 'classical', 'solo', 'classic', 'fast', 'piano']
['piano']
['no vocals', 'piano']
['female singing', 'female', 'guitar', 'quiet', 'soprano', 'woman', 'singing', 'not english', 'women']
['singer', 'female', 'guitar', 'voice', 'medieval', 'opera', 'female vocal', 'vocal', 'woman', 'female singer']
['guitar', 'strings', 'classic']
['classical', 'guitar']
['classical', 'guitar', 'strings', 'no vocal', 'harp', 'piano', 'old']
['classical', 'strings', 'classic', 'baroque']
[]
['classical', 'strings', 'classic', 'organ', 'violin', 'slow', 'flute']
['classical', 'strings', 'organ', 'flutes', 'slow', 'flute', 'soft']
['female', 'opera']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'no vocal', 'violin', 'no vocals', 'slow', 'cello']
['harpsichord', 'classical', 'female', 'quiet', 'female voice', 'opera', 'violin', 'vocal', 'woman', 'woman singing', 'singing', 'cello']
['opera', 'operatic', 'female vocal', 'woman']
['harpsichord', 'classical', 'female', 'opera', 'violin', 'woman']
['female opera', 'opera', 'woman']
['opera', 'vocal']
[]
['classical', 'strings']
[]
['guitar', 'blues']
['guitar', 'fast', 'country', 'rock']
['guitar', 'country']
['guitar', 'blues', 'rock']
['piano']
['classical', 'guitar']
['plucking', 'harpsichord', 'classical', 'guitar', 'strings', 'piano', 'slow']
['classical', 'guitar', 'slow']
['classical', 'guitar', 'quiet', 'string', 'piano', 'slow', 'soft']
[]
[]
['classical', 'guitar', 'quiet', 'no vocal', 'slow']
['classical', 'guitar', 'strings']
['classical', 'guitar', 'strings', 'no vocal', 'no vocals', 'slow']
['guitar', 'solo', 'string', 'slow']
['guitar', 'strings', 'slow']
[]
['classical', 'guitar', 'strings', 'medieval', 'no violin', 'classical guitar', 'harp']
[]
[]
['harpsichord', 'classical', 'harpsicord', 'harp']
['harpsichord', 'classical', 'harpsicord', 'classic']
['harpsichord', 'classical', 'strings', 'harpsicord', 'no vocal', 'baroque']
['harpsichord']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'harpsicord']
['harpsichord', 'classical', 'strings']
['classical', 'guitar', 'solo', 'no vocals']
['classical', 'guitar', 'piano']
['classical', 'guitar']
['guitar']
['classical', 'guitar', 'strings']
['guitar', 'strings', 'spanish']
['guitar']
['new age', 'drums', 'fast', 'flute', 'beat', 'upbeat']
['ambient', 'synth', 'electronic', 'piano', 'slow']
['harpsichord', 'classical', 'guitar', 'solo', 'medieval', 'classical guitar', 'harp', 'slow']
['guitar']
['classical', 'guitar']
['female', 'opera', 'female vocal']
['classical', 'female', 'quiet', 'solo', 'female voice', 'strings', 'opera', 'violin', 'light', 'cello', 'calm', 'soft']
['voice', 'opera', 'violin', 'female vocal', 'cello']
[]
['classical', 'guitar', 'classical guitar', 'piano', 'soft']
['classical', 'guitar', 'strings', 'classic', 'harp', 'piano']
['strings']
['classical', 'female', 'strings', 'opera', 'soprano', 'female vocal', 'slow', 'vocal', 'woman']
['harpsichord', 'female', 'strings', 'opera', 'female vocal', 'woman']
['guitar']
['guitar', 'strings', 'no vocal', 'classical guitar', 'no vocals']
['classical', 'guitar', 'solo', 'strings', 'no vocal', 'classical guitar', 'instrumental', 'harp', 'slow']
['classical', 'guitar', 'soft']
['guitar']
['classical', 'guitar', 'strings', 'acoustic guitar', 'lute', 'piano', 'slow', 'baroque']
['guitar', 'solo']
['chant', 'male', 'choir']
['chorus', 'choral', 'choir']
['choir']
['guitar', 'voice', 'bass', 'male voice', 'drums', 'electric guitar', 'rock', 'singing']
['man', 'male vocals', 'male', 'rock', 'metal']
['harpsichord', 'classical', 'baroque']
['classical', 'guitar', 'solo', 'classical guitar', 'slow']
['guitar', 'strings']
['male vocal', 'vocals', 'classical', 'guitar', 'opera', 'man', 'vocal']
['male vocal', 'classical', 'guitar', 'solo', 'opera', 'male singer', 'man', 'male', 'vocal', 'singing', 'not english']
['classical', 'opera']
['classical', 'solo', 'piano', 'slow', 'soft']
[]
['classical', 'piano', 'slow']
['classical', 'quiet', 'solo', 'piano', 'soft']
['piano', 'slow']
['piano', 'slow']
['no vocal', 'no vocals', 'piano']
['classical', 'piano']
['piano']
['no vocals', 'piano']
['foreign', 'female', 'voice', 'strings', 'opera', 'fast', 'violin', 'irish', 'celtic', 'vocal', 'singing', 'fiddle']
['opera', 'woman', 'fiddle']
['strings', 'violin', 'irish']
['folk', 'fiddle']
['classical', 'strings']
['female', 'opera']
['classical', 'female', 'opera', 'operatic']
['female', 'opera']
['guitar', 'banjo', 'country', 'blues']
['guitar', 'banjo', 'country']
['guitar', 'banjo', 'solo', 'country', 'no vocals']
['no voice', 'guitar', 'no vocal', 'country', 'no singer']
['guitar']
['no piano', 'guitar', 'country', 'violin', 'blues']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'quiet', 'classical guitar', 'spanish', 'slow']
['guitar', 'country']
[]
['flutes', 'flute']
['harpsichord', 'classical', 'strings', 'violin', 'cello', 'baroque']
['no strings', 'horns', 'classical', 'strings', 'oboe', 'orchestra']
['classical']
[]
['classical', 'strings', 'horn', 'oboe']
['guitar', 'strings', 'harp', 'piano', 'slow']
[]
['sitar', 'guitar', 'slow']
['classical', 'guitar', 'no singing', 'slow']
['guitar']
['classical', 'guitar', 'classic']
['guitar', 'strings']
['classical', 'guitar', 'classical guitar', 'harp']
['guitar', 'drums', 'rock']
['male vocal', 'vocals', 'guitar', 'man', 'rock']
['hard rock', 'male vocal', 'guitar', 'male voice', 'male', 'vocal', 'rock', 'metal']
['guitar', 'rock']
['harpsichord']
['classical']
['no voice', 'harpsichord', 'classical', 'strings', 'harpsicord']
['harpsichord', 'classical']
['harpsichord', 'baroque']
['violin']
['classical', 'strings', 'violin', 'cello']
['classical', 'violin', 'cello']
[]
['classical', 'solo', 'strings', 'no vocal', 'violin', 'cello']
['classical', 'solo', 'strings', 'string', 'violin']
[]
[]
[]
['female opera', 'classical', 'female', 'female voice', 'opera', 'female vocal', 'woman singing']
['harpsichord', 'female', 'voice', 'medieval', 'no flute', 'slow', 'woman']
['choral', 'chant', 'male', 'choir']
['chorus', 'quiet', 'chanting', 'low', 'chant', 'slow', 'choir']
['low']
['choral', 'chant', 'sad']
['vocals', 'choral', 'choir']
['slow', 'vocal', 'choir']
['harpsichord', 'classical', 'solo', 'harpsicord', 'organ', 'fast', 'piano', 'baroque']
['classical', 'harpsicord', 'fast']
['harpsichord', 'classical', 'guitar']
['harpsichord', 'classical', 'strings', 'classic', 'no violin', 'violin', 'piano']
['harpsichord', 'classical', 'guitar', 'strings', 'harpsicord', 'fast', 'slow', 'baroque']
['no voice', 'no strings', 'ambient', 'synth', 'strings', 'no vocal', 'electro']
['synth', 'electronic', 'techno']
['synth', 'loud', 'electronic', 'rock', 'techno', 'beat', 'upbeat']
['spacey', 'electric', 'new age', 'synth', 'loud', 'fast', 'no vocals', 'techno']
['quiet', 'wind', 'ambient', 'birds']
[]
['classical', 'strings', 'violin']
[]
['quiet', 'wind']
['ambient', 'dark']
['wind', 'ambient', 'noise']
['noise']
['synth', 'loud', 'weird', 'noise']
['wind']
['classical', 'violin', 'oboe']
['vocals', 'classical', 'female', 'female voice', 'voice', 'opera', 'vocal', 'woman']
['female opera', 'classical', 'female', 'voice', 'opera', 'vocal', 'woman', 'singing']
['female opera', 'classical', 'female voice', 'opera', 'violin', 'female vocal', 'woman', 'flute', 'soft']
['classical', 'female', 'female voice', 'opera', 'woman', 'female vocals']
['classical', 'opera']
['classical', 'flute']
['classical', 'violins', 'strings', 'classic', 'fast', 'violin', 'orchestra']
['female singing', 'voice', 'opera', 'vocal', 'woman']
['classical', 'female', 'opera', 'vocal', 'woman', 'singing']
['female opera', 'classical', 'female voice', 'strings', 'opera', 'violin', 'lol', 'orchestra']
['female opera', 'female', 'opera', 'woman']
['guitar']
['harpsichord', 'classical', 'guitar', 'solo', 'acoustic', 'lute', 'piano', 'slow']
['classical', 'no singing', 'violin', 'cello', 'flute']
['harpsichord', 'female opera', 'female', 'female voice', 'opera']
['harpsichord', 'vocals', 'classical', 'female', 'voice', 'harpsicord', 'opera', 'female vocal', 'piano', 'slow', 'vocal', 'woman', 'singing', 'cello', 'female singer']
['choral', 'choir']
['chorus', 'choral', 'vocal', 'choir']
['harpsichord', 'classical', 'strings', 'no vocals', 'harp', 'slow']
['harpsichord', 'classical', 'solo', 'harpsicord']
['harpsichord', 'classical', 'strings', 'harpsicord', 'medieval', 'piano']
['harpsichord', 'classical', 'strings', 'harpsicord', 'no vocals', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'classic', 'organ', 'piano', 'baroque']
['synth', 'no vocals', 'techno']
['electronic', 'fast', 'dance']
['synth', 'loud', 'electronic', 'electro', 'techno', 'beat']
['techno']
['guitar', 'banjo', 'solo', 'folk', 'country', 'no vocals', 'blues']
['guitar', 'banjo', 'country', 'blues']
['guitar', 'banjo', 'country']
['choral', 'opera', 'male', 'choir']
[]
['classical', 'choral', 'choir']
['chorus', 'choral', 'choir']
['vocal', 'choir']
['men', 'choral', 'chant', 'choir']
['choral', 'chant', 'male', 'choir']
['men', 'chanting', 'choral', 'opera', 'male vocals', 'male', 'choir']
['men', 'chanting', 'sad', 'slow', 'choir']
['classical', 'strings', 'no vocal', 'orchestra']
['classical']
['classical', 'guitar']
['classical', 'guitar', 'slow', 'soft']
['male vocal', 'man', 'male', 'vocal']
['male vocal', 'opera', 'male']
[]
['male vocal', 'guitar', 'voice', 'medieval', 'male voice', 'opera', 'male opera', 'man', 'male vocals', 'male', 'vocal', 'singing']
['opera']
['chorus', 'choral', 'voices']
['opera', 'vocal', 'choir']
['female', 'vocal', 'woman', 'choir']
['harpsichord', 'classical', 'harpsicord', 'baroque']
['harpsichord', 'classical', 'piano']
['harpsichord', 'fast']
['guitar']
['classical', 'guitar', 'piano']
['no voice', 'classical', 'guitar', 'quiet', 'harp', 'piano', 'slow', 'soft']
['classical', 'no voices', 'guitar', 'quiet', 'solo', 'no vocal', 'classical guitar', 'no vocals', 'spanish']
['harp']
['classical', 'guitar', 'no singing', 'soft']
[]
['plucking', 'guitar', 'quiet', 'strings', 'piano', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'acoustic', 'classical guitar']
[]
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'no vocals', 'harp', 'piano', 'slow', 'soft']
[]
['classical', 'strings', 'harp']
['classical', 'guitar', 'solo', 'piano', 'spanish', 'slow', 'soft']
['pop']
['guitar', 'no singing', 'electric guitar', 'country', 'rock']
['guitar', 'country', 'no vocals']
['guitar', 'country']
['guitar', 'banjo', 'no vocal', 'country', 'no vocals', 'instrumental', 'blues', 'guitars']
['no piano', 'guitar', 'solo', 'blues']
['guitar', 'country', 'blues']
['no voice', 'guitar', 'rock']
['punk', 'rock', 'metal']
[]
['guitar', 'electric guitar', 'rock']
['rock']
['harpsichord', 'woodwind', 'no piano', 'horns', 'classical', 'quiet', 'harpsicord', 'irish', 'slow', 'flute', 'soft']
['harpsichord', 'classical', 'harpsicord', 'slow', 'flute']
['flute']
['harpsichord', 'classical', 'harpsicord', 'flutes', 'flute', 'baroque']
['harpsichord', 'guitar', 'harp', 'flute']
['opera']
[]
['classical', 'strings', 'fast', 'violin', 'oboe']
['classical', 'choral', 'opera']
[]
['male vocal', 'classical', 'opera', 'man', 'slow', 'vocal', 'singing']
['male vocal', 'vocals', 'classical', 'opera']
['vocals', 'medieval', 'male voice']
[]
[]
['female', 'opera']
['harpsichord', 'classical', 'strings', 'different']
['harpsichord', 'classical', 'guitar', 'strings']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'harp', 'lute', 'piano', 'baroque']
['guitar', 'solo', 'instrumental', 'slow']
['classical', 'guitar', 'solo', 'strings', 'spanish', 'slow']
['guitar']
['classical', 'guitar', 'classical guitar', 'slow']
[]
['guitar', 'classical guitar', 'harp', 'slow', 'soft']
['guitar', 'strings']
['classical', 'strings', 'violin', 'cello']
['strings', 'violin', 'cello']
['classic', 'violin', 'cello']
['classical', 'guitar', 'harp', 'slow']
[]
['guitar', 'solo', 'violin']
['fast', 'piano']
['classical', 'fast', 'piano']
['piano']
['piano']
['classical', 'solo', 'classic', 'light', 'piano', 'slow', 'baroque']
['classical', 'no vocal', 'piano', 'slow']
['opera']
['no voice', 'classical', 'violins', 'no singing', 'strings', 'violin', 'no vocals', 'slow']
['classical', 'no singing', 'strings', 'no vocal']
['harpsichord', 'classical', 'strings', 'violin', 'slow', 'no drums', 'fiddle']
[]
['violin']
['violins', 'flute']
['violin', 'celtic']
['folk', 'violin']
['classical', 'strings', 'medieval', 'violin', 'irish']
['harpsichord', 'violins', 'classic', 'country', 'violin', 'no vocals', 'irish', 'fiddle']
['guitar']
['guitar', 'no beat', 'banjo', 'no vocal', 'country']
['loud', 'rock', 'metal']
['hard rock', 'male vocal', 'heavy', 'guitar', 'loud', 'drums', 'electric guitar', 'heavy metal', 'male vocals', 'punk', 'rock', 'noise', 'metal']
['metal']
[]
[]
['guitar', 'strings', 'classical guitar', 'piano']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'classical guitar', 'harp', 'slow']
['guitar', 'strings', 'instrumental']
[]
['horns', 'classical', 'strings', 'violin', 'horn', 'oboe', 'slow']
['no voice', 'horns', 'classical', 'no vocal', 'no vocals']
['no piano', 'classical', 'slow']
['harpsichord', 'classical']
['classical', 'guitar']
['harpsichord', 'classical', 'baroque']
['harpsichord', 'clasical', 'classical', 'strings', 'organ', 'fast', 'harp', 'baroque']
['classical', 'solo', 'strings', 'violin', 'slow', 'cello']
['cello']
['cello']
['classical', 'solo', 'strings', 'classic', 'string', 'violin', 'slow', 'cello']
['classic', 'violin']
[]
['man']
['male vocal', 'classical', 'guitar', 'male voice', 'opera', 'man', 'male vocals', 'male']
['male vocal', 'guitar', 'man']
['no voice', 'classical', 'guitar', 'lute', 'piano']
['classical', 'guitar', 'solo', 'strings', 'acoustic', 'classical guitar']
['guitar', 'strings', 'slow', 'soft']
['guitar']
['guitar', 'no vocal', 'no vocals', 'soft']
['guitar', 'slow']
['chanting', 'choral', 'choir']
['harpsichord', 'classical', 'harpsicord', 'fast']
['harpsichord', 'classical', 'harpsicord', 'classic']
['classical', 'flutes', 'slow', 'flute']
['flute']
['harpsichord', 'classical', 'guitar', 'strings', 'not rock']
['guitar', 'strings', 'mellow']
['harpsichord', 'strings', 'harpsicord', 'no flute']
['harpsichord', 'classical', 'organ', 'harp', 'slow']
[]
['classical', 'guitar', 'strings', 'classical guitar', 'slow']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'classical guitar', 'harp', 'piano', 'spanish', 'slow', 'soft']
['guitar', 'no vocal', 'instrumental', 'harp', 'piano', 'baroque']
['guitar', 'harp', 'slow', 'soft']
['guitar', 'strings', 'no vocal', 'no vocals', 'piano']
['classical', 'guitar', 'strings', 'baroque']
['guitar']
[]
['classical', 'strings']
['classical', 'violins', 'strings', 'classic', 'oboe', 'orchestra']
['male vocal', 'opera', 'male opera']
['harpsichord', 'classical', 'strings', 'classic', 'flutes', 'slow', 'cello', 'flute']
['classical', 'flute']
[]
['classical', 'slow', 'flute']
['classical', 'strings', 'flute']
['classical', 'strings']
['female opera', 'female', 'strings', 'opera', 'woman']
['female opera', 'vocals', 'opera', 'flute']
['classical', 'opera', 'flute']
['flute']
['opera', 'female vocal', 'vocal', 'flute']
['classical', 'violins', 'opera', 'violin']
['classical', 'guitar', 'male vocals', 'male']
['male vocal', 'guitar', 'voice', 'medieval', 'male voice', 'opera', 'man', 'slow', 'male', 'vocal']
['singing']
[]
['chorus', 'choir']
[]
['harpsichord', 'classical', 'piano']
[]
['harpsichord', 'classical']
['harpsichord', 'classical']
['harpsichord', 'classical', 'classic', 'instrumental']
['harpsichord', 'classical', 'no voices', 'no vocals']
[]
['harpsichord', 'classical']
['harpsichord', 'no vocal']
['classical', 'strings', 'no vocal', 'violin']
['classical', 'choral', 'opera']
['chorus', 'classical', 'choral', 'opera', 'operatic', 'orchestra', 'choir']
['classical', 'guitar']
['classical']
['classical']
['classical', 'harp', 'piano', 'slow']
['harpsichord', 'guitar', 'no vocal', 'harp', 'piano', 'slow']
[]
['classical', 'guitar', 'solo', 'piano']
['classical', 'guitar', 'strings', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'strings', 'medieval', 'slow']
['classical', 'guitar']
['guitar', 'banjo', 'folk', 'country', 'blues']
[]
[]
['electronic', 'electro']
[]
['synth']
[]
['classical', 'violin', 'slow']
['harpsichord', 'classical', 'trumpet', 'oboe', 'flute']
['classical', 'baroque']
[]
['choral', 'opera', 'choir']
['choir']
['guitar', 'slow', 'no drums']
['guitar']
['jazz', 'guitar', 'solo', 'slow', 'jazzy', 'soft']
['opera']
['harpsichord', 'classical', 'classic', 'fast']
['percussion', 'drums', 'no violin', 'piano', 'clapping']
['no voice', 'classical', 'guitar', 'strings', 'classical guitar', 'instrumental', 'soft']
['classical', 'guitar']
['guitar', 'strings', 'spanish']
['male vocal', 'punk', 'rock']
['punk', 'rock']
['classical', 'solo', 'fast', 'no vocals', 'piano', 'piano solo']
['piano']
[]
['classical', 'solo', 'piano']
['classical', 'solo', 'piano']
['classical', 'piano']
['solo', 'fast', 'piano', 'slow', 'piano solo']
['solo', 'piano']
['male vocal', 'opera', 'male']
[]
['hard rock', 'guitar', 'loud', 'heavy metal', 'rock']
[]
['guitar', 'loud', 'fast', 'rock', 'metal']
['rock']
['rock']
['heavy', 'guitar', 'loud', 'drums', 'no vocal', 'heavy metal', 'rock', 'metal']
['classical', 'violin']
['classical', 'strings', 'classic', 'violin']
['harpsichord', 'classical', 'strings', 'classic', 'fast', 'violin', 'no vocals', 'baroque']
['classical', 'strings', 'violin']
['horns', 'classical', 'baroque']
[]
['slow']
['no piano', 'guitar', 'no violin', 'lute']
['classical', 'guitar', 'strings', 'no flute']
['male vocal', 'vocals', 'guitar', 'man', 'male', 'vocal']
['vocals', 'man']
['no piano', 'slow']
['harpsichord', 'classical']
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'harpsicord', 'violin']
['no voice', 'harpsichord']
['classical', 'guitar', 'strings', 'harp', 'no flute', 'piano', 'soft']
['choral', 'opera', 'choir']
['classical', 'female', 'guitar', 'quiet', 'female voice', 'opera', 'female vocal', 'slow', 'vocal', 'singing', 'female vocals', 'female singer']
['female', 'guitar', 'opera', 'slow', 'vocal', 'woman', 'female vocals']
['female', 'opera', 'female vocal']
['vocals', 'female', 'opera']
[]
['harpsichord', 'female', 'opera', 'woman']
['guitar']
['guitar', 'banjo', 'folk', 'country']
['guitar', 'banjo', 'country']
['guitar', 'banjo']
['guitar', 'slow', 'no drums']
['classical', 'guitar', 'solo', 'baroque']
[]
['opera']
['slow', 'vocal', 'woman']
[]
['classical', 'opera', 'female vocals']
[]
['guitar', 'country', 'no vocals']
['guitar']
['piano', 'different']
['solo', 'classic', 'no vocal', 'no vocals', 'piano', 'sad', 'soft']
['piano']
['solo', 'piano']
['no voice', 'guitar']
[]
['guitar', 'banjo', 'country']
['sitar', 'guitar', 'banjo', 'solo', 'country', 'blues', 'rock']
['guitar', 'fast']
['harpsichord', 'classical', 'guitar', 'baroque']
['harpsichord']
['harpsichord', 'solo', 'string']
['harpsichord', 'classical', 'guitar', 'harpsicord', 'medieval', 'classic', 'harp', 'piano']
['guitar', 'harpsicord', 'piano']
['harpsichord', 'classical', 'guitar', 'harp']
['classical', 'guitar', 'strings', 'classical guitar', 'soft']
['classical', 'piano']
['no vocal', 'piano', 'slow', 'soft']
['piano']
['guitar']
['no voice', 'guitar', 'strings']
['guitar']
['sitar', 'indian']
['opera', 'man', 'male']
[]
['male vocal', 'vocals', 'chanting', 'opera', 'male singer', 'male vocals', 'male', 'vocal']
['plucking', 'classical', 'guitar', 'classical guitar', 'slow']
['classical', 'flute']
['classical', 'happy', 'no vocal', 'violin', 'no vocals', 'piano', 'flutes', 'flute']
['classical', 'strings', 'medieval', 'flute']
['classical', 'strings', 'classic', 'violin', 'sad', 'slow', 'cello', 'calm']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'classical guitar']
['guitar', 'strings', 'medieval', 'fast', 'harp']
[]
['guitar', 'string']
['classical', 'guitar', 'slow']
[]
['guitar']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'solo', 'no singing']
['harpsichord', 'classical', 'guitar', 'strings', 'medieval', 'acoustic']
['classical', 'trumpet', 'strings', 'classic', 'violin', 'slow', 'soft']
[]
['opera']
['classical', 'violins', 'strings', 'violin', 'vocal']
[]
['vocals', 'opera', 'operatic']
['female', 'voice']
['classical', 'guitar', 'solo', 'strings', 'no vocal', 'slow']
['guitar', 'string', 'classical guitar']
[]
['guitar', 'strings', 'acoustic']
['classical', 'guitar', 'piano', 'slow']
['guitar', 'harp', 'slow']
['classical', 'guitar', 'classic', 'slow']
['no voice', 'plucking', 'classical', 'guitar', 'quiet', 'no beat', 'strings', 'string', 'no vocal', 'classical guitar', 'harp', 'piano', 'slow', 'soft']
['guitar']
['classical', 'guitar', 'lute', 'piano', 'slow']
['folk', 'no vocal', 'instrumental', 'indian', 'soft']
['jazz', 'guitar']
['flute']
['classical', 'flute']
[]
['classical', 'flute']
[]
['guitar', 'banjo', 'country']
['guitar', 'country', 'blues']
['guitar']
['classical', 'violin']
['classical', 'flute']
['no voice', 'classical', 'strings', 'violin', 'flute']
['no voice', 'classical', 'violin', 'oboe', 'flutes', 'cello', 'flute']
['vocals', 'opera']
['chorus', 'choral', 'vocal']
['harpsichord', 'classical', 'harpsicord']
[]
['harpsichord', 'classical', 'guitar', 'baroque']
['no voice', 'plucking', 'classical', 'guitar', 'quiet', 'strings', 'fast', 'classical guitar', 'piano', 'slow', 'soft']
[]
['piano']
['classical', 'piano']
['piano']
['no voice', 'classical', 'classic', 'fast', 'piano']
[]
['classical', 'piano']
['solo', 'piano']
[]
['classical', 'classic']
['harpsichord', 'classical', 'classic', 'harp', 'cello', 'baroque']
['male vocal', 'foreign', 'guitar', 'male voice', 'opera', 'male singer', 'man', 'male', 'singing']
['male vocal', 'not rock', 'opera', 'male']
['classical', 'male']
['classical', 'female', 'female voice', 'opera', 'operatic', 'vocal']
['guitar', 'banjo', 'solo', 'folk', 'no vocals', 'piano', 'slow']
['guitar', 'banjo', 'folk', 'classical guitar']
['guitar', 'banjo', 'acoustic']
['hard rock', 'guitar', 'loud', 'fast', 'heavy metal', 'rock', 'metal']
['rock', 'metal']
['rock', 'metal']
['hard rock', 'loud', 'heavy metal', 'hard', 'rock', 'metal']
[]
['harpsichord', 'classical', 'violin', 'cello']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'harp', 'sad', 'cello']
['harpsichord', 'violin', 'cello']
['harpsichord', 'horns', 'classical', 'classic', 'oboe', 'no drums', 'flute']
[]
['guitar', 'slow']
['guitar', 'acoustic', 'country', 'slow', 'soft']
['guitar', 'acoustic', 'no vocals', 'slow']
[]
['guitar']
['female', 'medieval', 'opera', 'irish', 'vocal', 'woman']
['vocals', 'classical', 'folk', 'opera', 'singing']
['electronic', 'weird', 'techno']
['loud', 'electro', 'techno']
['loud', 'electronic', 'fast', 'techno', 'beat']
[]
['synth', 'electronic', 'fast', 'electro', 'techno', 'beat']
['harpsichord', 'classical', 'medieval', 'no vocals']
[]
['chorus', 'opera']
['chorus', 'choir']
['no voice', 'harpsichord', 'classical', 'classic', 'no vocal', 'no vocals']
['harpsichord', 'classical', 'guitar', 'strings', 'classic', 'fast', 'violin', 'piano', 'quick', 'baroque']
['opera', 'woman singing', 'female vocals']
['vocals', 'classical', 'female', 'female voice', 'opera', 'vocal', 'woman', 'singing']
[]
['classical', 'guitar', 'slow', 'soft']
['choral']
['classical', 'choral', 'opera', 'choir', 'women']
['chorus', 'classical']
['choir']
['no voice', 'violins', 'folk', 'voice', 'country', 'violin', 'irish', 'fiddle']
['vocals', 'folk', 'loud', 'choral', 'vocal', 'voices', 'choir']
['voice']
['harpsichord', 'guitar', 'solo', 'strings', 'classic', 'classical guitar', 'piano']
['loud', 'punk', 'rock']
['medieval', 'lute', 'flute']
['flute']
[]
['classical', 'guitar', 'quiet', 'strings', 'acoustic', 'slow', 'calm']
[]
['harpsichord', 'classical', 'violins', 'classic', 'violin', 'orchestra']
['classical', 'violins', 'strings', 'violin']
['violin', 'fiddle']
['classical', 'strings', 'medieval', 'light', 'flutes', 'flute', 'fiddle']
['beats', 'guitar', 'banjo', 'folk', 'electric guitar', 'country', 'no vocals', 'blues', 'no singer', 'rock']
['guitar', 'banjo', 'folk', 'fast', 'country']
['harpsichord', 'classical']
['classical', 'violins', 'strings', 'harpsicord', 'classic', 'organ', 'piano', 'cello', 'oriental']
['male vocal', 'classical', 'guitar', 'opera', 'man singing', 'male opera', 'man', 'harp', 'male', 'vocal']
['opera', 'slow', 'male']
['vocals', 'opera']
['male vocal', 'classical', 'voice', 'opera', 'male opera', 'male', 'vocal', 'singing']
['singer', 'guitar', 'quiet', 'acoustic', 'man singing', 'piano', 'slow', 'vocal', 'not english']
['man']
['man', 'male', 'singing']
['choral', 'male', 'choir']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'string', 'harp', 'lute', 'piano', 'slow']
['harpsichord', 'classical', 'guitar', 'strings', 'no vocal', 'violin']
['strings']
['violin']
['classical']
['classical', 'strings', 'classic', 'violin']
['guitar']
['guitar']
['guitar', 'spanish']
['female', 'guitar', 'opera', 'operatic', 'harp', 'female vocal', 'piano', 'woman', 'woman singing', 'singing', 'soft']
['classical', 'opera', 'woman']
['guitar', 'voice', 'woman', 'soft']
[]
['woman']
['harpsichord', 'classical', 'guitar', 'strings', 'harp', 'slow', 'soft']
['harpsichord', 'classical', 'guitar', 'quiet', 'strings', 'piano']
['harpsichord', 'classical', 'guitar']
[]
['vocal']
['vocals', 'men', 'foreign', 'vocal', 'singing', 'not english', 'choir']
[]
['harpsichord', 'classical']
[]
['classical', 'solo', 'fast', 'piano']
['classical', 'piano', 'piano solo']
['piano']
['classical', 'piano']
['piano']
['classical', 'piano']
['classical', 'solo', 'no guitar', 'piano', 'piano solo']
['solo', 'repetitive', 'fast', 'piano']
['piano']
['guitar', 'harpsicord', 'harp', 'piano', 'slow']
['classical', 'guitar', 'quiet', 'strings', 'slow']
['guitar', 'quiet', 'no vocals', 'harp', 'piano', 'slow']
['female opera', 'classical', 'female', 'strings', 'opera', 'violin', 'operatic', 'female vocal', 'vocal', 'choir']
['classical', 'female', 'voice', 'opera', 'violin', 'woman']
['voice', 'opera', 'violin', 'vocal', 'singing']
['rock']
[]
['loud', 'rock', 'metal']
['rock']
['harpsichord', 'classical', 'strings', 'violin', 'no flute', 'flute']
['classical', 'violin', 'baroque']
['classical']
['guitar']
['guitar', 'slow']
[]
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'soft']
[]
['harpsichord']
['no voice', 'harpsichord', 'classical', 'guitar']
['harpsichord', 'classical', 'solo', 'harpsicord', 'piano', 'slow']
['harpsichord', 'classical', 'strings', 'harpsicord', 'medieval', 'piano', 'baroque']
['harpsichord', 'classical']
['harpsichord', 'classical']
[]
['harpsichord', 'classical', 'guitar', 'harpsicord', 'string', 'slow', 'soft', 'baroque']
[]
['guitar', 'classical guitar']
['classical', 'guitar']
['guitar']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'string', 'classical guitar', 'harp', 'lute', 'piano', 'spanish', 'slow']
['guitar', 'quiet', 'harp']
[]
[]
['no voice', 'guitar', 'quiet', 'acoustic', 'harp', 'soft']
['classical', 'no beat', 'lute']
[]
['strings']
['female', 'guitar', 'quiet', 'piano', 'slow', 'soft']
['classical', 'guitar', 'lute']
['guitar', 'no beat']
['classical', 'guitar', 'solo', 'classical guitar', 'old']
['harpsichord', 'classical', 'harpsicord', 'instrumental', 'harp']
['harpsichord']
[]
['choral', 'chant', 'choir']
['choral', 'male', 'choir']
['chorus', 'choral', 'opera', 'chant', 'male', 'choir']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical', 'fast', 'no vocals', 'piano']
['harpsichord', 'classical']
[]
['harpsichord', 'classical', 'guitar', 'quiet', 'harpsicord', 'no guitar', 'no vocal', 'no vocals', 'instrumental', 'slow', 'flute', 'baroque']
['no voice', 'classical', 'no vocals', 'instrumental', 'flute']
['classical', 'fast', 'irish', 'flute']
['classical', 'guitar', 'lute']
['classical', 'strings', 'violin', 'no flute', 'orchestra']
['opera']
['classical', 'opera', 'woman', 'female vocals']
['harpsichord', 'female', 'female voice', 'opera', 'woman']
[]
['classical', 'quiet', 'medieval', 'flutes', 'flute']
['female', 'opera', 'woman', 'singing']
['female', 'opera']
['female', 'opera', 'woman']
['female', 'opera']
['female', 'no beat', 'opera']
['female', 'female voice', 'opera', 'female vocal', 'vocal', 'woman', 'female vocals']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'solo', 'no vocal', 'harp']
['guitar', 'banjo', 'no vocal', 'country', 'blues', 'rock']
['guitar', 'banjo', 'country']
['guitar', 'banjo', 'country']
['harpsichord']
['classical', 'guitar']
['guitar', 'quiet']
[]
['guitar']
[]
[]
['piano']
['piano', 'slow']
['classical', 'solo', 'no singing', 'piano']
['classical', 'solo', 'piano', 'slow']
['solo', 'piano']
['classical', 'solo', 'piano']
[]
['classical', 'piano']
['solo', 'piano']
['vocals', 'female', 'female voice', 'opera', 'soprano', 'operatic', 'orchestra', 'vocal', 'woman', 'female vocals']
['female', 'opera', 'woman']
[]
['male vocal', 'foreign', 'male voice', 'opera', 'male opera', 'man', 'male vocals', 'male']
['guitar', 'no flute']
[]
['harpsichord', 'classical', 'guitar', 'quiet', 'solo', 'strings', 'no vocal', 'slow', 'soft']
['guitar', 'slow']
['guitar', 'quiet', 'no vocal', 'slow']
[]
[]
[]
['classical', 'guitar', 'no vocal', 'no vocals', 'vocal']
['voice']
['harpsichord', 'vocals', 'classical', 'guitar', 'voice', 'strings', 'male voice', 'opera', 'harp', 'lute', 'female vocal', 'vocal', 'woman', 'singing', 'female vocals', 'soft']
['classical', 'female', 'guitar', 'opera', 'harp', 'vocal', 'woman', 'singing']
['female', 'opera', 'vocal', 'woman singing']
['singer', 'female', 'opera']
['classical', 'female', 'violins', 'strings', 'opera', 'violin', 'female vocal']
['vocals', 'classical', 'female', 'female voice', 'opera', 'violin', 'woman', 'singing']
[]
['rock']
['hard rock', 'male vocal', 'guitar', 'loud', 'heavy metal', 'rock', 'singing']
[]
['rock']
[]
['rock']
['harpsichord', 'classical', 'strings', 'classic', 'violin', 'slow', 'cello', 'soft']
['classical', 'violin']
['harpsichord', 'classical', 'strings', 'classic', 'violin']
['violin']
[]
['guitar', 'happy']
['harpsichord', 'horns', 'classical', 'horn', 'light', 'celtic', 'baroque']
['harpsichord', 'classical', 'harpsicord', 'modern', 'piano']
['harpsichord', 'classical', 'harpsicord', 'piano']
['harpsichord', 'classic']
['female', 'female voice', 'medieval', 'female vocal', 'woman']
['classical', 'female', 'voice', 'opera', 'woman', 'singing', 'female vocals']
['harpsichord', 'classical', 'harpsicord', 'no vocal']
['chorus', 'choir']
['chorus', 'opera', 'slow', 'vocal', 'choir']
['choral']
['chorus', 'vocals', 'choral', 'singing', 'choir']
['men', 'opera', 'male opera', 'man', 'male']
['chorus', 'vocals', 'male vocals', 'choir']
['female', 'solo', 'folk', 'voice', 'vocal', 'woman']
['female voice', 'irish', 'choir']
['guitar', 'drums', 'rock']
['opera']
['chorus', 'classical', 'choir']
['choir']
['no piano', 'choral', 'chant', 'voices', 'choir']
[]
['classical', 'synth', 'classic', 'organ', 'fast', 'orchestra', 'baroque']
['horns', 'classical', 'organ', 'fast']
['vocals', 'opera']
['female', 'opera', 'woman']
['duet', 'female opera', 'vocals', 'female', 'female voice', 'opera', 'soprano', 'operatic', 'woman', 'women']
['female opera', 'opera', 'woman']
['voice', 'opera']
['female opera', 'classical', 'female', 'opera', 'female vocal', 'female vocals', 'voices', 'choir', 'women']
['classical', 'strings', 'classic', 'opera', 'operatic']
['classical', 'guitar', 'strings', 'harp', 'slow']
['guitar', 'medieval', 'piano']
['guitar', 'voice', 'violin', 'slow']
['guitar']
['male vocal', 'classical', 'voice', 'opera', 'harp']
['vocals', 'female', 'guitar', 'voice', 'singing', 'female vocals', 'english']
['male vocal', 'female', 'guitar', 'male voice', 'opera', 'man', 'male', 'vocal', 'singing']
['medieval']
[]
['female', 'opera']
['female', 'opera', 'female vocal', 'vocal', 'singing', 'female vocals', 'voices', 'women']
['bells']
[]
['solo', 'flute']
['flute']
['harpsichord', 'classical', 'strings', 'baroque']
['violin']
['classical', 'irish', 'celtic', 'flutes', 'flute']
['guitar']
[]
['classical', 'guitar', 'no vocals']
['classical', 'guitar']
['guitar', 'banjo']
['no voice', 'guitar', 'strings', 'piano']
['guitar', 'acoustic']
['guitar', 'quiet', 'solo', 'strings', 'harp', 'slow']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'harp', 'piano', 'slow', 'soft']
['guitar', 'solo', 'medieval', 'slow']
['plucking', 'classical', 'guitar', 'solo', 'strings', 'classical guitar', 'harp', 'slow']
[]
['classical', 'guitar', 'harp', 'slow']
['classical', 'guitar', 'harp', 'soft']
['classical', 'guitar', 'solo', 'strings', 'harpsicord', 'medieval', 'no vocal', 'no vocals', 'harp', 'slow']
['guitar', 'acoustic guitar', 'classical guitar', 'harp', 'slow']
['classical', 'guitar', 'solo']
['classical', 'fast', 'piano']
['classical', 'fast', 'piano']
['classical', 'piano']
['classical', 'fast', 'piano', 'no drums']
['classical', 'fast', 'piano']
['piano']
['classical', 'female', 'opera', 'female vocal']
['classical', 'opera']
['singer', 'female opera', 'female', 'opera', 'singing']
['female opera', 'strings', 'opera', 'violin', 'woman', 'singing']
['slow']
[]
['classical', 'strings', 'violin']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'violin', 'baroque']
['harpsichord', 'classical', 'classic', 'violin']
['harpsichord', 'classical', 'strings', 'baroque']
['classical']
['classical', 'guitar', 'strings', 'lute', 'slow', 'soft']
[]
['woman']
['opera', 'woman']
['harpsichord', 'classical', 'guitar', 'classic', 'no vocal', 'harp', 'piano', 'slow']
['harpsichord', 'classical', 'harpsicord', 'no flute']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'classical']
['guitar', 'strings']
['harpsichord', 'classical', 'solo', 'strings', 'organ']
['harpsichord', 'classical', 'strings', 'keyboard', 'fast', 'harp']
['harpsichord']
['guitar', 'strings', 'country', 'no vocals']
['guitar', 'country', 'blues']
['guitar', 'country']
['guitar', 'country']
['guitar', 'not rock']
['classical', 'guitar', 'harp', 'piano', 'slow']
[]
[]
['female', 'opera', 'female vocal']
['female', 'opera']
[]
['classical', 'classic', 'organ', 'fast', 'flute']
[]
['classical', 'strings', 'organ', 'slow']
['classical', 'organ']
[]
[]
['guitar', 'banjo', 'folk', 'country']
['guitar']
['guitar', 'no drums']
['guitar', 'banjo', 'country']
[]
['guitar']
['guitar']
['guitar', 'strings', 'piano']
[]
['guitar', 'strings', 'flute']
['classical', 'guitar', 'strings', 'medieval', 'flute']
['opera', 'female vocal', 'slow', 'male', 'vocal', 'singing']
[]
['rock']
['male vocal', 'guitar', 'male', 'rock']
['classical', 'guitar', 'slow']
['classical', 'strings', 'classic', 'violin', 'no vocals', 'flute']
['classical']
['harpsichord', 'classical', 'violins', 'strings', 'classic', 'flute', 'baroque']
['harpsichord', 'classical', 'guitar', 'strings', 'slow']
['classical', 'guitar', 'solo', 'strings', 'acoustic', 'no vocal', 'classical guitar', 'no vocals', 'mellow', 'slow', 'soft']
['sitar', 'classical', 'guitar', 'solo', 'strings', 'acoustic', 'slow']
['guitar']
[]
['guitar', 'slow']
['slow', 'flute']
['guitar', 'solo', 'piano']
['classical', 'guitar', 'piano']
[]
['classical', 'guitar']
['female opera', 'female', 'voice', 'opera', 'soprano']
['opera', 'vocal']
['classical', 'female', 'opera', 'woman', 'singing']
[]
[]
['classical', 'opera', 'violin', 'slow', 'woman', 'soft']
[]
[]
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'harpsicord', 'medieval', 'no vocal', 'fast', 'violin', 'orchestra', 'old', 'different', 'baroque']
[]
['harpsichord', 'classical', 'harpsicord', 'baroque']
['harpsichord', 'classical']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'harpsicord', 'no vocal', 'no vocals', 'instrumental']
['harpsichord', 'classical', 'piano']
['harpsichord', 'classical', 'piano']
[]
['classical']
['harpsicord', 'fast']
['harpsichord']
['choral', 'choir']
['choral', 'singing', 'soft', 'choir']
['chorus', 'men', 'chanting', 'choral', 'chant', 'male vocals', 'vocal', 'singing', 'voices', 'choir']
['choral', 'opera', 'chant', 'choir']
['chanting', 'choir']
[]
['classical', 'solo', 'strings', 'classic', 'string', 'fast', 'violin', 'cello']
[]
['classical', 'solo', 'fast', 'violin', 'viola', 'cello']
['classical', 'strings', 'fast', 'violin']
[]
['guitar', 'slow']
['harpsichord', 'classical', 'guitar', 'quiet', 'banjo', 'strings', 'harpsicord', 'piano', 'slow', 'soft']
['no voice', 'classical', 'guitar', 'quiet', 'solo', 'no vocal', 'no vocals', 'piano', 'slow', 'soft']
['classical', 'guitar', 'classic', 'piano', 'slow']
['classical', 'guitar', 'ambient', 'acoustic', 'slow']
['guitar', 'solo']
['opera']
['classical', 'opera', 'violin', 'woman']
['female', 'opera']
['chanting', 'choral', 'opera', 'choir']
['chorus', 'men', 'opera', 'male', 'monks', 'choir']
['harpsichord', 'classical', 'instrumental']
['organ']
['classical', 'organ']
[]
['organ']
['organ']
['guitar', 'harp', 'piano', 'slow']
['plucking', 'classical', 'guitar', 'strings', 'string', 'harp', 'piano', 'slow', 'soft']
['classical', 'guitar', 'slow']
[]
['female', 'quiet', 'voice', 'no guitar']
['female singing', 'female', 'solo', 'female voice', 'voice', 'opera', 'female vocal', 'slow', 'vocal', 'woman', 'woman singing', 'soft']
[]
['chorus', 'loud', 'choral', 'male', 'voices', 'choir']
['men', 'choral', 'choir']
['chorus', 'men', 'choral', 'opera', 'vocal', 'choir']
['choral', 'opera', 'vocal', 'no drums', 'choir']
[]
['male voice']
['male vocal', 'classical', 'chanting', 'opera', 'male']
['chorus', 'male voice', 'opera', 'male opera', 'chant', 'man', 'male', 'vocal', 'singing', 'choir']
['bells']
['female', 'quiet', 'opera', 'woman', 'woman singing', 'singing', 'soft']
['classical', 'female', 'vocal', 'woman', 'not english']
['female opera', 'classical', 'female', 'quiet', 'solo', 'female voice', 'opera', 'soprano', 'vocal', 'woman', 'singing', 'female singer']
['harpsichord', 'guitar']
['harpsichord']
[]
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'violin', 'piano']
['classical', 'guitar', 'violins', 'strings', 'violin', 'orchestra', 'slow', 'flute']
['classical', 'strings', 'classic', 'violin', 'slow']
['classical', 'strings', 'violin']
['guitar', 'banjo']
['no voice', 'guitar', 'banjo', 'no vocal']
['guitar', 'banjo', 'country', 'blues']
[]
['guitar']
['plucking', 'classical', 'guitar', 'strings', 'no vocals', 'lute']
['classical', 'guitar', 'solo', 'strings', 'classical guitar', 'slow']
['guitar', 'strings']
[]
['harpsichord', 'classical', 'strings', 'violin', 'cello']
['harpsichord', 'classical', 'violin', 'no vocals', 'chant', 'cello', 'different']
[]
[]
['harpsichord', 'classical', 'guitar', 'harpsicord', 'classic', 'piano', 'slow', 'soft']
[]
[]
['harpsichord', 'classical', 'piano', 'soft', 'baroque']
['no voice', 'harp', 'piano']
[]
['harpsichord', 'classical', 'piano']
[]
['harpsichord', 'classical', 'harpsicord']
[]
['harpsichord']
[]
['harpsichord', 'classical']
['harpsichord', 'classical', 'strings', 'piano']
['harpsichord', 'sitar', 'classical', 'harpsicord', 'medieval', 'harp', 'piano']
['harpsichord', 'classical', 'harpsicord']
['harpsichord', 'piano']
['harpsichord', 'classical']
[]
['classical', 'guitar', 'acoustic', 'classical guitar', 'spanish', 'slow', 'soft']
['guitar', 'slow']
['classical', 'guitar', 'quiet', 'classical guitar', 'slow', 'soft']
[]
['classical', 'guitar', 'classical guitar', 'harp', 'slow', 'soft']
['classical', 'guitar', 'solo']
['guitar', 'strings', 'slow']
['female', 'female voice', 'opera', 'singing']
['opera']
['female', 'female voice', 'opera', 'slow', 'singing']
[]
['classical', 'guitar', 'harp']
['classical', 'guitar', 'no vocal', 'piano']
['classical', 'guitar']
['guitar']
['folk', 'strings', 'classic', 'slow']
['harpsichord', 'female opera', 'vocals', 'classical', 'female', 'harpsicord', 'opera', 'operatic', 'female vocal', 'woman', 'singing', 'female singer']
['harpsichord', 'classical', 'female', 'female voice', 'opera', 'woman', 'female vocals']
['guitar', 'slow']
['guitar']
['classical', 'violins', 'classic']
['harpsichord']
['no voice', 'harpsichord', 'strings', 'fast', 'slow']
['harpsichord', 'strings', 'harpsicord', 'fast']
[]
['harpsichord', 'classical', 'harpsicord', 'fast', 'piano']
['female', 'classic', 'opera', 'female vocal', 'vocal', 'woman', 'singing']
['classical', 'female', 'guitar', 'quiet', 'female voice', 'opera', 'violin', 'lol', 'slow', 'vocal', 'woman', 'soft']
['vocals', 'classical', 'female', 'guitar', 'quiet', 'voice', 'strings', 'opera', 'slow', 'vocal', 'woman', 'singing', 'soft']
['vocals', 'classical', 'female', 'guitar', 'classic', 'female vocal', 'slow', 'singing']
['opera', 'vocal', 'woman', 'female vocals']
['harpsichord', 'classical', 'harpsicord', 'classic', 'fast', 'piano']
['female']
['female', 'opera', 'female vocal', 'singing', 'female vocals']
['classical', 'female', 'female voice', 'opera', 'woman', 'singing']
['plucking', 'guitar', 'no beat', 'string', 'harp', 'slow', 'soft']
[]
['guitar']
['classical', 'guitar', 'quiet', 'solo', 'piano', 'slow', 'calm']
['piano']
['classical', 'guitar', 'quiet', 'solo', 'acoustic', 'string', 'lol', 'piano', 'slow']
['plucking', 'classical', 'guitar', 'quiet', 'piano', 'slow']
['harpsichord', 'classical', 'guitar', 'classical guitar', 'no vocals', 'piano', 'spanish', 'slow']
['guitar']
[]
['harpsichord', 'classical', 'guitar', 'spanish', 'slow']
['guitar']
['classical', 'guitar', 'banjo']
['classical', 'guitar', 'piano', 'spanish']
['classical']
['orchestra']
[]
['classical', 'quiet', 'slow', 'flute', 'soft']
['classical', 'quiet', 'violins', 'ambient', 'strings', 'violin', 'sad', 'slow', 'soft']
['no piano', 'classical']
['classical', 'guitar', 'solo', 'strings', 'medieval', 'lute', 'slow']
['classical', 'guitar', 'calm']
['classical', 'guitar', 'classic', 'harp']
['harpsichord', 'classical', 'harpsicord', 'instrumental', 'piano']
[]
['harpsichord', 'classic']
['harpsichord', 'classical', 'harpsicord', 'no violin', 'piano']
['harpsichord', 'classical', 'strings', 'harpsicord', 'violin']
['harpsichord', 'classical', 'strings', 'harpsicord', 'fast', 'harp']
['guitar', 'quiet', 'strings', 'classical guitar', 'lute', 'baroque']
['plucking', 'classical', 'guitar', 'strings', 'slow', 'soft']
['harpsichord', 'guitar', 'strings', 'classical guitar', 'no vocals', 'harp']
['classical', 'guitar', 'quiet', 'harp', 'piano', 'slow', 'soft']
['classical', 'guitar', 'solo', 'strings', 'slow']
['classical', 'guitar', 'strings']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'acoustic', 'classical guitar', 'no vocals', 'lute', 'piano', 'slow', 'soft']
['harp']
[]
['piano']
['classical', 'piano']
['classical', 'strings', 'fast', 'violin', 'orchestra', 'flutes', 'flute', 'quick', 'baroque']
['classical', 'violins', 'strings', 'violin', 'no vocals', 'orchestra', 'flute']
['no piano', 'classical', 'strings']
[]
['vocals', 'classical', 'female', 'voice', 'opera', 'female vocal', 'vocal', 'woman', 'singing']
['singer', 'female opera', 'classical', 'female', 'voice', 'opera', 'female vocal', 'slow', 'woman', 'woman singing']
['female', 'vocal', 'woman', 'women']
['female', 'female voice', 'voice', 'opera', 'female vocal', 'vocal']
['classical', 'solo', 'female voice', 'opera', 'female vocal', 'singing']
['opera', 'female vocal', 'vocal', 'singing', 'choir']
['female opera', 'female', 'female voice', 'voice', 'classic', 'opera', 'operatic', 'singing']
['vocals', 'opera', 'female vocal', 'singing']
[]
['guitar', 'strings', 'acoustic', 'spanish']
['classical', 'guitar', 'slow']
['classical', 'guitar']
['classical', 'guitar', 'strings', 'classical guitar']
['guitar', 'strings']
['harpsichord', 'classical', 'guitar', 'classic', 'string', 'harp', 'baroque']
['harpsichord', 'guitar', 'piano']
['harpsichord', 'classical', 'guitar', 'strings', 'acoustic', 'harp']
['guitar', 'no drums']
['classical', 'guitar']
['classical', 'guitar', 'classical guitar']
['classical', 'guitar', 'strings', 'spanish']
['harpsichord', 'classical', 'guitar', 'banjo', 'strings', 'medieval', 'classic', 'no vocal', 'fast', 'classical guitar', 'harp', 'lute', 'spanish', 'baroque']
['harpsichord', 'classical', 'organ', 'no vocal']
['harpsichord', 'harpsicord', 'fast', 'no drums', 'baroque']
['harpsichord', 'fast']
[]
['classical', 'violins', 'happy', 'strings', 'classic', 'violin', 'orchestra', 'flute', 'baroque']
['classical', 'violins', 'strings', 'violin', 'orchestra']
['classical', 'classic', 'violin']
['guitar', 'no vocals']
['no voice', 'classical', 'no voices', 'guitar', 'string']
['guitar', 'classical guitar', 'harp']
[]
['guitar']
[]
['harpsichord']
['harpsichord', 'classical', 'no vocals', 'baroque']
[]
['classical', 'guitar', 'solo', 'strings', 'acoustic', 'classical guitar', 'harp', 'slow']
['classical', 'guitar', 'strings', 'no vocal']
['classical', 'guitar', 'no singing']
['classical', 'guitar', 'piano', 'slow']
['classical', 'strings', 'classic', 'violin', 'horn', 'viola', 'piano', 'cello']
['classical', 'solo', 'strings', 'fast', 'violin', 'piano']
['classical', 'violin', 'piano', 'orchestra']
['strings', 'piano']
['classical', 'piano', 'cello']
['piano']
['classical', 'strings', 'classic', 'violin', 'piano', 'cello']
['harpsichord', 'classical', 'baroque']
[]
['classical', 'guitar', 'harp', 'piano']
['guitar']
['classical', 'guitar']
['guitar', 'strings']
['classical', 'guitar', 'no vocal', 'harp', 'piano', 'slow']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'string', 'harp', 'piano', 'slow', 'soft']
['guitar', 'solo', 'strings', 'acoustic guitar']
['classical', 'guitar', 'solo', 'classical guitar']
['classical', 'guitar', 'piano']
['guitar', 'slow']
['guitar']
[]
['classical', 'orchestra']
['harpsichord', 'harpsicord', 'old']
['harpsichord', 'classical', 'strings', 'harpsicord', 'classic', 'slow']
['harpsichord', 'classical', 'harpsicord', 'harp']
['harpsichord', 'harp']
[]
['classical', 'violins', 'classic', 'violin', 'orchestra', 'baroque']
['classical', 'strings', 'violin']
['classical', 'strings', 'orchestra', 'flutes', 'flute']
['harpsichord', 'classical', 'strings', 'violin', 'orchestra']
['classical', 'guitar', 'medieval', 'harp']
['guitar', 'strings', 'string', 'no vocals', 'slow']
['guitar', 'slow']
['classical', 'guitar', 'solo', 'slow']
['guitar']
['slow']
[]
['guitar', 'solo', 'strings', 'classical guitar']
['guitar', 'harp']
['slow']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'classical guitar', 'harp']
['guitar', 'strings', 'string', 'classical guitar', 'harp', 'lute', 'piano', 'slow']
['classical', 'guitar']
['harpsichord', 'classical', 'guitar', 'solo', 'strings', 'acoustic', 'lute', 'slow']
['guitar', 'piano']
[]
[]
['classical', 'strings']
['no voice', 'harpsichord', 'horns', 'classical', 'banjo', 'trumpet', 'medieval', 'classic', 'fast', 'horn', 'oboe', 'flute', 'baroque']
[]
['classical', 'guitar', 'strings', 'string', 'classical guitar', 'piano']
['guitar', 'strings']
['guitar', 'lute', 'slow', 'soft']
['classical', 'guitar', 'classical guitar', 'soft']
['no vocal', 'violin', 'slow']
['no voice', 'no strings', 'quiet', 'ambient', 'no vocal', 'weird', 'dark', 'no vocals', 'slow', 'calm', 'soft']
['no voice', 'classical', 'guitar', 'no singing', 'strings', 'classical guitar', 'no vocals', 'harp', 'lute', 'piano', 'soft']
['classical', 'guitar', 'quiet', 'solo', 'strings', 'string', 'classical guitar', 'lute', 'slow', 'soft']
['no voice', 'guitar', 'classical guitar']
['sitar', 'strings', 'indian']
['guitar', 'classical guitar', 'spanish']
['classical', 'guitar', 'solo', 'strings', 'classical guitar']
['vocals', 'foreign', 'voice', 'female vocal', 'vocal', 'indian', 'singing', 'not english', 'women']
['guitar']
['ambient', 'no flute']
['classical', 'guitar', 'strings', 'harp', 'lute']
['new age']
['no piano', 'classical', 'guitar', 'solo', 'strings', 'lute', 'piano', 'slow', 'soft']
['classical', 'guitar', 'solo', 'strings', 'not rock']
['classical', 'guitar', 'strings', 'slow', 'soft']
['classical', 'guitar']
['guitar', 'classical guitar']
['guitar', 'solo', 'strings', 'medieval', 'harp', 'slow', 'soft']
['classical', 'guitar', 'strings', 'slow']
['classical', 'guitar', 'quiet', 'solo', 'classic', 'mellow', 'slow', 'soft']
['classical', 'guitar', 'slow']

In [16]:
import tensorflow as tf

with tf.Graph().as_default():
    c  = tf.Variable([1,2, 3], name='c')
    init_op = tf.global_variables_initializer()
    saver = tf.train.Saver()
    with tf.Session() as sess:
      sess.run(init_op)
      save_path = saver.save(sess, "test.ckpt")

In [19]:
with tf.Graph().as_default():
    c  = tf.Variable([0,0,0], name='c')
    saver = tf.train.Saver()
    with tf.Session() as sess:
        saver.restore(sess, "test.ckpt")
        init_op = tf.global_variables_initializer()
        sess.run(init_op)
        print(c)


INFO:tensorflow:Restoring parameters from test.ckpt
<tf.Variable 'c:0' shape=(3,) dtype=int32_ref>

In [19]:
import librosa
import librosa.display
import _pickle as pickle

def plot_spectogram(x, tag=None):
    plt.figure(figsize=(10, 5))
    librosa.display.specshow(x.T, y_axis='mel', x_axis='time')
    plt.colorbar(format='%+2.0f dB')
    if tag:
        plt.title('Melspectogram for ' + genre + ' 0')
        plt.tight_layout()
        

with open('datasets/magnatagatune/train/0.pickle', 'rb') as f:
    spectogram = pickle.load(f)
    plot_spectogram(spectogram)
    
with open('datasets/magnatagatune/train/filenames.pickle', 'rb') as f:
    print(pickle.load(f)[0])
    

with open('datasets/magnatagatune/train/labels.pickle', 'rb') as f:
    print(pickle.load(f)[0])


2/anup-embrace-08-resolve-117-146.mp3
[ 0.  0.  0.  0.  1.  0.  0.  0.  0.  1.  0.  0.  0.  0.  0.  0.  0.  0.
  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.
  0.  0.  0.  0.]

In [22]:
import numpy as np


CLASSES = [
    'classical', 'instrumental', 'electronica', 'techno',
    'male voice', 'rock', 'ambient', 'female voice', 'opera',
    'indian', 'choir', 'pop', 'heavy metal', 'jazz', 'new age',
    'dance', 'country', 'eastern', 'baroque', 'funk', 'hard rock',
    'trance', 'folk', 'oriental', 'medieval', 'irish', 'blues',
    'middle eastern', 'punk', 'celtic', 'arabic', 'rap',
    'industrial', 'world', 'hip hop', 'disco', 'soft rock',
    'jungle', 'reggae', 'happy',
]
CLASSES_DICT = {c: i for i, c in enumerate(CLASSES)}

def get_class_vector(genres):
    class_indices = np.array([CLASSES_DICT[g] for g in genres])
    vector = np.zeros(len(CLASSES))
    vector[class_indices] = 1
    return vector

with open('datasets/magnatagatune/annotations_final.csv', 'r') as tsvfile:
    reader = csv.DictReader(tsvfile, dialect='excel-tab')
    for i, row in enumerate(reader):
        if row['mp3_path'] == '2/anup-embrace-08-resolve-117-146.mp3':
            print([g for g in row if row[g] == '1'])
            print(get_class_vector([g for g in CLASSES if row[g] == '1']))


['sitar', 'male voice', 'indian', 'india']
[ 0.  0.  0.  0.  1.  0.  0.  0.  0.  1.  0.  0.  0.  0.  0.  0.  0.  0.
  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.
  0.  0.  0.  0.]