-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1091 lines (973 loc) · 70.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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- SEO Meta Tags -->
<meta name="description" content="">
<meta name="author" content="Your name">
<!-- OG Meta Tags to improve the way the post looks when you share the page on Facebook, Twitter, LinkedIn -->
<meta property="og:site_name" content="" /> <!-- website name -->
<meta property="og:site" content="" /> <!-- website link -->
<meta property="og:title" content="" /> <!-- title shown in the actual shared post -->
<meta property="og:description" content="" /> <!-- description shown in the actual shared post -->
<meta property="og:image" content="" /> <!-- image link, make sure it's jpg -->
<meta property="og:url" content="" /> <!-- where do you want your post to link to -->
<meta name="twitter:card" content="summary_large_image"> <!-- to have large image post format in Twitter -->
<!-- Webpage Title -->
<title>MLCAS2024 Workshop</title>
<!-- Styles -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@600&display=swap"
rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- <script type="text/javascript" src="proceeding_db.js?rnd=234"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment-with-locales.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Favicon -->
<link rel="icon" href="images/favicon.png">
<!-- popover -->
<style>
.popover{
max-width: 40%; /* Max Width of the popover (depending on the container!) */
}
@media only screen and (max-width: 768px) {
.popover{
max-width: 80%; /* Max Width of the popover (depending on the container!) */
}
}
img {
max-height: 100%;
max-width: 100%;
}
</style>
</head>
<body data-spy="scroll" data-target=".fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top navbar-dark">
<div class="container">
<!-- Image Logo -->
<!--a class="navbar-brand logo-image" href="index.html"><img src="images/logo.svg" alt="alternative"></a-->
<a class="navbar-brand navbar-link" href="index.html">Home</a>
<!-- Text Logo - Use this if you don't have a graphic logo -->
<!-- <a class="navbar-brand logo-text page-scroll" href="index.html">Mark</a> -->
<button class="navbar-toggler p-0 border-0" type="button" data-toggle="offcanvas">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse offcanvas-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#callforpapers">Call for Papers</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#organization">Organization</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#program">Program</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#program">Proceedings</a>
<!-- <a class="nav-link page-scroll" href="#proceedings">Proceedings</a> -->
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#competition">Competition</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#sponsorship">Sponsorship</a>
</li>
</ul>
</div> <!-- end of navbar-collapse -->
</div> <!-- end of container -->
</nav> <!-- end of navbar -->
<!-- end of navigation -->
<!-- Header -->
<header id="header" class="header">
<div class="container">
<div class="row">
<div class="col-lg-10">
<div class="text-container">
<h3 class="h1-large">Sixth International Workshop on Machine Learning for Cyber-Agricultural
Systems <br>(MLCAS2024)</h3>
<h5 class="text-warning">Register for IPPS8 and add MLCAS as an add-on workshop for no additional cost</h5><a class="btn-solid-lg page-scroll" href="https://www.plant-phenotyping.org/index.php?index=929" target="_blank">IPPS8 & MLCAS</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row mt-3">
<div class="col-lg-12">
<h5 class="text-warning">Register for MLCAS only</h5><a class="btn-solid-lg page-scroll" href="https://go.iastate.edu/G00XQ5" target="_blank">MLCAS</a>
</div>
</div>
</div> <!-- end of container -->
</header> <!-- end of header -->
<!-- end of header -->
<!-- Basic -->
<div class="ex-basic-1 pt-4 bg-gray">
<div class="container">
<div class="row">
<div class="col-xl-10 offset-xl-1">
<h5 class="text-center text-muted mt-2">Previous MLCAS workshops: <a href="https://2023.mlcas.site/" target="_blank">MLCAS2023</a>; <a href="https://mlcas2022.github.io/" target="_blank">MLCAS2022</a></h5>
<!-- <h5 class="text-center text-muted mt-2">This workshop is supported by NSF (U.S.A), USDA-NIFA (U.S.A), and JST (Japan)</h5> -->
<p class="mt-2">Today, efficient, cost-effective sensors as well as high performance computing technologies
are looking to transform traditional plant-based agriculture into an efficient cyber-physical system. The
easy availability of cheap, deployable, connected sensor technology has created an enormous opportunity to
collect vast amounts of data at varying spatial and temporal scales at both experimental and production
agriculture levels. Therefore, both offline and real-time agricultural analytics that assimilates such
heterogeneous data and provides automated, actionable information is a critical need for sustainable and
profitable agriculture.</p>
<p class="mb-3">Data analytics and decision-making for Agriculture has been a long-standing application area.
The application of advanced Artificial Intelligence (AI) and Machine Learning (ML) methods to this critical
societal need can be viewed as a transformative extension for the agriculture community. In this workshop,
we intend to bring together academic and industrial researchers and practitioners in the fields of machine
learning, data science and engineering, plant sciences and agriculture, in the collaborative effort of
identifying and discussing major technical challenges and recent results related to machine learning-based
approaches. It will feature invited talks, oral/poster presentations of accepted papers, and an Ag-ML
competition. </p>
<ul class="list-unstyled li-space-lg mb-3">
<!-- <li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Proceedings</strong>: Coming soon.</div>
</li> -->
<li class="media">
<i class="fas fa-square"></i>
<!-- <div class="media-body" title="Absolute Reference: JST (UTC +9) Tue, 2 Nov 2023 21:00 ~ JST (UTC +9) Thu, 4 Nov 2023 23:00"><strong >Date</strong>: <span class="text-primary" id="st_tz">JST (UTC +9)</span> <span id="st_time">Tue, 2 Nov 2023 21:00</span> ~ <span class="text-primary" id="ed_tz">JST (UTC +9)</span> <span id="ed_time">Thu, 4 Nov 2023 23:00</span></div> -->
<div class="media-body" title="Absolute Reference: CDT (UTC -5) Mon, 7 October 2024"><strong >Date</strong>: <span class="text-primary"> 7 October 2024 </span></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Venue</strong>: <span class="text-primary">
<a href="https://maps.app.goo.gl/qJChMevzsBYzcscdA" target="_blank">Co-located with IPPS8 at Nebraska Innovation Campus, Lincoln, Nebraska</a></span></div>
</li>
<!-- <li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Accommodation</strong>: <span class="text-primary">
The recommended hotel for the conference is the <a href="https://www.hilton.com/en/hotels/lnkglgu-graduate-lincoln/" target="_blank">Graduate by Hilton Lincoln </a>We do not guarantee blocked rates for the hotel.</span></div>
</li> -->
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Accommodation</strong>: <span class="">
The recommended hotel for the workshop is the <a href="https://www.hilton.com/en/hotels/lnkglgu-graduate-lincoln/" target="_blank">Graduate by Hilton Lincoln </a>We do not guarantee blocked rates for the hotel.</span></div>
</li>
</ul>
<h5 class="text-center mt-3">Registration categories and fees (for MLCAS only)</h5>
<table class="table table-hover">
<caption>Note: If you are registering for IPPS8 and planning to add MLCAS to your registration, you need to go through the <a href="https://www.plant-phenotyping.org/index.php?index=929" target="_blank">IPPS8 website</a> and follow the IPPS8 rules and regulations. For IPPS8, the Early Bird Registration closes on May 31, 2024 and Registration closes on August 15, 2024.</caption>
<thead>
<tr>
<th scope="col">Category </th>
<th scope="col">Before August 15</th>
<th scope="col">After August 15</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Industry Professional</th>
<td>$150</td>
<td>$200</td>
</tr>
<tr>
<th scope="row">Academia/Non-Profit/Start-Up </th>
<td>$100</td>
<td>$150</td>
</tr>
<tr>
<th scope="row">Students</th>
<td>$40</td>
<td>$75</td>
</tr>
</tbody>
</table>
</div>
<div class="col-xl-10 offset-xl-1 d-flex flex-column">
<div>
<h5 class="text-center text-warning mt-3">Gold Sponsors</h5>
<div class="icons-container">
<div class="d-flex justify-content-center">
<img src="images/jd_logo.png" alt="John Deere Logo" height="100px" class="m-2" onclick="javascript:window.open('https://www.deere.com/en/', '_blank');">
</div>
<div class="d-flex justify-content-center">
<img src="images/bayer_logo.svg" alt="Bayer Logo" height="100px" class="m-2" onclick="javascript:window.open('https://www.bayer.com/en/', '_blank');">
</div>
<div class="d-flex justify-content-center" style="margin-top: 20px;">
<img src="images/isu_psi.png" alt="Iowa State University Plant Sciences Institute Logo" height="100px" class="m-2" onclick="javascript:window.open('https://www.psi.iastate.edu/', '_blank');">
</div>
</div>
</div>
<div>
<h5 class="text-center text-muted mt-3"> Silver Sponsors </h5>
<div class="icons-container text-center">
<img src="images/corteva_logo.png" alt="Corteva logo" height="90hv" class="m-2" onclick="javascript:window.open('https://www.corteva.com/', '_blank');">
<!-- <img src="images/plantphenomics.png" alt="Plant Phenomics logo" height="90hv" class="m-2" onclick="javascript:window.open('https://spj.science.org/journal/plantphenomics/', '_blank');"> -->
</div>
</div>
<div>
<h5 class="text-center text-muted mt-3"> Bronze sponsors </h5>
<div class="icons-container text-center">
<!-- <img src="images/quantomics.png" alt="Quantomics Logo" height="90hv" class="m-2" onclick="javascript:window.open('https://quantomics.co.jp/', '_blank');"> -->
</div>
</div>
</div>
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of ex-basic-1 -->
<!-- end of basic -->
<div class="ex-basic-1 pt-5 pb-5">
<div id="callforpapers" class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading text-center">Call for Contributions</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-xl-10 offset-xl-1">
<h5 class="mt-4">Target Participants</h5>
<p class="mt-2">The theme of MLCAS 2024 will be "User-centric AI applications in Agriculture" to highlight
and discuss real life deployments of AI and ML-enabled tools for a variety of agricultural decision
support applications relevant for diverse stakeholders including farmers, plant breeders and plant
scientists. We invite extended 2-page-abstract for oral and/or poster presentations on topics Including
but not limited to machine learning applications to field-scale plant phenotyping (e.g., trait extraction),
plant pathology (e.g., disease, pest, and weed scouting), plant breeding (e.g., yield prediction) and
enabling smart farm management practices. We particularly encourage applications of recent AI advances
such as multi-modal generative models, large language models (LLM), 3D geometric deep learning,
scientific machine learning, deep reinforcement learning, robotic perception and learning-enabled control,
uncertainty quantification and robust machine learning, in enabling and accelerating research in plant
science and agriculture. We also encourage work that results in creating annotated benchmark datasets
for ML in agriculture.
</p>
<h5 class="mt-4">Guidelines</h5>
<ul class="list-unstyled li-space-lg mt-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Guidelines for Extended abstract submissions</strong>: Up to
2 pages including figures and tables (excluding references). Extended <a href="/files/MLCAS2024-template.docx">abstract template</a>.</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Submission Guidelines</strong>: Submissions are through
Microsoft CMT. If you do not have an Microsoft CMT account, please create one first. If
you already have an Microsoft CMT account, please login to your account and enter as an
author for MLCAS 2024 by following <a href="https://cmt3.research.microsoft.com/MLCAS2024" target="_blank">this link</a>.</div>
</li>
<!-- <li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Guidelines for Poster presentations</strong>: Poster Size:
A0 (width around 84.1 cm and height around 118.9 cm) or you can use <br/><u>poster template</u> (to be released).
</div>
</li> -->
</ul>
<h5 class="mt-4">Procedure</h5>
<p>Coming soon.</p>
<!-- <h5 class="mt-4">Publication of Papers</h5>
<p>Select papers from the workshop will be published in <a href="https://spj.science.org/page/plantphenomics/si/metaverse-agriculture/" target="_blank">"Plant Phenomics"</a>.</p> -->
<!-- <p>Select papers from the workshop will be published in the <a href="https://spj.science.org/page/plantphenomics/si/metaverse-agriculture/" target="_blank">special issue of journal "Plant Phenomics"</a>.</p> -->
<!--https://spj.sciencemag.org/plant-phenomics-special-issues/image-analysis/-->
<h5 class="mt-4" id="importantdates">Important Dates</h5>
<ul class="list-unstyled li-space-lg mt-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Submission open</strong>: <span class="text-primary"> May 15</span></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Paper (extended abstract) deadline</strong>: <span class="text-primary"><s>July 15</s> July 31 (Wednesday, AoE)</span></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Decision sent to authors</strong>: <span class="text-primary">August 12 </span></div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Competition date</strong>: <span
class="text-primary"><a href="#competition">See below</a></span></div>
</li>
</ul>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div>
<div class="cards-1 ex-basic-1 bg-gray">
<div class="container" id="organization">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading text-center">Workshop Organization</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-xl-10 offset-xl-1">
<h5 class="mt-4">Organizing Committee</h5>
<ul class="list-unstyled li-space-lg mt-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Soumik Sarkar</strong>, Professor, Mechanical
Engineering, Iowa State University</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Arti Singh</strong>, Associate Professor, Department of
Agronomy, Iowa State University</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Wei Guo</strong>, Associate Professor, Field
Phenomics Laboratory, Graduate School of Agriculture and Life Sciences, The University
of Tokyo</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Baskar Ganapathysubramanian</strong>, Professor, Mechanical
Engineering, Iowa State University</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Asheesh K. Singh</strong>, Professor, Department of
Agronomy, Iowa State University</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>James C. Schnable</strong>, Professor, Department of
Agronomy and Horticulture, University of Nebraska-Lincoln</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Masayuki Hirafuji</strong>, Project Professor, Field
Phenomics Laboratory, Graduate School of Agriculture and Life Sciences, The University
of Tokyo</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Seishi Ninomiya</strong>, Project Professor, Field Phenomics
Laboratory, Graduate School of Agriculture and Life Sciences, The University of Tokyo
</div>
</li>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-lg-12 mt-4">
<h4 class="mt-4 text-center text-muted">Speakers</h4>
<h6 class="text-center">Click button to see details, click again to hide</h6>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/alina.jpeg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Alina Zare</div>
<div class="occupation">Director, Machine Learning and Sensing Lab<br> Professor, Electrical & Computer Engineering<br> University of Florida</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Director, Machine Learning and Sensing Lab
Professor, Electrical & Computer Engineering
Associate Dean for Research and Facilities, Herbert Wertheim College of Engineering
University of Florida.
">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Advanced Application Technologies to Boost Big Data Utilization for Multiple-Field Scientific Discovery and Social Problem Solving</p> -->
</div>
</div>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/david_Hughes.jpeg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. David P. Hughes</div>
<div class="occupation">Chair in Global Food Security,
<br> Professor, Department of Entomology<br> The Pennsylvania State University</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Dorothy Foehr Huck and J. Lloyd Huck Chair in Global Food Security
Two labs are headed by David Hughes at Penn State
One is on ant behavior and specifically how parasites both adaptively manipulate ant behavior and avoid behavioral defense mechanisms (retired my work on ant behavior to focus 100% on Global Food secruity through PlantVillage )
The other is on food security and leveraging advances in technology for smallholder farmers around the world https://plantvillage.psu.edu/.
">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Advanced Application Technologies to Boost Big Data Utilization for Multiple-Field Scientific Discovery and Social Problem Solving</p> -->
</div>
</div>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/isobe.png" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Sachiko Isobe</div>
<div class="occupation">Chair of Japan Plant Phenotyping Network (JPPN) <br> Professor, Lab of Horticultural Science, The University of Tokyo</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Position: Professor, Lab of Horticultural Science,
Lab of Horticultural Science,
Graduate School of Agricultural and Life Sciences, The University of Tokyo
Education/work:
1989-1993:Okayama University
1993-1995:Graduate School of Okayama University (Master Course)
1995-2007 : NARO, Hokkaido Agric Res Cent, Forage Breeding
2003: Visiting Scientist, Agronomy, Iowa State University, Forage molecular Breeding
2006: Dr. Degree, Kagoshima Federal Universities, Forage molecular Breeding
2007-2024: Senior Scientist and Lab Head, Kazusa DNA Res Inst, Plant genome sequencing, molecular breeding, DB construction and digital phenotyping
2019-current: Chair of Japan Plant Phenotyping Network (JPPN)
2024 July-: Current position
">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Advanced Application Technologies to Boost Big Data Utilization for Multiple-Field Scientific Discovery and Social Problem Solving</p> -->
</div>
</div>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/Rick_vd_Zedde_kas.png" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Rick van de Zedde </div>
<div class="occupation">Chief Technology Officer Netherlands Plant Eco-phenotyping Centre, Wageningen University & Research in The Netherlands.</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Chief Technology Officer Netherlands Plant Eco-phenotyping Centre, Wageningen University & Research in The Netherlands.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div> <!-- end of col -->
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/girish.png" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Girish Krishnan</div>
<div class="occupation">Associate Professor, Department of Industrial & Enterprise System Engineering, University of Illinois</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Prof. Girish Krishnan is an Associate Professor in the Industrial and Enterprise Systems Engineering with joint appointments in Mechanical Engineering and Carle Illinois College of Medicine, University of Illinois at Urbana-Champaign. He obtained a PhD degree from University of Michigan. His research is in the intersection of engineering design and robotics, with applications in agricultural robots, surgical simulators, exoskeletons and orthotics and telehealth robotics. Prof. Krishnan is the recipient of the 2015 NSF Early Career award (CAREER), 2016 UIUC council award for excellence in advising and 2017 Freudestein Young Investigator award (ASME). He has published around 32 peer-reviewed journals, 45 conference proceedings, and holds two patents.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Long-term Policy of Japan toward Sustainable and Productive Agriculture with Smart Farming</p> -->
</div>
</div>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/nadia.png" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Nadia Shakoor</div>
<div class="occupation">Assistant Member and Principal Investigator, Donald Danforth Plant Science Center</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="https://shakoorlab.org/">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12 mt-4">
<h4 class="mt-4 text-center text-muted">Panelists</h4>
<h6 class="text-center">Click button to see details, click again to hide</h6>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/ryan.jpeg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Ryan Kirk</div>
<div class="occupation">Head of Data Science, John Deere</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Head of Data Science, John Deere.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div> <!-- end of col -->
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/tata.jpg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Siddharth Tata</div>
<div class="occupation">Product Leader-Amazon Fresh and Kisan</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Food and agribusiness professional with 15+ years of experience in different roles- product management (Amazon), entrepreneur (Purple Chilli), consultant (McKinsey), early-stage investor (Acumen), and grantmaker (Gates Foundation). Harvard MBA and IIT Madras Bachelors in Electrical Engineering.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div> <!-- end of col -->
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/anderson_meghan.jpeg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Meaghan Anderson</div>
<div class="occupation">Field Agronomist in Central Iowa and Extension Field Specialist at Iowa State University Extension and Outreach</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Meaghan Anderson is a field agronomist in central Iowa and an extension field specialist at Iowa State University Extension and Outreach. Educational programming is available for farmers, agribusinesses, pesticide applicators, certified crop advisors, and other individuals interested in crop production.
Areas of expertise include weed management, weed biology, cover crops, corn and soybean management, and integrated pest management.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Bringing Robotic Intelligence to the Field: Moving from Perception to Manipulation</p> -->
</div>
</div>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/matthew-carroll.jpeg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Matthew Carroll</div>
<div class="occupation">Analytics & Insights Lead, Iowa Soybean Association</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Matt is the lead for Analytics and Insights team in Iowa Soybean Association’s Research Center for Farming Innovation (RCFI). Matt and his team are responsible for working with the research and conservation teams to analyze data, generate reports, develop tools and generate insights from ISA’s on-farm research activities. Matt works with other RCFI leads and directors to review proposed research and manage projects. He reviews experimental designs and analysis of data to ensure data meets ISA quality standards.
Matt is from Elizabeth, Illinois where his family farms. They raise soybeans, corn and beef cattle. Matt attended Iowa State University where he received a Bachelor's of Science in Agronomy and Genetics and then went on to earn his Ph.D. in Plant Breeding.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div> <!-- end of col -->
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<img src="images/Pieter-Blok.jpeg" alt="alternative" height="80px">
<div class="text">
<div class="testimonial-author">Dr. Pieter Blok </div>
<div class="occupation">Assistant Professor, Lab of Field Phenomics, University of Tokyo</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Assistant Professor, Lab of Field Phenomics, University of Tokyo.">Bio</a>
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div>
<div class="col mt-4">
<div class="card bg-gray">
<div class="card-body">
<div class="details">
<!-- <img src="images/Pieter-Blok.jpeg" alt="alternative" height="80px"> -->
<div class="text">
<!-- <div class="testimonial-author">Dr. Pieter Blok </div>
<div class="occupation">Assistant Professor, Lab of Field Phenomics, University of Tokyo</div>
<a role="button" class="btn btn-outline-info btn-sm" style="text-decoration: none;" data-toggle="popover" data-placement="bottom" title="Biography" data-content="Assistant Professor, Lab of Field Phenomics, University of Tokyo.">Bio</a> -->
</div>
</div>
<!-- <p class="testimonial-text">Title: Learning to lead the target: plant breeding in an unpredictable world</p> -->
</div>
</div>
</div>
</div> <!-- end of row -->
</div> <!-- end of container -->
</div>
<div class="ex-basic-1 pt-5 pb-5">
<div id="program" class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading text-center">Program</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row pt-5">
<div class="col-lg-12">
<div class="table-responsive">
<table class="table table-bordered">
<thead class="thead-light">
<tr>
<th class="border" style="width: 20%; text-align: center;">
<h5><span style="font-weight:bold">Time <br /> (Central Time)</span></h5>
</th>
<th class="border" style="width: 20%; text-align: center;">
<h5><span style="font-weight:bold">Session Chair</span></h5>
</th>
<th class="border" style="width: 60%; text-align: center;">
<h5><span style="font-weight:bold">Activity</span></h5>
</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>8:30 - 9:00 AM</strong></td>
<td rowspan="1"></td>
<td>Breakfast and Welcome Address<br />
<strong>Dr. Soumik Sarkar</strong>
</td>
</tr>
<tr>
<td><strong>9:00 - 9:45 AM</strong></td>
<td rowspan="3" style="text-align: center;"><strong>Dr. Arti Singh</strong></td>
<td><strong>Keynote</strong>: The Strength to Say “I Don't Know”: expanding neural networks to address out of distribution samples and ambiguous inputs<br />
<strong>Dr. Alina Zare</strong> - University of Florida
</td>
</tr>
<tr>
<td><strong>9:45 - 10:15 AM</strong></td>
<td><strong>Invited Talk 1</strong> <br />
<strong>Dr. Rick van de Zedde</strong> - Wageningen University & Research, The Netherlands
</td>
</tr>
<tr>
<td><strong>10:15 - 10:30 AM</strong></td>
<td>Break</td>
</tr>
<tr>
<td><strong>10:30 - 11:00 AM</strong></td>
<td rowspan="3" style="text-align: center;"><strong>Dr. Wei Guo</strong></td>
<td><strong>Invited Talk 2</strong>: DIY Plant Phenotyping: Application of digital phenotyping techniques in plant research and breeding<br />
<strong>Dr. Sachiko Isobe</strong> - The University of Tokyo, Japan
</td>
</tr>
<tr>
<td><strong>11:00 - 11:30 AM</strong></td>
<td><strong>Invited Talk 3</strong>: Navigation and Manipulation Challenges in Urban High Tunnels<br />
<strong>Girish Krishnan</strong> - University of Illinois
</td>
</tr>
<tr>
<td><strong>11:30 AM - 12:15 PM</strong></td>
<td>Flash Talks (12)</td>
</tr>
<tr>
<td><strong>12:15 - 12:45 PM</strong></td>
<td rowspan="1"></td>
<td>Lunch</td>
</tr>
<tr>
<td><strong>12:45 - 1:15 PM</strong></td>
<td rowspan="2" style="text-align: center;"><strong>Dr. Baskar Ganapathysubramanian</strong></td>
<td><strong>Lunch Plenary</strong>: (Really) Open AI for food security: Lessons for Lincoln from Lincoln<br />
<strong>Dr. David P. Hughes</strong> - The Pennsylvania State University
</td>
</tr>
<tr>
<td><strong>1:15 - 1:45 PM</strong></td>
<td><strong>Invited Talk 4</strong>: Advancing Crop Improvement From the Ground Up with ML-Driven Analysis of Root Systems and Soil Properties<br />
<strong>Dr. Nadia Shakoor</strong> - Donald Danforth Plant Science Center
</td>
</tr>
<tr>
<td><strong>1:45 - 3:00 PM</strong></td>
<td rowspan="1" style="text-align: center;"><strong>Dr. Soumik Sarkar</strong></td>
<td><strong>Panel Discussion</strong>: Translating AI-Ag Research into Practice<br />
<strong>Dr. Ryan Kirk</strong> - Head of Data Science, John Deere<br />
<strong>Siddarth Tata</strong> - Product Leader for Amazon Fresh Supply Chain (Grocery Program) and Amazon Kisan (Farmer Engagement Program)<br />
<strong>Meaghan Anderson</strong> - Field Agronomist in Central Iowa and Extension Field Specialist at Iowa State University Extension and Outreach<br />
<strong>Dr. Matthew Carroll</strong> - Analytics & Insights Lead, Iowa Soybean Association<br />
<strong>Dr. Pieter Blok</strong> - Assistant Professor, Lab of Field Phenomics, The University of Tokyo, Japan
</td>
</tr>
<tr>
<td><strong>3:00 - 3:15 PM</strong></td>
<td rowspan="1"></td>
<td>Break</td>
</tr>
<tr>
<td><strong>3:15 - 3:45 PM</strong></td>
<td rowspan="1" style="text-align: center;"><strong>Dr. James Schnable</strong></td>
<td>Competition Presentations and Award Ceremony</td>
</tr>
<tr>
<td><strong>3:45 - 5:00 PM</strong></td>
<td rowspan="1"></td>
<td>Poster Session, Networking and Sponsor Booths</td>
</tr>
</tbody>
</table>
<!-- <table class="table table-bordered">
<thead class="thead-light">
<tr>
<th class="border" style="width: 25%; text-align: center;">
<h5><span style="font-weight:bold">Time (Central Time)</span></h5>
</th>
<th class="border" style="width: 75%; text-align: center;">
<h5><span style="font-weight:bold">Activity</span></h5>
</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>8:30 - 9:00 AM</strong></td>
<td>Breakfast and Welcome Address<br />
<strong>Dr. Soumik Sarkar</strong>
</td>
</tr>
<tr>
<td><strong>9:00 - 9:45 AM</strong></td>
<td><strong>Keynote</strong>: The Strength to Say “I Don't Know”: expanding neural networks to address out of distribution samples and ambiguous inputs<br />
<strong>Dr. Alina Zare</strong> - University of Florida
</td>
</tr>
<tr>
<td><strong>9:45 - 10:15 AM</strong></td>
<td><strong>Invited Talk 1</strong> <br />
<strong>Dr. Rick van de Zedde</strong> - Wageningen University & Research, The Netherlands
</td>
</tr>
<tr>
<td><strong>10:15 - 10:30 AM</strong></td>
<td>Break</td>
</tr>
<tr>
<td><strong>10:30 - 11:00 AM</strong></td>
<td><strong>Invited Talk 2</strong>: DIY Plant Phenotyping: Application of digital phenotyping techniques in plant research and breeding<br />
<strong>Dr. Sachiko Isobe</strong> - The University of Tokyo, Japan
</td>
</tr>
<tr>
<td><strong>11:00 - 11:30 AM</strong></td>
<td><strong>Invited Talk 3</strong>: Navigation and Manipulation Challenges in Urban High Tunnels<br />
<strong>Girish Krishnan</strong> - University of Illinois
</td>
</tr>
<tr>
<td><strong>11:30 AM - 12:15 PM</strong></td>
<td>Flash Talks (12)</td>
</tr>
<tr>
<td><strong>12:15 - 12:45 PM</strong></td>
<td>Lunch</td>
</tr>
<tr>
<td><strong>12:45 - 1:15 PM</strong></td>
<td><strong>Lunch Plenary</strong>: (Really)Open AI for food security: Lessons for Lincoln from Lincoln<br />
<strong>David P. Hughes</strong> - The Pennsylvania State University
</td>
</tr>
<tr>
<td><strong>1:15 - 1:45 PM</strong></td>
<td><strong>Invited Talk 4</strong>: Advancing Crop Improvement From the Ground Up with ML-Driven Analysis of Root Systems and Soil Properties<br />
<strong> Nadia Shakoor</strong> - Donald Danforth Plant Science Center
</td>
</tr>
<tr>
<td><strong>1:45 - 3:00 PM</strong></td>
<td><strong>Panel Discussion</strong>: Translating AI-Ag Research into Practice<br />
<strong>Dr. Ryan Kirk</strong> - Head of Data Science, John Deere<br />
<strong>Siddarth Tata</strong> - Product Leader for Amazon Fresh Supply Chain (Grocery Program) and Amazon Kisan (Farmer Engagement Program)<br />
<strong>Meaghan Anderson</strong> - Field Agronomist in Central Iowa and Extension Field Specialist at Iowa State University Extension and Outreach<br />
<strong>Dr. Matthew Carroll</strong> - Analytics & Insights Lead, Iowa Soybean Association<br />
<strong>Dr. Pieter Blok</strong> - Assistant Professor, Lab of Field Phenomics, The University of Tokyo, Japan
</td>
</tr>
<tr>
<td><strong>3:00 - 3:15 PM</strong></td>
<td>Break</td>
</tr>
<tr>
<td><strong>3:15 - 3:45 PM</strong></td>
<td>Competition Presentations and Award Ceremony</td>
</tr>
<tr>
<td><strong>3:45 - 5:00 PM</strong></td>
<td>Poster Session, Networking and Sponsor Booths</td>
</tr>
</tbody>
</table> -->
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div>
<!-- <div class="ex-basic-1 bg-gray pt-5 pb-5">
<div class="container" id="proceedings">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading text-center">Proceedings</h2>
<h6 class="text-center text-muted">Coming soon</h6>
<h6 class="text-center text-muted">Time zone: <span id="proceed_tz"></span></h6>
</div>
</div>
</div>
</div> -->
<div class="ex-basic-1 pt-5 pb-5">
<div id="competition" class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading text-center">Competition</h2>
</div>
</div>
<div class="row">
<div class="col-xl-10 offset-xl-1">
<h5 class="mt-4">Topic</h5>
<!-- <h6 class="text-muted">Coming soon</h6> -->
<p class="mt-2">MLCAS Corn Yield Prediction Using Satellite Data</p>
<p class="mt-2">
The details for participation can be found <a href="https://eval.ai/web/challenges/challenge-page/2332/">here</a>.
</p>
<h5 class="mt-4" id="importantdates">Important Dates </h5>
<ul class="list-unstyled li-space-lg mt-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >July 1, 2024</strong>: Start Date</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >Aug 4, 2024</strong>: Team composition Deadline</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >Aug 18, 2024</strong>: Start of test phase</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >Aug 28, 2024</strong>: Final Submission Deadline</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >Sep 1, 2024</strong>: Announcement of Results</div>
</li>
</ul>
<h5 class="mt-4" id="importantdates">Award amounts </h5>
<ul class="list-unstyled li-space-lg mt-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >1st prize </strong>: $4000</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >2nd prize </strong>: $3000</div>
</li><li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >3rd prize</strong>: $2000</div>
</ul>
<h6 class="mt-4">Note</h6>
<p class="mt-2">In addition to the awards listed above, an additional prize of $1000 may be awarded to the top team comprising only undergraduate or high school students that is not among the top 3 teams overall. </p>
<p class="mt-2">At least one member from a winning team is expected to attend MLCAS 2024 in-person to present their work and participate in the award ceremony. In addition to the cash prizes listed above, one member from each winning team will receive a free registration for MLCAS 2024. If no team member is able to attend in-person due to VISA or other travel issues, the team is encouraged to contact the MLCAS 2024 organizers to discuss their eligibility to win a prize.</p>
<h5 class="mt-4">Disclaimer</h5>
<p class="mt-2">Paricipant teams must finalize their team members before the composition deadline on August 4.
teams joining after August 4 cannot change their team member composition during the competition phase. Prizes will be awarded to the winning teams. Funds will be paid in the most efficient manner,
typically a check to winners living in the US with payment to each team member (up to 5 participants maximum).
The team contact can suggest the distribution for the team members.
If a team has more than five participants, five or fewer participants need to be identified to receive the prize money.
For teams outside the US, prize money will be wired to a single individual representing the team. We will need full wire instructions in an appropriate format.
Please note that there will be a wire fee on the receiving end of the transaction based on the recipient's bank/financial institution.
At this time, we are unable to send wires to Iran, Cuba, North Korea, or Syria, therefore no prizes will be awarded there.
Please note that prizes are tax reportable in the United States. Tax forms are required for payment recipients.
US Citizens or permanent US residents: Form W9 including social security number and Foreign individuals: Form W-8BEN.</p>
<h5 class="mt-4" id="importantdates">Contacts </h5>
<p class="mt-2">For details regarding the competition, please contact us:
</p>
<ul class="list-unstyled li-space-lg mt-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >Timilehin Ayanlade</strong>, Translational AI Center, Iowa State University: ayanlade@iastate.edu</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong >Nikee Shrestha</strong>, Center for Plant Science Innovation, University of Nebraska-Lincoln: nshrestha5@huskers.unl.edu</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="ex-basic-1 bg-light pt-4 pb-2">
<div class="container" id="sponsorship">
<div class="row">
<div class="col-lg-12 pb-3">
<h2 class="h2-heading text-center">Sponsorship Information</h2>
</div>
<div class="col-xl-10 offset-xl-1">
<ul class="list-unstyled li-space-lg mb-3">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Gold sponsors</strong> -- $10K, 4 free registrations, 1 sponsor table/booth</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Silver sponsors</strong> -- $5K, 2 free registrations, 1 sponsor table/booth</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body"><strong>Bronze sponsors</strong> -- $2K, 1 free registration</div>
</li>
</ul>
</div>
<div class="col-lg-12">
<div class="icons-container text-center">
<img src="images/TRAC_Logo.png" alt="Translational AI Center Logo" height="90hv" class="m-2" onclick="javascript:window.open('https://trac-ai.iastate.edu/', '_blank');">
<img src="images/aiira-logo-with-text-light-bg.png" alt="AI Institute for Resilient Agriculture" height="90hv" class="m-2" onclick="javascript:window.open('https://aiira.iastate.edu/', '_blank');">
<img src="images/COALESCE_logo.png" alt="COntext-Aware LEarning for Sustainable CybEr-agricultural (COALESCE) systems" height="90hv" class="m-2" onclick="javascript:window.open('https://sites.google.com/view/coalescepreview', '_blank');">
<img src="images/a2pi.png" alt="Agricultural Genome to Phenome Initiative" height="90hv" class="m-2" onclick="javascript:window.open('https://sites.google.com/view/coalescepreview', '_blank');">
<img src="images/nsf_logo.png" alt="National Science Foundation" height="90hv" class="m-2" onclick="javascript:window.open('https://www.nsf.gov/', '_blank');">
<img src="images/nifa-color-lockup-4x.png" alt="National Institute of Food and Agriculture United States Department Of Agriculture" height="50hv" class="m-2" onclick="javascript:window.open('https://www.nifa.usda.gov/', '_blank');">
<img src="images/jst_logo.svg" alt="Japan Science and Technology Agency Logo" height="80hv" class="m-2" onclick="javascript:window.open('https://www.jst.go.jp/EN/', '_blank');">
<img src="images/sarabetsu.jpg" alt="Sarabetsu Super Village" height="80hv" class="m-2" onclick="javascript:window.open('https://super-village.net/', '_blank');">
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->