0

syntaxnet の github ページの指示に従って、syntaxnet パーサー モデルを構築しようとしています。

私のシステムは Debian Wheezyです。Ubuntu 14.04 LTS または 15.05 と大差ないはずです。ソースから bazel 0.2.2 (0.2.2b ではなく) をコンパイルしましたが、正しく動作しているようです。

コマンドを起動するたびにbazel test syntaxnet/... util/utf8/...、テストは実行されず (すべてスキップされます)、非常に不可解なエラー メッセージが表示されます。次に例を示します。

root@host:~/tensorflow_syntaxnet/models/syntaxnet# ../../bazel/output/bazel test syntaxnet/... util/utf8/...
Extracting Bazel installation...
.............
INFO: Found 65 targets and 12 test targets...
ERROR: /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/external/six_archive/BUILD:1:1: Executing genrule @six_archive//:copy_six failed: namespace-sandbox failed: error executing command /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox ... (remaining 5 argument(s) skipped).
unshare failed with EINVAL even after 101 tries, giving up.
INFO: Elapsed time: 95.469s, Critical Path: 22.46s
//syntaxnet:arc_standard_transitions_test                             NO STATUS
//syntaxnet:beam_reader_ops_test                                      NO STATUS
//syntaxnet:graph_builder_test                                        NO STATUS
//syntaxnet:lexicon_builder_test                                      NO STATUS
//syntaxnet:parser_features_test                                      NO STATUS
//syntaxnet:parser_trainer_test                                       NO STATUS
//syntaxnet:reader_ops_test                                           NO STATUS
//syntaxnet:sentence_features_test                                    NO STATUS
//syntaxnet:shared_store_test                                         NO STATUS
//syntaxnet:tagger_transitions_test                                   NO STATUS
//syntaxnet:text_formats_test                                         NO STATUS
//util/utf8:unicodetext_unittest                                      NO STATUS

Executed 0 out of 12 tests: 12 were skipped.

推奨どおりにOracle Java 8 JDKを使用しています。コンパイラは次のとおりです。

~/tensorflow_syntaxnet/models/syntaxnet# gcc --version
gcc (Debian 4.7.2-5) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

エラーメッセージに記載されているバイナリを調べてみましたnamespace-sandboxが、これを深く掘り下げる前に、ここで質問することにしました。

~/tensorflow_syntaxnet/models/syntaxnet# ls -l /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox
lrwxrwxrwx 1 root root 108 May 13 14:52 /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox -> /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox
~/tensorflow_syntaxnet/models/syntaxnet# readlink /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox
/root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox

ただし、コマンドは正常に機能するようです:

~/tensorflow_syntaxnet/models/syntaxnet# file $(readlink /root/.cache/bazel/_bazel_root/74c6bab7a21f28ad02405b720243d086/syntaxnet/_bin/namespace-sandbox)
/root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, BuildID[md5/uuid]=0xecfd97b6a6b9a193b045be13654bd55b, not stripped
~/tensorflow_syntaxnet/models/syntaxnet# /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox
No command specified.
Usage: /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox [-S sandbox-root] -- command arg1
  provided: /root/.cache/bazel/_bazel_root/install/ca381eaad1c931167a6355cb8a2b98cf/_embedded_binaries/namespace-sandbox
Mandatory arguments:
  -S <sandbox-root>  directory which will become the root of the sandbox
  --  command to run inside sandbox, followed by arguments

Optional arguments:
  -W <working-dir>  working directory
  -T <timeout>  timeout after which the child process will be terminated with SIGTERM
  -t <timeout>  in case timeout occurs, how long to wait before killing the child with SIGKILL
  -d <dir>  create an empty directory in the sandbox
  -M/-m <source/target>  system directory to mount inside the sandbox
    Multiple directories can be specified and each of them will be mounted readonly.
    The -M option specifies which directory to mount, the -m option specifies where to
    mount it in the sandbox.
  -n if set, a new network namespace will be created
  -r if set, make the uid/gid be root, otherwise use nobody
  -D  if set, debug info will be printed
  -l <file>  redirect stdout to a file
  -L <file>  redirect stderr to a file
  @FILE read newline-separated arguments from FILE

何か案が?

更新: Ubuntu 14.04 LTS (Debian を実行している実稼働サーバーとは対照的に、私の小さなワークステーション) でまったく同じ手順を実行しましたが、すべてのテストに合格して、すべてが正常に機能します。何が違うのかしら。

4

1 に答える 1

1

どうやら、サンドボックスをセットアップするときにいくつかの権限エラーが発生するようです。簡単な回避策は、次を使用してサンドボックスを非アクティブ化すること--genrule_strategy=standalone --spawn_strategy=standaloneです (2 番目のものは TensorFlow rc ファイルで既に指定されていることに注意してください)。

~/.bazelrc でこれらのフラグを設定できます。 echo "build --genrule_strategy=standalone --spawn_strategy=standalone" >>~/.bazelrc

于 2016-05-17T07:27:01.107 に答える