Speech Enhancement Generative Adversarial Network in TensorFlow
[[Node: device_0/wav_and_noisy = QueueDequeueManyV2[component_types=[DT_FLOAT, DT_FLOAT], timeout_ms=-1, _device=\"/job:localhost/replica:0/task:0/cpu:0\"](device_0/wav_and_noisy/random_shuffle_queue, device_0/wav_and_noisy/n)]]
解决方法:
https://github.com/santi-pdp/segan/issues/49 :
作者:这是因为没有正确设置tfRecords的路径,或者没有tfRecords文件。 e2e_dataset:data/segan.tfrecords
长时间停顿:缩小批次大小,这可能会导致问题的解决。
经验:具体问题具体分析
******************************************************************************************************
其他参考:
添加 local 变量,sess.run(tf.local_variables_initializer())
with tf.Session() as sess:
sess.run(tf.local_variables_initializer())
sess.run(tf.global_variables_initializer())
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
# do your stuff here
coord.request_stop()
coord.join(threads)
或者 sess.run(tf.group(tf.local_variables_initializer(), tf.global_variables_initializer()))
继续阅读与本文标签相同的文章
java 对象中集合属性及复制
提升观看体验 苹果可变色AR镜片专利曝光
-
GSMA首席执行官洪曜庄:5G时代中国在引领
2026-05-14栏目: 教程
-
猎户星空CEO傅盛:现在是AI发展最好时期,家庭服务机器人前景可期
2026-05-14栏目: 教程
-
5G远程驾驶和微公交首秀互联网大会
2026-05-14栏目: 教程
-
学宏程序编程,这些知识必不可少!
2026-05-14栏目: 教程
-
华为准备卖出“落后”的5G,多家美企极力竞争!任正非格局太大!
2026-05-14栏目: 教程
