LSTM-CRF icon indicating copy to clipboard operation
LSTM-CRF copied to clipboard

A (CNN+)RNN(LSTM/BiLSTM)+CRF model for sequence labelling.:smirk:

Results 8 LSTM-CRF issues
Sort by recently updated
recently updated
newest added

How do you combine feature templates with neural networks?

thank you share your code, can you share your data with us.

I think there are some bugs about FLAGS

bug

The CNN-BiLSTM+CRF model has some problems with network structure. It will be fixed in the next few versions.

bug

how can I close embeddings?

where is the dataset? thank you.

In `hybrid_model.py`, you add `feature template`, if I am right, the implementation is [line 116](https://github.com/heshenghuan/LSTM-CRF/blob/master/hybrid_model.py#L116), ``` scores = feat_sum + tf.matmul(outputs, self.W) + self.b ``` where `feat_sum` is defined as:...

question

Don't use tf.softmax before you sent the scores to TF's crf API. I found that could cause a sharp drop in performance.

enhancement