Skip to content
Snippets Groups Projects
Commit 8e3b7790 authored by Nils Leusmann's avatar Nils Leusmann
Browse files

Merge remote-tracking branch 'origin/develop' into 160-new-generator-type-sequencer

parents 11d18866 6c57172d
No related branches found
No related tags found
1 merge request!57Draft: Add sequence generators
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
export EVOAL_HOME=$( cd -- "$(dirname $0)/../../" >/dev/null 2>&1 ; pwd -P ) export EVOAL_HOME=$( cd -- "$(dirname $0)/../../" >/dev/null 2>&1 ; pwd -P )
$SHELL $EVOAL_HOME/bin/evoal-generator.sh . surrogate.generator -Bsurrogate:configuration-file=training.mll -Bsurrogate:pre-trained=surrogate.pson $SHELL $EVOAL_HOME/bin/evoal-pipeline.sh . surrogate.generator -Bsurrogate:configuration-file=training.mll -Bsurrogate:pre-trained=surrogate.pson
import "definitions" from de.evoal.core.math; import "definitions" from de.evoal.core.math;
import "definitions" from de.evoal.generator.generator; import "definitions" from de.evoal.'pipeline'.base;
import "definitions" from de.evoal.surrogate.generator; import "definitions" from de.evoal.'pipeline'.distributions;
import "definitions" from de.evoal.surrogate.'pipeline';
import "data" from surrogate; import "data" from surrogate;
...@@ -15,13 +17,18 @@ module surrogate { ...@@ -15,13 +17,18 @@ module surrogate {
* First, we generate some normally distributed data. * First, we generate some normally distributed data.
*/ */
step { step {
component 'normal-distribution' { component 'distribution-based-data' {
'μ' := 0.0; distributions := [
'σ' := 5.12; 'normal-distribution' {
} 'μ' := 0.0;
'σ' := 5.12;
}
];
}
writes [data 'x:0']; writes [data 'x:0'];
} }
step { step {
component 'surrogate' { component 'surrogate' {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment