Alignment-Lab-AI's picture
Upload folder using huggingface_hub
d5bfab8 verified
<div
{% if infoid %}
id="{{infoid}}"
{% endif %}
{% if is_center_pixel %}
class="visiblebydefault"
{% else %}
style="display: none;"
{% endif %}
>
<h1>Pixel</h1>
<ul>
<li>color: {{ color }}</li>
<li>x: {{ x }}</li>
<li>y: {{ y }}</li>
</ul>
{% if incoming_edges %}
<h1>Incoming edges</h1>
<ul>
{% for item in incoming_edges %}
<li>{{ item.edge_index }} - {{ item.edge_name }} - <a href="{{ item.node_href }}">{{ item.node_index }} - {{ item.node_name }}</a></li>
{% endfor %}
</ul>
{% else %}
<h1>Incoming edges - none</h1>
{% endif %}
{% if outgoing_edges %}
<h1>Outgoing edges</h1>
<ul>
{% for item in outgoing_edges %}
<li>{{ item.edge_index }} - {{ item.edge_name }} - <a href="{{ item.node_href }}">{{ item.node_index }} - {{ item.node_name }}</a></li>
{% endfor %}
</ul>
{% else %}
<h1>Outgoing edges - none</h1>
{% endif %}
</div>