
算法
DeniuHe
加油!
展开
-
序类别标签转化为扩展二分类标签
【代码】序类别标签转化为扩展二分类标签。原创 2023-07-10 10:30:14 · 370 阅读 · 0 评论 -
Semi-supervised Discriminant Learning
半监督核判别分析原创 2023-04-04 17:02:36 · 140 阅读 · 0 评论 -
Kernel Fisher Discriminant Analysis
核判别分析代码实现原创 2023-04-04 14:46:27 · 529 阅读 · 1 评论 -
Leader Tree construction
-----------获取非密度最大点的delta和leader--------# -------------密度最大点的delta-------------# --------给聚类中心分配簇标签----------原创 2023-03-18 13:53:10 · 397 阅读 · 0 评论 -
序分类与回归和多分类之间的对比
序分类与回归和多分类的不同原创 2022-12-03 17:08:52 · 208 阅读 · 0 评论 -
Python:相对简洁的基于高斯混合模型的聚类算法(GMM)
高斯混合模型(GMM)聚类原创 2022-11-19 00:23:36 · 2011 阅读 · 0 评论 -
GMM 补全
高斯混合模型补全缺失数据原创 2022-11-08 15:25:34 · 228 阅读 · 0 评论 -
GMM 补全
高斯混合模型原创 2022-11-08 15:24:52 · 160 阅读 · 0 评论 -
R2RILS matrix completion
R2RILS原创 2022-11-08 15:23:46 · 134 阅读 · 0 评论 -
GMM based imputation
基于高斯混合模型的缺失值补全方法原创 2022-11-07 19:15:54 · 157 阅读 · 0 评论 -
SimpleImputer的使用方法
SimpleImputer原创 2022-10-22 16:10:28 · 707 阅读 · 0 评论 -
RED-SVM
REDSVM原创 2022-10-21 19:56:06 · 128 阅读 · 0 评论 -
CoreSet
K-center-Greedy原创 2022-10-21 10:44:18 · 486 阅读 · 0 评论 -
距离的公理化定义
距离的公理化定义原创 2022-10-13 10:23:28 · 496 阅读 · 0 评论 -
Z-score标准化预处理文献引用
标准化预处理的文献引用原创 2022-10-09 22:26:28 · 1685 阅读 · 1 评论 -
MICE和ICkNNI填充案例
MICE和ICkNNI填充案例原创 2022-09-13 16:37:41 · 278 阅读 · 0 评论 -
Python寻找矩阵中最大的元素并定位其位置
Python寻找矩阵中最大的元素并定位其位置原创 2022-09-12 14:38:21 · 2891 阅读 · 0 评论 -
基于SVD的矩阵缺失值填充
SVD imputation原创 2022-09-08 20:52:43 · 993 阅读 · 0 评论 -
KELMOR and IKELMOR
增量式kernel极限学习机原创 2022-09-03 19:57:12 · 202 阅读 · 0 评论 -
使用HOG特征提取对FG-NET数据集进行年龄估计
使用HOG特征提取对FG-NET数据集进行年龄估计原创 2022-08-21 19:07:45 · 301 阅读 · 0 评论 -
使用LBP特征提取对FG-NET数据集进行年龄估计
使用LBP特征提取对FG-NET数据集进行年龄估计原创 2022-08-21 16:41:48 · 283 阅读 · 0 评论 -
python:LBP图像特征提取与SVM分类
LBP图像特征提取原创 2022-08-20 10:27:59 · 2679 阅读 · 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 · 202 阅读 · 0 评论 -
Expected model change maximization
什么是Expected model change maximization原创 2022-08-16 11:46:43 · 221 阅读 · 0 评论 -
Selectively inhibiting learning bias for active sampling
Density-weighted Agnostic Sampling原创 2022-06-30 19:53:01 · 142 阅读 · 0 评论 -
如何计算win/tai/loss in paired t-test
win/tie/loss in paired t-test原创 2022-06-28 20:25:29 · 805 阅读 · 5 评论 -
asymptotic (infinite-training-sample)
asymptotic (infinite-training-sample)原创 2022-06-13 10:45:19 · 144 阅读 · 0 评论 -
USDM uncertainty sampling
uncertainty sampling with maximum diversity原创 2022-06-12 16:36:05 · 170 阅读 · 0 评论 -
逻辑回归的时间复杂度
原创 2022-05-27 10:59:33 · 642 阅读 · 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 · 402 阅读 · 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 · 153 阅读 · 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 · 1902 阅读 · 0 评论 -
把ndarray变为列向量
theta = theta.reshape(-1,1)原创 2022-04-24 11:24:18 · 806 阅读 · 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 · 200 阅读 · 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 · 1603 阅读 · 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 · 3508 阅读 · 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 · 4335 阅读 · 0 评论 -
常用的求导公式
常用求导公式原创 2022-04-09 21:55:32 · 460 阅读 · 0 评论 -
Gaussian Process 计算开销巨大的阐述引用
原创 2022-04-08 22:44:08 · 195 阅读 · 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 · 408 阅读 · 0 评论