python
陈卓为
好好学习,天天向上
展开
-
BeautifulSoup 安装
花了很多时间才装好这个小小的包~(参考 http://blog.csdn.net/cq1982/article/details/44661001点击打开链接)利用cmd完成原创 2017-02-26 10:50:23 · 303 阅读 · 0 评论 -
使用sklearn中svm做多分类时难点解惑
一,parameters: decision_function_shape: 两种方法one v one 或者 one v rest decision_function_shape : ‘ovo’, ‘ovr’ or None, default=None Whether to return a one-vs-rest (‘ovr’) decision function of sha原创 2017-05-03 18:36:54 · 8835 阅读 · 0 评论 -
python 可视化
1,绘制散点图:# k_to_accuracies: A dictionary holding the accuracies for different values of k that we find when running cross-validation with int key and list value.for k in k_choices: accuracies = k_t原创 2017-11-27 11:06:12 · 506 阅读 · 0 评论 -
python 基础知识补充
1,当函数参数数量不确定时,可以使用 *args 和 **kwargs 做形参 *args 适用于一般类型的参数,应用举例:def fun_var_args(farg, *args): print('args:', farg) for value in args: print('another arg:',value ) fun_var_args(1, 'two',原创 2017-11-27 11:27:29 · 225 阅读 · 0 评论 -
numpy库函数补充
1, np.argsort : Returns the indices that would sort an array. 在 KNN 中取前 K 个最小值时就可以使用这个函数>>> x = np.array([3, 1, 2])>>> np.argsort(x)array([1, 2, 0])2, np.bincount:Count number of occurrences of each原创 2017-11-23 21:50:09 · 242 阅读 · 0 评论 -
numpy 数组深拷贝与浅拷贝
相关问题在这篇博客中已经说得比较清楚:link 补充一个在函数中使用的例子:import numpy as npimport cv2def flip_transform(image, label): for i in range(image.shape[2]): image[:,:,i] = cv2.flip(image[:,:,i], 0) lab...原创 2018-04-13 11:32:01 · 5253 阅读 · 0 评论