码迷,mamicode.com
首页 >  
搜索关键字:confusion matrix    ( 4333个结果
RNA_seq 热图绘制
若已经拿到表达矩阵exprSet 若差异较大,进行log缩小不同样本的差距 1、热图全体 1 ##加载包 2 library(pheatmap) 3 4 ##缩小表达量差距 5 exprSet <- log2(exprSet+1) 6 7 ##取最大标准差前1000个基因名字 8 cg <-name ...
分类:其他好文   时间:2020-02-05 23:30:26    阅读次数:418
PP: Imaging time-series to improve classification and imputation
From: University of Maryland encode time series as different types of images. reformulate features of time series as visual clues. three representatio ...
分类:其他好文   时间:2020-02-05 10:00:43    阅读次数:79
LSTM 句子相似度分析
使用句子中出现单词的Vector加权平均进行文本相似度分析虽然简单,但也有比较明显的缺点:没有考虑词序且词向量区别不明确。如下面两个句子:“北京的首都是中国”与“中国的首都是北京”的相似度为1。“学习容易”和“学习困难”的相似度很容易也非常高。为解决这类问题,需要用其他方法对句子进行表示,LSTM是... ...
分类:其他好文   时间:2020-02-04 14:11:31    阅读次数:99
1.numpy知识点总结
前言: NumPy系统是Python的一种开源的数值计算扩展。 这种工具可用来存储和处理大型矩阵,比Python自身的嵌套列表(nested list structure)结构要高效的多(该结构也可以用来表示矩阵(matrix))。 在处理ndarray数据的时候,numpy的内置函数会让你感觉到什 ...
分类:其他好文   时间:2020-02-04 00:31:24    阅读次数:69
POJ 3685 Matrix 二分套二分
POJ 3685 Matrix 二分套二分 题意 有一个 阶方阵,方正中第 行第 列的元素值为$d_{i,j}=i^{2}+1e5 i+j^{2} 1e5 j+i j$,我们需要找出这个方阵中第 小的元素值。 解题思路 分析这个公式,我们发现:当 固定的时候,这个公式关于 (取值范围:从 到`n`) ...
分类:其他好文   时间:2020-02-03 20:47:38    阅读次数:67
1341. The K Weakest Rows in a Matrix
Given a m * n matrix mat of ones (representing soldiers) and zeros (representing civilians), return the indexes of the k weakest rows in the matrix or ...
分类:其他好文   时间:2020-02-03 09:40:07    阅读次数:71
Leetcode 1030 Matrix Cells in Distance Order (排序)
"Leetcode 1030" 题目描述 ...
分类:编程语言   时间:2020-02-02 12:00:57    阅读次数:80
LeetCode Solution-74
74. Search a 2D Matrix Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: $\bullet$I ...
分类:其他好文   时间:2020-02-01 10:28:11    阅读次数:56
LeetCode Solution-73
73. Set Matrix Zeroes Given a $m \times n$ matrix, if an element is 0, set its entire row and column to 0. Do it in place. Example 1: Example 2: Follo ...
分类:其他好文   时间:2020-02-01 10:24:53    阅读次数:56
【转】20世纪十大算法
Quora问题:What are the top 10 algorithms of the 20th century? Pratyush Kumar回答: Top Ten Algorithms 1946: The Metropolis Algorithm for Monte Carlo. Throu ...
分类:编程语言   时间:2020-01-31 13:55:47    阅读次数:93
4333条   上一页 1 ... 30 31 32 33 34 ... 434 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!