{% extends "framework.html" %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_user_modal.html" %} {% include "modals/objects/edit_password_modal.html" %} {% include "modals/collections/new_prediction_setting_modal.html" %} {% include "modals/objects/manage_api_token_modal.html" %} {% include "modals/objects/delete_user_modal.html" %} {% endblock action_modals %}
{{ user.username }}

On this page you can modify your account or set preferences such as prediction settings.

Default Package

{% if meta.available_groups|length > 0 %}

Groups

{% for g in meta.available_groups %}
  • {{ g.name }}
  • {% endfor %}
    {% endif %}

    Current Prediction Setting

    {% if user.default_setting.model %} {% endif %} {% if user.default_setting.rule_packages.all %} {% endif %}
    Parameter Value
    Model
  • {{ user.default_setting.model.name }}
  • Model Parameter Parameter Value
    Threshold {{ user.default_setting.model_threshold }}
    Rule Packages
    {% for p in user.default_setting.rule_packages.all %}
  • {{ p.name }}
  • {% endfor %}

    Max Nodes

    {{ user.default_setting.max_nodes }}

    Max Depth

    {{ user.default_setting.max_depth }}

    {% endblock content %}