-
I'm trying to run tutorials/quick_start.ipynb
When I run this code:
```
train_raw = mz.datasets.toy.load_data(stage='train', task=task)
test_raw = mz.datasets.toy.load_data(stage='test', task=task…
-
1. In the [MVLSTM paper](https://arxiv.org/pdf/1511.08277.pdf), the author used Cosine/Bilinear/Tensor function to model interactions while in Matchzoo implementation (https://github.com/NTMC-Communit…
-
Hello, I'm trying to use matchzoo in google colab, but after I installed matchzoo with `!pip install matchzoo` when I try to import it this error is occuring:
--------------------------------------…
-
In the MatchZoo-py/tutorials/ranking/drmm.ipynb, I change the parameter 'device' in trainloader = mz.dataloader.DataLoader and trainer = mz.trainers.Trainer as device = torch.device('cuda'). The nvidi…
-
I am wondering if I can use label = 0.5 or other float value as label to train and test drmm model? How about duet and matchpyramid?
-
Hi I found a problem when using the duet model. Basically after basic_preprocessor, the text_left and text_right vectors are not the same for two same text (exact match). I read through the code, and …
sth4k updated
4 years ago
-
I am using MatchZoo 2.1 to training some models, and I have some questions. When I train the drmm model for document ranking, the label of documents in tutorial is either 0 or 1. I am wondering if I u…
-
I'm using MatchZoo for a while now, but when I'm running the models on gpu, it seems like it doesn’t use it properly. I'm using TensorFlow-gpu, it finds everything and starts running but gpu usage is …
-
hi, I wonder if it is possible to use probability values on the label columns when using dssm model for ranking. for example, instead of having something like [1,0,0,0,0], I would have [0.4, 0.1, 0.2,…
-
Hi,
is the matchzoo mean average precision really the "real" mAP" for multiple queries? It looks for my like the calculation of just the average precision.
My problem is that I want to evaluate on…