-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
499 lines (452 loc) · 43.4 KB
/
README
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
#######################################################################################
# README FILE
# Introduction to Machine Learning
# Assignment 3
#
# After completing the assignment, fill in this README file. It asks you to duplicate
# your answer to several questions. Be certain that your answers in this README file
# (which will be used for auto-grading) match the answers in your PDF writeup.
#
# This README file is formatted in YAML to allow it to be machine readable. Please
# be very careful with how you edit it, being careful to following the formatting.
# Make certain not to change any text in all UPPERCASE. After editing, you can make
# certain that your README file follows proper YAML syntax by running it through an
# online YAML checker, such as http://yaml-online-parser.appspot.com/
#
# The most frequent error is multi-line strings, such as "SOURCESCONSULTED" and
# "FEEDBACK_ERRORS". Make certain that the previous line ends with a | followed by a
# newline. Then, make certain that the subsequent lines are indented one level in
# (4 spaces). This sounds complex, but just follow the existing format of this file.
# If you run into any problems that you can't fix easily in listing your sources or
# providing feedback on the assignment, just include your multi-line string answers to
# these parts as comments. Everything else (all simple one-word or numeric answers) must
# be properly formatted YAML.
#
# Assignment Version 20151012a
#######################################################################################
# Personal information (BE SURE TO CHANGE THIS!)
FIRSTNAME: Eric
LASTNAME: Eaton
PENNKEY: eeaton
PENNID: 123456
# Which course are you enrolled in? (enter 419 or 519)
COURSE: 419
# List all sources of help that you consulted while completing this assignment
# (other students, colleagues, textbooks, websites, etc.). This includes anyone you
# briefly discussed the homework with. If you received help from the following sources,
# you do not need to cite it: course instructor, course teaching assistants, course
# lecture notes, course textbooks or other readings.
#
# If you didn't receive help from anyone, write "none".
SOURCESCONSULTED: |
While completing the assignment, I consulted the following sources:
http://web.stanford.edu/~hastie/Papers/samme.pdf
#######################################################################################
# Answers to Problem 1: Probability decision boundary
#
# Please list your final answers below for auto-grading.
#######################################################################################
# Problem 1b: what is the threshold for the loss matrix? (only your final numeric answer)
PROB_PROBDECISIONBOUNDARY_THRESHOLD: 2
#######################################################################################
# Answers to Problem 2: Double counting the evidence
#
# Please list your final answers below for auto-grading.
#######################################################################################
# Problem 2a: what is the expected error rate for only X1? (only your final numeric answer)
PROB_DOUBLECOUNTINGEVIDENCE_ERRORX1: 0.25
# Problem 2a: what is the expected error rate for only X2? (only your final numeric answer)
PROB_DOUBLECOUNTINGEVIDENCE_ERRORX2: 0.30
# Problem 2c: what is the expected error rate adding X3? (only your final numeric answer)
PROB_DOUBLECOUNTINGEVIDENCE_ERRORWITHX3: 0.13
# Problem 2e: does logistic regression suffer from the same problem? (answer either YES or NO)
PROB_DOUBLECOUNTINGEVIDENCE_LOGREGPROBLEM: NO
#######################################################################################
# Answers to Problem 3: Reject Option (CIS 519 ONLY)
#
# (Students in 419 can leave this section unchanged)
#
# Please list your final answers below for auto-grading.
#######################################################################################
# Problem 3a: which decision minimizes expected loss? (enter only 0 or 1 or REJECT)
PROB_REJECTOPTION_P20: 9
# Problem 3b: which decision minimizes expected loss? (enter only 0 or 1 or REJECT)
PROB_REJECTOPTION_P40: 9
# Problem 3d: what is the threshold for theta_0? (only your final numeric answer)
PROB_REJECTOPTION_THETA0: 123.45
# Problem 3d: what is the threshold for theta_1? (only your final numeric answer)
PROB_REJECTOPTION_THETA1: 123.45
#######################################################################################
# Answers to Implementation Exercise 1.1: BoostedDT on Unknown Data
#
# Please list your final answers below for auto-grading.
#######################################################################################
# Copy and Paste the list of predicted labels below (one very long line of text without spaces)
# Make sure it is all on one line
CHALLENGE_BOOSTEDDT_PREDICTIONS: 7,7,8,5,5,5,3,6,3,5,1,5,0,3,0,2,1,5,4,7,5,0,7,5,3,5,3,7,7,7,1,7,1,7,8,6,3,2,0,4,7,1,6,0,0,8,5,3,2,8,1,7,5,1,7,1,6,1,0,3,5,5,0,1,1,3,6,3,8,7,1,5,7,6,2,4,0,0,1,1,1,7,7,1,0,5,4,7,1,1,7,3,8,8,6,2,7,4,7,2,1,3,7,5,3,2,3,0,2,6,2,1,4,0,4,5,2,1,6,2,3,4,3,7,7,0,2,5,8,0,0,5,5,8,7,0,1,1,0,1,0,5,4,5,3,8,0,0,5,8,1,5,0,1,7,0,1,8,0,2,7,5,0,7,2,7,2,5,7,7,0,5,1,6,0,5,1,0,7,1,5,5,6,8,1,0,5,7,2,0,2,5,0,3,2,3,6,6,0,6,8,5,5,0,7,1,0,1,7,1,4,1,1,7,0,2,2,3,1,0,2,8,6,7,5,7,2,3,0,8,7,8,8,5,5,3,7,5,3,3,0,0,0,7,3,6,0,2,0,0,4,2,1,7,0,1,7,5,2,5,7,0,2,7,6,7,0,5,1,3,7,7,1,5,2,3,1,1,5,5,4,7,2,1,5,7,5,2,2,8,0,8,7,6,7,2,6,0,8,5,5,8,7,7,5,5,7,0,2,3,1,3,0,4,8,0,0,6,8,0,7,1,5,5,1,2,7,1,1,2,7,0,6,6,2,3,0,5,8,0,2,1,8,3,7,5,0,8,1,3,2,1,7,0,0,7,0,8,0,5,5,0,1,4,5,1,7,7,2,3,7,1,7,3,8,2,7,0,2,5,7,6,8,7,3,1,0,2,5,0,3,1,3,7,1,1,1,1,3,1,0,7,7,2,7,2,1,5,8,7,1,3,2,0,3,1,7,8,0,0,1,5,0,7,8,0,1,1,0,3,7,8,2,4,6,0,1,0,5,7,8,8,5,0,8,6,3,3,0,1,0,0,7,7,1,5,0,0,0,5,8,5,1,1,7,4,2,3,7,0,1,3,4,3,0,1,8,0,3,8,0,7,7,2,0,2,2,3,8,0,4,2,7,5,7,2,6,1,8,1,7,0,4,5,7,3,3,1,8,0,1,6,0,2,0,1,0,1,2,2,0,0,5,3,7,0,5,7,8,5,5,7,0,2,1,1,0,8,8,0,7,1,1,0,2,2,6,1,0,3,5,5,1,2,7,5,6,3,8,1,1,7,0,2,2,0,2,1,5,0,8,0,7,7,7,0,0,3,0,1,0,1,0,1,0,5,1,5,0,7,2,7,1,1,0,7,2,6,7,5,4,5,8,5,7,7,7,5,2,3,0,5,8,1,5,8,8,5,7,0,6,5,7,3,5,0,7,5,5,4,5,2,8,3,4,7,0,3,8,3,1,0,0,2,6,2,1,6,7,7,5,2,0,3,7,0,3,7,7,3,7,0,7,3,5,3,5,1,8,0,8,0,7,5,2,6,3,1,7,2,3,7,5,7,8,2,8,8,0,5,3,1,8,0,1,1,7,1,8,1,2,0,1,8,0,3,8,7,1,1,3,0,1,7,5,8,1,1,6,0,5,1,1,7,0,0,3,8,7,6,7,7,3,3,2,7,5,3,8,3,1,0,0,2,3,6,7,0,0,0,5,3,1,1,5,2,8,1,3,5,2,7,0,5,0,7,5,6,0,7,4,2,7,3,5,4,8,1,3,3,2,8,2,2,1,0,0,1,2,6,5,7,5,7,7,7,5,1,0,0,5,3,7,4,2,1,5,7,6,2,6,0,1,3,8,0,5,2,1,8,7,2,2,0,0,0,6,7,2,1,2,3,7,1,5,0,2,7,7,1,8,3,2,5,2,5,2,7,1,2,0,5,1,6,4,0,3,5,2,4,3,0,8,2,8,1,6,5,1,0,6,7,7,3,2,8,4,0,2,1,8,0,7,1,1,8,5,1,1,2,7,6,5,1,0,8,8,0,1,7,0,5,6,3,0,7,0,7,4,6,5,0,8,0,7,7,3,7,0,3,5,2,8,4,3,1,0,7,1,1,6,1,8,1,7,1,7,0,5,5,5,5,8,0,8,2,3,3,6,1,5,8,2,3,0,0,4,3,8,0,5,3,3,7,3,1,6,0,5,5,3,7,7,1,6,2,5,0,3,5,7,5,1,3,1,0,0,1,1,2,8,1,7,1,2,2,6,7,0,1,1,5,1,0,6,7,1,4,4,0,7,5,8,3,2,7,2,3,3,3,1,2,0,3,5,7,8,3,8,1,0,1,0,4,6,8,0,5,6,7,0,2,6,5,0,3,5,1,5,1,7,0,4,7,7,1,7,5,0,1,7,6,1,3,6,5,2,5,0,7,5,0,1,7,5,0,3,7,1,7,3,5,5,4,7,1,7,5,2,0,7,0,3,3,6,1,1,0,1,0,7,8,0,7,3,2,0,3,1,1,7,1,0,0,3,5,7,2,1,5,3,7,1,3,0,4,1,0,6,7,3,5,4,8,8,5,2,7,0,7,5,1,6,7,2,7,2,1,7,5,3,0,3,5,5,2,0,0,2,6,8,5,4,0,0,4,1,7,0,3,1,7,5,7,0,3,5,2,1,7,2,0,1,0,7,2,5,6,2,3,3,0,1,1,1,0,6,0,1,2,0,7,0,0,1,1,6,7,7,6,8,0,5,8,8,5,7,8,3,2,2,5,0,7,0,1,2,0,5,0,3,7,7,0,2,7,1,2,7,8,7,7,8,5,1,3,0,0,6,2,1,4,7,2,3,0,3,1,3,7,5,1,1,1,6,1,5,0,1,7,3,2,6,2,0,1,0,6,7,0,0,2,6,7,8,5,3,1,5,2,0,0,0,8,5,7,0,7,0,7,2,2,4,3,7,0,2,3,7,8,3,0,5,8,0,7,1,3,8,3,3,3,7,4,7,0,5,0,8,7,1,1,6,0,0,1,0,2,8,7,0,2,1,4,0,7,5,7,0,5,2,0,6,6,1,0,2,3,3,8,3,4,1,7,7,7,1,3,1,4,5,0,7,5,2,5,3,1,1,8,0,5,8,2,8,3,7,7,6,7,5,0,7,5,0,6,1,1,0,7,8,8,5,1,6,5,2,7,0,1,8,3,1,3,0,1,3,1,3,7,1,8,5,5,0,0,2,0,7,5,5,2,0,5,2,4,3,6,4,0,1,3,1,1,1,1,2,2,0,3,5,3,3,0,7,1,1,1,7,1,0,0,5,8,0,8,2,5,6,6,3,8,2,2,2,0,0,6,5,7,6,1,1,2,1,0,7,0,7,1,4,0,2,5,8,7,3,6,8,2,8,1,4,2,3,7,0,2,0,3,0,3,6,1,0,7,5,5,0,2,1,2,3,6,7,0,3,1,2,7,3,1,0,0,0,5,3,4,2,1,2,0,0,0,1,1,7,7,1,5,1,2,2,7,2,3,5,2,8,6,5,1,8,5,8,5,0,6,7,1,3,6,0,0,7,2,8,0,0,0,7,0,1,7,7,0,1,5,7,5,2,3,1,1,7,6,0,8,8,2,7,2,0,3,1,0,1,0,0,7,7,3,1,3,7,1,0,5,1,7,3,8,1,4,5,4,3,7,1,2,7,2,5,0,0,0,6,1,1,0,7,3,0,6,5,0,7,8,1,7,6,1,0,2,0,0,7,8,0,5,5,5,0,5,8,3,7,5,6,7,7,7,4,2,2,4,0,3,7,5,1,7,0,0,1,7,1,2,1,7,2,2,8,7,7,1,1,5,7,0,4,8,0,8,7,7,0,0,5,2,0,0,2,0,8,3,7,2,0,3,1,1,7,6,2,3,3,0,0,0,7,2,7,3,5,7,8,7,7,1,5,1,3,7,0,8,1,5,5,5,3,8,1,0,4,0,0,7,1,7,8,5,0,7,3,0,8,1,1,3,5,7,7,5,1,7,5,2,2,0,3,0,3,2,2,1,3,5,8,1,6,0,0,1,3,3,5,7,7,5,8,7,1,7,1,7,3,0,7,0,3,7,4,8,7,6,4,1,7,5,1,7,0,1,3,6,2,7,2,8,5,5,8,5,5,3,7,2,5,8,1,1,8,5,5,2,6,3,1,7,1,0,6,1,1,1,2,5,5,2,7,1,7,8,3,7,2,0,7,7,7,0,0,5,5,2,5,3,8,1,5,2,5,6,7,4,7,7,1,0,0,0,4,7,0,7,0,0,1,7,5,5,7,0,1,8,2,6,3,0,7,7,2,2,5,0,5,1,0,6,7,1,8,7,1,2,1,0,1,7,7,2,2,3,2,8,7,7,8,7,7,7,0,3,6,2,8,1,3,0,1,0,5,7,0,7,2,0,4,1,8,0,7,8,7,7,5,4,3,0,3,7,6,5,1,1,3,7,3,0,0,7,1,2,8,0,1,6,5,2,0,8,7,5,7,7,2,3,1,8,7,5,0,1,1,2,5,7,3,1,7,2,2,1,2,3,7,0,3,3,0,5,1,1,5,8,7,5,2,8,6,1,2,2,8,7,2,2,3,1,8,8,8,0,2,7,8,0,2,7,1,3,3,4,1,1,5,7,7,6,7,8,0,7,8,5,0,7,6,3,3,1,7,7,6,7,0,3,8,1,4,0,5,2,5,4,3,0,0,1,6,5,2,6,5,4,7,0,7,4,7,0,8,5,7,3,5,5,7,1,0,0,3,1,8,1,7,1,2,6,4,7,2,2,8,0,8,2,1,5,0,0,6,1,3,4,2,1,3,2,0,0,5,2,8,1,7,7,3,5,6,7,1,2,8,7,7,5,0,3,0,4,6,5,3,2,2,3,2,7,5,8,0,4,7,1,0,7,8,7,7,7,4,5,3,7,2,1,2,2,1,0,5,3,1,0,5,5,0,0,5,5,1,3,3,7,1,8,5,2,1,8,0,3,8,7,0,1,6,7,2,0,1,6,1,7,5,7,7,2,1,1,5,1,1,8,0,2,1,0,0,5,3,5,3,7,0,8,5,7,5,0,3,1,7,2,5,3,5,1,4,3,1,8,8,5,7,0,3,0,5,2,0,3,6,1,2,7,2,1,3,7,0,7,7,1,7,2,0,3,1,8,1,5,2,8,7,8,5,3,7,7,7,6,1,1,8,8,2,3,1,0,5,3,0,5,8,3,6,7,7,3,0,8,3,7,1,7,7,2,2,2,1,5,0,1,6,1,8,5,7,1,1,0,0,5,6,3,1,6,7,0,7,4,5,5,2,2,3,3,3,7,7,5,8,3,3,8,4,6,6,3,1,5,8,5,4,0,8,7,7,1,0,7,5,5,1,7,6,2,1,5,5,1,8,5,2,3,4,1,4,6,4,2,0,6,0,1,3,4,2,0,0,1,7,7,5,7,0,5,0,5,2,1,7,5,8,1,2,7,0,7,1,7,0,7,7,6,7,0,7,1,0,0,8,6,6,5,7,7,8,8,5,5,3,0,1,7,2,1,2,2,3,5,6,4,0,0,7,1,5,7,2,1,3,0,3,7,7,3,7,7,1,0,4,1,7,0,7,7,2,5,7,2,2,3,0,3,1,3,0,7,7,0,0,1,7,8,3,7,0,0,1,4,0,0,1,6,0,7,7,8,6,8,2,1,6,5,2,2,7,3,3,0,3,3,2,4,1,1,4,3,1,2,0,0,3,1,0,7,2,2,5,2,3,5,7,2,3,5,1,7,7,3,2,3,1,6,3,4,2,0,3,3,3,3,8,7,3,2,3,5,0,7,1,1,2,0,0,6,0,1,0,0,8,7,7,5,0,7,5,6,0,4,8,7,1,2,1,5,7,5,1,4,7,2,7,7,7,2,7,3,7,7,7,0,8,0,1,0,5,3,7,2,2,0,1,4,7,0,8,1,7,8,1,0,7,0,0,1,3,1,0,3,3,3,7,3,2,0,5,0,7,2,0,0,0,7,7,8,1,0,1,4,2,5,0,3,2,7,7,1,5,0,1,5,6,4,1,5,4,8,4,7,3,0,5,1,4,5,5,7,3,7,0,0,8,3,1,0,0,0,2,3,7,7,8,3,7,7,1,2,4,2,2,1,1,7,7,6,0,0,0,1,0,8,0,2,6,6,2,3,7,3,7,2,7,2,7,2,0,1,0,1,1,1,5,5,8,2,7,6,3,0,7,8,0,5,1,8,8,5,5,7,3,5,0,0,1,5,6,3,1,7,6,6,4,5,0,7,7,4,1,2,7,3,5,1,7,3,1,1,3,2,7,1,5,1,1,7,5,8,2,8,4,3,1,3,0,3,5,7,6,5,1,8,1,8,3,1,1,7,8,5,3,7,5,7,8,7,7,7,5,7,5,8,8,0,7,2,1,1,7,2,2,2,1,8,0,7,3,0,3,7,5,1,0,7,2,3,0,7,3,0,6,2,6,6,3,0,7,7,2,5,2,2,4,1,1,7,3,3,3,6,2,5,1,0,2,0,3,2,1,0,2,6,5,3,3,0,3,8,1,4,2,7,0,1,5,7,0,2,5,7,7,5,1,8,3,5,5,5,4,6,0,0,7,8,5,5,7,0,2,6,2,6,7,0,6,7,5,7,5,0,8,5,2,1,1,3,3,1,2,6,1,0,7,8,7,8,2,7,7,1,0,5,7,7,5,0,2,4,1,7,7,2,1,6,1,0,1,0,5,0,0,1,0,3,1,2,3,1,1,2,2,3,8,2,7,6,5,5,6,5,0,0,1,8,1,7,2,7,1,8,7,1,1,1,1,5,0,1,8,6,5,0,5,0,7,0,1,7,5,3,5,0,6,3,3,2,5,3,1,7,7,2,2,0,3,7,0,1,0,1,1,7,1,5,1,5,0,0,7,5,1,7,5,2,0,8,8,1,7,5,5,7,0,3,5,3,7,1,3,0,3,8,1,1,7,0,5,7,3,6,0,2,2,6,8,0,1,3,3,7,3,5,3,1,7,5,2,6,0,7,3,1,7,3,1,0,2,7,1,0,5,7,0,7,0,8,7,5,0,3,7,7,3,2,7,0,0,3,7,6,1,0,0,1,0,5,5,5,7,6,5,6,1,6,3,1,6,8,5,2,7,0,7,0,7,6,2,0,8,1,0,1,6,7,0,3,3,2,1,2,5,1,8,8,2,7,6,2,1,8,0,5,3,0,6,1,1,3,0,1,7,7,3,4,4,0,2,6,6,0,2,0,8,1,0,4,7,3,0,4,3,5,5,0,2,3,0,2,8,0,8,8,1,0,7,1,7,8,2,7,0,1,1,4,2,0,5,5,1,0,3,5,8,2,2,2,5,0,8,7,2,0,1,3,7,8,8,7,5,7,1,1,7,3,7,2,3,2,2,1,1,2,0,1,0,2,3,0,6,2,7,7,5,7,7,1,6,3,3,1,1,7,2,8,4,1,5,7,5,8,8,3,1,5,3,0,0,2,5,3,7,5,2,7,0,0,5,1,8,7,7,2,8,4,2,5,0,5,6,0,2,5,3,0,5,0,0,6,3,2,3,7,5,7,5,5,7,8,1,1,7,0,0,0,1,0,5,3,5,3,3,3,7,5,7,8,3,7,1,1,6,7,8,1,0,1,0,2,5,7,5,5,3,1,7,0,8,2,7,1,6,5,1,6,5,1,5,5,8,7,3,1,5,2,5,8,3,2,7,5,0,7,2,8,6,0,6,7,3,6,1,6,3,8,8,8,8,5,5,5,1,8,1,7,2,8,1,1,6,2,7,2,5,8,0,3,2,2,2,2,4,5,7,7,7,2,3,6,2,3,7,8,6,6,2,5,1,7,5,4,5,0,0,1,5,3,7,7,5,8,3,7,5,3,2,1,7,2,4,8,1,1,3,7,8,0,3,6,1,3,1,7,7,1,1,2,7,5,2,8,3,5,2,7,2,4,1,6,6,1,2,1,0,3,5,1,3,5,5,7,5,8,0,0,2,0,0,7,6,5,6,8,8,0,3,0,5,2,8,8,3,4,8,5,5,8,1,8,2,5,5,1,1,0,2,3,0,5,5,2,0,2,5,1,5,0,0,8,3,0,0,1,0,7,6,0,0,6,2,2,0,1,0,3,3,3,1,2,1,0,2,0,2,3,7,2,6,3,5,1,6,0,6,8,7,0,1,2,2,2,1,7,8,8,1,2,7,3,5,0,5,6,5,1,1,6,5,7,5,1,0,8,1,0,2,0,1,0,0,8,1,7,0,6,7,7,1,0,0,0,1,5,0,7,5,1,3,5,8,6,8,7,2,2,2,8,3,7,8,2,7,5,5,1,0,7,7,6,5,2,1,0,5,4,2,1,2,0,7,0,0,7,0,6,2,5,5,0,2,2,2,6,5,7,8,7,3,7,4,0,1,3,5,7,8,5,7,0,0,1,8,8,8,2,3,7,0,8,5,0,3,6,0,7,8,8,3,0,2,7,7,5,5,7,7,2,0,3,3,7,3,5,0,1,2,5,6,1,3,5,0,1,5,1,0,1,2,1,1,5,7,1,8,1,3,7,2,2,6,3,5,2,0,2,7,1,1,3,4,1,0,2,8,7,8,7,7,3,5,1,3,4,8,6,5,8,6,3,7,1,3,7,4,3,1,5,3,1,8,3,5,7,6,8,7,0,5,1,1,5,7,7,8,5,0,6,7,0,8,5,1,7,1,5,6,0,5,6,7,2,5,6,0,7,5,7,3,5,1,3,2,2,1,5,7,2,5,8,5,0,2,5,8,8,0,7,5,1,1,8,7,1,5,3,3,1,5,6,6,1,0,5,7,6,4,0,1,6,6,5,5,1,5,6,1,3,8,5,8,6,5,0,1,8,1,3,2,1,8,8,6,0,8,4,7,1,7,6,1,5,8,2,4,5,6,2,1,5,7,0,0,3,1,4,0,5,8,2,8,1,2,7,2,5,7,2,0,0,2,7,7,4,7,5,3,0,7,1,5,8,7,5,8,1,5,7,0,1,1,2,2,2,3,6,6,0,5,4,0,4,0,8,0,5,5,5,5,7,0,1,8,6,1,1,6,0,5,3,8,2,7,7,1,3,8,7,3,6,2,7,5,1,2,6,7,2,4,6,5,6,7,2,3,0,7,0,1,5,7,1,1,0,0,4,7,5,5,7,5,7,7,0,2,2,7,8,7,5,2,2,6,0,1,1,0,7,1,3,7,8,0,8,5,1,8,0,8,3,2,1,0,0,7,4,8,1,7,4,8,7,0,5,0,6,6,5,8,7,8,6,0,2,0,5,2,1,3,5,5,2,3,7,3,0,7,7,0,0,2,1,5,5,1,5,1,7,7,2,0,7,3,0,3,3,6,1,4,3,1,2,1,0,0,6,1,6,2,5,3,3,7,4,7,8,3,7,0,5,5,0,4,2,2,0,7,2,0,8,0,5,7,8,1,1,4,7,1,3,3,1,6,2,5,5,7,8,6,1,2,1,3,5,6,7,2,7,3,6,8,5,7,0,5,3,2,5,2,7,8,8,5,5,6,7,5,3,5,2,5,3,5,5,5,0,4,2,2,8,8,7,5,6,2,3,1,7,2,3,6,3,1,0,1,0,0,7,5,4,5,2,7,0,8,0,1,2,8,8,5,7,3,7,7,6,6,4,8,7,5,5,0,3,0,7,1,2,5,5,5,0,1,3,0,2,6,8,0,6,7,6,0,7,7,3,2,7,8,8,0,0,8,2,7,6,0,7,6,8,4,2,0,2,1,0,8,3,7,2,7,5,8,3,1,7,5,8,4,6,3,2,5,3,0,6,5,7,3,8,4,0,5,2,2,7,3,1,5,1,0,0,2,5,6,0,6,5,7,7,7,1,1,6,6,2,0,8,0,6,8,5,5,1,1,0,0,1,7,5,6,3,7,1,0,3,5,1,0,0,0,0,2,1,8,6,1,5,3,1,7,5,7,5,0,1,8,0,0,5,2,7,1,0,2,2,2,2,0,2,7,8,0,7,8,1,2,8,2,3,3,1,1,2,2,1,3,1,8,8,2,5,5,0,0,7,5,5,3,1,7,5,5,7,0,8,3,2,5,3,5,3,8,6,3,7,1,8,6,0,8,2,0,6,5,3,2,2,2,2,7,8,0,2,1,7,4,7,1,4,7,8,7,0,0,1,7,7,8,0,3,8,0,1,8,3,3,7,3,4,1,7,8,7,3,0,6,2,0,2,5,7,7,1,0,1,5,2,3,0,5,0,1,3,8,0,1,8,2,1,2,0,7,0,0,5,3,2,6,5,8,4,3,5,2,7,8,8,1,1,7,2,2,1,3,2,2,6,1,7,1,0,0,7,5,8,1,0,2,1,8,5,7,2,8,0,7,0,2,2,1,1,0,0,2,6,0,8,2,7,0,1,2,1,6,3,2,2,5,1,8,2,6,7,5,2,0,3,1,5,8,0,0,6,6,7,1,1,3,7,7,2,0,5,4,0,7,5,0,8,6,7,5,0,0,3,6,7,1,7,8,1,0,0,1,0,5,3,1,1,2,0,8,7,2,1,8,3,3,6,0,8,5,1,6,5,1,2,5,2,5,6,2,5,5,6,5,8,0,3,6,7,0,1,2,7,7,0,7,1,2,0,3,2,1,1,0,7,3,3,0,5,3,1,1,1,7,8,1,1,7,0,8,0,2,5,5,0,0,1,3,1,0,3,5,0,2,2,5,7,2,1,6,5,2,5,1,0,0,0,1,0,8,8,5,3,0,1,4,8,5,0,1,0,5,6,0,0,1,0,7,5,7,8,5,5,3,2,6,7,3,5,7,3,0,1,0,7,7,6,5,7,7,1,1,0,1,1,7,6,0,3,1,7,8,0,0,2,6,1,4,5,1,3,1,6,5,1,2,7,5,6,3,5,1,7,0,6,6,5,4,7,7,5,1,5,8,2,1,6,8,3,2,0,3,5,2,1,5,5,1,0,8,5,7,3,1,0,3,0,2,1,0,6,6,0,3,1,0,3,5,7,2,2,7,7,1,5,3,8,7,8,2,6,0,4,1,1,5,0,5,6,0,3,5,7,2,3,0,3,1,0,7,8,1,2,5,2,5,0,7,0,7,0,7,7,2,0,1,7,1,4,7,7,7,7,0,6,0,0,0,7,3,0,5,8,8,3,0,8,5,0,6,5,5,8,7,2,7,3,5,1,5,8,7,2,5,5,5,5,5,0,5,5,7,0,6,6,7,0,0,2,0,8,3,0,0,5,0,1,7,1,5,7,2,1,2,8,5,8,2,2,1,4,7,1,0,0,5,7,3,1,8,7,8,3,0,8,1,1,2,8,2,7,1,5,6,7,3,8,8,3,6,4,1,2,8,6,0,7,0,5,0,1,3,1,7,5,6,0,0,7,0,2,2,1,3,7,3,4,6,5,5,1,5,0,1,5,8,1,0,8,1,8,1,8,5,0,2,7,0,6,5,3,3,1,3,2,1,3,3,4,7,2,5,8,1,2,3,7,5,7,1,5,1,5,5,8,2,1,0,1,4,3,7,1,0,3,5,3,5,0,8,1,7,3,1,7,5,5,2,6,6,2,0,3,0,3,6,7,1,2,1,8,1,5,7,0,0,0,5,7,3,3,0,6,5,7,3,8,8,5,1,3,0,1,2,5,7,0,5,3,8,5,3,5,2,2,2,6,5,2,8,0,0,5,0,7,1,5,1,6,1,5,2,1,1,1,1,7,0,7,0,5,5,8,0,2,6,0,5,4,0,7,3,8,3,1,4,6,7,3,1,2,7,7,1,1,3,1,6,0,1,2,8,5,1,3,1,7,8,4,8,7,6,7,1,7,7,3,5,2,4,4,5,5,6,7,3,7,2,7,0,7,2,0,2,1,6,8,8,7,0,7,5,7,7,0,7,0,0,1,7,2,7,7,5,0,4,3,2,7,5,1,3,0,3,5,2,7,1,1,5,4,6,5,6,5,7,0,1,6,8,4,2,1,2,1,3,8,0,0,7,5,5,5,2,5,3,6,5,8,7,5,0,0,3,7,2,5,7,6,2,0,6,3,2,6,7,8,7,5,1,2,1,7,3,4,1,4,8,1,1,7,0,7,5,0,4,6,0,8,0,2,5,5,8,2,3,0,8,7,5,3,7,7,0,7,6,7,5,8,6,8,3,3,0,0,8,7,7,1,7,0,5,3,7,3,0,1,7,1,0,5,1,4,0,8,5,1,1,2,6,7,7,8,3,3,2,3,2,0,8,3,0,8,0,1,3,7,2,8,7,2,1,2,7,3,1,0,4,1,3,8,8,1,5,7,4,0,0,2,2,2,2,1,1,4,1,8,3,1,1,6,3,0,7,8,1,0,1,2,0,3,3,0,7,0,6,2,4,1,0,7,7,0,1,5,1,8,0,7,8,1,0,1,5,0,5,5,8,2,8,0,0,0,0,3,3,3,7,3,7,6,0,1,8,7,2,7,7,1,5,2,2,5,5,6,5,2,5,8,2,3,5,7,3,6,3,1,7,1,0,7,7,6,8,3,0,0,0,3,2,0,1,3,7,5,7,7,0,7,7,7,5,5,5,7,1,5,5,7,0,2,7,4,7,7,1,0,0,5,0,5,5,7,3,2,5,7,5,7,1,7,1,2,7,6,5,0,1,3,8,6,6,8,4,3,8,3,7,5,7,5,3,5,1,7,1,5,5,2,7,5,1,5,5,8,0,5,2,6,8,1,1,3,5,1,3,7,6,0,6,2,7,4,0,6,1,1,1,0,0,6,3,3,1,6,0,7,6,7,0,3,1,5,0,8,7,8,7,0,2,1,2,7,1,5,7,2,0,7,0,7,1,0,1,2,7,8,6,6,6,1,0,7,5,4,1,0,5,6,5,6,8,3,8,5,5,5,0,0,7,1,0,1,5,0,4,1,0,3,7,6,7,0,7,5,1,1,2,1,0,5,1,4,5,7,1,5,8,0,7,3,2,1,6,5,7,2,8,3,7,6,2,7,6,7,0,7,0,0,5,3,0,5,2,1,5,1,0,5,0,1,3,5,6,6,3,6,5,1,0,6,7,7,7,4,5,7,0,2,4,0,0,5,7,5,2,7,8,2,1,0,5,5,8,5,2,2,5,0,7,2,7,0,1,1,1,1,0,2,1,1,7,2,3,5,8,7,5,3,6,7,6,3,0,7,7,2,0,7,1,8,1,6,5,8,0,7,5,5,0,3,5,6,1,1,2,0,0,6,0,7,1,3,6,7,7,1,7,8,0,5,2,1,1,0,3,7,1,0,2,7,3,6,3,2,1,7,1,8,2,7,0,8,6,5,0,1,8,7,1,0,5,5,0,8,1,1,0,6,1,7,0,7,7,1,0,3,3,3,3,3,2,2,3,5,7,2,0,0,2,7,3,7,3,6,4,4,1,1,7,4,6,4,7,3,1,2,1,6,5,8,2,6,0,7,1,5,5,5,7,2,1,7,4,7
# What is your estimate of the boostedDT's accuracy? (only your final answer)
CHALLENGE_BOOSTEDDT_ACCURACY_MEAN: 0.031
#######################################################################################
# Answers to Implementation Exercise 1.2: Best Classifier on Unknown Data
#
# Please list your final answers below for auto-grading.
#######################################################################################
# Copy and Paste the list of predicted labels below (one very long line of text without spaces)
# Make sure it is all on one line
CHALLENGE_BESTCLASSIFIER_PREDICTIONS:
5. 8. 9. 6. 6. 5. 4. 7. 9. 6. 2. 6. 1. 4. 7. 3. 2. 6.
5. 8. 6. 2. 2. 5. 4. 6. 4. 5. 2. 5. 7. 8. 7. 8. 9. 7.
4. 3. 1. 5. 8. 2. 7. 1. 9. 9. 6. 4. 3. 9. 2. 7. 6. 2.
5. 7. 7. 7. 7. 4. 5. 5. 2. 2. 7. 7. 7. 4. 9. 8. 2. 6.
5. 7. 3. 5. 1. 1. 2. 7. 2. 8. 8. 2. 1. 6. 5. 2. 7. 2.
8. 4. 9. 9. 7. 3. 8. 5. 6. 3. 2. 4. 5. 6. 4. 3. 4. 1.
9. 7. 3. 1. 5. 1. 5. 6. 3. 2. 7. 3. 4. 5. 4. 8. 7. 1.
3. 5. 9. 7. 1. 6. 6. 9. 5. 2. 7. 2. 1. 2. 9. 9. 5. 4.
4. 9. 7. 1. 5. 9. 8. 6. 2. 3. 8. 1. 2. 9. 1. 3. 8. 6.
1. 5. 3. 5. 3. 6. 8. 5. 8. 9. 1. 7. 1. 6. 1. 9. 8. 1.
4. 9. 7. 9. 1. 1. 6. 5. 3. 1. 3. 6. 1. 4. 3. 4. 7. 7.
2. 7. 9. 6. 6. 1. 8. 2. 1. 2. 5. 1. 5. 2. 2. 5. 9. 3.
9. 9. 1. 8. 3. 4. 7. 8. 9. 8. 3. 4. 1. 9. 5. 9. 9. 6.
6. 4. 8. 6. 4. 4. 1. 1. 7. 5. 4. 7. 1. 3. 3. 7. 5. 3.
7. 8. 5. 2. 5. 6. 3. 9. 8. 3. 3. 5. 7. 5. 2. 6. 2. 4.
5. 8. 1. 4. 3. 4. 1. 2. 9. 5. 8. 9. 3. 7. 4. 8. 6. 3.
3. 9. 1. 9. 8. 7. 5. 3. 7. 2. 8. 4. 9. 9. 8. 8. 6. 6.
5. 1. 3. 4. 1. 4. 8. 5. 9. 1. 1. 7. 9. 1. 8. 1. 6. 6.
2. 3. 5. 7. 2. 5. 8. 1. 7. 7. 3. 4. 1. 6. 9. 1. 3. 2.
9. 4. 5. 6. 1. 9. 7. 4. 3. 2. 5. 7. 1. 8. 3. 9. 1. 6.
5. 1. 2. 5. 6. 2. 5. 8. 3. 4. 2. 7. 8. 4. 9. 3. 1. 9.
3. 4. 8. 7. 9. 9. 4. 2. 7. 9. 6. 5. 4. 2. 4. 5. 7. 7.
2. 7. 4. 2. 1. 8. 5. 3. 5. 3. 2. 6. 9. 8. 7. 4. 3. 2.
4. 2. 5. 9. 7. 7. 2. 9. 1. 8. 9. 1. 2. 2. 1. 6. 8. 9.
3. 5. 7. 1. 2. 1. 4. 8. 9. 9. 6. 7. 9. 2. 4. 4. 2. 7.
1. 1. 5. 5. 7. 5. 1. 1. 1. 9. 9. 6. 7. 2. 9. 5. 3. 4.
2. 1. 2. 4. 5. 4. 3. 1. 9. 7. 4. 9. 5. 5. 5. 3. 8. 3.
3. 4. 9. 1. 5. 3. 5. 5. 5. 3. 8. 2. 9. 2. 8. 1. 5. 6.
8. 4. 4. 2. 9. 1. 2. 7. 1. 3. 2. 2. 2. 7. 3. 3. 1. 1.
6. 4. 8. 1. 6. 5. 9. 6. 4. 5. 1. 3. 2. 1. 1. 9. 9. 1.
5. 7. 2. 9. 3. 3. 7. 2. 2. 4. 9. 6. 1. 3. 5. 6. 7. 4.
9. 1. 2. 8. 1. 3. 3. 1. 3. 7. 6. 1. 9. 1. 8. 8. 8. 2.
1. 4. 1. 2. 2. 7. 1. 1. 7. 5. 1. 9. 1. 8. 9. 8. 7. 7.
2. 8. 3. 7. 8. 4. 5. 6. 9. 6. 5. 5. 5. 4. 3. 4. 1. 4.
9. 7. 6. 9. 9. 6. 8. 1. 7. 6. 5. 4. 5. 1. 5. 6. 6. 6.
6. 3. 9. 4. 5. 4. 1. 7. 9. 4. 7. 3. 2. 3. 7. 3. 2. 7.
8. 5. 6. 3. 3. 4. 8. 2. 4. 7. 5. 4. 5. 7. 4. 4. 6. 4.
6. 2. 1. 2. 9. 1. 5. 6. 3. 7. 4. 7. 8. 3. 4. 5. 5. 8.
9. 3. 9. 9. 1. 6. 4. 2. 9. 2. 2. 2. 5. 2. 9. 2. 3. 2.
2. 9. 1. 4. 4. 8. 2. 2. 4. 1. 7. 8. 6. 9. 2. 7. 7. 7.
6. 2. 1. 5. 1. 3. 4. 9. 8. 7. 8. 5. 4. 4. 3. 8. 4. 4.
9. 4. 2. 5. 5. 3. 4. 7. 8. 2. 1. 2. 9. 4. 7. 2. 9. 5.
9. 2. 4. 9. 3. 5. 1. 4. 5. 8. 6. 7. 1. 8. 5. 3. 5. 4.
5. 6. 9. 2. 4. 4. 3. 9. 3. 3. 2. 1. 1. 2. 3. 7. 4. 2.
5. 8. 8. 5. 6. 2. 7. 1. 6. 4. 8. 6. 3. 7. 6. 8. 7. 3.
7. 1. 2. 7. 9. 1. 6. 3. 2. 9. 8. 3. 3. 1. 1. 1. 7. 5.
3. 2. 3. 4. 8. 7. 6. 1. 3. 5. 8. 7. 9. 4. 3. 6. 3. 6.
3. 1. 2. 3. 1. 9. 2. 7. 5. 1. 4. 6. 3. 6. 4. 1. 9. 3.
9. 2. 2. 6. 1. 5. 7. 9. 5. 4. 3. 9. 5. 2. 3. 2. 9. 2.
8. 2. 2. 9. 6. 7. 7. 3. 5. 1. 5. 2. 2. 4. 9. 2. 2. 8.
3. 6. 7. 4. 1. 8. 5. 8. 8. 7. 6. 1. 9. 1. 5. 2. 4. 8.
2. 4. 4. 3. 9. 5. 4. 2. 8. 8. 2. 2. 7. 2. 9. 2. 8. 2.
5. 1. 6. 6. 6. 6. 9. 2. 9. 3. 4. 4. 8. 2. 6. 9. 3. 4.
7. 1. 5. 4. 9. 1. 6. 4. 4. 5. 4. 7. 2. 1. 6. 6. 8. 5.
8. 7. 7. 3. 6. 9. 4. 6. 8. 6. 2. 4. 2. 1. 9. 2. 2. 3.
9. 2. 8. 2. 3. 3. 7. 5. 1. 2. 2. 6. 2. 8. 7. 8. 7. 5.
5. 1. 8. 6. 9. 4. 3. 5. 3. 4. 4. 4. 2. 3. 1. 4. 4. 5.
9. 4. 9. 7. 1. 1. 1. 8. 7. 4. 1. 6. 7. 8. 5. 3. 7. 6.
1. 4. 6. 2. 6. 2. 5. 2. 5. 8. 8. 2. 8. 5. 2. 2. 8. 7.
2. 6. 7. 6. 3. 6. 1. 8. 6. 1. 7. 5. 6. 3. 4. 8. 2. 8.
4. 6. 6. 5. 8. 2. 5. 5. 3. 1. 8. 2. 4. 4. 1. 2. 7. 1.
8. 3. 5. 9. 7. 8. 4. 3. 1. 4. 7. 7. 5. 7. 1. 1. 4. 9.
8. 3. 2. 6. 4. 8. 7. 4. 7. 6. 7. 1. 7. 8. 4. 6. 6. 9.
4. 4. 3. 5. 1. 8. 6. 2. 7. 5. 3. 5. 3. 2. 8. 6. 4. 7.
4. 6. 6. 3. 2. 2. 3. 7. 9. 6. 5. 1. 1. 5. 2. 8. 2. 4.
2. 5. 6. 8. 1. 4. 6. 9. 2. 8. 3. 2. 1. 2. 5. 3. 6. 7.
3. 4. 4. 1. 2. 2. 1. 9. 8. 2. 2. 3. 1. 8. 9. 1. 2. 2.
7. 8. 8. 7. 9. 7. 6. 9. 9. 4. 8. 9. 4. 3. 3. 5. 1. 2.
2. 2. 3. 1. 6. 1. 4. 5. 8. 2. 3. 8. 7. 3. 5. 9. 5. 5.
9. 6. 2. 4. 7. 2. 7. 3. 2. 5. 5. 3. 4. 2. 4. 2. 4. 8.
6. 7. 2. 2. 8. 7. 6. 1. 2. 8. 4. 3. 7. 3. 1. 2. 7. 7.
8. 1. 1. 3. 7. 5. 9. 5. 4. 1. 6. 3. 1. 1. 1. 9. 4. 8.
1. 5. 1. 8. 5. 3. 5. 4. 8. 3. 3. 4. 8. 4. 6. 5. 6. 9.
1. 5. 2. 4. 9. 4. 4. 4. 8. 6. 5. 7. 6. 1. 9. 5. 7. 7.
7. 1. 1. 2. 1. 3. 9. 8. 9. 3. 2. 5. 1. 5. 6. 5. 1. 6.
3. 1. 7. 7. 2. 1. 9. 4. 4. 1. 4. 5. 2. 8. 5. 8. 2. 4.
2. 5. 4. 1. 8. 6. 3. 6. 4. 1. 2. 9. 3. 4. 9. 3. 4. 4.
5. 8. 7. 8. 5. 5. 8. 6. 2. 7. 2. 2. 1. 8. 9. 9. 5. 2.
7. 6. 3. 5. 1. 7. 9. 4. 2. 4. 2. 2. 4. 1. 4. 8. 2. 9.
6. 6. 1. 1. 3. 3. 8. 9. 6. 3. 1. 6. 3. 5. 4. 1. 3. 8.
1. 4. 2. 7. 2. 7. 3. 9. 2. 4. 6. 4. 4. 2. 8. 2. 2. 2.
8. 1. 1. 1. 6. 9. 2. 9. 3. 6. 7. 7. 4. 9. 3. 3. 3. 2.
1. 7. 6. 8. 7. 7. 1. 3. 2. 1. 8. 1. 8. 7. 5. 1. 5. 6.
9. 5. 4. 8. 9. 3. 9. 2. 5. 3. 4. 8. 2. 3. 1. 4. 1. 8.
7. 7. 7. 8. 6. 9. 2. 3. 7. 3. 4. 7. 5. 9. 4. 1. 3. 8.
4. 7. 1. 2. 1. 6. 4. 5. 3. 2. 3. 9. 1. 1. 2. 7. 8. 5.
7. 4. 7. 3. 3. 8. 3. 4. 4. 3. 9. 7. 6. 2. 9. 6. 9. 6.
1. 7. 7. 2. 4. 5. 1. 1. 8. 3. 9. 9. 1. 1. 8. 1. 2. 5.
5. 2. 2. 5. 5. 6. 3. 4. 1. 7. 5. 7. 2. 9. 9. 3. 8. 3.
2. 4. 7. 2. 7. 1. 1. 8. 8. 4. 1. 4. 8. 7. 1. 6. 7. 8.
7. 9. 2. 5. 6. 5. 4. 8. 7. 9. 5. 3. 6. 5. 1. 1. 7. 7.
2. 7. 5. 4. 2. 7. 6. 1. 8. 9. 1. 8. 7. 2. 3. 3. 2. 3.
8. 9. 3. 6. 6. 6. 7. 4. 9. 4. 8. 6. 7. 5. 5. 5. 5. 3.
3. 5. 1. 4. 5. 6. 2. 5. 2. 1. 2. 5. 2. 9. 2. 7. 3. 3.
9. 8. 8. 2. 7. 6. 8. 2. 5. 9. 1. 9. 5. 8. 5. 1. 6. 3.
1. 1. 3. 1. 9. 4. 8. 3. 1. 4. 2. 2. 8. 7. 3. 4. 4. 1.
2. 1. 5. 3. 8. 4. 6. 8. 8. 8. 8. 8. 6. 2. 4. 8. 1. 9.
7. 6. 5. 6. 4. 9. 7. 1. 5. 1. 2. 8. 7. 8. 4. 6. 1. 5.
4. 7. 9. 1. 2. 4. 6. 5. 5. 6. 2. 8. 5. 5. 3. 7. 4. 1.
4. 3. 3. 1. 4. 6. 9. 2. 7. 8. 1. 2. 4. 4. 6. 8. 9. 9.
9. 5. 7. 8. 7. 8. 4. 1. 5. 9. 4. 7. 5. 4. 5. 7. 5. 1.
5. 6. 2. 8. 1. 1. 4. 7. 3. 7. 5. 9. 6. 4. 9. 6. 6. 4.
8. 3. 6. 9. 2. 2. 4. 6. 6. 3. 8. 4. 7. 5. 2. 1. 7. 2.
2. 1. 3. 5. 6. 3. 5. 1. 5. 9. 4. 5. 3. 1. 5. 8. 8. 1.
1. 6. 5. 3. 5. 1. 9. 2. 6. 3. 6. 7. 8. 5. 5. 5. 2. 5.
1. 2. 5. 5. 1. 5. 7. 1. 2. 5. 6. 6. 5. 1. 1. 9. 3. 7.
4. 2. 2. 8. 3. 3. 6. 1. 5. 2. 1. 7. 8. 2. 9. 5. 7. 3.
1. 1. 2. 5. 5. 3. 3. 4. 3. 9. 8. 8. 9. 8. 5. 5. 9. 4.
7. 3. 9. 2. 4. 1. 2. 3. 5. 8. 2. 8. 3. 1. 5. 1. 9. 1.
8. 9. 8. 5. 6. 8. 4. 1. 4. 5. 7. 6. 2. 2. 4. 8. 4. 3.
1. 8. 1. 3. 9. 1. 1. 7. 6. 3. 1. 9. 8. 5. 8. 8. 3. 4.
2. 9. 5. 6. 1. 1. 2. 3. 6. 8. 4. 7. 5. 3. 3. 2. 3. 4.
8. 9. 4. 4. 2. 4. 2. 1. 6. 9. 5. 6. 3. 9. 2. 2. 3. 9.
9. 5. 3. 3. 4. 2. 9. 9. 9. 1. 3. 8. 9. 1. 3. 5. 2. 4.
4. 5. 1. 7. 6. 5. 8. 7. 8. 9. 1. 8. 9. 6. 3. 8. 7. 6.
4. 2. 5. 5. 1. 5. 8. 4. 9. 7. 6. 7. 6. 3. 6. 5. 9. 2.
9. 1. 7. 6. 3. 7. 6. 5. 8. 1. 5. 6. 8. 1. 9. 6. 8. 4.
6. 6. 5. 2. 2. 1. 4. 2. 9. 2. 5. 7. 3. 7. 5. 5. 3. 3.
9. 2. 9. 3. 7. 6. 3. 8. 7. 1. 4. 5. 3. 7. 4. 3. 2. 1.
6. 3. 9. 1. 5. 5. 4. 6. 7. 8. 1. 5. 9. 5. 8. 6. 1. 4.
7. 5. 7. 6. 4. 3. 3. 4. 3. 8. 9. 9. 1. 5. 8. 2. 7. 8.
9. 5. 8. 5. 5. 6. 4. 5. 3. 2. 3. 3. 2. 1. 6. 4. 7. 1.
6. 6. 2. 1. 6. 4. 2. 4. 4. 8. 1. 9. 5. 3. 1. 9. 1. 4.
9. 5. 1. 2. 7. 5. 3. 2. 2. 7. 7. 8. 6. 8. 8. 3. 7. 1.
6. 2. 2. 9. 1. 3. 2. 7. 1. 6. 4. 6. 4. 5. 1. 9. 6. 5.
6. 1. 4. 1. 8. 3. 6. 4. 5. 7. 5. 6. 2. 9. 9. 6. 8. 1.
4. 1. 6. 9. 3. 4. 7. 7. 3. 8. 3. 2. 4. 5. 1. 8. 8. 1.
2. 3. 1. 4. 7. 9. 7. 5. 3. 9. 8. 9. 5. 4. 8. 8. 8. 1.
2. 2. 9. 9. 3. 4. 2. 7. 5. 4. 1. 6. 9. 4. 7. 8. 8. 4.
2. 9. 4. 8. 2. 8. 8. 3. 3. 3. 2. 6. 1. 2. 7. 2. 9. 6.
2. 1. 2. 1. 1. 6. 7. 4. 2. 7. 5. 1. 5. 5. 6. 6. 3. 3.
4. 4. 4. 8. 5. 4. 9. 4. 4. 9. 5. 7. 7. 4. 1. 6. 9. 9.
3. 1. 9. 8. 5. 2. 1. 5. 6. 6. 7. 5. 7. 3. 1. 6. 5. 7.
9. 6. 3. 4. 5. 1. 8. 7. 6. 3. 2. 7. 1. 7. 4. 1. 3. 1.
2. 2. 8. 2. 6. 8. 2. 6. 1. 6. 5. 7. 5. 6. 4. 7. 3. 5.
7. 8. 1. 5. 1. 9. 7. 7. 8. 1. 8. 2. 1. 7. 9. 7. 7. 6.
8. 8. 9. 9. 5. 6. 4. 1. 7. 8. 3. 2. 3. 3. 4. 6. 7. 3.
7. 2. 5. 2. 6. 5. 3. 7. 4. 1. 4. 5. 8. 4. 5. 5. 1. 1.
5. 7. 8. 2. 5. 8. 3. 6. 8. 5. 5. 4. 2. 4. 7. 4. 1. 8.
5. 1. 9. 7. 5. 9. 4. 9. 1. 1. 7. 8. 2. 9. 7. 7. 3. 8.
8. 9. 7. 9. 3. 7. 7. 5. 3. 3. 5. 4. 4. 3. 4. 4. 3. 8.
2. 1. 5. 4. 2. 3. 2. 1. 4. 2. 2. 5. 3. 3. 6. 3. 4. 4.
5. 3. 4. 6. 2. 5. 8. 4. 3. 4. 2. 7. 4. 6. 3. 2. 4. 6.
4. 4. 9. 5. 4. 3. 4. 6. 1. 5. 7. 2. 3. 1. 2. 8. 1. 2.
2. 5. 9. 5. 8. 6. 9. 5. 6. 7. 2. 6. 9. 5. 7. 9. 2. 6.
5. 6. 2. 5. 5. 3. 5. 8. 5. 3. 5. 4. 8. 8. 8. 2. 9. 7.
7. 2. 6. 4. 5. 3. 3. 1. 1. 8. 8. 2. 9. 7. 8. 9. 7. 2.
5. 1. 5. 2. 4. 2. 1. 4. 4. 4. 9. 4. 3. 5. 6. 1. 8. 3.
1. 2. 2. 5. 8. 9. 2. 1. 7. 6. 3. 6. 9. 4. 3. 8. 8. 7.
6. 2. 2. 6. 7. 5. 7. 9. 5. 9. 5. 2. 4. 1. 5. 2. 5. 6.
6. 5. 4. 8. 1. 2. 9. 4. 7. 8. 7. 3. 3. 4. 8. 5. 9. 4.
5. 8. 2. 3. 5. 3. 3. 1. 2. 8. 8. 7. 1. 2. 1. 2. 1. 4.
1. 3. 2. 7. 3. 4. 8. 8. 8. 3. 5. 5. 8. 3. 9. 2. 7. 2.
2. 2. 6. 6. 9. 9. 8. 7. 4. 7. 8. 4. 1. 6. 7. 9. 9. 6.
6. 5. 4. 6. 1. 9. 7. 5. 7. 4. 2. 8. 7. 8. 6. 4. 1. 8.
5. 8. 7. 3. 8. 4. 9. 2. 8. 4. 7. 2. 4. 3. 8. 7. 5. 1.
2. 8. 6. 9. 3. 4. 5. 4. 1. 4. 1. 4. 6. 5. 7. 9. 7. 9.
2. 9. 4. 7. 2. 7. 9. 6. 4. 8. 5. 5. 9. 8. 8. 5. 6. 8.
4. 9. 9. 2. 5. 3. 2. 2. 8. 3. 3. 3. 2. 9. 2. 5. 4. 1.
4. 5. 9. 2. 1. 7. 3. 4. 1. 5. 4. 2. 7. 3. 7. 7. 4. 2.
8. 5. 3. 6. 3. 9. 5. 7. 7. 1. 4. 4. 4. 7. 3. 6. 1. 7.
3. 1. 4. 3. 7. 7. 3. 7. 6. 4. 4. 1. 4. 9. 2. 5. 3. 2.
1. 2. 6. 5. 1. 3. 6. 8. 8. 9. 7. 9. 4. 6. 6. 6. 5. 7.
3. 1. 8. 9. 6. 6. 8. 1. 3. 7. 3. 8. 8. 1. 1. 5. 6. 8.
5. 2. 9. 9. 3. 7. 2. 4. 4. 2. 3. 7. 2. 3. 8. 9. 5. 9.
3. 5. 8. 7. 3. 5. 5. 5. 6. 1. 3. 5. 7. 5. 8. 9. 7. 7.
7. 1. 2. 1. 6. 2. 1. 2. 7. 4. 1. 3. 4. 2. 2. 3. 3. 4.
9. 3. 5. 7. 4. 9. 7. 6. 3. 5. 1. 9. 2. 5. 3. 8. 2. 9.
8. 7. 2. 2. 2. 6. 1. 8. 9. 2. 6. 1. 5. 1. 8. 2. 7. 8.
6. 4. 6. 1. 7. 4. 4. 3. 6. 4. 2. 8. 8. 3. 3. 7. 4. 8.
2. 2. 1. 7. 1. 8. 2. 6. 2. 5. 2. 2. 5. 6. 1. 2. 6. 3.
3. 9. 9. 2. 5. 5. 6. 8. 1. 4. 6. 4. 8. 2. 4. 5. 4. 9.
2. 2. 5. 1. 5. 5. 4. 7. 1. 3. 3. 7. 9. 2. 2. 4. 6. 8.
4. 5. 4. 2. 8. 5. 3. 7. 9. 8. 4. 2. 8. 4. 2. 1. 3. 5.
2. 1. 5. 8. 7. 8. 7. 9. 8. 6. 1. 4. 8. 8. 4. 3. 8. 7.
7. 9. 8. 7. 2. 5. 1. 7. 2. 6. 6. 6. 2. 7. 6. 7. 2. 7.
4. 2. 8. 9. 6. 3. 2. 1. 2. 2. 8. 7. 3. 7. 9. 2. 1. 2.
7. 9. 9. 4. 4. 3. 2. 9. 6. 1. 9. 9. 9. 8. 7. 5. 2. 9.
7. 6. 4. 2. 7. 7. 1. 4. 5. 2. 8. 5. 4. 5. 5. 1. 3. 7.
7. 7. 3. 5. 9. 2. 7. 5. 5. 4. 7. 5. 4. 6. 6. 9. 3. 4.
2. 3. 9. 1. 9. 9. 7. 1. 9. 2. 7. 9. 3. 8. 9. 7. 2. 5.
3. 1. 6. 6. 2. 7. 4. 6. 9. 3. 3. 5. 6. 2. 8. 8. 3. 7.
2. 4. 8. 9. 9. 8. 6. 8. 7. 2. 8. 4. 8. 3. 4. 3. 3. 2.
2. 3. 5. 2. 1. 3. 4. 1. 7. 3. 5. 5. 6. 5. 5. 1. 7. 4.
4. 1. 1. 5. 3. 9. 5. 7. 6. 5. 9. 9. 9. 4. 2. 6. 4. 7.
1. 3. 6. 4. 8. 6. 3. 8. 1. 2. 9. 7. 9. 8. 5. 3. 9. 5.
9. 9. 8. 6. 7. 3. 3. 6. 4. 1. 5. 1. 5. 7. 4. 3. 4. 8.
6. 5. 6. 6. 5. 9. 1. 1. 8. 1. 1. 1. 1. 1. 5. 4. 6. 4.
4. 4. 5. 6. 8. 9. 4. 5. 2. 2. 7. 5. 9. 7. 9. 1. 1. 3.
4. 8. 5. 4. 8. 1. 8. 7. 9. 3. 5. 2. 5. 6. 2. 7. 6. 2.
6. 6. 9. 8. 4. 1. 4. 3. 6. 9. 4. 3. 8. 6. 7. 8. 3. 9.
7. 9. 7. 5. 4. 5. 7. 7. 4. 9. 9. 9. 9. 6. 5. 6. 2. 9.
7. 5. 3. 9. 2. 2. 7. 3. 5. 3. 6. 9. 1. 4. 3. 3. 3. 3.
5. 6. 8. 2. 8. 3. 4. 7. 3. 4. 8. 1. 7. 7. 3. 6. 7. 8.
6. 6. 6. 1. 1. 2. 6. 4. 5. 5. 6. 9. 4. 8. 4. 9. 3. 2.
5. 5. 5. 9. 2. 1. 4. 5. 9. 1. 4. 2. 2. 4. 2. 8. 5. 2.
2. 3. 8. 6. 3. 9. 4. 6. 3. 8. 3. 6. 7. 7. 7. 2. 3. 7.
1. 4. 9. 1. 4. 6. 6. 2. 6. 9. 1. 1. 3. 1. 7. 5. 7. 6.
7. 9. 9. 1. 4. 2. 6. 5. 4. 9. 8. 6. 9. 6. 6. 9. 7. 9.
3. 6. 5. 7. 1. 1. 3. 4. 2. 6. 6. 3. 1. 3. 6. 2. 6. 1.
1. 8. 4. 9. 1. 1. 1. 8. 7. 1. 1. 7. 3. 3. 1. 7. 1. 4.
4. 4. 2. 3. 2. 1. 3. 1. 5. 4. 8. 3. 7. 4. 9. 1. 7. 1.
7. 9. 8. 7. 2. 3. 3. 9. 1. 8. 9. 9. 2. 3. 8. 4. 9. 1.
9. 1. 6. 1. 2. 7. 6. 8. 5. 7. 1. 9. 2. 1. 3. 2. 7. 1.
9. 9. 7. 8. 5. 7. 5. 5. 2. 1. 1. 2. 7. 4. 1. 8. 6. 2.
4. 6. 9. 7. 9. 5. 3. 3. 3. 9. 4. 5. 9. 3. 5. 6. 6. 2.
5. 5. 8. 7. 6. 3. 1. 3. 9. 8. 3. 2. 3. 2. 5. 1. 2. 8.
1. 7. 3. 6. 6. 2. 3. 3. 3. 2. 6. 8. 9. 2. 4. 7. 5. 1.
1. 8. 6. 5. 9. 6. 8. 1. 2. 2. 9. 4. 9. 3. 4. 8. 1. 9.
6. 2. 4. 7. 1. 8. 9. 9. 4. 1. 3. 5. 5. 6. 6. 8. 5. 3.
3. 7. 4. 8. 4. 6. 3. 7. 3. 6. 7. 2. 4. 6. 1. 2. 5. 1.
1. 2. 5. 1. 7. 4. 5. 7. 9. 7. 4. 7. 3. 3. 7. 4. 6. 3.
2. 3. 8. 1. 7. 4. 5. 2. 1. 3. 9. 8. 9. 8. 5. 4. 6. 2.
4. 5. 9. 7. 6. 9. 7. 8. 8. 2. 4. 5. 5. 4. 2. 6. 4. 1.
9. 4. 6. 8. 7. 9. 8. 7. 6. 2. 7. 6. 8. 5. 9. 6. 2. 7.
8. 1. 9. 4. 2. 5. 1. 6. 7. 7. 6. 7. 8. 3. 6. 7. 9. 5.
6. 8. 4. 6. 2. 4. 3. 3. 2. 6. 8. 3. 5. 9. 6. 1. 3. 6.
9. 9. 3. 8. 6. 7. 2. 8. 8. 1. 6. 6. 4. 2. 6. 7. 7. 2.
1. 6. 5. 7. 6. 2. 2. 7. 8. 6. 5. 1. 4. 7. 2. 4. 9. 6.
9. 7. 6. 2. 1. 9. 2. 4. 3. 7. 4. 9. 7. 1. 9. 5. 8. 2.
8. 8. 7. 6. 9. 3. 5. 6. 8. 3. 7. 6. 8. 7. 2. 4. 2. 3.
1. 6. 9. 3. 9. 2. 3. 8. 3. 6. 5. 3. 9. 7. 3. 5. 5. 5.
5. 6. 4. 2. 8. 2. 6. 9. 8. 6. 9. 7. 4. 5. 2. 7. 7. 3.
3. 3. 4. 7. 7. 1. 6. 5. 2. 5. 1. 9. 1. 6. 6. 6. 6. 5.
8. 7. 9. 7. 7. 2. 7. 8. 6. 4. 9. 3. 8. 7. 7. 4. 9. 8.
4. 7. 9. 8. 9. 7. 3. 7. 9. 3. 5. 7. 6. 1. 8. 3. 4. 1.
8. 7. 2. 9. 8. 1. 2. 7. 7. 5. 5. 6. 6. 8. 6. 8. 5. 1.
9. 3. 5. 9. 8. 9. 3. 3. 7. 1. 7. 7. 2. 8. 1. 4. 8. 9.
3. 9. 6. 7. 9. 1. 9. 4. 3. 2. 2. 1. 5. 5. 4. 1. 8. 6.
9. 8. 1. 6. 2. 7. 7. 6. 9. 8. 9. 7. 7. 3. 1. 6. 3. 1.
4. 6. 6. 3. 4. 8. 4. 1. 5. 8. 2. 7. 3. 2. 6. 6. 2. 6.
1. 8. 8. 3. 1. 8. 4. 7. 4. 4. 7. 2. 5. 4. 7. 3. 2. 1.
7. 7. 2. 8. 3. 6. 4. 6. 8. 5. 8. 9. 4. 5. 7. 5. 6. 1.
5. 3. 9. 2. 8. 3. 1. 9. 1. 5. 5. 1. 2. 2. 8. 8. 7. 4.
4. 2. 7. 3. 6. 6. 2. 9. 7. 7. 3. 1. 4. 6. 7. 8. 3. 5.
4. 7. 9. 6. 8. 1. 6. 4. 3. 6. 3. 5. 9. 9. 6. 6. 7. 8.
6. 4. 6. 5. 6. 4. 5. 6. 6. 7. 8. 3. 5. 9. 4. 8. 6. 7.
3. 4. 2. 8. 3. 4. 7. 4. 2. 2. 1. 2. 3. 8. 5. 6. 6. 5.
5. 1. 9. 1. 1. 3. 9. 9. 6. 5. 4. 5. 8. 2. 7. 5. 9. 8.
6. 4. 1. 4. 9. 8. 1. 3. 6. 5. 6. 1. 2. 4. 1. 3. 7. 9.
7. 7. 5. 8. 9. 8. 5. 4. 3. 5. 9. 9. 5. 2. 9. 3. 5. 7.
1. 5. 7. 9. 5. 3. 2. 3. 2. 2. 9. 4. 5. 3. 8. 4. 9. 4.
7. 5. 6. 9. 6. 7. 4. 3. 4. 4. 1. 7. 6. 8. 4. 9. 6. 2.
6. 3. 5. 8. 4. 2. 6. 2. 1. 8. 3. 6. 7. 1. 7. 6. 8. 8.
8. 1. 7. 7. 7. 3. 1. 9. 1. 7. 9. 6. 6. 2. 2. 1. 1. 7.
8. 6. 7. 4. 5. 2. 1. 4. 6. 7. 1. 1. 1. 7. 3. 7. 9. 5.
2. 6. 4. 2. 8. 5. 8. 6. 1. 2. 9. 1. 7. 6. 3. 9. 1. 1.
3. 3. 3. 3. 1. 7. 8. 9. 8. 8. 9. 2. 3. 9. 3. 4. 4. 7.
2. 3. 3. 7. 4. 1. 9. 9. 9. 6. 6. 1. 1. 8. 6. 6. 4. 2.
8. 5. 6. 5. 1. 9. 4. 9. 6. 6. 5. 4. 9. 7. 4. 5. 2. 9.
7. 1. 9. 3. 9. 7. 6. 4. 5. 3. 3. 9. 8. 9. 7. 3. 2. 5.
5. 2. 2. 5. 5. 9. 5. 1. 7. 2. 5. 8. 9. 7. 4. 9. 2. 2.
9. 4. 4. 5. 4. 8. 2. 5. 9. 8. 4. 8. 7. 3. 6. 3. 5. 8.
5. 2. 1. 2. 6. 3. 4. 7. 6. 9. 7. 4. 9. 1. 1. 9. 3. 1.
3. 7. 8. 7. 3. 6. 4. 3. 7. 6. 9. 5. 4. 6. 3. 5. 9. 9.
2. 2. 5. 3. 3. 1. 4. 3. 3. 7. 2. 8. 2. 1. 5. 5. 6. 9.
2. 1. 3. 2. 9. 6. 8. 3. 4. 7. 5. 1. 3. 3. 2. 7. 1. 2.
3. 7. 1. 9. 3. 8. 1. 7. 3. 1. 7. 4. 5. 3. 6. 1. 9. 3.
7. 8. 6. 3. 2. 4. 2. 6. 9. 1. 9. 7. 7. 5. 1. 2. 4. 8.
8. 3. 1. 6. 5. 1. 8. 5. 1. 9. 7. 8. 6. 7. 1. 4. 7. 8.
7. 8. 9. 1. 8. 7. 2. 7. 6. 4. 2. 2. 3. 7. 9. 8. 3. 7.
9. 4. 4. 7. 1. 9. 6. 2. 7. 6. 1. 3. 6. 3. 5. 7. 3. 9.
6. 7. 6. 9. 1. 4. 7. 5. 2. 1. 3. 8. 8. 2. 8. 2. 3. 1.
4. 3. 1. 7. 2. 8. 4. 4. 1. 6. 4. 2. 7. 7. 5. 9. 2. 2.
8. 1. 9. 9. 3. 6. 6. 1. 1. 8. 4. 7. 1. 4. 6. 7. 3. 3.
6. 8. 3. 2. 7. 4. 3. 6. 2. 9. 3. 1. 7. 1. 9. 9. 6. 4.
2. 7. 5. 9. 6. 1. 7. 1. 6. 7. 7. 1. 1. 1. 8. 5. 8. 9.
5. 6. 4. 3. 7. 8. 4. 6. 5. 4. 2. 7. 5. 7. 5. 7. 5. 5.
8. 7. 2. 2. 2. 7. 8. 7. 1. 4. 2. 8. 9. 3. 3. 3. 8. 2.
5. 6. 2. 4. 2. 7. 6. 2. 3. 5. 6. 7. 4. 4. 2. 8. 1. 7.
7. 5. 8. 8. 5. 6. 7. 6. 9. 3. 2. 2. 9. 4. 3. 1. 4. 9.
9. 1. 6. 6. 7. 5. 9. 4. 8. 4. 1. 1. 4. 1. 3. 2. 1. 7.
7. 1. 4. 2. 7. 4. 6. 8. 3. 3. 7. 8. 2. 6. 4. 9. 5. 9.
3. 7. 1. 5. 2. 1. 4. 2. 6. 7. 1. 4. 3. 8. 3. 4. 1. 4.
7. 2. 5. 9. 2. 3. 6. 3. 6. 2. 5. 1. 5. 1. 5. 8. 3. 1.
1. 8. 2. 8. 8. 8. 8. 8. 3. 7. 2. 1. 1. 8. 4. 1. 6. 9.
9. 4. 1. 9. 6. 1. 7. 6. 6. 9. 5. 3. 8. 4. 6. 1. 6. 9.
5. 3. 6. 6. 6. 6. 6. 5. 6. 6. 8. 1. 7. 7. 8. 1. 2. 3.
3. 9. 4. 2. 2. 6. 1. 1. 5. 1. 6. 7. 3. 2. 3. 9. 5. 9.
3. 3. 2. 5. 8. 2. 2. 1. 6. 5. 4. 2. 8. 2. 9. 4. 9. 1.
7. 2. 5. 9. 3. 5. 7. 4. 3. 8. 6. 9. 9. 4. 7. 5. 2. 3.
9. 7. 1. 2. 1. 6. 2. 2. 4. 2. 8. 6. 2. 1. 7. 5. 1. 9.
3. 2. 4. 5. 4. 8. 7. 6. 6. 8. 6. 1. 2. 5. 9. 1. 2. 8.
2. 9. 2. 9. 6. 1. 3. 8. 1. 7. 6. 4. 4. 2. 4. 3. 1. 4.
4. 5. 8. 5. 6. 9. 2. 3. 4. 5. 6. 8. 2. 6. 2. 6. 6. 9.
3. 2. 1. 2. 6. 4. 8. 1. 2. 4. 5. 4. 6. 8. 9. 2. 5. 4.
1. 5. 6. 6. 3. 7. 7. 9. 9. 4. 1. 4. 7. 8. 3. 3. 2. 9.
2. 6. 5. 1. 1. 1. 6. 5. 4. 6. 7. 2. 9. 8. 4. 9. 9. 4.
2. 4. 7. 2. 3. 6. 5. 1. 6. 4. 9. 6. 4. 6. 3. 3. 9. 9.
6. 3. 9. 2. 3. 5. 1. 8. 1. 6. 2. 7. 2. 6. 3. 2. 7. 2.
2. 8. 1. 7. 5. 6. 9. 9. 7. 3. 7. 1. 6. 5. 2. 5. 4. 9.
4. 2. 5. 8. 5. 4. 7. 3. 5. 5. 2. 3. 4. 7. 7. 1. 2. 3.
9. 6. 2. 4. 7. 5. 9. 5. 9. 8. 7. 7. 2. 5. 7. 4. 6. 3.
3. 5. 6. 6. 2. 8. 4. 8. 3. 9. 2. 8. 3. 7. 3. 1. 7. 9.
9. 8. 1. 5. 6. 8. 8. 1. 8. 1. 7. 1. 5. 9. 5. 8. 6. 2.
3. 4. 3. 5. 6. 7. 3. 1. 4. 5. 3. 8. 7. 7. 4. 5. 1. 6.
7. 5. 5. 1. 2. 8. 9. 3. 3. 2. 3. 1. 4. 9. 1. 2. 8. 6.
6. 6. 3. 9. 4. 7. 4. 9. 5. 6. 1. 1. 4. 5. 3. 6. 5. 7.
3. 1. 7. 8. 3. 7. 8. 9. 5. 5. 7. 3. 1. 8. 8. 6. 2. 5.
9. 2. 7. 8. 1. 8. 6. 7. 8. 7. 1. 9. 1. 3. 6. 6. 4. 3.
4. 1. 9. 8. 6. 4. 5. 8. 1. 5. 7. 8. 6. 9. 7. 9. 4. 4.
1. 7. 9. 8. 8. 2. 5. 3. 6. 6. 5. 4. 7. 2. 5. 2. 1. 6.
2. 5. 9. 9. 6. 1. 1. 3. 7. 8. 5. 9. 4. 4. 3. 4. 3. 1.
8. 4. 7. 9. 9. 2. 4. 8. 3. 9. 8. 3. 2. 3. 8. 4. 2. 1.
5. 1. 4. 9. 9. 2. 6. 8. 5. 2. 1. 5. 3. 3. 3. 1. 1. 5.
2. 9. 6. 2. 1. 7. 4. 1. 8. 1. 2. 1. 2. 3. 2. 4. 4. 3.
8. 1. 7. 3. 5. 2. 1. 8. 5. 2. 2. 9. 7. 9. 1. 7. 9. 2.
1. 1. 6. 1. 6. 6. 9. 3. 9. 1. 1. 1. 2. 4. 4. 4. 5. 4.
8. 7. 9. 2. 9. 8. 3. 7. 8. 2. 6. 3. 3. 9. 6. 7. 6. 3.
9. 9. 3. 4. 6. 8. 4. 7. 4. 7. 8. 2. 3. 8. 8. 7. 9. 4.
2. 1. 2. 4. 3. 2. 7. 4. 2. 6. 5. 5. 3. 9. 8. 8. 6. 4.
6. 8. 2. 9. 6. 5. 3. 3. 8. 8. 5. 8. 2. 9. 1. 6. 1. 6.
6. 8. 4. 3. 4. 8. 6. 8. 2. 5. 7. 3. 8. 7. 6. 1. 7. 4.
9. 7. 7. 9. 8. 4. 9. 4. 8. 9. 5. 6. 4. 6. 2. 8. 7. 6.
6. 3. 8. 6. 2. 4. 6. 9. 1. 6. 3. 7. 9. 2. 2. 4. 6. 1.
4. 5. 7. 7. 2. 3. 8. 6. 2. 7. 1. 1. 7. 7. 9. 7. 4. 4.
2. 7. 1. 8. 7. 8. 1. 4. 1. 6. 7. 9. 8. 9. 8. 9. 3. 7.
3. 5. 2. 4. 8. 3. 1. 5. 2. 5. 2. 1. 2. 3. 5. 9. 7. 4.
7. 1. 7. 8. 6. 5. 7. 7. 6. 7. 6. 7. 9. 4. 9. 6. 6. 4.
2. 1. 8. 2. 1. 2. 6. 1. 5. 2. 2. 4. 8. 8. 5. 1. 8. 6.
7. 2. 3. 7. 7. 6. 1. 5. 6. 8. 2. 9. 9. 1. 5. 4. 3. 2.
7. 5. 8. 3. 9. 4. 5. 7. 3. 5. 7. 7. 1. 8. 9. 2. 6. 4.
2. 6. 3. 2. 6. 7. 1. 4. 1. 2. 4. 9. 7. 7. 4. 7. 6. 1.
1. 7. 8. 8. 2. 5. 6. 8. 5. 3. 5. 1. 1. 6. 8. 6. 5. 8.
9. 3. 1. 5. 5. 6. 9. 9. 3. 3. 6. 2. 8. 3. 5. 9. 2. 7.
7. 2. 1. 3. 7. 1. 8. 3. 4. 6. 9. 8. 5. 4. 7. 8. 7. 6.
1. 8. 5. 3. 1. 8. 1. 9. 7. 7. 5. 9. 1. 5. 6. 6. 1. 4.
6. 7. 1. 1. 3. 1. 2. 7. 1. 7. 7. 4. 7. 5. 5. 2. 8. 4.
7. 6. 3. 2. 7. 1. 4. 8. 2. 1. 3. 8. 4. 7. 4. 3. 1. 2.
7. 9. 9. 8. 1. 9. 7. 6. 2. 2. 9. 8. 2. 2. 6. 4. 7. 9.
2. 1. 1. 7. 1. 8. 7. 8. 9. 7. 1. 4. 4. 4. 4. 4. 3. 3.
4. 6. 8. 3. 1. 7. 3. 8. 4. 5. 4. 2. 6. 5. 1. 1. 8. 5.
8. 5. 2. 4. 1. 3. 7. 7. 6. 9. 3. 7. 9. 5. 2. 6. 6. 9.
8. 3. 2. 8. 5. 5.
# What is your estimate of your best classifier's accuracy? (only your final answer)
CHALLENGE_BESTCLASSIFIER_ACCURACY_MEAN: 0.964825
# What ML algorithm did you use for your best classifier? (Just a short name)
# (e.g., ID3 decision tree, SVM with Gaussian kernel, Boosted decision tree, etc.)
CHALLENGE_BESTCLASSIFIER_NAME: Random Forest
# Copy and paste your brief paragraph describing your best classifier below
CHALLENGE_BESTCLASSIFIER_DESCRIPTION:
For this challenge, I chose to train the following ML classifier…because of the Random Forest classifier is simple, yet highly effective and accurate. It does not require pruning, and yet avoids the overfitting problem by achieving diversity amongst the various trees it generates through bootstrap sampling and splitting on a small subset of features at each node, at random. The optimal parameters include how many trees to aggregate, number of features to randomly subset at each node, the option of enabling bootstrap sampling, and calculating estimates of accuracy on out-of-sample data with out-of-bootstrap data. I enabled the model to include bootstrap sampling, set the number of features to randomly subset at each split equal to the square root of the total number of features in the data, set the number of jobs to run in parallel equal to the number of cores, ran the classifier through 100 iterations on 10, 100, 1000, and 10000 trees, computed their respective out-of-bootstrap accuracy on each iteration, and averaged the out-of-bootstrap accuracies of each of the classifiers (10, 100, 1000, and 10000). I chose the 100-tree Random Forest because (a) increasing the number of trees showed minimal gain in out-of-bootstrap accuracy and (b) after 100 trees, the run-time starts increasing, so the 100-tree Random Forest maximizes out-of-bootstrap accuracy while minimizing run-time cost.
#######################################################################################
# Feedback on the Assignment (OPTIONAL)
#
# The following information will help us improve future versions of this assignment.
# It is completely optional, but highly appreciated. Please be honest.
#######################################################################################
# Approximately how many hours did it take you to complete this assignment?
FEEDBACK_NUM_HOURS: 72
# Please list any typos / errors you noticed in the assignment description or skeleton code
FEEDBACK_ERRORS: |
None
# Please describe any problems you encountered while completing this assignment
FEEDBACK_PROBLEMS: |
None