search
HomeTechnology peripheralsAICore principles of intelligent speech synthesis

Core principles of intelligent speech synthesis

Jan 23, 2024 am 09:54 AM
machine learning

Statistical parametric speech synthesis methods have attracted widespread attention in the field of speech synthesis due to their flexibility. In recent years, the application of deep neural network models in the field of machine learning research has achieved significant advantages compared with traditional methods. The application of modeling methods based on neural networks in statistical parametric speech synthesis has gradually deepened and has become one of the mainstream methods of speech synthesis.

Backend acoustic modeling for statistical parametric speech synthesis is the subject of this article.

Core principles of intelligent speech synthesis

The back-end framework of parameterized speech synthesis

As shown in the figure, the back-end framework of statistical parameter speech synthesis is described, mainly It includes two stages: training and synthesis.

In the training phase, the speech waveforms and corresponding text features in the sound library are used as input. Speech waveforms are extracted through a vocoder and combined with text features for acoustic modeling.

In the synthesis stage, according to the trained acoustic model, the text features to be synthesized are input and the corresponding acoustic features are predicted. The predicted acoustic features are then converted into speech waveforms using a vocoder. Vocoder and acoustic models are key components in statistical parametric speech synthesis systems.

The source filter model of speech generation is used to separate the short-term spectrum of speech into the fundamental frequency and spectral envelope during the speech waveform parameterization process. Usually, we obtain the excitation characteristics of speech by analyzing time domain waveforms or frequency domain harmonics, and then remove the periodicity of time and frequency from the amplitude spectrum obtained by the short-time Fourier transform of the speech waveform to obtain the spectrum package of speech. network. This method can help us better understand and process speech signals.

Due to the high dimensionality of the spectral envelope, modeling becomes difficult, so it is usually necessary to reduce the dimensionality of the spectral envelope. Reconstructing the speech waveform is the reverse process of recovering the original speech from the acoustic parameters of the speech. By given the fundamental frequency, spectral envelope and excitation characteristics of speech, combined with appropriate phase constraints, the STFT amplitude spectrum can be reconstructed.

Duration modeling is another module in statistical parametric speech synthesis. Duration modeling does not require a vocoder. The basic framework is similar to acoustic modeling. Statistical models are used to model the probability distribution of corresponding time lengths given text features.

After more than 20 years of development, the statistical parameter speech synthesis method based on HMM has become a mature speech synthesis method.

This section will introduce the hidden Markov model and its theoretical basis. Combined with certain phase constraints, the STFT amplitude spectrum is reconstructed. Duration modeling is another module in statistical parametric speech synthesis. Duration modeling does not require a vocoder. The basic framework is similar to acoustic modeling. Statistical models are used to model the probability distribution of corresponding time lengths given text features. After more than 20 years of development, the statistical parameter speech synthesis method based on HMM has become a mature speech synthesis method.

Hidden Markov model is a probabilistic model for sequence modeling, which consists of a set of hidden state variables and a set of observation variables. The HMM model has two assumptions.

The state variable obeys the first-order Markov chain; that is, the current state is only related to the previous state, as shown in formula (1).

Core principles of intelligent speech synthesis

The probability distribution of an observed variable at a certain moment is only related to the state at the current moment and has nothing to do with the state or observed variables at other moments, as shown in Eq. (2) shown.

Core principles of intelligent speech synthesis

Usually, in the HMM model

Core principles of intelligent speech synthesis

is cleverly formed The state transition matrix A of HMM, the probability density of the observed variables is:

Core principles of intelligent speech synthesis

It is worth noting that the output probability of HMM:

Core principles of intelligent speech synthesis

The core principle of acoustic modeling in the HMM-based statistical parametric speech synthesis method is to use the HMM model to perform probabilistic modeling of the acoustic feature sequence of speech in a given situation.

The configuration of the entire system includes the selection of speech acoustic features, the selection of modeling units and the configuration of the HMM model. Acoustic features in speech synthesis systems include excitation features and spectral features.

In the selection of spectral features, in order to reduce the difficulty of HMM modeling, low-dimensional spectral representation that removes the correlation between dimensions is generally used, such as Mel cepstrum and line spectrum pair features. Considering the short-term stationary characteristics of speech signals and the modeling ability of HM, HMMs in speech synthesis systems usually model phoneme-level units, such as vowel units in Chinese. Due to the timing characteristics of speech, the topology of HMM in audio modeling is often a one-way traversal state from left to right.

Core principles of intelligent speech synthesis

Statistical parameter speech synthesis system framework based on HMM

The figure describes the framework of the statistical parameter speech synthesis system based on HMM. It is divided into training stage and comprehensive stage. The training phase includes speech acoustic feature extraction and HMM model training. Since the HMM model uses phonemes as modeling units, three context-related phonemes are usually modeled to improve modeling accuracy.

In the first system training process, estimate the lower limit of the variance of the HMM model, then train the single-tone HMM model as the model initialization parameter, then train the context-related three-phoneme HMM model, and finally perform Mn pressure clustering based on Decision tree is carried out.

In the synthesis stage, the text is first analyzed, combined with the predicted time length, the context-related HMM model sequence is determined based on the decision tree, and then the continuous acoustic feature sequence and speech waveform are obtained through the maximum likelihood parameter generation algorithm Synthesized by a synthesizer. Statistical parametric speech synthesis systems based on HMM are too smooth; one reason is the limited modeling ability of HMM.

In recent years, as a branch of machine learning, deep learning has developed rapidly. Deep learning refers to the use of network models composed of multiple nonlinear transformations and multiple processing layers, namely neural networks. Due to the excellent modeling capabilities of DNN and inch, the acoustic modeling method based on DNN and RNN is applied to statistical parametric speech synthesis, and its effect is better than the acoustic modeling method based on HMM.

It has become the mainstream method of statistical parametric speech synthesis acoustic modeling. Speech synthesis systems based on DNN and RNN are similar in system framework.

Core principles of intelligent speech synthesis

Framework diagram of speech synthesis method based on neural network

As shown in the figure, the input features in the figure are extracted from the text Features; that is, using discrete or continuous numerical features to describe text.

The training of statistical parametric speech synthesis systems based on DNN and RNN usually adopts training criteria and uses BP algorithm and SGD algorithm to update model parameters so that the predicted acoustic parameters are as close as possible to the natural acoustic parameters. In the synthesis stage, text features are extracted from the synthesized text, then the corresponding acoustic parameters are predicted through DNN or RNN, and finally the speech waveform is synthesized through the vocoder.

Currently, modeling methods based on DNN and RNN are mainly applied to speech acoustic parameters, including fundamental frequency and spectrum parameters. Duration information still needs to be obtained through other systems. In addition, the input and output features of DNN and RNN models need to be aligned in time.

The above is the detailed content of Core principles of intelligent speech synthesis. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:网易伏羲. If there is any infringement, please contact admin@php.cn delete
Gemma Scope: Google's Microscope for Peering into AI's Thought ProcessGemma Scope: Google's Microscope for Peering into AI's Thought ProcessApr 17, 2025 am 11:55 AM

Exploring the Inner Workings of Language Models with Gemma Scope Understanding the complexities of AI language models is a significant challenge. Google's release of Gemma Scope, a comprehensive toolkit, offers researchers a powerful way to delve in

Who Is a Business Intelligence Analyst and How To Become One?Who Is a Business Intelligence Analyst and How To Become One?Apr 17, 2025 am 11:44 AM

Unlocking Business Success: A Guide to Becoming a Business Intelligence Analyst Imagine transforming raw data into actionable insights that drive organizational growth. This is the power of a Business Intelligence (BI) Analyst – a crucial role in gu

How to Add a Column in SQL? - Analytics VidhyaHow to Add a Column in SQL? - Analytics VidhyaApr 17, 2025 am 11:43 AM

SQL's ALTER TABLE Statement: Dynamically Adding Columns to Your Database In data management, SQL's adaptability is crucial. Need to adjust your database structure on the fly? The ALTER TABLE statement is your solution. This guide details adding colu

Business Analyst vs. Data AnalystBusiness Analyst vs. Data AnalystApr 17, 2025 am 11:38 AM

Introduction Imagine a bustling office where two professionals collaborate on a critical project. The business analyst focuses on the company's objectives, identifying areas for improvement, and ensuring strategic alignment with market trends. Simu

What are COUNT and COUNTA in Excel? - Analytics VidhyaWhat are COUNT and COUNTA in Excel? - Analytics VidhyaApr 17, 2025 am 11:34 AM

Excel data counting and analysis: detailed explanation of COUNT and COUNTA functions Accurate data counting and analysis are critical in Excel, especially when working with large data sets. Excel provides a variety of functions to achieve this, with the COUNT and COUNTA functions being key tools for counting the number of cells under different conditions. Although both functions are used to count cells, their design targets are targeted at different data types. Let's dig into the specific details of COUNT and COUNTA functions, highlight their unique features and differences, and learn how to apply them in data analysis. Overview of key points Understand COUNT and COU

Chrome is Here With AI: Experiencing Something New Everyday!!Chrome is Here With AI: Experiencing Something New Everyday!!Apr 17, 2025 am 11:29 AM

Google Chrome's AI Revolution: A Personalized and Efficient Browsing Experience Artificial Intelligence (AI) is rapidly transforming our daily lives, and Google Chrome is leading the charge in the web browsing arena. This article explores the exciti

AI's Human Side: Wellbeing And The Quadruple Bottom LineAI's Human Side: Wellbeing And The Quadruple Bottom LineApr 17, 2025 am 11:28 AM

Reimagining Impact: The Quadruple Bottom Line For too long, the conversation has been dominated by a narrow view of AI’s impact, primarily focused on the bottom line of profit. However, a more holistic approach recognizes the interconnectedness of bu

5 Game-Changing Quantum Computing Use Cases You Should Know About5 Game-Changing Quantum Computing Use Cases You Should Know AboutApr 17, 2025 am 11:24 AM

Things are moving steadily towards that point. The investment pouring into quantum service providers and startups shows that industry understands its significance. And a growing number of real-world use cases are emerging to demonstrate its value out

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version