Browse Source

Merge branch 'Dev' of https://github.com/AbductiveLearning/ABL-Package into Dev

pull/1/head
Tony-HYX 2 years ago
parent
commit
4bb123713a
21 changed files with 15 additions and 15 deletions
  1. +4
    -4
      docs/Examples/HED.rst
  2. +2
    -2
      docs/Examples/HWF.rst
  3. +1
    -1
      docs/Examples/MNISTAdd.rst
  4. +2
    -2
      docs/Intro/Basics.rst
  5. +3
    -3
      docs/Intro/Datasets.rst
  6. +2
    -2
      docs/Overview/Abductive-Learning.rst
  7. +1
    -1
      docs/README.rst
  8. BIN
      docs/img/ABL-Package.png
  9. BIN
      docs/img/ABL.png
  10. BIN
      docs/img/Datasets_1.png
  11. BIN
      docs/img/ML.png
  12. BIN
      docs/img/data_example.png
  13. BIN
      docs/img/hed_dataset1.png
  14. BIN
      docs/img/hed_dataset2.png
  15. BIN
      docs/img/hed_dataset3.png
  16. BIN
      docs/img/hed_dataset4.png
  17. BIN
      docs/img/hwf_dataset1.png
  18. BIN
      docs/img/hwf_dataset2.png
  19. BIN
      docs/img/instance.png
  20. BIN
      docs/img/mnist_add_datasets.png
  21. BIN
      docs/img/usage.png

+ 4
- 4
docs/Examples/HED.rst View File

@@ -139,7 +139,7 @@ Out:

First true equation with length 5 in the training dataset:
.. image:: ../img/hed_dataset1.png
.. image:: ../_static/img/hed_dataset1.png
:width: 300px

.. code:: none
@@ -147,7 +147,7 @@ Out:

First true equation with length 8 in the training dataset:
.. image:: ../img/hed_dataset2.png
.. image:: ../_static/img/hed_dataset2.png
:width: 480px

.. code:: none
@@ -155,7 +155,7 @@ Out:

First false equation with length 5 in the training dataset:
.. image:: ../img/hed_dataset3.png
.. image:: ../_static/img/hed_dataset3.png
:width: 300px

.. code:: none
@@ -163,7 +163,7 @@ Out:

First false equation with length 8 in the training dataset:
.. image:: ../img/hed_dataset4.png
.. image:: ../_static/img/hed_dataset4.png
:width: 480px




+ 2
- 2
docs/Examples/HWF.rst View File

@@ -131,7 +131,7 @@ Out:

X in the 1001st data example (a list of images):
.. image:: ../img/hwf_dataset1.png
.. image:: ../_static/img/hwf_dataset1.png
:width: 210px

.. code:: none
@@ -145,7 +145,7 @@ Out:

X in the 3001st data example (a list of images):
.. image:: ../img/hwf_dataset2.png
.. image:: ../_static/img/hwf_dataset2.png
:width: 350px

.. code:: none


+ 1
- 1
docs/Examples/MNISTAdd.rst View File

@@ -124,7 +124,7 @@ Out:

X in the first data example (a list of two images):
.. image:: ../img/mnist_add_datasets.png
.. image:: ../_static/img/mnist_add_datasets.png
:width: 200px




+ 2
- 2
docs/Intro/Basics.rst View File

@@ -18,7 +18,7 @@ The ABL-Package comprises three primary parts: **Data**, **Learning**, and
**Reasoning**, corresponding to the three pivotal components of current
AI: data, models, and knowledge. Below is an overview of the ABL-Package.

.. image:: ../img/ABL-Package.png
.. image:: ../_static/img/ABL-Package.png

**Data** part manages the storage, operation, and evaluation of data efficiently.
It includes the ``ListData`` class, which defines the data structures used in
@@ -64,7 +64,7 @@ Subsequently, these pseudo-labels are processed to minimize inconsistencies with
which in turn revise the outcomes of the learning model, and then
fed back for further training ``ABLModel.train``.

.. image:: ../img/usage.png
.. image:: ../_static/img/usage.png

To implement this process, the following five steps are necessary:



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

@@ -45,15 +45,15 @@ ABL-Package requires user data to be either structured as a tuple ``(X, gt_pseud

As an illustration, in the MNIST Addition task, the data are organized as follows:

.. image:: ../img/Datasets_1.png
.. image:: ../_static/img/Datasets_1.png
:width: 350px
:align: center

.. |data_example| image:: ../img/data_example.png
.. |data_example| image:: ../_static/img/data_example.png
:alt: alternate text
:scale: 8%

.. |instance| image:: ../img/instance.png
.. |instance| image:: ../_static/img/instance.png
:alt: alternate text
:scale: 55%



+ 2
- 2
docs/Overview/Abductive-Learning.rst View File

@@ -8,7 +8,7 @@ Here, a set of data examples is given, including training instances
These data are then used to train a classifier model :math:`f`,
aiming to accurately predict the unseen data instances.

.. image:: ../img/ML.png
.. image:: ../_static/img/ML.png
:align: center
:width: 280px

@@ -46,7 +46,7 @@ base.

The following figure illustrates this process:

.. image:: ../img/ABL.png
.. image:: ../_static/img/ABL.png
:width: 800px

We can observe that in the above figure, the left half involves machine


+ 1
- 1
docs/README.rst View File

@@ -16,7 +16,7 @@ ABL-Package encapsulates advanced ABL techniques, providing users with
an efficient and convenient package to develop dual-driven ABL systems
that leverage both data and knowledge.

.. image:: img/ABL.png
.. image:: _static/img/ABL.png

Installation
------------


BIN
docs/img/ABL-Package.png View File

Before After
Width: 1445  |  Height: 623  |  Size: 181 kB

BIN
docs/img/ABL.png View File

Before After
Width: 1028  |  Height: 563  |  Size: 97 kB

BIN
docs/img/Datasets_1.png View File

Before After
Width: 1145  |  Height: 319  |  Size: 34 kB

BIN
docs/img/ML.png View File

Before After
Width: 527  |  Height: 596  |  Size: 32 kB

BIN
docs/img/data_example.png View File

Before After
Width: 591  |  Height: 219  |  Size: 23 kB

BIN
docs/img/hed_dataset1.png View File

Before After
Width: 516  |  Height: 105  |  Size: 2.8 kB

BIN
docs/img/hed_dataset2.png View File

Before After
Width: 516  |  Height: 72  |  Size: 10 kB

BIN
docs/img/hed_dataset3.png View File

Before After
Width: 516  |  Height: 105  |  Size: 3.7 kB

BIN
docs/img/hed_dataset4.png View File

Before After
Width: 516  |  Height: 72  |  Size: 8.9 kB

BIN
docs/img/hwf_dataset1.png View File

Before After
Width: 515  |  Height: 165  |  Size: 3.6 kB

BIN
docs/img/hwf_dataset2.png View File

Before After
Width: 516  |  Height: 105  |  Size: 15 kB

BIN
docs/img/instance.png View File

Before After
Width: 28  |  Height: 28  |  Size: 494 B

BIN
docs/img/mnist_add_datasets.png View File

Before After
Width: 515  |  Height: 245  |  Size: 2.7 kB

BIN
docs/img/usage.png View File

Before After
Width: 1410  |  Height: 429  |  Size: 298 kB

Loading…
Cancel
Save