Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,6 @@ import pandas as pd
|
|
4 |
import os
|
5 |
import torch
|
6 |
import torch.nn as nn
|
7 |
-
from transformers import ElectraModel, AutoConfig, GPT2LMHeadModel
|
8 |
from transformers.activations import get_activation
|
9 |
from transformers import AutoTokenizer, AutoModelWithLMHead
|
10 |
|
@@ -13,10 +12,14 @@ st.title('GPT2 ')
|
|
13 |
|
14 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
tokenizer = AutoTokenizer.from_pretrained("gpt2")
|
19 |
-
model = AutoModelWithLMHead.from_pretrained("BigSalmon/MrLincoln12")
|
|
|
|
|
|
|
|
|
20 |
|
21 |
g = """informal english: garage band has made people who know nothing about music good at creating music.
|
22 |
Translated into the Style of Abraham Lincoln: garage band ( offers the uninitiated in music the ability to produce professional-quality compositions / catapults those for whom music is an uncharted art the ability the realize masterpieces / stimulates music novice's competency to yield sublime arrangements / begets individuals of rudimentary musical talent the proficiency to fashion elaborate suites ).
|
|
|
4 |
import os
|
5 |
import torch
|
6 |
import torch.nn as nn
|
|
|
7 |
from transformers.activations import get_activation
|
8 |
from transformers import AutoTokenizer, AutoModelWithLMHead
|
9 |
|
|
|
12 |
|
13 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
14 |
|
15 |
+
@st.cache(allow_output_mutation=True)
|
16 |
+
def get_model():
|
17 |
+
tokenizer = AutoTokenizer.from_pretrained("gpt2")
|
18 |
+
model = AutoModelWithLMHead.from_pretrained("BigSalmon/MrLincoln12")
|
19 |
+
model.to(device)
|
20 |
+
return model, tokenizer
|
21 |
+
|
22 |
+
model, tokenizer = get_model()
|
23 |
|
24 |
g = """informal english: garage band has made people who know nothing about music good at creating music.
|
25 |
Translated into the Style of Abraham Lincoln: garage band ( offers the uninitiated in music the ability to produce professional-quality compositions / catapults those for whom music is an uncharted art the ability the realize masterpieces / stimulates music novice's competency to yield sublime arrangements / begets individuals of rudimentary musical talent the proficiency to fashion elaborate suites ).
|