-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix: do not launch composition for atomized model #1324
Conversation
All PEP8 errors has been fixed, thanks ❤️ Comment last updated at |
/fix-pep8 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1324 +/- ##
==========================================
- Coverage 80.16% 80.12% -0.04%
==========================================
Files 146 146
Lines 10278 10285 +7
==========================================
+ Hits 8239 8241 +2
- Misses 2039 2044 +5 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не совсем понятна идея, почему для atomized пропускаем верификацию пайплайна и композицию
atomized функциональность на данный момент не приоритетная. Реализация будет написана позже. |
понятно, нужно будет в таком случае создать дополнительно 2 issue:
|
Фича с |
/fix-pep8 |
нужна, пусть и не работает. имел в виду, что после реализации |
fedot/api/main.py
Outdated
@@ -166,6 +166,11 @@ def fit(self, | |||
with fedot_composer_timer.launch_preprocessing(): | |||
self.train_data = self.data_processor.fit_transform(self.train_data) | |||
|
|||
init_asm = self.params.data.get('initial_assumption') | |||
if (predefined_model is None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тут скобки лишние.
Как временный воркэраунд норм, но нужно все эти хаки пометить TODO и сообщением для пользователя. |
This is a 🐛 bug fix.
Summary
Quick Fix: prevent launch pipeline composition for Atomized model.
Example notebook with Atomized Model works as expected:
https://github.com/aimclub/FEDOT/blob/master/examples/advanced/additional_learning.py
Context
Fixes #1317