Browse Source

[DOC, MNT] resolve dataset relative comments

pull/1/head
Gao Enhao 2 years ago
parent
commit
2d0b0ba596
2 changed files with 1 additions and 3 deletions
  1. +1
    -1
      docs/Intro/Datasets.rst
  2. +0
    -2
      docs/Intro/Quick-Start.rst

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

@@ -13,7 +13,7 @@ Dataset & Data Structure
Dataset
-------

ABL-Package offers several `dataset classes <../API/abl.dataset.html>`_ for different usage, such as ``ClassificationDataset``, ``RegressionDataset`` and ``PredictionDataset``, while users are only required to organize the dataset into a tuple consists of the following three components
ABL-Package assumes user data to be structured as a tuple, comprising the following three components:

- ``X``: List[List[Any]]
A list of instances representing the input data. We refer to each List in ``X`` as an instance and one instance may contain several elements.


+ 0
- 2
docs/Intro/Quick-Start.rst View File

@@ -68,8 +68,6 @@ Out:
Shape of X [C, H, W]: torch.Size([1, 28, 28])


ABL-Package provides several dataset classes for different purposes, including ``ClassificationDataset``, ``RegressionDataset``, and ``PredictionDataset``. However, it's not necessary to encapsulate data into these specific classes. Instead, we only need to structure our datasets in the aforementioned formats.

Read more about `preparing datasets <Datasets.html>`_.

Building the Learning Part


Loading…
Cancel
Save