BigSalmon commited on
Commit
bb89c93
·
1 Parent(s): 0addd1d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -17,8 +17,24 @@ from transformers import AutoTokenizer, AutoModelWithLMHead
17
  tokenizer = AutoTokenizer.from_pretrained("gpt2")
18
  model = AutoModelWithLMHead.from_pretrained("BigSalmon/MrLincoln10")
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  with st.form(key='my_form'):
21
- prompt = st.text_area(label='Enter sentence')
22
  submit_button = st.form_submit_button(label='Submit')
23
 
24
  if submit_button:
 
17
  tokenizer = AutoTokenizer.from_pretrained("gpt2")
18
  model = AutoModelWithLMHead.from_pretrained("BigSalmon/MrLincoln10")
19
 
20
+ g = """
21
+ informal english: the vice president is not automatically entitled to the nomination, if they are unpopular.
22
+ Translated into the Style of Abraham Lincoln: should they be abhorred, the vice president is not above ( sparring with challengers for the nomination / brawling for the nomination / facing a spirited challenge for the nomination / braving a bout for the nomination ).
23
+ Translated into the Style of Abraham Lincoln: the office of vice president is no entitlement to the honor of the nomination, should their popularity ( fail to measure up / be in question / be lacking ).
24
+ Translated into the Style of Abraham Lincoln: without ( popular backing / public adulation / favorable reviews / a passing consensus ), the vice president ( is not above / cannot hope to dodge / should not think themselves above / should not bank on evading / should not harbor any illusions of skirting ) a nomination challenge.
25
+
26
+ informal english: i am sending this to you to tell you of an idea that i have that i really like.
27
+ Translated into the Style of Abraham Lincoln: i write this correspondence to bend your ear to a proposition which arouses my keenest interest.
28
+
29
+ informal english: railroads keep being overtaken by corporations. it is really bad thing and needs a quality response in a fast way.
30
+ Translated into the Style of Abraham Lincoln: railroad after railroad is being absorbed by industrial enterprises, a troubling condition that demands wise and swift action.
31
+ Translated into the Style of Abraham Lincoln: every day, another railroad lamentably falls under the sway of monopolistic interests, necessitating swift and sure corrective action.
32
+ Translated into the Style of Abraham Lincoln: without fail, one railroad after another succumbs to the tentacles of predatory wealth, inviting expeditious and resolute action.
33
+
34
+ informal english:"""
35
+
36
  with st.form(key='my_form'):
37
+ prompt = st.text_area(label='Enter sentence', placeholder=g)
38
  submit_button = st.form_submit_button(label='Submit')
39
 
40
  if submit_button: