converting from prodigy trained using prodigy to tensorflow

I trained a NER model using prodigy, now I want to convert this model to a tensorflow model, how can I do that.

Hi! The built-in NER training recipes use spaCy and output spaCy models – and there's no easy way to just "convert" that to a TensorFlow model. You could probably write a wrapper around it, but I think it'd be a lot easier to just export your annotations using db-out and then train a TensorFlow model directly.