Skip to content

Instantly share code, notes, and snippets.

View dhgrs's full-sized avatar

Daiki Higurashi dhgrs

  • Preferred Networks Inc.
  • Japan
View GitHub Profile
@GINK03
GINK03 / alotoffile.tar.gz.md
Last active February 14, 2019 13:13
Linuxで高速に、大量のファイルをtar.gzに固める
$ sudo apt install pigz
$ tar -I pigz -cf ${TARGET}.tar.gz ${SOURCE}

コア数の数だけスレッドが立つが、たいてい、ディスクが間に合ってないのでSSD、nvmeなどを使う

@tosaka2
tosaka2 / dnn_tts_survey.md
Last active December 23, 2020 17:45
DNNを用いたTTS手法の調査

TTSについて

以下の図がよくまとまっている。[1]
TTSの図

モデルによって音声合成の中でどこまでの仕事を担当しているかが異なる。  


DNNを用いないボコーダー

@crcrpar
crcrpar / instance_normalization.py
Last active September 11, 2019 05:25
Instance Normalization in Chainer on top of Batch Normalization
import numpy
import chainer
from chainer import configuration
from chainer import cuda
from chainer import functions
from chainer import initializers
from chainer import link
from chainer.utils import argument
from chainer import variable