thundersvm icon indicating copy to clipboard operation
thundersvm copied to clipboard

ThunderSVM: A Fast SVM Library on GPUs and CPUs

Results 87 thundersvm issues
Sort by recently updated
recently updated
newest added

Caret in R makes programming so easy and generates reusable code. I have benefited by embedding thundersvm in Caret. The problem I see (just waste some time) is that the...

thundersvm lacks necessary attributes so that I can not use thundersvm in sklearn. for example, thundersvm can not be used in GridSearchCV of sklearn. and, thundersvm can not be used...

I'm trying to stack different machine learning algs via the StackingClassifier method of Sklearn.ensemble. One of my models is using the Thundersvm with an rbf kernel. I keep getting the...

Hi everyone :) These days, I found sometimes it going like a deadlock when I fit the svc model. I tried sklearn, libsvm, libsvm with gpu with same data, and...

I saw in the issues that people are suing thundersvm to do multi class classification problems. Just wondering does it support multi label classification. Thanks in advance for your help!

call for contribution

Hi, I am implementing a real-time prediction system using thundersvm. Before my program starts running, it first loads the necessary files using `svm.load_from_file()`. It takes ~47s to load 2 models....

I'm using the following code: ``` clf = SVR(kernel= 'linear', max_mem_size=6000 ) clf.fit(X_train,y_train) ``` Using Google Colab with GPU It's always reaching the limit (12GB RAM) There's any fix or...

I am doing hyperparameter search using SVR class, I see that sometimes same parameter set generates different loss values. and it throws off the bayesian hyperparameter algorithm and it goes....

Please advise if wrapping thundersvm using the caret function is feasible similar to this example: https://stackoverflow.com/questions/29449639/svm-in-r-with-caret-using-e1071-instead-of-kernlab If examples can be provided that would be much appreciated. This would greatly simplify...

Hello there, I am trying to use thundersvm on a text classification problem. I can run the [test](https://github.com/Xtra-Computing/thundersvm#quick-start) and get the 0.98 accuracy, so it seems that the library is...