[jira] [Created] (IGNITE-7025) Implement different strategies to fill missed data in LabeledDataset during loading from file

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-7025) Implement different strategies to fill missed data in LabeledDataset during loading from file

Anton Vinogradov (Jira)
Aleksey Zinoviev created IGNITE-7025:
----------------------------------------

             Summary: Implement different strategies to fill missed data in LabeledDataset during loading from file
                 Key: IGNITE-7025
                 URL: https://issues.apache.org/jira/browse/IGNITE-7025
             Project: Ignite
          Issue Type: Task
          Components: ml
            Reporter: Aleksey Zinoviev
            Assignee: Aleksey Zinoviev
            Priority: Minor


For example, it can be four strategies

public enum FillMissingValueWith {
    /**
     * Fill missed value with zero or empty string or default value for categorical features
     */
    ZERO,
    /**
     * Fill missed value with mean on column
     * Requires an additional time to calculate
     */
    MEAN,
    /**
     * Fill missed value with mode on column
     * Requires an additional time to calculate
     */
    MODE,
    /**
     * Deletes observation with missed values
     * Transforms dataset and changes indexing
     */
    DELETE
}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)