Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Informal to Formal:
|
2 |
+
```
|
3 |
+
from transformers import AutoTokenizer, AutoModelWithLMHead
|
4 |
+
|
5 |
+
tokenizer = AutoTokenizer.from_pretrained("gpt2")
|
6 |
+
model = AutoModelWithLMHead.from_pretrained("BigSalmon/MrLincoln125MNeo")
|
7 |
+
```
|
8 |
+
|
9 |
+
```
|
10 |
+
https://huggingface.co/spaces/BigSalmon/InformalToFormal
|
11 |
+
```
|
12 |
+
|
13 |
+
```
|
14 |
+
How To Make Prompt:
|
15 |
+
informal english: i am very ready to do that just that.
|
16 |
+
Translated into the Style of Abraham Lincoln: you can assure yourself of my readiness to work toward this end.
|
17 |
+
Translated into the Style of Abraham Lincoln: please be assured that i am most ready to undertake this laborious task.
|
18 |
+
|
19 |
+
informal english: space is huge and needs to be explored.
|
20 |
+
Translated into the Style of Abraham Lincoln: space awaits traversal, a new world whose boundaries are endless.
|
21 |
+
Translated into the Style of Abraham Lincoln: space is a ( limitless / boundless ) expanse, a vast virgin domain awaiting exploration.
|
22 |
+
|
23 |
+
informal english: meteors are much harder to see, because they are only there for a fraction of a second.
|
24 |
+
Translated into the Style of Abraham Lincoln: meteors are not ( easily / readily ) detectable, lasting for mere fractions of a second.
|
25 |
+
|
26 |
+
informal english:
|
27 |
+
````
|