Skip to content

Files

Latest commit

c0c4a91 · Jan 4, 2023

History

History
24 lines (17 loc) · 1.09 KB

README.md

File metadata and controls

24 lines (17 loc) · 1.09 KB

GPT-neo

GPT-neo is an open-source alternative of the well-known GPT-3. In other words, GPT-neo is kind of a clone of GPT-3. GPT-neo was made by EleutherAI and GPT-3 was made by OpenAI. The difference between them is that GPT-neo is free while GPT-3 isn't. GPT-neo has 2.7 billion parameters, so it is very effective plus very easy to use. The above notebook can help you use GPT-neo. You can use it for writing blogs, emails and even essays.

How to use it

  1. Download and install jupyter notebook using the code given below:
pip install notebook
  1. Download the source code and extract the zip file.
  2. Open jupyter noterbook by runnung the following code in command prompt:
jupyter notebook
  1. Open the file in jupyter notebook.
  2. Change the value of "prompt" in the third line to whatever you result you want.
  3. Change the value of "max_length" in the fifth line to any value you want. It tells how many characters are going to be there in the result.
  4. [OPTIONAL] If you want to save the output as a text file, then remove the "#" in the start of the last 2 lines.