Simple request for sample code
I heard that TPOT generates some code at the end of model training for reproducing/re-training the model. Would that code be using libraries like PyTorch or Tensorflow (i.e the actual code needed to run the model) without importing TPOT library or would it use TPOT as a wrapper to specify which "best" model to use, so would basically be a bunch of extra parameters for TPOT to use?
Or a standalone piece of code with an independent model?
If you look here in the README you can see that the exported model does require TPOT because it provides some convenience functions.
This might not always be the case depending on the final model that is exported, though.
Ahh, right. I was wondering whether it would use a standalone piece of code that would run the model. Still, thanx a ton for the info!