You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I always get a runtime error on generating descriptors. I have a file of 7000 molecules with their smile entries. It stops after a few SMILES and gives runtime error. I tried to increase the the runtime and no. of threads but it did not work.
for smile in tqdm(smiles):
desc = from_smiles(smile, fingerprints=False, descriptors=True, threads=4)
Descriptors.append(desc)
The text was updated successfully, but these errors were encountered:
Hi,
I had a similar problem with runtime error, using a csv file or 'bad molecule'.
I was pressed for time, so I had to come up with a solution (which took 10 hours XD).
I have 1600 molecules. For every hundred I create notebook (If i do this in one my computer failed 3 times). And then calculate descriptors 'from_smiles(list_of_molecules[0:20])'. Sometimes it throw error, so I divide it to 4 times and find out the bad element.
If you dont neet to do it by my way then dont. But I cant found any other solution and I need it by tomorrow
Hi, I always get a runtime error on generating descriptors. I have a file of 7000 molecules with their smile entries. It stops after a few SMILES and gives runtime error. I tried to increase the the runtime and no. of threads but it did not work.
for smile in tqdm(smiles):
desc = from_smiles(smile, fingerprints=False, descriptors=True, threads=4)
Descriptors.append(desc)
The text was updated successfully, but these errors were encountered: