{% extends "base.html" %} {% block title %}Fine-Tuning β€” Document Intelligence β€” ICDEVβ„’{% endblock %} {% block content %}
CUI // SP-CTI

πŸ§ͺ Air-Gap Fine-Tuning

Optional. Train a small local model on a collection's own chunks/KG. The no-LLM grounded search path is never affected.

← Back to DIC
πŸ”’ Air-gap by construction. Only local providers are selectable ({{ local_providers|join(', ') }}). Cloud fine-tuning providers are intentionally not offered. GPU is auto-detected; without a GPU, training gracefully degrades to a no-op.

New Training Job

Training Jobs

{% for j in jobs %} {% else %} {% endfor %}
JobCollection ProviderState
{{ j.job_id }}{{ j.collection_id }} {{ j.provider }}{{ j.state }}
No training jobs yet (dic-finetune-01).

Trained Models

{% for m in models %} {% else %} {% endfor %}
ModelFormat Eval
{{ m.name }}{{ m.format }} {{ m.eval_summary }}
No models yet β€” exported GGUF adapters appear here after a completed job.
{% set iqe_canvas = "dic" %} {% set iqe_api_route = "/document-intelligence/api/iqe-query" %} {% set iqe_title = "IQE Query β€” Fine-Tuning" %} {% set iqe_examples = [ {"label": "All datasets", "query": "foreach f in dic.ft_datasets select f.dataset_id, f.collection_id, f.pair_count"} ] %} {% include "includes/iqe_query_widget.html" %} {% endblock %}