NN_NER_tensorFlow
NN_NER_tensorFlow copied to clipboard
Implementing , learning and re implementing "End-to-end Sequence Labeling via Bi-directional LSTM-CNNs-CRF" in Tensorflow
pooled = tf.nn.max_pool( h_expand, ksize=[1,sequence_length * max_char_per_word,1, 1], strides=[1, max_char_per_word, 1, 1], padding='SAME', name="pooled") I'm confused about the second dimension of ksize, which covers all characters in one sentence ....
When I run the model on my dataset. The Dev Dataset is a little larger than the conll2003. So in the Evaluation, this error 2018-12-28 12:14:05.446349: W tensorflow/core/framework/allocator.cc:122] Allocation of...
In the test_NER.py file, you forget to add the last ''' to the string.
tf version: 1.1.0 python version: 3.4.5 ======================= 2018-03-15T11:38:40.251583: step 1, loss 68.8194 Traceback (most recent call last): File "/dhome/jayhsu/miniconda2/envs/ENV/lib/python3.4/site-packages/tensorflow/python/client/session.py", line 1039, in _do_call return fn(*args) File "/dhome/jayhsu/miniconda2/envs/ENV/lib/python3.4/site-packages/tensorflow/python/client/session.py", line 1021, in...
Reverts LopezGG/NN_NER_tensorFlow#3
Hi there! 👋 I noticed that your repo includes LLM evaluation logic like `eval.py`, custom scoring, or `ChatCompletion` usage. If you're working on model evaluation, you might be interested in...