Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
from transformers import GPT2Tokenizer,
|
2 |
|
3 |
-
# Load
|
4 |
tokenizer = GPT2Tokenizer.from_pretrained("EleutherAI/gpt-neo-2.7B")
|
5 |
-
model =
|
6 |
|
7 |
# Input text description for UI
|
8 |
input_text = "Generate a login form with username, password, and a submit button."
|
|
|
1 |
+
from transformers import GPT2Tokenizer, GPTNeoForCausalLM
|
2 |
|
3 |
+
# Load the tokenizer and model for GPT-Neo
|
4 |
tokenizer = GPT2Tokenizer.from_pretrained("EleutherAI/gpt-neo-2.7B")
|
5 |
+
model = GPTNeoForCausalLM.from_pretrained("EleutherAI/gpt-neo-2.7B")
|
6 |
|
7 |
# Input text description for UI
|
8 |
input_text = "Generate a login form with username, password, and a submit button."
|