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

Update loss_func.py #212

Open omkarcharatkar opened 1 year ago

omkarcharatkar commented 1 year ago

added Root Mean Squared error function.

References to other Issues or PRs or Relevant literature

Brief description of what is fixed or changed

Other comments

rohansingh9001 commented 1 year ago

@omkarcharatkar while the code LGTM, it seems that there are issues with lint in your PR. Please look at the automated tests for this PR and check for the lint errors.

We use PEP8 guidelines very strictly like most other python repositories and use flake8 to check for lint errors.

You can run such checks yourself by installing flake8 and running it in your python code repository.

python -m pip install flake8

In the code repository run - flake8 .