Created
June 27, 2013 13:10
-
-
Save duhaime/5876255 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from os import makedirs | |
from subprocess import call | |
# It seems this script must be run from inside C:\mallet-2.0.7 | |
# Set the path to your mallet package (make sure to change the mallet | |
# version number, if necessary) | |
# Create directory "inputdirectory" within this mallet directory. Load the | |
# files to be analyzed in "inputdirectory" | |
mallet_path = "C:\\mallet-2.0.7" | |
input_path = mallet_path + "\\inputdirectory" | |
# Specify the number of topics you wish to obtain, and tbe number of iterations | |
# you wish to use to obtain those topics. Store both values as string | |
# (keep the numbers in quotation marks, or use str() method below) | |
# Caveat lector: Running 30000 iterations takes a few minutes... | |
num_topics = "100" | |
num_iterations = "30000" | |
# We could, and probably should, add additional parameters here once we have | |
# a keener sense of best practices in topic modelling with MALLET | |
# e.g. --optimize-interval could be helpful | |
class Mallet(object): | |
def __init__(self, input_path, mallet_path): | |
self.mallet_exec = mallet_path + "\\bin\\mallet" | |
self.input_path = mallet_path + "\\inputdirectory" | |
def import_dir(self): | |
text_path = self.input_path | |
output = "readyforinput.mallet" | |
call(self.mallet_exec + " import-dir --input " + input_path + \ | |
" --keep-sequence --output " + output , shell=True) | |
def train_topics(self): | |
input_file = mallet_path + "\\readyforinput.mallet" | |
output_dir = mallet_path + "\\topic_modelling_output\\" | |
output_doc_topics = output_dir + "\\output_doc_topics.txt" | |
output_topic_keys = output_dir + "\\output_topic_keys.txt" | |
output_state = output_dir + "\\output_state.gz" | |
command = self.mallet_exec + " train-topics --input " + \ | |
input_file + " --num-topics " + num_topics + " --output-doc-topics " \ | |
+ output_doc_topics + " --output-topic-keys " + output_topic_keys + \ | |
" --output-state " + output_state + " --num-iterations " + num_iterations | |
call(command, shell=True) | |
callmallet = Mallet(input_path, mallet_path) | |
callmallet.import_dir() | |
# no delay necessary | |
callmallet.train_topics() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment