Created
July 14, 2021 21:51
-
-
Save thesanjeetc/ad950ee66f54a80ec4ec69f1b1068274 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gpt2.copy_checkpoint_from_gdrive(run_name='run1') | |
sess = gpt2.start_tf_sess() | |
gpt2.load_gpt2(sess, run_name='run1') | |
gpt2.generate(sess, | |
length=800, | |
temperature=0.7, | |
prefix="JOE ROGAN:", | |
nsamples=5, | |
batch_size=5 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment