- 博客(18)
- 收藏
- 关注
原创 Hadoop-3.1.1完全分布式集群搭建
一、工作准备1.虚拟机安装Vmware安装CentOs虚拟机三台master 192.168.33.101slave1 192.168.33.102slave2 192.168.33.103虚拟机配置以master为例修改主机名hostname master配置静态ip修改ifcfg-eno16777736,该文件在/etc/sysconfig/net...
2018-10-22 09:55:57 2819 3
原创 Python 装饰器
什么是装饰器装饰器本质上是一个Python函数,它可以让其他函数在不需要做任何代码变动的前提下增加额外功能,装饰器的返回值也是一个函数对象。它经常用于有切面需求的场景,比如:插入日志、性能测试、事务处理、缓存、权限校验等场景。装饰器是解决这类问题的绝佳设计,有了装饰器,我们就可以抽离出大量与函数功能本身无关的雷同代码并继续重用。本质上,decorator就是一个返回函数的高阶函数。例子定义...
2019-03-07 23:06:03 234
原创 机器学习——性能评估指标
性能评估指标1. 分类算法的性能评估指标1.1 精确率与召回率1.2 F1-score1.3 AUC与ROC1.3.1 ROC曲线1.3.2 AUC值1.3.3 为什么使用ROC和AUC2. 回归算法的性能评估指标2.1 平均绝对误差(MAE)2.2 平均平方误差(MSE)2.3 均方根误差(RMSE)2.4 决定系数(R2 score)2.5 交叉验证(cross-validation)机器学...
2019-03-03 15:30:43 2141
原创 Python3整理(1)
1. 基础数据类型Python3中有6种标准数据类型:Number(数字)String(字符串)List(列表)Tuple(元组)Set(集合)Dictionary(字典)其中:不可变数据(3 个):Number(数字)、String(字符串)、Tuple(元组);可变数据(3 个):List(列表)、Dictionary(字典)、Set(集合)1.1 Number...
2019-03-03 10:48:57 523
转载 特征工程
参考:知乎-特征工程是什么1、特征工程概念“数据决定了机器学习的上限,而算法只是尽可能逼近这个上限”,这里的数据指的就是经过特征工程得到的数据。**特征工程指的是把原始数据转变为模型的训练数据的过程,它的目的就是获取更好的训练数据特征,使得机器学习模型逼近这个上限。**特征工程能使得模型的性能得到提升,有时甚至在简单的模型上也能取得不错的效果。 特征工程在机器学习中占有非常重要的作用,一...
2019-02-26 16:38:27 741
原创 机器学习——LR
LR推导1. 公式推导机器学习-LR推导及与SVM的区别2. 正则化L1范数:是指向量中各个元素绝对值之和,也有个美称叫“稀疏规则算子”(Lasso regularization)。一个关键原因在于它能实现 特征的自动选择。一般来说,大部分特征 xi和输出 yi之间并没有多大关系。在最小化目标函数的时候考虑到这些额外的特征 xi,虽然可以获得更小的训练误差,但在预测新的样本时,这些没用...
2019-02-24 14:23:33 551
原创 2018腾讯秋招笔试题
题目来源:牛客网1. 翻转数列解题思路:这道题目非常简单,可以设置一个flag变量,用来控制符号的编号,然后循环累计就可以得到结果。AC代码:#include <stdio.h>int main(){ int n, m; scanf("%d %d", &n, &m); long long sum = 0; int flag...
2019-01-18 21:40:07 1187
原创 贝叶斯分类器(Bayes)
一、条件概率设有A、B两个事件,已知事件A发生的情况,事件B发生的概率称为条件概率:$P(B|A) = P(AB) / P(A)$ P(AB)是AB两种事件同时发生的概率:$P(AB) = P(A) * P(B|A) = P(B) * P(A|B)$ 所以条件概率公式计算如下,如果AB没有交集,那么条件概率为0:$P(A|B) = P(A) * P(B|A) / P(B)$二、全...
2019-01-11 16:04:44 567
原创 PAT-A 1153 Decode Registration Card of PAT
A registration card number of PAT consists of 4 parts:the 1st letter represents the test level, namely, T for the top level, A for advance and B for basic; the 2nd - 4th digits are the test site nu...
2018-12-16 09:15:32 377
原创 PAT-A 1154 Vertex Coloring
A proper vertex coloring is a labeling of the graph's vertices with colors such that no two vertices sharing the same edge have the same color. A coloring using at most k colors is called a (proper) k...
2018-12-16 09:02:56 350
原创 PAT-A 1152 Google Recruitment
In July 2004, Google posted on a giant billboard along Highway 101 in Silicon Valley (shown in the picture below) for recruitment. The content is super-simple, a URL consisting of the first 10-d...
2018-12-11 22:57:09 483 2
原创 PAT-A 1155 Heap Paths
In computer science, a heap is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the value) of P is either greater than or equal to (i...
2018-12-10 09:43:15 672
原创 AVL树——自平衡二叉搜索树
概念AVL(Adelson-Velskii and Landis)树得名于它的发明者 G.M. Adelson-Velsky 和 E.M. Landis,他们在 1962 年的论文《An algorithm for the organization of information》中发表了它。AVL树是一种自平衡二叉搜索树。特征满足二叉搜索树的特征,即任何一个节点的值比左孩子的值大,比右...
2018-11-24 22:41:18 433
原创 win10 Python3.6连接hive
环境windows 10python 3.6hive 3.1.0hive部署在虚拟机上Python依赖包thriftthriftpythrift_saslpure_saslimpylabitarray如果无法使用pip install安装上述包的话,可以在https://www.lfd.uci.edu/~gohlke/pythonlibs/网页下载相应的whl文件,使用...
2018-10-28 10:33:46 3264 1
原创 Sqoop使用
1.mysql导入hivesqoop import \--connect jdbc:mysql://master:3306/employees?zeroDateTimeBehavior=CONVERT_TO_NULL \--username hive \--password 123456 \--table employees \--fields-terminated-by '\t' \...
2018-10-22 09:16:22 276
原创 LeetCode 429 N-ary Tree Level Order Traversal
DescriptionGiven an n-ary tree, return the level order traversal of its nodes’ values. (ie, from left to right, level by level).For example, given a 3-ary tree:We should return its level order tra...
2018-10-15 15:38:44 219
原创 LeetCode 896 Monotonic Array
DescriptionAn array is monotonic if it is either monotone increasing or monotone decreasing.An array A is monotone increasing if for all i <= j, A[i] <= A[j]. An array A is monotone decreas...
2018-10-15 14:59:09 208
原创 LeetCode 868 Binary Gap
DescriptionGiven a positive integer N, find and return the longest distance between two consecutive 1's in the binary representation of N.If there aren't two consecutive 1's, return 0.Example 1:...
2018-10-11 10:18:02 223
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人