算法
DeniuHe
加油!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
序类别标签转化为扩展二分类标签
【代码】序类别标签转化为扩展二分类标签。原创 2023-07-10 10:30:14 · 414 阅读 · 0 评论 -
Semi-supervised Discriminant Learning
半监督核判别分析原创 2023-04-04 17:02:36 · 181 阅读 · 0 评论 -
Kernel Fisher Discriminant Analysis
核判别分析代码实现原创 2023-04-04 14:46:27 · 679 阅读 · 1 评论 -
Leader Tree construction
-----------获取非密度最大点的delta和leader--------# -------------密度最大点的delta-------------# --------给聚类中心分配簇标签----------原创 2023-03-18 13:53:10 · 431 阅读 · 0 评论 -
序分类与回归和多分类之间的对比
序分类与回归和多分类的不同原创 2022-12-03 17:08:52 · 266 阅读 · 0 评论 -
Python:相对简洁的基于高斯混合模型的聚类算法(GMM)
高斯混合模型(GMM)聚类原创 2022-11-19 00:23:36 · 2133 阅读 · 0 评论 -
GMM 补全
高斯混合模型补全缺失数据原创 2022-11-08 15:25:34 · 263 阅读 · 0 评论 -
GMM 补全
高斯混合模型原创 2022-11-08 15:24:52 · 195 阅读 · 0 评论 -
R2RILS matrix completion
R2RILS原创 2022-11-08 15:23:46 · 176 阅读 · 0 评论 -
GMM based imputation
基于高斯混合模型的缺失值补全方法原创 2022-11-07 19:15:54 · 202 阅读 · 0 评论 -
SimpleImputer的使用方法
SimpleImputer原创 2022-10-22 16:10:28 · 846 阅读 · 0 评论 -
RED-SVM
REDSVM原创 2022-10-21 19:56:06 · 166 阅读 · 0 评论 -
CoreSet
K-center-Greedy原创 2022-10-21 10:44:18 · 576 阅读 · 0 评论 -
距离的公理化定义
距离的公理化定义原创 2022-10-13 10:23:28 · 586 阅读 · 0 评论 -
Z-score标准化预处理文献引用
标准化预处理的文献引用原创 2022-10-09 22:26:28 · 2409 阅读 · 1 评论 -
MICE和ICkNNI填充案例
MICE和ICkNNI填充案例原创 2022-09-13 16:37:41 · 356 阅读 · 0 评论 -
Python寻找矩阵中最大的元素并定位其位置
Python寻找矩阵中最大的元素并定位其位置原创 2022-09-12 14:38:21 · 2936 阅读 · 0 评论 -
基于SVD的矩阵缺失值填充
SVD imputation原创 2022-09-08 20:52:43 · 1094 阅读 · 0 评论 -
KELMOR and IKELMOR
增量式kernel极限学习机原创 2022-09-03 19:57:12 · 233 阅读 · 0 评论 -
使用HOG特征提取对FG-NET数据集进行年龄估计
使用HOG特征提取对FG-NET数据集进行年龄估计原创 2022-08-21 19:07:45 · 355 阅读 · 0 评论 -
使用LBP特征提取对FG-NET数据集进行年龄估计
使用LBP特征提取对FG-NET数据集进行年龄估计原创 2022-08-21 16:41:48 · 382 阅读 · 0 评论 -
python:LBP图像特征提取与SVM分类
LBP图像特征提取原创 2022-08-20 10:27:59 · 2790 阅读 · 4 评论 -
复现:A Graph-Based Approach for Active Learning in Regression
A Graph-Based Approach for Active Learning in Regression原创 2022-08-17 11:40:57 · 244 阅读 · 0 评论 -
Expected model change maximization
什么是Expected model change maximization原创 2022-08-16 11:46:43 · 269 阅读 · 0 评论 -
Selectively inhibiting learning bias for active sampling
Density-weighted Agnostic Sampling原创 2022-06-30 19:53:01 · 168 阅读 · 0 评论 -
如何计算win/tai/loss in paired t-test
win/tie/loss in paired t-test原创 2022-06-28 20:25:29 · 945 阅读 · 5 评论 -
asymptotic (infinite-training-sample)
asymptotic (infinite-training-sample)原创 2022-06-13 10:45:19 · 180 阅读 · 0 评论 -
USDM uncertainty sampling
uncertainty sampling with maximum diversity原创 2022-06-12 16:36:05 · 241 阅读 · 0 评论 -
逻辑回归的时间复杂度
原创 2022-05-27 10:59:33 · 710 阅读 · 2 评论 -
将聚类结果保存在json文件中
import jsonimport xlwtimport xlrdimport numpy as npimport pandas as pdfrom pathlib import Pathfrom sklearn.cluster import KMeansfrom sklearn.preprocessing import StandardScalerfrom time import timefrom collections import OrderedDictnames_list .原创 2022-05-01 20:17:40 · 472 阅读 · 0 评论 -
RED-KELM
import xlwtimport mathimport numpy as npimport pandas as pdfrom pathlib import Pathfrom sklearn.model_selection import StratifiedKFoldfrom collections import OrderedDictfrom sklearn.svm import SVCfrom sklearn.linear_model import LogisticRegression.原创 2022-04-26 11:02:18 · 192 阅读 · 0 评论 -
Python 实现Support Vector Learning for Ordinal Regression(SVLOR)
The first version:import xlwtimport mathimport numpy as npimport pandas as pdfrom pathlib import Pathfrom sklearn.model_selection import StratifiedKFoldfrom collections import OrderedDictfrom sklearn.svm import SVCfrom sklearn.linear_mo...原创 2022-04-24 11:48:34 · 1965 阅读 · 0 评论 -
把ndarray变为列向量
theta = theta.reshape(-1,1)原创 2022-04-24 11:24:18 · 850 阅读 · 0 评论 -
OCs Comparison
import xlwtimport mathimport numpy as npimport pandas as pdfrom pathlib import Pathfrom sklearn.model_selection import StratifiedKFoldfrom collections import OrderedDictfrom sklearn.svm import SVCfrom sklearn.linear_model import LogisticRegression.原创 2022-04-24 09:10:41 · 228 阅读 · 0 评论 -
调包求得每个样本的k个邻居
from sklearn.neighbors import kneighbors_graph, NearestNeighborsneigh = NearestNeighbors(n_neighbors=5) neigh.fit(X=X_train) print(neigh.kneighbors()[1])已经过验证。没有错误。原创 2022-04-22 15:01:21 · 1636 阅读 · 0 评论 -
图像特征提取现成的方法
Python + OpenCV如何实现LBP特征提取 - 开发技术 - 亿速云这篇文章主要介绍Python + OpenCV如何实现LBP特征提取,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!背景看了些许的纹理特征提取的pa...https://www.yisu.com/zixun/163692.htmlpython实现LBP方法提取图像纹理特征实现分类的步骤_python_脚本中心 - 编程客栈这篇文章主要介绍了python实现LBP方法提取图像纹理特征实现分类的步骤,文中通.原创 2022-04-10 21:24:31 · 3541 阅读 · 0 评论 -
分块矩阵的逆
分块矩阵怎么求逆? - 知乎四分块矩阵求逆是有通式的(参见分块矩阵求逆公式)下面是一些分块矩阵求逆公式:另可参考Block matrix o…https://www.zhihu.com/question/47760591Matrix inversion identities - 知乎Recently I reviewed some tricks in obtaining the inversion of the matrices. An efficient technique to obtain the i原创 2022-04-10 09:31:44 · 4734 阅读 · 0 评论 -
常用的求导公式
常用求导公式原创 2022-04-09 21:55:32 · 631 阅读 · 0 评论 -
Gaussian Process 计算开销巨大的阐述引用
原创 2022-04-08 22:44:08 · 226 阅读 · 0 评论 -
使用lable regression 能得到比分类模型更好的结果
Furthermore,we will see in the experimentsthat label regression leads to an even betterclassification performance than proper classification models with approximate infer-ence文献:原创 2022-04-08 13:51:42 · 437 阅读 · 0 评论
分享