Prepping data for testing


In [2]:
from __future__ import division
import numpy as np
from sklearn import datasets
import random
import pprint
from scipy import stats as stat
import nltk
from operator import itemgetter
from gensim.models import Word2Vec 
from nltk.tokenize import word_tokenize
from sklearn.cluster import KMeans
import FastGaussianLDA2

In [251]:
wordvecs = Word2Vec.load_word2vec_format(
    "/Users/michael/Documents/Gaussian_LDA-master/data/glove.wiki/glove.6B.50d.txt", binary=False)
# data = datasets.fetch_20newsgroups(remove=('headers', 'footers', 'quotes'), subset="train",
#                                    categories=['comp.windows.x', 'sci.med',
#                                                'talk.politics.mideast', 'soc.religion.christian',
#                                                'sci.space'])


WARNING:gensim.models.word2vec:consider setting layer size to a multiple of 4 for greater performance

In [485]:
# data[0]['target_names']


Out[485]:
['alt.atheism',
 'comp.graphics',
 'comp.os.ms-windows.misc',
 'comp.sys.ibm.pc.hardware',
 'comp.sys.mac.hardware',
 'comp.windows.x',
 'misc.forsale',
 'rec.autos',
 'rec.motorcycles',
 'rec.sport.baseball',
 'rec.sport.hockey',
 'sci.crypt',
 'sci.electronics',
 'sci.med',
 'sci.space',
 'soc.religion.christian',
 'talk.politics.guns',
 'talk.politics.mideast',
 'talk.politics.misc',
 'talk.religion.misc']

In [3]:
vocab = set(wordvecs.vocab.keys())
stopwords = set(nltk.corpus.stopwords.words(fileids='english'))
txt = data['data']
print len(txt)

In [506]:
most = 0
for doc in txt:
    if len(doc) > 2000: most += 1
print most


1138

In [91]:
cleandocs = []
for doc in txt:
    doc = doc.split()
    doc = filter(lambda x: x in vocab, doc)
    doc = filter(lambda x: x not in stopwords, doc)
    doc = filter(lambda x: x.isalpha(), doc)
    doc = filter(lambda x: x != "would" and x != "one" and x !='like' and x !='even', doc)
    doc = ' '.join(doc)
    cleandocs.append(doc)

In [92]:
len(cleandocs)


Out[92]:
2943

In [93]:
cleandocs = [doc for doc in cleandocs if len(doc.split()) < 1500]

In [99]:
bb = itemgetter(*np.random.random_integers(0, 1650, 600).tolist())
a  = bb(cleandocs)

In [100]:
a = list(a)

In [101]:
a.insert(0, test_doc)

In [102]:
test_doc = "hockey basketball baseball football sports touchdown golf playoffs " * 1000
a.append(test_doc)

In [104]:
bb = itemgetter(*np.random.random_integers(0, 1650, 500).tolist())
len(bb(cleandocs))

f = '/Users/michael/Documents/GaussianLDA/clean20news.txt'
# np.savetxt(f, docs)
with open(f, 'w') as fi:
    for doc in a:
        try:
            fi.write("%s\n" % doc)
        except UnicodeEncodeError: continue

Testing to make sure we can read it well


In [527]:
# f = '/Users/michael/Documents/GaussianLDA/clean20news.txt'
# with open(f, 'r') as fi:
#     text = fi.read().splitlines()
#     fi.close()
# print len(text)

In [106]:
a, b, c = [0,0], [0,0], [0,0]

for x, y in zip(txt, data['target']): 
    if y == 0: a[0] += len(x); a[1] += 1
    if y == 1: b[0] += len(x); b[1] += 1
    if y == 2: c[0] += len(x); c[1] += 1
        
print a[0] / a[1], a[1]
print b[0] / b[1], b[1]
print c[0] / c[1], c[1]

In [404]:
# mansour_topic = np.loadtxt("/Users/michael/Documents/GaussianLDA/output/1iter4topic2Topic Mean.txt")
# das_topic = np.loadtxt("/Users/michael/Documents/Gaussian_LDA-master/output/Aliaswiki50D20T3.txt")

Making More Sythetic Data


In [ ]:
%pprint on
topic1 = ' '.join([word for word, score in wordvecs.most_similar(positive=['car'], topn=10)])
topic2 = ' '.join([word for word, score in wordvecs.most_similar(positive=['science'], topn=10)])
topic3 = ' '.join([word for word, score in wordvecs.most_similar(positive=['construction'], topn=10)])
print topic1, topic2, topic3

In [8]:
docs = [topic1, topic2, topic3]

f = '/Users/michael/Documents/GaussianLDA/clean20news.txt'
# np.savetxt(f, docs)
with open(f, 'w') as fi:
    for doc in docs:
        try:
            fi.write("%s\n" % doc)
        except UnicodeEncodeError: continue

Current project:

you have unlabeled cans of paint. You want to be able to assign color names to them.

My model currently just dumps all the cans of paint into a bucket, mixes it up, and labels each paint can that gross dark brown purlply color that comes out when a child mixes all the paints together.


In [252]:
#Testing kmeans cluster centroids

topic1 = [word for word, score in wordvecs.most_similar(positive=['engine'], topn=10)]
topic2 = [word for word, score in wordvecs.most_similar(positive=['chair'], topn=10)]
topic3 = [word for word, score in wordvecs.most_similar(positive=['succulent'], topn=10)]
topic4 = [word for word, score in wordvecs.most_similar(positive=['panda'], topn=10)]
topic5 = [word for word, score in wordvecs.most_similar(positive=['cancer'], topn=10)]

In [230]:
topic1


Out[230]:
[u'engines',
 u'cylinder',
 u'powered',
 u'turbine',
 u'wheel',
 u'chassis',
 u'diesel',
 u'v-8',
 u'v8',
 u'prototype']

In [207]:
arrs = []
for doc in [topic1, topic2, topic3, topic4, topic5]:
    for word in doc:
        arrs.append(wordvecs[word])
arrs = np.array(arrs)

In [240]:
def is_pos_def(x):
    return np.all(np.linalg.eigvals(x) > 0)

In [234]:
mean = np.mean(arrs, axis=0)

In [243]:
is_pos_def(np.shape(arrs)[0] * (arrs-mean).dot((arrs-mean).T) + 0.001)


Out[243]:
True

In [208]:
k = 5
km = KMeans(n_clusters=k)
km.fit(arrs)


Out[208]:
KMeans(copy_x=True, init='k-means++', max_iter=300, n_clusters=5, n_init=10,
    n_jobs=1, precompute_distances='auto', random_state=None, tol=0.0001,
    verbose=0)

In [209]:
for i in range(k):
    print wordvecs.most_similar(positive=[km.cluster_centers_[i]]), '\n'


[(u'panda', 0.8401603102684021), (u'elephant', 0.8059775233268738), (u'dolphin', 0.7743972539901733), (u'cat', 0.7598140835762024), (u'monkey', 0.7537307143211365), (u'gorilla', 0.7338233590126038), (u'pandas', 0.7320524454116821), (u'zoo', 0.7295270562171936), (u'bird', 0.7275235056877136), (u'shark', 0.7063887715339661)] 

[(u'sitting', 0.8230099081993103), (u'standing', 0.8168784379959106), (u'chair', 0.8162770867347717), (u'door', 0.796349048614502), (u'floor', 0.7778820991516113), (u'heads', 0.7766067385673523), (u'head', 0.7759051322937012), (u'chairs', 0.7707017660140991), (u'room', 0.7520955801010132), (u'front', 0.7467007637023926)] 

[(u'cancer', 0.9251570701599121), (u'disease', 0.8655041456222534), (u'diabetes', 0.8587675094604492), (u'cancers', 0.8433023691177368), (u'alzheimer', 0.842052698135376), (u'diseases', 0.8283209800720215), (u'prostate', 0.822224497795105), (u'leukemia', 0.8129850625991821), (u'breast', 0.8082265853881836), (u'patients', 0.801685094833374)] 

[(u'succulent', 0.8647549152374268), (u'fleshy', 0.8018141984939575), (u'meaty', 0.7550331354141235), (u'fragrant', 0.7451086640357971), (u'edible', 0.7388429641723633), (u'leathery', 0.7365133166313171), (u'flavorful', 0.7273820638656616), (u'juicy', 0.7165677547454834), (u'showy', 0.7104206085205078), (u'berries', 0.6950467824935913)] 

[(u'engine', 0.9044144749641418), (u'engines', 0.8978459239006042), (u'powered', 0.8280441164970398), (u'cylinder', 0.7971286773681641), (u'chassis', 0.7842718958854675), (u'diesel', 0.772182822227478), (u'turbine', 0.7569540739059448), (u'v-8', 0.7566479444503784), (u'v8', 0.7523514032363892), (u'wheel', 0.7401803731918335)] 

Making mixed topic documents

75/25/1 mix between the three sythetic topic vocabs


In [165]:
import pprint

In [168]:
%pprint


Pretty printing has been turned ON

In [171]:
for _ in range(10):
    print stat.dirichlet.rvs([0.3]*5)[0], "\n"


[  3.92769749e-08   3.67807412e-02   6.83290035e-01   2.78659874e-01
   1.26931049e-03] 

[ 0.00132502  0.15150718  0.24875551  0.54574768  0.05266461] 

[  4.16776813e-05   6.14238665e-05   2.38897434e-03   5.47016313e-03
   9.92037761e-01] 

[  2.16898798e-01   4.37502191e-05   1.51767885e-01   1.64987440e-01
   4.66302127e-01] 

[  6.16375958e-02   2.03665941e-01   6.47354915e-01   8.73147323e-02
   2.68158983e-05] 

[ 0.87857735  0.02760496  0.0347181   0.0009593   0.05814029] 

[ 0.10435697  0.32701836  0.03148838  0.53020324  0.00693305] 

[  6.37855474e-01   5.65802950e-04   6.59389838e-02   3.89726755e-07
   2.95639349e-01] 

[ 0.22116048  0.18114035  0.00943838  0.40742481  0.18083599] 

[ 0.0114711   0.00698079  0.03899051  0.84302341  0.09953419] 


In [97]:
import scipy.stats as stat

In [260]:
iterations = 100
corpus = []
for t in range(iterations):
    doc_len = 100
#     dirdist = np.array([0.90, 0.1])
    dirdist = stat.dirichlet.rvs([.2]*5, random_state=np.random.randint(low=0, high=10000)) # topic distribution in a doc
    num_words = dirdist * doc_len # how many words to take from each topic, approx
#     print dirdist
    # print num_words[0]
    BoW = [topic1, topic3,topic4, topic2, topic5]
    doc = []
    for bag, count in zip(BoW, num_words[0]):


        num = int(np.round(count))
        for x in range(num):  
            doc.append(random.choice(bag)) # randomly choosing words from topic **UNIFORM
    random.shuffle(doc)
    doc = ' '.join(doc)

    corpus.append(doc)

In [270]:
# corpus

In [296]:
# with open('/Users/michael/Documents/GaussianLDA/cleandocs.txt', 'w') as f:
#     for doc in corpus:
#         f.write(doc + "\n")

with open('/Users/michael/Documents/GaussianLDA/cleandocs.txt', 'r') as f:
    corpus = f.read().splitlines()

In [297]:
corpus[1]


Out[297]:
'known case due'

TODO:

Start looking at the pdf's of each word and make sure they're being assigned to the right topics... even though the actual topics might be wrong, lets make sure that it is fairly consistant.

set a break point for certain intervals, and use the debugger console to check the values.


In [298]:
import FastGaussianLDA2
reload(FastGaussianLDA2)
g = FastGaussianLDA2.Gauss_LDA(50, corpus,
                              word_vector_model=wordvecs, alpha=3)
g.fit(30)


Done processing corpus with 1800 documents
There are 6142 words that could be converted to word vectors in your corpus 
There are 0 words that could NOT be converted to word vectors
getting cluster centroids
[ 4362.   926.  1314.  4037.   478.   363.   381.  2968.   663.   235.
  1959.  1389.  2889.  6354.  1663.   567.   409.   148.   471.  1681.
   586.   560.  4313.  1337.  1279.  1532.  2678.  1345.  3148.   847.
  1074.   805.  3773.  1153.   597.   470.  1483.   182.  1357.   290.
   916.  1586.  1204.  1177.  2903.   790.   656.   667.   258.  1494.]
Initialization complete
Starting fit
print topic means
TOPIC 0: (u'provide', u'ensure', u'aim', u'providing', u'needs', u'focus', u'maintain', u'necessary', u'efforts')
TOPIC 1: (u'bladder', u'ovarian', u'bowel', u'tumours', u'uterine', u'scarring', u'tumors', u'fibrosis', u'lesion')
TOPIC 2: (u'false', u'disclosing', u'statements', u'documents', u'misleading', u'evidence', u'disclose', u'denying', u'disclosure')
TOPIC 3: (u'so', u'sure', u'even', u'how', u'come', u'what', u'something', u'always', u'we')
TOPIC 4: (u'rr', u'js', u'djk', u'ts', u'sz', u'vg', u'gph04', u'raob', u'rafm')
TOPIC 5: (u'individualizing', u'rejiggering', u'easiness', u'civilities', u'foregoing', u'preplanning', u'pre-ordained', u'personalizing', u'overachievement')
TOPIC 6: (u'corticosteroids', u'corticosteroid', u'anticoagulant', u'injectable', u'immunosuppressive', u'trazodone', u'methotrexate', u'prednisone', u'ribavirin')
TOPIC 7: (u'part', u'which', u'of', u'well', u'as', u'most', u'primarily', u'where', u'in')
TOPIC 8: (u'surface', u'length', u'narrow', u'outer', u'vertical', u'above', u'diameter', u'height', u'circular')
TOPIC 9: (u'mutolo', u'haraldur', u'belkis', u'boyan', u'hassanzadeh', u'rungfapaisarn', u'sarvan', u'dequan', u'kamada')
TOPIC 10: (u'diabetes', u'asthma', u'infection', u'respiratory', u'symptoms', u'disease', u'illnesses', u'infections', u'diseases')
TOPIC 11: (u'payments', u'payment', u'fees', u'paying', u'pay', u'expenses', u'benefits', u'cash', u'savings')
TOPIC 12: (u'suggested', u'calls', u'asked', u'saying', u'decision', u'meeting', u'statement', u'request', u'hoped')
TOPIC 13: (u'came', u'on', u'before', u'days', u'time', u'after', u'since', u'weeks', u'last')
TOPIC 14: (u'uses', u'using', u'systems', u'applications', u'devices', u'use', u'hardware', u'system', u'components')
TOPIC 15: (u'genetic', u'methods', u'characteristics', u'physiological', u'analysis', u'method', u'processes', u'cognitive', u'functional')
TOPIC 16: (u'velocity', u'amplitude', u'attenuation', u'measurement', u'probability', u'parameters', u'differential', u'decreases', u'velocities')
TOPIC 17: (u'groes', u'sacrificio', u'moribus', u'ecclesi\xe6', u'perspectiva', u'bouteille', u'ma\xeetresse', u'adelita', u'marcha')
TOPIC 18: (u'accurately', u'correct', u'precise', u'imply', u'conclusions', u'incorrect', u'exact', u'facts', u'explanations')
TOPIC 19: (u'rules', u'laws', u'requirement', u'provisions', u'limits', u'applies', u'regulations', u'provision', u'requirements')
TOPIC 20: (u'milk', u'sugar', u'fruit', u'meat', u'ingredients', u'vegetables', u'vegetable', u'raw', u'juice')
TOPIC 21: (u'posterior', u'anterior', u'lobe', u'pelvic', u'femoral', u'ventral', u'lateral', u'medial', u'aorta')
TOPIC 22: (u'medical', u'nursing', u'physicians', u'clinical', u'medicine', u'teaching', u'counseling', u'psychiatric', u'study')
TOPIC 23: (u'accept', u'willingness', u'intention', u'seek', u'demands', u'insisting', u'intend', u'willing', u'consider')
TOPIC 24: (u'procedures', u'conduct', u'evaluation', u'relevant', u'necessary', u'appropriate', u'required', u'specific', u'provide')
TOPIC 25: (u'companies', u'company', u'business', u'firms', u'businesses', u'buying', u'sell', u'purchase', u'buy')
TOPIC 26: (u'read', u'page', u'text', u'copy', u'reference', u'explaining', u'article', u'letters', u'publish')
TOPIC 27: (u'charges', u'criminal', u'alleged', u'charged', u'prosecution', u'guilty', u'arrest', u'trial', u'case')
TOPIC 28: (u'number', u'addition', u'different', u'various', u'these', u'several', u'additionally', u'other', u'included')
TOPIC 29: (u'former', u'assistant', u'named', u'retired', u'worked', u'served', u'member', u'became', u'smith')
TOPIC 30: (u'shows', u'featured', u'feature', u'show', u'original', u'musical', u'video', u'recording', u'music')
TOPIC 31: (u'guan', u'rong', u'zhen', u'jing', u'xiao', u'sai', u'yun', u'tai', u'xin')
TOPIC 32: (u'particular', u'rather', u'fact', u'certain', u'indeed', u'example', u'this', u'means', u'any')
TOPIC 33: (u'parents', u'mother', u'child', u'children', u'woman', u'husband', u'mothers', u'dying', u'couple')
TOPIC 34: (u'calcium', u'folate', u'potassium', u'glucose', u'iodine', u'insulin', u'vitamin', u'sodium', u'serum')
TOPIC 35: (u'proteins', u'inhibits', u'bacterial', u'inhibit', u'inhibition', u'secreted', u'cells', u'induces', u'receptors')
TOPIC 36: (u'second', u'round', u'third', u'final', u'fourth', u'straight', u'win', u'match', u'winning')
TOPIC 37: (u'dur', u'ah', u'zahm', u'lohm', u'bool', u'ber', u'duh', u'moh', u'wahl')
TOPIC 38: (u'ahmad', u'nasir', u'syed', u'abid', u'malik', u'mohammad', u'abdul', u'haji', u'tahir')
TOPIC 39: (u'mangxamba', u'gga', u'hpe', u'krp', u'afp04', u'ferina', u'dgf', u'ecog', u'-----------------------------------------------')
TOPIC 40: (u'hand', u'filled', u'hanging', u'plastic', u'inside', u'onto', u'door', u'underneath', u'covered')
TOPIC 41: (u'taken', u'carry', u'carried', u'fire', u'carrying', u'entering', u'authorities', u'leaving', u'immediately')
TOPIC 42: (u'authorization', u'waiver', u'consent', u'permit', u'requirement', u'revoke', u'granting', u'submit', u'authorized')
TOPIC 43: (u'higher', u'increase', u'rise', u'increased', u'rate', u'decline', u'increases', u'growth', u'rising')
TOPIC 44: (u'serious', u'cause', u'persistent', u'caused', u'severe', u'result', u'resulting', u'impact', u'spite')
TOPIC 45: (u'templates', u'tags', u'click', u'insert', u'clicking', u'template', u'formatting', u'user', u'delete')
TOPIC 46: (u'sufficiently', u'inherently', u'incapable', u'acutely', u'problematic', u'overly', u'indifferent', u'morally', u'physically')
TOPIC 47: (u'stress-induced', u'hypochondriasis', u'gastroparesis', u'immune-mediated', u'hypocalcemia', u'iatrogenic', u'electromigration', u'dysthymia', u'hypoperfusion')
TOPIC 48: (u'sniffling', u'coughing', u'tugging', u'panting', u'sucking', u'sneezing', u'bawling', u'rubbing', u'numb')
TOPIC 49: (u'stomach', u'chest', u'throat', u'forearm', u'thigh', u'shoulder', u'bruise', u'abdominal', u'bleeding')


Document-Topic Counts:, [ 4362.   926.  1314.  4037.   478.   363.   381.  2968.   663.   235.
  1959.  1389.  2889.  6354.  1663.   567.   409.   148.   471.  1681.
   586.   560.  4313.  1337.  1279.  1532.  2678.  1345.  3148.   847.
  1074.   805.  3773.  1153.   597.   470.  1483.   182.  1357.   290.
   916.  1586.  1204.  1177.  2903.   790.   656.   667.   258.  1494.]
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'for', u'provide', u'without', u'giving', u'providing', u'make', u'to', u'need', u'making')
TOPIC 1: (u'ovarian', u'cancers', u'prostate', u'renal', u'metastatic', u'tumors', u'melanoma', u'tumours', u'colorectal')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'without', u'same', u'because', u'any', u'be', u'given', u'rather', u'that', u'this')
TOPIC 4: (u'yrs', u'-9', u'apr', u'.....', u'-5', u'-3', u'nov', u'-13', u'dec')
TOPIC 5: (u'calculi', u're-registration', u'laicization', u'foregoing', u'uniparental', u'holonomic', u'emoluments', u'synapomorphy', u'time-limited')
TOPIC 6: (u'medications', u'medication', u'painkillers', u'antibiotics', u'prescribed', u'aspirin', u'corticosteroids', u'pills', u'prescribe')
TOPIC 7: (u'which', u'within', u'found', u'of', u'is', u'the', u'.', u'where', u'although')
TOPIC 8: (u'length', u'height', u'width', u'inches', u'above', u'below', u'diameter', u'section', u'cm')
TOPIC 9: (u'bux', u'salum', u'nevzat', u'v\u1ea1n', u'motala', u'vally', u'mandur', u'kawerau', u'sikka')
TOPIC 10: (u'treatment', u'patients', u'treating', u'disease', u'infection', u'diabetes', u'treat', u'medication', u'illness')
TOPIC 11: (u'pay', u'payments', u'benefits', u'paying', u'payment', u'compensation', u'receive', u'paid', u'benefit')
TOPIC 12: (u'call', u'calls', u'asking', u'calling', u'request', u'notice', u'asked', u'ask', u'answer')
TOPIC 13: (u'same', u'without', u'only', u'any', u'given', u'because', u'for', u'be', u'taken')
TOPIC 14: (u'use', u'using', u'used', u'uses', u'available', u'instance', u'allows', u'example', u'types')
TOPIC 15: (u'clinical', u'therapy', u'diagnostic', u'therapeutic', u'behavioral', u'treatments', u'diagnosis', u'therapies', u'study')
TOPIC 16: (u'normal', u'depending', u'duration', u'maximum', u'minimal', u'continuous', u'i.e.', u'function', u'reduced')
TOPIC 17: (u'same', u'any', u'without', u'given', u'this', u'that', u'because', u'be', u'well')
TOPIC 18: (u'correct', u'incorrect', u'specifying', u'specify', u'incomplete', u'precise', u'exact', u'facts', u'accurately')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'stem', u'stems', u'forms', u'common', u'form', u'spreading', u'means')
TOPIC 21: (u'posterior', u'anterior', u'cleft', u'protrusion', u'creases', u'medial', u'distal', u'pelvis', u'proximal')
TOPIC 22: (u'patient', u'medical', u'clinical', u'patients', u'study', u'doctors', u'treatment', u'lab', u'medicine')
TOPIC 23: (u'shall', u'must', u'cannot', u'obligation', u'obliged', u'wish', u'declare', u'therefore', u'ought')
TOPIC 24: (u'any', u'without', u'given', u'same', u'instance', u'for', u'not', u'be', u'because')
TOPIC 25: (u'insurance', u'employee', u'company', u'companies', u'credit', u'business', u'employer', u'services', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'copy', u'web', u'addresses')
TOPIC 27: (u'case', u'criminal', u'charges', u'claims', u'prosecution', u'alleged', u'legal', u'trial', u'charge')
TOPIC 28: (u'sample', u'samples', u'available', u'number', u'each', u'typically', u'instance', u'contained', u'usually')
TOPIC 29: (u'principal', u'member', u'senior', u'associate', u'former', u'named', u'representative', u'also', u'assistant')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'show', u'included', u'complete', u'released')
TOPIC 31: (u'parson', u'kaur', u'erling', u'lorenz', u'reventlow', u'baldev', u'manton', u'chetan', u'sahiba')
TOPIC 32: (u'particular', u'this', u'example', u'means', u'form', u'is', u'true', u'meaning', u'fact')
TOPIC 33: (u'child', u'children', u'death', u'life', u'mother', u'parents', u'birth', u'age', u'woman')
TOPIC 34: (u'mg', u'milligrams', u'kg', u'milligram', u'cholesterol', u'sodium', u'vitamin', u'kilogram', u'grams')
TOPIC 35: (u'without', u'because', u'any', u'either', u'taken', u'be', u'same', u'only', u'not')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'match', u'for', u'challenge')
TOPIC 37: (u'pur', u'py', u'lohm', u'dur', u'ruh', u'kwit', u'ehv', u'bool', u'zahm')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'cax', u'mangxamba', u'fuzing', u'btx', u'hpe', u'crsp', u'gm2', u'off-board', u'sensory-motor')
TOPIC 40: (u'covered', u'filled', u'black', u'white', u'dark', u'red', u'thick', u'cover', u'colored')
TOPIC 41: (u'contact', u'information', u'telephone', u'without', u'service', u'travel', u'allow', u'check', u'call')
TOPIC 42: (u'authorization', u'consent', u'permit', u'license', u'permission', u'authorized', u'requirement', u'request', u'requested')
TOPIC 43: (u'same', u'without', u'given', u'because', u'any', u'only', u'for', u'this', u'that')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'files', u'file', u'copy', u'user', u'contents', u'insert', u'database', u'disk', u'cards')
TOPIC 46: (u'incapable', u'physically', u'mentally', u'sufficiently', u'morally', u'terribly', u'competent', u'acutely', u'totally')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'flatness', u'fuzziness', u'dullness', u'offensiveness', u'topicality', u'graininess')
TOPIC 48: (u'palate', u'quivering', u'buttery', u'cleft', u'curls', u'palates', u'rubbing', u'rubs', u'oozing')
TOPIC 49: (u'blood', u'heart', u'stomach', u'causes', u'lungs', u'bleeding', u'cause', u'skin', u'pain')


Document-Topic Counts:, [  1402.     85.    786.   5445.    104.     96.     94.   1309.    221.
     78.    584.    689.    695.  13187.    849.    210.     98.  10164.
    240.    826.    193.    177.   2905.    603.   9282.    706.   1380.
    677.   1610.    248.    485.    425.   1146.    534.    240.    218.
    684.     40.    979.     75.    358.    794.    527.   9514.   1442.
     88.    215.    197.     63.    750.]
0 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'this', u'however', u'although', u'be', u'as', u'not', u'same', u'though', u'because')
TOPIC 1: (u'without', u'same', u'any', u'because', u'taken', u'be', u'that', u'given', u'for')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'be', u'same', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'preplanning', u'easiness', u'disjunctive', u'subprogram', u'holonomic')
TOPIC 6: (u'without', u'taken', u'given', u'any', u'same', u'for', u'because', u'not', u'only')
TOPIC 7: (u'within', u'found', u'which', u'of', u'it', u'is', u'.', u'the', u'where')
TOPIC 8: (u'section', u'above', u'length', u'height', u'sections', u'below', u'portion', u'span', u'upper')
TOPIC 9: (u'any', u'same', u'without', u'given', u'for', u'that', u'instance', u'be', u'well')
TOPIC 10: (u'cause', u'causes', u'caused', u'risk', u'causing', u'result', u'resulting', u'disease', u'prevent')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'requested', u'decision', u'demanded', u'statement', u'refused', u'asked', u'asking', u'calls')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'use', u'using', u'used', u'uses', u'or', u'can', u'such', u'intended', u'instead')
TOPIC 15: (u'clinical', u'therapy', u'diagnostic', u'behavioral', u'study', u'therapeutic', u'diagnosis', u'evaluation', u'analysis')
TOPIC 16: (u'same', u'without', u'any', u'given', u'instance', u'because', u'only', u'for', u'this')
TOPIC 17: (u'for', u'without', u'same', u'any', u'to', u'given', u'that', u'only', u'because')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'stem', u'stems', u'common', u'forms', u'form', u'means', u'or')
TOPIC 21: (u'cleft', u'conceals', u'creases', u'piercings', u'protrusion', u'posterior', u'anterior', u'protruded', u'superficial')
TOPIC 22: (u'laboratory', u'lab', u'clinical', u'researchers', u'medical', u'research', u'study', u'testing', u'medicine')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'henceforth', u'wish', u'therefore', u'ought')
TOPIC 24: (u'render', u'licensed', u'legally', u'deemed', u'allows', u'applicable', u'rendering', u'apply', u'rendered')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'case', u'criminal', u'legal', u'claims', u'prosecution', u'charges', u'court', u'whether', u'investigation')
TOPIC 28: (u'sample', u'samples', u'sampling', u'available', u'depending', u'typically', u'contained', u'each', u'instance')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'lorenz', u'erling', u'howth', u'sisk', u'linley', u'hesketh')
TOPIC 32: (u'same', u'this', u'only', u'because', u'given', u'that', u'any', u'be', u'.')
TOPIC 33: (u'child', u'children', u'life', u'death', u'parents', u'family', u'mother', u'birth', u'person')
TOPIC 34: (u'same', u'any', u'instance', u'without', u'given', u'this', u'be', u'because', u'for')
TOPIC 35: (u'same', u'without', u'given', u'any', u'because', u'that', u'only', u'this', u'for')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'organizations', u'organisations', u'governmental', u'groups', u'agencies', u'organization', u'responsible', u'non', u'activities')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'be', u'result')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'black', u'small', u'dark', u'white', u'thick')
TOPIC 41: (u'contact', u'telephone', u'service', u'information', u'travel', u'without', u'allow', u'call', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'license', u'permission', u'request', u'requested', u'requirement')
TOPIC 43: (u'same', u'this', u'because', u'that', u'well', u'any', u'only', u'without', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'any', u'without', u'given', u'for', u'same', u'instance', u'because', u'taken', u'that')
TOPIC 46: (u'incapable', u'physically', u'sufficiently', u'mentally', u'competent', u'deemed', u'morally', u'totally', u'poorly')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'fuzziness', u'flatness', u'dullness', u'graininess', u'topicality', u'offensiveness')
TOPIC 48: (u'mouth', u'tongue', u'palate', u'lip', u'lips', u'ear', u'fingers', u'belly', u'throat')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [  1.80000000e+01   5.05700000e+03   8.20000000e+02   0.00000000e+00
   4.94600000e+03   8.90000000e+01   5.26600000e+03   1.08400000e+03
   1.48000000e+02   5.07200000e+03   1.10000000e+01   5.04000000e+02
   2.26000000e+02   0.00000000e+00   6.00000000e+01   3.73000000e+02
   5.01300000e+03   5.49200000e+03   3.63000000e+02   8.23000000e+02
   2.30000000e+02   1.21000000e+02   1.91000000e+02   5.72000000e+02
   2.00000000e+00   7.63000000e+02   1.32800000e+03   1.19000000e+02
   1.38500000e+03   4.88000000e+02   4.96000000e+02   4.02000000e+02
   4.94000000e+03   4.05000000e+02   5.36300000e+03   5.14300000e+03
   5.79000000e+02   1.03000000e+02   9.79000000e+02   4.97100000e+03
   3.89000000e+02   2.50000000e+02   5.56000000e+02   5.45000000e+02
   1.44200000e+03   5.33900000e+03   3.14000000e+02   2.03000000e+02
   4.30000000e+01   6.91000000e+02]
1 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'only', u'be', u'that', u'not')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'given', u'because', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'for', u'taken')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'instance', u'that', u'for', u'certain', u'this')
TOPIC 10: (u'cause', u'causes', u'caused', u'causing', u'severe', u'result', u'damage', u'failure', u'serious')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'that', u'given', u'be', u'only', u'taken')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'same', u'any', u'instance', u'without', u'given', u'this', u'only', u'be', u'for')
TOPIC 17: (u'same', u'for', u'without', u'given', u'any', u'only', u'that', u'because', u'this')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'any', u'that', u'not', u'as', u'possible')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'normal', u'or', u'can', u'instance', u'same', u'usually', u'either', u'directly', u'actually')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'same', u'without', u'any', u'instance', u'because', u'given', u'be', u'this', u'that')
TOPIC 35: (u'same', u'without', u'any', u'because', u'given', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'organizations', u'organisations', u'groups', u'governmental', u'organization', u'ngos', u'agencies', u'associations', u'institutions')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'be', u'that', u'for')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'any', u'given', u'same', u'because', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'because', u'any', u'be', u'same', u'given', u'only', u'not', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'should', u'would', u'must', u'not', u'could', u'take', u'if', u'to', u'cannot')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4543.   823.     0.  4289.    94.  4559.  1137.   204.  4489.
    45.   509.   441.     0.  4825.   427.  4430.  4922.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   691.  1448.   492.
   496.   496.    33.   644.  4517.  4470.   579.   105.   979.  4439.
   417.   366.   590.     0.  1442.  4635.  4911.   211.   130.   691.]
2 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'taken')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'certain', u'for', u'this')
TOPIC 10: (u'writing', u'written', u'write', u'book', u'wrote', u'poetry', u'work', u'essays', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'any', u'given', u'only', u'be', u'that', u'taken')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'same', u'any', u'this', u'given', u'example', u'without', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'that', u'because', u'only', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'same', u'because', u'any', u'given', u'be', u'that', u'instance', u'this')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'only', u'given', u'because', u'any', u'be', u'this', u'for')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'given', u'same', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'ask', u'asking', u'tell', u'asked', u'want', u'wanted', u'let', u'call', u'why')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [  0.00000000e+00   4.56200000e+03   8.23000000e+02   0.00000000e+00
   4.39800000e+03   9.40000000e+01   4.56400000e+03   1.13700000e+03
   2.04000000e+02   4.53200000e+03   2.00000000e+00   5.09000000e+02
   4.41000000e+02   0.00000000e+00   4.46700000e+03   4.29000000e+02
   4.50600000e+03   4.82400000e+03   3.63000000e+02   8.23000000e+02
   2.51000000e+02   1.14000000e+02   9.21000000e+02   6.34000000e+02
   0.00000000e+00   7.64000000e+02   1.32800000e+03   8.88000000e+02
   1.44900000e+03   4.92000000e+02   4.96000000e+02   4.96000000e+02
   0.00000000e+00   6.44000000e+02   4.50300000e+03   4.45400000e+03
   5.79000000e+02   0.00000000e+00   9.79000000e+02   4.45400000e+03
   4.17000000e+02   5.79000000e+02   5.90000000e+02   0.00000000e+00
   1.44200000e+03   4.68300000e+03   4.97500000e+03   2.11000000e+02
   5.00000000e+00   6.91000000e+02]
3 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'because', u'any', u'be', u'given', u'not', u'only', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'instance', u'that', u'certain', u'this', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'be', u'only', u'that', u'taken')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'given', u'without', u'be', u'either')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'that', u'because', u'only', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'be', u'that', u'taken', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'only', u'this', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'be', u'for', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'given', u'same', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4616.   823.     0.  4383.    94.  4573.  1137.   204.  4535.
    11.   509.   441.     0.  4414.   429.  4635.  4863.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4414.  4455.   579.     0.   979.  4455.
   417.   579.   590.     0.  1442.  4633.  4942.   211.     0.   691.]
4 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'instance', u'that', u'for', u'be', u'this')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'any', u'only', u'be', u'that', u'taken')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'given', u'means', u'without', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'that', u'because', u'only', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'be', u'only', u'taken')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'be', u'that', u'for')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'given', u'same', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4544.   823.     0.  4462.    94.  4525.  1137.   204.  4556.
    11.   509.   441.     0.  4459.   429.  4592.  4874.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4461.  4427.   579.     0.   979.  4502.
   417.   579.   590.     0.  1442.  4578.  4938.   211.     0.   691.]
5 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'for', u'be', u'this')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'be', u'taken', u'only', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'given', u'be', u'means', u'without')
TOPIC 17: (u'same', u'without', u'for', u'any', u'given', u'only', u'that', u'because', u'this')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'be', u'for', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'given', u'same', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'given', u'any', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4624.   823.     0.  4389.    94.  4515.  1137.   204.  4580.
    11.   509.   441.     0.  4400.   429.  4649.  4851.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4440.  4499.   579.     0.   979.  4427.
   417.   579.   590.     0.  1442.  4666.  4878.   211.     0.   691.]
6 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'because', u'any', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'be', u'same', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'taken')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'for', u'this', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'be', u'that', u'taken', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'given', u'means', u'either', u'be')
TOPIC 17: (u'same', u'without', u'for', u'any', u'given', u'only', u'because', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'for', u'be', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'given', u'same', u'any', u'for', u'because', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'given', u'any', u'only', u'for', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4657.   823.     0.  4453.    94.  4526.  1137.   204.  4559.
    11.   509.   441.     0.  4431.   429.  4648.  4847.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4426.  4454.   579.     0.   979.  4454.
   417.   579.   590.     0.  1442.  4606.  4857.   211.     0.   691.]
7 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'because', u'same', u'be', u'given', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'for', u'this', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'be', u'taken', u'only', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'given', u'without', u'means', u'either')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'that', u'only', u'because', u'this')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'be', u'taken', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'be', u'for', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'given', u'same', u'any', u'because', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'because', u'given', u'any', u'only', u'for', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4652.   823.     0.  4515.    94.  4502.  1137.   204.  4570.
    11.   509.   441.     0.  4483.   429.  4614.  4799.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4409.  4468.   579.     0.   979.  4468.
   417.   579.   590.     0.  1442.  4604.  4834.   211.     0.   691.]
8 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'only', u'be', u'for', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'certain', u'this', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'taken', u'be', u'that', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'given', u'means', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'only', u'that', u'because', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'this', u'that', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'without', u'same', u'given', u'any', u'only', u'because', u'be', u'for', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'given', u'any', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4632.   823.     0.  4471.    94.  4475.  1137.   204.  4546.
    11.   509.   441.     0.  4450.   429.  4681.  4787.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4395.  4500.   579.     0.   979.  4484.
   417.   579.   590.     0.  1442.  4590.  4907.   211.     0.   691.]
9 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'because', u'same', u'given', u'be', u'that', u'not', u'only')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'taken')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'instance', u'that', u'certain', u'this', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'taken', u'be', u'only', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'only', u'because', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'without', u'same', u'given', u'any', u'only', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'given', u'any', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4639.   823.     0.  4430.    94.  4494.  1137.   204.  4534.
    11.   509.   441.     0.  4444.   429.  4694.  4795.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4385.  4464.   579.     0.   979.  4551.
   417.   579.   590.     0.  1442.  4572.  4916.   211.     0.   691.]
10 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'because', u'any', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'that')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'for', u'certain', u'this')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'any', u'given', u'be', u'only', u'that', u'taken')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'for', u'any', u'given', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'for', u'be', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'that', u'be')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4731.   823.     0.  4435.    94.  4584.  1137.   204.  4564.
    11.   509.   441.     0.  4421.   429.  4628.  4805.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4444.  4389.   579.     0.   979.  4460.
   417.   579.   590.     0.  1442.  4595.  4862.   211.     0.   691.]
11 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'any', u'without', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'that')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'instance', u'that', u'this', u'for', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'taken', u'be', u'that', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'be', u'either')
TOPIC 17: (u'same', u'without', u'given', u'for', u'any', u'only', u'because', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'be', u'taken', u'only')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'for', u'because', u'be', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'that', u'be')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4637.   823.     0.  4445.    94.  4509.  1137.   204.  4625.
    11.   509.   441.     0.  4471.   429.  4636.  4800.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4400.  4438.   579.     0.   979.  4498.
   417.   579.   590.     0.  1442.  4597.  4862.   211.     0.   691.]
12 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'that', u'instance', u'this', u'be', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'any', u'be', u'only', u'taken', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'because', u'that', u'only', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'be', u'only')
TOPIC 35: (u'same', u'because', u'without', u'given', u'any', u'that', u'this', u'result', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'be', u'for', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4714.   823.     0.  4419.    94.  4567.  1137.   204.  4582.
    11.   509.   441.     0.  4441.   429.  4661.  4723.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4431.  4412.   579.     0.   979.  4466.
   417.   579.   590.     0.  1442.  4611.  4891.   211.     0.   691.]
13 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'for', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'that', u'instance', u'this', u'be', u'certain')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'be', u'only', u'not', u'taken')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'be', u'given', u'either')
TOPIC 17: (u'same', u'without', u'for', u'given', u'any', u'only', u'that', u'because', u'this')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'only', u'be')
TOPIC 35: (u'same', u'because', u'without', u'any', u'given', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'for', u'be', u'either')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4676.   823.     0.  4460.    94.  4603.  1137.   204.  4554.
    11.   509.   441.     0.  4478.   429.  4692.  4793.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4421.  4369.   579.     0.   979.  4440.
   417.   579.   590.     0.  1442.  4539.  4893.   211.     0.   691.]
14 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'only', u'not', u'for')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'not', u'that', u'for')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'that', u'instance', u'this', u'be', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'be', u'only', u'taken', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'for', u'given', u'any', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'taken', u'that', u'be', u'only')
TOPIC 35: (u'same', u'because', u'without', u'given', u'any', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'for', u'because', u'be', u'this')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4675.   823.     0.  4390.    94.  4594.  1137.   204.  4543.
    11.   509.   441.     0.  4489.   429.  4650.  4809.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4377.  4455.   579.     0.   979.  4523.
   417.   579.   590.     0.  1442.  4578.  4835.   211.     0.   691.]
15 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'only', u'for', u'not')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'not', u'instance', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'that', u'instance', u'this', u'be', u'because')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'any', u'taken', u'be', u'only', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'given', u'for', u'that', u'because', u'only', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'only', u'be')
TOPIC 35: (u'same', u'because', u'without', u'given', u'any', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'only', u'given', u'any', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'because', u'given', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'given', u'because', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4723.   823.     0.  4506.    94.  4610.  1137.   204.  4546.
    11.   509.   441.     0.  4467.   429.  4628.  4793.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4371.  4388.   579.     0.   979.  4471.
   417.   579.   590.     0.  1442.  4560.  4855.   211.     0.   691.]
16 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'not')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'for')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'not', u'be', u'instance')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'that', u'instance', u'this', u'be', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'taken', u'be', u'that', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4714.   823.     0.  4398.    94.  4550.  1137.   204.  4560.
    11.   509.   441.     0.  4454.   429.  4684.  4801.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4349.  4371.   579.     0.   979.  4499.
   417.   579.   590.     0.  1442.  4595.  4943.   211.     0.   691.]
17 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'for', u'only', u'not')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'for', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'instance', u'that', u'this', u'certain', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'taken', u'any', u'be', u'only', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'means', u'this', u'either', u'given', u'without')
TOPIC 17: (u'same', u'without', u'for', u'given', u'any', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'only', u'be')
TOPIC 35: (u'same', u'because', u'without', u'any', u'given', u'this', u'that', u'be', u'result')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'only', u'for', u'be', u'this')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'only', u'for', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4760.   823.     0.  4383.    94.  4578.  1137.   204.  4541.
    11.   509.   441.     0.  4462.   429.  4668.  4808.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4426.  4391.   579.     0.   979.  4454.
   417.   579.   590.     0.  1442.  4600.  4847.   211.     0.   691.]
18 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'only', u'for', u'not')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'that')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'same', u'without', u'instance', u'that', u'this', u'for', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'taken', u'be', u'that', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'without')
TOPIC 17: (u'same', u'without', u'for', u'given', u'any', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'because', u'without', u'any', u'that', u'given', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'for', u'because', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4713.   823.     0.  4426.    94.  4628.  1137.   204.  4519.
    11.   509.   441.     0.  4435.   429.  4701.  4771.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4411.  4393.   579.     0.   979.  4494.
   417.   579.   590.     0.  1442.  4555.  4872.   211.     0.   691.]
19 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'only', u'not', u'for')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'instance', u'that')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'that', u'instance', u'be', u'this', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'any', u'only', u'taken', u'be', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'means', u'this', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'only', u'be')
TOPIC 35: (u'same', u'because', u'without', u'any', u'given', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4718.   823.     0.  4339.    94.  4641.  1137.   204.  4557.
    11.   509.   441.     0.  4486.   429.  4664.  4701.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4433.  4401.   579.     0.   979.  4538.
   417.   579.   590.     0.  1442.  4573.  4867.   211.     0.   691.]
20 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'any', u'same', u'without', u'because', u'given', u'be', u'for', u'only', u'not')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'not', u'same', u'be', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'instance', u'not', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'that', u'instance', u'for', u'because', u'this')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'any', u'taken', u'be', u'only', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'without', u'either')
TOPIC 17: (u'same', u'without', u'any', u'given', u'for', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'taken', u'that', u'only', u'be')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4722.   823.     0.  4331.    94.  4547.  1137.   204.  4574.
    11.   509.   441.     0.  4474.   429.  4732.  4734.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4458.  4389.   579.     0.   979.  4508.
   417.   579.   590.     0.  1442.  4546.  4903.   211.     0.   691.]
21 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'any', u'without', u'same', u'given', u'because', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'same', u'not', u'be', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'without', u'any', u'same', u'given', u'because', u'only', u'not', u'be', u'that')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'instance', u'that', u'be', u'this', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'taken', u'be', u'that', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'given', u'for', u'any', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'not')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4695.   823.     0.  4318.    94.  4666.  1137.   204.  4570.
    11.   509.   441.     0.  4467.   429.  4687.  4711.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4496.  4446.   579.     0.   979.  4446.
   417.   579.   590.     0.  1442.  4575.  4841.   211.     0.   691.]
22 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'not', u'that', u'only')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'same', u'not', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'not', u'that', u'instance')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'that', u'instance', u'this', u'be', u'because')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'any', u'taken', u'only', u'be', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'means', u'this', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'given', u'for', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'same', u'any', u'given', u'that', u'taken', u'only', u'be')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'this', u'that', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'only', u'given', u'any', u'because', u'for', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'any', u'given', u'because', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4708.   823.     0.  4346.    94.  4629.  1137.   204.  4582.
    11.   509.   441.     0.  4470.   429.  4634.  4719.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4448.  4490.   579.     0.   979.  4505.
   417.   579.   590.     0.  1442.  4547.  4840.   211.     0.   691.]
23 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'same', u'not', u'be', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'not', u'instance', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'instance', u'that', u'this', u'be', u'for')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'that', u'be', u'taken', u'not')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'means', u'this', u'either', u'given', u'be')
TOPIC 17: (u'same', u'without', u'for', u'given', u'any', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'that', u'this', u'be', u'only')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'because', u'for', u'be', u'not')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4725.   823.     0.  4436.    94.  4521.  1137.   204.  4563.
    11.   509.   441.     0.  4494.   429.  4629.  4755.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4453.  4444.   579.     0.   979.  4513.
   417.   579.   590.     0.  1442.  4535.  4850.   211.     0.   691.]
24 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'same', u'without', u'any', u'because', u'given', u'be', u'only', u'not', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'same', u'be', u'not', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'instance', u'only', u'not', u'that')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'that', u'instance', u'this', u'certain', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'same', u'because', u'given', u'taken', u'any', u'only', u'for', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'for', u'given', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'not')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'that', u'this', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'any', u'given', u'only', u'for', u'because', u'be', u'not')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'only', u'for', u'be', u'that')
TOPIC 46: (u'without', u'same', u'because', u'any', u'given', u'only', u'for', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4747.   823.     0.  4396.    94.  4502.  1137.   204.  4593.
    11.   509.   441.     0.  4504.   429.  4652.  4763.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4460.  4400.   579.     0.   979.  4505.
   417.   579.   590.     0.  1442.  4522.  4874.   211.     0.   691.]
25 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'any', u'same', u'because', u'given', u'be', u'that', u'not', u'only')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'same', u'not', u'be', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'not', u'be', u'instance')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'given', u'without', u'same', u'that', u'instance', u'this', u'for', u'be')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'taken', u'be', u'not', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'means', u'this', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'any', u'given', u'for', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'not')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'this', u'that', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'for', u'because', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'only', u'for', u'be', u'taken')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'only', u'for', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4700.   823.     0.  4365.    94.  4549.  1137.   204.  4628.
    11.   509.   441.     0.  4494.   429.  4666.  4786.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4383.  4436.   579.     0.   979.  4478.
   417.   579.   590.     0.  1442.  4543.  4890.   211.     0.   691.]
26 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'for', u'only', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'any', u'because', u'given', u'same', u'be', u'not', u'that', u'certain')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'not', u'only', u'instance', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'that', u'instance', u'this', u'certain', u'because')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'given', u'taken', u'be', u'not', u'that')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'means', u'this', u'either', u'be', u'given')
TOPIC 17: (u'same', u'without', u'for', u'given', u'because', u'only', u'any', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'not')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'this', u'that', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'only', u'any', u'for', u'because', u'be', u'that')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'because', u'any', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'that', u'be')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4665.   823.     0.  4349.    94.  4532.  1137.   204.  4615.
    11.   509.   441.     0.  4573.   429.  4615.  4816.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4422.  4435.   579.     0.   979.  4465.
   417.   579.   590.     0.  1442.  4567.  4864.   211.     0.   691.]
27 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'without', u'same', u'any', u'because', u'given', u'be', u'only', u'for', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'because', u'any', u'given', u'same', u'be', u'not', u'only', u'that')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'instance', u'only', u'be', u'not')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'given', u'same', u'that', u'instance', u'this', u'for', u'because')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'any', u'taken', u'that', u'given', u'be', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'either', u'given', u'be')
TOPIC 17: (u'same', u'without', u'for', u'given', u'because', u'any', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'same', u'given', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'given', u'any', u'this', u'that', u'only', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'given', u'any', u'only', u'because', u'for', u'be', u'not')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'for', u'only', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4718.   823.     0.  4427.    94.  4518.  1137.   204.  4572.
    11.   509.   441.     0.  4507.   429.  4639.  4783.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4429.  4437.   579.     0.   979.  4487.
   417.   579.   590.     0.  1442.  4558.  4843.   211.     0.   691.]
28 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
100 docs sampled
120 docs sampled
140 docs sampled
160 docs sampled
180 docs sampled
200 docs sampled
220 docs sampled
240 docs sampled
260 docs sampled
280 docs sampled
300 docs sampled
320 docs sampled
340 docs sampled
360 docs sampled
380 docs sampled
400 docs sampled
420 docs sampled
440 docs sampled
460 docs sampled
480 docs sampled
500 docs sampled
520 docs sampled
540 docs sampled
560 docs sampled
580 docs sampled
600 docs sampled
620 docs sampled
640 docs sampled
660 docs sampled
680 docs sampled
700 docs sampled
720 docs sampled
740 docs sampled
760 docs sampled
780 docs sampled
800 docs sampled
820 docs sampled
840 docs sampled
860 docs sampled
880 docs sampled
900 docs sampled
920 docs sampled
940 docs sampled
960 docs sampled
980 docs sampled
1000 docs sampled
1020 docs sampled
1040 docs sampled
1060 docs sampled
1080 docs sampled
1100 docs sampled
1120 docs sampled
1140 docs sampled
1160 docs sampled
1180 docs sampled
1200 docs sampled
1220 docs sampled
1240 docs sampled
1260 docs sampled
1280 docs sampled
1300 docs sampled
1320 docs sampled
1340 docs sampled
1360 docs sampled
1380 docs sampled
1400 docs sampled
1420 docs sampled
1440 docs sampled
1460 docs sampled
1480 docs sampled
1500 docs sampled
1520 docs sampled
1540 docs sampled
1560 docs sampled
1580 docs sampled
1600 docs sampled
1620 docs sampled
1640 docs sampled
1660 docs sampled
1680 docs sampled
1700 docs sampled
1720 docs sampled
1740 docs sampled
1760 docs sampled
1780 docs sampled
print topic means
TOPIC 0: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 1: (u'same', u'without', u'any', u'because', u'given', u'be', u'for', u'only', u'that')
TOPIC 2: (u'false', u'fraudulent', u'intent', u'misleading', u'falsely', u'bogus', u'knowingly', u'conceal', u'wrongdoing')
TOPIC 3: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 4: (u'without', u'because', u'any', u'given', u'same', u'be', u'not', u'that', u'only')
TOPIC 5: (u'calculi', u'laicization', u'presupposition', u're-registration', u'holonomic', u'preplanning', u'disjunctive', u'easiness', u'contraindication')
TOPIC 6: (u'any', u'without', u'same', u'given', u'because', u'only', u'instance', u'not', u'be')
TOPIC 7: (u'within', u'which', u'found', u'of', u'it', u'is', u'the', u'.', u'where')
TOPIC 8: (u'section', u'length', u'above', u'height', u'sections', u'below', u'portion', u'upper', u'span')
TOPIC 9: (u'any', u'without', u'same', u'given', u'that', u'instance', u'this', u'be', u'because')
TOPIC 10: (u'writing', u'written', u'write', u'wrote', u'book', u'poetry', u'essays', u'books', u'works')
TOPIC 11: (u'benefits', u'pay', u'payments', u'payment', u'paying', u'benefit', u'compensation', u'employer', u'insurance')
TOPIC 12: (u'request', u'statement', u'saying', u'requested', u'decision', u'calls', u'demanded', u'asked', u'comment')
TOPIC 13: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 14: (u'without', u'because', u'same', u'given', u'taken', u'any', u'that', u'be', u'only')
TOPIC 15: (u'clinical', u'therapy', u'study', u'diagnostic', u'methods', u'analysis', u'behavioral', u'therapeutic', u'physical')
TOPIC 16: (u'instance', u'any', u'same', u'example', u'this', u'means', u'given', u'either', u'be')
TOPIC 17: (u'same', u'without', u'for', u'given', u'any', u'because', u'only', u'that', u'be')
TOPIC 18: (u'indicate', u'correct', u'indicates', u'exact', u'indicating', u'suggest', u'precise', u'specific', u'specify')
TOPIC 19: (u'rights', u'laws', u'legal', u'law', u'rules', u'code', u'copyright', u'violated', u'protection')
TOPIC 20: (u'root', u'roots', u'common', u'forms', u'stem', u'or', u'form', u'means', u'spread')
TOPIC 21: (u'cleft', u'conceals', u'piercings', u'creases', u'protrusion', u'protruded', u'tube-like', u'superficial', u'vocalism')
TOPIC 22: (u'laboratory', u'lab', u'laboratories', u'research', u'labs', u'biology', u'researchers', u'experiments', u'clinical')
TOPIC 23: (u'shall', u'obligation', u'must', u'cannot', u'obliged', u'wish', u'therefore', u'declare', u'ought')
TOPIC 24: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 25: (u'insurance', u'employee', u'company', u'services', u'companies', u'business', u'credit', u'employer', u'private')
TOPIC 26: (u'information', u'file', u'files', u'check', u'mail', u'documents', u'addresses', u'web', u'copy')
TOPIC 27: (u'responsible', u'involved', u'for', u'taken', u'that', u'any', u'not', u'as', u'other')
TOPIC 28: (u'sample', u'samples', u'available', u'sampling', u'typically', u'depending', u'each', u'contained', u'number')
TOPIC 29: (u'grant', u'principal', u'member', u'also', u'for', u'senior', u'former', u'associate', u'addition')
TOPIC 30: (u'original', u'recording', u'feature', u'featured', u'shows', u'complete', u'included', u'show', u'features')
TOPIC 31: (u'parson', u'manton', u'reventlow', u'erling', u'lorenz', u'sisk', u'howth', u'linley', u'jamila')
TOPIC 32: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 33: (u'child', u'death', u'children', u'life', u'parents', u'age', u'birth', u'mother', u'family')
TOPIC 34: (u'without', u'because', u'any', u'given', u'same', u'that', u'taken', u'be', u'only')
TOPIC 35: (u'same', u'without', u'because', u'any', u'given', u'only', u'this', u'that', u'be')
TOPIC 36: (u'test', u'tests', u'testing', u'tested', u'final', u'taking', u'results', u'match', u'determine')
TOPIC 37: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 38: (u'shah', u'khan', u'ali', u'hussain', u'ahmad', u'masood', u'syed', u'rashid', u'sher')
TOPIC 39: (u'same', u'without', u'any', u'given', u'only', u'because', u'for', u'be', u'not')
TOPIC 40: (u'filled', u'covered', u'cover', u'inside', u'red', u'black', u'plastic', u'white', u'large')
TOPIC 41: (u'contact', u'telephone', u'without', u'contacts', u'information', u'allow', u'call', u'can', u'to')
TOPIC 42: (u'authorization', u'consent', u'permit', u'authorized', u'permission', u'license', u'requested', u'request', u'submit')
TOPIC 43: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 44: (u'repeat', u'result', u'possible', u'avoid', u'meant', u'likely', u'any', u'failure', u'may')
TOPIC 45: (u'without', u'same', u'given', u'any', u'because', u'only', u'for', u'be', u'that')
TOPIC 46: (u'without', u'same', u'any', u'because', u'given', u'for', u'only', u'be', u'that')
TOPIC 47: (u'opacity', u'signification', u'imprecision', u'dullness', u'graininess', u'fuzziness', u'flatness', u'overstimulation', u'offensiveness')
TOPIC 48: (u'any', u'without', u'same', u'given', u'instance', u'that', u'because', u'not', u'be')
TOPIC 49: (u'blood', u'causes', u'heart', u'lungs', u'stomach', u'skin', u'body', u'bleeding', u'cause')


Document-Topic Counts:, [    0.  4737.   823.     0.  4400.    94.  4555.  1137.   204.  4603.
    11.   509.   441.     0.  4441.   429.  4673.  4750.   363.   823.
   251.   114.   921.   634.     0.   764.  1328.   888.  1449.   492.
   496.   496.     0.   644.  4371.  4423.   579.     0.   979.  4488.
   417.   579.   590.     0.  1442.  4545.  4932.   211.     0.   691.]
29 iterations complete

In [312]:
a = (1,2)
b = ("A", "B")
for c ,d in zip(a,b):
    print c


1
2

In [310]:
for t in range(g.numtopics):
    mean, cov = g.topic_params[t]["Topic Mean"], g.topic_params[t]["Lower Triangle"]
    stuff = zip((mean, cov), ("mean", "cov"))
    for thing in stuff:
    
        filepath = "/Users/michael/Documents/GaussianLDA/output/PHI_50T_50D_topic_{0}_{1}.txt"
        filepath = filepath.format(str(t), thing[1])
        np.savetxt(filepath, thing[0])

In [ ]:


In [301]:
import matplotlib.pyplot as plt
from IPython import display
import time
from collections import Counter
%matplotlib inline

In [ ]:


In [ ]:


In [ ]:


In [268]:
import FastGaussianLDA2
reload(FastGaussianLDA2)
g = FastGaussianLDA2.Gauss_LDA(5, corpus,
                              word_vector_model=wordvecs, alpha=.25)
g.fit(100)


Done processing corpus with 100 documents
There are 50 words that could be converted to word vectors in your corpus 
There are 0 words that could NOT be converted to word vectors
getting cluster centroids
[ 1849.  2064.  2112.  2037.  1941.]
Initialization complete
Starting fit
print topic means
TOPIC 0: (u'engines', u'engine', u'powered', u'turbine', u'diesel', u'locomotive', u'cylinder', u'steam', u'chassis')
TOPIC 1: (u'panda', u'dolphin', u'pandas', u'cub', u'orca', u'wolong', u'whale', u'elephant', u'shark')
TOPIC 2: (u'sitting', u'standing', u'heads', u'room', u'floor', u'chair', u'head', u'door', u'sat')
TOPIC 3: (u'succulent', u'roasted', u'cabbage', u'pickled', u'eggplant', u'cucumber', u'sauteed', u'celery', u'zucchini')
TOPIC 4: (u'cancer', u'diabetes', u'cancers', u'disease', u'infection', u'alzheimer', u'prostate', u'diagnosed', u'patients')


Document-Topic Counts:, [ 1849.  2064.  2112.  2037.  1941.]
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
print topic means
TOPIC 0: (u'engines', u'engine', u'powered', u'turbine', u'diesel', u'locomotive', u'cylinder', u'steam', u'chassis')
TOPIC 1: (u'small', u'skin', u'usually', u'tree', u'sized', u'bird', u'animal', u'body', u'eating')
TOPIC 2: (u'sitting', u'standing', u'heads', u'room', u'floor', u'chair', u'head', u'door', u'sat')
TOPIC 3: (u'succulent', u'roasted', u'cabbage', u'pickled', u'eggplant', u'cucumber', u'celery', u'sauteed', u'fleshy')
TOPIC 4: (u'cancer', u'diabetes', u'cancers', u'disease', u'infection', u'alzheimer', u'prostate', u'diagnosed', u'patients')


Document-Topic Counts:, [  9.80600000e+03   0.00000000e+00   1.87000000e+02   2.00000000e+00
   8.00000000e+00]
0 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
print topic means
TOPIC 0: (u'engines', u'engine', u'powered', u'turbine', u'diesel', u'locomotive', u'cylinder', u'steam', u'chassis')
TOPIC 1: (u'panda', u'dolphin', u'pandas', u'cub', u'wolong', u'orca', u'whale', u'elephant', u'shark')
TOPIC 2: (u'sitting', u'standing', u'heads', u'room', u'floor', u'chair', u'head', u'door', u'sat')
TOPIC 3: (u'succulent', u'roasted', u'cabbage', u'pickled', u'eggplant', u'cucumber', u'celery', u'sauteed', u'fleshy')
TOPIC 4: (u'cancer', u'diabetes', u'cancers', u'disease', u'infection', u'alzheimer', u'prostate', u'diagnosed', u'patients')


Document-Topic Counts:, [ 1920.  1105.   142.  3364.  3472.]
1 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
print topic means
TOPIC 0: (u'small', u'skin', u'usually', u'tree', u'sized', u'bird', u'animal', u'body', u'eating')
TOPIC 1: (u'panda', u'dolphin', u'pandas', u'cub', u'wolong', u'orca', u'whale', u'elephant', u'shark')
TOPIC 2: (u'sitting', u'standing', u'heads', u'room', u'floor', u'chair', u'head', u'door', u'sat')
TOPIC 3: (u'succulent', u'roasted', u'cabbage', u'pickled', u'eggplant', u'cucumber', u'celery', u'sauteed', u'fleshy')
TOPIC 4: (u'cancer', u'diabetes', u'cancers', u'disease', u'infection', u'alzheimer', u'prostate', u'diagnosed', u'patients')


Document-Topic Counts:, [    0.  1105.   582.  3995.  4321.]
2 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
80 docs sampled
print topic means
TOPIC 0: (u'small', u'skin', u'usually', u'tree', u'sized', u'bird', u'animal', u'body', u'eating')
TOPIC 1: (u'panda', u'dolphin', u'pandas', u'cub', u'wolong', u'orca', u'whale', u'elephant', u'shark')
TOPIC 2: (u'sitting', u'standing', u'heads', u'room', u'floor', u'chair', u'head', u'door', u'sat')
TOPIC 3: (u'succulent', u'roasted', u'cabbage', u'pickled', u'eggplant', u'cucumber', u'celery', u'sauteed', u'fleshy')
TOPIC 4: (u'cancer', u'diabetes', u'cancers', u'disease', u'infection', u'alzheimer', u'prostate', u'diagnosed', u'patients')


Document-Topic Counts:, [    0.  1105.   582.  3995.  4321.]
3 iterations complete
0 docs sampled
20 docs sampled
40 docs sampled
60 docs sampled
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-268-097ec66ef54c> in <module>()
      3 g = FastGaussianLDA2.Gauss_LDA(5, corpus,
      4                               word_vector_model=wordvecs, alpha=.25)
----> 5 g.fit(100)

/Users/michael/Documents/GaussianLDA/FastGaussianLDA2.pyc in fit(self, iterations, init)
    143         for i in range(iterations):
    144 
--> 145             self.sample()
    146             print "{0} iterations complete".format(i)
    147             # for k in xrange(self.numtopics):

/Users/michael/Documents/GaussianLDA/FastGaussianLDA2.pyc in sample(self)
    296 
    297 
--> 298                 self.recalculate_topic_params(word, current_topic, docID, "-")
    299                 log_posterior = np.zeros(self.numtopics)
    300                 for k in range(self.numtopics):  # Get PDF for each possible word-topic assignment

/Users/michael/Documents/GaussianLDA/FastGaussianLDA2.pyc in recalculate_topic_params(self, word, topic, docID, operation, init)
    343             centered = (self.word_vecs[word] - self.topic_params[topic]["Topic Mean"])  # Get rank-1 matrix from point
    344             centered *= np.sqrt((kappa_k + 1.) / kappa_k)  # Scale for recursive downdate
--> 345             L = self.solver.chol_downdate(L, centered)  # Choleksy downdate
    346             self.topic_params[topic]["Lower Triangle"] = L
    347 

KeyboardInterrupt: 

In [ ]:


In [303]:
for k in g.test_word_topics.keys():
    print k
    plt.hist(g.test_word_topics[k], 50, (0,50))
    print Counter(g.test_word_topics[k])
    plt.title(k, size=20)
    display.clear_output(wait=True)
    display.display(plt.gcf(), Counter(g.test_word_topics[k]))
    plt.cla()
    time.sleep(1.0)


Counter({3: 1, 4: 4, 9: 2, 14: 25, 16: 1, 34: 3, 35: 1, 39: 1, 43: 1, 46: 21})
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-303-53c13b7d4135> in <module>()
      7     display.display(plt.gcf(), Counter(g.test_word_topics[k]))
      8     plt.cla()
----> 9     time.sleep(1.0)

KeyboardInterrupt: 

TODO:

Run tests:

  • check that on first doc in first iteration: words are assigned to right topic
  • check Das output again