Finetuner is a local desktop workbench for reproducible LLM post-training. It combines workflow-driven training, preference optimization, knowledge distillation, evaluation, representation analysis, and target-aware model compression in one PySide6 application.
- Validated workflow DAGs with built-in SFT, DPO, KTO, GRPO, classic RLHF, and distill/deploy templates
- SFT, DPO, GRPO, PPO, KTO, reward-model, ORPO, and RLOO trainers through TRL
- Real preference-schema validation; synthetic negative responses are opt-in and deterministic
- Sequence knowledge distillation across model families plus experimental logit/GKD techniques for tokenizer-compatible teacher/student pairs
- Domain-selective distillation for computer science, mathematics, optimization, science, reasoning, safety, arbitrary custom topics, or all data
- GGUF, OpenVINO INT4/INT8, ONNX Runtime INT8, and AWQ deployment pipelines with an explicit backend/device compatibility matrix
- PCA, t-SNE, or UMAP hidden-state projections by layer, activation norms, attention entropy, and cross-layer centered-kernel alignment (CKA)
- Atomic run manifests containing stage status, duration, metrics, configuration digest, and artifact lineage
- CPU, RAM, and NVIDIA GPU monitoring; Hugging Face/local model management; benchmark comparison
Finetuner does not claim that one artifact runs optimally on every accelerator. Deployment is planned against a concrete runtime and device: GGUF for broad CPU/GPU support, OpenVINO for supported Intel CPU/GPU/NPU systems, ONNX Runtime INT8 for CPU, and AWQ for compatible NVIDIA inference stacks. Unsupported combinations are rejected before conversion.
cd E:\finetuner
.\scripts\install_gpu.ps1
.\.venv\Scripts\python.exe -m pip install -e ".[dev,analysis]"
.\.venv\Scripts\python.exe -m finetunerUse a CUDA build of PyTorch for GPU training. Quantized artifacts can target non-CUDA devices, but the current local trainer requires NVIDIA CUDA. Optional deployment toolchains are installed separately:
pip install -e ".[openvino]" # Intel CPU/GPU/NPU
pip install -e ".[onnx]" # ONNX Runtime INT8 CPU
pip install llm-awq # NVIDIA AWQGGUF conversion requires a local llama.cpp checkout/build selected in the Deploy tab.
.\.venv\Scripts\python.exe -m pytest -q
.\.venv\Scripts\python.exe -m pytest --cov=finetuner --cov-report=term-missingTests live in tests/ and avoid model downloads. Heavy GPU/model integration tests should use explicit
small checkpoints in a dedicated CI job.
Each model run writes manifest.json incrementally and atomically. The manifest captures the exact
workflow and a digest of the redacted project configuration. Hugging Face tokens are held in memory or
read from HF_TOKEN; they are intentionally not written to config.json or run manifests.
See the workflow architecture and research rationale.
.\scripts\build_windows.ps1Inno Setup is required for the installer step.