Guidance on preparing data for training from structures #46
-
Is there any info/tutorials/examples on how I can generate data files from my own structures/docked poses as input compatible for training gnina models. I know |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Unfortunately this is still very much WIP and there are no proper tutorials or instructions besides what you can find at gnina-torch.rtfd.io. However, you can find some examples on how to use As you say,
This file is also the required argument of For molecular files, you can use whatever is supported by Open Babel, not just gnina-torch/gninatorch/dataloaders.py Line 112 in 34650b8 gnina-torch/gninatorch/dataloaders.py Lines 124 to 140 in 34650b8 If your data set is large, you might want to use GNINA's In gnina-torch/gninatorch/gnina.py Lines 321 to 338 in 34650b8 |
Beta Was this translation helpful? Give feedback.
Unfortunately this is still very much WIP and there are no proper tutorials or instructions besides what you can find at gnina-torch.rtfd.io.
However, you can find some examples on how to use
gninatorch.training
andgninatorch.inference
under theexamples
folder.As you say,
gninatorch
useslibmolgrid
for grid-based featurisation of the molecular complexes, and you can find some more information in the libmolgrid documentation and in the libmolgrid tutorials. Essentially, what theExampleProvider.pupulate
expects is a file containing the labels, a path to the protein file, and a path to a ligand file:Th…