Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
gibbslda 0.2.0
Browse files Browse the repository at this point in the history
A formula for GibbsLDA++ (A C/C++ Implementation of Latent Dirichlet Allocation (LDA) using Gibbs Sampling for Parameter Estimation and Inference). http://gibbslda.sourceforge.net/

Closes #7164.

Signed-off-by: Adam Vandenberg <[email protected]>
  • Loading branch information
chrislo authored and adamv committed Feb 20, 2012
1 parent 929532b commit 66cfa7f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Library/Formula/gibbslda.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
require 'formula'

class Gibbslda < Formula
homepage 'http://gibbslda.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/gibbslda/GibbsLDA%2B%2B/0.2/GibbsLDA%2B%2B-0.2.tar.gz'
md5 'd87d35be6dc8b37afc515f6237ba2ccb'

def install
system "make clean"
system "make all"
bin.install "src/lda"
end
end

0 comments on commit 66cfa7f

Please sign in to comment.