在使用easy.py中出现如下图所示问题

easy.py使用中ValueError: could not convert string to float: svm_options错误问题解决

解决方法:

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)

最后结果如下图:

easy.py使用中ValueError: could not convert string to float: svm_options错误问题解决

相关文章:

  • 2021-05-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-03
  • 2021-10-23
  • 2022-12-23
  • 2021-06-22
  • 2022-12-23
  • 2022-02-25
  • 2022-12-23
相关资源
相似解决方案