深度学习图解
最新书摘:
-
长脸方2019-06-23The structure trickWhen a neural network needs to use the same idea in multiple places, endeavor to use the same weights in both places. This will make those weights more intelligent by giving them more samples to learn from, increasing generalization.
-
长脸方2019-06-22for i in range(len(true)): error[i] = (pred[i] - true[i]) ** 2 delta = pred[i] - true[i]