diff --git a/flashlight/lib/text/test/decoder/Seq2SeqDecoderTest.cpp b/flashlight/lib/text/test/decoder/Seq2SeqDecoderTest.cpp index 94fc0fda..f35e371a 100644 --- a/flashlight/lib/text/test/decoder/Seq2SeqDecoderTest.cpp +++ b/flashlight/lib/text/test/decoder/Seq2SeqDecoderTest.cpp @@ -28,14 +28,14 @@ void logSeq2seqUpdateFuncParams( const std::vector& prevStepTokenIdxs, const std::vector& prevStepModelStates, const int& timestep) { - std::cout << "seq2seq update func called with" - << " N = " << N << " T = " << T << " prevStepTokenIdxs {"; + std::cout << "seq2seq update func called with" << " N = " << N << " T = " << T + << " prevStepTokenIdxs {"; for (int i : prevStepTokenIdxs) { std::cout << i << ", "; } - std::cout << "} " - << " prevStepModelStates vec of size " << prevStepModelStates.size() - << " timestep = " << timestep << std::endl; + std::cout << "} " << " prevStepModelStates vec of size " + << prevStepModelStates.size() << " timestep = " << timestep + << std::endl; } TEST(Seq2SeqDecoderTest, LexiconFreeBasic) {