from local

This commit is contained in:
dohe0342 2023-02-14 18:52:38 +09:00
parent caf09a554e
commit 7beb40420e
2 changed files with 2 additions and 1 deletions

View File

@ -143,7 +143,8 @@ class Conformer(Transformer):
self.interctc = interctc
self.interctc_condition = interctc_condition
if self.interctc_condition:
self.condition_layer = ScaledLinear(500, d_model)
#self.condition_layer = ScaledLinear(500, d_model)
self.condition_layer = torch.nn.Linear(500, d_model)
else:
self.condition_layer = None