这是张量流文本摘要的正确指南吗?
Is this the correct guide for tensorflow text summarization?
阅读 tensorflow 文本摘要 model 它指出 "The results described below are based on model trained on multi-gpu and multi-machine settings. It has been simplified to run on only one machine for open source purpose."
进一步在指南中调用了这个命令:
bazel build -c opt --config=cuda textsum/...
这个命令与cuda/gpu无关吗?为什么此命令被截断?
这是一个 bazel
命令:--config=cuda
表示 "use the CUDA build configuration (and generate GPU-compatible code)",textsum/...
表示 "all targets under the directory textsum
"(即命令未被截断,您应该输入命令时输入文字 ...
)。
阅读 tensorflow 文本摘要 model 它指出 "The results described below are based on model trained on multi-gpu and multi-machine settings. It has been simplified to run on only one machine for open source purpose."
进一步在指南中调用了这个命令:
bazel build -c opt --config=cuda textsum/...
这个命令与cuda/gpu无关吗?为什么此命令被截断?
这是一个 bazel
命令:--config=cuda
表示 "use the CUDA build configuration (and generate GPU-compatible code)",textsum/...
表示 "all targets under the directory textsum
"(即命令未被截断,您应该输入命令时输入文字 ...
)。