Acoustic Features for Neural VocodersNeural vocoders and text-to-speech synthesis (TTS) systems have witness each other’s success for the past few years. The role of neural…Mar 12, 2021Mar 12, 2021
a Boring Story of a Baby LSTMIt aims seq2seq modeling, such as neural machine translation (NMT).Mar 10, 2021Mar 10, 2021
LeetCode: romanToInt & intToRomanI didn’t learn Roman Numerals as a kid nor when I grew up. So it’s hard for me. Or rather, the solution is a loop with trivial if…Mar 9, 2021Mar 9, 2021
Rotated array: let’s start from simpleHow to change from [1, 2, 3, 4, 5, 6, 7, 8, 9] to [5, 6, 7, 8, 9, 1, 2, 3, 4]? Call the following function four times.Nov 11, 2018Nov 11, 2018
Efficient Coding I: Branch and BoundIn terms of optimization, it’s always brilliant to reduce time complexity from O(n²) to O(nlogn). But a more trivial strategy would be…Nov 25, 2017Nov 25, 2017
Layered BFS/ Batch BFSWe all know that deque is closely related to BFS: we extract the node from the left and attach all its neighbors to the right. But, what if…Nov 24, 2017Nov 24, 2017
Collections in Python (dict and deque)Many people complain Python for the lack of support on various data structures. Actually, many of them are encapsulated in Collections.Nov 24, 2017Nov 24, 2017