https://github.com/xiyang1012/Local-Crowd-Counting ...
分类:
Web程序 时间:
2021-06-02 12:52:49
阅读次数:
0
三个臭皮匠赛过诸葛亮!白话Blending和Bagging“本文将主要介绍AggregationModels,也就是把多个模型集合起来,利用集体的智慧得到最佳模型。”1MotivationofAggregation首先举个例子来说明为什么要使用Aggregation。假如你有T个朋友,每个朋友向你预测推荐明天某支股票会涨还是会跌,对应的建议分别是g1,g2,?,gT,那么你该选择哪个朋友的建议呢?
分类:
其他好文 时间:
2020-12-22 11:45:01
阅读次数:
0
前情提要 在目前的三维目标检测任务中,大致分为单阶段和双阶段的网络。双阶段网络可以依靠pointnet++这样的网络得到的语义信息提供更加精确的结果。单阶段网络虽然具备了快速的优点,但是由于在道路环境下点的数量庞大,大部分的方案都是采用了将点云数据转换为其他数据形式的方式进行训练。这样不可避免的会损 ...
分类:
其他好文 时间:
2020-10-27 10:56:44
阅读次数:
21
NLP——新闻文本处理:TASK1 赛题理解与nlp初识 1.数据读取 在竞赛主页下载好数据集利用pandas打开: #coding=utf-8 import pandas as pd #my_font = font_manager.FontProperties(fname="C:\Windows\ ...
分类:
其他好文 时间:
2020-07-21 23:13:12
阅读次数:
112
import numpy as npimport pandas as pdimport matplotlib.pyplot as pltfrom scipy import stats df=pd.read_csv("hfda_ch10_employees.csv")#print(df) y = df ...
分类:
编程语言 时间:
2020-07-16 12:08:59
阅读次数:
80
1.问题描述 有一个函数$f:R\rightarrow R$ ,现在不知道函数 $f(x)$的具体形式,给定满足函数关系的一组训练样本$\left \{ (x_{1},y_{1}),...,(x_{N},y_{N}) \right \}$,N=300,请使用线性回归模型拟合出函数$y=f(x)$。( ...
分类:
其他好文 时间:
2020-07-13 18:48:49
阅读次数:
102
1.1 训练——开发——测试集 经验法则: Make sure dev and test come from same distribution 1.2 偏差_方差 1.4 Logistic regression 为什么只正则化参数w,为什么不再加上参数b呢? 因为w通常是一个高维参数矢量,已经可以 ...
分类:
其他好文 时间:
2020-06-13 11:15:08
阅读次数:
58
linear regression logistic regression SVM binary Tree naive bayes adaboost clustering ...
分类:
其他好文 时间:
2020-06-07 21:24:49
阅读次数:
59
draw_point (WindowHandle, Row, Column)gen_circle (Circle, Row, Column, 10.5) draw_point (WindowHandle, Row1, Column1)gen_circle (Circle, Row1, Column1 ...
分类:
其他好文 时间:
2020-05-23 11:44:19
阅读次数:
56
1.matlab多元回归示例如下: 解决问题:油价预测 方法:多元线性回归 实现:matlab regress()函数 技巧:通过增加X1^2,X2^2,或者X1*X2等构造的特征项,可以提高回归模型的拟合准确度;但计算代价增大。 function result=reg_new_month(XX1_ ...
分类:
其他好文 时间:
2020-05-15 11:35:32
阅读次数:
66