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
  • Issues
  • #361

Closed
Open
Created Jul 12, 2021 by Elizaveta Lutsenko@LizLutsenkoOwner

Fedot.fit runs tuning even if with_tuing=False in composer_params

Created by: J3FALL

In Fedot constructor there is a parameter - composer_params and it is a dictionary with some external params, like learning_time, cv_folds, etc. However, if with_tuning is set explicitly, it is still running tuning after composing.

image

Example of code how it can be reproduced:

def forecast_by_fedot(forecast_length, train_input, predict_input):
    task_parameters = TsForecastingParams(forecast_length=forecast_length)
    model = Fedot(problem='ts_forecasting', task_params=task_parameters,
                  composer_params={'with_tuning': False})
    pipeline = model.fit(features=train_input)
    pipeline.show()
    forecast = model.predict(features=predict_input)

    return forecast

P.S. I've running the latest version from master branch

Assignee
Assign to
Time tracking