Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
double svm_predict_probability( | |
const svm_model *model, const svm_node *x, double *prob_estimates) | |
{ | |
if ((model->param.svm_type == C_SVC || model->param.svm_type == NU_SVC) && | |
model->probA!=NULL && model->probB!=NULL) | |
{ | |
int i; | |
int nr_class = model->nr_class; | |
double *dec_values = Malloc(double, nr_class*(nr_class-1)/2); | |
svm_predict_values(model, x, dec_values); |
Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
First of all of course get Manjaro: https://manjaro.org/get-manjaro/
I recommend using Etcher to copy the image to your USB: https://etcher.io/
Before installing make sure: