Skip to content

Commit

Permalink
DOCS: fix default value
Browse files Browse the repository at this point in the history
  • Loading branch information
nilomr committed May 7, 2022
1 parent 73c17e0 commit 80f3808
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pykanto/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@


class Parameters:
# TODO: #8 Parameters should be an attrs class with validation @nilomr
"""
General parameters class - stores parameters to be passed to
a :meth:`~pykanto.dataset.KantoData` object.
Expand All @@ -33,7 +34,7 @@ def __init__(self, **kwargs: Any):
self.hop_length: int = 128
"""Number of samples between successive frames. Defaults to 128."""
self.fft_size: int = 2048
"""Number of bins used to divide the window. Defaults to 1024."""
"""Number of bins used to divide the window. Defaults to 2048."""
self.num_mel_bins: int = 224
"""Number of Mel frequency bins to use
(n of 'rows' in mel-spectrogram). Defaults to 224."""
Expand Down

0 comments on commit 80f3808

Please sign in to comment.