CV
LaughMamba
脚踏实地
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
cs231n-assignment1-knn 总结
最近在看cs231n的教学视频,顺便打算把作业好好做下,因为自己是编程小白,所以对代码做些笔记。为了自己能熟悉下numpy 一,关于compute_distances_two_loops() github上找到的答案和大部分网友都用以下 dists[i][j] = np.sqrt(np.sum(np.square(X[i] - self.X_train))) 但次代码在jupyter noteb...原创 2019-07-02 14:47:23 · 278 阅读 · 0 评论 -
np.nditer函数
转载链接 针对cs231n中的一行代码 def eval_numerical_gradient(f, x): """ a naive implementation of numerical gradient of f at x - f should be a function that takes a single argument - x is the point (nump...转载 2019-08-16 10:17:29 · 935 阅读 · 0 评论
分享