我正在创建Vue应用,并且添加了Nprogress。我当前的目标是在更改应用程序的路线时启动进度条。 目前,我得到了这段代码:
nprogress.start()
这是我的应用程序唯一一次使用nprogress.done()
或import tensorflow as tf
with tf.Graph().as_default(), tf.Session() as sess:
res = tf.TensorArray(dtype=tf.int32, size=0, dynamic_size=True, infer_shape=False)
res = res.write(0, (1, 2))
res = res.write(1, (1, 2, 3))
print(res.size()) # Value only known on graph execution
# Tensor("TensorArraySizeV3:0", shape=(), dtype=int32)
# Can make a list if the size is known in advance
tensors = [res.read(i) for i in range(2)]
print(tensors)
# [<tf.Tensor 'TensorArrayReadV3:0' shape=<unknown> dtype=int32>, <tf.Tensor 'TensorArrayReadV3_1:0' shape=<unknown> dtype=int32>]
print(sess.run(tensors))
# [array([1, 2]), array([1, 2, 3])]
的情况。
当我启动应用程序时,我的主要组件显示出来,控制台中没有任何消息,但是进度条在这里。
有什么办法可以解决?
如果需要,请询问我是否更精确,谢谢您的帮助!