numpy
幽默的荆轲君
今天就是生命——是惟一你能确知的生命。
展开
-
numpy,pandas中的axis=0 ,axis=1的问题
axis = 0是按行进行操作,axis=1是按列进行操作。这里df.dropna() == df.dropna(axis=0)原创 2017-10-18 22:18:40 · 1512 阅读 · 0 评论 -
深度学习cs231n之knn学习的一些记录(1)
inputs:X: A numpy array of shape(num_test, D) containing test data.Returns:dists: A numpy array of shape(num_test, num_train) where dists[i, j] is the Euclidean distance between the ith test point...原创 2018-09-25 23:10:02 · 337 阅读 · 0 评论 -
深度学习cs231n之knn学习的一些记录(2)
防止在上篇文章上的修改产生覆盖,我这里就直接重启一篇。继续写当前在knn.ipynb 里面的box 15Now implement the function. predict_labels and run the code below:现在执行classifier.predict_labels 这个函数。运行下面的代码来预测labelswe use k = 1 (which is Nea...原创 2018-09-27 09:54:52 · 261 阅读 · 0 评论