From 629f8c57d1a65ee41c1c8da1945198ed5f64f414 Mon Sep 17 00:00:00 2001 From: Edoardo Balzani Date: Mon, 9 Dec 2024 16:30:13 -0500 Subject: [PATCH] Update docs/background/plot_01_1D_basis_function.md Co-authored-by: William F. Broderick --- docs/background/plot_01_1D_basis_function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/background/plot_01_1D_basis_function.md b/docs/background/plot_01_1D_basis_function.md index e8857dc2..67d809ed 100644 --- a/docs/background/plot_01_1D_basis_function.md +++ b/docs/background/plot_01_1D_basis_function.md @@ -106,7 +106,7 @@ if path.exists(): ## Feature Computation The bases in the `nemos.basis` module can be grouped into two categories: -1. **Evaluation Bases**: These bases use the [`compute_features`](nemos.basis._basis.Basis.compute_features) method to evaluate the basis directly, applying a non-linear transformation to the input. Classes in this category have names starting with "Eval," such as `BSplineEval`. +1. **Evaluation Bases**: These bases use the [`compute_features`](nemos.basis._basis.Basis.compute_features) method to evaluate the basis directly, applying a non-linear transformation to the input. Classes in this category have names ending with "Eval," such as `BSplineEval`. 2. **Convolution Bases**: These bases use the [`compute_features`](nemos.basis._basis.Basis.compute_features) method to convolve the input with a kernel of basis elements, using a `window_size` specified by the user. Classes in this category have names starting with "Conv," such as `BSplineConv`.