dc_tts
dc_tts copied to clipboard
what will be the the 2.0 conversion of this code
# Batching
_, (texts, mels, mags, fnames) = tf.contrib.training.bucket_by_sequence_length(
input_length=text_length,
tensors=[text, mel, mag, fname],
batch_size=hp.B,
bucket_boundaries=[i for i in range(minlen + 1, maxlen - 1, 20)],
num_threads=8,
capacity=hp.B*4,
dynamic_pad=True)
this is not compatible with 2.0
have you tried any new ways to pass this issue?
Been working on converting this thing to be tensorflow 2.0 compliant. Got stuck on some things but feel free to branch off and help finish it off.
https://github.com/dmmagdal/dc_tts