Feature Scaling (DP_5)
This functionality normalizes the range of values for different features in the dataset
This process is very important because many machine learning algorithms use the Euclidean distance between two points in their computations, and if the ranges of the features are vastly different, then the algorithm will be sensitive to the feature with the larger range, and may produce unexpected results.
Sample Request
This request scales the feature sets defined in the range of columns for training and testing.
Missing Data
Encode categorical values
POST
https://autogon.ai/api/v1/engine/start
Encodes categorical data on specific columns with specified boundaries
Request Body
Name | Type | Description |
---|---|---|
project_id* | int | current project ID |
parent_id* | int | parent block ID |
block_id* | int | current block ID |
function_code* | String | block's function code |
encode* | boolean | specify if variable is encoded |
args | object | block arguments |
remainder* | applied method to none specified columns; | |
index* | int | column index to apply encoding technique |
scaler | String | Type of scaler to use:
|
save_name | name to save processing models with. | |
load_name | String | name to load processing models with. Used to switch to loading mode |
Last updated