Welcome![Sign In][Sign Up]
Location:
Search - lda c

Search list

[Other resourcepca+lda

Description: 模式识别PCA+LDA的C++源代码,用于图像的主分量分析-pattern recognition PCA LDA C source code for the image of Principal Component Analysis
Platform: | Size: 3321 | Author: 朱顺兴 | Hits:

[AI-NN-PRpca+lda

Description: 模式识别PCA+LDA的C++源代码,用于图像的主分量分析-pattern recognition PCA LDA C source code for the image of Principal Component Analysis
Platform: | Size: 3072 | Author: 朱顺兴 | Hits:

[Special EffectsPCA+LDA+VC+code

Description:
Platform: | Size: 3072 | Author: 陈曙 | Hits:

[OtherPCA+LDA

Description: PCA(主成分分析法)、LDA(线性判别法) 两种方法是主要的线性降维法,有很好的效果,希望对大家能够有用!-PCA (Principal Component Analysis), LDA (Linear Discriminant method) two methods are the main linear dimensionality reduction method, have very good results, in the hope that everyone can be useful!
Platform: | Size: 3072 | Author: ruchong | Hits:

[Waveletyuanma

Description: 对于PCA ,LDA,BIC,EBGM都有很详细的代码。但是需要在LINUX下配置运行。不过代码较有参考价值。-For PCA, LDA, BIC, EBGM have a very detailed code. But the need to configure to run under LINUX. However, a more useful code.
Platform: | Size: 5902336 | Author: xiaobai | Hits:

[Special Effectslda

Description: 压缩包中是几款LDA人脸特征识别的程序,和文章,一共是4个程序吧,有MATLAB的还有C++的-Compressed packet is LDA several facial feature recognition procedures, and articles, a total of four procedures you have MATLAB are C++ the
Platform: | Size: 6591488 | Author: 郝会娟 | Hits:

[Special EffectsLDA

Description: Latent Dirichlet Allocation算法的C++实现-Algorithm for Latent Dirichlet Allocation of C++
Platform: | Size: 212992 | Author: dongyi | Hits:

[Mathimatics-Numerical algorithmslda-c-dist

Description: latent dirichlet allocation C语言实现算法 LINUX 下运行-latent dirichlet allocation the c implementation
Platform: | Size: 46080 | Author: wang | Hits:

[Graph programhlda-c

Description: This code implements hierarchical LDA with a fixed depth tree and a stick breaking prior on the depth weights. An infinite-depth tree can be approximated by setting the depth to be very high. This code requires that you have installed the GSL package.-This code implements hierarchical LDA with a fixed depth tree and a stick breaking prior on the depth weights. An infinite-depth tree can be approximated by setting the depth to be very high. This code requires that you have installed the GSL package.
Platform: | Size: 52224 | Author: qinlei | Hits:

[Linux-Unixlda-c-dist

Description: latent dirichlet allocation论文作者的算法代码,采用纯C实现,在LINUX下运行成功。-latent dirichlet allocation algorithm of the code authors, using pure C implementation, running under the LINUX success.
Platform: | Size: 28672 | Author: liling | Hits:

[Special EffectsPCAPLDA

Description: 对vc平台下图像的处理的一个算法,主要是对图像转换成灰度以后的图像的处理的算法,lda线性分析-Vc platform for image processing of an algorithm is mainly converted into gray scale image after image processing algorithms, lda linear analysis
Platform: | Size: 3072 | Author: luqian | Hits:

[AI-NN-PRlda-c-dist

Description: 在linux下的LDA算法, 用于数据挖掘,可直接编译运行。-In linux the LDA algorithm for data mining, can be directly run the compiler.
Platform: | Size: 28672 | Author: yong | Hits:

[Otherlda-c-dist

Description: 资料为LDA实现过程,包括具体的源文件以及文档材料-this describes the process of LDA programming
Platform: | Size: 21504 | Author: 尹宁 | Hits:

[AI-NN-PRlda-c-dist

Description: lda贝叶斯文本分类器,c语言实现 linux运行环境-lda Bayesian text classifier, c language runtime environment linux
Platform: | Size: 3191808 | Author: irrisa | Hits:

[AI-NN-PRlda-c-dist

Description: Blei的LDA代码,隐式狄利克雷分配,实现了文档中主题的提取-LDA implementation, machine learning
Platform: | Size: 32768 | Author: LYH | Hits:

[Internet-Networklda-c-dist(blei)

Description: David M. Blei 用linux-c编写的lda算法-David M. Blei Written by linux-c lda algorithm
Platform: | Size: 30720 | Author: 雨露 | Hits:

[AI-NN-PRlda-c-dist

Description: lda的c语言实现代码,lda发明者编写,运行速度比较快-lda c language code, lda inventor of writing, running faster
Platform: | Size: 22528 | Author: zqh | Hits:

[AI-NN-PRlda-c-dist

Description: lda模型的gibbs算法 很好很强大-lda gibbs sampling
Platform: | Size: 34816 | Author: kewin | Hits:

[Linux driverlda-c

Description: LDA是一种文档主题生成模型,也称为一个三层贝叶斯概率模型,包含词、主题和文档三层结构。文档到主题服从Dirichlet分布,主题到词服从多项式分布。 LDA是一种非监督机器学习技术,可以用来识别大规模文档集(document collection)或语料库(corpus)中潜藏的主题信息。它采用了词袋(bag of words)的方法,这种方法将每一篇文档视为一个词频向量,从而将文本信息转化为了易于建模的数字信息。但是词袋方法没有考虑词与词之间的顺序,这简化了问题的复杂性,同时也为模型的改进提供了契机。每一篇文档代表了一些主题所构成的一个概率分布,而每一个主题又代表了很多单词所构成的一个概率分布。 对于语料库中的每篇文档,LDA定义了如下生成过程(generative process): 1. 对每一篇文档,从主题分布中抽取一个主题; 2. 从上述被抽到的主题所对应的单词分布中抽取一个单词; 3. 重复上述过程直至遍历文档中的每一个单词。-LDA is a document theme generation model, also known as a three-tier Bayesian probability model that contains the words, topics and document three-tier structure. Dirichlet distribution of the document to the theme of obedience, the theme to the word obey polynomial distribution. LDA is an unsupervised machine learning techniques can be used to identify large-scale document set (document collection) or corpus (corpus) of the underlying themes of information. It uses the word bag (bag of words) of the method, which each one document as a word frequency vector, thus the text information into digital information for ease of modeling. However, the method does not consider the order of the words Bag between words, which simplifies the complexity of the problem, but also for the improvement of the model provided an opportunity. Each document represents a probability distribution of some of the topics posed, and each topic and they represent many words constituted a probability distribut
Platform: | Size: 30720 | Author: yangling | Hits:

[Industry researchlda-c-dist

Description: 这是学者Beli自己提供的LDA主题模型的源代码,希望对大家学习LDA模型能有所帮助-This is to provide their own scholars Beli LDA topic model of the source code, we hope to learn LDA model can help
Platform: | Size: 28672 | Author: 辛伟 | Hits:
« 12 3 »

CodeBus www.codebus.net