We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8671c90 commit 8f57b23Copy full SHA for 8f57b23
README.md
@@ -44,6 +44,8 @@ probability of some small number.
44
This code is unoptimized and slow. If you try to decode more than 3
45
or 4 characters, you're going to be waiting a long time.
46
47
+You can use "$" to indicate the start of a sentence, for example "$obv".
48
+
49
50
### Corpora
51
decode.py
@@ -125,7 +125,7 @@ def main(argv):
125
logger.info('Initializing...')
126
decoder = Decoder(args)
127
while True:
128
- line = raw_input('Enter initials:\n')
+ line = raw_input('Enter initials:\n').lower()
129
logger.info('Decoding %r', line)
130
result = decoder.decode(line)
131
print result
0 commit comments