I have python code like this:
import svmlight
training_data = __import__('data').train0
test_data = __import__('data').test0
model = svmlight.learn(training_data, type='classification', verbosity=0)
svmlight.write_model(model, 'my_model.dat')
predictions = svmlight.classify(model, test_data)
Now I have linux executable file svmlight_classify, for above code and all function are also inside this executable. This executable was create from c code using make command.
can I directly call classify() function from svmlight_classify executable file?