We have an array of objects as input
- label: temperature, min: 0, max: 100: nbSamples: 5, sampling: 'uniform'
- label: solvant, min 0.1, max 1, nbSamples: 3, sampling: 'log'
- label: 'product 1': values: 'A', 'B', 'C', 'D'
- label: 'product 2': values: 'E', 'F', 'G'
We need to create a matrix similar to:
[
[0, 25, 50, 75, 100],
[0.1, 0.3, 1],
[0, 1, 2, 3],
[0, 1, 2],
]
And receive as well a mapping that allows to revert this operation
We send the matrix to a procedure that will select the parameters to test:
I want 2 experiments
[
[0,2,1,2],
[1,2,2,2],
]
For my 2 experiments recreate the array of object:
[
{ temperature: 50, 'product 1': A, ...}
]
We have an array of objects as input
We need to create a matrix similar to:
[
[0, 25, 50, 75, 100],
[0.1, 0.3, 1],
[0, 1, 2, 3],
[0, 1, 2],
]
And receive as well a mapping that allows to revert this operation
We send the matrix to a procedure that will select the parameters to test:
I want 2 experiments
[
[0,2,1,2],
[1,2,2,2],
]
For my 2 experiments recreate the array of object:
[
{ temperature: 50, 'product 1': A, ...}
]