Matteo Maragliano
Matteo Maragliano
### Describe your change: Add a Naive bales Classifier code with a pre-existing data-set. * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing...
Updated ROS main page link since it was not available and Coppeliasim one.
See issue AssemblyAI-Community/Machine-Learning-From-Scratch#9
Code for issue #9
```python import numpy as np class LinearRegression: def __init__(self, lr = 0.001, n_iters=1000): self.lr = lr self.n_iters = n_iters self.weights = None self.bias = None def fit(self, X, y): n_samples,...