This commit is contained in:
Peter Scherpelz 2025-07-31 20:37:47 +00:00 committed by GitHub
commit 26566be856
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ class GPClassification(GP):
return GPClassification.from_gp(m)
def save_model(self, output_filename, compress=True, save_data=True):
self._save_model(output_filename, compress=True, save_data=True)
self._save_model(output_filename, compress=compress, save_data=save_data)
@staticmethod
def _build_from_input_dict(input_dict, data=None):

View file

@ -54,4 +54,4 @@ class GPRegression(GP):
return GPRegression.from_gp(m)
def save_model(self, output_filename, compress=True, save_data=True):
self._save_model(output_filename, compress=True, save_data=True)
self._save_model(output_filename, compress=compress, save_data=save_data)