前提・実現したいこと
googlecolaboratoryでtacotron2を使い、合成音声を試そうとした。
参考サイト:https://note.com/npaka/n/n2a91c3ca9f34
発生している問題・エラーメッセージ
Traceback (most recent call last): File "train.py", line 278, in <module> hparams = create_hparams(args.hparams) File "/content/drive/MyDrive/work/tacotron2/hparams.py", line 8, in create_hparams hparams = tf.contrib.training.HParams( AttributeError: module 'tensorflow' has no attribute 'contrib'
該当のソースコード
参考サイトの2までは終わってます。
(colab)
%tensorflow_version 2.x
Colab only includes TensorFlow 2.x; %tensorflow_version has no effect.
!git clone https://github.com/NVIDIA/tacotron2.git
%cd tacotron2
!git submodule init
!git submodule update
!git clone https://github.com/NVIDIA/apex
%cd apex
!pip install -v --disable-pip-version-check --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./
%cd ..
!pip install -r requirements.txt
!pip install Unidecode==1.0.22
!head -n 6500 filelists/transcript.txt > filelists/transcript_train.txt
!tail -n 85 filelists/transcript.txt > filelists/transcript_val.txt
!python train.py --output_directory=outdir --log_directory=logdir -c tacotron2_statedict.pt --warm_start
試したこと
tensorflow1.xはcolabolatoryで使えなくなったらしく、
色々調べて公式の案内とかにも辿り着き、色々変えて試したけど結局何をどうしたらいいかわからず、困っています。
参考サイトの(10)の操作もしました。
もうcolabolatoryではtacotron2は使えないのでしょうか..?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/10/21 14:54