Stanford Machine Learning Week 6 review
I just finished the 6th week of Stanford Machine Learning course. It’s still largely about neural network. How to choose the number of layers in neural... »
I just finished the 6th week of Stanford Machine Learning course. It’s still largely about neural network. How to choose the number of layers in neural... »
I just finished the 5th week of Stanford Machine Learning course: Neural Networks: Learning. Since this week’s course is a little bit difficult. I thought I... »
This is an easy algorithm I coded to practise Python. I’ve been studying Machine Learning for a while, mainly by following courses on Coursera. Even though... »
I have the following static factory method that creates a list view out of an int array: public class ListFactory { public static List<Integer> newInstance(final int[]... »
The Java Generics is based on Erasure, which means the type check is only done at compile time, and at runtime the type information is erased.... »