Dataframe batcher use pre-existing model with overwrite disabled #115
-
with Dataframe Batcher the current implementation requires a pre-existing checkpoints folder to be deleted, is there a method to generate records with the batcher using a pre-trained model? https://github.com/gretelai/gretel-synthetics/blob/master/src/gretel_synthetics/batch.py#L1022 it seems that this check should be a warning rather than preventing the use of previous checkpoints |
Beta Was this translation helpful? Give feedback.
Answered by
johntmyers
Feb 10, 2022
Replies: 1 comment 1 reply
-
@dpat If you set the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dpat
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@dpat If you set the
mode
toREAD
when you construct the Batcher, it will load an existing model that you can generate from. Is that what you are looking for?