BigSalmon commited on
Commit
78e9a8e
1 Parent(s): 0394d7c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +141 -0
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```
2
+ from transformers import AutoTokenizer, AutoModelForCausalLM
3
+
4
+ tokenizer = AutoTokenizer.from_pretrained("BigSalmon/NEO125InformalToFormalLincoln")
5
+
6
+ model = AutoModelForCausalLM.from_pretrained("BigSalmon/NEO125InformalToFormalLincoln")
7
+
8
+ ```
9
+
10
+ ```
11
+ How To Make Prompt:
12
+ informal english: i am very ready to do that just that.
13
+ Translated into the Style of Abraham Lincoln: you can assure yourself of my readiness to work toward this end.
14
+ Translated into the Style of Abraham Lincoln: please be assured that i am most ready to undertake this laborious task.
15
+
16
+ ***
17
+
18
+ informal english: space is huge and needs to be explored.
19
+ Translated into the Style of Abraham Lincoln: space awaits traversal, a new world whose boundaries are endless.
20
+ Translated into the Style of Abraham Lincoln: space is a ( limitless / boundless ) expanse, a vast virgin domain awaiting exploration.
21
+
22
+ ***
23
+
24
+ informal english: corn fields are all across illinois, visible once you leave chicago.
25
+ Translated into the Style of Abraham Lincoln: corn fields ( permeate illinois / span the state of illinois / ( occupy / persist in ) all corners of illinois / line the horizon of illinois / envelop the landscape of illinois ), manifesting themselves visibly as one ventures beyond chicago.
26
+
27
+ informal english:
28
+ ```
29
+ ```
30
+ - declining viewership facing the nba.
31
+ - does not have to be this way.
32
+ - in fact, many solutions exist.
33
+ - the four point line would surely draw in eyes.
34
+ Text: failing to draw in the masses, the NBA has fallen into disrepair. such does not have to be the case, however. in fact, a myriad of simple, relatively cheap solutions could revive the league. the addition of the much-hyped four-point line would surely juice viewership.
35
+
36
+ ***
37
+ -
38
+
39
+ ```
40
+
41
+ ```
42
+ infill: chrome extensions [MASK] accomplish everyday tasks.
43
+ Translated into the Style of Abraham Lincoln: chrome extensions ( expedite the ability to / unlock the means to more readily ) accomplish everyday tasks.
44
+
45
+ infill: at a time when nintendo has become inflexible, [MASK] consoles that are tethered to a fixed iteration, sega diligently curates its legacy of classic video games on handheld devices.
46
+ Translated into the Style of Abraham Lincoln: at a time when nintendo has become inflexible, ( stubbornly [MASK] on / firmly set on / unyielding in its insistence on ) consoles that are tethered to a fixed iteration, sega diligently curates its legacy of classic video games on handheld devices.
47
+
48
+ infill:
49
+
50
+ ```
51
+ ```
52
+ Essay Intro (California High-Speed Rail): built with an eye on the future, california's high-speed rail service resolves to change the face of travel.
53
+
54
+ Essay Intro (YIMBY's Need To Win): home to the most expensive housing market in the united states, san francisco is the city in which the yimby and anti-yimby hordes wage an eternal battle.
55
+
56
+ Essay Intro (
57
+ ```
58
+
59
+ ```
60
+ Search: What is the definition of Checks and Balances?
61
+
62
+ https://en.wikipedia.org/wiki/Checks_and_balances
63
+ Checks and Balances is the idea of having a system where each and every action in government should be subject to one or more checks that would not allow one branch or the other to overly dominate.
64
+
65
+ https://www.harvard.edu/glossary/Checks_and_Balances
66
+ Checks and Balances is a system that allows each branch of government to limit the powers of the other branches in order to prevent abuse of power
67
+
68
+ https://www.law.cornell.edu/library/constitution/Checks_and_Balances
69
+ Checks and Balances is a system of separation through which branches of government can control the other, thus preventing excess power.
70
+
71
+ ***
72
+
73
+ Search: What is the definition of Separation of Powers?
74
+
75
+ https://en.wikipedia.org/wiki/Separation_of_powers
76
+ The separation of powers is a principle in government, whereby governmental powers are separated into different branches, each with their own set of powers, that are prevent one branch from aggregating too much power.
77
+
78
+ https://www.yale.edu/tcf/Separation_of_Powers.html
79
+ Separation of Powers is the division of governmental functions between the executive, legislative and judicial branches, clearly demarcating each branch's authority, in the interest of ensuring that individual liberty or security is not undermined.
80
+
81
+ ***
82
+
83
+ Search: What is the definition of Connection of Powers?
84
+
85
+ https://en.wikipedia.org/wiki/Connection_of_powers
86
+ Connection of Powers is a feature of some parliamentary forms of government where different branches of government are intermingled, typically the executive and legislative branches.
87
+
88
+ https://simple.wikipedia.org/wiki/Connection_of_powers
89
+ The term Connection of Powers describes a system of government in which there is overlap between different parts of the government.
90
+
91
+ ***
92
+ Search: What is the definition of
93
+ ```
94
+
95
+ ```
96
+ Search: What are phrase synonyms for "second-guess"?
97
+ https://www.powerthesaurus.org/second-guess/synonyms
98
+ Shortest to Longest:
99
+ - feel dubious about
100
+ - raise an eyebrow at
101
+ - wrinkle their noses at
102
+ - cast a jaundiced eye at
103
+ - teeter on the fence about
104
+
105
+ ***
106
+
107
+ Search: What are phrase synonyms for "mean to newbies"?
108
+ https://www.powerthesaurus.org/mean_to_newbies/synonyms
109
+ Shortest to Longest:
110
+ - readiness to balk at rookies
111
+ - absence of tolerance for novices
112
+ - hostile attitude toward newcomers
113
+
114
+ ***
115
+
116
+ Search: What are phrase synonyms for "make use of"?
117
+ https://www.powerthesaurus.org/make_use_of/synonyms
118
+ Shortest to Longest:
119
+ - call upon
120
+ - glean value from
121
+ - reap benefits from
122
+ - derive utility from
123
+ - seize on the merits of
124
+ - draw on the strength of
125
+ - tap into the potential of
126
+
127
+ ***
128
+
129
+ Search: What are phrase synonyms for "hurting itself"?
130
+ https://www.powerthesaurus.org/hurting_itself/synonyms
131
+ Shortest to Longest:
132
+ - erring
133
+ - slighting itself
134
+ - forfeiting its integrity
135
+ - doing itself a disservice
136
+ - evincing a lack of backbone
137
+
138
+ ***
139
+
140
+ Search: What are phrase synonyms for "
141
+ ```