Skip to content

Instantly share code, notes, and snippets.

View fandywang's full-sized avatar

fandywang fandywang

View GitHub Profile
@wangkuiyi
wangkuiyi / BUILD
Created February 23, 2013 13:40
Go invokes C samples
cc_plugin(
name = 'lda',
srcs = ['lda.c'],
deps = ['#pthread']
)
@zythum
zythum / gist:2848881
Created June 1, 2012 04:50
google收录的敏感词
@mblondel
mblondel / lda_gibbs.py
Last active October 9, 2023 11:31
Latent Dirichlet Allocation with Gibbs sampler
"""
(C) Mathieu Blondel - 2010
License: BSD 3 clause
Implementation of the collapsed Gibbs sampler for
Latent Dirichlet Allocation, as described in
Finding scientifc topics (Griffiths and Steyvers)
"""