REVIEW 5 major objections 4 minor 25 references
Joint Feature and Output Distillation for Low-complexity Acoustic Scene Classification
T0 review · 5 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A 61K-parameter acoustic scene classifier reaches 59.30% accuracy through two-level teacher distillation under strict budget limits.
desk verdict Plausible benchmark result with a fixable table/text contradiction that blocks the paper's central attribution claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the combined training objective (Eq. 3), $L_{\text{student}}=\alpha L_{\text{soft}}+\beta L_{\text{feat}}+\gamma L_{\text{ce}}$, with $\alpha=1.0$, $\beta=0.1$, $\gamma=0.05$ and temperature $T=2$. Output-level knowledge enters through the KL divergence between the student's softened probabilities and the averaged teacher softmax outputs; feature-level knowledge enters either by matching activations through a $1\times1$ adapter or by matching self-similarity Gram matrices; and a small cross-entropy term keeps the student tied to ground-truth labels. The teacher soft outputs are made stable by averaging the four models' logits and by model-soup weight averaging within each teacher. The feature-matching layers are selected manually by spatial and semantic compatibility, and no attention or automated selection is used. Together these components let the student inherit both class-boundary geometry and internal acoustic structure.
What would settle it
Re-run the same teacher-student setup with the loss weights and matched layers chosen on a held-out portion of the training data instead of the official development set, then evaluate on that development set; if accuracy falls well below 59.30%, the reported gain comes from tuning against the evaluation set rather than from the distillation mechanism itself.
Extended reading notes
Core claim
The central claim is that joint output-level and feature-level knowledge distillation allows a tiny student to reach 59.30% accuracy on the TAU Urban Acoustic Scenes 2022 Mobile development set while staying within the challenge's 128kB parameter-memory and 30M MAC budgets. On the teacher side, the soft targets are the mean of softmax outputs from two PaSST and two CP-ResNet models, with each teacher stabilized by averaging the weights of its top checkpoints. On the feature side, CP-ResNet supervises selected intermediate layers of the student through one of two alignments: direct activation matching using 1×1 convolutional adapters under an MSE loss, or self-similarity matching that aligns Gram matrices of time-frequency features. With the rest of the setup identical, self-similarity matching reaches 59.30% and direct matching reaches 58.80%, and both submissions use the same 61,160-parameter, 17.05M MAC student. The paper presents this as evidence that structural supervision from intermediate representations improves low-complexity acoustic scene classification under limited data and hardware constraints.
Load-bearing premise
The method depends on the hand-set loss weights and the manually chosen feature-matching layers, which were fixed after experiments on the development set, transferring to unseen devices; if they were tuned to this split, the reported 59.30% reflects configuration search rather than a general distillation effect.
Editorial extensions
If this is right
- Feature-level supervision can be added to logit distillation without increasing inference cost, since the extra losses affect only training.
- A roughly 61K-parameter student with 17.05M MACs can stay competitive under the 128kB and 30M MAC constraints while trained on a 25% data subset.
- Self-similarity Gram-matrix matching is a workable alternative to direct activation matching for cross-architecture student-teacher pairs, and gave the better submitted system.
- Averaging softmax outputs across diverse teacher architectures, with model-soup weight averaging inside each teacher, produces soft targets stable enough for a compact student.
Reading between the lines
- Because only development-set accuracy is reported, the ranking between direct and self-similarity matching may not hold on unseen evaluation devices; testing on the official evaluation set would settle it.
- A natural testable extension is to replace the manual layer and weight choices with a small validation-based selection and check whether the feature component still provides a gain; if it does, the mechanism is robust rather than configuration-dependent.
- Gram-matrix alignment discards absolute activation scales, so the SSFM variant may transfer more easily across architectures than direct matching; comparing it with attention-based feature distillation would isolate what the structural loss adds.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This report presents a dual-level knowledge distillation framework for the DCASE 2025 Task 1 low-complexity acoustic scene classification (ASC) challenge. The authors train four teacher models (two PaSST and two CP-ResNet variants) on the official 25% training subset and use their averaged softmax outputs as output-level targets for a compact CP-Mobile student. One CP-ResNet teacher additionally provides feature-level supervision through either Direct Feature Matching (DFM) or Self-Similarity Feature Matching (SSFM). The student is trained with the weighted sum in Eq. (3) (soft, feature, and cross-entropy losses, with alpha=1.0, beta=0.1, gamma=0.05 and temperature T=2). The two submitted systems, S1 and S2, contain 61,160 parameters and 17.05M MACs and are reported to reach 58.80% and 59.30% accuracy, respectively, on the TAU Urban Acoustic Scenes 2022 Mobile development set, within the 128kB/30M MAC constraints. The main claim is that joint output and feature distillation improves low-complexity ASC and that SSFM offers an advantage over DFM.
Significance. If the central claim is substantiated, the paper offers a useful practical contribution: it demonstrates a computationally cheap student (61k parameters, 17M MACs) that meets strict challenge constraints, combines several established techniques (output ensembling, model soup, MixStyle-style augmentation, FitNets/SimKD-style feature alignment), and ships a public inference repository. The idea of adding self-similarity feature matching to output-level KD is reasonable and worth testing. However, the empirical evidence as presented is not yet sufficient to establish that the dual-level design causes the reported accuracy, because the report lacks a logit-only baseline, an ablation of beta and feature-layer choices, a described hyperparameter-validation procedure, and an independent test evaluation. The contribution is therefore at the level of a challenge technical report rather than a fully validated research claim.
major comments (5)
- [Section 4 and Table 2] Section 4 states that 'S1 uses DFM, while S2 applies SSFM,' but Table 2 lists S1 as SSFM and S2 as DFM. The accuracy column then implies either SSFM (if the text is correct) or DFM (if the table is correct) achieves 59.30%. The paper's attribution of the 0.5-point gain to a specific feature-matching strategy is therefore undecidable from the manuscript as written. Please correct the mismatch and restate the comparison.
- [Section 3.2, Eq. (3); Section 3.3; Section 4] The reported accuracies are on the official development set, and the manuscript does not describe any held-out validation, cross-validation, or separate hyperparameter-selection procedure. The loss weights (alpha=1.0, beta=0.1, gamma=0.05), temperature T=2, augmentation settings (Table 1), and the manually selected feature layers (Section 3.3) all appear to be fixed choices without a stated criterion. If any of these were selected by monitoring development-set accuracy, the headline 59.30% is an in-sample selection result rather than an independent evaluation. Please describe the hyperparameter-selection protocol and include a held-out or repeated evaluation.
- [Section 4, Table 2] No ablation isolates the feature-distillation component. There is no student trained with output-level KD alone (beta=0), no no-KD student, and no comparison against the official baseline. Without these conditions, the observed accuracy cannot be attributed to the joint framework rather than to the teacher ensemble, the augmentation, or the student architecture. Please add at least a logit-only KD condition with identical preprocessing and augmentation.
- [Section 3.3] The description of DFM and SSFM layer selections is incomplete and inconsistent with Table 2. Section 3.3 gives an example for DFM ('features after the second residual block of CP-ResNet are mapped to early-stage outputs of CP-Mobile'), while Table 2 reports that SSFM uses Stage 1-3 and DFM uses Stage 3. The stage numbering is never defined, and the text does not specify how the layers were chosen for SSFM. This prevents reproduction of the feature-matching setup. Please define the stages and give the exact layer mapping for both methods.
- [Section 4, Table 2] The difference between the two systems (58.80% vs 59.30%) is 0.5 percentage points. With no error bars, no multiple seeds, and no significance test, this difference may be within run-to-run variation. The claim that one feature-matching method outperforms the other should be supported by repeated runs or a statistical test.
minor comments (4)
- [Eq. (1)] Equation (1) contains a typo in the KL argument: 'softmax(zs/T), ||, softmax(zt/T)' should be written as a standard KL divergence between two softened distributions.
- [Eq. (2)] Equation (2) has an extra comma: 'CE(softmax(zs), , y)' should read 'CE(softmax(zs), y)'.
- [Reference [3]] Reference [3] is titled 'Tau urban acoustic scenes 2022 mobile: Three-device dataset for acoustic scene classification' but is cited as 'DCASE2021 Challenge, Tech. Rep., 2021'; please verify the year and challenge name.
- [Section 4] The student training details (optimizer, learning rate schedule, number of epochs, batch size) are not reported, and no comparison to the official DCASE 2025 baseline is provided, which limits reproducibility and the ability to judge the absolute level of the reported accuracy.
Circularity Check
No significant circularity: the reported dev-set accuracy is an evaluated empirical result, not a constructively derived prediction.
full rationale
The paper's central claim is an empirical development-set accuracy (up to 59.30%) for a trained student model, not a quantity derived from an input by construction. The distillation objective in Eq. 3 is a weighted sum of three independently defined losses: KL divergence to averaged teacher logits, a feature-alignment loss (Eq. 4 or Eq. 5), and cross-entropy. None of these terms is defined in terms of the reported accuracy, and no fitted parameter is later renamed as a prediction. The feature-matching methods explicitly cite external sources (FitNets, SimKD, and a speech-enhancement self-similarity method), so the framework is not an ansatz smuggled in via self-citation. The self-citations [4,5] appear only as general context for knowledge distillation and are not load-bearing for the main result. The hand-set weights alpha, beta, gamma and manually selected feature layers could raise concerns about development-set selection, but the paper does not claim a held-out prediction, and no equation or protocol reduces the reported number to its own inputs. The inconsistency in Table 2 (S1/S2 labels versus the prose attribution of DFM/SSFM) affects which method produced 59.30%, but that is a correctness/identifiability issue, not circularity. Overall, the derivation chain is self-contained and the empirical claim stands as an evaluation rather than a circular construction.
Assumptions & free parameters
free parameters (4)
- KD loss weights alpha, beta, gamma =
alpha=1.0, beta=0.1, gamma=0.05
- KD temperature T =
T=2
- Feature matching layer selection =
Manual selection, e.g., after CP-ResNet second residual block to early CP-Mobile stages
- Augmentation hyperparameters =
Time roll shifts (312ms/125ms), DIR probabilities (0.6/0.4), MixStyle alpha_mix (0.3/0.4, p=0.4/0.8)
assumptions (4)
- domain assumption Log-Mel spectrograms with model-specific FFT settings preserve the acoustic information needed for scene classification.
- ad hoc to paper Additive combination of distillation and cross-entropy losses is an effective training objective.
- domain assumption The official development set is representative of the evaluation conditions.
- domain assumption Knowledge distilled from larger teachers transfers to the compact student without catastrophic forgetting or overfitting.
Cite this review
Pith. "Pith review of Joint Feature and Output Distillation for Low-complexity Acoustic Scene Classification." pith.science (2026). https://pith.science/paper/6BDXEKBU
@misc{pith2026250719557,
author = {Pith},
title = {Pith review of: Joint Feature and Output Distillation for Low-complexity Acoustic Scene Classification},
year = {2026},
howpublished = {\url{https://pith.science/paper/6BDXEKBU}},
note = {Machine review of arXiv:2507.19557}
}
read the original abstract
This report presents a dual-level knowledge distillation framework with multi-teacher guidance for low-complexity acoustic scene classification (ASC) in DCASE2025 Task 1. We propose a distillation strategy that jointly transfers both soft logits and intermediate feature representations. Specifically, we pre-trained PaSST and CP-ResNet models as teacher models. Logits from teachers are averaged to generate soft targets, while one CP-ResNet is selected for feature-level distillation. This enables the compact student model (CP-Mobile) to capture both semantic distribution and structural information from teacher guidance. Experiments on the TAU Urban Acoustic Scenes 2022 Mobile dataset (development set) demonstrate that our submitted systems achieve up to 59.30\% accuracy.
Figures
Reference graph
Works this paper leans on
-
[1]
INTRODUCTION Acoustic Scene Classification (ASC) aims to identify the environ- ment in which an audio recording was captured, such as a street, shopping mall, or park, based on its acoustic characteristics [1, 2]. The DCASE 2025 Challenge Task 1 focuses on developing low- complexity ASC models that are robust to domain shifts across mo- bile recording dev...
work page 2025
-
[2]
Joint Feature and Output Distillation for Low-complexity Acoustic Scene Classification
DA TA PREPROCESSING AND AUGMENTA TION 2.1. Preprocessing All models operate on 32 kHz audio. Log-Mel spectrograms are ex- tracted using configurations customized for each model to balance time-frequency resolution and computational efficiency. Teacher models: We use 2 architectures as teacher models: PaSST and CP-ResNet. For each architecture, we employ d...
work page Pith review arXiv 2025
-
[3]
TRAINING AND KNOWLEDGE DISTILLA TION 3.1. Teacher Model Training All teacher models are trained independently on the 25% subset of the TAU Urban Acoustic Scenes 2022 Mobile dataset, using their respective log-Mel spectrogram configurations detailed in Sec- tion 2. All teachers adopt Freq-MixStyle augmentation, while DIR convolution is selectively applied ...
work page 2022
-
[4]
SUBMISSIONS AND RESULTS We submitted systems S1 (Li NTU task1 1) and S2 (Li NTU task1 2) to the DCASE 2025 Task 1 evaluation. Both systems adopt CP-Mobile as the student model, trained under the proposed dual-level distillation framework. The submissions differ in their feature-level distillation strategies: S1 uses DFM, while S2 applies SSFM. Table 2 sum...
work page 2025
-
[5]
CONCLUSIONS In this report, we propose a dual-level knowledge distillation frame- work for low-complexity acoustic scene classification, which inte- grates output-level supervision from an ensemble of teacher models with intermediate feature-level guidance. To facilitate effective fea- ture knowledge transfer, we investigate two distinct strategies: Di- r...
work page 2022
-
[6]
Distilling the knowledge in a neural network,
G. Hinton, O. Vinyals, and J. Dean, “Distilling the knowledge in a neural network,” arXiv preprint arXiv:1503.02531, 2015
arXiv 2015
-
[7]
Acoustic scene classification: A review of features, classi- fiers and datasets,
D. Barchiesi, D. Giannoulis, D. Stowell, and M. D. Plumbley, “Acoustic scene classification: A review of features, classi- fiers and datasets,” IEEE Trans. Audio Speech Lang. Process., vol. 23, no. 3, pp. 512–529, 2015
work page 2015
-
[8]
Multi-device dataset for acoustic scene classification and sound event detection,
T. Mesaros, T. Heittola, and T. Virtanen, “Multi-device dataset for acoustic scene classification and sound event detection,” in Proc. DCASE Workshop, 2018
work page 2018
Show all 25 references
-
[9]
Tau urban acoustic scenes 2022 mobile: Three-device dataset for Detection and Classification of Acoustic Scenes and Events 2025 Challenge acoustic scene classification,
T. Mesaros, T. Heittola, K. Drossos, and T. Virtanen, “Tau urban acoustic scenes 2022 mobile: Three-device dataset for Detection and Classification of Acoustic Scenes and Events 2025 Challenge acoustic scene classification,” DCASE2021 Challenge,” Tech. Rep., 2021
2022
-
[10]
Hierarchical acoustic scene classification with knowledge distillation and pre-trained dy- namic networks,
J. Bai, M. Wang, E.-L. Tan, J. J. S. Yeo, J. W. Yeow, S. Peksi, D. Shi, W.-S. Gan, and J. Chen, “Hierarchical acoustic scene classification with knowledge distillation and pre-trained dy- namic networks,” DCASE2024 Challenge, Tech. Rep., May 2024, technical Report
2024
-
[11]
and Convolutional Patch-ResNet (CP-ResNet) [12] have demonstrated strong performance in ASC and served as effective teachers for compact CNN-based architectures [8], and early inves- tigations into model frameworks for ASC [13, 14] have also offered guidance for this work. In ...
2025
-
[12]
Data- efficient acoustic scene classification using teacher-informed confusing class instruction,
S. Yeo, E.-L. Tan, J. Bai, S. Peksi, and W.-S. Gan, “Data- efficient acoustic scene classification using teacher-informed confusing class instruction,” DCASE2024 Challenge, Tech. Rep., May 2024, technical Report
2024
-
[13]
Knowledge distil- lation: A survey,
J. Gou, B. Yu, S. Maybank, and D. Tao, “Knowledge distil- lation: A survey,” International Journal of Computer Vision , vol. 129, pp. 1789–1819, 2021
2021
-
[14]
Efficient teacher-student training for acoustic scene classification using passt,
C. Schmid and et al., “Efficient teacher-student training for acoustic scene classification using passt,” DCASE2023 Chal- lenge,” Tech. Rep., 2023
2023
-
[15]
Fitnets: Hints for thin deep nets,
A. Romero, N. Ballas, S. E. Kahou, A. Chassang, C. Gatta, and Y . Bengio, “Fitnets: Hints for thin deep nets,” in Proc. ICLR, 2015
2015
-
[16]
Simkd: Semantic similarity-aware represen- tation for knowledge distillation,
M. Li, T. Wu, L. Xie, X. Jin, D. Liang, L. Chen, Y . Zhan, and G. Song, “Simkd: Semantic similarity-aware represen- tation for knowledge distillation,” Adv. Neural Inf. Process. Syst., vol. 34, pp. 30 157–30 169, 2021
2021
-
[17]
Efficient training of audio trans- formers with patchout,
K. Koutini, H. Eghbal-Zadeh, D. Widmann, C. Mertes, G. Schuller, and B. Schuller, “Efficient training of audio trans- formers with patchout,” arXiv preprint arXiv:2110.05069 , 2021
2021 arXiv
-
[18]
Receptive-field-regularized cnn vari- ants for acoustic scene classification,
K. Koutini, H. Eghbal-Zadeh, C. Mertes, G. Schuller, D. Wid- mann, and B. Schuller, “Receptive-field-regularized cnn vari- ants for acoustic scene classification,” in Proc. DCASE Work- shop, 2021
2021
-
[19]
Ciaic-ASC system for DCASE 2019 challenge task1,
M. Wang and R. Wang, “Ciaic-ASC system for DCASE 2019 challenge task1,” DCASE2019 Challenge, Tech. Rep., June 2019, technical Report
2019
-
[20]
Acoustic scene classifica- tion using multi-scale features and multi-level predictions,
J. Bai, E.-L. Tan, and W.-S. Gan, “Acoustic scene classifica- tion using multi-scale features and multi-level predictions,” DCASE2018 Challenge, Tech. Rep., November 2018. [Online]. Available: https://dcase.community/documents/ challenge2018/technical reports/DCASE2018 Bai 998.pdf
2018
-
[21]
Efficient acoustic scene classifi- cation with cp-mobile,
B. Murauer and B. Schuller, “Efficient acoustic scene classifi- cation with cp-mobile,” DCASE2023 Challenge,” Tech. Rep., 2023
2023
-
[22]
Domain generaliza- tion with mixstyle,
K. Zhou, Y . Yang, Y . Qiao, and T. Xiang, “Domain generaliza- tion with mixstyle,” in International Conference on Learning Representations (ICLR), 2021
2021
-
[23]
Micirp: Microphone impulse response project,
“Micirp: Microphone impulse response project,” https:// micirp.blogspot.com/, accessed: 2025-06-13
2025
-
[24]
Model soup: Aggregating models to improve few-shot gener- alization,
M. Wortsman, G. Ilharco, R. Wightman, C. Gordon, N. Car- lini, R. Taori, A. Dave, J. Shlens, L. Yatziv, D. Ganguli,et al., “Model soup: Aggregating models to improve few-shot gener- alization,” in International Conference on Machine Learning , 2022, pp. 23 965–23 982
2022
-
[25]
Two- step knowledge distillation for tiny speech enhancement,
R. D. Nathoo, M. Kegler, and M. Stamenovic, “Two- step knowledge distillation for tiny speech enhancement,” in ICASSP 2024–2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) . IEEE, 2024, pp. 10 141–10 145
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.