x-vector-pytorch
x-vector-pytorch copied to clipboard
about forward function in x_vector.py
I wonder why in forward step, it returns the tdnn1_out. I suppose it should be commented else the model training will not work?
def forward(self, inputs):
tdnn1_out = self.tdnn1(inputs)
**return tdnn1_out**
also, what is the difference to x_vector_Indian_LID.py? what does _Indian_LID meant?
Thanks