Rishabh Anand

Results 12 comments of Rishabh Anand

Hey, thanks. I'll get into it asap. Give me a while!

Hey, Thank you, this project is not actively maintained. Though, I'll check why this is happening. Appreciate your patience!

Hey there, You need to download the model weights first before being able to use it. Something like this: ```python gpt2en = GPT2Client('1558M') gpt2en.load_model(force_download=True) ``` I suggest redownloading it and...

Hello there, I apologise for the sudden errors. I'm in the process of writing a patch over the `generate` function to allow for more flexibility when generating text. It should...

Hi, I think the model is the `345M` model, not `355M`. I think I made a typo on the `README`. Can you check again? Sorry for the delayed response, I...

Hey there, this is an off-the-shelf model that usually spits out gibberish. If you want custom text, I've realised that fine-tuning it on your own corpora may help tremendously. Have...

Hello there, Currently, this library is based on the original OpenAI gpt-2 repo. So, the larger models can only be used for inference instead of fine-tuning. With time, I'll be...

Hello there, I'll look into this at once. Thank you for highlighting this

Hey there, You need to download the model first. Try out this code snippet: ```python from gpt2_client import GPT2Client gpt2 = GPT2Client('117M') gpt2.load_model() # if you already have the model...