Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 2.51 KB

index.md

File metadata and controls

66 lines (57 loc) · 2.51 KB
layout title isindex all-model-statuses all-model-categories
default
Forest - A Repository for Generative Models
true
code
link
code-fail
stub
Concept Learning
Reasoning about Reasoning
Machine Learning
Nonparametric Models
Bayesian Data Analysis
Undirected Constraints
Inverse Dynamics
PPAML Challenge Problems
Miscellaneous

Models

{% for category in page.all-model-categories %}

{{ category }}
{% for status in page.all-model-statuses %}
  {% for p in site.pages %}
    {% if p.layout == 'model' %}
      {% if p.model-status == status %}
       {% if p.model-category == category %}
          <div class="list-group-item">
              {% if p.model-status == 'stub' %}
                {{ p.title }}
                <span class="label label-default pull-right glyph-label">
                    <span class="glyphicon glyphicon-asterisk" rel="tooltip" title="Stub"></span>
                </span>
              {% else %}
                <a href="{{ p.url }}">{{ p.title }}</a>
                {% if p.model-status == 'code' %}
                  <span class="label label-success pull-right glyph-label">
                      <span class="glyphicon glyphicon-ok" rel="tooltip" title="Code runs"></span>
                  </span>
                {% elsif p.model-status == 'link' %}
                  <span class="label label-success pull-right glyph-label">
                      <span class="glyphicon glyphicon-bookmark" rel="tooltip" title="Link to code"></span>
                  </span>
                {% elsif p.model-status == 'code-fail' %}
                  <span class="label label-warning pull-right glyph-label">
                      <span class="glyphicon glyphicon-remove" rel="tooltip" title="Code broken ({{ p.model-status-verbose }})"></span>
                  </span>
                {% else %}
                {% endif %}
              {% endif %}
          </div>
        {% endif %}
      {% endif %}
    {% endif %}
  {% endfor %}
{% endfor %}

{% endfor %}

<script type="text/javascript"> load_repo_contributors(); </script>