From 2a632ed76c7a4d7344416700883b69db5b400cc2 Mon Sep 17 00:00:00 2001 From: Tony-HYX <605698554@qq.com> Date: Sun, 24 Dec 2023 22:04:21 +0800 Subject: [PATCH] [DOC] Minor changes to datasets --- docs/Intro/Datasets.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Intro/Datasets.rst b/docs/Intro/Datasets.rst index f92655d..cb4f92a 100644 --- a/docs/Intro/Datasets.rst +++ b/docs/Intro/Datasets.rst @@ -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