gpt2
gpt2 copied to clipboard
R Interface to OpenAI's GPT-2 model
Hello, Thanks a lot for making this available. I have a question regarding possible values for top_p. From my understanding reading the paper "The curious case of neural text degeneration"...
When running: ``` reticulate::use_condaenv(required = TRUE, condaenv = "r-gpt2") gpt2::gpt2(model = "124M") ``` I get ``` Error in board_pin_store(board, x, name, description, "files", list(extension = extension), : Client error: (404)...
Hi, An error is raised when the models are download (gpt2_download) because the directory has changed according https://github.com/openai/gpt-2/blob/master/download_model.py #7 Thanks
> remotes::install_github("r-tensorflow/gpt2") Downloading GitHub repo r-tensorflow/gpt2@master These packages have more recent versions available. Which would you like to update? 1: All 2: CRAN packages only 3: None 4: reticulate (1.12...
added to https://github.com/r-tensorflow/gpt2/pull/2
Does it make sense to inform users that models will be stored as pins? Something like "Downloading ... and storing as ..." when a new model type is downloaded.