Unverified Commit 9f3d3995 authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #2180 from ncfrey/sdf-loader-docs

Add SDFLoader docs
parents 99651bfb 9938db8f
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).