1. 06 Mar, 2023 1 commit
    • Andrey Getmanov's avatar
      Fix of TextDataMerger (#1052) · 35281f68
      Andrey Getmanov authored
      - added merge of text columns. Now text columns can be combined into one (early fusion strategy)
      - test_data_merge_texts was changed
      35281f68
  2. 27 Feb, 2023 1 commit
  3. 25 Feb, 2023 1 commit
  4. 23 Feb, 2023 3 commits
  5. 22 Feb, 2023 1 commit
  6. 21 Feb, 2023 2 commits
    • Andrey Getmanov's avatar
      Multimodal documentation (#1051) · e5f77f67
      Andrey Getmanov authored
      - added doc for multimodal tasks
      - fixed the links in notebooks.rst
      e5f77f67
    • Lyubov Yamshchikova's avatar
      Remove tests that moved to golem (#1049) · 2a4ce8ec
      Lyubov Yamshchikova authored
      * Del tests that fully moved to GOLEM
      
      * WIP transfer tests
      
      * Fixes after rebase
      
      * Remove some tests moved to golem
      
      * Remove some tests moved to golem
      
      * Remove some tests moved to golem
      
      * Remove some tests moved to golem
      
      * Fixes after rebase
      
      * Remove PrimaryNode and SecondaryNode
      
      * Fix test_complex_search_space_tuning_correct
      2a4ce8ec
  7. 20 Feb, 2023 2 commits
    • Grigorii's avatar
      Transition of core modules to GOLEM (#989) · 9ed994c1
      Grigorii authored
      
      * Upd requirements.txt with GOLEM git
      
      * WIP drop files used in GOLEM
      
      * WIP renames/edits for golem
      
      * Major transition of imports (with optimization) to GOLEM
      
      * Tests/examples/cases transition of imports to GOLEM
      
      * Test fixes after transition
      
      * Fix metrics_objective.py deserialization
      
      * fix req-s for setup.py
      
      * Docs fixes
      
      * Add import transition script
      
      * WIP composer_requirements movement
      
      * WIP GraphOptimizerParameters rename
      
      * WIP GPGraphOptimizerParameters rename
      
      * rename max_pipeline_fit_time to max_graph_fit_time
      
      * fix integration test on timeout (num of gen-s)
      
      * fix integration test on parallel cache files
      
      * rebase fixes
      
      * WIP fix custom model example
      
      * fix tests after changes in golem
      
      * Remove random optimizers, add RandomPipelineFactory
      
      * drop outdated test (will be fixed in golem)
      
      * Fix integration test on quality
      
      * Update requirement on golem, fix name
      
      * Upd requirements for new golem package name
      
      * minor: extend backward compat history test
      
      * remove and fix opt graph buldier for golem
      
      * fixes after rebase for golem
      
      * Add 'stable' branch for dependency on GOLEM
      
      * Fix imports after rbase
      
      ---------
      Co-authored-by: default avatarLyubov Yamshchikova <43475193+YamLyubov@users.noreply.github.com>
      9ed994c1
    • Valerii Pokrovskii's avatar
      Сlstm refactoring (#1029) · 9fff88a7
      Valerii Pokrovskii authored
      Some changes that can increase efficiency of clstm algorithm. Also bug with composer's inability to use model during composing was solved.
      
      But using such heavy model in composing still questionable due to low performance compared with it's weight (maybe it can be useful on some types of data and with small horizon but I can't say exactly). Maybe we can refactor model structure, advices are welcome.
      9fff88a7
  8. 17 Feb, 2023 1 commit
  9. 16 Feb, 2023 2 commits
    • Grigorii's avatar
      Release 0.6.2 (#1043) · 7865a332
      Grigorii authored
      * release 0.6.2
      
      * intergration test fixes
      
      * intergration test fixes: disable tuning in a long test for cache
      
      * intergration test fixes: disable tuning in more tests
      
      * intergration test fixes: less timeout for profiler test
      
      * intergration test fixes: simpler tasks or parallel_cache_files test
      7865a332
    • Pinchuk Maya's avatar
      1027 remove separation on primary secondary pipeline nodes (#1031) · f0c4c2f1
      Pinchuk Maya authored
      * add PipelineNode class
      
      * refactor all usages with new node type
      
      * remove outdated test
      
      * remove PrimaryNode and SecondaryNode classes
      
      * simplify code using PipelineNode
      
      * minor fix tests
      
      * minors with docs
      
      * add comments
      
      * remove Node class
      f0c4c2f1
  10. 14 Feb, 2023 1 commit
    • Pakulin Sergei's avatar
      + main API input preprocessing activation param (#1025) · 65cd5c97
      Pakulin Sergei authored
      + pipeline's new parameter and preprocessing class
      + pipeline's integrational tests for the new parameter
      + split preprocessing status param in supplementary_data into obligatory and optional
      + main api's integrational test for the new parameter
      + type/style/logic fixes
      65cd5c97
  11. 10 Feb, 2023 1 commit
  12. 07 Feb, 2023 1 commit
  13. 02 Feb, 2023 1 commit
  14. 01 Feb, 2023 1 commit
  15. 31 Jan, 2023 1 commit
  16. 30 Jan, 2023 2 commits
    • Peter's avatar
      API improvements (#990) · aa4fdd37
      Peter authored
      * allow main API to use PathLike objects
      
      * edit Fedot.fit() docstring
      
      * minor fixes
      
      * redefine target in case ts from array
      
      * move pd.read_csv to separate method for separate data; add `possible_idx_keywords` argument
      
      * improve docs
      
      * unify all from_csv functions
      
      * add logger message
      
      * rename 'ml_task' -> 'task'
      
      * fix typos, readability, docstring
      
      * fix `from_csv_time_series`
      
      * fixes for indexing
       - prevent parsing index as date for time series for consistency;
       - try to define index column even outside "columns_to_use".
      
      * fix `test_output_mode_full_probs`
      
      * minor fix
      
      * add tests for defining index
      aa4fdd37
    • Andrey Stebenkov's avatar
      Added tune method to API (#1021) · cf111459
      Andrey Stebenkov authored
      Adding `.tune()` method in main API which allow tunes pipelines after composing or if predefined was selected.
      cf111459
  17. 24 Jan, 2023 2 commits
    • Pinchuk Maya's avatar
      Generalize PipelineBuilder (#1020) · c206947e
      Pinchuk Maya authored
      * first approximation
      
      * minor
      
      * add skip connections method
      
      * add tests
      
      * add OptGraphBuilder & GraphBuilder
      
      * refactor PipelineBuilder
      
      * minors
      
      * optimize imports
      
      * corner situation witj cycle graphs
      
      * minor
      
      * minor fix in docstring
      c206947e
    • Rosneft rosneft's avatar
      Various fixes to work with large datasets in better way (#1019) · 3deb3e36
      Rosneft rosneft authored
      * Stopping if even one fold failed
      * Presets bug fixed
      * More stable wor for short timeouts
      * Various minor changes
      * Sequatial mode without Joblib parallelization
      * Tuner timeouts processing
      3deb3e36
  18. 22 Jan, 2023 1 commit
  19. 20 Jan, 2023 2 commits
  20. 30 Dec, 2022 1 commit
  21. 26 Dec, 2022 2 commits
  22. 20 Dec, 2022 1 commit
  23. 19 Dec, 2022 1 commit
  24. 16 Dec, 2022 1 commit
  25. 15 Dec, 2022 1 commit
  26. 12 Dec, 2022 3 commits
    • Grigorii's avatar
      update version to 0.6.1 (#995) · 20c4988d
      Grigorii authored
      20c4988d
    • Grigorii's avatar
      Release fixes for multi-objective optimization (#996) · dde69fe0
      Grigorii authored
      * fixes: fix in adapter for restore of returned values
      
      * fixes: Restricts ParetoFront size as it was becoming very large
      
      * fixes: multi-objective fitness was maximised
      
      * fix: multi-objective metrics not handled correctly in API
      
      * Add integration test for multi obj opt
      
      * Review fixes
      
      * Fix zero div error in ParetoFront
      
      * fix similarity function for just equlaity in generation_keeper.py
      
      * fix bad plotting in one example
      dde69fe0
    • Peter's avatar
      Hotfix for scikit-learn 1.2 (#1001) · 35e6864e
      Peter authored
      - Removed deprecated dataset "Boston"
      - Simplified bad-written fixtures
      - Added scikit-learn 1.2 compatibility
      35e6864e
  27. 01 Dec, 2022 2 commits
    • Pinchuk Maya's avatar
      save&load pipeline documentation (#984) · 182b0aea
      Pinchuk Maya authored
      * save method description
      
      * load method
      
      * fixes
      
      * add example
      
      * fix doc structure
      
      * saving examples
      
      * headers fix
      
      * minors
      
      * minors
      
      * minors
      
      * minors #12345
      
      * minor
      
      * fixes after review
      
      * minor
      
      * clickable section
      
      * clickable section
      
      * reformat text
      
      * fix load
      
      * minors
      182b0aea
    • Lyubov Yamshchikova's avatar
      Documentation for ts forecasting (#960) · 4e3c569a
      Lyubov Yamshchikova authored
      * WIP
      
      * WIP forecasting docs
      
      * Add train_test_split for ts docs
      
      * Add prediction section
      
      * Add manual and multivariate example
      
      * Remove ts_gapfilling
      
      * Fix title
      
      * Add explanations
      
      * Change pipeline in example
      
      * Add plots of the pipeline and rewrite prediction description
      
      * Extend Prediction sample
      
      * Add plots for Prediction section
      
      * Add multimodal example
      
      * Minor fix
      
      * Minor changes
      
      * Change pipeline plots
      
      * Correct typos
      4e3c569a
  28. 30 Nov, 2022 1 commit
    • Lyubov Yamshchikova's avatar
      Predict for time series (#930) · 2c0cce92
      Lyubov Yamshchikova authored
      * Refactor predict for ts to be in_sample
      
      * Minor fixes
      
      * Fix plot_prediction
      
      * Minor fixes
      
      * Correct in-sample forecasting
      
      * Fix doc strings
      
      * Fix in sample predict fot multi_ts data type
      
      * Add test for multi_ts in-sample predict
      
      * Add test for multimodal ts data
      
      * Rename variable target in plot_forecast
      
      * Add prediction_is_in_sample flag
      
      * Fix tests
      
      * Rename flag prediction_is_in_sample to _is_in_sample_prediction
      2c0cce92