Linux ft-models.out生成文件错误

Linux ft-models.out生成文件错误,linux,makefile,ubuntu-12.04,Linux,Makefile,Ubuntu 12.04,我只是试着编译一个makefile,但它不起作用, 我的Makefile是这样的 这对我来说非常重要,我会上传并发布所有文件夹的链接, 如果有人能帮助我,他可能会上天堂 这是我所有文件夹的链接, 有人能在LINUX上运行此代码吗?? 我怎样才能修好它??谢谢 , 第一个错误实际上是这样的 === Running lookup on the testing file zcat test.1.2.dis.gz | awk '{print $1}' | lookup -f script.txt |

我只是试着编译一个makefile,但它不起作用, 我的Makefile是这样的

这对我来说非常重要,我会上传并发布所有文件夹的链接, 如果有人能帮助我,他可能会上天堂 这是我所有文件夹的链接, 有人能在LINUX上运行此代码吗??

我怎样才能修好它??谢谢

,

第一个错误实际上是这样的

=== Running lookup on the testing file
zcat test.1.2.dis.gz | awk '{print $1}' | lookup -f script.txt | singleline.pl | gzip > test.lookup.gz
/bin/sh: 1: lookup: not found
/bin/sh: 1: singleline.pl: not found
=== Merging answers in testing file with lookup results
merge.pl 'zcat test.1.2.dis.gz |' 'zcat test.lookup.gz |'  2> test.merge.gz.err | gzip      > test.merge.gz
=== Preparing testing features for a +-2 word window
zcat test.merge.gz | features.pl | gzip > test.features.gz
/bin/sh: 1: features.pl: not found
=== Running lookup on the training file
zcat correctparses_03.txt.gz | awk '{print $1}' | lookup -f script.txt | singleline.pl | gzip > train.lookup.gz
/bin/sh: 1: singleline.pl: not found
/bin/sh: 1: lookup: not found
=== Merging answers in training file with lookup results
merge.pl 'zcat correctparses_03.txt.gz |' 'zcat train.lookup.gz |' 2> train.merge.gz.err | gzip > train.merge.gz
=== Preparing training features for a +-2 word window
zcat train.merge.gz | features.pl | gzip > train.features.gz
/bin/sh: 1: features.pl: not found
=== Training individual feature models
./ft-models.pl 'zcat train.features.gz |'
Finding unique morphological features in data
Found 0 morphological features
=== Evaluating the disambiguation model
zcat test.features.gz | ft-model-eval.pl -v > eval.out 2> eval.err
make: *** [eval.out] Error 127

它可以采取几个步骤来解决这个问题。在第28行中,更改此选项:

ft-models.pl ...
merge.pl ...
为此:

./ft-models.pl ...
./merge.pl ...
告诉我们结果(在对这个答案的评论中)

编辑:

好!!现在在第20行和第36行中,更改以下内容:

ft-models.pl ...
merge.pl ...
为此:

./ft-models.pl ...
./merge.pl ...

告诉我们发生了什么。

有些事情改变了…!==训练单个特征模型。/ft-models.pl'zcat train.features.gz |'在数据中查找唯一的形态特征发现0形态特征===评估消歧模型zcat test.features.gz | ft-model-eval.pl-v>eval.out 2>eval.err make:**[eval.out]错误127/bin/sh:1:merge.pl:not found这是后面的第一个错误,它给出了一个类似于我编写的uper的错误