-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for random state passing #269
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #269 +/- ##
==========================================
- Coverage 72.88% 71.44% -1.45%
==========================================
Files 140 140
Lines 8338 8341 +3
==========================================
- Hits 6077 5959 -118
- Misses 2261 2382 +121 ☔ View full report in Codecov by Sentry. |
@@ -174,6 +174,23 @@ def all_historical_quality(self, metric_position: int = 0) -> List[float]: | |||
def show(self): | |||
return OptHistoryVisualizer(self) | |||
|
|||
# def analyze_online(self, url='https://fedot.onti.actcognitive.org'): |
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.
Это нужно оставлять?
@@ -112,8 +112,7 @@ def __init__(self, | |||
# TODO: rename params to avoid confusion | |||
requirements: Optional[OptimizationParameters] = None, | |||
graph_generation_params: Optional[GraphGenerationParams] = None, | |||
graph_optimizer_params: Optional[AlgorithmParameters] = None, | |||
**custom_optimizer_params): | |||
graph_optimizer_params: Optional[AlgorithmParameters] = 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.
а там не ломается использование кастомных оптимизаторов, унаследованных от него?
FEDOT-related fix for reproducibility of optimiser (now only runs from GOLEM() class take the seed into account)