From aabe84b2dbc651745a6f20922d9127b9c03b1ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Gonz=C3=A1lez=20Duque?= Date: Fri, 5 May 2023 08:47:13 +0200 Subject: [PATCH] Adds expected scores when running the example provided in the readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8975e0..c21ad38 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ from molskill.scorer import MolSkillScorer smiles_strs = ["CCO", "O=C(Oc1ccccc1C(=O)O)C"] scorer = MolSkillScorer() -scores = scorer.score(smiles_strs) +scores = scorer.score(smiles_strs) # [ 19.531034 -11.309371] ``` We provide and use by default a pre-trained model on all the data that was collected during the original study. If a user wants to train custom models, please check the `train.py` script also included under this repository.