We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
you add LSTM in hidden2tag function, then both crf and softmax can use it
def hidden2tag(hiddenlayer,numclass): bi = tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(100, return_sequences=True)) linear = tf.keras.layers.Dense(numclass,activation=None) hiddenlayer = bi(hiddenlayer) hiddenlayer = linear(hiddenlayer) return hiddenlayer
Sorry, something went wrong.
thank you . In my data , i hava 80 categories , the FBI = 55. How can i improve my accuracy ?
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: