├── .gitignore ├── README ├── bin ├── dtm-darwin64 ├── dtm-linux32 ├── dtm-linux64 ├── dtm-win32.exe └── dtm-win64.exe ├── doc ├── HOWTO ├── dtm.tex └── lda.tex ├── dtm ├── Makefile ├── build.sh ├── data.c ├── data.h ├── example │ ├── test-mult.dat │ └── test-seq.dat ├── gsl-wrappers.c ├── gsl-wrappers.h ├── lda-seq.c ├── lda-seq.h ├── lda.c ├── lda.h ├── main.c ├── main.h ├── param.c ├── param.h ├── params.c ├── params.h ├── sample.sh ├── ss-lm.c ├── ss-lm.h ├── util.c └── util.h ├── gslwrap ├── bin │ └── gslwrap-config └── include │ └── gslwrap │ ├── histogram.h │ ├── matrix_double.h │ ├── matrix_float.h │ ├── matrix_int.h │ ├── matrix_vector_operators.h │ ├── min_fminimizer.h │ ├── multimin_fdfminimizer.h │ ├── permutation.h │ ├── random_generator.h │ ├── random_number_distribution.h │ ├── vector_double.h │ ├── vector_float.h │ └── vector_int.h └── lib └── math ├── gradient_projection.cpp ├── gradient_projection.h ├── gradient_projection_test.cpp ├── gsl_matrix.h ├── gsl_vector.h ├── logspace.cpp ├── logspace.h ├── logspace_base.cpp ├── logspace_base.h ├── optimizer.h ├── specialfunc.cpp ├── specialfunc.h └── vectorops.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/README -------------------------------------------------------------------------------- /bin/dtm-darwin64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/bin/dtm-darwin64 -------------------------------------------------------------------------------- /bin/dtm-linux32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/bin/dtm-linux32 -------------------------------------------------------------------------------- /bin/dtm-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/bin/dtm-linux64 -------------------------------------------------------------------------------- /bin/dtm-win32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/bin/dtm-win32.exe -------------------------------------------------------------------------------- /bin/dtm-win64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/bin/dtm-win64.exe -------------------------------------------------------------------------------- /doc/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/doc/HOWTO -------------------------------------------------------------------------------- /doc/dtm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/doc/dtm.tex -------------------------------------------------------------------------------- /doc/lda.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/doc/lda.tex -------------------------------------------------------------------------------- /dtm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/Makefile -------------------------------------------------------------------------------- /dtm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/build.sh -------------------------------------------------------------------------------- /dtm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/data.c -------------------------------------------------------------------------------- /dtm/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/data.h -------------------------------------------------------------------------------- /dtm/example/test-mult.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/example/test-mult.dat -------------------------------------------------------------------------------- /dtm/example/test-seq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/example/test-seq.dat -------------------------------------------------------------------------------- /dtm/gsl-wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/gsl-wrappers.c -------------------------------------------------------------------------------- /dtm/gsl-wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/gsl-wrappers.h -------------------------------------------------------------------------------- /dtm/lda-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/lda-seq.c -------------------------------------------------------------------------------- /dtm/lda-seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/lda-seq.h -------------------------------------------------------------------------------- /dtm/lda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/lda.c -------------------------------------------------------------------------------- /dtm/lda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/lda.h -------------------------------------------------------------------------------- /dtm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/main.c -------------------------------------------------------------------------------- /dtm/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/main.h -------------------------------------------------------------------------------- /dtm/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/param.c -------------------------------------------------------------------------------- /dtm/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/param.h -------------------------------------------------------------------------------- /dtm/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/params.c -------------------------------------------------------------------------------- /dtm/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/params.h -------------------------------------------------------------------------------- /dtm/sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/sample.sh -------------------------------------------------------------------------------- /dtm/ss-lm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/ss-lm.c -------------------------------------------------------------------------------- /dtm/ss-lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/ss-lm.h -------------------------------------------------------------------------------- /dtm/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/util.c -------------------------------------------------------------------------------- /dtm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/dtm/util.h -------------------------------------------------------------------------------- /gslwrap/bin/gslwrap-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/bin/gslwrap-config -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/histogram.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/matrix_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/matrix_double.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/matrix_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/matrix_float.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/matrix_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/matrix_int.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/matrix_vector_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/matrix_vector_operators.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/min_fminimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/min_fminimizer.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/multimin_fdfminimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/multimin_fdfminimizer.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/permutation.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/random_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/random_generator.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/random_number_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/random_number_distribution.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/vector_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/vector_double.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/vector_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/vector_float.h -------------------------------------------------------------------------------- /gslwrap/include/gslwrap/vector_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/gslwrap/include/gslwrap/vector_int.h -------------------------------------------------------------------------------- /lib/math/gradient_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/gradient_projection.cpp -------------------------------------------------------------------------------- /lib/math/gradient_projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/gradient_projection.h -------------------------------------------------------------------------------- /lib/math/gradient_projection_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/gradient_projection_test.cpp -------------------------------------------------------------------------------- /lib/math/gsl_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/gsl_matrix.h -------------------------------------------------------------------------------- /lib/math/gsl_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/gsl_vector.h -------------------------------------------------------------------------------- /lib/math/logspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/logspace.cpp -------------------------------------------------------------------------------- /lib/math/logspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/logspace.h -------------------------------------------------------------------------------- /lib/math/logspace_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/logspace_base.cpp -------------------------------------------------------------------------------- /lib/math/logspace_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/logspace_base.h -------------------------------------------------------------------------------- /lib/math/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/optimizer.h -------------------------------------------------------------------------------- /lib/math/specialfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/specialfunc.cpp -------------------------------------------------------------------------------- /lib/math/specialfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/specialfunc.h -------------------------------------------------------------------------------- /lib/math/vectorops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magsilva/dtm-old/HEAD/lib/math/vectorops.h --------------------------------------------------------------------------------