ankit869

Results 3 issues of ankit869

--------------------------------------------------------------------------- ImportError Traceback (most recent call last) Cell In [46], line 1 ----> 1 import pnumpy as np 2 import pandas as pd File c:\Users\Dell\AppData\Local\Programs\Python\Python310\lib\site-packages\pnumpy\__init__.py:57 53 raise ValueError(f"PNumPy requires a...

import numpy as np def conv2d(image,kernal,padding=0,strides=1): xKernShape=kernal.shape[0] yKernShape=kernal.shape[1] xImgShape=image.shape[0] yImgShape=image.shape[1] padding=int(padding) strides=int(strides) xOutput = int(((xImgShape - xKernShape + 2 * padding) / strides) + 1) yOutput = int(((yImgShape - yKernShape...

Error 1: Error while finding output with strides equals 2 in convolution.py Error 2: After updating image with padding you should convolve on that updated image, but here in this...