chainer / chainer-chemistry

Chainer Chemistry: A Library for Deep Learning in Biology and Chemistry
MIT License
618 stars 129 forks source link

Kekulized QM9 #414

Closed nshervt closed 4 years ago

nshervt commented 4 years ago

I was wondering if the qm9 dataset can be loaded with the molecules Kekulized or should I simply turn smiles to mol and kekulize it and extract data from that kekulized smiles? Thanks!

corochann commented 4 years ago

Each Preprocessor have kekulize option.

So when you call get_qm9 method, you can pass preprocessor which is instantiated with kekulize=True

nshervt commented 4 years ago

Thanks!