bloomsburyai/question-generation

How do i get the .ckpt file for the model ?

Closed this issue · 4 comments

How do I get the .ckpt file for the model? Or generate?

It's in the zip file provided, it's just got a different name. It's saved here.

Screenshot from 2019-08-23 13-21-09
Is that the second file listed in the structure? can I rename the same and use it ??

You should just be able to do something like saver.restore(sess, restore_path + 'model.checkpoint') (or actually I think saver.restore(sess, restore_path) works and uses the latest file listed in checkpoint)

Got it thanks.