Grid.py doesn't work

I use LibSVM and I used GRID.py for SVM . But the problem is that I ran GRID.py more than an hour, but did not return any results. The error message it gives as follows

 %%%%%%%%%%%%%%%%%%%%%%% Traceback (most recent call last): File "grid.py", line 266, in run if rate is None: raise RuntimeError('get no rate') RuntimeError: get no rate worker local quit. %%%%%%%%%%%%%%% 

Can someone tell me what the problem is? And what is this "working local output"? If someone wants to learn more about implementation or GRID.py , feel free to ask. I have more 9000 rows with 8 different columns as a dataset

+4
source share
1 answer

Are you calling GRID.py with the -log2c or -log2g option?

It seems that the problem occurs when LocalWorker.run_one returns None .

0
source

All Articles