Browse Source

[DOC, FIX] Minor revision to doc, add py3.10-11 in test

pull/1/head
Tony-HYX 2 years ago
parent
commit
b7064f45eb
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      .github/workflows/build-and-test.yaml
  2. +2
    -2
      docs/Intro/Basics.rst

+ 1
- 1
.github/workflows/build-and-test.yaml View File

@@ -12,7 +12,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python - name: Set up Python


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

@@ -28,8 +28,8 @@ such as ``SymbolAccuracy`` and ``ReasoningMetric`` (both specialized metrics
inherited from the ``BaseMetric`` class), for evaluating model quality from a inherited from the ``BaseMetric`` class), for evaluating model quality from a
data perspective. data perspective.


:blue-bold:`Learning` part focuses on the construction, deployment, and
training of machine learning models. The ``ABLModel`` class is the
:blue-bold:`Learning` part focuses on the construction, training, and
prediction of machine learning models. The ``ABLModel`` class is the
central class that encapsulates the machine learning model. This class is central class that encapsulates the machine learning model. This class is
compatible with various frameworks, including those based on Scikit-learn compatible with various frameworks, including those based on Scikit-learn
or PyTorch neural networks constructed by the ``BasicNN`` class. or PyTorch neural networks constructed by the ``BasicNN`` class.


Loading…
Cancel
Save