-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to run a pretrained model on unlabeled data? #30
Comments
Hi! I guess the easiest way for you to do this is to still create the "ner" and "relations" field in your unlabeled dataset, but set them to be empty for each sentence. For example, if a document contains 4 sentences, you can set the "ner" and "relations" as Thanks for pointing this out! I plan to add a |
I just wanted to check in to see if you thought the |
Just wanted to leave an update for anyone trying this -- your data file should be in a file called Edit: I had typed |
Hi, |
I would like to know if the prediction function of the model on the unlabeled dataset has been updated, and where I can see the relevant code, thank you very much |
Hi,
I'm looking to apply your pretrained models to an unlabeled, new dataset. I have my dataset in DyGIE format. Looking at the script, it's unclear to me how to do this, becuase there are only two blocks of code in the script. The first is
if args.do_train:
, where the model is trained, and the second isif args.do_eval:
, where the model is evaluated.I don't want to train, since I'm using a pre-trained model, but I also don't want to evaluate, since my data don't have labels, which makes my use case different than the example of applying the pretrained scibert models to the scierc dataset.
Wondering if you have pointers on how to do this?
Thanks!
The text was updated successfully, but these errors were encountered: