上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页
摘要: #日期识别 # -*- coding: utf-8 -*- import re from datetime import datetime, timedelta from dateutil.parser import parse import jieba.posseg as psg UTIL_CN_NUM = { '零': 0, '一': 1, '二': 2, '两': 2, '三... 阅读全文
posted @ 2018-12-17 14:34 下路派出所 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 语料库地址: 链接:https://pan.baidu.com/s/1dozkaKD8yQdt51Z-R4ExHQ 提取码:f705 阅读全文
posted @ 2018-12-17 13:34 下路派出所 阅读(592) 评论(0) 推荐(0) 编辑
摘要: XGBoost其实是由一群训练出来的CART回归树集成出来的模型。 目标 目标其实就是训练一群回归树,使这树群的预测值尽量接近真实值,并且有尽可能强大的泛化能力。来看看我们的优化函数: 优化函数 i表示的是第i个样本,前一项是表示的是预测误差。后一项表示的是树的复杂度的函数,值越小表示复杂度越低,泛 阅读全文
posted @ 2018-12-12 22:21 下路派出所 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 将自定义用户词典加入的词与词性中间的空格更改为@@ 1.原来:牵连关系 50 n 2.现在:牵连关系@@50@@n 更改jieba根目录下的__init__.py文件下代码: 1.原来:re_userdict = re.compile('^(.+?)( [0-9]+)?( [a-z]+)?$', r 阅读全文
posted @ 2018-12-10 17:46 下路派出所 阅读(3503) 评论(1) 推荐(1) 编辑
摘要: df = df.dropna(axis=0, how='any') 阅读全文
posted @ 2018-12-10 13:47 下路派出所 阅读(563) 评论(0) 推荐(0) 编辑
摘要: # 3维import numpy as np import matplotlib.pyplot as plt from sklearn.datasets.samples_generator import make_classification from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = Axes3D(fig) ... 阅读全文
posted @ 2018-12-07 17:01 下路派出所 阅读(1904) 评论(0) 推荐(0) 编辑
摘要: 1.马尔科夫网络指无向图 2.一阶马尔科夫链指有向图,这个时刻的状态只依赖前一个时刻 阅读全文
posted @ 2018-12-03 17:29 下路派出所 阅读(651) 评论(0) 推荐(0) 编辑
摘要: LR:Logistic 是 Softmax 的特殊形式,多以如果 Softmax 与 MaxEnt 是等价的,则 Logistic 与 MaxEnt 是等价的。 HMM模型: 将标注看作马尔可夫链,一阶马尔可夫链式针对相邻标注的关系进行建模,其中每个标记对应一个概率函数。HMM是一种生成模型,定义了 阅读全文
posted @ 2018-12-03 16:53 下路派出所 阅读(1541) 评论(0) 推荐(0) 编辑
摘要: LR如何解决低维不可分 特征映射:通过特征变换的方式把低维空间转换到高维空间,而在低维空间不可分的数据,到高维空间中线性可分的几率会高一些。具体方法:核函数,如:高斯核,多项式核等等。 从图模型角度看LR LR模型可以看作是CRF模型的低配版,在完全不定义随机变量交互,只考虑P(Y|X)的情况下,得 阅读全文
posted @ 2018-12-02 11:57 下路派出所 阅读(271) 评论(0) 推荐(0) 编辑
摘要: from sklearn.metrics import roc_curve, auc import matplotlib as mpl import matplotlib.pyplot as plt def plot_roc(labels, predict_prob): false_positive_rate,true_positive_rate,thresholds=roc_c... 阅读全文
posted @ 2018-11-19 14:32 下路派出所 阅读(3538) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页