Kur 训练 speech.yml 而 tensorflow 未编译且 libmagic 不可用

Kur training speech.yml while tensorflow not compling and libmagic is not available

我是 kur 的新手,刚开始尝试。

with kur -v train speech.yml,它运行良好但有一些烦人的消息:1. tensorflow 没有编译 SSE 指令; 2. 找不到系统库'libmagic'。

我应该担心这些吗?我应该做些什么吗?

非常感谢! @AdamSypniewski 哪里是询问有关 kur 问题的最佳地点?

W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX2 instructions, but these are available on your machine and could speed up CPU computations.
W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use FMA instructions, but these are available on your machine and could speed up CPU computations.
[INFO 2017-02-26 14:33:20,651 kur.backend.keras_backend:654] Waiting for model to finish compiling...
[WARNING 2017-02-26 14:33:20,657 kur.utils.audiotools:98] Python package "magic" could not be loaded, possibly because system library "libmagic" could not be found. We are falling back on our own heuristics.

"TensorFlow library wasn't compiled"警告只是一个警告(c.f.,this answer)。每件事情仍然会正常工作,但如果您 compile/install 来自源而不是 pip/conda 的 TensorFlow,您可能会获得性能提升。就这些了。

"libmagic" 警告也可以(可能)被忽略。 "libmagic"是使用magic numbers to determine the file type of an arbitrary file. Current versions of macOS don't have it installed by default, so Kur falls back onto its own file-format heuristic. If you aren't seeing errors and if your model output seems reasonable, you're probably fine. If you want to be super-careful, you can use a macOS package manager to install it; for example, using Homebrew的库名,命令是brew install libmagic.

既然你问了,关于 Kur 的最佳提问地点是 Gitter