Exemple #1
0
def TopDocs():
    with LDA_DB() as lda_db:
        handler = LDA_Core(request, response, lda_db)
        handler.LoadTopDocs()
    return handler.GenerateResponse()
Exemple #2
0
def index():
    with LDA_DB() as lda_db:
        handler = LDA_Core(request, response, lda_db)
    return handler.GenerateResponse()
Exemple #3
0
def DocTopicMatrix():
    with LDA_DB() as lda_db:
        handler = LDA_Core(request, response, lda_db)
        handler.LoadDocTopicMatrix()
    return handler.GenerateResponse()