(no title)
AgentMatt | 1 month ago
I think there's a small problem with intermediate values in this code snippet:
const maxValue = Math.max(...samplingVector)
samplingVector = samplingVector.map((value) => {
value = x / maxValue; // Normalize
value = Math.pow(x, exponent);
value = x * maxValue; // Denormalize
return value;
})
Replace x by value.
alexharri|1 month ago
Aaron2222|1 month ago
alexharri|1 month ago