Research Article

Development of Interactive Artificial Intelligence Tools for Personalized Somatosensory and Rhythm Evaluation in Intelligent Music Education Platforms

DOI:

10.3791/69058

December 19th, 2025

 , 

Corresponding Authors: Wang Min <wm342349@163.com>

In This Article

Summary

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

This study presents a reproducible somatosensory music-learning protocol combining residual LSTM recognition with TRPO for adaptive difficulty. It covers preprocessing, FFT features, training, personalization, and evaluation. On a public dataset, the hybrid model reached Acc 95.0 / P 93.5 / R 94.6 / F1 94.2 over three subject-disjoint folds.

Abstract

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

Traditional music education often lacks interactivity and real-time adaptability, especially in remote settings. This study introduces a personalized somatosensory framework, TRPO-ResLSTM, for music education platforms. The system captures movement, rhythm, and response time, preprocesses data with Wiener filtering and Z-score normalization, and extracts features via FFT. Gesture recognition is performed by DeepRes-LSTM, while adaptive difficulty is regulated by TRPO reinforcement learning. Incremental learning ensures personalization across sessions. Experiments on a publicly available, anonymized gesture-rhythm dataset (n = 2,730 samples; training/validation/test split 70/15/15) show superior performance over multimodal baselines, achieving 95% accuracy, 93.5% precision, 94.6% recall, and 94.2% F1-score. Ablation studies confirm the individual contributions of TRPO and Res-LSTM. The innovation of this protocol lies in integrating reinforcement learning with residual temporal modeling for adaptive gesture recognition, enabling stable yet personalized learning. This work demonstrates that adaptive, gesture-responsive tools can enhance engagement, personalization, and progressive skill development in intelligent music education. Limitations include reliance on a single dataset and the need for real-learner validation, which define directions for future work.

Introduction

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

Recent advances in artificial intelligence (AI) and somatosensory technology are reshaping music education by enabling learners to interact with music through body movements, where gestures are translated into notes, rhythms, or controls for virtual instruments1,2. These interactive features enhance engagement, retention, and creativity compared to traditional classroom instruction, and somatosensory tools allow students to practice rhythm, coordination, and expression through body percussion, conducting gestures, and ensemble simulations3. Combined with AI-driven adaptive pathways, learners receive individualized content, real-time feedback, and progressive skill development that improve motivation and outcomes4,5.

Despite these developments, existing platforms often rely on limited modalities, lack continuity of personalization, or fail to adapt to diverse cultural and physical learning styles6,7. Traditional approaches also fall short in delivering real-time, data-driven adjustments that reflect the learner's evolving capabilities. For example, motion capture and wearable devices can generate rich datasets but are often underutilized in adaptive instruction8,9. Furthermore, while music libraries and learning management systems have expanded accessibility, they rarely provide dynamic personalization across sessions, which is critical in multicultural and heterogeneous learning contexts10.

To address these gaps, this study proposes a novel Trust Region Policy Optimized Deep Residual Long Short-Term Memory (TRPO-ResLSTM) framework for music education platforms11. The system integrates advanced preprocessing methods, including Wiener filtering and Z-score normalization, with Fast Fourier Transform for frequency-domain feature extraction. Res-LSTM provides robust recognition of gestures and temporal sequences, while TRPO reinforcement learning dynamically adjusts task difficulty in response to learner performance. Incremental learning further strengthens personalization by updating models across sessions.

Experiments were conducted on the Kaggle music gesture and rhythm dataset comprising 2,730 samples, split into training, validation, and testing subsets. Results show that the proposed method consistently outperforms baseline multimodal architectures, achieving accuracy, precision, recall, and F1 values in the range of 93%-95%. Ablation analyses confirm the effectiveness of both TRPO and Res-LSTM components. By enhancing rhythm accuracy, user engagement, and policy stability in real-time, the framework provides a practical solution for improving music education efficiency in resource-constrained and remote learning environments. Related work on AI-driven music education has highlighted the potential of somatosensory engagement, adaptive learning personalization, and even applications in music therapy and automated composition12,13. This study builds on these findings by offering a reproducible protocol that combines reinforcement learning with deep temporal modeling to advance the field of intelligent music education.

Protocol

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

This study analyzed anonymized, publicly available data and did not involve human subjects or animals. Therefore, additional ethical approval was not required.

1. Overview

This protocol describes a reproducible framework for somatosensory music education based on deep residual LSTM recognition and Trust Region Policy Optimization (TRPO) for adaptive difficulty control. It includes dataset preparation, preprocessing, frequency-domain feature extraction, model architecture, training, personalization, and evaluation. Figure 1 illustrates the end-to-end workflow14.

2. Dataset

A publicly available, anonymized music gesture and rhythm dataset was used that records body responses to auditory cues such as tempo and beat intensity. The dataset provides multimodal time-series data suitable for studying rhythm execution and learning behaviors. Each record contains movement patterns, timing, and rhythm accuracy measures, response feedback, and task completion time. As the dataset was fully anonymized and publicly accessible, no additional institutional review board approval was required15. For experiments, data were partitioned by subject into training, validation, and test subsets to avoid identity leakage; detailed statistics and split ratios are reported in Table 1. Three subject-disjoint folds were used, fixed random seeds across all runs, and identical preprocessing for all model variants to ensure comparability16.

The dataset yielded a balanced distribution of rhythmic gestures, with training, validation, and test partitions showing comparable variance in timing and motion features. Descriptive statistics (median ± IQR) for tempo deviation and motion amplitude were comparable across splits, indicating minimal covariate shift.

3. Data preprocessing

  1. Z-score normalization
    Raw data were standardized using Z-score normalization. For channel c and time t:
    Standard score formula, \( Z_{c,t} = \frac{x_{c,t} - \mu_c}{\sigma_c} \), statistics equation.    (1)
    We computed μc and σc on the training set only and applied them to validation and test sets to avoid leakage17.
    After normalization, all channels showed near-zero mean and unit variance, ensuring comparability across participants. Batch-wise diagnostics confirmed no drift between folds.
  2. Wiener filtering
    To suppress noise, we applied a Wiener filter in the frequency domain:
    Mathematical equations for signal processing, showing H(k)=S_xx(k)/(S_xx(k)+S_nn(k)).     (2)
    where Y(k) is the observed spectrum, \hat{X}(k) is the denoised estimate, and Sxx(k), Snn(k) denote signal/noise power spectral densities. We used a window length and overlap consistent with downstream FFT to maintain phase coherence18.
    Wiener filtering reduced high-frequency noise by ~30% while retaining dominant rhythmic components. Signal-to-noise ratio improved without attenuating beat-locked peaks.
  3. Feature extraction (FFT)
    Short-time FFT features were used on overlapping windows:
    Discrete convolution equation in signal processing, mathematical formula for digital signal analysis.    (3)
    Extracted descriptors included dominant frequency, spectral flux, and band-energy ratios. Tempo-locked peak prominence and inter-peak variability were also computed to capture micro-timing stability19.
    FFT revealed clear spectral peaks aligned with musical tempo (2-3 Hz), confirming rhythmic structure in the dataset. Peak-to-noise ratios exceeded 6-8 dB on average in correctly executed trials.

4. Model: TRPO-ResLSTM

  1. Residual LSTM (ResLSTM)
    Temporal patterns were modeled using stacked LSTMs with residual shortcuts:
    LSTM equations; mathematical formulas on neural networks; diagram for computational model understanding. (4)
    where P is identity or a projection to match dimensions. Residual connections mitigate vanishing gradients and enable deeper temporal stacks while preserving training stability20.
    Residual connections improved gradient flow and classification accuracy compared to plain LSTM. Ablations showed +0.7-1.1 pp accuracy over non-residual stacks at comparable parameter counts.
  2. Trust Region Policy Optimization (TRPO)
    TRPO controlled task difficulty dynamically. The personalized reward was:
    Economic equation for dynamic analysis, r_t = αs_t - βΔtempo_t, formula representation.   (5)
    with success score st, tempo deviation Δtempot, gesture dissimilarity dt (e.g., DTW distance or classification loss), and a switch indicator ut (penalizing frequent difficulty changes). We optimized a trust-region objective with a KL constraint:
    <div lang="en">Optimization equation; max θ, L(θ); includes policy π, constraint DKL; mathematical expression.</div>    (6)
    1. Reinforcement-learning setup and notation
      Adaptive difficulty was formulated as a finite-horizon MDP in which the state st aggregates windowed somatosensory features (accelerometer channels, hand-joint positions, rhythm descriptors after normalization, Wiener filtering, and FFT), and the action at is a discrete difficulty level controlling tempo tolerance and gesture strictness. The reward rt balances task success, timing deviation, and engagement, with a small penalty on excessive difficulty switching to discourage oscillation. Policy updates follow TRPO with a KL-divergence constraint for conservative steps. In Eqs. (5-6), g(y,x) denotes the task-specific loss gradient, W(ζ) is an L2 regularizer over parameters ζ, πθ is the stochastic policy with parameters θ, DKL defines the trust region, γ is the discount factor, and δ is the trust-region radius. Hyperparameters α,β,γ,δ were selected via grid search on the validation split (ranges in Table 2) to balance stability and responsiveness; early stopping was triggered when the average KL reached 0.921.
    2. Rationale versus alternatives
      TRPO's KL-constrained on-policy updates were preferred for small, session-level batches and non-stationary learner behavior; PPO/SAC remain promising and will be benchmarked in future work22.
      TRPO achieved stable learning and smoother difficulty adjustment than baseline controllers, with consistent convergence. Learning curves showed monotonic improvement and earlier KL stabilization for TRPO-ResLSTM than for single-component baselines.
  3. Personalization and session updates
    Incremental updates refined both ResLSTM and TRPO models after each user session with small learning rates and rehearsal buffers. We used a small rehearsal buffer of recent trials per learner to prevent drift, and limited per-session updates to a fixed budget to preserve stability. Personalization effectiveness was measured as the relative gain in F1 between a learner's first and last session within a fixed horizon23.
    Session-to-session personalization increased user-specific accuracy by 2%-3% without catastrophic forgetting. Gains were largest for learners with mid-range baseline accuracy, suggesting headroom for adaptive scaffolding.
  4. Algorithm and implementation
    The complete pseudo-code ("Algorithm 1: TRPO-ResLSTM") and a reference Python 3.10.1 implementation are provided as. All figures and tables include measurement definitions, error bars, and sample sizes. We report mean ± SD over three subject-disjoint folds and assess inter-model differences with repeated-measures ANOVA or Friedman tests as appropriate, with multiplicity-adjusted post-hoc comparisons (α = 0.05). To ensure reproducibility, we list package versions and GPU/CPU specs in the Table of Materials and include a README with environment and seed configuration24.
    The protocol consistently reproduced improvements over multimodal baselines, validating its reproducibility. Independent re-runs across seeds yielded <0.5 pp variance in accuracy for the integrated model.

Results

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

Experimental Setup
The TRPO-ResLSTM framework was implemented in Python 3.10.1 with GPU acceleration. The computing environment, motion-sensing hardware, and Python libraries are listed in the Table of Materials. Data were split into subject-disjoint training/validation/test partitions as shown in Table 1 (70/15/15). Key hyperparameters are summarized in Table 2. Three models were evaluated: baseline TRPO, baseline ResLSTM, and the integrated TRPO-ResLSTM. This setup enabled consistent assessment of gesture recognition, adaptive difficulty control, and personalization in music-learning scenarios.

Confusion Matrix
Classification performance was first examined using a confusion matrix on the held-out test set (Figure 2). Rows denote true labels and columns denote predictions; values are row-normalized. Strong diagonal dominance indicates robust recognition across gesture categories, with only minor confusions among closely related rhythmic patterns.

Feature importance analysis
To understand model behavior the importance of permutation-based features was estimated on validation folds (Figure 3). Accelerometer-derived motion signals and hand-joint positions were most informative, followed by temporal rhythm features. These results support somatosensory, gesture-driven interaction as a core mechanism for personalized feedback in music education.

Task completion time distribution
System responsiveness was assessed via the distribution of task completion times (Figure 4). The histogram shows a unimodal profile with stable dispersion across learners, indicating that the protocol maintains consistent task difficulty and throughput under TRPO-based adaptation. For interpretability, we report the median and interquartile range in the legend.

Performance Metrics
On the test set, TRPO-ResLSTM achieved an accuracy of 95.0%, precision 93.5%, recall 94.6%, and F1-score 94.2% (Figure 5). Further, report education-oriented outcomes were reported: rhythm-synchronization accuracy 92.6%, adaptive-response 90.8%, personalization effectiveness 91.5%, and retention rate 85.3%.

Definitions: rhythm-synchronization accuracy quantifies temporal alignment with the target beat; adaptive-response measures the proportion of trials in which the difficulty is correctly re-estimated following a performance change; personalization effectiveness is the relative improvement in recognition F1 after repeated sessions for the same learner; retention rate is the proportion of learners returning for a subsequent session within a predefined interval.

All values are reported as mean ± SD over 3 subject-disjoint folds. Inter-model differences were assessed with repeated-measures ANOVA (or Friedman tests when normality was violated) followed by multiplicity-adjusted post-hoc comparisons; p < 0.05 was considered significant.

Comparative and ablation analysis
Ablation results (Table 3, Figure 6) show complementary benefits from combining trust-region reinforcement learning with residual temporal modeling. TRPO provided stable policy updates but limited representational power for fine-grained gestures; ResLSTM captured temporal dynamics yet lacked on-the-fly adaptation. The integrated TRPO-ResLSTM delivered the best balance, reaching 95.0% accuracy and the highest precision/recall/F1 across folds while preserving real-time adaptability and personalization. Theoretical distinctions from alternative RL methods (e.g., PPO, SAC) were discussed in the Discussion; a full empirical benchmarking lies beyond the scope of this dataset and is identified as future work.

DATA AVAILABILITY:
The data used in the study are available from the authors upon reasonable requests.

Music gesture recognition process diagram: FFT, TRPO-LSTM method, Wiener filter data preprocessing.
Figure 1: System workflow for adaptive, personalized music learning. Pipeline of data collection, preprocessing (Z-score normalization; Wiener filtering), FFT-based feature extraction, gesture recognition with ResLSTM, adaptive difficulty control with TRPO, and incremental personalization. Arrows indicate data flow between modules. Please click here to view a larger version of this figure.

Confusion matrix diagram; showing classification accuracy for sound recognition of clap, drum, snap.
Figure 2: Confusion matrix of gesture recognition on the test set. Row-normalized confusion matrix (n = 409 samples). Rows: true labels; columns: predictions. Colorbar indicates proportion (0-1). Diagonal entries reflect per-class recall; off-diagonals highlight confusions among rhythmically similar categories. Please click here to view a larger version of this figure.

Top 10 features bar chart; importance scores; data analysis; gyro, joint, acc variables comparison.
Figure 3: Permutation-based feature importance across sensor inputs. Relative importance (0-1) for accelerometer signals, hand-joint positions, and rhythm features, computed via permutation on validation folds. Bars show mean ± SD over 3 folds. Please click here to view a larger version of this figure.

Task completion time distribution graph; frequency vs time seconds; statistical data analysis.
Figure 4: Distribution of task completion times. Histogram of task durations (seconds) across learners (n = 409 tasks). The kernel-density overlay summarizes central tendency and spread. Reported in the panel are median and IQR; bin width and KDE bandwidth follow standard automatic rules. Please click here to view a larger version of this figure.

3D bar chart showing metrics like retention rate, personalization versus values ranging 75-100%.
Figure 5: Model performance and education-oriented outcomes. Bars show mean ± SD over 3 folds. Reported metrics: gesture-recognition accuracy, precision, recall, F1; rhythm-synchronization accuracy; adaptive-response; personalization effectiveness; retention rate. See Results for formal definitions and statistical testing. Please click here to view a larger version of this figure.

Bar chart comparing TRPO, ResLSTM, and TRPO-ResLSTM methods on F1-Score, Precision, Accuracy, Recall.
Figure 6: Comparative performance of TRPO, ResLSTM, and TRPO-ResLSTM. Accuracy, precision, recall, and F1 for the three models (mean ± SD, 3 folds). Significance marks denote post-hoc comparisons after repeated-measures ANOVA/Friedman tests (adjusted p < 0.05). Please click here to view a larger version of this figure.

Table 1: Dataset partitioning (subject-disjoint). Counts and proportions (%) for training/validation/test splits; no subject appears in more than one split. Please click here to download this Table.

Table 2: Hyperparameters for TRPO-ResLSTM. Batch size, learning rate, LSTM hidden units, dropout, discount factor (γ), trust-region radius (δ), optimization settings, and early-stopping criteria. Please click here to download this Table.

Table 3: Comparative results across models. Test-set accuracy, precision, recall, and F1 (mean ± SD, 3 folds). The integrated TRPO-ResLSTM outperforms both baselines, as shown in Figure 6. Please click here to download this Table.

Discussion

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

This study proposes a hybrid protocol, TRPO-ResLSTM, that integrates reinforcement learning and residual temporal modeling for gesture-based music education. By combining the stability of Trust Region Policy Optimization (TRPO) with the sequence-learning capacity of residual LSTMs, the framework delivers real-time gesture recognition together with adaptive difficulty control, enabling personalized feedback and progressive skill acquisition25. To ensure reproducibility, subject-disjoint folds, fixed seeds, and identical preprocessing across models were used, and the mean ± SD was reported over three folds with significance testing aligned to the Results section.

The contribution of this work lies in advancing personalized and interactive learning environments. Unlike systems that rely on static instruction or unimodal recognition, TRPO-ResLSTM dynamically adapts to learners' rhythmic and movement patterns, which supports engagement and retention in practice-oriented session26. The education-oriented indicators we report (rhythm synchronization, adaptive response, personalization effectiveness, retention) operationalize learner-centric outcomes rather than only ML metrics, and they map to recent calls for multimodal analytics in authentic learning setting27.

Prioritization of TRPO was required because KL-constrained on-policy updates offer stable adaptation under small, session-level batches and non-stationary learner behavior that is typical of classroom and remote use. This conservative update rule reduces the risk of policy oscillation when difficulty is adjusted between consecutive actions. Alternative algorithms may also be viable: PPO approximates trust-region updates via clipping and can be sample-efficient, while SAC leverages off-policy maximum-entropy updates and replay for robust exploration28,29. A comprehensive empirical benchmark across multiple datasets is beyond the scope of the present study and is planned as future work; here, on theoretical rationale and ablations were focused within the task constraints.

Despite these achievements, limitations exist. TRPO incurs non-trivial compute and memory costs, which may constrain deployment on mobile or low-resource classroom devices30. This motivates lightweight policies, model compression, and hardware-aware training for on-device or edge execution. Cultural variability in gesture and rhythm practices may also limit generality without diverse, cross-cultural data. Ethical considerations arise because continuous motion monitoring implicates consent, minimization, and governance of learner data31. Future iterations should integrate privacy-by-design safeguards, including local feature extraction, short-horizon retention, and clear consent flows for educational contexts.

Alternative methodological routes remain valuable. Classical sequence models such as hidden Markov models can support interpretable pipelines and small-data regimes32. Self-supervised representation learning on unlabeled motion streams may further reduce annotation burdens and improve transfer. Hybrid controllers that couple rule-based safety checks with a learned policy may also be appropriate when classroom constraints require tight guardrails.

The potential applications of TRPO-ResLSTM extend beyond formal education. The framework could support music therapy, cognitive rehabilitation, and interactive art, where adaptive feedback to human motion is critical33. In rehabilitation settings, movement-contingent feedback can scaffold motor relearning while preserving engagement, which aligns with emerging practice in technology-supported therapy. For creative practice and performance, the same pipeline can personalize real-time responses to embodied musical gestures.

Looking ahead, multimodal integration, voice, facial expression, and affect can provide more comprehensive feedback in music learning34. Incorporating affect estimates would allow the system to adjust instruction based on moment-to-moment motivation or frustration. Broader inclusion of instruments and musical styles from diverse cultural contexts will enhance accessibility and global relevance35. Finally, control in-the-wild studies that track educational outcomes over weeks rather than sessions, along with a formal benchmark comparing TRPO, PPO, and SAC under identical protocols.

Conclusion
This work demonstrates that music education platforms can be strengthened by adaptive, gesture-responsive AI methods. Traditional approaches often lack interactivity, personalization, and real-time flexibility, especially in remote or platform-based settings36. By leveraging somatosensory input, standard preprocessing (Z-score normalization and Wiener filtering), and FFT-based features, the proposed TRPO-ResLSTM pipeline provides robust real-time gesture recognition and adaptive instruction.

In experimental validation on a public gesture-rhythm dataset, the hybrid model achieved 95.0% accuracy, 93.5% precision, 94.6% recall, and a 94.2% F1-score, and improved education-oriented indicators such as rhythm synchronization, adaptive response, personalization effectiveness, and retention. These outcomes indicate not only predictive strength but also learner-centric value, consistent with evidence that AI-enabled personalization can enhance responsiveness and engagement when deployed responsibly37. The subject-disjoint evaluation and fold-averaged reporting provide a reproducible baseline for future extensions.

In summary, integrating conservative RL updates for policy control with residual temporal modeling for recognition offers a scalable foundation for individualized, interactive music learning. The same principles support broader applications across education, therapy, and rehabilitation38. Future work will extend to multimodal affect-aware feedback, cross-cultural repertoires, and lightweight deployments suitable for classrooms and clinics.

Disclosures

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

The authors declare no conflicts of interest.

Acknowledgements

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,

The authors thank their colleagues for constructive feedback on the study design and manuscript preparation. This work received no specific grant from any funding agency in the public, commercial, or not-for-profit sectors.

Materials

List of materials used in this article
NameCompanyCatalog NumberComments
Accelerometer sensor dataKaggle (Public domain)Multimodal input signals (motion patterns, timing features) included in dataset
GPU workstationNVIDIA Corporation, USATraining hardware: NVIDIA RTX 3080 (10 GB), 32 GB RAM, Ubuntu 20.04
Hand - joint position dataKaggle (Public domain)Somatosensory input for gesture recognition
Matplotlib (v3.7)https://matplotlib.orgVisualization library for plotting figures and performance metrics
NumPy (v1.23)https://numpy.orgNumerical computation library for array operations
Public music gesture and rhythm datasetKaggle (Public domain)Anonymized dataset of 2,730 samples recording body responses to tempo and beat; used for training/validation/testing (70/15/15)
Python 3.10.1Python Software Foundation, https://www.python.orgProgramming environment for model implementation and analysis
PyTorch (v1.13)https://pytorch.orgDeep learning framework for implementing ResLSTM and TRPO modules
scikit - learn (v1.2)https://scikit-learn.orgMachine learning utilities for preprocessing and evaluation
SciPy (v1.10)https://scipy.orgScientific computing library (used for Wiener filtering)

References

Loading...
$$\rightleftharpoonup{xx}$$ $$\longleftharp{xx}$$, $$\longrightharp{xx}$$,
  1. College music education and teaching based on AI techniques. Comput Electr Eng. 100, 107851(2022).">Wei, J., Karuppiah, M., Prathik, A. College music education and teaching based on AI techniques. Comput Electr Eng. 100, 107851(2022).
  2. Developments and applications of artificial intelligence in music education. Technol. 11 (2), 42(2023).">Yu, X., et al. Developments and applications of artificial intelligence in music education. Technol. 11 (2), 42(2023).
  3. Artificial intelligence robots based on machine learning and visual algorithms for interactive experience assistance in music classrooms. Entertain Comput. 52, 100779(2025).">Fang, J. Artificial intelligence robots based on machine learning and visual algorithms for interactive experience assistance in music classrooms. Entertain Comput. 52, 100779(2025).
  4. Study on the influence of AI composition software on students' creative ability in music education. J Educ Technol Innov. 6 (2), (2024).">Zhang, S., Lu, X., Liu, X. Study on the influence of AI composition software on students' creative ability in music education. J Educ Technol Innov. 6 (2), (2024).
  5. Design and research of music teaching system based on virtual reality system in the context of education informatization. PLoS One. 18 (10), e0285331(2023).">Feng, Y. Design and research of music teaching system based on virtual reality system in the context of education informatization. PLoS One. 18 (10), e0285331(2023).
  6. Entertainment performance robots application in music network classrooms based on speech sensor recognition and artificial intelligence. Entertain Comput. 52, 100782(2025).">Zhou, X. Entertainment performance robots application in music network classrooms based on speech sensor recognition and artificial intelligence. Entertain Comput. 52, 100782(2025).
  7. The music education and teaching innovation using blockchain technology supported by artificial intelligence. Int J Grid Util Comput. 14 (2-3), 278-296 (2023).">Yu, H., Zou, Z. The music education and teaching innovation using blockchain technology supported by artificial intelligence. Int J Grid Util Comput. 14 (2-3), 278-296 (2023).
  8. A decision-support system for assessing the function of machine learning and artificial intelligence in music education for network games. Soft Comput. 26 (20), 11063-11075 (2022).">Hong Yun, Z., et al. A decision-support system for assessing the function of machine learning and artificial intelligence in music education for network games. Soft Comput. 26 (20), 11063-11075 (2022).
  9. Enhancing Music Education With Innovative Tools and Techniques. , IGI Global. 19-50 (2025).">Dey, M. T., Patra, S., Mitra, S. Enhancing music education with innovative tools and techniques: The role of artificial intelligence in musical works. Enhancing Music Education With Innovative Tools and Techniques. , IGI Global. 19-50 (2025).
  10. The application of music therapy in the rehabilitation education of children with cerebral palsy. J Investig Med. 73 (1 Suppl. 1), (2025).">Lin, X., et al. The application of music therapy in the rehabilitation education of children with cerebral palsy. J Investig Med. 73 (1 Suppl. 1), (2025).
  11. Design of vocal music teaching system platform for music majors based on artificial intelligence. Wirel Commun Mob Comput. 2022 (1), 5503834(2022).">Wang, X. Design of vocal music teaching system platform for music majors based on artificial intelligence. Wirel Commun Mob Comput. 2022 (1), 5503834(2022).
  12. The usage of artificial intelligence technology in music education system under deep learning. IEEE Access. , 130546-130556 (2024).">Chen, Y., Sun, Y. The usage of artificial intelligence technology in music education system under deep learning. IEEE Access. , 130546-130556 (2024).
  13. Multi-source and heterogeneous online music education mechanism: An artificial intelligence-driven approach. Fractals. 31 (6), 2340154(2023).">Yang, Y., et al. Multi-source and heterogeneous online music education mechanism: An artificial intelligence-driven approach. Fractals. 31 (6), 2340154(2023).
  14. The intersection of technology and art: A study on AI-driven CTCL music teaching paradigm. , (2024).">Sang, J. The intersection of technology and art: A study on AI-driven CTCL music teaching paradigm. , (2024).
  15. Research on technological innovation and application of music education transformation under the background of technology. J Educ Theory Pract. 2 (2), (2025).">Yin, Y. Research on technological innovation and application of music education transformation under the background of technology. J Educ Theory Pract. 2 (2), (2025).
  16. Influencing factors and modeling methods of vocal music teaching quality supported by artificial intelligence technology. Int J Web Based Learn Teach Technol. 19 (1), 1-16 (2024).">Yuan, Y. Influencing factors and modeling methods of vocal music teaching quality supported by artificial intelligence technology. Int J Web Based Learn Teach Technol. 19 (1), 1-16 (2024).
  17. Tuning music education: AI-powered personalization in learning music. arXiv Prepr. , (2024).">Sanganeria, M., Gala, R. Tuning music education: AI-powered personalization in learning music. arXiv Prepr. , (2024).
  18. Research on the improvement method of music education level under the background of AI technology. Mob Inf Syst. 2022 (1), 7616619(2022).">Qiusi, M. Research on the improvement method of music education level under the background of AI technology. Mob Inf Syst. 2022 (1), 7616619(2022).
  19. Construction of an intelligent recognition and learning education platform of national music genre under deep learning. Front Psychol. 13, 843427(2022).">Xu, Z. Construction of an intelligent recognition and learning education platform of national music genre under deep learning. Front Psychol. 13, 843427(2022).
  20. College music teaching and ideological and political education integration mode based on deep learning. J Intell Syst. 31 (1), 466-476 (2022).">Wang, X., et al. College music teaching and ideological and political education integration mode based on deep learning. J Intell Syst. 31 (1), 466-476 (2022).
  21. The use of deep learning-based intelligent music signal identification and generation technology in national music teaching. Front Psychol. 13, 762402(2022).">Tang, H., Zhang, Y., Zhang, Q. The use of deep learning-based intelligent music signal identification and generation technology in national music teaching. Front Psychol. 13, 762402(2022).
  22. Artificial intelligence in music education: Exploring applications, benefits, and challenges. Yue, Y., Jing, Y. Proc Int Conf Educ Inf Technol, , 141-146 (2025).
  23. An efficient rehearsal scheme for catastrophic forgetting mitigation during multi-stage fine-tuning. arXiv Prepr. , (2024).">Bai, A., Yeh, C. K., Hsieh, C. J., Taly, A. An efficient rehearsal scheme for catastrophic forgetting mitigation during multi-stage fine-tuning. arXiv Prepr. , (2024).
  24. Improving the reproducibility of deep learning software: An initial investigation through a case study analysis. arXiv Prepr. , (2025).">Ravi, N., Goel, A., Davis, J. C., Thiruvathukal, G. K. Improving the reproducibility of deep learning software: An initial investigation through a case study analysis. arXiv Prepr. , (2025).
  25. Improving dynamic gesture recognition with attention-enhanced LSTM and grounding SAM. Electronics. 14 (9), 1793(2025).">Chen, J., Jin, F., Jiao, Y., Zhan, Y., Qin, X. Improving dynamic gesture recognition with attention-enhanced LSTM and grounding SAM. Electronics. 14 (9), 1793(2025).
  26. Applying multimodal learning analytics to examine the immediate and delayed effects of instructor scaffoldings on small groups' collaborative programming. Int J STEM Educ. 9 (1), 45(2022).">Ouyang, F., Dai, X., Chen, S. Applying multimodal learning analytics to examine the immediate and delayed effects of instructor scaffoldings on small groups' collaborative programming. Int J STEM Educ. 9 (1), 45(2022).
  27. Front Educ. , (2022).">Aoyama Lawrence,, Weinberger, L., A, Being in-sync: A multimodal framework on the emotional and cognitive synchronization of collaborative learners. Front Educ. , (2022).
  28. Proximal policy optimization algorithms. arXiv Prepr. , (2017).">Schulman, J., Wolski, F., Dhariwal, P., Radford, A., Klimov, O. Proximal policy optimization algorithms. arXiv Prepr. , (2017).
  29. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. PMLR. Haarnoja, T., Zhou, A., Abbeel, P., Levine, S. Proc Int Conf Mach Learn, , (2018).
  30. ICLR Blog Track. , https://iclr-blog-track.github.io/2022/03/25/ppo-implementation-details/ (2023).">Huang, S., Dossa, R. F. J., Raffin, A., Kanervisto, A., Wang, W. The 37 implementation details of proximal policy optimization. ICLR Blog Track. , https://iclr-blog-track.github.io/2022/03/25/ppo-implementation-details/ (2023).
  31. Code of practice for learning analytics. , https://www.jisc.ac.uk/guides/code-of-practice-for-learning-analytics (2022).">Sclater, N., Bailey, P. Code of practice for learning analytics. , https://www.jisc.ac.uk/guides/code-of-practice-for-learning-analytics (2022).
  32. A tutorial on hidden Markov models and selected applications in speech recognition. Proc IEEE. 77 (2), 257-286 (2002).">Rabiner, L. R. A tutorial on hidden Markov models and selected applications in speech recognition. Proc IEEE. 77 (2), 257-286 (2002).
  33. MusicalPT: Augmenting physical therapy by integrating adaptive musical guidance to enhance exercise quality and patient experience. Proc ACM Interact Mob Wearable Ubiquitous Technol. 9 (3), 1-32 (2025).">Tao, S., et al. MusicalPT: Augmenting physical therapy by integrating adaptive musical guidance to enhance exercise quality and patient experience. Proc ACM Interact Mob Wearable Ubiquitous Technol. 9 (3), 1-32 (2025).
  34. Multimodal recognition of emotions in music and facial expressions. Front Hum Neurosci. 14, 32(2025).">Proverbio, A. M., Camporeale, E., Brusa, A. Multimodal recognition of emotions in music and facial expressions. Front Hum Neurosci. 14, 32(2025).
  35. Adaptations, code-switching, and novelty with cultural integrity: Musicians performing and learning musical instruments in different musical traditions. J Res Music Educ. , (2025).">Kang, S. Adaptations, code-switching, and novelty with cultural integrity: Musicians performing and learning musical instruments in different musical traditions. J Res Music Educ. , (2025).
  36. The innovation path of VR technology integration into music classroom teaching in colleges and universities. Sci Rep. 15 (1), 12200(2025).">Han, Y., Han, L., Zeng, C., Zhao, W. The innovation path of VR technology integration into music classroom teaching in colleges and universities. Sci Rep. 15 (1), 12200(2025).
  37. Effects of artificial intelligence-enabled personalized recommendations on learners' learning engagement, motivation, and outcomes in a flipped classroom. Comput Educ. 194, 104684(2023).">Huang, A. Y., Lu, O. H., Yang, S. J. Effects of artificial intelligence-enabled personalized recommendations on learners' learning engagement, motivation, and outcomes in a flipped classroom. Comput Educ. 194, 104684(2023).
  38. MusicalPT: Augmenting physical therapy by integrating adaptive musical guidance to enhance exercise quality and patient experience. Proc ACM Interact Mob Wearable Ubiquitous Technol. 9 (3), 1-32 (2025).">Tao, S., et al. MusicalPT: Augmenting physical therapy by integrating adaptive musical guidance to enhance exercise quality and patient experience. Proc ACM Interact Mob Wearable Ubiquitous Technol. 9 (3), 1-32 (2025).

Reprints and Permissions

Request permission to reuse the text or figures of this JoVE article

Request Permission

Tags

Somatosensory EvaluationGesture RecognitionTRPO Reinforcement LearningResLSTM ModelAdaptive DifficultyIncremental LearningFeature ExtractionPersonalized Learning

Related Articles