BERT-NER icon indicating copy to clipboard operation
BERT-NER copied to clipboard

Pytorch-Named-Entity-Recognition-with-BERT

Results 33 BERT-NER issues
Sort by recently updated
recently updated
newest added

@kamalkraj Or do you know any repositories which can get a Chinese NER result like below: [ {'word': 'Steve', 'tag': 'B-PER', 'confidence': 0.9993595480918884}, {'word': 'went', 'tag': 'O', 'confidence': 0.9997534155845642}, {'word':...

I have cloned code from dev branch and executing following command to fine-tune model on CPU: `python run_ner.py --cache_dir=path_to_cache --data_dir=path_to_data --bert_model=bert-base-uncased --task_name=ner --output_dir=path_to_output --no_cuda --do_train --do_eval --warmup_proportion=0.1` But I am...

I am trying to work with cpp. But I only have bin files. I wonder how it can be divided into two parts.

Hi, at training process, I set --do_eval, after training it prints the val results? How to print the test results after training? Thanks.

Thank you for the fantastic program. I would like to use custom trained model as an input for the Inference CPP program. However, the training program only produces `pytorchmodel.bin` How...

Bumps [flask-cors](https://github.com/corydolphin/flask-cors) from 3.0.8 to 3.0.9. Release notes Sourced from flask-cors's releases. Release 3.0.9 Security Escape path before evaluating resource rules (thanks @​praetorian-colby-morgan). Prior to this, flask-cors incorrectly evaluated CORS...

dependencies

Hi, thanks for the code, i've some questions about it, 1. what is label_mask and why need it? cause we already have input_mask. and 2. what is valid_ids mean?

@kamalkraj In cpp-app/unlib folder there is so many header and cpp files. Along with these files there is one more app.cpp file in cpp-app folder. I want to create DLL...

Thanks for the nice code. I am confused with the evaluation code in run_ner.py L570. In particular, why "if j==0: continue" and what is variable "temp_" for? It would be...