Opened 9 years ago
Closed 8 years ago
#2571 closed feature request (done)
Create a RandomSearchAlgorithm
Reported by: | pfleck | Owned by: | mkommend |
---|---|---|---|
Priority: | medium | Milestone: | HeuristicLab 3.3.14 |
Component: | Algorithms | Version: | 3.3.13 |
Keywords: | Cc: |
Description
Having a random search algorithm can sometimes be usable, for example
- testing if a problem is simple enought that random sampling finds good solutions or
- generate some random sample data for learning a surrogate model for a more complex problem.
Change History (15)
comment:1 Changed 9 years ago by pfleck
- Status changed from new to accepted
comment:2 Changed 9 years ago by pfleck
comment:3 Changed 9 years ago by pfleck
r13581 Fixed output path of assembly.
comment:4 Changed 9 years ago by pfleck
- Owner changed from pfleck to mkommend
- Status changed from accepted to reviewing
comment:5 Changed 9 years ago by mkommend
- Owner changed from mkommend to pfleck
- Status changed from reviewing to assigned
comment:6 Changed 9 years ago by pfleck
- Status changed from assigned to accepted
comment:7 Changed 9 years ago by abeham
I would propose to call it MaximumEvaluations
comment:8 Changed 9 years ago by pfleck
r13677: Renamed some parameters to be more consistent with other algorithms.
- Number of Samples -> Evaluated Solutions
- Batch Size -> Sample Size
- Number of Batches -> Iterations
@abeham I saw your suggestion just after the commit. MaximumEvaluations would also be fine. However, I choose MaximumEvaluatedSolutions because OSGA and CMAES also calls it that way.
comment:9 Changed 9 years ago by pfleck
- Owner changed from pfleck to mkommend
- Status changed from accepted to reviewing
comment:10 Changed 9 years ago by mkommend
r13679: Corrected grammar mistake in RandomSearch.
comment:11 Changed 9 years ago by mkommend
- Owner changed from mkommend to pfleck
- Status changed from reviewing to assigned
comment:12 Changed 9 years ago by pfleck
- Owner changed from pfleck to mkommend
- Status changed from assigned to reviewing
- Renamed SampleSize to BatchSize.
- Fixed name of iterations in the results in operator graph.
- Removed automatic recalculating of evaluated solutions or batch size when changing the maximum iterations.
comment:13 Changed 8 years ago by ascheibe
r13863 added linux prebuild event
comment:14 Changed 8 years ago by mkommend
- Status changed from reviewing to readytorelease
comment:15 Changed 8 years ago by mkommend
- Resolution set to done
- Status changed from readytorelease to closed
Note: See
TracTickets for help on using
tickets.
r13580 Implemented Random Search Algorithm.