johnfraney / django-ner-trainer-example

1 stars 0 forks source link

add screenshots on Readme #1

Open mgogoulos opened 6 years ago

mgogoulos commented 6 years ago

Hi, this looks very interesting. I'd like to see screenshots - if you can add some it would be great!

johnfraney commented 6 years ago

@mgogoulos Hello! I'm surprised you found this project, but thanks for your interest. It's still a work in progress, but here's a quick video showing how tagging works:

django-ner-trainer-example

Once you submit the form, the named entity along with the start/stop indexes are saved as PhraseEntity instances from my django-ner-trainer package. You can then train a spaCy model using those phrase entities using a management command that comes from that same package:

./manage.py train_ner_model

Then you can package that model with:

./manage.py package_ner_model

I'll keep this issue open as a reminder to get this project tidied up and to take some better screenshots and videos once it's ready.

Thanks again for taking an interest! It's good motivation to get this finished.