# Can we open the Spacy's NER model predictions in the annotation tool

**URL:** https://support.prodi.gy/t/can-we-open-the-spacys-ner-model-predictions-in-the-annotation-tool/1909
**Category:** Uncategorized
**Tags:** solved, usage, ner
**Created:** [August 19, 2019, 6:44am UTC](https://support.prodi.gy/t/can-we-open-the-spacys-ner-model-predictions-in-the-annotation-tool/1909 "2019-08-19T06:44:15Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![sriiitr](https://avatars.discourse-cdn.com/v4/letter/s/b4bc9f/32.png) [@sriiitr](https://support.prodi.gy/u/sriiitr)
#### Post date: [August 19, 2019, 6:44am UTC](https://support.prodi.gy/t/can-we-open-the-spacys-ner-model-predictions-in-the-annotation-tool/1909/1 "2019-08-19T06:44:15Z")

</div>

We built an NER model using Prodigy's ner.batch-train recipe. I am just thinking if I can open the predictions made by the model on the annotation tool again so that I can fix the prediction and start using them for improving the models further.

Any thoughts?

---

<div class="post-metadata">

### Author: ![ines](https://sea2.discourse-cdn.com/flex020/user_avatar/support.prodi.gy/ines/32/3_2.png) [@ines](https://support.prodi.gy/u/ines)
#### Post date: [August 19, 2019, 9:09am UTC](https://support.prodi.gy/t/can-we-open-the-spacys-ner-model-predictions-in-the-annotation-tool/1909/2 "2019-08-19T09:09:00Z")

</div>

Yes, that's pretty much exactly the idea of the `ner.make-gold` workflow: you load a model, run it over the text, add the predicted entities as `"spans"` so you can view them all in the interface and edit them if necessary.

You can use the built-in recipe, or check out the implementation here to see how it works (and customise it if you want):

> <https://github.com/explosion/prodigy-recipes/blob/master/ner/ner_make_gold.py>
