def _get_mel_bins()

in src/exporters/coreml/config.py [0:0]


    def _get_mel_bins(self):
        if hasattr(self._config, "num_mel_bins"):
            return self._config.num_mel_bins
        elif hasattr(self._config, "input_feat_per_channel"):
            return self._config.input_feat_per_channel
        else:
            return 0