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

Function save_model

pattern/vector/svm/liblinearutil.py:42–48  ·  view source on GitHub ↗

save_model(model_file_name, model) -> None Save a LIBLINEAR model to the file model_file_name.

(model_file_name, model)

Source from the content-addressed store, hash-verified

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

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…