From 0564650824cdce663a0ead1cbd36ada3e9430279 Mon Sep 17 00:00:00 2001 From: Jeremy Fix Date: Wed, 29 Nov 2023 17:52:09 +0100 Subject: [PATCH] fix subject sol/tmpl tags --- LabsSolutions/02-pytorch-asr/models.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LabsSolutions/02-pytorch-asr/models.py b/LabsSolutions/02-pytorch-asr/models.py index 552c7c1..5e02d73 100644 --- a/LabsSolutions/02-pytorch-asr/models.py +++ b/LabsSolutions/02-pytorch-asr/models.py @@ -219,8 +219,7 @@ def beam_decode(self, inputs: PackedSequence, beam_size: int, blank_id: int): outputs = self.forward(inputs) return beam_decode(outputs, beam_size, blank_id, self.charmap) - -# @SOL + # SOL@ class CTCModel(nn.Module): @@ -473,6 +472,8 @@ def beam_decode(self, inputs: PackedSequence, beam_size: int, blank_id: int): outputs = self.forward(inputs) return beam_decode(outputs, beam_size, blank_id, self.charmap) + # SOL@ + # @SOL def ex_ctc():