predict.sh 1.2 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/bin/bash

# Copyright (c) 2016 Baidu, Inc. All Rights Reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e

function get_best_pass() {
  cat $1  | grep -Pzo 'Test .*\n.*pass-.*' | \
  sed  -r 'N;s/Test.* cost=([0-9]+\.[0-9]+).*\n.*pass-([0-9]+)/\1 \2/g' | \
Z
zhangjinchao01 已提交
21
  sort -n | head -n 1
Z
zhangjinchao01 已提交
22 23 24 25 26 27 28 29
}   

log=train.log
LOG=`get_best_pass $log`
LOG=(${LOG})
best_model_path="output/pass-${LOG[1]}"

config_file=db_lstm.py
Z
zhangjinchao01 已提交
30 31 32
dict_file=./data/wordDict.txt
label_file=./data/targetDict.txt 
predicate_dict_file=./data/verbDict.txt
Z
zhangjinchao01 已提交
33
input_file=./data/feature
Z
zhangjinchao01 已提交
34
output_file=predict.res
Z
zhangjinchao01 已提交
35 36 37 38 39
 
python predict.py \
     -c $config_file \
     -w $best_model_path \
     -l $label_file \
Z
zhangjinchao01 已提交
40
     -p $predicate_dict_file  \
Z
zhangjinchao01 已提交
41
     -d $dict_file \
Z
zhangjinchao01 已提交
42 43
     -i $input_file \
     -o $output_file