utterance
stringlengths
8
186
label
int64
0
6
Add Don and Sherri to my Meditate to Sounds of Nature playlist
0
put United Abominations onto my rare groove playlist
0
add the tune by misato watanabe to the Trapeo playlist
0
add this artist to my this is miguel bosé playlist
0
add heresy and the hotel choir to the evening acoustic playlist
0
Please add Jency Anthony to my playlist This Is Mozart
0
Add an album to my list La Mejor Música Dance 2017
0
Add shame on you to my masters of metal playlist
0
Add artist to playlist Epic Gaming
0
Add The Private Collection onto my Cena Elegante playlist please.
0
Put another track in my electronica & dance playlist.
0
add this album to the playlist called dishwashing
0
add Classic Punk by Chab
0
add megon mcdonough indie songs for slackers to my playlist artist
0
Add the name Shall We Dance to playlist Rock
0
add Lee Seung gi to my Baila Reggaeton playlist
0
put frank farian on my Deep Dark Indie Folk playlist
0
Include hohenfriedberger marsch to my Novedades Pop list.
0
add alexandra govere to my anochecer urbano playlist
0
Please put maimi yajima 's song onto Operación Bikini .
0
For my playlist chill add the name Cater Fe She
0
add when ice met cream to This Is Alejandro Fernández playlist
0
Add Banana Republic to my this is puccini playlist
0
add the Chamillionaire track to lina's wedding classics playlist
0
put this Kan Mikami tune on fresh finds cyclone
0
add mike mogis onto my crate diggers anonymous playlist
0
Add Jon McLaughlin to my forever country playlist.
0
add sheila e to my i love my neo soul playlist
0
Can you add something from Method Man to my this is mozart playlist
0
Add an artist to my Hype list
0
add track to my playlist a sudden rainstorm
0
please add John Deacon to the funtime activity playlist
0
Add track to this is puccini
0
Add irving berlin to my dishwashing
0
Add As I Was Going to St Ives to the fantasía playlist.
0
I want lay down your arms in the indie español playlist.
0
Add Kevin Cadogan to the 80s Classic Hits list
0
Put Kim Kibum in my the martin garrix show playlist.
0
Can Super Turnt Up get added to my emotron playlist?
0
Add the name as with gladness men of old to my ultimate 90s playlist
0
add this song onto hip hop gaming playlist
0
Add Hatfield and the North to my Hot House playlist.
0
Add chen jiafeng to Ultimate 00s
0
Add the trey gunn tune to my French N' Heavy playlist.
0
add this track to morning classical
0
add tune to Soft Rock playlist
0
add to laundry playlist with this song
0
Add a track to my Alok House Party playlist
0
Place this tune in workout remix
0
I'd like to add the artist Jesper Kyd onto my fresh electronic playlist.
0
add this artist named Cleopatra Stratan to my playlist named 30 Before 20 Masterworks by Teenagers
0
add erik santos in my playlist Metal Xplorer
0
Add the tune to Your Favorite Slaughterhouse playlist.
0
add Joe Gibbs to my The Bachelor Party playlist
0
Please add Liberty Forever to the road trip playlist.
0
add Salil Chowdhury to my 35 Soul Classics 1970 to 1975 playlsit
0
I need to add to the all things post starting with my favorites from the silence
0
Add The “Chirping” Crickets to my Mellowed Out Gaming playlist
0
Add tune to Blues
0
I want the Turbonegro album to go on the playlist called Genuine R&B
0
Add Munawar Ali Khan to my mujeres y hombres y fiesta
0
add tune to my mellow bars playlist
0
Add mc ren to my It's a Southern Thing playlist
0
Add this song to my roadrunner rec new releases list.
0
add Curse song to my playlist Guest List Engadget
0
I need to add another track to my cleaning playlist.
0
add this artist to my 80'S PARTY
0
Add gene clark to diann's chill out list
0
Add a tune to rare groove
0
add hopeful to my this is enrique iglesias
0
add scott putesky to concentración indie rock playlist
0
A Shawnna to the Warm Hearts Feel Good playlist.
0
add artist John William Boone to my life's short; play fast playlist
0
add jim martin to Deathcore
0
put this track on soul bpm my playlist
0
add this artist named trevor mcnevan to the playlist top gaming tracks
0
Add Ashley Cafagna Tesoro to my reggae en español list
0
Add artist to playlist Classic Punk
0
Add a tune to my elrow Guest List
0
I want to add Anna Semenovich to the dinner with friends playlist
0
Play Disco Tango to Power Walk
0
Add tune to my Folk Music At The Gaslight Café
0
add this artist to romántica
0
Please add 80s Classic Hits Asking for It to my playlist
0
add this artist to primavera sound 2016 barcelona
0
Add this album to Trotamundos
0
Add splendido hotel to my verano forever
0
add lunacy to my chill out playlist
0
Add Without Your Love to my showstopper being mary jane list
0
Add this song to my list Trabajo Relax
0
Add this track to my Zen Focus playlist
0
add décadas to my list Neo da Matrix
0
The Zen Focus playlist needs David Franj in it.
0
put four in blue onto Ultimate 00s .
0
I want global top 50 to have marit bergman added to it.
0
add flying to my Women of Rock playlist
0
Add Gary Valenciano to the power gaming playlist.
0
Add track to Urban Poet
0
add country favorites willie nelson style to my playlist titled Spinnin' Records Top 100
0
add reggaeton classics in playlist jennie, jennie
0

snips

This is a text classification dataset. It is intended for machine learning research and experimentation.

This dataset is obtained via formatting another publicly available data to be compatible with our AutoIntent Library.

Usage

It is intended to be used with our AutoIntent Library:

from autointent import Dataset

snips = Dataset.from_datasets("AutoIntent/snips")

Source

This dataset is taken from benayas/snips and formatted with our AutoIntent Library:

# define util
from datasets import load_dataset
from autointent import Dataset

def convert_snips(snips_train):
    intent_names = sorted(snips_train.unique("category"))
    name_to_id = dict(zip(intent_names, range(len(intent_names)), strict=False))
    n_classes = len(intent_names)

    classwise_utterance_records = [[] for _ in range(n_classes)]
    intents = [
        {
            "id": i,
            "name": name,
        }
        for i, name in enumerate(intent_names)
    ]

    for batch in snips_train.iter(batch_size=16, drop_last_batch=False):
        for txt, name in zip(batch["text"], batch["category"], strict=False):
            intent_id = name_to_id[name]
            target_list = classwise_utterance_records[intent_id]
            target_list.append({"utterance": txt, "label": intent_id})

    utterances = [rec for lst in classwise_utterance_records for rec in lst]
    return Dataset.from_dict({"intents": intents, "train": utterances})

# load and format
snips = load_dataset("benayas/snips")
snips_converted = convert_snips(snips["train"])
Downloads last month
51