Browse Source

[DOC] Minor changes to datasets

pull/1/head
Tony-HYX 2 years ago
parent
commit
2a632ed76c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/Intro/Datasets.rst

+ 1
- 1
docs/Intro/Datasets.rst View File

@@ -66,7 +66,7 @@ Besides the user-provided dataset, various forms of data are utilized and dynami

``ListData`` is the underlying abstract data interface utilized in ABL-Package. As the fundamental data structure, ``ListData`` implements commonly used data manipulation methods and is responsible for transferring data between various components of ABL, ensuring that stages such as prediction, abductive reasoning, and training can utilize ``ListData`` as a unified input format. Before proceeding to other stages, user-provided datasets will be firstly converted into ``ListData``.

Instead of providing a tuple consisting of ``X``, ``gt_pseudo_label``, and ``Y``, ABL-Package also allows users to directly supply data in ``ListData`` format, which similarly requires the inclusion of these three attributes. The following code shows the basic usage of ``ListData``. More information can be found in the `API documentation <../API/abl.data.html#structure>`_.
Besides providing a tuple of ``(X, gt_pseudo_label, Y)``, ABL-Package also allows users to directly supply data in ``ListData`` format, which similarly requires the inclusion of these three attributes. The following code shows the basic usage of ``ListData``. More information can be found in the `API documentation <../API/abl.data.html#structure>`_.

.. code-block:: python



Loading…
Cancel
Save