---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/tmp/ipykernel_71/2151244571.py in <module>
----> 1 aud2spec(at).show()
~/.conda/envs/default/lib/python3.9/site-packages/fastaudio/core/spectrogram.py in show(self, ctx, ax, title, **kwargs)
75 def show(self, ctx=None, ax=None, title="", **kwargs):
76 "Show spectrogram using librosa"
---> 77 return show_spectrogram(self, ctx=ctx, ax=ax, title=title, **kwargs)
78
79
~/.conda/envs/default/lib/python3.9/site-packages/fastaudio/core/spectrogram.py in show_spectrogram(sg, title, ax, ctx, **kwargs)
86 # x_start, y_start, x_lenght, y_lenght, all in percent
87 ia = ax.inset_axes((i / sg.nchannels, 0.2, 1 / sg.nchannels, 0.7))
---> 88 z = specshow(
89 channel.cpu().numpy(), ax=ia, **sg._all_show_args(show_y=i == 0), **kwargs
90 )
~/.conda/envs/default/lib/python3.9/site-packages/librosa/display.py in specshow(data, x_coords, y_coords, x_axis, y_axis, sr, hop_length, fmin, fmax, tuning, bins_per_octave, key, Sa, mela, thaat, ax, **kwargs)
854 # Set up axis scaling
855 __scale_axes(axes, x_axis, "x")
--> 856 __scale_axes(axes, y_axis, "y")
857
858 # Construct tickers and locators
~/.conda/envs/default/lib/python3.9/site-packages/librosa/display.py in __scale_axes(axes, ax_type, which)
972 return
973
--> 974 scaler(mode, **kwargs)
975
976
~/.conda/envs/default/lib/python3.9/site-packages/matplotlib/axes/_base.py in set_yscale(self, value, **kwargs)
4098 g = self.get_shared_y_axes()
4099 for ax in g.get_siblings(self):
-> 4100 ax.yaxis._set_scale(value, **kwargs)
4101 ax._update_transScale()
4102 ax.stale = True
~/.conda/envs/default/lib/python3.9/site-packages/matplotlib/axis.py in _set_scale(self, value, **kwargs)
759 def _set_scale(self, value, **kwargs):
760 if not isinstance(value, mscale.ScaleBase):
--> 761 self._scale = mscale.scale_factory(value, self, **kwargs)
762 else:
763 self._scale = value
~/.conda/envs/default/lib/python3.9/site-packages/matplotlib/scale.py in scale_factory(scale, axis, **kwargs)
595 scale = scale.lower()
596 scale_cls = _api.check_getitem(_scale_mapping, scale=scale)
--> 597 return scale_cls(axis, **kwargs)
598
599
TypeError: __init__() got an unexpected keyword argument 'linthreshy'