Package cc.mallet.topics
Interface TopicReports
-
- All Known Implementing Classes:
AbstractTopicReports
,JSONTopicReports
public interface TopicReports
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
printDenseDocumentTopics(java.io.File file)
void
printDenseDocumentTopics(java.io.PrintWriter out)
void
printDocumentTopics(java.io.File file, double threshold, int max)
void
printDocumentTopics(java.io.PrintWriter out, double threshold, int max)
void
printSamplingState(java.io.File file)
void
printSamplingState(java.io.PrintWriter out)
void
printSummary(java.io.File file, int numWords)
void
printSummary(java.io.PrintWriter out, int numWords)
void
printTopicDocuments(java.io.File file, int max)
void
printTopicDocuments(java.io.PrintWriter out, int max)
void
printTopicPhrases(java.io.File file, int numWords)
void
printTopicPhrases(java.io.PrintWriter out, int numWords)
void
printTopicWordWeights(java.io.File file)
void
printTopicWordWeights(java.io.PrintWriter out)
void
printTypeTopicCounts(java.io.File file)
void
printTypeTopicCounts(java.io.PrintWriter out)
-
-
-
Method Detail
-
printSamplingState
void printSamplingState(java.io.PrintWriter out) throws java.io.IOException
- Throws:
java.io.IOException
-
printTopicDocuments
void printTopicDocuments(java.io.PrintWriter out, int max) throws java.io.IOException
- Throws:
java.io.IOException
-
printDocumentTopics
void printDocumentTopics(java.io.PrintWriter out, double threshold, int max) throws java.io.IOException
- Throws:
java.io.IOException
-
printDenseDocumentTopics
void printDenseDocumentTopics(java.io.PrintWriter out) throws java.io.IOException
- Throws:
java.io.IOException
-
printTopicWordWeights
void printTopicWordWeights(java.io.PrintWriter out) throws java.io.IOException
- Throws:
java.io.IOException
-
printTypeTopicCounts
void printTypeTopicCounts(java.io.PrintWriter out) throws java.io.IOException
- Throws:
java.io.IOException
-
printTopicPhrases
void printTopicPhrases(java.io.PrintWriter out, int numWords) throws java.io.IOException
- Throws:
java.io.IOException
-
printSummary
void printSummary(java.io.PrintWriter out, int numWords) throws java.io.IOException
- Throws:
java.io.IOException
-
printSamplingState
void printSamplingState(java.io.File file) throws java.io.IOException
- Throws:
java.io.IOException
-
printTopicDocuments
void printTopicDocuments(java.io.File file, int max) throws java.io.IOException
- Throws:
java.io.IOException
-
printDocumentTopics
void printDocumentTopics(java.io.File file, double threshold, int max) throws java.io.IOException
- Throws:
java.io.IOException
-
printDenseDocumentTopics
void printDenseDocumentTopics(java.io.File file) throws java.io.IOException
- Throws:
java.io.IOException
-
printTopicWordWeights
void printTopicWordWeights(java.io.File file) throws java.io.IOException
- Throws:
java.io.IOException
-
printTypeTopicCounts
void printTypeTopicCounts(java.io.File file) throws java.io.IOException
- Throws:
java.io.IOException
-
printTopicPhrases
void printTopicPhrases(java.io.File file, int numWords) throws java.io.IOException
- Throws:
java.io.IOException
-
printSummary
void printSummary(java.io.File file, int numWords) throws java.io.IOException
- Throws:
java.io.IOException
-
-