
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
ndarray-gradient
Advanced tools
Computes the gradient of an ndarray using a 2-point central finite difference template.
var pack = require('ndarray-pack')
var pool = require('ndarray-scratch')
var grad = require('ndarray-gradient')
var show = require('ndarray-show')
var X = pack([[0, 0, 0],
[0, 1, 0],
[0, 0, 0]])
//Compute gradient of X
var dX = grad(pool.zero([3,3,2]), X)
console.log('grad(X) = \n', show(dX))
Output:
grad(X) =
0.000 0.000 0.000
-0.500 0.000 0.500
0.000 0.000 0.000
0.000 -0.500 0.000
0.000 0.000 0.000
0.000 0.500 0.000
npm install ndarray-gradient
require('ndarray-gradient')(dst, src[, bc])
Computes the gradient of src
storing the result into dst
.
dst
is an array of gradient values. The shape of dst
must be the shape of src
with one additional dimension for the components of the gradient
src
is the array to differentiate
bc
is an array of boundary conditions. The boundary conditions are encoded as string values and must be one of the following values:
'clamp'
(Default) clamp boundary edges to boundary'mirror'
mirror values across the boundary'wrap'
wrap values across boundaryReturns dst
(c) 2014 Mikola Lysenko. MIT License
FAQs
Finds the gradient of an ndarray using finite differences
The npm package ndarray-gradient receives a total of 20,978 weekly downloads. As such, ndarray-gradient popularity was classified as popular.
We found that ndarray-gradient demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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 Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.