RoboticsClubIITJ / ML-DL-implementation

An implementation of ML and DL algorithms from scratch in python using nothing but NumPy and Matplotlib.
BSD 3-Clause "New" or "Revised" License
47 stars 68 forks source link

Wrote the test for ReLU function #203

Closed SomshuvraBasu closed 2 months ago

SomshuvraBasu commented 1 year ago

Wrote the Test for ReLU function

SusimRoy commented 1 year ago

test_Relu() function too big. Can be optimized to fewer lines.

SomshuvraBasu commented 1 year ago

Okay, will revert back with it.

SomshuvraBasu commented 1 year ago

Have Optimised it now by shortening the code.

SusimRoy commented 1 year ago

LGTM.

rohansingh9001 commented 1 year ago

@SomshuvraBasu Some lint errors are present in your code.

Always check if you python code is formatted correctly by running the flake8 utility. To check details of why your code is failing see this.