-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview_log.txt
More file actions
8902 lines (6360 loc) · 230 KB
/
Copy pathreview_log.txt
File metadata and controls
8902 lines (6360 loc) · 230 KB
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Block 1 | Flags: SCRIPT_MISMATCH (0.26)
Match Ratio: 0.26
Original: You. You.
Best Script Match: Congratulations, Class of 2025-and thank you.
Final: [?] You. You.
Block 2 | Flags: SCRIPT_MISMATCH (0.47)
Match Ratio: 0.47
Original: Put those.
Best Script Match: (pause)
Final: [?] Put those.
Block 3 | Flags: SCRIPT_MISMATCH (0.35)
Match Ratio: 0.35
Original: On the.
Best Script Match: Samantha Preuss:
Final: [?] On the.
Block 4 | Flags: SCRIPT_MISMATCH (0.30)
Match Ratio: 0.30
Original: Right.
Best Script Match: GENERAL SCRIPT
Final: [?] Right.
Block 5 | Flags: SCRIPT_MISMATCH (0.26)
Match Ratio: 0.26
Original: You. You.
Best Script Match: Congratulations, Class of 2025-and thank you.
Final: [?] You. You.
Block 6 | Flags: SCRIPT_MISMATCH (0.24)
Match Ratio: 0.24
Original: Know. You.
Best Script Match: Land Acknowledgement Statement ... Melissa Burt
Final: [?] Know. You.
Block 7 | Flags: SCRIPT_MISMATCH (0.11)
Match Ratio: 0.11
Original: All right.
Best Script Match: WALTER SCOTT, JR.
Final: [?] All right.
Block 8 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: Good morning.
Best Script Match: COLLEGE OF ENGINEERING
Final: [?] Good morning.
Block 9 | Flags: SCRIPT_MISMATCH (0.33)
Match Ratio: 0.33
Original: Okay, again.
Best Script Match: MOBY ARENA
Final: [?] Okay, again.
Block 10 | Flags: SCRIPT_MISMATCH (0.11)
Match Ratio: 0.11
Original: Let's do it again.
Best Script Match: WALTER SCOTT, JR.
Final: [?] Let's do it again.
Block 11 | Flags: SCRIPT_MISMATCH (0.33)
Match Ratio: 0.33
Original: Good morning. Good morning.
Best Script Match: [Puttlitz moves to podium.]
Final: [?] Good morning. Good morning.
Block 12 | Flags: SCRIPT_MISMATCH (0.11)
Match Ratio: 0.11
Original: All right.
Best Script Match: WALTER SCOTT, JR.
Final: [?] All right.
Block 13 | Flags: SCRIPT_MISMATCH (0.52)
Match Ratio: 0.52
Original: My name is Melissa Bird, and I'm the associate dean
Best Script Match: * Dr. Melissa Burt, Associate Dean for Access and Success
Final: [?] My name is Melissa Bird, and I'm the associate dean
Block 14 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: for accessing success on behalf of Colorado State University.
Best Script Match: Processional ... Recorded Music
Final: [?] for accessing success on behalf of Colorado State University.
Block 15 | Flags: SCRIPT_MISMATCH (0.50)
Match Ratio: 0.50
Original: I welcome you to this recognition ceremony for the spring 2025
Best Script Match: 8:00 A.M. RECOGNITION CEREMONY
Final: [?] I welcome you to this recognition ceremony for the spring 2025
Block 16 | Flags: SCRIPT_MISMATCH (0.68)
Match Ratio: 0.68
Original: Walter Scott Junior College of Engineering.
Best Script Match: * Dr. Allen Robinson, Dean, Walter Scott, Jr. College of Engineering
Final: [?] Walter Scott Junior College of Engineering.
Block 17 | Flags: SCRIPT_MISMATCH (0.44)
Match Ratio: 0.44
Original: At various times during the program.
Best Script Match: * Dr. Matt Kipper, Associate Dean for Graduate Programs
Final: [?] At various times during the program.
Block 18 | Flags: SCRIPT_MISMATCH (0.67)
Match Ratio: 0.67
Original: We may ask members of the graduating class or the audience to stand.
Best Script Match: At various times during the program, we may ask members of the graduating class or the audience to stand. Please do so as you are able.
Final: [?] We may ask members of the graduating class or the audience to stand.
Block 19 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: Please do so as you are able.
Best Script Match: [Peebles returns to seat, Chong moves to mark.]
Final: [?] Please do so as you are able.
Block 22 | Flags: SCRIPT_MISMATCH (0.36)
Match Ratio: 0.36
Original: Colorado State
Best Script Match: Christian Puttlitz:
Final: [?] Colorado State
Block 23 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: University acknowledges with respect
Best Script Match: Recognition of University Honors Scholars ... Sam Bechara
Final: [?] University acknowledges with respect
Block 24 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: that the land we are on today is a traditional, ancestral
Best Script Match: These Scholar candidates are wearing green regalia and those with gold cords are also candidates for graduation with Latin distinction.
Final: [?] that the land we are on today is a traditional, ancestral
Block 25 | Flags: SCRIPT_MISMATCH (0.45)
Match Ratio: 0.45
Original: homelands of the Arapaho, Cheyenne and nations and people.
Best Script Match: At the end of the day, I truly believe that empathy and curiosity are all we need to begin solving problems.
Final: [?] homelands of the Arapaho, Cheyenne and nations and people.
Block 26 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: This was also a site of trade
Best Script Match: * Dr. Matt Kipper, Associate Dean for Graduate Programs
Final: [?] This was also a site of trade
Block 27 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: gathering and healing for numerous other native tribes.
Best Script Match: * Mark Ritschard, Assistant Dean for Operations
Final: [?] gathering and healing for numerous other native tribes.
Block 28 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: We recognize the indigenous peoples
Best Script Match: Recognition of First Generation Graduates ... Sam Bechara
Final: [?] We recognize the indigenous peoples
Block 29 | Flags: SCRIPT_MISMATCH (0.41)
Match Ratio: 0.41
Original: as original stewards of this land and all the relatives within it.
Best Script Match: She won an Outstanding Service Award this year from the School of Biomedical Engineering.
Final: [?] as original stewards of this land and all the relatives within it.
Block 30 | Flags: SCRIPT_MISMATCH (0.51)
Match Ratio: 0.51
Original: As these words of acknowledgment are spoken and heard.
Best Script Match: Land Acknowledgement Statement ... Melissa Burt
Final: [?] As these words of acknowledgment are spoken and heard.
Block 31 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: The ties nations have to their traditional homelands
Best Script Match: SBME Masters Diploma Distribution ... Seth Dillard
Final: [?] The ties nations have to their traditional homelands
Block 32 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: are renewed and reaffirmed.
Best Script Match: TURN PAGE FOR NEXT SPEAKER
Final: [?] are renewed and reaffirmed.
Block 33 | Flags: SCRIPT_MISMATCH (0.35)
Match Ratio: 0.35
Original: CSU is founded as a land grant institution,
Best Script Match: That concludes our awarding of diplomas for the Department of Chemical and Biological Engineering.
Final: [?] CSU is founded as a land grant institution,
Block 34 | Flags: SCRIPT_MISMATCH (0.41)
Match Ratio: 0.41
Original: and we accept that our mission must encompass access to education
Best Script Match: * Dr. Melissa Burt, Associate Dean for Access and Success
Final: [?] and we accept that our mission must encompass access to education
Block 35 | Flags: SCRIPT_MISMATCH (0.35)
Match Ratio: 0.35
Original: and inclusion and significantly, that our founding came at a dire cost
Best Script Match: Honors scholars, please stand as a group and be recognized for your amazing accomplishments!
Final: [?] and inclusion and significantly, that our founding came at a dire cost
Block 36 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: to native nations and peoples whose land this university was built upon.
Best Script Match: Congratulations, Class of 2025-and thank you.
Final: [?] to native nations and peoples whose land this university was built upon.
Block 37 | Flags: SCRIPT_MISMATCH (0.44)
Match Ratio: 0.44
Original: This acknowledgment is the education and inclusion we must practice
Best Script Match: [Puttlitz returns to seat and Robinson moves to podium.]
Final: [?] This acknowledgment is the education and inclusion we must practice
Block 38 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: in recognizing our institutional history, responsibility
Best Script Match: 8:00 A.M. RECOGNITION CEREMONY
Final: [?] in recognizing our institutional history, responsibility
Block 39 | Flags: SCRIPT_MISMATCH (0.44)
Match Ratio: 0.44
Original: and commitment.
Best Script Match: WALTER SCOTT, JR.
Final: [?] and commitment.
Block 40 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: So, yeah, you guys may be seated.
Best Script Match: You may be seated. Would the College staff please stand?
Final: [?] So, yeah, you guys may be seated.
Block 41 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: So. Good morning.
Best Script Match: Processional ... Recorded Music
Final: [?] So. Good morning.
Block 42 | Flags: SCRIPT_MISMATCH (0.48)
Match Ratio: 0.48
Original: My name is Sam Bishara, and I am the associate dean
Best Script Match: * Dr. Melissa Burt, Associate Dean for Access and Success
Final: [?] My name is Sam Bishara, and I am the associate dean
Block 43 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: for undergraduate affairs.
Best Script Match: Recognition of First Generation Graduates ... Sam Bechara
Final: [?] for undergraduate affairs.
Block 44 | Flags: SCRIPT_MISMATCH (0.44)
Match Ratio: 0.44
Original: I'd like to introduce those on the stage today.
Best Script Match: Introduction of Student Speaker ... Seth Dillard
Final: [?] I'd like to introduce those on the stage today.
Block 45 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: Would each of you stand briefly?
Best Script Match: COLLEGE OF ENGINEERING
Final: [?] Would each of you stand briefly?
Block 46 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: When I call your name,
Best Script Match: TURN PAGE FOR NEXT SPEAKER
Final: [?] When I call your name,
Block 47 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: I would like to ask that we hold any applause until all names are called.
Best Script Match: Good morning. My name is Sam Bechara, and I am the Associate Dean for Undergraduate Affairs. I would like to introduce those on the stage today. Would each of you stand briefly when I call your name? I would like to ask that we hold any applause until all names are called.
Final: [?] I would like to ask that we hold any applause until all names are called.
Block 53 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: Doctor Christy
Best Script Match: Christie Peebles:
Final: [?] Doctor Christy
Block 56 | Flags: SCRIPT_MISMATCH (0.41)
Match Ratio: 0.41
Original: Speaker.
Best Script Match: TURN PAGE FOR NEXT SPEAKER
Final: [?] Speaker.
Block 60 | Flags: SCRIPT_MISMATCH (0.69)
Match Ratio: 0.69
Original: And doctor Alan Robinson, dean of the Walter Scott Junior College
Best Script Match: * Dr. Allen Robinson, Dean, Walter Scott, Jr. College of Engineering
Final: [?] And doctor Alan Robinson, dean of the Walter Scott Junior College
Block 62 | Flags: SCRIPT_MISMATCH (0.64)
Match Ratio: 0.64
Original: I now like to recognize our first generation graduates,
Best Script Match: Recognition of First Generation Graduates ... Sam Bechara
Final: [?] I now like to recognize our first generation graduates,
Block 63 | Flags: SCRIPT_MISMATCH (0.69)
Match Ratio: 0.69
Original: along with those who are graduating with honors or distinction.
Best Script Match: I'd now like to recognize our First Generation graduates along with those who are graduating with honors or distinction.
Final: [?] along with those who are graduating with honors or distinction.
Block 64 | Flags: SCRIPT_MISMATCH (0.44)
Match Ratio: 0.44
Original: As a land grant institution, Colorado State University takes
Best Script Match: CBE Masters Diploma Distribution ... Christie Peebles
Final: [?] As a land grant institution, Colorado State University takes
Block 65 | Flags: SCRIPT_MISMATCH (0.48)
Match Ratio: 0.48
Original: special pride in our role in providing access and educating students
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] special pride in our role in providing access and educating students
Block 66 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: who are the first in their family to earn a university degree.
Best Script Match: We will now award diplomas individually to the undergraduates from the department of Mechanical Engineering.
Final: [?] who are the first in their family to earn a university degree.
Block 67 | Flags: SCRIPT_MISMATCH (0.45)
Match Ratio: 0.45
Original: This semester, 66 of our students who are earning their degrees today
Best Script Match: Thank you to our student speaker Samantha!
Final: [?] This semester, 66 of our students who are earning their degrees today
Block 69 | Flags: SCRIPT_MISMATCH (0.62)
Match Ratio: 0.62
Original: are the first generation college graduates.
Best Script Match: Recognition of First Generation Graduates ... Sam Bechara
Final: [?] are the first generation college graduates.
Block 70 | Flags: SCRIPT_MISMATCH (0.47)
Match Ratio: 0.47
Original: Some of these graduates may be wearing a special stool
Best Script Match: Recognition of First Generation Graduates ... Sam Bechara
Final: [?] Some of these graduates may be wearing a special stool
Block 71 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: or a medallion with an orange ribbon.
Best Script Match: * Dr. Allen Robinson, Dean, Walter Scott, Jr. College of Engineering
Final: [?] or a medallion with an orange ribbon.
Block 72 | Flags: SCRIPT_MISMATCH (0.47)
Match Ratio: 0.47
Original: I ask that all of our graduates, who are first generation, to please stand
Best Script Match: Intro of Graduate Recognition... Christie Peebles
Final: [?] I ask that all of our graduates, who are first generation, to please stand
Block 73 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: and be recognized.
Best Script Match: Introduction of CBE Recognition ... Brett Beal
Final: [?] and be recognized.
Block 74 | Flags: SCRIPT_MISMATCH (0.52)
Match Ratio: 0.52
Original: Congratulations.
Best Script Match: Congratulations, Class of 2025-and thank you.
Final: [?] Congratulations.
Block 75 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: It is also my pleasure to recognize
Best Script Match: [Christie Peebles moves to mark]
Final: [?] It is also my pleasure to recognize
Block 76 | Flags: SCRIPT_MISMATCH (0.49)
Match Ratio: 0.49
Original: students who are graduating with distinctions and honors.
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] students who are graduating with distinctions and honors.
Block 77 | Flags: SCRIPT_MISMATCH (0.57)
Match Ratio: 0.57
Original: The candidates for University Honors Scholar
Best Script Match: Recognition of University Honors Scholars ... Sam Bechara
Final: [?] The candidates for University Honors Scholar
Block 78 | Flags: SCRIPT_MISMATCH (0.36)
Match Ratio: 0.36
Original: must complete a program of academic excellence which includes honors seminars,
Best Script Match: Let us know of your accomplishments. We look forward to seeing you at reunions, homecoming, and E-days.
Final: [?] must complete a program of academic excellence which includes honors seminars,
Block 79 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: honors courses in their major, and a senior honors thesis
Best Script Match: * Dr. Christie Peebles, Interim Department Head, Chemical and Biological Engineering
Final: [?] honors courses in their major, and a senior honors thesis
Block 80 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: while achieving at least a 3.5 cumulative grade point average.
Best Script Match: I'd also like to acknowledge our students graduating with highest distinction based upon their cumulative grade point average. These graduates may be wearing gold bachelor's regalia.
Final: [?] while achieving at least a 3.5 cumulative grade point average.
Block 82 | Flags: SCRIPT_MISMATCH (0.60)
Match Ratio: 0.60
Original: are also candidates for graduation with Latin distinction.
Best Script Match: These Scholar candidates are wearing green regalia and those with gold cords are also candidates for graduation with Latin distinction.
Final: [?] are also candidates for graduation with Latin distinction.
Block 83 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: Honors. Scholars.
Best Script Match: Introductions... Sam Bechara
Final: [?] Honors. Scholars.
Block 85 | Flags: SCRIPT_MISMATCH (0.47)
Match Ratio: 0.47
Original: I'd also like to acknowledge our students graduating
Best Script Match: Thank you to our student speaker Samantha!
Final: [?] I'd also like to acknowledge our students graduating
Block 86 | Flags: SCRIPT_MISMATCH (0.56)
Match Ratio: 0.56
Original: with highest distinction based upon their cumulative grade point average.
Best Script Match: I'd also like to acknowledge our students graduating with highest distinction based upon their cumulative grade point average. These graduates may be wearing gold bachelor's regalia.
Final: [?] with highest distinction based upon their cumulative grade point average.
Block 87 | Flags: SCRIPT_MISMATCH (0.46)
Match Ratio: 0.46
Original: These graduates may be wearing gold bachelor's regalia.
Best Script Match: I'd also like to acknowledge our students graduating with highest distinction based upon their cumulative grade point average. These graduates may be wearing gold bachelor's regalia.
Final: [?] These graduates may be wearing gold bachelor's regalia.
Block 88 | Flags: SCRIPT_MISMATCH (0.47)
Match Ratio: 0.47
Original: Summa cum laude graduates are the top 1% of their class.
Best Script Match: Summa cum laude graduates are the top 1% of the class; magna cum laude graduates are the next 3% of the class and cum laude graduates are the next 6% of the class.
Final: [?] Summa cum laude graduates are the top 1% of their class.
Block 89 | Flags: SCRIPT_MISMATCH (0.48)
Match Ratio: 0.48
Original: Magna cum laude graduates are the next 3% of the class,
Best Script Match: Summa cum laude graduates are the top 1% of the class; magna cum laude graduates are the next 3% of the class and cum laude graduates are the next 6% of the class.
Final: [?] Magna cum laude graduates are the next 3% of the class,
Block 90 | Flags: SCRIPT_MISMATCH (0.50)
Match Ratio: 0.50
Original: and the cum laude graduates are the next 6% of the class.
Best Script Match: Summa cum laude graduates are the top 1% of the class; magna cum laude graduates are the next 3% of the class and cum laude graduates are the next 6% of the class.
Final: [?] and the cum laude graduates are the next 6% of the class.
Block 91 | Flags: SCRIPT_MISMATCH (0.56)
Match Ratio: 0.56
Original: While those students earning
Best Script Match: IF WE HAVE DOCTORAL STUDENTS PARTICIPATING]
Final: [?] While those students earning
Block 93 | Flags: SCRIPT_MISMATCH (0.67)
Match Ratio: 0.67
Original: Congratulations to all of you.
Best Script Match: Congratulations, Class of 2025-and thank you.
Final: [?] Congratulations to all of you.
Block 95 | Flags: SCRIPT_MISMATCH (0.55)
Match Ratio: 0.55
Original: our graduating speaker. Sam.
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] our graduating speaker. Sam.
Block 96 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: Martin Ramos.
Best Script Match: MOBY ARENA
Final: [?] Martin Ramos.
Block 97 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: What I learned who our.
Best Script Match: Seth Dillard:
Final: [?] What I learned who our.
Block 98 | Flags: SCRIPT_MISMATCH (0.50)
Match Ratio: 0.50
Original: Undergraduate commencement speaker would be this year.
Best Script Match: Introduction of Student Speaker ... Seth Dillard
Final: [?] Undergraduate commencement speaker would be this year.
Block 99 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: I was both thrilled and completely unsurprised,
Best Script Match: * Dr. Kenneth Reardon, Associate Dean for Research
Final: [?] I was both thrilled and completely unsurprised,
Block 100 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: because spotting your excellence is pretty easy
Best Script Match: Introduction of ECE Recognition ... Brett Beal
Final: [?] because spotting your excellence is pretty easy
Block 101 | Flags: SCRIPT_MISMATCH (0.41)
Match Ratio: 0.41
Original: when you've been in the game for as long as I have.
Best Script Match: You may be seated. Would the College staff please stand?
Final: [?] when you've been in the game for as long as I have.
Block 102 | Flags: SCRIPT_MISMATCH (0.49)
Match Ratio: 0.49
Original: Today, our speaker is graduating cum laude
Best Script Match: Thank you to our student speaker Samantha!
Final: [?] Today, our speaker is graduating cum laude
Block 103 | Flags: SCRIPT_MISMATCH (0.57)
Match Ratio: 0.57
Original: with dual degrees in biomedical engineering and mechanical engineering.
Best Script Match: Today, our speaker is graduating Cum Laude with dual degrees in Biomedical Engineering and Mechanical Engineering. Here list of accomplishments is impressive; here are just a few:
Final: [?] with dual degrees in biomedical engineering and mechanical engineering.
Block 104 | Flags: SCRIPT_MISMATCH (0.41)
Match Ratio: 0.41
Original: Her list of accomplishments is impressive.
Best Script Match: Let us know of your accomplishments. We look forward to seeing you at reunions, homecoming, and E-days.
Final: [?] Her list of accomplishments is impressive.
Block 105 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: Here are just a couple.
Best Script Match: There are so many inspiring CSU Engineering alumni. Here are just a few examples:
Final: [?] Here are just a couple.
Block 106 | Flags: SCRIPT_MISMATCH (0.68)
Match Ratio: 0.68
Original: She won an Outstanding Service award this year
Best Script Match: She won an Outstanding Service Award this year from the School of Biomedical Engineering.
Final: [?] She won an Outstanding Service award this year
Block 107 | Flags: SCRIPT_MISMATCH (0.67)
Match Ratio: 0.67
Original: from the School of Biomedical Engineering.
Best Script Match: That concludes our awarding of diplomas for the School of Biomedical Engineering.
Final: [?] from the School of Biomedical Engineering.
Block 108 | Flags: SCRIPT_MISMATCH (0.62)
Match Ratio: 0.62
Original: She completed two senior capstone projects, one on hydrogen refueling
Best Script Match: She completed two senior capstone projects - one on hydrogen refueling stations and one on menstrual hygiene solutions developed from corn husk fibers.
Final: [?] She completed two senior capstone projects, one on hydrogen refueling
Block 109 | Flags: SCRIPT_MISMATCH (0.68)
Match Ratio: 0.68
Original: stations and one on menstrual hygiene solutions developed for corn husk fibers.
Best Script Match: She completed two senior capstone projects - one on hydrogen refueling stations and one on menstrual hygiene solutions developed from corn husk fibers.
Final: [?] stations and one on menstrual hygiene solutions developed for corn husk fibers.
Block 110 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: After graduation, she plans to continue on in CSU's
Best Script Match: Introduction of SBME Recognition ... Brett Beal
Final: [?] After graduation, she plans to continue on in CSU's
Block 111 | Flags: SCRIPT_MISMATCH (0.57)
Match Ratio: 0.57
Original: Mechanical Engineering graduate program at the powerhouse, developing hydrogen
Best Script Match: And after graduation, she plans to continue on in CSU's Mechanical Engineering graduate program at the Powerhouse developing hydrogen fuel technologies under the supervision of Dr. Bret Windom.
Final: [?] Mechanical Engineering graduate program at the powerhouse, developing hydrogen
Block 112 | Flags: SCRIPT_MISMATCH (0.44)
Match Ratio: 0.44
Original: fuel technologies under the supervision of Doctor Brett Windham.
Best Script Match: And after graduation, she plans to continue on in CSU's Mechanical Engineering graduate program at the Powerhouse developing hydrogen fuel technologies under the supervision of Dr. Bret Windom.
Final: [?] fuel technologies under the supervision of Doctor Brett Windham.
Block 114 | Flags: SCRIPT_MISMATCH (0.11)
Match Ratio: 0.11
Original: All right.
Best Script Match: WALTER SCOTT, JR.
Final: [?] All right.
Block 115 | Flags: SCRIPT_MISMATCH (0.36)
Match Ratio: 0.36
Original: Good morning, everybody.
Best Script Match: Introduction of MECH Recognition ... Emily Valerioti
Final: [?] Good morning, everybody.
Block 116 | Flags: SCRIPT_MISMATCH (0.52)
Match Ratio: 0.52
Original: Thank you all for being here bright and early.
Best Script Match: Thank you to our student speaker Samantha!
Final: [?] Thank you all for being here bright and early.
Block 117 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: Graduates, I hope you're alive, alert, awake and enthusiastic.
Best Script Match: Graduates, today represents an important milestone in your life. Much hard work and many long hours went into achieving this goal, and you should be proud of your accomplishments.
Final: [?] Graduates, I hope you're alive, alert, awake and enthusiastic.
Block 118 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: Or I guess at least one of those will do.
Best Script Match: [Puttlitz returns to seat and Robinson moves to podium.]
Final: [?] Or I guess at least one of those will do.
Block 119 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: The past five years, I've been cold called
Best Script Match: She won an Outstanding Service Award this year from the School of Biomedical Engineering.
Final: [?] The past five years, I've been cold called
Block 120 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: by a number of professors, one of them being Doctor Sam Bashara here on stage.
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] by a number of professors, one of them being Doctor Sam Bashara here on stage.
Block 121 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: The more many of you who have taken his class probably
Best Script Match: Thank you to our student speaker Samantha!
Final: [?] The more many of you who have taken his class probably
Block 122 | Flags: SCRIPT_MISMATCH (0.45)
Match Ratio: 0.45
Original: remember the random student caller.
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] remember the random student caller.
Block 123 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: There's nothing like it.
Best Script Match: WALTER SCOTT, JR.
Final: [?] There's nothing like it.
Block 124 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: Adrenaline, heart pumping.
Best Script Match: COLLEGE OF ENGINEERING
Final: [?] Adrenaline, heart pumping.
Block 125 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: And I wouldn't want to leave these graduates
Best Script Match: [Melissa Burt returns to seat; Sam Bechara moves to the podium]
Final: [?] And I wouldn't want to leave these graduates
Block 126 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: without one more chance to experience that.
Best Script Match: [Dillard returns to seat, Peebles moves to mark.]
Final: [?] without one more chance to experience that.
Block 127 | Flags: SCRIPT_MISMATCH (0.36)
Match Ratio: 0.36
Original: So I'm going to cold call a couple people with a couple of questions.
Best Script Match: I'd now like to recognize our First Generation graduates along with those who are graduating with honors or distinction.
Final: [?] So I'm going to cold call a couple people with a couple of questions.
Block 128 | Flags: SCRIPT_MISMATCH (0.36)
Match Ratio: 0.36
Original: They're easy. Don't worry.
Best Script Match: [Peebles returns to seat, Chong moves to mark.]
Final: [?] They're easy. Don't worry.
Block 129 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: Let's see.
Best Script Match: Brett Beal:
Final: [?] Let's see.
Block 130 | Flags: SCRIPT_MISMATCH (0.34)
Match Ratio: 0.34
Original: I know a lot of you.
Best Script Match: [Puttlitz returns to seat and Robinson moves to podium.]
Final: [?] I know a lot of you.
Block 131 | Flags: SCRIPT_MISMATCH (0.33)
Match Ratio: 0.33
Original: So I want to pick somebody good.
Best Script Match: WALTER SCOTT, JR.
Final: [?] So I want to pick somebody good.
Block 132 | Flags: SCRIPT_MISMATCH (0.34)
Match Ratio: 0.34
Original: Olivia Pike, are you back there?
Best Script Match: * Dr. Melissa Burt, Associate Dean for Access and Success
Final: [?] Olivia Pike, are you back there?
Block 133 | Flags: SCRIPT_MISMATCH (0.34)
Match Ratio: 0.34
Original: Do you stand up?
Best Script Match: Christian Puttlitz:
Final: [?] Do you stand up?
Block 134 | Flags: SCRIPT_MISMATCH (0.34)
Match Ratio: 0.34
Original: What day is it today?
Best Script Match: IF WE HAVE DOCTORAL STUDENTS PARTICIPATING]
Final: [?] What day is it today?
Block 135 | Flags: SCRIPT_MISMATCH (0.26)
Match Ratio: 0.26
Original: Friday.
Best Script Match: Script - May 16, 2025 8:00 a.m.
Final: [?] Friday.
Block 136 | Flags: SCRIPT_MISMATCH (0.36)
Match Ratio: 0.36
Original: Okay. Next question.
Best Script Match: Introductions... Sam Bechara
Final: [?] Okay. Next question.
Block 137 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: Let's see.
Best Script Match: Brett Beal:
Final: [?] Let's see.
Block 138 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: Michael Zito, where is Michael Zito?
Best Script Match: [Dillard returns to seat, Peebles moves to mark.]
Final: [?] Michael Zito, where is Michael Zito?
Block 139 | Flags: SCRIPT_MISMATCH (0.33)
Match Ratio: 0.33
Original: Where are we right now?
Best Script Match: [CEREMONY ENDS - NO RECESSIONAL]
Final: [?] Where are we right now?
Block 141 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: Let's see. I have one more.
Best Script Match: [Dillard returns to seat, Chong moves to mark.]
Final: [?] Let's see. I have one more.
Block 142 | Flags: SCRIPT_MISMATCH (0.35)
Match Ratio: 0.35
Original: Let's make it good.
Best Script Match: [Puttlitz moves to podium.]
Final: [?] Let's make it good.
Block 143 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: It cannot be Jack Bixler, can you stand up?
Best Script Match: You may be seated. Would the College staff please stand?
Final: [?] It cannot be Jack Bixler, can you stand up?
Block 144 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: Jack, what are we going to do today?
Best Script Match: [Christie Peebles moves to mark]
Final: [?] Jack, what are we going to do today?
Block 145 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: We're graduating.
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] We're graduating.
Block 146 | Flags: SCRIPT_MISMATCH (0.32)
Match Ratio: 0.32
Original: Today.
Best Script Match: Seth Dillard:
Final: [?] Today.
Block 147 | Flags: SCRIPT_MISMATCH (0.34)
Match Ratio: 0.34
Original: I might have prepped the crowd, but that's okay.
Best Script Match: [Seth Dillard returns to seat; Samantha Preuss moves to the podium]
Final: [?] I might have prepped the crowd, but that's okay.
Block 148 | Flags: SCRIPT_MISMATCH (0.46)
Match Ratio: 0.46
Original: Thank you all for being here to celebrate your graduates.
Best Script Match: Recognition of First Generation Graduates ... Sam Bechara
Final: [?] Thank you all for being here to celebrate your graduates.
Block 149 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: You guys have spent so much time and energy and money
Best Script Match: That concludes our awarding of diplomas for the Department of Chemical and Biological Engineering.
Final: [?] You guys have spent so much time and energy and money
Block 150 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: poured into these students to get them to where they are today.
Best Script Match: Before we begin the ceremony, I'd like to read the land acknowledgement statement.
Final: [?] poured into these students to get them to where they are today.
Block 151 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: We all know that it took every person in this room to get to where we are.
Best Script Match: We will now award diplomas individually to the undergraduates from the department of Mechanical Engineering.
Final: [?] We all know that it took every person in this room to get to where we are.
Block 152 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: At the end of this chapter of my time at CSU.
Best Script Match: At the end of the day, I truly believe that empathy and curiosity are all we need to begin solving problems.
Final: [?] At the end of this chapter of my time at CSU.
Block 153 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: The biggest takeaway that I have, out of everything that I've learned, I've taken
Best Script Match: * Samantha Preuss, Graduating Student Speaker
Final: [?] The biggest takeaway that I have, out of everything that I've learned, I've taken
Block 154 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: a lot of classes, lots of credits, lots of hours studying, books, lectures.
Best Script Match: I'd now like to invite Seth Dillard to the podium to introduce our graduating student speaker.
Final: [?] a lot of classes, lots of credits, lots of hours studying, books, lectures.
Block 155 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: And my biggest takeaway at the end of all of that is that the world is small.
Best Script Match: At various times during the program, we may ask members of the graduating class or the audience to stand. Please do so as you are able.
Final: [?] And my biggest takeaway at the end of all of that is that the world is small.
Block 156 | Flags: SCRIPT_MISMATCH (0.40)
Match Ratio: 0.40
Original: Not in an insignificant or tiny type of way.
Best Script Match: TURN PAGE FOR NEXT SPEAKER
Final: [?] Not in an insignificant or tiny type of way.
Block 157 | Flags: SCRIPT_MISMATCH (0.37)
Match Ratio: 0.37
Original: I guess what I'm trying to say.
Best Script Match: SBME Masters Diploma Distribution ... Seth Dillard
Final: [?] I guess what I'm trying to say.
Block 158 | Flags: SCRIPT_MISMATCH (0.45)
Match Ratio: 0.45
Original: Maybe a better way to put it would be it's a small world.
Best Script Match: [Peebles returns to seat, Dillard moves to mark.]
Final: [?] Maybe a better way to put it would be it's a small world.
Block 159 | Flags: SCRIPT_MISMATCH (0.41)
Match Ratio: 0.41
Original: You might be thinking,
Best Script Match: COLLEGE OF ENGINEERING
Final: [?] You might be thinking,
Block 160 | Flags: SCRIPT_MISMATCH (0.43)
Match Ratio: 0.43
Original: oh, I think this girl dismissed the whole point of higher education.
Best Script Match: She won an Outstanding Service Award this year from the School of Biomedical Engineering.
Final: [?] oh, I think this girl dismissed the whole point of higher education.
Block 161 | Flags: SCRIPT_MISMATCH (0.42)
Match Ratio: 0.42
Original: Then we send our young people to college to expand their minds,
Best Script Match: There are some other people with us today who deserve thanks for their many contributions. Would the faculty please stand? (pause)
Final: [?] Then we send our young people to college to expand their minds,
Block 162 | Flags: SCRIPT_MISMATCH (0.38)
Match Ratio: 0.38
Original: to teach them new perspectives, and to introduce them
Best Script Match: [Christie Peebles moves to mark]
Final: [?] to teach them new perspectives, and to introduce them
Block 163 | Flags: SCRIPT_MISMATCH (0.39)
Match Ratio: 0.39
Original: to more people than they've ever met in their whole life.
Best Script Match: As we announce their names, let us acknowledge the bright futures they will shape-and the pride we share in their accomplishments.
Final: [?] to more people than they've ever met in their whole life.