-
按照README.md介绍的方法执行:
```shell
#python3 main.py --train=True --clean=True --model_type=bilstm
```
出现了以下问题:
```powershell
Traceback (most recent call last):
File "main.py", line 228, in
…
-
Hi:
python BILSTM_CRF.py
Traceback (most recent call last):
File "BILSTM_CRF.py", line 5, in
from tensorflow.models.rnn import rnn, rnn_cell
ImportError: No module named models.rnn
-
The receptive field of bilateral filter is the whole image. Do you have any suggestion on implementing an window bilateral filter.
-
Hi,
python main_example.py
Traceback (most recent call last):
File "main_example.py", line 5, in
import CRFRNN
File "/home/molys/product/NER/CRF-RNN_Tensorflow/CRFRNN.py", line 8, in
…
-
Though RNN support the word embedding feature which is very plus point of RNN compared to the competitor CRF. is RNN have the capability to support external Gazetteer list and dictionaries as feature?…
-
Hi,
Really impressive work and a nice repository combining all the NER models.
I was trying to comprehend the codebase and what all are its capabilities. To that end, I made a list of NER-baselines …
-
### Question
How can I correctly train two tasks simultaneously on a single corpus using the parameter use_all_task=True? When I attempted to train two models together on one corpus, I encountered a …
-
If your task is similar to the task the model of the ckeckpoint was trained on, you can already use BertModel for predictions without further training.
Traceback (most recent call last):
File "tra…
-
您好,我是tf beginer, 在我升级了tf到0.11后,tf库有不少的api有一些变化,主要是在BILSTM_CRF.py:
from tensorflow.models.rnn import rnn, rnn_cell的包的改变,
raise ImportError("This module is deprecated. Use tf.nn.rnn_* instead.")
然而fo…
-
I use the ChainCRF.py as the CRF Layer in my model to do a sequence labeling task using the OBIE as the tags ,but I meet a problemthat there are some unexpected transition in the predict like E to I.
…