Hi,
I observed a small bug in train_deltas.sh. At the end, not only the link
to the .mdl, but also to the .occs should be deleted, before being
reassigned.
----
rm $dir/final.mdl 2>/dev/null
ln -s $x.mdl $dir/final.mdl
ln -s $x.occs $dir/final.occs
----
==>
----
rm $dir/final.mdl 2>/dev/null
rm $dir/final.occs 2>/dev/null
ln -s $x.mdl $dir/final.mdl
ln -s $x.occs $dir/final.occs
----
Hope this is right,
Simon
|