-
Notifications
You must be signed in to change notification settings - Fork 0
2019.04
Donggeun Yu edited this page Apr 9, 2019
·
4 revisions
tf.keras.backend.placeholder를 tf.queue.FIFOQueue에 넣고 싶어도 자꾸 오류가 났다. 그래서 tf.compat.v1.disable_eager_execution()를 사용해서 eager기능을 비활성화 시켰다.
tacotron.py 완성함. train_tacotron.py 165번째 줄 tf.train.saver를 바꿔야함. 모델 파라미터를 저장하는 기능.
modules.py highwaynet tf 2.0 변환
원래 코드:
tf.constant_initializer(-1.0)
수정 코드:
from tensorflow.python.layers import core
init_ops.constant_initializer(-1.0)