MCPcopy Index your code
hub / github.com/clips/pattern / svm_save_model

Function svm_save_model

pattern/vector/svm/libsvmutil.py:43–49  ·  view source on GitHub ↗

svm_save_model(model_file_name, model) -> None Save a LIBSVM model to the file model_file_name.

(model_file_name, model)

Source from the content-addressed store, hash-verified

41 return model
42
43def svm_save_model(model_file_name, model):
44 """
45 svm_save_model(model_file_name, model) -> None
46
47 Save a LIBSVM model to the file model_file_name.
48 """
49 libsvm.svm_save_model(model_file_name.encode(), model)
50
51def evaluations(ty, pv):
52 """

Callers

nothing calls this directly

Calls 1

encodeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…