Initial commit

This commit is contained in:
redclawsystems
2026-03-04 00:08:42 +00:00
commit 4d88dc0584
4449 changed files with 1556714 additions and 0 deletions
@@ -0,0 +1,13 @@
//! Knowledge distillation framework for model compression
pub mod knowledge_distillation;
pub mod tensor_extensions;
pub use knowledge_distillation::{
AttentionDistillationResult, AttentionTransferConfig, CrossModalDistillationResult,
DistillationConfig, DistillationLoss, DistillationMethod, DistillationResult,
FeatureDistillationResult, FeatureMatchingConfig, KnowledgeDistiller, MultiTeacherConfig,
MultiTeacherDistillationResult, OnlineDistillationResult, ProgressiveDistillationConfig,
StudentModel, TeacherModel,
};
pub use tensor_extensions::{DistillationTensorOps, DistillationUtils};