-
Notifications
You must be signed in to change notification settings - Fork 29
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
Candidate Selection #23
Comments
I didn't try that as removing it would mean a lot of meaningless negative candidates. |
@Praneet9 I have trained this model on structured documents dataset and during the training, validation loss and accuracy were 0.0006 and .98421 respectively, but when I am testing it on the new documents the result is very poor. The trained model is not able to predict those keys for which there are multiple candidates. |
@Neelesh1121 Can you please explain what you mean by
There's no rule like that. In the above case, what are you trying to extract for the amount key? |
@Praneet9 Hi , i am really confused about positional embeddings, Do we have to collect every invoice relative positions of neighbors in the training set , then train the model to generate embedding for a 2 D coordinates like embedding([3,4])= [2.34,3.43,2.34........] |
@panwar2001 Can you elaborate with an example of what issue you are facing? |
@panwar2001 I think you are confusing that projection with the neighbour encoding. The neighbour encodings are projected to 4 * 2d and then maxpooled as you can see here. These tensors are then concatenated with candidate embeddings, which are then projected back down. Hope that answers your confusion. |
Have you experimented with altering the candidate selection process?
I am interested in what occurs when the candidate selection process is simplified or removed entirely so that every possible candidate is evaluated.
The text was updated successfully, but these errors were encountered: