Commit 9938db8f authored by Nathan Frey's avatar Nathan Frey
Browse files

Add SDFLoader docs

parent 99651bfb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -685,7 +685,9 @@ class JsonLoader(DataLoader):
class SDFLoader(DataLoader):
  """Creates a `Dataset` object from SDF input files.

  This class provides conveniences to load and featurize data from SDF files.
  This class provides conveniences to load and featurize data from
  Structure Data Files (SDFs). SDF is a standard format for structural
  information (3D coordinates of atoms and bonds) of molecular compounds.

  Examples
  --------
+6 −0
Original line number Diff line number Diff line
@@ -48,6 +48,12 @@ ImageLoader
.. autoclass:: deepchem.data.ImageLoader
  :members:

SDFLoader
^^^^^^^^^

.. autoclass:: deepchem.data.SDFLoader
  :members:

InMemoryLoader
^^^^^^^^^^^^^^
The :code:`dc.data.InMemoryLoader` is designed to facilitate the processing of large datasets where you already hold the raw data in-memory (say in a pandas dataframe).