I am training an SVC model on a large dataset, and since I have set verbose=True
, it is showing a Warning: using -h 0 may be faster
.
I have two questions here:
- what is this warning and how we can set any option of libsvm as it has mentioned in the warning?
- Does the size of cache in
sklearn.svm.SVC
parameter setting can affect the speed of training? I have set it ascache_size=2000
.
Your expert view is appreciated