sevenights

Results 2 issues of sevenights

Thanks for you paper and code. But I'm confused with some code. In `src/model.py` function `get_score()` -> function `inner_one_step()` `update_gate = T.exp(T.dot(ugW[:ln+nhiddens,an+ln-nhiddens:an+ln+ln],com)+ugb[an+ln-nhiddens:an+ln+ln]).reshape((len+1,nhiddens))` and in `src/tools.py` function `get_word()` `update_gate = np.exp(np.dot(ugW[:ln+ndims,an+ln-ndims:an+ln+ln],com)+ugb[an+ln-ndims:an+ln+ln]).reshape((len+1,ndims))`...

I have read your paper and the code. But I'm curious about the process since you did the clustering first then the prediction of the size of the clusters. In...