Skip to content

Commit 2dbaa15

Browse files
committed
chore: remove logs
1 parent efda4fd commit 2dbaa15

File tree

1 file changed

+0
-5
lines changed
  • packages/react-native-executorch/common/rnexecutorch/models/speech_to_text/asr

1 file changed

+0
-5
lines changed

packages/react-native-executorch/common/rnexecutorch/models/speech_to_text/asr/ASR.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include "executorch/extension/tensor/tensor_ptr.h"
66
#include "rnexecutorch/data_processing/Numerical.h"
77
#include "rnexecutorch/data_processing/gzip.h"
8-
#include <rnexecutorch/Log.h>
98

109
namespace rnexecutorch::models::speech_to_text::asr {
1110

@@ -277,10 +276,6 @@ std::vector<float> ASR::decode(std::span<int32_t> tokens,
277276
const auto encoderOutputSize = static_cast<int32_t>(encoderOutput.size());
278277
std::vector<int32_t> encShape = {1, ASR::kNumFrames,
279278
encoderOutputSize / ASR::kNumFrames};
280-
log(LOG_LEVEL::Debug, encShape);
281-
log(LOG_LEVEL::Debug, tokenShape);
282-
log(LOG_LEVEL::Debug, this->encoder->getAllInputShapes());
283-
log(LOG_LEVEL::Debug, this->decoder->getAllInputShapes());
284279
auto encoderTensor = executorch::extension::make_tensor_ptr(
285280
std::move(encShape), encoderOutput.data(), ScalarType::Float);
286281

0 commit comments

Comments
 (0)