Datasets:
utterance
stringlengths 2
189
| label
int64 0
59
|
---|---|
please list active alarms | 0 |
show me the alarms i set | 0 |
do i have any alarms | 0 |
show alarms | 0 |
do i have an alarm set for morning flight | 0 |
are there any alarms | 0 |
what's my next alarm | 0 |
please tell me my alarms | 0 |
what time will my alarm go off today | 0 |
what alarms do i have set | 0 |
read me my alarms | 0 |
what time are my alarms set for | 0 |
confirm the alarm time | 0 |
which alarms do i have | 0 |
how many alarms are listed | 0 |
do i have any alarms set for tomorrow | 0 |
what's the alarm situation for tomorrow | 0 |
can you tell me what alarms i have set | 0 |
do i have any alarms set for today | 0 |
i need to set an alarm how many do i have set | 0 |
confirm alarm for tomorrow morning | 0 |
what time is the alarm set for tomorrow | 0 |
what alarms are set right now | 0 |
what alarms will wake me up tomorrow | 0 |
are there any alarms set right now | 0 |
my alarms | 0 |
is my work alarm set for tomorrow | 0 |
what alarms do i have set for thursday | 0 |
when is my alarm set for | 0 |
how many alarms do i have | 0 |
what alarms do i have scheduled for tomorrow | 0 |
what alarms are set in the morning | 0 |
what alarms do i got | 0 |
let me see my alarms | 0 |
what alarms do i have | 0 |
review the alarms i have | 0 |
list all the alarms | 0 |
check whether i have set any alarms for tomorrow morning | 0 |
what time is the alarm set for tomorrow morning | 0 |
is the alarm set for tomorrow morning | 0 |
show me my alarms | 0 |
olly show me my alarms | 0 |
do i have any alarms set | 0 |
show me all scheduled alarms | 0 |
how many alarms are currently set | 0 |
checkout today alarm of meeting | 0 |
have i got any alarms set | 0 |
what alarms are on right now | 0 |
have i set any alarm for today | 0 |
if there any alarm is set then let me know | 0 |
is my wake up alarm set a six am | 0 |
when is the next alarm | 0 |
alarm status | 0 |
please check alarms | 0 |
would you please check to see if i've set my alarm for tomorrow morning | 0 |
how many alarms have i set | 0 |
what alarms have been set for me | 0 |
do i have alarms set | 0 |
do i have alarms set for today | 0 |
what time are my alarms | 0 |
what time is alarm set for | 0 |
when will my alarm go off in the morning | 0 |
what alarms have i set for tomorrow | 0 |
what time is my alarm set for | 0 |
what time i am waking up tomorrow | 0 |
what are the next three alarms set to go off | 0 |
what alarms are set for this week | 0 |
list alarms | 0 |
please read me my alarms | 0 |
is the alarm to the backdoor set and ready to go | 0 |
what alarms are currently set | 0 |
show me all of my active alarms | 0 |
show me the alarms that are set | 0 |
are there any alarms for today | 0 |
how many alarms are set | 0 |
show me the list of alarms | 0 |
what time is my alarm set for tomorrow morning | 0 |
just to confirm you set the alarm to go off at eight hundred | 0 |
which alarms are set in the phone | 0 |
is there an alarm at four am | 0 |
what alarm time had you set | 0 |
let me know the alarm time | 0 |
do i currently have any alarms set | 0 |
remind me about my alarms today | 0 |
let me know about any alarms set today | 0 |
could you tell me about the alerts i have set | 0 |
review set alarms | 0 |
what time will my alarm wake me up | 0 |
do i have an alarm set for today | 0 |
have i set any alarms in the morning | 0 |
at what time is my alarm set | 0 |
can you tell me about the alarm called bed | 0 |
what's my next scheduled alarm | 0 |
what's the description for the alarm at eleven am | 0 |
list all of my alarms | 0 |
what alarms are coming up | 0 |
please tell me about upcoming alarms | 0 |
show me the alarms i've set | 0 |
what are my alarms | 0 |
hey google tell me what alarms are set for me | 0 |
End of preview. Expand
in Dataset Viewer.
massive
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
massive = Dataset.from_datasets("AutoIntent/massive")
Source
This dataset is taken from mteb/amazon_massive_intent
and formatted with our AutoIntent Library:
from datasets import load_dataset
from autointent import Dataset
def convert_massive(massive_train):
intent_names = sorted(massive_train.unique("label"))
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 massive_train.iter(batch_size=16, drop_last_batch=False):
for txt, name in zip(batch["text"], batch["label"], 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})
massive = load_dataset("mteb/amazon_massive_intent", "en")
massive_converted = convert_massive(massive["train"])
- Downloads last month
- 47