Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
The algorithm is intended to minimize real valued multivariate scalar fields over a hyper-rectangular region of N, theoretically the only prerequisite to achieve convergence is that the function must be continuous in the domain or at least continuous over a neighborhood of the global minimum.
import direct from 'ml-direct';
const options = {
iterations: 50,
};
const lowerBoundaries = [-1, -1.5];
const upperBoundaries = [2, 6];
const predicted = direct(
griewank,
lowerBoundaries,
upperBoundaries,
options,
);
function griewank(x) {
let d = x.length;
let s = 0;
let p = 1;
for (let i = 0; i < d; i++) {
s += Math.pow(x[i], 2) / Math.sqrt(4000);
p *= Math.cos(x[i] / Math.sqrt(i + 1));
}
let result = s - p + 1;
return result;
}
// predicted.minFunctionValue = 0;
// predicted.optima[0] = [0, 0]; This are the points where the function has minimum value
A tool for global optimization of real valued functions .
$ npm i ml-direct
import direct from 'ml-direct';
const options = {
iterations: 25,
};
// for x we explore values between -5 and 4
// for y we explore values between -2 and 3
const lowerBoundaries = [-5, -2];
const upperBoundaries = [4, 3];
const quadratic = function (parameters) {
let [x, y] = parameters;
return Math.pow(x, 2) + Math.pow(y, 2);
};
const predicted = direct(
quadratic,
lowerBoundaries,
upperBoundaries,
options,
);
// predicted.minFunctionValue = 0;
// predicted.optima[0] = [0, 0];
Jones, D. R., Perttunen, C. D., & Stuckman, B. E. (1993). Lipschitzian optimization without the Lipschitz constant. Journal of optimization Theory and Applications, 79(1), 157-181.
Björkman, M., & Holmström, K. (1999). Global optimization using the DIRECT algorithm in Matlab.
Preparata, F. P., & Shamos, M. I. (2012). Computational geometry: an introduction. Springer Science & Business Media.
FAQs
Direct - DIviding RECTangles optimization algorithm
The npm package ml-direct receives a total of 268 weekly downloads. As such, ml-direct popularity was classified as not popular.
We found that ml-direct demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.