1. 22 Aug, 2024 2 commits
  2. 09 Aug, 2024 2 commits
  3. 01 Aug, 2024 1 commit
  4. 31 Jul, 2024 1 commit
  5. 30 Jul, 2024 1 commit
    • Roman Kharkovskoy's avatar
      Boosting method implementation (LightGBM) (#1264) · 81acea3c
      Roman Kharkovskoy authored
      Updates in LightGBM implementation:
      - LightGBM migrated from `SkLearnEvaluationStrategy` to separate `BoostingStrategy`.
      - Support for using encoded and unencoded categorical features.
      - Support for splitting data for the eval set to avoid overfitting the model.
      - Support to use boosting type 'gbdt', 'dart', 'goss'.
      - A parameter for early stopping added for fitting the model.
      - Automated checks for hyperparameters, with editing if they are mistaken.
      - Updates to default_params & search_space.
      - New feature: Plot features importance after fitting.
      
      --
      
      author: @RomanKharkovskoy 
      co-author: @apovidlo
      81acea3c
  6. 29 Jul, 2024 1 commit
    • George Lopatenko's avatar
      fix: bring back cgru integration tests (#1313) · db76dcf5
      George Lopatenko authored
      * chore: bring back cgru and cgru in default pipeline tests
      
      * feat: speed up models tests by parametrizing
      
      * feat: restore fast_ica model on constant data test
      
      * fix: change xgbreg to xgboostreg in docs
      
      * fix: pass input_data in xgboost integration test
      
      * style: remove try block in serializable test
      
      * feat: specify xgboost and xgboostreg models
      db76dcf5
  7. 26 Jul, 2024 1 commit
    • Roman Kharkovskoy's avatar
      Boosting method implementation (XGBoost) (#1209) · 80eba8ef
      Roman Kharkovskoy authored
      Updates in Xgboost implementation:
      - Xgboost migrated from SkLearnEvaluationStrategy to separate BoostingStrategy.
      - Support for using encoded and unencoded categorical features.
      - Support for splitting data for the eval set to avoid overfitting the model.
      - Support to use booster strategy 'gbtree', 'dart', 'gblinear'.
      - A parameter for early stopping added for fitting the model.
      - Automated checks for hyperparameters, with editing if they are mistaken.
      - Updates to default_params & search_space.
      - New feature: Plot features importance after fitting.
      
      --
      
      author: @RomanKharkovskoy 
      co-author: @apovidlo 
      80eba8ef
  8. 24 Jul, 2024 1 commit
  9. 23 Jul, 2024 1 commit
  10. 04 Jul, 2024 1 commit
  11. 02 Jul, 2024 2 commits
    • Vadim A. Potemkin's avatar
      fix: update unit-build.yml (#1294) · a9ef3c87
      Vadim A. Potemkin authored
      Your unit-test coverage report stops uploading about 2 month ago (just like with Fedot.Industrial). It is almost invisible issue, because it doesn't invoke any exception during execution. But it could be found in action logs if you unfold `Codecove-coverage`:
      
      Error: Codecov token not found. Please provide Codecov token with -t flag.
      Warning: Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
      a9ef3c87
    • ilyushka's avatar
      Fix multitarget stratification (#1308) · 03e47361
      ilyushka authored
      
      * data: add data for multitarget classification
      
      * fix: prevent stratify with unbalanced classes
      
      * test: add multitarget classification stratify test
      
      * Automated autopep8 fixes
      
      * fix: fix path for test data
      
      * Automated autopep8 fixes
      
      ---------
      Co-authored-by: default avatargithub-actions[bot] <github-actions[bot]@users.noreply.github.com>
      03e47361
  12. 14 Jun, 2024 1 commit
  13. 13 Jun, 2024 1 commit
  14. 29 May, 2024 1 commit
  15. 17 May, 2024 1 commit
  16. 03 May, 2024 2 commits
  17. 02 May, 2024 1 commit
  18. 26 Apr, 2024 1 commit
  19. 22 Apr, 2024 1 commit
  20. 15 Apr, 2024 1 commit
  21. 05 Apr, 2024 1 commit
  22. 18 Mar, 2024 1 commit
  23. 15 Mar, 2024 1 commit
  24. 12 Mar, 2024 2 commits
  25. 11 Mar, 2024 1 commit
  26. 05 Mar, 2024 2 commits
  27. 04 Mar, 2024 1 commit
  28. 26 Feb, 2024 1 commit
    • Andrey Stebenkov's avatar
      Time consuming report after composition (#1257) · c17381c6
      Andrey Stebenkov authored
      Added a report on time consuming in API. The following steps are presented in this report:
      - 'Data Definition (fit)': Time spent on data definition in fit().
      - 'Data Preprocessing': Total time spent on preprocessing data, includes fitting and predicting stages.
      - 'Fitting (summary)': Total time spent on Composing, Tuning and Training Inference.
      - 'Composing': Time spent on searching for the best pipeline.
      - 'Train Inference': Time spent on training the pipeline found during composing.
      - 'Tuning (composing)': Time spent on hyperparameters tuning in the whole fitting, if with_tune is True.
      - 'Tuning (after)': Time spent on .tune() (hyperparameters tuning) after composing.
      - 'Data Definition (predict)': Time spent on data definition in predict().
      - 'Predicting': Time spent on predicting (inference).
      c17381c6
  29. 13 Feb, 2024 1 commit
  30. 08 Feb, 2024 1 commit
    • ilyushka's avatar
      Fix old pep8 errors (#1244) · 78a89241
      ilyushka authored
      
      * Create deleteme.md
      
      * Delete deleteme.md
      
      * Change permissions to read in slash-command-dispatch.yml
      
      * Automated autopep8 fixes
      
      * Change BaseException to Exception
      
      * remove backslash
      
      * remove backslashes
      
      * remove backslashes
      
      * Automated autopep8 fixes
      
      * Fix E501
      
      * Fix backslash
      
      * add ignore imports for autopep8
      
      * restore numpy import
      
      * Automated autopep8 fixes
      
      * Fix E402
      
      * Automated autopep8 fixes
      
      * fix parentheses
      
      ---------
      Co-authored-by: default avatargithub-actions[bot] <github-actions[bot]@users.noreply.github.com>
      78a89241
  31. 27 Jan, 2024 1 commit
    • Sergey Kasyanov's avatar
      Fast topological features (#1252) · 5efd0fb2
      Sergey Kasyanov authored
      
      * add fast topo
      
      * fix fast topo
      
      * Automated autopep8 fixes
      
      * pep8
      
      * add to initial assumption
      
      * make code more clear in `fit` method
      
      * add `fast_topoligical_features` to docs
      
      * fix aligment for pipeline builders in `TSForecastingAssumptions`
      
      * add topo to `FedotBuilder` docs
      
      * fix table in docs
      
      * add params to fast_topo
      
      * change params and add it to tuner search space
      
      * fix integration tests
      
      * add new param stride
      
      * fix param
      
      * dirty speedup
      
      * delete ica from initial assumption due to instability
      
      * fix documentation
      
      * fix test
      
      * delete fast_topo from assumption and delete fast_train tag
      
      ---------
      Co-authored-by: default avatargithub-actions[bot] <github-actions[bot]@users.noreply.github.com>
      5efd0fb2
  32. 16 Jan, 2024 1 commit
  33. 15 Jan, 2024 1 commit
  34. 10 Jan, 2024 1 commit
    • ilyushka's avatar
      Fix code formatter bugs (#1247) · dcc7ff5d
      ilyushka authored
      * Change permission to read in slash-command-dispatch.yml
      
      * Change permission to none in slash-command-dispatch.yml
      
      * Change trigger event from push to PR in autopep8.yml
      dcc7ff5d