?? do_new_neighbor
字號:
#! /bin/sh## This script is the master script for processing feret Data# ======================================================================# -------- CONFIGURE -------set threshold = 89.0set threshold_f = 50.0set first_ev = 1set last_ev = 100set last_ev_f = 125set weight_file = weightsset bias_file = biasesset bayes_dir = $DATA/Bayesian#set p0 = 0.001#set sigmoid_scale = 0.2set p0 = 0.0005set sigmoid_scale = 0.025# run neighbor#----------------------------------------------------------------------#set top_n = `wc G/list | awk '{print int($1/10 + 0.5)}'`#set top_N = 25#if ($top_n > $top_N) then# set top_N = $top_n#endif#set top_N = 100echo Neighbor: printing matchesecho --------------------------------------echo mkdir Ndate >! t0new_neighbor -m G/Coeffs/f \ -k glist \ -x G/Coeffs/f \ -l plist \ -o N \ -t $threshold_f \ -a $first_ev \ -b $last_ev_f \ -z $bayes_dir \ -p $p0 \ -s $sigmoid_scale date >! t1# print out results and test files#----------------------------------------------------------------------#sed "/[a-z]/d" neighbor.out >! TESTcat G/t0 G/t1 t0 t1 >! TIMES
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -