-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautograder-pt.py
executable file
·275 lines (259 loc) · 10.5 KB
/
autograder-pt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
import os,sys
from ep1 import *
def part1Test(unigramCost):
expected = [('',''),
('twowords','two words'),
('assimpleasthat','as simple as that'),
('imagineallthepeople','imagine all the people'),
('thisisnotmybeautifulhouse', 'this is not my beautiful house')]
totalTests = 5
testResults = 0
print('######################################################')
print('# Starting tests: (Part01) Segment Words #')
print('######################################################')
try:
assert type(segmentWords('word', unigramCost)) is str, 'segmentWords returned non string'
for element in expected:
if segmentWords(element[0],unigramCost)== element[1]:
testResults +=1
except IOError as e:
print('Error!')
print('Problems in segmentWords')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NotImplementedError:
print('Error!')
print('Problems in segmentWords')
print('Not implemented function')
except AssertionError as e:
print('Error!')
print('Problems in segmentWords')
print('Returned non string')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NameError as e:
print('Error!')
print('Problems in segmentWords')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except Exception as e:
print('Error!')
print('Problems in segmentWords')
print('Unexpected problem')
print('Check: {0}'.format(e))
print('################################################')
else:
print('#############################################################')
print('# Congratulations, your code at least run without errors #')
print('#############################################################')
finally:
print('Results:')
print('In part01:')
print('You got {0} out of {1} possible points'.format(testResults, totalTests))
return testResults
def getRealCosts(corpus='corpus.txt'):
print('Training language cost functions [corpus: ', corpus,']...' )
_realUnigramCost, _realBigramCost = util.makeLanguageModels(corpus)
_possibleFills = util.makeInverseRemovalDictionary(corpus, 'aeiou')
print('Done!')
sys.stdout.flush()
return _realUnigramCost, _realBigramCost, _possibleFills
def part2Test(bigramCost,possibleFills):
totalTests = 5
testResults = 0
expected = [('',''),
('zz$z$zz','zz$z$zz'),
('m p','me up'),
('wld lk t hv mr lttrs','would like to have more letters'),
('ngh lrdy','enough already')]
print('######################################################')
print('# Starting tests: (Part02) Insert Vowels #')
print('######################################################')
try:
assert type(insertVowels('m p'.split(), bigramCost, possibleFills)) is str, 'insertVowels returned non string'
for element in expected:
if insertVowels(element[0].split(), bigramCost, possibleFills)== element[1]:
testResults +=1
else:
print(insertVowels(element[0].split(), bigramCost, possibleFills), element[1])
except IOError as e:
print('Error!')
print('Problems in insertVowesl')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NotImplementedError:
print('Error!')
print('Problems in insertVowels')
print('Not implemented function')
except AssertionError as e:
print('Error!')
print('Problems in insertVowels')
print('Returned non string')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NameError as e:
print('Error!')
print('Problems in insertVowels')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except Exception as e:
print('Error!')
print('Problems in insertVowels')
print('Unexpected problem')
print('Check: {0}'.format(e))
print('################################################')
else:
print('#############################################################')
print('# Congratulations, your code at least run without errors #')
print('#############################################################')
finally:
print('Results:')
print('In part02:')
print('You got {0} out of {1} possible points'.format(testResults, totalTests))
return testResults
def part3Test(unigramCost):
expected = [('',''),
('meunome','meu nome'),
('voceconsegueterminarestetrabalho','voce consegue terminar este trabalho'),
('imaginetodasaspessoas','imagine todas as pessoas'),
('estanaoeminhalindacasa', 'esta nao e minha linda casa')]
totalTests = 5
testResults = 0
print('######################################################')
print('# Starting tests: (Part01) Segment Words Portugues #')
print('######################################################')
try:
assert type(segmentWords('word', unigramCost)) is str, 'segmentWords returned non string'
for element in expected:
if segmentWords(element[0],unigramCost)== element[1]:
testResults +=1
except IOError as e:
print('Error!')
print('Problems in segmentWords')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NotImplementedError:
print('Error!')
print('Problems in segmentWords')
print('Not implemented function')
except AssertionError as e:
print('Error!')
print('Problems in segmentWords')
print('Returned non string')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NameError as e:
print('Error!')
print('Problems in segmentWords')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except Exception as e:
print('Error!')
print('Problems in segmentWords')
print('Unexpected problem')
print('Check: {0}'.format(e))
print('################################################')
else:
print('#############################################################')
print('# Boa garoto, esta rodando direitinho #')
print('#############################################################')
finally:
print('Results:')
print('In part01:')
print('You got {0} out of {1} possible points'.format(testResults, totalTests))
return testResults
def getRealCostspt(corpus='corpuspt.txt'):
print('Treinamento em portugues do custo da funcão [corpus: ', corpus,']...' )
_realUnigramCost, _realBigramCost = util.makeLanguageModels(corpus)
_possibleFills = util.makeInverseRemovalDictionary(corpus, 'aeiou')
print('fim!')
sys.stdout.flush()
return _realUnigramCost, _realBigramCost, _possibleFills
def part4Test(bigramCost,possibleFills):
totalTests = 5
testResults = 0
expected = [('',''),
('zz$z$zz','zz$z$zz'),
('m p','me up'),
('wld lk t hv mr lttrs','would like to have more letters'),
('ngh lrdy','enough already')]
print('######################################################')
print('# Starting tests: (Part02) Insert Vowels #')
print('######################################################')
try:
assert type(insertVowels('m p'.split(), bigramCost, possibleFills)) is str, 'insertVowels returned non string'
for element in expected:
if insertVowels(element[0].split(), bigramCost, possibleFills)== element[1]:
testResults +=1
else:
print(insertVowels(element[0].split(), bigramCost, possibleFills), element[1])
except IOError as e:
print('Error!')
print('Problems in insertVowesl')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NotImplementedError:
print('Error!')
print('Problems in insertVowels')
print('Not implemented function')
except AssertionError as e:
print('Error!')
print('Problems in insertVowels')
print('Returned non string')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except NameError as e:
print('Error!')
print('Problems in insertVowels')
print('################################################')
print('Python error: {0}'.format(e))
print('################################################')
except Exception as e:
print('Error!')
print('Problems in insertVowels')
print('Unexpected problem')
print('Check: {0}'.format(e))
print('################################################')
else:
print('#############################################################')
print('# Congratulations, your code at least run without errors #')
print('#############################################################')
finally:
print('Results:')
print('In part02:')
print('You got {0} out of {1} possible points'.format(testResults, totalTests))
return testResults
def run_tests():
totalGlobal = 0
totalTestsGlobal = 20
unigramCost, bigramCost, possibleFills = getRealCosts()
totalGlobal += part1Test(unigramCost)
totalGlobal += part2Test(bigramCost,possibleFills)
unigramCost, bigramCost, possibleFills = getRealCostspt()
totalGlobal += part3Test(unigramCost)
totalGlobal += part4Test(bigramCost,possibleFills)
print('#############################################################')
print('# Your final score in this simple tests are: #')
print('#############################################################')
print(' {0} out of {1} possible points: {2:3.1f} grade'.format(totalGlobal,totalTestsGlobal, (totalGlobal/totalTestsGlobal)*10))
print('#############################################################')
print('# IMPORTANT: The final tests may check for corner cases #')
print('# that were not tested here. Meaning that this #')
print('# score report is just an example. #')
print('# Your final grade can be much lower than that. #')
print('#############################################################')
if __name__ == "__main__":
FILE_ABSOLUTE_PATH = os.path.abspath(__file__)
TEST_DIR = os.path.dirname(FILE_ABSOLUTE_PATH)
run_tests()