Vardaan Pahuja
Vardaan Pahuja
In the function `convert_examples_to_features`, each word may be split into >1 word by the BERT tokenizer ``` token = tokenizer.tokenize(word) tokens.extend(token) ``` but the length of labels remains the same....
In https://github.com/chnsh/BERT-NER-CoNLL/blob/master/model.py#L25, shouldn't it be `labels[mask.nonzero().squeeze(1)]` instead of `labels[mask]`? If you do labels[mask], then mask is either 0 or 1, which means you are selecting the 1st or 2nd dim....
In the code, you report the best accuracy on the test set over all epochs. But generally, the validation set should be used for model selection and not the test...
I am trying to convert the `Resnet-200` model available in the official fb repo. `https://github.com/facebook/fb.resnet.torch/tree/master/pretrained` but get the error `torch.utils.serialization.read_lua_file.T7ReaderException: unknown type id -604711119. The file may be corrupted.` In...
I am trying to convert the `Resnet-200` model available in the official fb repo. `https://github.com/facebook/fb.resnet.torch/tree/master/pretrained` but get the error `torch.utils.serialization.read_lua_file.T7ReaderException: unknown type id -604711119. The file may be corrupted.` Since...
Hi, congrats for the great work! Could you provide the code to train on iNaturalist 2018 dataset? Or describe how to train/fine-tune the model? Thanks
### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...
Hi, thanks for the great work! I have been working to add a SOM annotated image as additional observation input. I need to make sure that the accessibility/DOM tree and...
Hi, I am trying to run `nli/clingen_step1.py` but get the error `FileNotFoundError: [Errno 2] No such file or directory: '../../data/mediqa-nli/kg/'`. The keywords file is missing, could you please upload it?...