-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautograder.py
executable file
·150 lines (139 loc) · 5.75 KB
/
autograder.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
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 run_tests():
totalGlobal = 0
totalTestsGlobal = 10
unigramCost, bigramCost, possibleFills = getRealCosts()
totalGlobal += part1Test(unigramCost)
totalGlobal += part2Test(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()