cjiang2 / VDCNN

Implementation of Very Deep Convolutional Neural Network for Text Classification
171 stars 41 forks source link

correction to self.logits assignment in VDCNN #19

Open samyuktsriram opened 2 years ago

samyuktsriram commented 2 years ago

in init(), self.logits was =True, which is incorrect. Should be =logits, which takes in the required Boolean value (logits) from the function arguments instead of being set to True always.