Uncovering Latent Depression Severity for Binary Depression Detection via Advantage-weighting Ranking


Abstract

Automatic depression detection using audio-visual data faces significant challenges, particularly in disentangling overlapping feature distributions and establishing robust decision boundaries. To address this, we propose a fine-grained multimodal framework featuring a temporal encoder and a mutual transformer to facilitate deep cross-modal fusion. Our core contribution is the Binary Advantage-weighting Ranking Loss, which optimizes the latent space distribution through two complementary mechanisms: Advantage-weighted Separation, which mines hard pairs by computing a pairwise prediction difference matrix and dynamically weighting them based on their difficulty; and Advantage-weighted Compactness, which minimizes intra-class variance to force features to cluster around their respective class centers. Extensive experiments on D-vlog and LMVD demonstrate that our model reconstructs the latent ordinal structure by prioritizing hard pairs, thereby achieving state-of-the-art performance.

1 Introduction and Related Work↩︎

Depression is a global mental health challenge. Automatic Depression Detection (ADD) using multimodal data (e.g., audio, visual) [1] has emerged as a promising non-invasive screening tool. While deep learning has improved feature extraction, detecting depression in user-generated content (e.g., vlogs) remains challenging due to the subtle and ambiguous boundaries between depressed and non-depressed behaviors. To capture these intricate temporal patterns, Transformer-based models [2], [3] have been widely adopted for their capability to model global dependencies through self-attention mechanisms. Furthermore, to fully leverage the complementary information across different streams, recent studies have emphasized deep cross-modal interactions, such as employing cross-attention scaling layers coupled with advanced tensor-based pooling methods to fuse multimodal representations [4]. More recently, Mamba-based architectures [5][7] have emerged as efficient alternatives, leveraging selective state space models to handle long sequences with linear computational complexity.

Beyond architectural innovation, a critical bottleneck lies in optimization objectives. Most current approaches [5], [8][10] rely on pointwise supervision (e.g., Binary Cross-Entropy, BCE), which treats depressed and non-depressed samples as independent nominal classes. This formulation neglects the latent ordinal nature of depression severity, a continuous spectrum in which severe cases should be ranked higher than mild or normal ones [11][14]. Although vlog datasets provide only discrete binary annotations, the underlying physiological and behavioral symptoms exist on a continuous scale. To bridge this gap, we adopt a pairwise learning paradigm [15]. By encouraging the model to learn a fine-grained ranking of depression risk, this approach effectively reconstructs the intrinsic ordinal relationships from coarse binary labels. Integrating ordinal learning into ADD is complicated by standard datasets that offer only binary labels rather than fine-grained severity scores. The resulting sparse supervision [11] hinders precise ranking inference. Furthermore, standard pairwise losses in affective computing typically treat all pairs equally. The uniform weighting is insufficient for vlog datasets where feature distributions are highly overlapping (e.g., depressed individuals hiding symptoms often share similar audio-visual cues with normal controls). A standard loss that averages easy and hard pairs fails to enforce a clear decision boundary in these ambiguous regions.

To address these aforementioned problems, we propose a Binary Advantage-weighting Ranking (BAR) Loss that builds upon Mutual Transformer-based multimodal fusion [16]. Unlike recent methods that perform hard instance mining by masking salient features within a single sample [17], our method addresses inter-sample ambiguity by formulating depression detection as a ranking problem to maximize the separation between positive and negative groups. The core innovation is an error-aware advantage-weighting mechanism that dynamically assigns higher weights to ambiguous hard pairs that violate the decision boundary. Driven by this mechanism, the BAR Loss imposes dual geometric constraints: it enforces inter-class separation (via a hinge margin) to establish a strict ranking order, while simultaneously promoting intra-class compactness (via variance reduction) to mitigate the issue of feature overlap. Our main contributions are as follows:

  • We introduce a pairwise learning paradigm to ADD, recovering the latent continuous spectrum of depression that is typically obscured by coarse binary labels.

  • We design the BAR Loss, which incorporates a dynamic advantage-weighting mechanism to prioritize hard pairs, effectively solving the challenges of sparse binary supervision and high feature overlap.

2 Methods↩︎

Figure 1: The forward pass model and core loss calculation.

Let the dataset be denoted as \(\mathcal{D} = \{ (X_a^i, X_v^i, y^i) \}_{i=1}^N\), where \(X_a \in \mathbb{R}^{T \times d_a}\) and \(X_v \in \mathbb{R}^{T \times d_v}\) represent the acoustic and visual feature sequences with length \(T\), and \(y^i \in \{0, 1\}\) is the binary label for depression detection.

2.1 Unimodal Temporal Encoding↩︎

To capture local temporal dependencies and align feature dimensions, we employ a dual-stream encoder consisting of 1D Convolutional Projections and Sequence Time-Delay Neural Networks (Seq-TDNN) [18]. For a modality \(m \in \{a, v\}\), denoting audio and video modalities, the input sequence \(X_m\) is first subjected to a projection to a hidden dimension \(d_h\): \[\begin{align} H_m^{(0)} = \text{GELU}(\text{LayerNorm}(\text{Conv1D}(X_m))) \end{align}\] Subsequently, the features pass through the Seq-TDNN encoder to capture long-range temporal contexts, yielding the encoded representations \(H_a, H_v \in \mathbb{R}^{T' \times d_h}\).

2.2 Mutual Transformer Fusion↩︎

To model the interplay between acoustic and visual modalities, we utilize a Mutual Transformer followed by a fusion encoder.

Cross-Modal Interaction: Before cross-modal fusion, the unimodal representations \(H_a\) and \(H_v\) are further refined through modality-specific Transformer encoders to obtain \(E_a\) and \(E_v\). We then compute three distinct attention streams to capture bidirectional and joint interactions. For instance, the mutual attention from audio to video (where audio acts as the query) is computed by deriving \(Q_a\) from \(E_a\), and \(K_v, V_v\) from \(E_v\): \[\begin{align} \text{Attention}_{a \rightarrow v} = \text{Softmax}\left(\frac{Q_a K_v^T}{\sqrt{d_k}}\right) V_v \end{align}\] Symmetrically, we compute \(\text{Attention}_{v \rightarrow a}\). Additionally, a joint self-attention stream \(\text{Attention}_{f \rightarrow f}\) is calculated based on the concatenated features \(F = [E_a, E_v]\). These streams are concatenated along the feature dimension to form a comprehensive cross-modal representation, which is then passed through an \(l\)-layer Transformer Encoder to obtain the final fused sequence.

Prediction: The final representation \(z\) is obtained by mean-pooling the final fused sequence. A Multi-Layer Perceptron (MLP) predicts the depression score \(s \in \mathbb{R}\), incorporating an initial dropout layer for regularization: \[\begin{align} h &= \text{ReLU}(W_1 \text{Dropout}(z) + b_1) \\ s &= W_2 \text{Dropout}(h) + b_2 \end{align}\] The probability of depression is given by \(p = \sigma(s)\), where \(\sigma\) is the sigmoid function.

Dynamic Thresholding: The BAR Loss explicitly imposes constraints of margin separation and intra-class compactness on the predictions. This optimization fundamentally reshapes the score distribution, potentially causing the optimal separating hyperplane to deviate from the default median.

To calibrate the decision boundary, we adopt a dynamic thresholding strategy [19], [20] during the inference phase. Let \(\mathcal{D}_{val} = \{(X_i, y_i)\}\) denote the validation set. We perform a grid search for the optimal threshold \(\tau^*\) that maximizes a specific evaluation metric \(\mathcal{M}\) (e.g., F1): \[\begin{align} \tau^* = \operatorname*{argmax}_{\tau \in [0, 1]} \mathcal{M}\left(y_{val}, \mathbb{I}(p_{val} > \tau)\right) \end{align}\] where \(p_{val}\) represents the predicted probabilities on the validation set, and \(\mathbb{I}(\cdot)\) is the indicator function. The final prediction for a test sample is determined by \(\hat{y}_{test} = \mathbb{I}(p_{test} > \tau^*)\), using the learned distribution instead of an arbitrary boundary.

2.3 Binary Advantage-weighting Ranking Loss↩︎

To address the distribution overlap between depressed and non-depressed samples, we propose the BAR Loss, which optimizes the decision boundary by mining hard pairs and regularizing the distribution of prediction scores.

Let \(\mathcal{S}_{pos} = \{s_i | y_i=1\}\) and \(\mathcal{S}_{neg} = \{s_j | y_j=0\}\) be the sets of prediction scores for positive and negative samples in a batch. We construct a pairwise difference matrix \(D_{ij} = s_i - s_j\). The relative difficulty matrix \(R\) is defined as: \[\begin{align} R_{ij} = \sigma(D_{ij}), \quad \forall s_i \in \mathcal{S}_{pos}, s_j \in \mathcal{S}_{neg} \end{align}\] We normalize \(R\) to obtain the advantage matrix \(A\): \[\begin{align} A_{ij} = \frac{R_{ij} - \mu_R}{\text{std}(R) + \epsilon} \end{align}\] where \(\mu_R\) and \(\text{std}(R)\) are the mean and standard deviation of \(R\), and \(\epsilon\) (e.g., \(10^{-6}\)) prevents division by zero. For numerical stability, we clip \(A_{ij}\) to the range \([-10, 10]\) before computing the weights. The weighting matrix \(W\) highlights hard pairs (where the model is less confident or wrong) and is computed as: \[\begin{align} W_{ij} = \text{ReLU}(-A_{ij}) \end{align}\] The separation loss forces a margin \(m\) between positive and negative scores, weighted by their difficulty: \[\begin{align} \mathcal{L}_{sep} = \frac{\sum_{i,j} W_{ij} \cdot \max(0, m - (s_i - s_j))}{\sum_{i,j} W_{ij} + \epsilon} \end{align}\]

Compactness: We minimize score distances to their own class means (\(\mu_{pos}, \mu_{neg}\)), weighted by the aggregated advantage weights \(\bar{W}\), reducing intra-class variance: \[\begin{align} \mathcal{L}_{com} = \frac{1}{2} \sum_{k \in \{pos, neg\}} \frac{1}{|\mathcal{S}_k|} \sum_{s \in \mathcal{S}_k} (1 + \beta \bar{W}_s) (s - \mu_k)^2 \end{align}\] where \(\beta\) controls the strength of mining hard pairs.

Distribution Regularization: To prevent representation collapse, we constrain the batch mean (\(\mu_p\)) and standard deviation (\(\sigma_p\)) of predicted probabilities to prior targets \(\mu_{target}=0.5\) and \(\sigma_{target}=0.5\), which serve as neutral anchors for a balanced binary distribution and encourage ideal entropy by pushing sigmoid predictions toward 0 and 1. \[\begin{align} \Delta\mu = \mu_p - \mu_{target},\quad \Delta\sigma = \sigma_p - \sigma_{target} \end{align}\] Distribution Regularization Loss is calculated as: \[\begin{align} \mathcal{L}_{reg} = \max(0, \Delta\mu^2 - \gamma) + \max(0, \Delta\sigma^2 - \gamma) \end{align}\] where \(\gamma\) is a relaxation margin.

Total Loss: It is a weighted sum of \(\mathcal{L}_{BCE}\) and \(\mathcal{L}_{BAR}\): \[\begin{align} \mathcal{L}_{t} = \mathcal{L}_{BCE} + \lambda_{BAR}(\mathcal{L}_{sep} + \lambda_{com} \mathcal{L}_{com} + \lambda_{reg} \mathcal{L}_{reg}) \end{align}\]

3 Experiments, Results, and Discussion↩︎

3.1 Datasets↩︎

To evaluate the performance of our proposed method in real-world scenarios, we utilized two large-scale multimodal vlog datasets. Unlike traditional laboratory-controlled datasets, both consist of videos collected in the wild, capturing spontaneous non-verbal behaviors of individuals in their daily lives.

  • D-vlog [21]: This dataset comprises 961 vlogs (approximately 160 hours) collected from YouTube, featuring 816 distinct speakers. The samples are categorized based on self-reported depression symptoms within the vlogs, resulting in 555 depressed and 406 non-depressed videos.

  • LMVD [3]: This dataset contains 1,823 video samples (approximately 214 hours) collected from four major multimedia platforms: Sina Weibo, Bilibili, TikTok, and YouTube. It includes data from 1,475 participants, balanced between 908 depressed and 915 non-depressed samples, annotated by volunteers and verified by clinicians.

3.2 Implementation Details↩︎

Based on Optuna [22], we defined a reasonable range and applied a random search with a limited number of trials (50) to optimize the hyperparameters and set the optimization objective as F1. Detailed hyperparameters are shown in Table 1. Training loss curves of BCE and BAR Loss are shown in Figure 2.

Table 1: Comparison of hyperparameters on different datasets. Values are rounded to three significant figures for clarity.
Parameter D-vlog LMVD
Optimizer AdamW AdamW
Batch Size 32 16
Seed 123 123
Epochs 150 100
Learning Rate 4.65 × 10−5 1.76 × 10−5
Dropout 3.07 × 10−1 4.18 × 10−1
Weight Decay 2.51 × 10−4 4.81 × 10−3
Fully Connected Layer Size 256 512
Separation Loss Margin (\(m\)) 4.06 × 10−1 1.15 × 100
Compactness Loss Weight (\(\lambda_{com}\)) 4.89 × 10−2 4.51 × 10−2
Advantage-weighting Beta (\(\beta\)) 7.60 × 10−1 1.03 × 100
BAR Loss Weight (\(\lambda_{BAR}\)) 8.39 × 10−1 5.61 × 10−1
Regularization Loss Weight (\(\lambda_{reg}\)) 7.16 × 10−2 2.21 × 10−4
Regularization Loss Margin (\(\gamma\)) 4.04 × 10−2 3.76 × 10−2

4pt

Figure 2: Training loss curves on LMVD.

3.3 Main Results↩︎

Table 2 presents the quantitative comparison with baselines. On the LMVD dataset, our proposed framework outperforms all baselines, achieving the highest results across all metrics (F1: 77.01). On the D-vlog dataset, it also demonstrates superior performance, securing the best metrics (F1: 77.66). Although DepMamba [5] achieves a marginally higher recall, we maintain a better balance between precision and recall, resulting in a superior overall F1. Results validate the effectiveness and robustness of our framework across diverse data distributions.

Table 2: Performance Comparison of Different Methods. The best results are in bold and the second best results are underlined.
D-vlog LMVD
2-6 (lr)7-11 Accuracy Precision Recall F1 Average Accuracy Precision Recall F1 Average
Bi-LSTM [23] 64.47 67.68 75.34 71.10 69.65 66.85 65.81 70.33 67.83 67.71
TBN [24] 63.21 69.99 65.31 67.16 66.42 67.94 67.06 70.33 68.56 68.47
STST [25] 61.79 64.67 77.51 69.77 68.44 67.76 69.20 64.01 66.23 66.80
DepTrans [21] 62.89 64.43 84.82 72.54 71.17 61.93 60.36 72.16 65.08 64.88
TAMFN [26] 67.45 68.08 82.93 74.75 73.30 70.49 71.15 68.86 69.84 70.09
STE-Mamba [6] 69.34 68.35 86.80 76.49 75.25 71.58 68.57 79.12 73.47 73.19
DepMamba [5] 68.87 68.19 86.99 76.44 75.12 72.13 70.18 76.56 73.20 73.02
CAF-Mamba [7] 72.17 73.88 80.49 77.04 75.90 74.32 72.92 76.92 74.87 74.76
Ours 71.23 70.67 86.18 77.66 76.44 76.50 75.00 79.12 77.01 76.91

3.4 Ablation Study↩︎

a
b

Figure 3: T-SNE visualization of ablation study on LMVD. W/o denotes removing the component.. a — Full model, b — w/o advantage-weighting

Table 3: Ablation study. W/o denotes removing the component.
Methods D-vlog LMVD
w/o mutual transformer (simple concat) 73.38 71.00
w/o advantage-weighting 70.23 73.98
Full model 76.44 76.91

In Figure 3, removing advantage-weighting places more samples near the decision boundary, making the model more susceptible to hard pair misclassification. This vulnerability arises because hard pairs typically occupy regions of high feature overlap where class boundaries are ill-defined, and their proximity to decision surfaces amplifies the impact of minor variations that can flip classification outcomes. Table 3 further quantifies these contributions. Removing the mutual transformer leads to a drop in average performance (e.g., -5.91 on LMVD), underscoring the importance of deep cross-modal interaction. Similarly, omitting advantage-weighting results in a marked decline (e.g., -6.21 on D-vlog). These results confirm that fine-grained feature fusion and geometry-aware ranking are synergistic and mutually reinforcing.

3.5 Analysis of Advantage-weighting Mechanism↩︎

Figure 4: Evolution of advantage-weighting during training. The blue solid line represents the linear regression trend line.
Figure 5: Training dynamics of hard pairs.

To validate our proposed advantage-weighting mechanism, which uses multimodal feature similarity to identify hard pairs, we visualize how training dynamics evolve. We focus on cross-class pairs with highly similar multimodal features, as these are inherently difficult for the model to distinguish. Throughout training, we track the relationship between the cosine similarity of such pairs and the advantage weights assigned by \(\mathcal{L}_{BAR}\).

Figure 4 shows how the advantage weight distribution evolves. Initially, the correlation with similarity of features is near zero (\(r=-0.047\)), since the randomly initialized model cannot effectively distinguish dissimilar pairs, leading to random weight assignments across similarity values. As training progresses, a clear positive correlation emerges. By epoch 15, the Pearson correlation coefficient increases significantly to \(0.327\). The linear regression trend line demonstrates a steep positive slope, indicating that \(\mathcal{L}_{BAR}\) dynamically focuses its intensity on pairs with high multimodal similarity. This empirically confirms our hypothesis: as the model resolves easy patterns, the remaining hard pairs are predominantly those with entangled multimodal features, which our mechanism correctly identifies and penalizes.

Figure 5 provides a quantitative view of this learning process. We monitored the count of active hard pairs (with non-zero advantage weights) and their average cosine similarity against the stable baseline of total pairs (\(\approx\) 8,300). Two key trends illustrate the effectiveness. First, the number of active hard pairs drops significantly from 4,184 to 2,463 during training. This indicates that the mechanism successfully resolves ambiguous boundaries for a majority of samples. Second, this reduction in quantity is accompanied by a qualitative shift in the feature space. The average cosine similarity of the remaining hard pairs decreases steadily from 0.77 to 0.57. The joint decline serves as strong evidence that the advantage-weighting mechanism effectively pushes the latent representations of conflicting classes apart, rather than merely filtering out easy ones.

Overall, the advantage-weighting mechanism identifies high-similarity pairs as hard ones, actively optimizes the feature manifold to reduce this similarity, and thus enhances the discriminative power of the multimodal representations.

3.6 Hyperparameter Stability Experiments↩︎

We investigate the impact of the separation margin \(m\) in Table 4, as Optuna’s [22] parameter importance analysis identified it as the most influential hyperparameter. The model achieves optimal performance at \(m=1.15\), forming an inverted U-shaped curve. This value aligns with the optimal trial found by our automatic hyperparameter search. Lower margins (\(m=0.75\)) provide insufficient discriminative power, while higher margins (\(m=1.5\)) enforce overly strict constraints that degrade feature learning. The optimal value of \(1.15\), identified via Optuna [22], balances these factors and is used for the LMVD dataset.

Table 4: Hyperparameter stability experiments on LMVD.
\(m\) Accuracy Precision Recall F1 Average
0.75 72.13 71.74 72.53 72.13 72.13
1.0 71.04 70.21 72.53 71.35 71.28
1.15 76.50 75.00 79.12 77.01 76.91
1.25 75.41 73.47 79.12 76.19 76.05
1.5 73.22 73.33 72.53 72.93 73.00

4 Conclusion and Future Work↩︎

We presented a fine-grained multimodal framework for ADD that bridges the gap between discrete binary labels and the continuous spectrum of depression severity. Our key contribution, the BAR Loss, effectively mitigates the issues of reward sparsity and feature overlap by explicitly modeling ordinal rankings and focusing on hard examples. Experimental results show that our method outperforms baselines on the LMVD dataset and achieves comparable performance on D-vlog. This study highlights the potential of pairwise learning and advantage-weighting in recovering latent ordinal information, offering a robust solution for non-invasive mental health screening.

Our evaluation currently focuses on in-the-wild datasets. Future work will test BAR Loss on clinical datasets (e.g., DAIC-WoZ [27]) to verify its generalizability and robustness against domain shifts from social media to clinical settings.

5 Acknowledgment↩︎

This work is supported by the Guangdong Philosophy and Social Sciences Planning Project (No. GD26YJY34).

6 Generative AI Use Disclosure↩︎

In the preparation of this manuscript, the authors used generative AI tools (e.g., Gemini) to polish the text, instead of producing a significant part of the manuscript.

References↩︎

[1]
W. B. Tahir, S. Khalid, S. Almutairi, M. Abohashrh, S. A. Memon, and J. Khan, “Depression detection in social media: A comprehensive review of machine learning and deep learning techniques,” IEEE Access, vol. 13, pp. 12789–12818, 2025, doi: 10.1109/ACCESS.2025.3530862.
[2]
F. Liu, S. Zhao, K. Yin, T. Xu, and E. Chen, “DepFormer: A unified framework with bimodal collaborative transformer for depression detection,” in Proceedings of the 33rd ACM international conference on multimedia, 2025, pp. 13930–13936.
[3]
L. He et al., “LMVD: A large-scale multimodal vlog dataset for depression detection in the wild,” Information Fusion, vol. 126, p. 103632, 2026, doi: https://doi.org/10.1016/j.inffus.2025.103632.
[4]
L. Ilias and D. Askounis, A Cross-Attention Layer coupled with Multimodal Fusion Methods for Recognizing Depression from Spontaneous Speech,” in Interspeech 2024, 2024, pp. 912–916, doi: 10.21437/Interspeech.2024-188.
[5]
J. Ye, J. Zhang, and H. Shan, “DepMamba: Progressive fusion mamba for multimodal depression detection,” in ICASSP 2025 - 2025 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2025, pp. 1–5, doi: 10.1109/ICASSP49660.2025.10889975.
[6]
Z. Lin, Y. Wang, Y. Zhou, F. Du, and Y. Yang, “Ste-mamba: Automated multimodal depression detection through emotional analysis and spatio-temporal information ensemble,” in ICASSP 2025-2025 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2025, pp. 1–5.
[7]
B. Zhou, M.-A. Fiedler, and A. Al-Hamadi, “CAF-mamba: Mamba-based cross-modal adaptive attention fusion for multimodal depression detection,” in ICASSP 2026 - 2026 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2026, pp. 12107–12111, doi: 10.1109/ICASSP55912.2026.11465117.
[8]
B. Zhou, M.-A. Fiedler, and A. Al-Hamadi, “STCM-mamba: Multimodal spatio-temporal cross-modal mamba for depression detection,” IEEE Access, vol. 13, pp. 189494–189505, 2025, doi: 10.1109/ACCESS.2025.3627778.
[9]
X. Li et al., “MPCF: Multi-stage progressive cross-modal fusion for depression severity prediction using audio-visual modalities,” Knowledge-Based Systems, vol. 337, p. 115423, 2026, doi: https://doi.org/10.1016/j.knosys.2026.115423.
[10]
S. Shabana and V. C. Bharathi, “Se-GCaTCT: Correlation based optimized self-guided cross-attention temporal convolutional transformer for depression detection with effective optimization strategy,” Biomedical Signal Processing and Control, vol. 112, p. 108561, 2026, doi: https://doi.org/10.1016/j.bspc.2025.108561.
[11]
L. Zuo and M.-W. Mak, “Leveraging ordinal information for speech-based depression classification,” Interspeech 2025, 2025, [Online]. Available: https://api.semanticscholar.org/CorpusID:281257986.
[12]
S. Jayawardena, J. Epps, and E. Ambikairajah, “Support vector ordinal regression for depression severity prediction,” in 2018 IEEE international conference on information and automation for sustainability (ICIAfS), 2018, pp. 1–5, doi: 10.1109/ICIAFS.2018.8913383.
[13]
S. Jayawardena, J. Epps, and E. Ambikairajah, “Ordinal logistic regression with partial proportional odds for depression prediction,” IEEE Transactions on Affective Computing, vol. 14, no. 1, pp. 563–577, 2020.
[14]
H. P. Martínez, G. N. Yannakakis, and J. Hallam, “Don’t classify ratings of affect; rank them!” IEEE Transactions on Affective Computing, vol. 5, no. 3, pp. 314–326, 2014, doi: 10.1109/TAFFC.2014.2352268.
[15]
S. Mai, Y. Zeng, and H. Hu, “Learning by comparing: Boosting multimodal affective computing through ordinal learning,” in Proceedings of the ACM on web conference 2025, 2025, pp. 2120–2134, doi: 10.1145/3696410.3714841.
[16]
M. R. Haque, Md. M. Islam, S. M. Taslim Uddin Raju, H. Altaheri, L. Nassar, and F. Karray, “MDD-net: Multimodal depression detection through mutual transformer,” in 2025 IEEE international conference on systems, man, and cybernetics (SMC), 2025, pp. 6592–6599, doi: 10.1109/SMC58881.2025.11342588.
[17]
Y. Zhou et al., Emotion-Guided Graph Attention Networks for Speech-Based Depression Detection under Emotion-Inducting Tasks,” in Interspeech 2025, 2025, pp. 469–473, doi: 10.21437/Interspeech.2025-1597.
[18]
B. Desplanques, J. Thienpondt, and K. Demuynck, “ECAPA-TDNN: Emphasized channel attention, propagation and aggregation in TDNN based speaker verification,” in Interspeech 2020, Oct. 2020, pp. 3830–3834, doi: 10.21437/interspeech.2020-2650.
[19]
Z. C. Lipton, C. Elkan, and B. Naryanaswamy, “Optimal thresholding of classifiers to maximize F1 measure,” in Machine learning and knowledge discovery in databases, 2014, pp. 225–239.
[20]
V. S. Sheng and C. X. Ling, “Thresholding for making classifiers cost-sensitive,” in Proceedings of the 21st national conference on artificial intelligence - volume 1, 2006, pp. 476–481.
[21]
J. Yoon, C. Kang, S. Kim, and J. Han, “D-vlog: Multimodal vlog dataset for depression detection,” Proceedings of the AAAI Conference on Artificial Intelligence, vol. 36, no. 11, pp. 12226–12234, 2022, doi: 10.1609/aaai.v36i11.21483.
[22]
T. Akiba, S. Sano, T. Yanase, T. Ohta, and M. Koyama, “Optuna: A next-generation hyperparameter optimization framework,” CoRR, vol. abs/1907.10902, 2019, [Online]. Available: http://arxiv.org/abs/1907.10902.
[23]
S. Yin, C. Liang, H. Ding, and S. Wang, “A multi-modal hierarchical recurrent neural network for depression detection,” in Proceedings of the 9th international on audio/visual emotion challenge and workshop, 2019, pp. 65–71, doi: 10.1145/3347320.3357696.
[24]
E. Kazakos, A. Nagrani, A. Zisserman, and D. Damen, “EPIC-fusion: Audio-visual temporal binding for egocentric action recognition,” in 2019 IEEE/CVF international conference on computer vision (ICCV), 2019, pp. 5491–5500, doi: 10.1109/ICCV.2019.00559.
[25]
Y. Tao, M. Yang, Y. Wu, K. Lee, A. Kline, and B. Hu, “Depressive semantic awareness from vlog facial and vocal streams via spatio-temporal transformer,” Digital Communications and Networks, vol. 10, no. 3, pp. 577–585, 2024, doi: https://doi.org/10.1016/j.dcan.2023.03.007.
[26]
L. Zhou, Z. Liu, Z. Shangguan, X. Yuan, Y. Li, and B. Hu, “TAMFN: Time-aware attention multimodal fusion network for depression detection,” IEEE Transactions on Neural Systems and Rehabilitation Engineering, vol. 31, pp. 669–679, 2023, doi: 10.1109/TNSRE.2022.3224135.
[27]
J. Gratch et al., “The distress analysis interview corpus of human and computer interviews.” in Lrec, 2014, vol. 14, pp. 3123–3128.