Mixpeek Logo
    Schedule Demo
    Text

    Topic Modeling

    Discover abstract topics and themes across document collections

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter the text you want to process

    Number of topics to extract. Default: 10

    Topic modeling method to use. Default: LDA

    Minimum weight for topic inclusion. Default: 0.1

    Output

    {
    "topics": [
    {
    "id": 0,
    "words": [
    "finance",
    "market",
    "stocks",
    "trading"
    ],
    "weight": 0.25,
    "coherence_score": 0.78,
    "representative_docs": [
    "doc1",
    "doc2"
    ]
    },
    {
    "id": 1,
    "words": [
    "health",
    "medical",
    "patient",
    "treatment"
    ],
    "weight": 0.18,
    "coherence_score": 0.82,
    "representative_docs": [
    "doc3",
    "doc4"
    ]
    }
    ],
    "method": "LDA",
    "num_topics": 10,
    "perplexity": 45.2,
    "topic_diversity": 0.85
    }