gpt4 book ai didi

java - Jenetics:编解码器与列 Genotype 的正确使用

转载 作者:行者123 更新时间:2023-12-02 02:15:12 25 4
gpt4 key购买 nike

目前我正在实现 Jenetics ( link to jenetics ) 来优化粒子加速器束线。我的健身函数调用加速器检测器设备,定义如下:

private double fitness(final DoubleChromosome chromosomes) {
// private double fitness(final Genotype<DoubleGene> chromosomes) {
// Convert genes to a format the device scanner can understand
// we will inject a 1:n Set<List<Double>>
final Set<List<Double>> trimValues = new HashSet<>();

final List<Double> valueList = new ArrayList<>();
for (final DoubleGene chromosome : chromosomes) {
valueList.add(Double.valueOf(chromosome.doubleValue()));
}
trimValues.add(valueList);

....
more code specific to application
}

Jenetics的流引擎是通过特定方法初始化的:

public void initAlgorithm(final Object scanParameters) throws Exception {
if (scanParameters != null) {
/// See constructor of EvolvingImagesWorker
_geneticScanParameters = (GeneticScanParameters) scanParameters;
}

if (_geneticScanParameters.getTrimParameterSets() != null) {

final int chromosomeCount = _geneticScanParameters.getTrimParameterSets().size();
if (chromosomeCount > 0) {
ISeq<DoubleChromosome> chromosomeSet = ISeq.empty();

// create an ISeq of genes
for (final TrimParameterValueSet valueSet : _geneticScanParameters.getTrimParameterSets()) {
final double minValue = valueSet.getMinValue();
final double maxValue = valueSet.getMaxValue();
final double initialValue = (maxValue + minValue) / 2;

final DoubleGene doubleGene = DoubleGene.of(initialValue, minValue, maxValue);
final DoubleChromosome doubleChromosome = DoubleChromosome.of(doubleGene.newInstance());
chromosomeSet = chromosomeSet.append(doubleChromosome.newInstance());
}
Codec<DoubleChromosome, DoubleGene> codec = null;
try {
final Genotype<DoubleGene> genotype = Genotype.of(chromosomeSet);
codec = Codec.of(genotype.newInstance(), //
gt -> (DoubleChromosome) gt.getChromosome());
} catch (final IllegalArgumentException ex) {
MessageLogger.logError(getClass(), Thread.currentThread(), ex);
throw ex;
}

_scannerEngine = Engine.builder(this::fitness, codec) //
.executor(Executors.newSingleThreadExecutor()) // without this command, engine will be executed
// in
// parallel threads
.populationSize(_geneticScanParameters.getPopulationSize()) //
.optimize(_geneticScanParameters.getOptimizationStrategy()) //
.offspringFraction(_geneticScanParameters.getOffspringSize()) //
.survivorsSelector(new RouletteWheelSelector<>()) //
.offspringSelector(new TournamentSelector<>(_geneticScanParameters.getTournamentSizeLimit())) //
.alterers( //
new Mutator<>(_geneticScanParameters.getMutator()), //
new MeanAlterer<>(_geneticScanParameters.getMeanAlterer()) //
) //
.build();
} else {
throw new IllegalStateException(ERROR_INITSCANNER_NO_SETTING_DEVICE);
}
}
}

地点:

private Engine<DoubleGene, Double> _scannerEngine = null;

我想做的是调用适应度函数,以便我可以在适应度函数中使用基因型来访问基因的值(我发送到加速器的设置)。我已经尝试定义fitness()如下:

private double fitness(final Genotype<DoubleChromosome> genotype) {
...
}

但是这个调用会导致编译错误。

最佳答案

我看了你的代码,我认为你想做这样的事情:

class Foo {

// Your parameter class.
class TrimParameterSet {
double min, max;
}

static double fitness(final double[] values) {
// Your fitness function.
return 0;
}

public static void main(final String[] args) {
final List<TrimParameterSet> valueSets = ...;

final DoubleRange[] ranges = valueSets.stream()
.map(p -> DoubleRange.of(p.min, p.max))
.toArray(DoubleRange[]::new);

final Codec<double[], DoubleGene> codec = Codecs.ofVector(ranges);
final Engine<DoubleGene, Double> engine = Engine.builder(Foo::fitness, codec)
.build();

// ...
}
}

根据 TrimParameterSet 类中定义的范围,健身函数的 double[] 数组具有不同的范围。如果您想定义直接适应度函数,则必须定义一个以基因作为参数类型的基因型。

double fitness(Genotype<DoubleGene> gt) {...}

关于java - Jenetics:编解码器与列 Genotype 的正确使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49391705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com