LSTM-CRF
LSTM-CRF copied to clipboard
some bugs
I think there are some bugs about FLAGS
There are many UnrecognizedFlagErrors
@Felix0805 Thank you for reporting the bugs. Can you please provide some details about the bugs?
When you run the whole project In main.py line 245-247 have the error: absl.flags._exceptions.UnrecognizedFlagError: Unknown command line flag 'label2idx'
Do you have the Traceback for this bug?
'label2idx' isn't an argument, you don't need to give a 'label2idx' in command line.
yeah,I don't give a 'label2idx' in command line, but 'label2idx' is undefined in Flag
OK, I understood. It looks like the API has changed. And it was not recommended to use FLAGS like that.
Thank you for your advice. I think it can be fixed by using a dictionary to store those undefined variables.