MatchZoo-py icon indicating copy to clipboard operation
MatchZoo-py copied to clipboard

Facilitating the design, comparison and sharing of deep text matching models.

Results 29 MatchZoo-py issues
Sort by recently updated
recently updated
newest added

Hi, In drmm model, Should it be **x = torch.einsum('bl,bl->b', torch.flip(dense_output,(-1,)), attention_probs)** Instead of x = torch.einsum('bl,bl->b', dense_output, attention_probs) After I revise this, I got the training loss reduction much...

bug

As far as I understand, right now text pairs are picked directly using Datapack samples. However it is almost impossible to mine "hard" negative samples before training. Just adding into...

enhancement

I have the following issue, which is really odd and affects the evaluation of the neural models. I build my data using the auto preparer and I came to realize,...

bug

Hi, I have a question regarding choosing the epochs and doing hyperparameter tuning in general. I am currently using `matchzoo.trainers.trainer` to train my models with the default number of epochs(=10)....

question

When i use bert processor to tranform my dataset, there will appear a warning: Token indices sequence length is longer than the specified maximum sequence length for this model (694...

question

### Describe the Question Please provide a clear and concise description of what the question is. I am on matchzoo-py1.1.1 and when I try to play with the codemz.auto.Tuner ,...

question

### Describe the Question I am trying to get the rank out of a trained model (using trainer). However, when I do `trainer.predict()` I get back a numpy array of...

question

### Describe the bug Hi, I have the following issue: when I am trying to train my model using `trainer.run()`, I get the following error: ``` Traceback (most recent call...

bug

I have a task in which I need to match several texts with huge (~1M texts) database. Even though available models are pretty fast, this is not enough. The best...

enhancement