Skip to content
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

Minor fix #184

Merged
merged 7 commits into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor fix
  • Loading branch information
maypink committed Sep 6, 2023
commit 00511f918ffac2c006abbe344e231dcd6d7634c6
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ContextualMultiArmedBanditAgent(OperatorAgent):
using NN to guarantee convergence.

:param actions: types of mutations
:param context_agent: function to convert observation to its embedding. Can be specified as
:param context_agent_type: function to convert observation to its embedding. Can be specified as
ContextAgentTypeEnum or as Callable function.
:param available_operations: available operations
:param n_jobs: n_jobs
Expand Down
1 change: 0 additions & 1 deletion golem/core/optimisers/genetic/operators/reproduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ def reproduce_uncontrolled(self,
new_population = self.crossover(selected_individuals)
new_population = self.mutation(new_population)

new_population = ensure_wrapped_in_sequence(self.mutation(new_population))
new_population = evaluator(new_population)
return new_population

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.