Chris Morris

Results 3 issues of Chris Morris

The line in chapter 4 when computing the accuracy is: ``` accuracy_3s,accuracy_7s,(accuracy_3s+accuracy_7s)/2 ``` Is `/2` appropriate here? It would seem that the accuracy should take into account the number of...

In the notebook, you have: ``` def perceptron_trick(weights, bias, features, label, learning_rate = 0.01): pred = prediction(weights, bias, features) for i in range(len(weights)): weights[i] += (label-pred)*features[i]*learning_rate bias += (label-pred)*learning_rate return...

When a dataset is downloaded via the API, the data.yaml file has inconsistent image paths. For example they look like: ``` test: ../test/images train: project-name/train/images val: project-name/valid/images ``` Oddly enough,...