I' ve the following problem:
the slave.VQ.pl script runs two scripts the first is agg_seg.pl and this script finish always without any problem, the second script kmeans.pl seems to work but in fact it doesn't do anything.
The time.html reports that the script is completed but the log file dpesn't appear!!
What culd be the problem? The script verify_all.pl doesn.t report any error or warning! So I can't understand what's the problem!!
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-07-11
The script kmeans.pl has a bug in the definition of $logfile. Line 72 reads:
$logfile = "$logfile/${CFG_EXPTNAME}.kmeans.log";
Change it to:
$logfile = "$logdir/${CFG_EXPTNAME}.kmeans.log";
Then the log file will be created and you can debug further!
cheers,
jerry
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I' ve the following problem:
the slave.VQ.pl script runs two scripts the first is agg_seg.pl and this script finish always without any problem, the second script kmeans.pl seems to work but in fact it doesn't do anything.
The time.html reports that the script is completed but the log file dpesn't appear!!
What culd be the problem? The script verify_all.pl doesn.t report any error or warning! So I can't understand what's the problem!!
Thanks
The script kmeans.pl has a bug in the definition of $logfile. Line 72 reads:
$logfile = "$logfile/${CFG_EXPTNAME}.kmeans.log";
Change it to:
$logfile = "$logdir/${CFG_EXPTNAME}.kmeans.log";
Then the log file will be created and you can debug further!
cheers,
jerry