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
49 stars 69 forks source link

Incorporate Tensor class in every model. #63

Open rohansingh9001 opened 3 years ago

rohansingh9001 commented 3 years ago

NOTE: Can only be worked on when issue #62 is solved and closed.

If the Tensor class has been implemented, we now need to incorporate into our repository code throughout.

Since Tensor class should have all the same methods as a NumPy array, duck typing will come into play and everything will work together, however, we need to use Tensors whenever new NumPy arrays are being generated and used.