๐ banking77ยถ
Note
ID: cards.banking77 | Type: TaskCard
{
"loader": {
"path": "PolyAI/banking77",
"type": "load_hf"
},
"preprocess_steps": [
{
"page_size": 9223372036854775807,
"type": "shuffle"
},
{
"mix": {
"test": "test",
"train": "train[85%]",
"validation": "train[15%]"
},
"type": "split_random_mix"
},
{
"mappers": {
"label": {
"0": "activate my card",
"1": "age limit",
"10": "card acceptance",
"11": "card arrival",
"12": "card delivery estimate",
"13": "card linking",
"14": "card not working",
"15": "card payment fee charged",
"16": "card payment not recognised",
"17": "card payment wrong exchange rate",
"18": "card swallowed",
"19": "cash withdrawal charge",
"2": "apple pay or google pay",
"20": "cash withdrawal not recognised",
"21": "change pin",
"22": "compromised card",
"23": "contactless not working",
"24": "country support",
"25": "declined card payment",
"26": "declined cash withdrawal",
"27": "declined transfer",
"28": "direct debit payment not recognised",
"29": "disposable card limits",
"3": "atm support",
"30": "edit personal details",
"31": "exchange charge",
"32": "exchange rate",
"33": "exchange via app",
"34": "extra charge on statement",
"35": "failed transfer",
"36": "fiat currency support",
"37": "get disposable virtual card",
"38": "get physical card",
"39": "getting spare card",
"4": "automatic top up",
"40": "getting virtual card",
"41": "lost or stolen card",
"42": "lost or stolen phone",
"43": "order physical card",
"44": "passcode forgotten",
"45": "pending card payment",
"46": "pending cash withdrawal",
"47": "pending top up",
"48": "pending transfer",
"49": "pin blocked",
"5": "balance not updated after bank transfer",
"50": "receiving money",
"51": "Refund not showing up",
"52": "request refund",
"53": "reverted card payment?",
"54": "supported cards and currencies",
"55": "terminate account",
"56": "top up by bank transfer charge",
"57": "top up by card charge",
"58": "top up by cash or cheque",
"59": "top up failed",
"6": "balance not updated after cheque or cash deposit",
"60": "top up limits",
"61": "top up reverted",
"62": "topping up by card",
"63": "transaction charged twice",
"64": "transfer fee charged",
"65": "transfer into account",
"66": "transfer not received by recipient",
"67": "transfer timing",
"68": "unable to verify identity",
"69": "verify my identity",
"7": "beneficiary not allowed",
"70": "verify source of funds",
"71": "verify top up",
"72": "virtual card not working",
"73": "visa or mastercard",
"74": "why verify identity",
"75": "wrong amount of cash received",
"76": "wrong exchange rate for cash withdrawal",
"8": "cancel transfer",
"9": "card about to expire"
}
},
"type": "map_instance_values"
},
{
"fields": {
"classes": [
"activate my card",
"age limit",
"apple pay or google pay",
"atm support",
"automatic top up",
"balance not updated after bank transfer",
"balance not updated after cheque or cash deposit",
"beneficiary not allowed",
"cancel transfer",
"card about to expire",
"card acceptance",
"card arrival",
"card delivery estimate",
"card linking",
"card not working",
"card payment fee charged",
"card payment not recognised",
"card payment wrong exchange rate",
"card swallowed",
"cash withdrawal charge",
"cash withdrawal not recognised",
"change pin",
"compromised card",
"contactless not working",
"country support",
"declined card payment",
"declined cash withdrawal",
"declined transfer",
"direct debit payment not recognised",
"disposable card limits",
"edit personal details",
"exchange charge",
"exchange rate",
"exchange via app",
"extra charge on statement",
"failed transfer",
"fiat currency support",
"get disposable virtual card",
"get physical card",
"getting spare card",
"getting virtual card",
"lost or stolen card",
"lost or stolen phone",
"order physical card",
"passcode forgotten",
"pending card payment",
"pending cash withdrawal",
"pending top up",
"pending transfer",
"pin blocked",
"receiving money",
"Refund not showing up",
"request refund",
"reverted card payment?",
"supported cards and currencies",
"terminate account",
"top up by bank transfer charge",
"top up by card charge",
"top up by cash or cheque",
"top up failed",
"top up limits",
"top up reverted",
"topping up by card",
"transaction charged twice",
"transfer fee charged",
"transfer into account",
"transfer not received by recipient",
"transfer timing",
"unable to verify identity",
"verify my identity",
"verify source of funds",
"verify top up",
"virtual card not working",
"visa or mastercard",
"why verify identity",
"wrong amount of cash received",
"wrong exchange rate for cash withdrawal"
],
"text_type": "utterance",
"type_of_class": "intent"
},
"type": "add_fields"
}
],
"task": "tasks.classification.multi_class",
"templates": "templates.classification.multi_class.all",
"type": "task_card"
}
Explanation about TaskCardยถ
TaskCard delineates the phases in transforming the source dataset into a model-input, and specifies the metrics for evaluation of model-output.
- Attributes:
loader: specifies the source address and the loading operator that can access that source and transform it into a unitxt multistream.
preprocess_steps: list of unitxt operators to process the data source into a model-input.
task: specifies the fields (of the already (pre)processed instance) making the inputs, the fields making the outputs, and the metrics to be used for evaluating the model output.
templates: format strings to be applied on the input fields (specified by the task) and the output fields. The template also carries the instructions and the list of postprocessing steps, to be applied to the model output.
Explanation about AddFieldsยถ
Adds specified fields to each instance in a given stream or all streams (default) If fields exist, updates them.
- Args:
fields (Dict[str, object]): The fields to add to each instance. use_query (bool) : Use โ/โ to access inner fields use_deepcopy (bool) : Deep copy the input value to avoid later modifications
- Examples:
# Add a โclassesโ field with a value of a list โpositiveโ and โnegativeโ to all streams AddFields(fields={โclassesโ: [โpositiveโ,โnegativesโ]})
# Add a โstartโ field under the โspanโ field with a value of 0 to all streams AddFields(fields={โspan/startโ: 0}
# Add a โclassesโ field with a value of a list โpositiveโ and โnegativeโ to โtrainโ stream AddFields(fields={โclassesโ: [โpositiveโ,โnegativesโ], apply_to_stream=[โtrainโ]})
# Add a โclassesโ field on a given list, prevent modification of original list # from changing the instance. AddFields(fields={โclassesโ: alist}), use_deepcopy=True) # if now alist is modified, still the instances remain intact.
Explanation about MapInstanceValuesยถ
A class used to map instance values into other values.
This class is a type of StreamInstanceOperator, it maps values of instances in a stream using predefined mappers.
- Attributes:
- mappers (Dict[str, Dict[str, str]]): The mappers to use for mapping instance values.
Keys are the names of the fields to be mapped, and values are dictionaries that define the mapping from old values to new values.
- strict (bool): If True, the mapping is applied strictly. That means if a value
does not exist in the mapper, it will raise a KeyError. If False, values that are not present in the mapper are kept as they are.
- process_every_value (bool): If True, all fields to be mapped should be lists, and the mapping
is to be applied to their individual elements. If False, mapping is only applied to a field containing a single value.
- Examples:
MapInstanceValues(mappers={โaโ: {โ1โ: โhiโ, โ2โ: โbyeโ}}) replaces โ1โ with โhiโ and โ2โ with โbyeโ in field โaโ in all instances of all streams: instance {โaโ:โ1โ, โbโ: 2} becomes {โaโ:โhiโ, โbโ: 2}.
MapInstanceValues(mappers={โaโ: {โ1โ: โhiโ, โ2โ: โbyeโ}}, process_every_element=True) Assuming field โaโ is a list of values, potentially including โ1โ-s and โ2โ-s, this replaces each such โ1โ with โhiโ and โ2โ โ with โbyeโ in all instances of all streams: instance {โaโ: [โ1โ, โ2โ], โbโ: 2} becomes {โaโ: [โhiโ, โbyeโ], โbโ: 2}.
MapInstanceValues(mappers={โaโ: {โ1โ: โhiโ, โ2โ: โbyeโ}}, strict=True) To ensure that all values of field โaโ are mapped in every instance, use strict=True. Input instance {โaโ:โ3โ, โbโ: 2} will raise an exception per the above call, because โ3โ is not a key in the mapper of โaโ.
MapInstanceValues(mappers={โaโ: {str([1,2,3,4]): โAllโ, str([]): โNoneโ}}, strict=True) replaces a list [1,2,3,4] with the string โAllโ and an empty list by string โNoneโ. Note that mapped values are defined by their string representation, so mapped values must be converted to strings.
Explanation about SplitRandomMixยถ
Splits a multistream into new streams (splits), whose names, source input stream, and amount of instances, are specified by arg โmixโ.
The keys of arg โmixโ, are the names of the new streams, the values are of the form: โname-of-source-stream[percentage-of-source-stream]โ Each input instance, of any input stream, is selected exactly once for inclusion in any of the output streams.
Examples: When processing a multistream made of two streams whose names are โtrainโ and โtestโ, by SplitRandomMix(mix = { โtrainโ: โtrain[99%]โ, โvalidationโ: โtrain[1%]โ, โtestโ: โtestโ }) the output is a multistream, whose three streams are named โtrainโ, โvalidationโ, and โtestโ. Output stream โtrainโ is made of randomly selected 99% of the instances of input stream โtrainโ, output stream โvalidationโ is made of the remaining 1% instances of input โtrainโ, and output stream โtestโ is made of the whole of input stream โtestโ.
When processing the above input multistream by SplitRandomMix(mix = { โtrainโ: โtrain[50%]+test[0.1]โ, โvalidationโ: โtrain[50%]+test[0.2]โ, โtestโ: โtest[0.7]โ }) the output is a multistream, whose three streams are named โtrainโ, โvalidationโ, and โtestโ. Output stream โtrainโ is made of randomly selected 50% of the instances of input stream โtrainโ + randomly selected 0.1 (i.e., 10%) of the instances of input stream โtestโ. Output stream โvalidationโ is made of the remaining 50% instances of input โtrainโ+ randomly selected 0.2 (i.e., 20%) of the original instances of input โtestโ, that were not selected for output โtrainโ, and output stream โtestโ is made of the remaining instances of input โtestโ.
Explanation about Shuffleยถ
Shuffles the order of instances in each page of a stream.
- Args (of superclass):
page_size (int): The size of each page in the stream. Defaults to 1000.
References: templates.classification.multi_class.all, tasks.classification.multi_class
Read more about catalog usage here.