文件名称:matrix-convolution:矩阵卷积
文件大小:13KB
文件格式:ZIP
更新时间:2024-05-23 14:28:29
JavaScript
ml-矩阵卷积 矩阵卷积。 安装 npm i ml-matrix-convolution const MatrixConvolution = require ( 'ml-matrix-convolution' ) ; let matrix = [ [ 1 , 1 , 1 , 1 , 1 ] , [ 1 , 1 , 1 , 1 , 1 ] , [ 1 , 1 , 1 , 1 , 1 ] , [ 1 , 1 , 1 , 1 , 1 ] , [ 1 , 1 , 1 , 1 , 1 ] , ] ; let kernel = [ [ 1 , 1 , 1 ] , [ 1 , 1 , 1 ] , [ 1 , 1 , 1 ] , ] ; let conv1 = MatrixConvolution . direct ( matrix , kernel ) ; let co
【文件预览】:
matrix-convolution-master
----.eslintrc.yml(54B)
----.gitignore(1KB)
----package.json(1KB)
----.npmrc(19B)
----src()
--------index.js(258B)
--------util()
--------__tests__()
--------convolutionDirect.js(1KB)
--------convolutionFFT.js(1KB)
----LICENSE(1KB)
----CHANGELOG.md(2KB)
----.github()
--------workflows()
----rollup.config.js(131B)
----README.md(1KB)
----benchmark()
--------benchmark.js(2KB)
----babel.config.js(79B)