minor
Some checks failed
API CI / api-tests (pull_request) Failing after 33s
CI / test (pull_request) Failing after 32s

This commit is contained in:
Tim Lorsbach
2026-07-28 22:44:38 +02:00
parent 7653561833
commit 871448dde8
5 changed files with 87 additions and 15 deletions

View File

@ -117,6 +117,38 @@
</div>
</div>
{% endif %}
<!-- Model Parameters Panel -->
<div class="collapse-arrow bg-base-200 collapse">
<input type="checkbox" checked />
<div class="collapse-title text-xl font-medium">Model Parameters</div>
<div class="collapse-content">
<div class="flex justify-center">
<div
id="model-stats"
class="overflow-x-auto rounded-box shadow-md bg-base-100"
>
<table class="table table-fixed w-full">
<thead class="text-base">
<tr>
<th class="w-3/5">Parameter</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{% for param, value in model.parameters.items %}
<tr>
<td>{{ param }}</td>
<td>{{ value }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}
{% block usemodel %}

View File

@ -537,7 +537,7 @@
<input type="checkbox" />
<div class="collapse-title text-xl font-medium">Setting</div>
<div class="collapse-content">
{% with setting_to_render=pathway.setting can_be_default=False %}
{% with setting_to_render=pathway.setting_with_overrides can_be_default=False %}
{% include "objects/setting_template.html" %}
{% endwith %}
</div>

View File

@ -95,6 +95,7 @@
</div>
<!-- Other Prediction Settings -->
{% if meta.available_settings|length > 1 %}
<div class="collapse-arrow bg-base-200 collapse">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium">
@ -110,6 +111,7 @@
{% endfor %}
</div>
</div>
{% endif %}
</div>
<script>