1-800-BAD-CODE commited on
Commit
e8d29f2
1 Parent(s): 602392c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -41,6 +41,10 @@ input_texts: List[str] = [
41
  "i woke up at 6 am and took the dog for a hike in the metacomet mountains we like to take morning adventures on the weekends",
42
  "despite being mid march it snowed overnight and into the morning here in connecticut it was snowier up in the mountains than in the farmington valley where i live",
43
  "i saw mr smith at the store he was shopping for a new lawn mower i suggested he get one of those new battery operated ones they're so much quieter",
 
 
 
 
44
  ]
45
  results: List[List[str]] = m.infer(input_texts)
46
  for input_text, output_texts in zip(input_texts, results):
@@ -76,6 +80,16 @@ In: i saw mr smith at the store he was shopping for a new lawn mower i suggested
76
  Out: I saw Mr. Smith at the store he was shopping for a new lawn mower.
77
  Out: I suggested he get one of those new battery operated ones.
78
  Out: They're so much quieter.
 
 
 
 
 
 
 
 
 
 
79
  ```
80
 
81
  </details>
 
41
  "i woke up at 6 am and took the dog for a hike in the metacomet mountains we like to take morning adventures on the weekends",
42
  "despite being mid march it snowed overnight and into the morning here in connecticut it was snowier up in the mountains than in the farmington valley where i live",
43
  "i saw mr smith at the store he was shopping for a new lawn mower i suggested he get one of those new battery operated ones they're so much quieter",
44
+ # See how the model performs on made-up acronyms
45
+ "i went to the fgw store and bought a new tg optical scope",
46
+ # First few sentences from today's featured article on wikipedia
47
+ "it's that man again itma was a radio comedy programme that was broadcast by the bbc for twelve series from 1939 to 1949 featuring tommy handley in the central role itma was a character driven comedy whose satirical targets included officialdom and the proliferation of minor wartime regulations parts of the scripts were rewritten in the hours before the broadcast to ensure topicality"
48
  ]
49
  results: List[List[str]] = m.infer(input_texts)
50
  for input_text, output_texts in zip(input_texts, results):
 
80
  Out: I saw Mr. Smith at the store he was shopping for a new lawn mower.
81
  Out: I suggested he get one of those new battery operated ones.
82
  Out: They're so much quieter.
83
+
84
+ In: i went to the fgw store and bought a new tg optical scope
85
+ Out: I went to the FGW store and bought a new TG optical scope.
86
+
87
+ In: it's that man again itma was a radio comedy programme that was broadcast by the bbc for twelve series from 1939 to 1949 featuring tommy handley in the central role itma was a character driven comedy whose satirical targets included officialdom and the proliferation of minor wartime regulations parts of the scripts were rewritten in the hours before the broadcast to ensure topicality
88
+ Out: It's that man again.
89
+ Out: ITMA was a radio comedy programme that was broadcast by the BBC for Twelve Series from 1939 to 1949, featuring Tommy Handley.
90
+ Out: In the central role, ITMA was a character driven comedy whose satirical targets included officialdom and the proliferation of minor wartime regulations.
91
+ Out: Parts of the scripts were rewritten in the hours before the broadcast to ensure topicality.
92
+
93
  ```
94
 
95
  </details>