Skip to content

Commit

Permalink
removed args from docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
BalzaniEdoardo committed Dec 3, 2024
1 parent ed414be commit 2b7b123
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions src/nemos/basis/_decaying_exponential.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ class OrthExponentialBasis(Basis, abc.ABC):
mode :
The mode of operation. ``'eval'`` for evaluation at sample points,
``'conv'`` for convolutional operation.
bounds :
The bounds for the basis domain in ``mode="eval"``. The default ``bounds[0]`` and ``bounds[1]`` are the
minimum and the maximum of the samples provided when evaluating the basis.
If a sample is outside the bounds, the basis will return NaN.
label :
The label of the basis, intended to be descriptive of the task variable being processed.
For example: velocity, position, spike_counts.
Expand Down
6 changes: 0 additions & 6 deletions src/nemos/basis/_raised_cosine_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,6 @@ class RaisedCosineBasisLog(RaisedCosineBasisLinear, abc.ABC):
If set to True, the algorithm first constructs a basis with ``n_basis_funcs + ceil(width)`` elements
and subsequently trims off the extra basis elements. This ensures that the final basis element
decays to 0.
window_size :
The window size for convolution. Required if mode is 'conv'.
bounds :
The bounds for the basis domain in ``mode="eval"``. The default ``bounds[0]`` and ``bounds[1]`` are the
minimum and the maximum of the samples provided when evaluating the basis.
If a sample is outside the bounds, the basis will return NaN.
label :
The label of the basis, intended to be descriptive of the task variable being processed.
For example: velocity, position, spike_counts.
Expand Down

0 comments on commit 2b7b123

Please sign in to comment.