{% if action == 'overview' %}
{% elif action == 'document' %}
Basic Info
{{basic_info}}
Training Info
{{training_info}}
Initial Parameters
{% for i, (k, v) in enumerate(getattr(model, '_init_params', {}).items()) %}
{% if k in init_param_desc %}
{% else %}
{% end %}
{% end %}
Parameters
{{params_info}}
Topics
{{topics_info}}
{% if filtered_docs is None %}
{% elif action == 'topic' %}
All documents in the model ({{total_docs}})
{% else %}Filtered documents ({{filtered_docs}} / {{total_docs}})
{% end %}-
{% for doc in documents %}
- {% end %}
-
{% for topic in topics %}
-
Topic #{{topic.topic_id}}
{% for word, dist in topic.words %}
{{word}}
{% end %}