Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • F FEDOT
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 87
    • Issues 87
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 1
    • Merge requests 1
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • ITMO-NSS-team
  • FEDOT
  • Merge requests
  • !237

Merged
Created Feb 17, 2021 by Elizaveta Lutsenko@LizLutsenkoOwner

Preprocessing refactor

  • Overview 167
  • Commits 67
  • Changes 178

Created by: Dreamlone

Changed the core architecture. Preprocessing operations now can be placed in separate nodes. Important changes:

  1. The Model abstraction is now replaced with an Operation that has two descendant classes: DataOperation class and Model class;
  2. Preprocessing operations, both simple, such as scaling, and advanced, such as lagged transformation for time series, can be used in nodes as previously models can be;
  3. New tuning (optimization of hyperparameters in nodes) is implemented - here are two classes: ChainTuner and SequentialTuner, both of them are using hyperopt library;
  4. New operator for mutation was implemented. Now it is possible to change hyperparameters in the nodes during chain composing;
  5. Now it is possible to feed different data sources to primary nodes, in particular, this functionality is used with exogenous time series, an example for which is available in examples;
  6. New low-level abstraction "Implementation" was appeared in the core. This abstraction includes custom models that are implemented in FEDOT;
  7. New operations have been implemented and added to the data_operations repository, such as feature selection, exclusion of anomalous values, smoothing of time series, and much more.
Assignee
Assign to
Reviewer
Request review from
Time tracking
Source branch: preprocessing-refactor