Dataset Viewer
Auto-converted to Parquet
text
stringlengths
2
133
label
int64
0
63
label_text
stringclasses
64 values
what alarms do i have set right now
0
alarm_query
checkout today alarm of meeting
0
alarm_query
report alarm settings
0
alarm_query
see see for me the alarms that you have set tomorrow morning
0
alarm_query
is there an alarm for ten am
0
alarm_query
confirm the alarm time
0
alarm_query
show my alarms
0
alarm_query
at what time have you set alarm for me
0
alarm_query
please list active alarms
0
alarm_query
please tell me about upcoming alarms
0
alarm_query
what alarms have i set for tomorrow
0
alarm_query
have i set any alarm for today
0
alarm_query
what alarms do you have set
0
alarm_query
show me all scheduled alarms
0
alarm_query
could you tell me about the alerts i have set
0
alarm_query
show me my alarms i have set
0
alarm_query
do i have any alarms for tomorrow morning
0
alarm_query
what alarm do i have set for today
0
alarm_query
what alarms have been set for me
0
alarm_query
list all set alarms
0
alarm_query
please tell me my alarms
0
alarm_query
what is the wake up time for my alarm i have set for the flight this weekend
0
alarm_query
did i set an alarm to wake up in the morning
0
alarm_query
what times do my alarms go off
0
alarm_query
what time is my wakeup alarm set for
0
alarm_query
please read out all the alarms that are set
0
alarm_query
what time are my alarms set for
0
alarm_query
how many alarms do i have set
0
alarm_query
are there any alarms currently set
0
alarm_query
confirm alarm for tomorrow morning
0
alarm_query
do i have an alarm set for morning flight
0
alarm_query
what's my next scheduled alarm
0
alarm_query
do i have any alarms set for tomorrow
0
alarm_query
please check alarms
0
alarm_query
what alarms do i have set
0
alarm_query
do i have an alarm set
0
alarm_query
show me the list of alarms
0
alarm_query
just to confirm you set the alarm to go off at eight hundred
0
alarm_query
did i set my house alarm
0
alarm_query
what are the next three alarms set to go off
0
alarm_query
check if alarm is set for six am
0
alarm_query
is the alarm to the backdoor set and ready to go
0
alarm_query
what time do i have my alarm set for tomorrow
0
alarm_query
what's the description for the alarm at eleven am
0
alarm_query
are there any alarms set
0
alarm_query
are there any alarms set right now
0
alarm_query
are there any alarms
0
alarm_query
do i have alarms set for today
0
alarm_query
how many alarms are listed
0
alarm_query
remind me about my alarms today
0
alarm_query
list alarms
0
alarm_query
how many alarms do i have
0
alarm_query
just see for me the alarms that you have set today morning
0
alarm_query
what alarms are on right now
0
alarm_query
please tell about the alarms
0
alarm_query
review set alarms
0
alarm_query
is my work alarm set for tomorrow
0
alarm_query
what alarms are set
0
alarm_query
what time are my alarms
0
alarm_query
which alarms are set in the phone
0
alarm_query
is my alarm set for tomorrow morning
0
alarm_query
check if any alarm is there after five am
0
alarm_query
what alarms do i have set for thursday
0
alarm_query
checkout today set alarm of ten am
0
alarm_query
is my school alarm set
0
alarm_query
tell me if my alarm is set for the morning
0
alarm_query
do i have an alarm set for tomorrow
0
alarm_query
what alarms do i have
0
alarm_query
when was the last alarm set
0
alarm_query
today how many alarms do i have set
0
alarm_query
how many alarms do i have set for morning hours between six and nine am
0
alarm_query
what is tomorrow's alarm time set to
0
alarm_query
please let me know the morning alarm time for weekdays
0
alarm_query
read me my alarms
0
alarm_query
is there any alarm after five am
0
alarm_query
what days are my alarms set for
0
alarm_query
confirm i have set an alarm for six am
0
alarm_query
what alarms did i set
0
alarm_query
what alarms do i got
0
alarm_query
show me the alarms that are set
0
alarm_query
tell me about alarms
0
alarm_query
checkout today third set alarm
0
alarm_query
how many alarms are currently set
0
alarm_query
are there any alarms set what are they
0
alarm_query
is my alarm set
0
alarm_query
tell me what alarms are set for me
0
alarm_query
next alarm
0
alarm_query
when is the next alarm
0
alarm_query
show alarms
0
alarm_query
let me know about any alarms set today
0
alarm_query
confirm my alarm settings
0
alarm_query
give me the alarm times for the next two days
0
alarm_query
what alarms are set in the house
0
alarm_query
do i have any alarms
0
alarm_query
have i set any alarms in the morning
0
alarm_query
check if i have set any alarm for morning
0
alarm_query
list all of my upcoming alarms
0
alarm_query
my alarms
0
alarm_query
do i have any alarms set for six am tomorrow
0
alarm_query
how many alarms are currently on my phone
0
alarm_query
End of preview. Expand in Data Studio

hwu64

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

hwu64 = Dataset.from_hub("AutoIntent/hwu64")

Source

This dataset is taken from original work's github repository jianguoz/Few-Shot-Intent-Detection and formatted with our AutoIntent Library:

# define utils
import requests
from autointent import Dataset

def load_text_from_url(github_file: str):
    return requests.get(github_file).text

def convert_hwu64(hwu_utterances, hwu_labels):
    intent_names = sorted(set(hwu_labels))
    name_to_id = dict(zip(intent_names, range(len(intent_names)), strict=False))
    n_classes = len(intent_names)

    assert len(hwu_utterances) == len(hwu_labels)

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

    for txt, name in zip(hwu_utterances, hwu_labels, 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 {"intents": intents, split: utterances}

# load
file_url = "https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/refs/heads/main/Datasets/HWU64/train/label"
labels = load_text_from_url(file_url).split("\n")[:-1]
file_url = "https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/refs/heads/main/Datasets/HWU64/train/seq.in"
utterances = load_text_from_url(file_url).split("\n")[:-1]
# convert
hwu64_train = convert_hwu64(utterances, labels, "train")

file_url = "https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/refs/heads/main/Datasets/HWU64/test/label"
labels = load_text_from_url(file_url).split("\n")[:-1]
file_url = "https://raw.githubusercontent.com/jianguoz/Few-Shot-Intent-Detection/refs/heads/main/Datasets/HWU64/test/seq.in"
utterances = load_text_from_url(file_url).split("\n")[:-1]
# convert
hwu64_test = convert_hwu64(utterances, labels, "test")

hwu64_train["test"] = hwu64_test["test"]
dataset = Dataset.from_dict(hwu64_train)
Downloads last month
62