DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
331 Bytes
import defaultSource from "./defaultSource.js";
export default (function sourceRandomExponential(source) {
function randomExponential(lambda) {
return function() {
return -Math.log1p(-source()) / lambda;
};
}
randomExponential.source = sourceRandomExponential;
return randomExponential;
})(defaultSource);