在使用easy.py中出现如下图所示问题
解决方法:
1、找到cmd = ‘{0} -svmtrain "{1}" -gnuplot "{2}" "{3}"‘.format(grid_py, svmtrain_exe, gnuplot_exe, scaled_file)
2、将其改为cmd = ‘python {0} -svmtrain "{1}" -gnuplot "{2}" "{3}"‘.format(grid_py, svmtrain_exe, gnuplot_exe, scaled_file)
最后结果如下图:
时间: 2024-10-31 12:08:24