* Change `reduce_logsumexp` to internally use `reshape` rather than `squeeze` since the latter requires the `axis` arg to be a Python `list`. PiperOrigin-RevId: 183396533 * Kernel utils to support broadcast add and mul. PiperOrigin-RevId: 183397494 * Updating sparsify_gather. PiperOrigin-RevId: 183402917 * [tf.data] Move slow-path-related code into the slow path in IteratorHandleOp::Compute(). This slightly reduces the amount of work performed when an iterator is accessed (after the first access), and potentially reduces contention if concurrent steps are accessing the same iterator. PiperOrigin-RevId: 183406221 * Cleanup: Ran clang-format on all *.{cc,h} in under grappler. PiperOrigin-RevId: 183406440 * Increase shard count of //third_party/tensorflow/python:nn_batchnorm_test to avoid timeouts When run under asan, the test runs for about 5 minutes, and sometimes longer, causing frequent timeouts. This change increases the shard count of the test to 4, which brings the run time of the longest running shard under asan to about 2 minutes. PiperOrigin-RevId: 183414888 * Add available choices to toco flags and fix minor formatting issues. PiperOrigin-RevId: 183415713 * Performance improvements to some GPU code to use shared locks instead of unique locks for some hotspot cases. PiperOrigin-RevId: 183418559 * [XLA] Improve error message for bad slices. PiperOrigin-RevId: 183420038 * Fix py3 build rules for all py tests under py2tf. PiperOrigin-RevId: 183422144 * Fix bug with Operation._control_inputs setter. PiperOrigin-RevId: 183422192 * Make softmax_op_test.py work with C API enabled. PiperOrigin-RevId: 183422829 * Cleanup: Ran clang-format on all *.{cc,h} files in tensorflow/core/kernels. PiperOrigin-RevId: 183423961 * Fix the documentation for the dense layer for how rank > 2 inputs are handled. PiperOrigin-RevId: 183425868 * Cleanup: Ran clang-format on all *.{cc,h} in tensorflow/core/ops. PiperOrigin-RevId: 183429339
77 lines
2.7 KiB
C++
77 lines
2.7 KiB
C++
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
// Basic class for computing MFCCs from spectrogram slices.
|
|
|
|
#ifndef TENSORFLOW_CORE_KERNELS_MFCC_H_
|
|
#define TENSORFLOW_CORE_KERNELS_MFCC_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "tensorflow/core/framework/op_kernel.h"
|
|
#include "tensorflow/core/kernels/mfcc_dct.h"
|
|
#include "tensorflow/core/kernels/mfcc_mel_filterbank.h"
|
|
#include "tensorflow/core/platform/logging.h"
|
|
|
|
namespace tensorflow {
|
|
|
|
class Mfcc {
|
|
public:
|
|
Mfcc();
|
|
bool Initialize(int input_length, double input_sample_rate);
|
|
|
|
// Input is a single squared-magnitude spectrogram frame. The input spectrum
|
|
// is converted to linear magnitude and weighted into bands using a
|
|
// triangular mel filterbank, and a discrete cosine transform (DCT) of the
|
|
// values is taken. Output is populated with the lowest dct_coefficient_count
|
|
// of these values.
|
|
void Compute(const std::vector<double>& spectrogram_frame,
|
|
std::vector<double>* output) const;
|
|
|
|
void set_upper_frequency_limit(double upper_frequency_limit) {
|
|
CHECK(!initialized_) << "Set frequency limits before calling Initialize.";
|
|
upper_frequency_limit_ = upper_frequency_limit;
|
|
}
|
|
|
|
void set_lower_frequency_limit(double lower_frequency_limit) {
|
|
CHECK(!initialized_) << "Set frequency limits before calling Initialize.";
|
|
lower_frequency_limit_ = lower_frequency_limit;
|
|
}
|
|
|
|
void set_filterbank_channel_count(int filterbank_channel_count) {
|
|
CHECK(!initialized_) << "Set channel count before calling Initialize.";
|
|
filterbank_channel_count_ = filterbank_channel_count;
|
|
}
|
|
|
|
void set_dct_coefficient_count(int dct_coefficient_count) {
|
|
CHECK(!initialized_) << "Set coefficient count before calling Initialize.";
|
|
dct_coefficient_count_ = dct_coefficient_count;
|
|
}
|
|
|
|
private:
|
|
MfccMelFilterbank mel_filterbank_;
|
|
MfccDct dct_;
|
|
bool initialized_;
|
|
double lower_frequency_limit_;
|
|
double upper_frequency_limit_;
|
|
int filterbank_channel_count_;
|
|
int dct_coefficient_count_;
|
|
TF_DISALLOW_COPY_AND_ASSIGN(Mfcc);
|
|
};
|
|
|
|
} // namespace tensorflow
|
|
|
|
#endif // TENSORFLOW_CORE_KERNELS_MFCC_H_
|