8 results · AI-generated index
N
numpy.org
official

Convolution using NumPy

Performing convolution operations on NumPy arrays can be achieved by utilizing the numpy.convolve function. This function allows for efficient computation of the discrete, linear convolution of two one-dimensional sequences.

T
towardsdatascience.com
article

Convolution Operation in Python

This article provides an in-depth explanation of the convolution operation, including its implementation using NumPy arrays in Python. It covers both 1D and 2D convolution operations.

G
github.io
tool

NumPy Array Convolution Example

Example code demonstrating how to perform a convolution operation on a NumPy array. The code includes a step-by-step guide and explanations of the underlying mathematics.

S
stanford.edu
research

Convolutional Neural Networks with NumPy

Stanford University's CS231n course provides a comprehensive overview of convolutional neural networks, including a NumPy implementation of the convolution operation. The course materials are available online.

S
scipy.org
official

Python Convolution using SciPy

The SciPy library provides an efficient implementation of the convolution operation, which can be used with NumPy arrays. The scipy.signal.convolve function supports both 1D and 2D convolution.

O
opencv.org
article

Convolution Operation in Image Processing

OpenCV provides a comprehensive overview of the convolution operation in the context of image processing. The article includes example code using NumPy arrays and OpenCV functions.

Y
youtube.com
video

NumPy Convolution Tutorial

A video tutorial providing a step-by-step guide to performing convolution operations using NumPy arrays in Python. The tutorial covers both theory and implementation.

P
pytorch.org
tool

Convolutional Neural Networks Tutorial

PyTorch provides a tutorial on convolutional neural networks, including a section on implementing the convolution operation using NumPy arrays and PyTorch tensors.