skip-thoughts.torch icon indicating copy to clipboard operation
skip-thoughts.torch copied to clipboard

How would a decoder be implemented?

Open alphamupsiomega opened this issue 8 years ago • 1 comments

The original decoder from Kiros is here: https://github.com/ryankiros/skip-thoughts/tree/master/decoding

How would this be implemented in this repo?

alphamupsiomega avatar Jan 29 '18 01:01 alphamupsiomega

You can reproduce the Kiros' setup. You would need to implement the decoder which takes as input the outputs of the encoder (it is not too hard using the code in this repo as a starting point) and as output a sequential list (one step per word) of logits (proba of words). Then the dataset. I advise you to look at different implementations online.

Cadene avatar Jan 30 '18 15:01 Cadene