-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1439 lines (1367 loc) · 57.6 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;800;900&family=Roboto+Mono:wght@500;600;700&family=Roboto:wght@500;700;900&family=Ubuntu:wght@500;700&display=swap"
rel="stylesheet"
/>
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet"> -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<!-- <link rel="stylesheet" href="/css/style.css" /> -->
<link rel="stylesheet" href="webpage/css/styles.css" />
<!-- Other stylesheet -->
<link href="/webpage/aos/aos.css" rel="stylesheet" />
<!-- <link href="/webpage/bootstrap/css/bootstrap.min.css" rel="stylesheet"> -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HSH2PVZV6V"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-HSH2PVZV6V');
</script>
<title>Camp DIALOGS</title>
<link href="webpage/img/cd_favicon.png" rel="icon" />
</head>
<body>
<!-- Page Preloder -->
<div id="preloder"></div>
<!--======= Begin Navbar =======-->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<a href="index.html" class="logo me-auto"
><img src="webpage/img/logo2.png" alt="" class="img-fluid"
/></a>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li>
<a href="#previous-camp-implementation"
>Previous Camp Implementation</a
>
</li>
<li><a href="#mentors">Project Team Members</a></li>
<!-- <li><a href="#schedule">Schedule</a></li> -->
<li><a href="#resources">Resources</a></li>
<li><a href="#questions">FAQ</a></li>
<!-- dropdown to for covid info page - ONHOLD-->
<!-- <li class="dropdown"><a href="#questions"><span>FAQ</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">COVID Info</a></li>
</ul>
</li> -->
<!-- <li><a href="#contact">Contact</a></li> -->
<li>
<a href="https://amby.campdialogs.org/"
><span
class="text-dark"
style="font-size: 20px; color: #da3510; font-weight: 600"
>
AMBY</span
></a
>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
<!-- <a
href="https://docs.google.com/forms/d/e/1FAIpQLSe8IxGPWn5Q5jTWwbyt_yhXlhUys-0x2lYy_7YplqIksVw4Qw/viewform"
class="btn btn-primary apply-now-btn"
target="_blank"
>Apply Now</a> -->
</div>
</header>
<!-- End Navbar -->
<!--======= Begin Banner =======-->
<section>
<div class="banner">
<div class="card-header text-center">
<p>
<strong
>Curious about <br />
ARTIFICIAL INTELLIGENCE?</strong
>
</p>
</div>
</div>
</section>
<!-- End Banner -->
<!--======= Begin Photo Gallery =======-->
<section class="gallery" id="gallery">
<!-- Carousel -->
<div class="container">
<div
id="carouselExampleControls"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner">
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
<!-- First slide -->
<div class="carousel-item active">
<img
src="webpage/img/gallery/1.png"
class="img-fluid"
alt="..."
/>
<div
class="carousel-caption"
data-aos="zoom-in"
data-aos-delay="100"
>
<h2>
<span
class="text-light"
style="background-color: rgba(0, 0, 0, 0.5)"
>Build apps that work with Google Home/Alexa!
</span>
</h2>
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSe8IxGPWn5Q5jTWwbyt_yhXlhUys-0x2lYy_7YplqIksVw4Qw/viewform"
class="btn btn-primary apply-button" target="_blank"
>Click here to apply</a> -->
</div>
</div>
<!-- Second slide -->
<div class="carousel-item">
<img
src="webpage/img/gallery/2.png"
class="img-fluid"
alt="..."
/>
<div
class="carousel-caption"
data-aos="zoom-in"
data-aos-delay="100"
>
<h2>
<span
class="text-light"
style="background-color: rgba(0, 0, 0, 0.5)"
>No experience required!</span
>
</h2>
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSe8IxGPWn5Q5jTWwbyt_yhXlhUys-0x2lYy_7YplqIksVw4Qw/viewform"
class="btn btn-primary apply-button" target="_blank"
>Click here to apply</a> -->
</div>
</div>
<!-- Third slide -->
<div class="carousel-item">
<img
src="webpage/img/gallery/amby.png"
class="img-fluid"
alt="..."
/>
<div
class="carousel-caption"
data-aos="zoom-in"
data-aos-delay="100"
>
<h2>
<span
class="text-light"
style="background-color: rgba(0, 0, 0, 0.5)"
>Build apps that work with Google Home/Alexa!</span
>
</h2>
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSe8IxGPWn5Q5jTWwbyt_yhXlhUys-0x2lYy_7YplqIksVw4Qw/viewform"
class="btn btn-primary apply-button" target="_blank"
>Click here to apply</a> -->
</div>
</div>
<!-- Fourth slide -->
<div class="carousel-item">
<img
src="webpage/img/gallery/3.png"
class="img-fluid"
alt="..."
/>
<div
class="carousel-caption"
data-aos="zoom-in"
data-aos-delay="100"
>
<h2>
<span
class="text-light"
style="background-color: rgba(0, 0, 0, 0.5)"
>No experience required!</span
>
</h2>
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSe8IxGPWn5Q5jTWwbyt_yhXlhUys-0x2lYy_7YplqIksVw4Qw/viewform"
class="btn btn-primary apply-button" target="_blank"
>Click here to apply</a> -->
</div>
</div>
<!-- Fifth slide -->
<div class="carousel-item">
<img
src="webpage/img/gallery/6.png"
class="img-fluid"
alt="..."
/>
<div
class="carousel-caption"
data-aos="zoom-in"
data-aos-delay="100"
>
<h2>
<span
class="text-light"
style="background-color: rgba(0, 0, 0, 0.5)"
>Unplugged Activities!</span
>
</h2>
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSe8IxGPWn5Q5jTWwbyt_yhXlhUys-0x2lYy_7YplqIksVw4Qw/viewform"
class="btn btn-primary apply-button" target="_blank"
>Click here to apply</a> -->
</div>
</div>
</div>
<!-- end of inner carousel -->
</div>
</div>
<!-- end of carousel -->
</section>
<!-- End Photo Gallery -->
<!--======= Begin About Us =======-->
<section class="about-area" id="about">
<div class="container align-items-center" data-aos="fade-up">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<br />
<h2>About Camp DIALOGS</h2>
</div>
</div>
</div>
<div
class="row d-flex justify-content-end align-items-center"
style="background-color: #f2f2f2; font-family: Gilroy-light"
>
<div class="col-lg-6 col-md-12 about-left">
<div class="well-middle">
<div class="single-well">
<h2 style="color: #333648">
<b style="color: #ee5011">DIALOGS Going into Classroom</b>
</h2>
<h4>
A research project funded by the National Science Foundation
</h4>
<p style="font-size: 1.2rem">
Technology such as artificial intelligence (AI) and chatbots
(such as Alexa, Google home, and Siri) are becoming
increasingly important in today's society and in education. We
are investigating how to bring children innovative, engaging
learning experiences using these new technologies. Our study,
funded by the National Science Foundation, examines how to
teach children about AI using a software that we developed
called AI Made by You (AMBY). AMBY allows learners to develop
conversational programs that work similarly as Alexa or Google
Home. Our study also investigates if interacting with software
like AMBY can improve student' attitudes toward technology.
</p>
<ul>
<li>
<i class="bi bi-check"></i> Build conversational apps like
Siri and Alexa
</li>
<li><i class="bi bi-check"></i> No Experience Needed</li>
<li><i class="bi bi-check"></i> Make new friends</li>
<!-- <p
style="
font-weight: bold;
color: #ee5011;
margin-bottom: 0;
font-size: medium;
"
>
By enrolling your child, you are agreeing for them to
participate in a
<a
href="https://drive.google.com/file/d/1KjJGjtNuaROau6sptX11DIvRBUgCVgL8/view?usp=share_link"
class="link link--yaku"
target="_blank"
>research study.</a
>
</p> -->
<a
href="http://learndialogue.org/project.php?id=CampDIALOGS"
class="btn btn-primary about-button"
target="_blank"
>Learn More</a
>
<a
href="https://youtu.be/pSr27wxHtEA"
class="btn btn-primary about-button"
target="_blank"
>Watch Video</a
>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 about-right p-0">
<img src="webpage/img/group_photo.JPG" class="img-fluid" alt="" />
</div>
</div>
</div>
</section>
<!-- End About Us -->
<!--======= Begin Contact Info =======-->
<!-- <section id="contact" class="p-5">
<div class="container">
<div class="row g-4">
<div class="col-md">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Contact</h2>
</div>
</div>
</div>
<ul class="list-group list-group-flush text-center mb-4">
<li class="list-group-item">
<span class="col-md mb-3 text-center fw-bold">Email: </span>[email protected]
</li>
<li class="list-group-item">
<span class="fw-bold">Visit: </span>
<a
href="http://learndialogue.org/project.php?id=CampDIALOGS"
class="link-primary"
>learndialogue.org</a
>
</li>
</ul>
</div>
</div>
</div>
</section> -->
<!-- End Contact Info -->
<!-- End Camp Info -->
<!-- ======= Begin Activities ======= -->
<section id="previous-camp-implementation" class="activities">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-md-12 col-sm-8 col-sm-12">
<div class="section-headline text-center">
<h2>Previous Camp Implementation</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<iframe
width="100%"
height="600"
src="https://www.youtube.com/embed/pSr27wxHtEA?si=6M2s7BH0S0KbHxdv"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-10">
<div class="activity" data-aos="fade-up" data-aos-delay="100">
<img src="webpage/img/gallery/1.png" alt="" class="img-fluid" />
<div class="details">
<h3>
HANDS-ON LEARNING
<!-- <a href="#activitiesModal1"
data-bs-toggle="modal"
data-bs-target="#activitiesModal1"
>HANDS-ON LEARNING</a> -->
</h3>
<p>
Learn about AI and build your own conversational app: an app
that you can talk to, like Siri and Alexa
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-10">
<div class="activity" data-aos="fade-up" data-aos-delay="200">
<img src="webpage/img/gallery/4.png" class="img-fluid" />
<div class="details">
<h3>
AI UNPLUGGED
<!-- <a href="#activitiesModal2"
data-bs-toggle="modal"
data-bs-target="#activitiesModal2"
>AI UNPLUGGED</a
> -->
</h3>
<p>
Play games and use teamwork to see how computer science and AI
concepts work, beyond the computer screen
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-10">
<div class="activity" data-aos="fade-up" data-aos-delay="300">
<img src="webpage/img/IMG_9398.JPG" alt="" class="img-fluid" />
<div class="details">
<h3>
CAREER EVENTS
<!-- <a href="#activitiesModal3"
data-bs-toggle="modal"
data-bs-target="#activitiesModal3"
> CAREER EVENTS</a
> -->
</h3>
<p>
Learn from diverse scientists and engineers about career
opportunities in computer science and AI.
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-10">
<div class="activity" data-aos="fade-up" data-aos-delay="300">
<img
src="webpage/img/IMG_9164.JPG"
alt="activity 3"
class="img-fluid"
/>
<div class="details">
<h3>
JUST FOR FUN
<!-- <a href="#activitiesModal4"
data-bs-toggle=""
data-bs-target="#activitiesModal4"
>JUST FOR FUN </a
> -->
</h3>
<p>
Every day includes time for board games, basketball and other
just-for-fun activities.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Activities -->
<!-- ======= Begin Facilitators ======= -->
<section id="mentors" class="mentors">
<div class="container">
<div class="section-title" data-aos="fade-up">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Project Team Members</h2>
</div>
</div>
</div>
<h4 class="lead text-center">
Our mentors are UF students and faculty members dedicated to
providing equal learning opportunities for middle school students.
</h4>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img src="webpage/img/keboyer.png" class="img-fixed" alt="" />
</div>
<div class="member-info">
<h4>Kristy Boyer</h4>
<span
>Professor <br />Computer and Information Science
Engineering</span
>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img
src="webpage/img/Maya-Israel.png"
class="img-fixed"
alt=""
/>
</div>
<div class="member-info">
<h4>Maya Israel</h4>
<span
>Associate Professor <br />Educational Technology and Computer
Science Education
</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img
src="webpage/img/Joanne-Barrett.png"
class="img-fixed"
alt=""
/>
</div>
<div class="member-info">
<h4>Joanne Barrett</h4>
<span>Computer Science Education </span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img src="webpage/img/TomMcKlin.png" class="img-fixed" alt="" />
</div>
<div class="member-info">
<h4>Tom McKlin</h4>
<span>The Findings Group</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img
src="webpage/img/ChristineFWise.jpeg"
class="img-fixed"
alt=""
/>
</div>
<div class="member-info">
<h4>Christine Wise</h4>
<span>The Findings Group</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img src="webpage/img/xiaoyi.jpg" class="img-fixed" alt="" />
</div>
<div class="member-info">
<h4>Xiaoyi Tian</h4>
<span>PhD student <br />Human-centered Computing</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic pic-container">
<img src="webpage/img/timothy.jpg" class="img-fixed" alt="" />
</div>
<div class="member-info">
<h4>Timothy Brown</h4>
<span
>LearnDialogue Lab Coordinator <br />Computer Science</span
>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img src="webpage/img/song.jpg" class="img-fixed" alt="" />
</div>
<div class="member-info">
<h4>Yukyeong Song</h4>
<span>PhD student <br />Educational Technology</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic pic-container">
<img src="webpage/img/carly.jpg" class="img-fixed" alt="" />
</div>
<div class="member-info">
<h4>Carly Solomon</h4>
<span>Undergraduate student <br />Computer Science </span>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic">
<img src="webpage/img/lydia.jpg" class="img-fluid" alt="" />
</div>
<div class="member-info">
<h4>Lydia Pezzullo</h4>
<span
>LearnDialogue Lab Coordinator <br />Computer Science</span
>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- End Facilitators -->
<!--======= Begin Resources =======-->
<section class="resources" id="resources">
<div class="container align-items-center" data-aos="fade-up">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<br />
<h2>Resources</h2>
</div>
</div>
</div>
<div
class="row d-flex justify-content-end align-items-center"
style="background-color: #f2f2f2; font-family: Gilroy-light"
>
<div class="col-lg-12 col-md-12 about-right">
<div class="well-middle">
<div class="single-well">
<h5> DIALOGS aims to engage middle school youth in AI learning by empowering them to create personally relevant conversational agents (i.e., chatbots). Over three years of iterative refinement during summer camps, our team has developed the DIALOGS curriculum, the AMBY learning interface, and a four-pronged assessment approach to evaluate AI learning. Explore these resources below. </h5>
<p>
<a href="https://learndialogue.org/pubs.php">Here </a>
are the Learn Dialogue Research Lab's publications!
</p>
</div>
</div>
</div>
<div class="accordion accordion-flush" id="resourcesAccordion">
<!-- Section 1: Curriculum -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseCurriculum" aria-expanded="false" aria-controls="collapseCurriculum">
1. Curriculum
</button>
</h2>
<div id="collapseCurriculum" class="accordion-collapse collapse" aria-labelledby="headingCurriculum" data-bs-parent="#resourcesAccordion">
<div class="accordion-body">
<!-- Subsections for Curriculum -->
<p style="font-size: 1.2rem">
The DIALOGS curriculum was designed based on the Universal Design for Learning (UDL) guidelines. UDL is a pedagogical framework that aims to make learning more accessible and engaging for all students by proactively planning for learner variability, including the range of backgrounds, abilities, and learning preferences (CAST, 2018; Song et al., 2024).
</p>
<p style="font-size: 1.2rem">
The DIALOGS curriculum integrates general AI concepts, hands-on unplugged activities, conversational AI lessons, and the project activities for developing conversational apps, aligning with AI4K12's Big Ideas and specific learning objectives.
</p>
<div class="d-flex justify-content-center align-items-center">
<img src="webpage/img/LessonChartNew.png" alt="" style="width: 60%; max-width: 1200px; height: auto; " class="image-border" /> </div>
<br>
<!--======= Section 1.1: General AI Lessons =======-->
<h3> 1.1 General AI Lessons </h3>
<p style="font-size: 1.2rem">
Our curriculum aims to introduce learners to general AI knowledge through interactive lessons drawn from established resources like those from
<a href="https://raise.mit.edu/daily/">MIT </a>
and
<a href="https://teachablemachine.withgoogle.com/">Google</a>
, and tailored for our summer camp setting. These lessons closely align with
<a href="https://ai4k12.org/"> AI4K12's Five Big Ideas of AI </a>
and progressions. They range from Introduction to AI, Data, Machine Learning to AI Bias and Ethics, and extend to applications of AI in art and music. Learners engage with AI concepts through practical applications, understanding how AI learns from data, and discussing the broader impact of AI in society and creative fields.
</p>
<p style="font-size: 1.2rem">
The complete set of lesson materials (slides, lesson plans, worksheets) can be found
<a href="https://docs.google.com/spreadsheets/d/1EfD4pfwtFDGPVZ6qqEVER_Er9Q3Cumm9v7XdJyv6qk8/edit?gid=918116893#gid=918116893"> here.</a>
</p>
<p style="font-size: 1rem">
Dialogs curriculum designers would like to acknowledge and thank the following for providing access to quality materials that were used in lesson development including but not limited to:
<ul>
<li>
Breazeal, C., & Lee, I. (n.d.). DAILy curriculum. DAILy Workshop.
<a href="https://raise.mit.edu/daily/teaching-resources/">https://raise.mit.edu/daily/teaching-resources/</a>
</li>
<li>
Breazeal, C. (2021) What is the Creative AI Curriculum? The DAILy Curriculum for Middle School Students created by the MIT Lab Personal Robots Group.
<a href="Https://mitmeidalab.github.io/ai-creativity-workshop">Https://mitmeidalab.github.io/ai-creativity-workshop</a>
</li>
<li>
Day of AI. Available at: https://dayofai.org/ (Accessed: 13 May 2022). Dreher, D. (2021) Explore AI Ethics.
<a href="Https://www.exploreaiethics.com">Https://www.exploreaiethics.com</a>
(Accessed 2021).
</li>
<li>
Kumar, R., Kant, S.A. and Ramanan, S.R. (2020) ‘Let’s Learn Artificial Intelligence’. Delhi, India: Atal Innovation Mission (
<a href="https://aim.gov.in/Lets_learn_AI_Base_Module.pdf">https://aim.gov.in/Lets_learn_AI_Base_Module.pdf</a>).
</li>
<li>
(No date) What Is Artificial Intelligence? #1 | Crash Course: Artificial Intelligence. Available:
<a href="https://mpt.pbslearningmedia.org/resource/what-is-artificial-intelligence-video/crash-course-artificial-intelligence/">https://mpt.pbslearningmedia.org/resource/what-is-artificial-intelligence-video/crash-course-artificial-intelligence/</a>.
</li>
</ul>
</p>
<!--======= Section 1.2: Conversational AI Lessons =======-->
<h3> 1.2 Conversational AI Lessons </h3>
<p style="font-size: 1.2rem">
Our conversational AI lessons are anchored in learners’ prior experiences with conversational AI. As most learners have experience with chatbots through apps such as Alexa and Siri, we start with these experiences. We then transition to conversational AI lessons for the creative exploration of chatbots that were closely aligned to the AMBY interface. The curriculum includes seven lessons ranging from an introduction to chatbots and continuing through conversational design principles.
</p>
<!--======= Section 1.3: AMBY within the curriculum =======-->
<div class="row d-flex align-items-center">
<!-- left column -->
<div class="col-lg-6 col-md-6">
<h3> 1.3 AMBY within the curriculum </h3>
<h4 style="font-size: 1.3rem">
<a href="https://www.youtube.com/watch?v=ejQ-fwUM6LE"> Watch the demo video of our tool, AMBY (4 minutes)</a>
</h4>
<p style="font-size: 1.2rem">
Learners explore conversational AI through structured lessons that are tied to the AMBY interface. Our educational approach involves providing learners with a series of scaffolded conversational AI project activities, allowing them to put their newfound knowledge into practice within the context of real-world projects.
</p>
</div>
<!-- right column -->
<div class="col-lg-6 col-md-6">
<img src="webpage/img/MrWorldwide.png" class="img-fluid image-border" alt="" />
<p style="font-size: 1rem;">
AMBY development environment for learners to create conversational agents. In this figure, “MrWorldWide” is a sample agent that AMBY provides for learners to begin with.
</p>
</div>
</div>
<div class="col-lg-12 col-md-12 about-left">
<!--======= Section 1.4: Artificial Intelligence Unplugged =======-->
<h3> 1.4 Artificial Intelligence Unplugged </h3>
<p style="font-size: 1.2rem">
Unplugged activities have demonstrated effectiveness in helping learners grasp abstract CS concepts and enhance computational thinking in a fun and engaging way. Our team applied this idea of CS unplugged activities to conversational AI learning.
</p>
<p style="font-size: 1.2rem;">
Lesson Plans for our Unplugged activities:
<ul style="font-size: 1.2rem; ">
<li>
<a href="https://docs.google.com/document/d/1CsGlPhhal48qkGQnsaYY8QZh1yBzxMF7vJKedLG4H1Q/edit?usp=sharing"> User, Developer, Agent card game</a>
</li>
<li>
<a href="https://docs.google.com/document/d/14OzP6BFFrij_B2W0RyCQWUJcFCHp-ijazohf6K5wvzg/edit?usp=sharing">Mission Agent Training</a>
</li>
<li>
<a href="https://docs.google.com/document/d/1eNN74kOABZIfIA2RTKwJz_ZPqbHyDy6sZkOEmzRaVfM/edit?usp=sharing">Chatbot Personality Activity</a>
</li>
<li>
<a href="https://docs.google.com/document/d/1G9Sq2wFEKwiYtPrz3Y5Sdyp8R0X8sFNVJc2Vbf1UalM/edit">Yoga Activity</a>
</li>
</ul>
</p>
</div>
</div>
</div>
</div>
<!-- Section 2: Assessment of AI Learning -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseAssessment" aria-expanded="false" aria-controls="collapseAssessment">
2. Assessment of AI Learning
</button>
</h2>
<div id="collapseAssessment" class="accordion-collapse collapse" aria-labelledby="headingAssessment" data-bs-parent="#resourcesAccordion">
<div class="accordion-body">
<p style="font-size: 1.2rem">
DIALOGS assesses learners’ knowledge and understanding of AI via a multi-pronged approach: self-recorded videos, gamified quizzes, cognitive interviews, and learning artifacts. The assessment instruments were iteratively designed and developed for use within informal settings (i.e., summer camps) and have been adapted for formal classroom use. The assessment items and rubrics were developed to address Five Big Ideas of AI presented by AI4K12 and our specific curricular goals and learning objectives.
</p>
<p style="font-size: 1.2rem">
The instrument development team consisted of content experts in CS and AI, CS and AI education, and educational assessment evaluation team members. The team developed a rubric for rating learner responses to cognitive interview questions, as well as their artifacts.
<a href="https://drive.google.com/file/d/13bOo8u9o3p2sY0InChTcsHEN1NO2B408/view?usp=sharing">Here</a>
is the rubric for the assessments.
</p>
<!-- right column -->
<!-- <div class="col-lg-6 col-md-6">
<img src="webpage/img/AssessmentTable1.png" class="img-fluid image-border" alt="" />
<img src="webpage/img/AssessmentTable2.png" class="img-fluid image-border" alt="" />
<img src="webpage/img/AssessmentTable3.png" class="img-fluid image-border" alt="" />
</div> -->
</div>
<!--======= Section 2.1: Cognitive Interview Rubric =======-->
<div class="row d-flex align-items-center">
<!-- left column -->
<div class="col-lg-6 col-md-6">
<h3> 2.1 Cognitive Interview Rubric </h3>
<p style="font-size: 1.2rem">
The team developed a rubric for analyzing transcripts from cognitive interviews with learners. The rubric may also be adapted/modified by teachers for AI products developed by learners.
<a href="https://docs.google.com/document/d/12T4eYqRdBgHY9J8dFElAwia2dXTt9RyXmNMkSr1SvPY/edit">Here</a>
is an updated 2023 version.
</p>
</div>
<!-- right column -->
<div class="col-lg-6 col-md-6">
<p style="font-size: 1.2rem">
Example Rubric (Pulled from 2023 Cognitive Interview Rubric):
<img src="webpage/img/CognitiveInterviewTable.png" class="img-fluid image-border" alt="" />
</p>
</div>
</div>
<div class="col-lg-12 col-md-12 about-left">
<!--======= Section 2.2: Kahoot Assessment =======-->
<h3>2.2 Kahoot Assessment</h3>
<p style="font-size: 1.2rem">
Our team developed
<a href="https://kahoot.it/"> Kahoot </a>
assessments as formative assessments of learning. All items correspond to a learning objective.
</p>
<p style="font-size: 1.2rem">
You can host or edit the kahoot quiz here:
<ul style="font-size: 1.2rem">
<li>
For general AI concepts:
<a href="https://create.kahoot.it/share/project-dialogs-kahoot-general-ai-questions/a80a7b17-4f0d-4345-81d5-171fc3e05675">https://create.kahoot.it/share/project-dialogs-kahoot-general-ai-questions/a80a7b17-4f0d-4345-81d5-171fc3e05675</a>
</li>
<li>
For AMBY-related concepts:
<a href="https://create.kahoot.it/share/shared-amby-kahoot-assessment/e24fb88b-8686-45b7-ba5f-07eca794acdb">https://create.kahoot.it/share/shared-amby-kahoot-assessment/e24fb88b-8686-45b7-ba5f-07eca794acdb</a>
</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End About Us -->
<!--======= Begin FAQ =======-->
<section id="questions" class="p-5">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>F.A.Qs</h2>
</div>
</div>
</div>
<div class="accordion accordion-flush" id="questions">
<!-- Question 1 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#question-one"
>
What is the Purpose of the DIALOGS Middle School Classroom
Study?
</button>
</h2>
<div
id="question-one"
class="accordion-collapse collapse"
data-bs-parent="#questions"
>
<div class="accordion-body">
The study explores the use of a software tool called AI Made by
You (AMBY) to teach students about Artificial Intelligence (AI)
and investigate its impact on students' attitudes toward
technology.
</div>
</div>
</div>
<!-- Question 2 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#question-two"
>
What Will My Child Learn?
</button>
</h2>
<div
id="question-two"
class="accordion-collapse collapse"
data-bs-parent="#questions"
>
<div class="accordion-body">
Your child will gain insights into Artificial Intelligence (AI)
and learn to create conversational programs or chatbots using
the AI Made by You (AMBY) software. This will provide them with
a practical understanding of how technologies similar to Alexa
or Google Home operate and how AI can be applied in various
contexts. In previous years, students have created chatbots that
recommended music in different genres, offered gaming tips,
helped the user find fun activities in Gainesville, and more.
</div>
</div>
</div>
<!-- Question 3 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#question-three"
>
How are Students Expected to Participate?
</button>
</h2>
<div
id="question-three"
class="accordion-collapse collapse"
data-bs-parent="#questions"
>