sar-gupta / neural-network-from-scratch

Implementation of a neural network from scratch in python.
MIT License
35 stars 23 forks source link

PEP for Readability #8

Open ghost opened 6 years ago

ghost commented 6 years ago

Class names are usually CamelCased, and Python code should follow PEP to maximize readability. The importance of readability is to ensure fellow programmers can better learn from code and track bugs. Nonetheless, your code is generally very readable. Good job! 😊

clamytoe commented 5 years ago

My Refactored #9 PR makes this project PEP8 compliant. I agree, it was easy to follow to begin with.