Spaces:
Runtime error
Runtime error
Commit
·
4d667de
1
Parent(s):
4f7e369
add more text in sub-heading
Browse files
README.md
CHANGED
@@ -16,7 +16,7 @@ Text Autocomplete, or text generation, is a task in which an application can fil
|
|
16 |
|
17 |
## Goal
|
18 |
|
19 |
-
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
|
20 |
|
21 |
## Deployed app
|
22 |
|
|
|
16 |
|
17 |
## Goal
|
18 |
|
19 |
+
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.
|
20 |
|
21 |
## Deployed app
|
22 |
|
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
st.title("AI text-gen Web-app")
|
5 |
-
st.write("This is a auto-complete/text generation web-app powered by GPT-neo.")
|
6 |
|
7 |
# instantiate the model / download
|
8 |
@st.cache(allow_output_mutation=True)
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
st.title("AI text-gen Web-app")
|
5 |
+
st.write("This is a auto-complete/text generation 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.")
|
6 |
|
7 |
# instantiate the model / download
|
8 |
@st.cache(allow_output_mutation=True)
|