SudhanshuBlaze/text-generation-gpt-neo
3
Text Autocomplete using HuggingFace
Text Autocomplete, or text generation, is a task in which an application can fill in incomplete text or paraphrase.
Goal
In this project we are buidling text-autocomplete streamlit web-app powered by GPT-neo. GPT-Neo 125M is a transformer model designed using EleutherAI's replication of the GPT-3 architecture. GPT-Neo refers to the class of models, while 125M represents the number of parameters of this particular pre-trained model.
Deployed app
The app is deployed on Huggingface Spaces: Click here for live demo
Project Structure
Text Generator Project
├── app.py
└── requirements.txtProject Requirements
- Python3
- git
Project Steps
Step 1: Cloning the repo
git clone https://github.com/DigitalProductschool/AI-Makerspace.gitStep 2: Changing working directory to HuggingFace/Spaces
cd AI-Makerspace/HuggingFace/SpacesStep 3: Installing dependencies using pip3
pip3 install -r requirements.txtStep 4: Running the streamlit web app
streamlit run app.py