福尔摩斯 fplll 包含几种格算法的实现。 该实现依赖于浮点正交化,并且 LLL [ ] 是代码的核心,因此得名。 它包括浮点 LLL 缩减算法的实现 [ , ],提供不同的速度/保证比率。 它包含一个“包装器”,用于选择估计的最佳变体序列,以便尽可能快地提供有保证的输出 [ ]。 在包装器的情况下,变体的连续性对用户来说是无知的。 它包括 BKZ 缩减算法 [ ] 的实现,包括 BKZ-2.0 [ ] 改进(极端枚举修剪、块的预处理、提前终止)。 此外,还支持滑动减少[ ]和自双BKZ[ ]。 它还包括 Kannan-Fincke-Pohst 算法 [ , ] 的浮点实现,该算法可找到最短的非零晶格向量。 最后,它包含枚举算法的一个变体,该算法计算最接近给定向量的网格向量,该向量属于网格的实际跨度。 fplll 是在自由软件基金会发布的(2.1 版,或您选
1
Digital Signal Processing and Noise Reduction 4th Edition
2021-12-29 20:53:08 18.23MB Digital Signal Processing
1
Simultaneous enhancement and noise reduction of a single low-light image
2021-12-14 15:30:28 3.62MB 研究论文
1
umap:均匀流形逼近和投影
1
降维算法 一,介绍 在高维层次下会出现数据样本稀疏,距离计算困难等问题,是所有机器学习方法面临的严峻考验,称为“维数灾难”(维数诅咒)。 ,即通过某种数学变换将数据映射到一个低维空间,在这个低维空间里,数据的密度大大地提高,距离计算更加容易。 二,分类 降维算法可以按照是否有监督,变换是否是线性的细分四类: 无监督的线性降维算法,某种 无监督的非线性降维算法,某些 , , , 有监督的线性降维算法,某种 有监督的非线性降维算法(缺) 注意:此处线性指的是高维空间->低维空间是线性的。MDS,Isomap是将一个非线性降维变换的转化问题转化为一个线性代数问题,其本身并不是线性的降维算法。 三,总结 在大部分实际应用情况下,数据降维是作为后续任务的一个预处理步骤,需要通过比较降维后学习器的效果来对一个具体的任务使用某种降​​维算法。 流形学习中的ISOMAP,LLE等算法非常依赖建图的质量
2021-11-13 17:08:00 1.93MB Python
1
PCA、LDA、MDS、LLE、TSNE等降维算法的python实现
2021-11-13 17:01:14 1.44MB pca lda mds lle
1
OFDM is the key technology of 4G mobile communications. However, in the OFDM modulation, high PAPR sets up a barrier to its practice. Based on the briefly introduced conception of OFDM-PAPR, the program focuses on the simulation and comparision of clipping method and selected mapping method.
2021-11-08 17:18:26 3KB ofdm papr reduction simulation
1
The fourth edition of Advanced Digital Signal Processing and Noise Reduction updates and extends the chapters in the previous edition and includes two new chapters on MIMO systems, Correlation and Eigen analysis and independent component analysis. The wide range of topics covered in this book include Wiener filters, echo cancellation, channel equalisation, spectral estimation, detection and removal of impulsive and transient noise, interpolation of missing data segments, speech enhancement and noise/interference in mobile communication environments. This book provides a coherent and structured presentation of the theory and applications of statistical signal processing and noise reduction methods. Two new chapters on MIMO systems, correlation and Eigen analysis and independent component analysis Comprehensive coverage of advanced digital signal processing and noise reduction methods for communication and information processing systems Examples and applications in signal and information extraction from noisy data Comprehensive but accessible coverage of signal processing theory including probability models, Bayesian inference, hidden Markov models, adaptive filters and Linear prediction models
2021-11-03 21:55:44 18.22MB DSP Noise
1
自动编码器降维 自动编码器可用于特征提取和降维。 它们也可以与受限玻尔兹曼机器结合使用深度学习应用程序,例如“深层信念网络”。 它具有“编码器”和“解码器”两个阶段,“编码器”将逐步压缩输入,在压缩过程中选择最重要的功能。 解码器与编码器相反,它可以尽可能地重新创建输入。 要求 Python 3.6及更高版本 TensorFlow 1.6.0及更高版本 脾气暴躁的 Matplotlib 执行 该实现使用MNIST数据集来重建输入。 由于MNIST图像的形状为28 * 28,因此输入为784。我们的模型将是3层,每层减少特征,并在解码器阶段重建inut, Encoder Decoder [784] -> [256] -> [128] -> [64] -> [128] -> [256] -> [784] 此实现的最
1
对高光谱图像执行基于 SLIC 超像素的降维,然后是基于 SVM 的分类,如论文中所述: X. Zhang、SE Chew、Z. Xu 和 ND Cahill,“SLIC Superpixels for Efficient Graph-Based Dimensionality Reduction of Hyperspectral Imagery”,Proc。 SPIE 防御与安全:多光谱、高光谱和超光谱图像的算法和技术 XXI,2015 年 4 月。
2021-10-28 20:16:31 26KB matlab
1