Model Overview¶
The torch-molecule
library provides a unified interface for molecular property prediction, generation and encoding. All models inherit from the torch_molecule.base.base.BaseModel
class and share common methods for model training, evaluation and persistence.
Model Persistence¶
load_from_local
: Load a saved model from a local filesave_to_local
: Save the current model to a local fileload_from_hf
: Load a model from a Hugging Face repositorysave_to_hf
: Push the current model to a Hugging Face repositoryload
: Load a model from either local storage or Hugging Facesave
: Save the model to either local storage or Hugging Face
(For detailed API documentation of the base class, please refer to Base Modules.)
Molecular Predictor Models
Molecular Generator Models