maifeng / dtm

Dynamic Topic Model (based upon code released by David Blei at http://www.cs.princeton.edu/~blei/topicmodeling.html)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

***************************
Dynamic Topic Models and the Document Influence Model
***************************

This code is the result of work by 

David M. Blei
blei[at]cs.princeton.edu

and

Sean M Gerrish
sgerrish[at]cs.princeton.edu.

(C) Copyright 2006, David M. Blei
   (blei [at] cs [dot] princeton [dot] edu)

(C) Copyright 2011, Sean M. Gerrish
   (sgerrish [at] cs [dot] princeton [dot] edu)

It includes software corresponding to models described in the
following papers:

[1] D. Blei and J. Lafferty. Dynamic topic models. In
   Proceedings of the 23rd International Conference on Machine Learning,
   2006.
[2] S. Gerrish and D. Blei.  A Language-based Approach to Measuring
   Scholarly Impact.  In Proceedings of the 27th International Conference
   on Machine Learning, 2010.

These files are part of DIM.

DIM is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your
option) any later version.

DIM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA

------------------------------------------------------------------------

A. COMPILING

You will need to have several libraries installed to compile this
package:
	gsl
	gflags

Depending on your package manager, you may be able to install these
 with *one* of the following commands:

  sudo aptitude install libgsl0-dev # Ubuntu 10.04
  sudo zypper install gsl-devel     # OpenSUSE 11.2
  sudo yum install gsl-devel        # CentOS 5.5

You can make the main program by changing your working directory to
dtm/ and typing:

  make

This software has been compiled on Ubuntu 10.04, OpenSUSE 11.2, and
CentOS 5.5.  Depending on your environment, you may need to install
additional libraries.

B. RUNNING

Once everything is compiled, you can run this software by typing the
command "./main <flags>", where flags is a list of command-line
options.  An example command and a description of the input and output
files is given in dtm/sample.sh.  You can see all command-line options
by typing

  ./main --help

(although we suggest you start out with the example in dtm/sample.sh).

You should also replace 'main' by the appropriate executable (depending
on your computer architecture and operating system). We currently
provide binaries for Linux (dtm-linux32 and dtm-linux64), MacOS (dtm-darwin64)
and Windows (dtm-win32.exe and dtm-win64.exe).

C. SUPPORT and QUESTIONS

This software is provided as-is, without any warranty or support,
WHATSOEVER.  If you have any questions about running this software,
you can post your question to the topic-models mailing list at
topic-models@lists.cs.princeton.edu.  You are welcome to submit
modifications or bug-fixes of this software to the authors, although
not all submissions may be posted.

D. USAGE

This progam takes as input a collection of text documents and creates
as output a list of topics over time, a description of each document
as a mixture of these topics, and (possibly) a measure of how
"influential" each document is, based on its language.

We have provided an example dataset, instructions for formatting input
data and processing output files, and example command lines for
running this software in the file dtm/sample.sh.

E. CHANGES

Changes in this version include:

 - Change the default top_obs_var flag to 0.5 (from -1.0)
 - Change to use more iterations and a tighter convergence criterion in each doc's E-step.
 - Change to initialize random topics to be a bit more "flat".

About

Dynamic Topic Model (based upon code released by David Blei at http://www.cs.princeton.edu/~blei/topicmodeling.html)


Languages

Language:C 51.6%Language:C++ 46.1%Language:Shell 2.1%Language:Makefile 0.3%