knowledge-distillation

Warn

Audited by Runlayer on Feb 21, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
2
Flagged
2
Chunks
3
Flagged Files (2)
SKILL.mdHIGH
78.3%

Malicious tool definition detected

Tool: SKILL.md [1/2] Description: --- name: knowledge-distillation description: Compress large language models using knowledge distillation from teacher to student models.

Tool: SKILL.md [2/2] Description: logits = teacher(**batch).logits teacher_logits_list.append(logits) # Average teacher predictions avg_teacher_logits = torch.stack(teacher_logits_list).mean(dim=0) # Student learns from ensemble student_logits = student(**batch).logits loss = F.kl_div( F.log_softmax(student_logits, dim=-1), F.softmax(avg_teacher_logits, dim=-1), reduction='batchmean' ) return loss ``` ## Production Deployment ### Complete Training Script ```python from transformers import Traine

references/minillm.mdHIGH
78.3%

Malicious tool definition detected

Tool: references/minillm.md Description: # MiniLLM: Reverse KL Divergence for LLM Distillation Based on arXiv 2306.08543 (2024) - MiniLLM: Knowledge Distillation of Large Language Models ## Overview **Source**: https://arxiv.org/abs/2306.08543 **GitHub**: https://github.com/microsoft/LMOps/tree/main/minillm MiniLLM replaces forward KLD with reverse KLD for knowledge distillation, achieving better performance on generative language models.

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
2
Files Flagged
2
Chunks Analyzed
3
Analyzed
Feb 21, 2026, 04:35 AM
Security Audit — runlayer — knowledge-distillation