diff --git a/drevalpy/models/SRMF/srmf.py b/drevalpy/models/SRMF/srmf.py index 0f293a5..12a4aee 100644 --- a/drevalpy/models/SRMF/srmf.py +++ b/drevalpy/models/SRMF/srmf.py @@ -226,3 +226,21 @@ def load_drug_features(self, data_path: str, dataset_name: str) -> FeatureDatase :param dataset_name: """ return load_drug_fingerprint_features(data_path, dataset_name) + + + def load(self, path): + """ + Loads the model from a given path. + + :param path: Path to the model + """ + raise NotImplementedError("SRMF does not support loading yet ...") + + + def save(self, path): + """ + Saves the model to a given path. + + :param path: Path to save the model + """ + raise NotImplementedError("SRMF does not support saving yet ...") diff --git a/pyproject.toml b/pyproject.toml index 69f3915..e8f6e87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "drevalpy" -version = "1.0.6" +version = "1.0.8" description = "Drug response evaluation of cancer cell line drug response models in a fair setting" authors = ["DrEvalPy development team"] license = "GPL-3.0" readme = "README.md" [tool.poetry.dependencies] -python = ">=3.9,<3.12" +python = ">=3.9" numpy = ">=1.20,<1.25" scipy = "*" scikit-learn = ">=1.4"