Prateek Joshi

Results 4 comments of Prateek Joshi

Hi, you don't have to change the softmax function. Just replace the output units from 2 to the number of classes in your dataset in the layer below: `self.fc2 =...

Hi, simply replace the output units from 2 to the number of classes in your dataset in the layer below: self.fc2 = nn.Linear(512,2)

Hi, if you are not using the below code then it means that all the parameters of the BERT architecture will get tuned during model training. ``` for param in...

Hi @JessicaKuo May I know which dataset you are using for multi-label classification?