haneulpark commited on
Commit
a805e6a
·
verified ·
1 Parent(s): 9d78250

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -133,7 +133,8 @@ then load, featurize, split, fit, and evaluate the a catboost model
133
  from molflux.modelzoo import load_from_dict as load_model_from_dict
134
  from molflux.metrics import load_suite
135
 
136
- Since there is a compound with three valencies of Bromine in the dataset, the code below should be added.
 
137
 
138
  def modify_smiles(example):
139
  if example['smiles'] == 'O=Brc1ccc(\\C=C\\C(=O)c2ccccc2)cc1':
 
133
  from molflux.modelzoo import load_from_dict as load_model_from_dict
134
  from molflux.metrics import load_suite
135
 
136
+ Due to the presence of a compound containing trivalent bromine in the dataset, a SMILES parsing error occurs.
137
+ Therefore, the code to modify the SMILES should be added. (modify_smiles)
138
 
139
  def modify_smiles(example):
140
  if example['smiles'] == 'O=Brc1ccc(\\C=C\\C(=O)c2ccccc2)cc1':