Data Encoding (DP_3)
This functionality converts data to a recognizable format through encoding. Supported techniques including, but are not limited to, one-hot, label and categorical encoding.
Sample Request
{
"project_id": 1,
"parent_id": 2,
"block_id": 3,
"function_code": "DP_3",
"args": {
"xvalue": {
"encode": true,
"encoding_type": "onehot",
"remainder": "passthrough",
"index": 0
},
"yvalue": {
"encode": false,
"encoding_type": "categorical",
"remainder": "drop",
"index": 2
}
"save_name": "testweights",
"load_name": "testweights"
}
}Encoding Data
Encode categorical values
Request Body
Name
Type
Description
Last updated