diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 9b90cd7..6f3e6fd 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.7, 3.8, 3.9] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 - name: Set up Python diff --git a/docs/Intro/Basics.rst b/docs/Intro/Basics.rst index 37e8cae..0ac8db8 100644 --- a/docs/Intro/Basics.rst +++ b/docs/Intro/Basics.rst @@ -28,8 +28,8 @@ such as ``SymbolAccuracy`` and ``ReasoningMetric`` (both specialized metrics inherited from the ``BaseMetric`` class), for evaluating model quality from a 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 compatible with various frameworks, including those based on Scikit-learn or PyTorch neural networks constructed by the ``BasicNN`` class.