Skip to content

Commit

Permalink
set n_jobs to 1 in multiobj test
Browse files Browse the repository at this point in the history
  • Loading branch information
IIaKyJIuH committed Jul 13, 2023
1 parent e7cfe39 commit b12edbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/quality/test_quality_improvement.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_multiobjective_improvement():
metric=metrics)

auto_model = Fedot(problem=problem, timeout=timeout, seed=seed, logging_level=logging.DEBUG,
**composer_params, use_pipelines_cache=False, use_preprocessing_cache=False)
**composer_params, n_jobs=1, use_pipelines_cache=False, use_preprocessing_cache=False)
auto_model.fit(features=train_data_path, target='target')
auto_model.predict_proba(features=test_data_path)
auto_metrics = auto_model.get_metrics()
Expand Down

0 comments on commit b12edbf

Please sign in to comment.