conda关于源的操作

只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2020-04-05 22:52 华1 阅读(0) 评论(0) 推荐(0) 编辑

EM

摘要: 网址:https://www.cnblogs.com/xingshansi/p/6557665.html 阅读全文
posted @ 2020-02-28 16:46 华1 阅读(141) 评论(0) 推荐(0) 编辑

SVM

摘要: 网址:https://www.cnblogs.com/further further further/p/9596898.html 朗格朗日极大极小问题的证明:https://www.cnblogs.com/breezezz/p/11303722.html 1. 解决什么问题? 最基本的应用是数据分 阅读全文
posted @ 2020-02-24 14:00 华1 阅读(244) 评论(0) 推荐(0) 编辑

最大熵模型

摘要: import math from copy import deepcopy class MaxEntropy: def __init__(self, EPS=0.005): self._samples = [] self._label_y = set() 标签集合,相当去去重后的y self._nu 阅读全文
posted @ 2020-02-23 16:49 华1 阅读(202) 评论(0) 推荐(0) 编辑

逻辑回归

摘要: from math import exp import numpy as np import pandas as pd from sklearn.datasets import load_iris import matplotlib.pyplot as plt from sklearn.model_ 阅读全文
posted @ 2020-02-17 20:27 华1 阅读(198) 评论(0) 推荐(0) 编辑

SSD详解 + default box生成过程

摘要: 网址:https://blog.csdn.net/gbyy42299/article/details/81235891 在mxnet上面看李沐大神的视频,自己看了SSD的paper里面还是有些一知半解的东西,于是就用篇博客记录下来。文章中的图和部分见解都来自于网络有些错误的图已经修正,如有侵权,联系 阅读全文
posted @ 2019-12-29 23:33 华1 阅读(875) 评论(0) 推荐(0) 编辑

k-mean

摘要: import numpy as np from k_initialize_cluster import k_init np.random.seed() class YOLO_Kmeans: def __init__(self, cluster_number, filename): self.clus 阅读全文
posted @ 2019-12-21 15:27 华1 阅读(409) 评论(0) 推荐(0) 编辑

计算机笔试试题

摘要: https://www.cnblogs.com/lfri/category/1548509.html 阅读全文
posted @ 2019-11-19 20:10 华1 阅读(107) 评论(0) 推荐(0) 编辑

决策树系列三——基尼指数,减枝和

摘要: coding: utf 8 """ Created on Tue Aug 14 17:36:57 2018 @author: weixw """ import numpy as np 定义树结构,采用的二叉树,左子树:条件为true,右子树:条件为false leftBranch:左子树结点 rig 阅读全文
posted @ 2019-11-05 23:46 华1 阅读(1293) 评论(0) 推荐(0) 编辑

决策树——C4.5

摘要: coding: utf 8 """ Created on Thu Aug 2 17:09:34 2018 决策树ID3,C4.5的实现 @author: weixw """ from math import log import operator 原始数据 def createDataSet(): 阅读全文
posted @ 2019-11-05 21:42 华1 阅读(269) 评论(0) 推荐(0) 编辑