-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1449 lines (1424 loc) · 122 KB
/
index.html
File metadata and controls
1449 lines (1424 loc) · 122 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dr. Innocent Nyalala | AI Researcher, Assistant Professor | IIT Madras Zanzibar | SAAIL Lab</title>
<meta name="title" content="Dr. Innocent Nyalala - AI Researcher, Data Science & AI Professor at IIT Madras Zanzibar">
<meta name="description" content="Dr. Innocent Nyalala - Assistant Professor of Data Science & AI at IIT Madras Zanzibar, Associate Research Fellow at Wadhwani School IITM Chennai, Principal Investigator of SAAIL Lab. Expert in AI for Agriculture, Healthcare AI, Computer Vision, Machine Learning in East Africa. 30+ publications, 1,047+ citations, h-index 15.">
<meta name="keywords" content="Innocent Nyalala, Dr. Innocent Nyalala, IIT Madras Zanzibar, Wadhwani School of Data Science and AI, SAAIL Lab, AI in Agriculture, Agricultural AI, AI East Africa, AI Tanzania, AI Zanzibar, Data Science Professor, Machine Learning Agriculture, Computer Vision Agriculture, Healthcare AI Africa, Precision Agriculture AI, Deep Learning Agriculture, Smart Farming AI, Crop Disease Detection, Medical Imaging AI, Swahili NLP, Responsible AI Africa, IIT Madras faculty, Zanzibar university, Data Science Zanzibar, AI research Africa, Agricultural Technology, Sustainable AI, Digital Agriculture, Farm Technology, AgriTech AI">
<meta name="author" content="Dr. Innocent Nyalala">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<meta name="googlebot" content="index, follow">
<meta name="geo.region" content="TZ-15">
<meta name="geo.placename" content="Zanzibar">
<meta name="geo.position" content="-6.295379;39.284731">
<meta name="ICBM" content="-6.295379, 39.284731">
<!-- Security Headers -->
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN">
<meta http-equiv="Permissions-Policy" content="geolocation=(), microphone=(), camera=()">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://www.googletagmanager.com https://cdnjs.cloudflare.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://cdnjs.cloudflare.com; font-src 'self' https://fonts.gstatic.com https://cdnjs.cloudflare.com; img-src 'self' data: https: https://visitor-badge.laobi.icu https://img.shields.io https://komarev.com; connect-src 'self' https://www.google-analytics.com https://region1.google-analytics.com; frame-src https://www.google.com">
<link rel="alternate" hreflang="en" href="https://inyalala.github.io/">
<link rel="alternate" hreflang="sw" href="https://inyalala.github.io/?lang=sw">
<link rel="alternate" hreflang="zh" href="https://inyalala.github.io/?lang=zh">
<link rel="alternate" hreflang="x-default" href="https://inyalala.github.io/">
<meta property="og:type" content="profile">
<meta property="og:url" content="https://inyalala.github.io/">
<meta property="og:site_name" content="Dr. Innocent Nyalala - AI Researcher">
<meta property="og:title" content="Dr. Innocent Nyalala | AI for Agriculture & Healthcare | IIT Madras Zanzibar">
<meta property="og:description" content="Assistant Professor of Data Science & AI at IIT Madras Zanzibar | Principal Investigator of SAAIL Lab | Expert in AI for Agriculture, Healthcare AI, Computer Vision | 1,081+ citations, 30+ publications | Transforming East African agriculture through ethical AI innovation.">
<meta property="og:image" content="https://inyalala.github.io/images/og-banner.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Dr. Innocent Nyalala — AI Researcher & Assistant Professor, IIT Madras Zanzibar">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://inyalala.github.io/images/og-banner.png">
<meta property="og:locale" content="en_US">
<meta property="profile:first_name" content="Innocent">
<meta property="profile:last_name" content="Nyalala">
<meta property="profile:username" content="inyalala">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://inyalala.github.io/">
<meta property="twitter:title" content="Dr. Innocent Nyalala | AI for Agriculture & Healthcare | IIT Madras Zanzibar">
<meta property="twitter:description" content="Assistant Professor of Data Science & AI | Principal Investigator SAAIL Lab | Expert in AI for Agriculture & Healthcare in East Africa | 960+ citations">
<meta property="twitter:image" content="https://inyalala.github.io/images/Photo.webp">
<meta property="twitter:creator" content="@inyalala">
<link rel="canonical" href="https://inyalala.github.io/">
<link rel="alternate" type="application/rss+xml" title="Dr. Innocent Nyalala — Latest News & Publications" href="https://inyalala.github.io/feed.xml">
<meta name="theme-color" content="#0066cc">
<meta name="category" content="Academic, AI Research, Data Science, East Africa">
<meta name="rating" content="general">
<meta name="revisit-after" content="7 days">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<!-- Progressive Web App -->
<link rel="manifest" href="/manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="I. Nyalala">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icon-192x192.png">
<meta name="msapplication-TileColor" content="#0066cc">
<meta name="msapplication-TileImage" content="/assets/icon-144x144.png">
<meta name="msapplication-config" content="/browserconfig.xml">
<!-- Performance Optimization -->
<!-- Critical CSS inlined for faster initial render -->
<link rel="preload" href="css/modern.css" as="style">
<link rel="preload" href="images/Photo.webp" as="image">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="https://www.googletagmanager.com">
<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=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="css/modern.css">
<link rel="stylesheet" href="css/print.css" media="print">
<noscript><link rel="stylesheet" href="css/modern.css"></noscript>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BM25HEGWNW"></script>
<script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag('js',new Date());gtag('config','G-BM25HEGWNW')</script>
<script defer src="js/image-optimization.js"></script>
<script defer src="js/pwa-register.js"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://inyalala.github.io/#person",
"name": "Dr. Innocent Nyalala",
"givenName": "Innocent",
"familyName": "Nyalala",
"honorificPrefix": "Dr.",
"url": "https://inyalala.github.io",
"image": {
"@type": "ImageObject",
"url": "https://inyalala.github.io/images/Photo.webp",
"width": 800,
"height": 800
},
"jobTitle": ["Assistant Professor of Data Science and AI", "Associate Research Fellow", "Principal Investigator"],
"worksFor": [
{
"@type": "CollegeOrUniversity",
"name": "IIT Madras Zanzibar",
"url": "https://www.iitmz.ac.in",
"address": {
"@type": "PostalAddress",
"streetAddress": "Bweleo",
"addressLocality": "Zanzibar",
"addressCountry": "Tanzania"
}
},
{
"@type": "Organization",
"name": "Wadhwani School of Data Science & AI",
"url": "https://wsai.iitm.ac.in",
"parentOrganization": {
"@type": "CollegeOrUniversity",
"name": "IIT Madras Chennai",
"url": "https://www.iitm.ac.in"
}
}
],
"affiliation": [
{
"@type": "Organization",
"name": "SAAIL Lab",
"url": "https://saaillab.github.io",
"description": "Sustainable AI for Agriculture & Intelligent Livelihoods"
}
],
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "Nanjing Agricultural University",
"url": "https://www.njau.edu.cn"
},
{
"@type": "CollegeOrUniversity",
"name": "Kabarak University",
"url": "https://kabarak.ac.ke"
}
],
"knowsAbout": ["Artificial Intelligence", "Machine Learning", "Deep Learning", "Computer Vision", "Agricultural AI", "Healthcare AI", "Natural Language Processing", "Data Science", "Precision Agriculture", "Medical Imaging", "IoT", "Blockchain", "Responsible AI"],
"description": "Assistant Professor of Data Science & AI at IIT Madras Zanzibar, Associate Research Fellow at Wadhwani School of Data Science & AI, and Principal Investigator of SAAIL Lab. Expert in AI for agriculture and healthcare in East Africa with 960+ citations and 23+ publications.",
"email": "innocent@iitmz.ac.in",
"telephone": ["+255-753-864-855", "+254-791-349-216"],
"address": {
"@type": "PostalAddress",
"streetAddress": "Office 105, Door F6, IIT Madras Zanzibar Campus",
"addressLocality": "Zanzibar",
"postalCode": "71101",
"addressCountry": "TZ"
},
"sameAs": [
"https://www.linkedin.com/in/innocentnyalala/",
"https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en",
"https://github.com/inyalala",
"https://orcid.org/0000-0002-7969-437X",
"https://www.researchgate.net/profile/Innocent-Nyalala",
"https://saaillab.github.io/"
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Degree",
"name": "PhD in Engineering",
"educationalLevel": "Doctoral",
"about": "Agricultural Electrification & Automation",
"recognizedBy": {
"@type": "CollegeOrUniversity",
"name": "Nanjing Agricultural University"
}
}
],
"interactionStatistic": [
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/WriteAction",
"userInteractionCount": 23,
"description": "Publications"
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/QuoteAction",
"userInteractionCount": 960,
"description": "Citations"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://saaillab.github.io/#organization",
"name": "SAAIL Lab",
"alternateName": "Sustainable AI for Agriculture & Intelligent Livelihoods",
"url": "https://saaillab.github.io",
"logo": "https://inyalala.github.io/images/saail-logo1.webp",
"description": "Leading transformative AI research for East Africa through ethical innovation, sustainable development, and cutting-edge technology. Developing AI solutions that address critical challenges in agriculture and healthcare across the African continent.",
"foundingDate": "2025-06",
"founder": {
"@type": "Person",
"name": "Dr. Innocent Nyalala",
"@id": "https://inyalala.github.io/#person"
},
"parentOrganization": {
"@type": "CollegeOrUniversity",
"name": "IIT Madras Zanzibar",
"url": "https://www.iitmz.ac.in"
},
"areaServed": ["East Africa", "Tanzania", "Kenya", "Africa", "China", "Nanjing", "Nanjing Agricultural University"],
"knowsAbout": ["AI in Agriculture", "Precision Agriculture", "Healthcare AI", "Deep Learning", "Computer Vision", "Swahili NLP", "Responsible AI", "Blockchain for Agriculture"]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"@id": "https://inyalala.github.io/#website",
"url": "https://inyalala.github.io",
"name": "Dr. Innocent Nyalala - AI Researcher",
"description": "Official website of Dr. Innocent Nyalala, Assistant Professor of Data Science & AI at IIT Madras Zanzibar",
"inLanguage": "en-US",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://inyalala.github.io/?s={search_term_string}"
},
"query-input": "required name=search_term_string"
}
}
</script>
<!-- ScholarlyArticle structured data for top publications -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Selected Publications — Dr. Innocent Nyalala",
"itemListElement": [
{
"@type": "ScholarlyArticle",
"position": 1,
"headline": "A review on computer vision systems in monitoring of poultry: A welfare perspective",
"author": [
{ "@type": "Person", "name": "Cedric Okinda" },
{ "@type": "Person", "name": "Innocent Nyalala", "@id": "https://inyalala.github.io/#person" },
{ "@type": "Person", "name": "T. Korohou" },
{ "@type": "Person", "name": "L. Nyalala" },
{ "@type": "Person", "name": "K. Chen" }
],
"datePublished": "2020",
"citationCount": 206,
"isPartOf": { "@type": "Periodical", "name": "Artificial Intelligence in Agriculture", "issn": "2589-7217" },
"url": "https://doi.org/10.1016/j.aiia.2020.09.002",
"identifier": { "@type": "PropertyValue", "propertyID": "DOI", "value": "10.1016/j.aiia.2020.09.002" },
"keywords": ["Poultry", "Computer Vision", "Animal Welfare", "Agriculture AI"]
},
{
"@type": "ScholarlyArticle",
"position": 2,
"headline": "A machine vision system for early detection and prediction of sick birds: A broiler chicken model",
"author": [
{ "@type": "Person", "name": "Cedric Okinda" },
{ "@type": "Person", "name": "Mingzhou Lu" },
{ "@type": "Person", "name": "Longshen Liu" },
{ "@type": "Person", "name": "Innocent Nyalala", "@id": "https://inyalala.github.io/#person" },
{ "@type": "Person", "name": "Mingxia Shen" }
],
"datePublished": "2019",
"citationCount": 179,
"isPartOf": { "@type": "Periodical", "name": "Biosystems Engineering", "issn": "1537-5110" },
"url": "https://doi.org/10.1016/j.biosystemseng.2019.09.015",
"identifier": { "@type": "PropertyValue", "propertyID": "DOI", "value": "10.1016/j.biosystemseng.2019.09.015" },
"keywords": ["Poultry", "Disease Detection", "Computer Vision", "Machine Vision"]
},
{
"@type": "ScholarlyArticle",
"position": 3,
"headline": "Tomato volume and mass estimation using computer vision and machine learning algorithms: Cherry tomato model",
"author": [
{ "@type": "Person", "name": "Innocent Nyalala", "@id": "https://inyalala.github.io/#person" },
{ "@type": "Person", "name": "C. Okinda" },
{ "@type": "Person", "name": "M. Kunjie" },
{ "@type": "Person", "name": "K. Chen" }
],
"datePublished": "2019",
"citationCount": 174,
"isPartOf": { "@type": "Periodical", "name": "Journal of Food Engineering", "issn": "0260-8774" },
"url": "https://doi.org/10.1016/j.jfoodeng.2019.07.012",
"identifier": { "@type": "PropertyValue", "propertyID": "DOI", "value": "10.1016/j.jfoodeng.2019.07.012" },
"keywords": ["Tomato", "Volume Estimation", "Machine Learning", "Food Engineering"]
},
{
"@type": "ScholarlyArticle",
"position": 4,
"headline": "Weight and volume estimation of poultry and products based on computer vision systems: a review",
"author": [
{ "@type": "Person", "name": "Innocent Nyalala", "@id": "https://inyalala.github.io/#person" },
{ "@type": "Person", "name": "C. Okinda" },
{ "@type": "Person", "name": "K. Chen" },
{ "@type": "Person", "name": "T. Korohou" }
],
"datePublished": "2021",
"citationCount": 130,
"isPartOf": { "@type": "Periodical", "name": "Poultry Science", "issn": "0032-5791" },
"url": "https://doi.org/10.1016/j.psj.2021.101072",
"identifier": { "@type": "PropertyValue", "propertyID": "DOI", "value": "10.1016/j.psj.2021.101072" },
"keywords": ["Poultry", "Weight Estimation", "Computer Vision", "Review"]
},
{
"@type": "ScholarlyArticle",
"position": 5,
"headline": "Rectifying the extremely weakened signals for cassava leaf disease detection",
"author": [
{ "@type": "Person", "name": "Jiayu Zhang" },
{ "@type": "Person", "name": "Baohua Zhang" },
{ "@type": "Person", "name": "Innocent Nyalala", "@id": "https://inyalala.github.io/#person" },
{ "@type": "Person", "name": "Peter Mecha" },
{ "@type": "Person", "name": "Kunjie Chen" }
],
"datePublished": "2025",
"isPartOf": { "@type": "Periodical", "name": "Computers and Electronics in Agriculture", "issn": "0168-1699" },
"url": "https://doi.org/10.1016/j.compag.2025.110107",
"identifier": { "@type": "PropertyValue", "propertyID": "DOI", "value": "10.1016/j.compag.2025.110107" },
"keywords": ["Cassava", "Disease Detection", "Deep Learning", "Agriculture AI"]
}
]
}
</script>
<!-- Breadcrumb Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://inyalala.github.io/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Research",
"item": "https://inyalala.github.io/#research"
},
{
"@type": "ListItem",
"position": 3,
"name": "Publications",
"item": "https://inyalala.github.io/#publications"
},
{
"@type": "ListItem",
"position": 4,
"name": "Contact",
"item": "https://inyalala.github.io/#contact"
}
]
}
</script>
<!-- FAQ Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is Dr. Innocent Nyalala's research focus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Dr. Innocent Nyalala focuses on AI for Agriculture and Healthcare in East Africa, including precision agriculture, crop disease detection, medical imaging, and Swahili NLP."
}
},
{
"@type": "Question",
"name": "Where is Dr. Innocent Nyalala currently working?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Assistant Professor at IIT Madras Zanzibar and Associate Research Fellow at Wadhwani School of Data Science & AI, IIT Madras Chennai."
}
},
{
"@type": "Question",
"name": "What is SAAIL Lab?",
"acceptedAnswer": {
"@type": "Answer",
"text": "SAAIL Lab (Sustainable AI for Agriculture & Intelligent Livelihoods) is a research laboratory led by Dr. Nyalala, developing AI solutions for agriculture and healthcare challenges in East Africa."
}
},
{
"@type": "Question",
"name": "How many publications does Dr. Innocent Nyalala have?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Dr. Nyalala has 30+ publications with 1,081+ citations, h-index of 15, and i10-index of 16."
}
}
]
}
</script>
</head>
<body>
<a href="#profile" class="skip-link" style="position:fixed;top:10px;left:10px;transform:translateY(-200px);opacity:0;pointer-events:none;">Skip to main content</a>
<div class="loading" id="loading">
<div class="loading-content">
<div class="loading-icon">
<i class="fas fa-brain"></i>
</div>
<div class="loading-text">Dr. Innocent Nyalala</div>
<div class="loading-spinner"></div>
<div class="loading-subtext">AI Researcher & Assistant Professor</div>
</div>
</div>
<div class="scroll-progress" id="scrollProgress"></div>
<div class="theme-toggle" id="themeToggle" aria-label="Toggle dark/light mode"><i class="fas fa-moon"></i><i class="fas fa-sun"></i></div>
<header>
<nav class="navbar" id="navbar">
<div class="container">
<a href="#" class="nav-brand">Innocent Nyalala</a>
<ul class="nav-menu" id="navMenu">
<li><a href="#profile" class="nav-link active"><i class="fas fa-user"></i><span data-i18n="nav.profile">Profile</span></a></li>
<li><a href="#news" class="nav-link"><i class="fas fa-newspaper"></i><span data-i18n="nav.news">News</span></a></li>
<li><a href="#research" class="nav-link"><i class="fas fa-flask"></i><span data-i18n="nav.research">Research</span></a></li>
<li><a href="#publications" class="nav-link"><i class="fas fa-book"></i><span data-i18n="nav.publications">Publications</span></a></li>
<li><a href="publications/" class="nav-link" style="background:rgba(0,102,204,0.1);border-radius:var(--radius-full)"><i class="fas fa-list-ul"></i><span data-i18n="nav.fullList">Full List</span></a></li>
<li><a href="#conferences" class="nav-link"><i class="fas fa-users"></i><span data-i18n="nav.conferences">Conferences</span></a></li>
<li><a href="#teaching" class="nav-link"><i class="fas fa-chalkboard-teacher"></i><span data-i18n="nav.teaching">Teaching</span></a></li>
<li><a href="#contact" class="nav-link"><i class="fas fa-envelope"></i><span data-i18n="nav.contact">Contact</span></a></li>
</ul>
<div class="nav-toggle" id="navToggle"><span></span><span></span><span></span></div>
</div>
</nav>
</header>
<main>
<section id="profile" class="hero section">
<div class="hero-content">
<div class="hero-image"><img src="images/Photo.webp" alt="Innocent Nyalala" loading="eager"></div>
<h1 class="hero-title">Dr. Innocent Nyalala</h1>
<p class="hero-subtitle" data-i18n="hero.subtitle">AI Researcher & Assistant Professor of Data Science and AI</p>
<p class="hero-affiliation"><a href="https://www.iitmz.ac.in/schools/engineering-and-science#faculty" target="_blank" rel="noopener noreferrer"><i class="fas fa-university"></i> <span data-i18n="hero.affiliation1">School of Engineering and Science, IIT Madras Zanzibar</span></a></p>
<p class="hero-affiliation" style="margin-top:0.5rem"><a href="https://wsai.iitm.ac.in/" target="_blank" rel="noopener noreferrer"><i class="fas fa-flask"></i> <span data-i18n="hero.affiliation2">Associate Research Fellow, Wadhwani School of Data Science & AI, IIT Madras Chennai</span></a></p>
<div class="lab-badge"><a href="https://saaillab.github.io/" target="_blank" rel="noopener noreferrer"><i class="fas fa-seedling"></i><span data-i18n="hero.lab">Principal Investigator, SAAIL Lab</span><i class="fas fa-external-link-alt" style="font-size:0.75rem;opacity:0.7"></i></a></div>
<div class="stats-row">
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer" class="stat-item" style="text-decoration:none;cursor:pointer" title="View publications on Google Scholar"><div class="stat-number">30+</div><div class="stat-label" data-i18n="stats.publications">Publications</div></a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer" class="stat-item" style="text-decoration:none;cursor:pointer" title="View live citation count on Google Scholar"><div class="stat-number">1,081+</div><div class="stat-label" data-i18n="stats.citations">Citations</div></a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer" class="stat-item" style="text-decoration:none;cursor:pointer" title="View h-index on Google Scholar"><div class="stat-number">15</div><div class="stat-label" data-i18n="stats.hindex">h-index</div></a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer" class="stat-item" style="text-decoration:none;cursor:pointer" title="View i10-index on Google Scholar"><div class="stat-number">16</div><div class="stat-label" data-i18n="stats.i10index">i10-index</div></a>
</div>
<p class="hero-bio" data-i18n="hero.bio">I am passionate about leveraging <strong>Artificial Intelligence</strong>, <strong>Machine Learning</strong>, and <strong>Deep Learning</strong> to create positive real-world impact, particularly in <strong>agriculture</strong> and <strong>healthcare</strong> across <strong>East Africa</strong>. As the Principal Investigator of <strong>SAAIL Lab</strong> (Sustainable AI for Agriculture & Intelligent Livelihoods) at <strong>IIT Madras Zanzibar</strong>, I lead research developing transformative <strong>AI solutions for agriculture</strong>, <strong>precision farming</strong>, <strong>crop disease detection</strong>, <strong>healthcare AI</strong>, and <strong>medical imaging</strong> in <strong>Tanzania</strong>, <strong>Kenya</strong>, and across the <strong>African continent</strong> through ethical innovation and sustainable development.</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/innocentnyalala/" class="social-link" aria-label="LinkedIn" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin-in"></i></a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" class="social-link" aria-label="Google Scholar" target="_blank" rel="noopener noreferrer"><i class="fas fa-graduation-cap"></i></a>
<a href="https://github.com/inyalala" class="social-link" aria-label="GitHub" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
<a href="https://orcid.org/0000-0002-7969-437X" class="social-link" aria-label="ORCID" target="_blank" rel="noopener noreferrer"><i class="fab fa-orcid"></i></a>
<a href="https://www.researchgate.net/profile/Innocent-Nyalala" class="social-link" aria-label="ResearchGate" target="_blank" rel="noopener noreferrer"><i class="fab fa-researchgate"></i></a>
</div>
<div class="hero-buttons">
<a href="https://drive.google.com/drive/folders/1CbcLd6g3chAAzOIp5gescR7A0eQFuYYj?usp=sharing" class="btn btn-light" target="_blank" rel="noopener noreferrer"><i class="fas fa-eye"></i> <span data-i18n="btn.downloadCV">View CV</span></a>
<a href="https://saaillab.github.io/" class="btn btn-light" target="_blank" rel="noopener noreferrer"><i class="fas fa-flask"></i> <span data-i18n="btn.visitLab">Visit SAAIL Lab</span></a>
</div>
</div>
</section>
<section id="news" class="section section-alt">
<div class="container">
<div class="section-header"><h2 class="section-title" data-i18n="section.news.title">Latest News</h2><p class="section-subtitle" data-i18n="section.news.subtitle">Recent updates, achievements, and announcements</p></div>
<div class="news-slider-container" role="region" aria-label="Latest news and achievements carousel">
<button class="news-slider-btn news-slider-btn-prev" aria-label="Previous news" aria-controls="news-slider"><i class="fas fa-chevron-left" aria-hidden="true"></i></button>
<div class="news-slider-wrapper">
<div class="news-slider" id="news-slider" role="list" aria-live="polite" aria-atomic="false">
<!-- CVPR 2026 — June 2026 (newest) -->
<div class="news-slide" role="listitem" aria-label="News item 1 of 9">
<a href="https://openreview.net/pdf?id=V1UbAtXS4M" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/cvpr-cloves-2026.webp" alt="CVPR 2026 V4A Workshop — CLOVES-4603 Paper Acceptance" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> Apr 2026</div><h3 class="news-title" data-i18n="news.cvpr2026.title">🎉 SAAIL Lab Paper Accepted at CVPR 2026 — Vision for Agriculture Workshop, Denver</h3><p class="news-excerpt" data-i18n="news.cvpr2026.excerpt">CLOVES-4603: the first public benchmark dataset for clove quality grading — 4,603 images, 99.67% deep learning accuracy. A proud moment for SAAIL Lab at one of AI's most prestigious venues.</p><div class="news-footer"><span class="news-tag" style="background:rgba(130,20,20,0.12);color:#821414">CVPR 2026 · V4A</span><span class="news-link-icon"><i class="fas fa-file-pdf"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 2 of 9">
<a href="https://www.linkedin.com/posts/iitmzanzibar_trustworthyaiworkshop-iclr2026-trustworthyai-activity-7436630440158912512-rn3H" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/iclr-2026-trustworthy-ai.webp" alt="ICLR 2026 Paper Acceptance - Trustworthy AI Workshop" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> April 2026</div><h3 class="news-title" data-i18n="news.iclr2026.title">Paper Accepted at ICLR 2026 — Trustworthy AI Workshop, Rio de Janeiro</h3><p class="news-excerpt" data-i18n="news.iclr2026.excerpt">Can one framework make AI fairer, more robust, and more generalizable at once? SAAIL Lab's accepted paper at ICLR 2026's Trustworthy AI Workshop says yes — and shows exactly how.</p><div class="news-footer"><span class="news-tag" style="background:rgba(130,20,20,0.12);color:#821414">ICLR 2026</span><span class="news-link-icon"><i class="fab fa-linkedin-in"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 2 of 8">
<a href="https://www.linkedin.com/posts/artificialintelligence4africa_ai4africa-weeklyresearchspotlight-aiagriculture-activity-7443263297165987840--I9m" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/cara-fm-dli-spotlight.webp" alt="AI4Africa Weekly Research Spotlight — CARA-FM Framework" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> April 2026</div><h3 class="news-title" data-i18n="news.carafm.title">CARA-FM Poster — Best Poster at DLI 2025, Featured by AI4Africa</h3><p class="news-excerpt" data-i18n="news.carafm.excerpt">What if AI was built for Africa from the ground up? This award-winning poster at Deep Learning Indaba 2025 caught the attention of AI4Africa's global network. See why it's sparking conversations about the future of AI on the continent.</p><div class="news-footer"><span class="news-tag" style="background:rgba(0,102,204,0.12);color:#004c99">AI4Africa Feature</span><span class="news-link-icon"><i class="fab fa-linkedin-in"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 3 of 9">
<a href="https://www.linkedin.com/posts/iitmzanzibar_artificialintelligence-deeplearning-agritech-activity-7443156335917137920-fvvi" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/eac-sti-2026-clove-grading.webp" alt="EAC STI Conference 2026 - Clove Quality Grading" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> March 2026</div><h3 class="news-title" data-i18n="news.eacsti.title">Paper at 4th EAC STI Conference — Kigali, Rwanda · Travel Grant $980</h3><p class="news-excerpt" data-i18n="news.eacsti.excerpt">Zanzibar's most valuable spice — graded by AI for the first time. Built with farmers, not just for them. This work earned a competitive travel grant and a stage in Kigali to tell Africa's story.</p><div class="news-footer"><span class="news-tag" style="background:rgba(0,120,60,0.12);color:#006030">EAC STI 2026</span><span class="news-link-icon"><i class="fab fa-linkedin-in"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 4 of 9">
<a href="https://link.springer.com/journal/44163/editorial-board" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/discover-ai-editorialdiscover-ai-editorial.webp" alt="Editorial Board Member - Discover Artificial Intelligence" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> December 2025</div><h3 class="news-title" data-i18n="news.editorial.title">Appointed as Editorial Board Member - Discover Artificial Intelligence</h3><p class="news-excerpt" data-i18n="news.editorial.excerpt">Honored to join the editorial board of Discover Artificial Intelligence, a Springer Nature open access journal advancing AI research and innovation.</p><div class="news-footer"><span class="news-tag" data-i18n="news.tag.academicService">Academic Service</span><span class="news-link-icon"><i class="fas fa-external-link-alt"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 5 of 9">
<a href="https://fumba.town/wp-content/uploads/2025/12/the-fumba-times-issue-26-dec-2025-feb-2026.pdf" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/fumba-times-mosquito-hunt.webp" alt="Fumba Times Article" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> December 2025</div><h3 class="news-title" data-i18n="news.fumba.title">Featured in Fumba Times: The Final Mosquito Hunt</h3><p class="news-excerpt" data-i18n="news.fumba.excerpt">Published article highlighting how AI is helping Zanzibar achieve malaria elimination through innovative technology and smart mosquito traps.</p><div class="news-footer"><span class="news-tag" data-i18n="news.tag.media">Media</span><span class="news-link-icon"><i class="fas fa-external-link-alt"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 6 of 9">
<a href="https://indianexpress.com/article/education/iit-madras-zanzibar-campus-first-degree-distribution-ceremony-data-science-artificial-intelligence-batch-2025-jee-main-advanced-10134226/?ref=inyalala" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/graduation.webp" alt="IIT Madras Zanzibar Graduation Ceremony" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> July 2025</div><h3 class="news-title" data-i18n="news.graduation.title">IIT Madras Zanzibar First Degree Distribution Ceremony Featured in Indian Express</h3><p class="news-excerpt" data-i18n="news.graduation.excerpt">Historic graduation ceremony as IIT Madras Zanzibar celebrates its inaugural MTech Data Science and AI batch. Read the full coverage.</p><div class="news-footer"><span class="news-tag" data-i18n="news.tag.mediaCoverage">Media Coverage</span><span class="news-link-icon"><i class="fas fa-external-link-alt"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 7 of 9">
<a href="https://doi.org/10.1016/j.compag.2025.110107" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/Publicaiton_compag.webp" alt="New Publication" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> May 2025</div><h3 class="news-title" data-i18n="news.compag.title">New Publication in Computers and Electronics in Agriculture</h3><p class="news-excerpt" data-i18n="news.compag.excerpt">Our paper on "Rectifying the extremely weakened signals for cassava leaf disease detection" published (IF: 7.7).</p><div class="news-footer"><span class="news-tag" data-i18n="news.tag.publication">Publication</span><span class="news-link-icon"><i class="fas fa-external-link-alt"></i></span></div></div></a>
</div>
<div class="news-slide" role="listitem" aria-label="News item 8 of 9">
<a href="https://www.linkedin.com/feed/update/urn:li:activity:7251613483815821312/?ref=inyalala" target="_blank" rel="noopener noreferrer" class="news-card news-card-link"><div class="news-image"><img src="images/iit_join_Oct2024.webp" alt="Joined IIT Madras" onerror="this.style.display='none'"></div><div class="news-content"><div class="news-date"><i class="fas fa-calendar"></i> October 2024</div><h3 class="news-title" data-i18n="news.joinIITMZ.title">Joined IIT Madras Zanzibar as Assistant Professor</h3><p class="news-excerpt" data-i18n="news.joinIITMZ.excerpt">Thrilled to join IIT Madras Zanzibar Campus as Assistant Professor of Data Science & AI, establishing SAAIL Lab for transformative AI research in East Africa.</p><div class="news-footer"><span class="news-tag" data-i18n="news.tag.careerMilestone">Career Milestone</span><span class="news-link-icon"><i class="fas fa-external-link-alt"></i></span></div></div></a>
</div>
</div>
</div>
<button class="news-slider-btn news-slider-btn-next" aria-label="Next news" aria-controls="news-slider"><i class="fas fa-chevron-right" aria-hidden="true"></i></button>
</div>
<div class="news-slider-dots" role="tablist" aria-label="News slider navigation"></div>
</div>
</section>
<section class="section">
<div class="container">
<div class="lab-highlight animate-on-scroll">
<div style="display:inline-block;background:linear-gradient(135deg,#ffffff,#f8f9fa);padding:clamp(15px,4vw,30px) clamp(25px,6vw,50px);border-radius:16px;margin-bottom:var(--space-xl);box-shadow:0 4px 20px rgba(0,0,0,0.08);max-width:90%"><img src="images/saail-logo1.webp" alt="SAAIL Lab Logo" style="width:100%;max-width:320px;height:auto;display:block"></div>
<p style="max-width:800px;margin:0 auto var(--space-lg);font-size:1.1rem;line-height:1.8" data-i18n="lab.description">Leading transformative AI research for East Africa through ethical innovation, sustainable development, and cutting-edge technology. Our mission is to develop AI solutions that address critical challenges in agriculture and healthcare across the African continent.</p>
<div class="tags" style="justify-content:center;margin-bottom:var(--space-lg)"><span class="tag"><i class="fas fa-leaf"></i> <span data-i18n="lab.tag.precisionAg">Precision Agriculture</span></span><span class="tag"><i class="fas fa-heartbeat"></i> <span data-i18n="lab.tag.healthcareAI">Healthcare AI</span></span><span class="tag"><i class="fas fa-brain"></i> <span data-i18n="lab.tag.deepLearning">Deep Learning</span></span><span class="tag"><i class="fas fa-globe-africa"></i> <span data-i18n="lab.tag.responsibleAI">Responsible AI</span></span><span class="tag"><i class="fas fa-language"></i> <span data-i18n="lab.tag.swahiliNLP">Swahili NLP</span></span><span class="tag"><i class="fas fa-link"></i> <span data-i18n="lab.tag.blockchain">Blockchain</span></span></div>
<a href="https://saaillab.github.io/" class="btn" target="_blank" rel="noopener noreferrer"><i class="fas fa-external-link-alt"></i> <span data-i18n="btn.exploreLab">Explore SAAIL Lab</span></a>
</div>
</div>
</section>
<section id="research" class="section section-alt">
<div class="container">
<div class="section-header"><h2 class="section-title" data-i18n="section.research.title">Research</h2><p class="section-subtitle" data-i18n="section.research.subtitle">Advancing AI for sustainable development and real-world impact</p></div>
<!-- Cloves Project Spotlight -->
<div class="research-spotlight animate-on-scroll">
<span class="spotlight-badge"><i class="fas fa-star"></i> <span data-i18n="research.spotlight.badge">Featured Project</span></span>
<div class="spotlight-icon"><i class="fas fa-seedling"></i></div>
<div class="spotlight-content">
<h3 data-i18n="research.spotlight.title">AI for Clove Quality Grading — Zanzibar, Tanzania</h3>
<p data-i18n="research.spotlight.desc">In collaboration with the <strong>Zanzibar State Trading Corporation (ZSTC)</strong>, we develop deep learning CNN models for automated quality grading of cloves — Zanzibar's most important export spice. This work integrates computer vision with indigenous farmer knowledge to build a novel annotated Zanzibar clove dataset and AI grading pipeline that directly supports smallholder farmers and the national spice industry.</p>
<div class="spotlight-tags">
<span><i class="fas fa-brain"></i> <span data-i18n="research.spotlight.tag1">Deep Learning (CNN)</span></span>
<span><i class="fas fa-eye"></i> <span data-i18n="research.spotlight.tag2">Computer Vision</span></span>
<span><i class="fas fa-users"></i> <span data-i18n="research.spotlight.tag3">Participatory AI Design</span></span>
<span><i class="fas fa-map-marker-alt"></i> Zanzibar · Tanzania</span>
<span><i class="fas fa-handshake"></i> <span data-i18n="research.spotlight.tag4">ZSTC Partnership</span></span>
</div>
<div style="display:flex;gap:var(--space-sm);flex-wrap:wrap">
<a href="https://www.linkedin.com/posts/iitmzanzibar_artificialintelligence-deeplearning-agritech-activity-7443156335917137920-fvvi" target="_blank" rel="noopener noreferrer" class="btn btn-sm"><i class="fas fa-award"></i> <span data-i18n="research.spotlight.btn1">EAC STI 2026 — $980 Travel Grant</span></a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline"><i class="fas fa-book-open"></i> <span data-i18n="research.spotlight.btn2">Related Publications</span></a>
</div>
</div>
</div>
<div class="card animate-on-scroll" style="margin-bottom:var(--space-xl)"><h3><i class="fas fa-search" style="color:var(--primary)"></i> <span data-i18n="research.interests.title">Research Interests</span></h3><div class="tags" style="margin-top:var(--space-sm)"><span class="tag" data-i18n="research.interest.ai">Artificial Intelligence (AI)</span><span class="tag" data-i18n="research.interest.cv">Computer Vision</span><span class="tag" data-i18n="research.interest.ml">Machine Learning (ML)</span><span class="tag" data-i18n="research.interest.dl">Deep Learning</span><span class="tag" data-i18n="research.interest.nlp">Natural Language Processing (NLP)</span><span class="tag" data-i18n="research.interest.iot">Internet of Things (IoT)</span><span class="tag" data-i18n="research.interest.robotics">Robotics</span><span class="tag" data-i18n="research.interest.dip">Digital Image Processing</span><span class="tag" data-i18n="research.interest.embedded">Embedded Systems</span><span class="tag" data-i18n="research.interest.ds">Data Science</span><span class="tag" data-i18n="research.interest.agritech">Agricultural Technology</span><span class="tag" data-i18n="research.interest.health">Healthcare Informatics</span></div></div>
<h3 style="margin-bottom:var(--space-lg);text-align:center"><i class="fas fa-project-diagram" style="color:var(--primary)"></i> <span data-i18n="research.projects.title">Current Research Projects</span></h3>
<div class="grid-2" style="margin-bottom:var(--space-xl)">
<div class="card animate-on-scroll"><h3><i class="fas fa-leaf" style="color:var(--accent)"></i> <span data-i18n="research.proj1.title">AI for Smart Agriculture</span></h3><p data-i18n="research.proj1.desc">Developing AI techniques to enhance agricultural practices, improve resource management, and promote sustainability across East Africa. Focus on crop disease detection, yield prediction, and precision farming.</p></div>
<div class="card animate-on-scroll"><h3><i class="fas fa-heartbeat" style="color:var(--accent)"></i> <span data-i18n="research.proj2.title">Medical Imaging - Placental Analysis</span></h3><p data-i18n="research.proj2.desc">Application of AI to analyze placental images for improved maternal and fetal health diagnostics and monitoring.</p></div>
<div class="card animate-on-scroll"><h3><i class="fas fa-language" style="color:var(--accent)"></i> <span data-i18n="research.proj3.title">Swahili Speech & Text Processing</span></h3><p data-i18n="research.proj3.desc">Developing NLP tools for the Swahili language, with applications in agriculture and healthcare for East African communities.</p></div>
<div class="card animate-on-scroll"><h3><i class="fas fa-link" style="color:var(--accent)"></i> <span data-i18n="research.proj4.title">Blockchain for Spice Supply Chain</span></h3><p data-i18n="research.proj4.desc">Investigating blockchain technology to improve transparency, traceability, and efficiency in Zanzibar's famous spice supply chain.</p></div>
</div>
<h3 style="margin-bottom:var(--space-lg);text-align:center"><i class="fas fa-handshake" style="color:var(--primary)"></i> <span data-i18n="research.collabs.title">Research Collaborations</span></h3>
<div class="grid-3">
<div class="collaborator-card animate-on-scroll"><div class="collaborator-avatar">NB</div><div class="collaborator-info"><h4>Prof. Nirav Bhatt</h4><p><a href="https://www.iitmz.ac.in/" target="_blank">IIT Madras Zanzibar</a></p></div></div>
<div class="collaborator-card animate-on-scroll"><div class="collaborator-avatar">SS</div><div class="collaborator-info"><h4>Prof. Dr. Sunil Sazawal</h4><p><a href="https://cphealthkinetics.org/" target="_blank">CPHK / Subharti University</a></p></div></div>
<div class="collaborator-card animate-on-scroll"><div class="collaborator-avatar">SB</div><div class="collaborator-info"><h4>Dr. Soumya Banerjee</h4><p><a href="https://www.cai.cam.ac.uk/" target="_blank">University of Cambridge</a></p></div></div>
<div class="collaborator-card animate-on-scroll"><div class="collaborator-avatar">VN</div><div class="collaborator-info"><h4>Dr. Vikranth H. Nagaraja</h4><p><a href="https://eng.ox.ac.uk/" target="_blank">University of Oxford</a></p></div></div>
<div class="collaborator-card animate-on-scroll"><div class="collaborator-avatar">JZ</div><div class="collaborator-info"><h4>Dr. Jiayu Zhang</h4><p><a href="https://eng.xzit.edu.cn/" target="_blank">Xuzhou University of Technology</a></p></div></div>
</div>
</div>
</section>
<section id="publications" class="section">
<div class="container">
<div class="section-header"><h2 class="section-title" data-i18n="section.publications.title">Publications</h2><p class="section-subtitle" data-i18n="section.publications.subtitle2">Peer-reviewed research in top-tier journals and international conferences</p></div>
<!-- Citation Impact Stats -->
<div class="pub-citation-stats">
<div class="pub-stat-box">
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">
<div class="pub-stat-num">30+</div>
<div class="pub-stat-lbl" data-i18n="stats.publications">Publications</div>
</a>
</div>
<div class="pub-stat-box">
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">
<div class="pub-stat-num">1,081+</div>
<div class="pub-stat-lbl" data-i18n="stats.citations">Citations</div>
</a>
</div>
<div class="pub-stat-box">
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">
<div class="pub-stat-num">15</div>
<div class="pub-stat-lbl" data-i18n="stats.hindex">h-index</div>
</a>
</div>
<div class="pub-stat-box">
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">
<div class="pub-stat-num">16</div>
<div class="pub-stat-lbl" data-i18n="stats.i10index">i10-index</div>
</a>
</div>
<div class="pub-stat-box">
<a href="https://orcid.org/0000-0002-7969-437X" target="_blank" rel="noopener noreferrer">
<div class="pub-stat-num" style="font-size:1.2rem;color:var(--accent)">ORCID</div>
<div class="pub-stat-lbl" data-i18n="pub.verifiedProfile">Verified Profile</div>
</a>
</div>
</div>
<!-- Filter tabs -->
<div class="pub-filter-tabs">
<button class="pub-tab active" data-filter="all" data-i18n="pub.filter.all">All</button>
<button class="pub-tab" data-filter="2026">2026</button>
<button class="pub-tab" data-filter="2025">2025</button>
<button class="pub-tab" data-filter="2024">2024</button>
</div>
<div class="pub-compact-grid" id="pub-grid">
<!-- 2026 -->
<a href="https://www.linkedin.com/posts/iitmzanzibar_trustworthyaiworkshop-iclr2026-trustworthyai-activity-7436630440158912512-rn3H" target="_blank" class="pub-compact-card" data-year="2026">
<div class="pub-compact-year">2026</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge" style="background:rgba(130,20,20,0.12);color:#821414">ICLR 2026</span></div>
<h4>Unifying Perspectives on Learning Biases: A Data-Centric Intervention for Holistic Fairness, Robustness, and Generalization</h4>
<p>P. Vincent Ndowo, <strong>I. Nyalala</strong> · Trustworthy AI Workshop · Rio de Janeiro, Brazil</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="pub-compact-card" data-year="2026">
<div class="pub-compact-year">2026</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge" style="background:rgba(130,20,20,0.12);color:#821414">AAAI 2026</span></div>
<h4>AI Sovereignty in the Global South: Power, Dependency, and Strategic Futures</h4>
<p>S. Davies, V. Nagaraja, <strong>I. Nyalala</strong>, N. Bhatt, S. Banerjee · Workshop on Empowering Global South AI</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="pub-compact-card" data-year="2026">
<div class="pub-compact-year">2026</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge" style="background:rgba(130,20,20,0.12);color:#821414">PMLR 302</span></div>
<h4>Culturally Attuned and Resource-Aware Foundation Models for East African Agriculture</h4>
<p><strong>I. Nyalala</strong>, N. Bhatt · Deep Learning Indaba 2025 · Proceedings of Machine Learning Research</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<!-- 2025 -->
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="pub-compact-card" data-year="2025">
<div class="pub-compact-year">2025</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">ACM AFRICHI</span></div>
<h4>From Art to Algorithms: Co-Designing AI for Clove Grading with Zanzibar's Indigenous Experts</h4>
<p>P. V. Ndowo, <strong>I. Nyalala</strong> · AFRICHI ACM Conference 2025</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="pub-compact-card" data-year="2025">
<div class="pub-compact-year">2025</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">ESA · IF 7.5</span></div>
<h4>BAFNet: Deep contour-aware features for colorectal polyps segmentation</h4>
<p>D. Zhou, N. Chen, Y. Zhu, X. Zhang, <strong>I. Nyalala</strong> et al. · Expert Systems with Applications</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://doi.org/10.1016/j.compag.2025.110107" target="_blank" class="pub-compact-card" data-year="2025">
<div class="pub-compact-year">2025</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">CompAg · IF 7.7</span></div>
<h4>Rectifying the extremely weakened signals for cassava leaf disease detection</h4>
<p>J. Zhang, B. Zhang, <strong>I. Nyalala</strong>, P. Mecha et al. · Computers and Electronics in Agriculture</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<!-- Hidden extras (shown on "more") -->
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="pub-compact-card pub-hidden" data-year="2025">
<div class="pub-compact-year">2025</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">EurIPS 2025</span></div>
<h4>Digital Sovereignty or Digital Serfdom? AI Strategies, Geopolitics, and the Quest for an Equitable Global South</h4>
<p>S. Davies, V. Nagaraja, <strong>I. Nyalala</strong> et al. · Workshop on Private AI Governance</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="pub-compact-card pub-hidden" data-year="2025">
<div class="pub-compact-year">2025</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">DSA 2025</span></div>
<h4>Prime Directives for Responsible AI for Africa: A Manifesto for Inclusive Technology</h4>
<p><strong>I. Nyalala</strong> et al. · Data Science Africa 2025 · Iaban University</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://doi.org/10.1016/j.aiia.2024.11.004" target="_blank" class="pub-compact-card pub-hidden" data-year="2024">
<div class="pub-compact-year">2024</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">AIA · IF 8.2</span></div>
<h4>A salient feature establishment tactic for cassava disease recognition</h4>
<p>J. Zhang, B. Zhang, Z. Chen, <strong>I. Nyalala</strong> et al. · Artificial Intelligence in Agriculture</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://doi.org/10.1016/j.psj.2024.104232" target="_blank" class="pub-compact-card pub-hidden" data-year="2024">
<div class="pub-compact-year">2024</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">Poultry Sci · IF 3.8</span></div>
<h4>Online chicken carcass volume estimation using depth imaging and 3-D reconstruction</h4>
<p><strong>I. Nyalala</strong>, J. Zhang, Z. Chen, J. Chen, K. Chen · Poultry Science</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
<a href="https://doi.org/10.1016/j.compag.2024.109351" target="_blank" class="pub-compact-card pub-hidden" data-year="2024">
<div class="pub-compact-year">2024</div>
<div class="pub-compact-body">
<div class="pub-compact-venue"><span class="pub-venue-badge">CompAg · IF 7.7</span></div>
<h4>MAIANet: Signal modulation in cassava leaf disease classification</h4>
<p>J. Zhang, B. Zhang, C. Qi, <strong>I. Nyalala</strong> et al. · Computers and Electronics in Agriculture</p>
</div>
<i class="fas fa-arrow-right pub-compact-arrow"></i>
</a>
</div>
<div style="text-align:center;margin-top:var(--space-lg);display:flex;gap:var(--space-md);justify-content:center;flex-wrap:wrap">
<a href="publications/" class="btn"><i class="fas fa-list-ul"></i> <span data-i18n="btn.viewFullList">View Full Publications List</span></a>
<a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&hl=en" target="_blank" class="btn btn-outline"><i class="fas fa-book-open"></i> <span data-i18n="btn.allOnScholar">All 30+ on Google Scholar</span></a>
</div>
<!-- Most Cited Works -->
<div class="highly-cited-section animate-on-scroll">
<h3><i class="fas fa-trophy" style="color:#f59e0b"></i> <span data-i18n="pub.mostCited.title">Most Cited Works</span> <span style="margin-left:auto;font-size:0.8rem;color:var(--text-muted);font-weight:400" data-i18n="pub.mostCited.sub">From 1,073+ total citations · h-index 15</span></h3>
<div class="hc-list">
<a href="https://doi.org/10.1016/j.aiia.2020.09.002" target="_blank" rel="noopener noreferrer" class="hc-item">
<div class="hc-if-badge" style="background:linear-gradient(135deg,#0066cc,#004c99)"><span>206</span><small data-i18n="pub.cited">cited</small></div>
<div class="hc-body">
<h4>A review on computer vision systems in monitoring of poultry: A welfare perspective</h4>
<p>C. Okinda, <strong>I. Nyalala</strong> et al. · Artificial Intelligence in Agriculture · 2020</p>
</div>
<i class="fas fa-external-link-alt" style="color:var(--text-muted);font-size:0.8rem;flex-shrink:0;margin-left:auto"></i>
</a>
<a href="https://doi.org/10.1016/j.biosystemseng.2019.09.015" target="_blank" rel="noopener noreferrer" class="hc-item">
<div class="hc-if-badge" style="background:linear-gradient(135deg,#0066cc,#004c99)"><span>179</span><small>cited</small></div>
<div class="hc-body">
<h4>A machine vision system for early detection and prediction of sick birds: A broiler chicken model</h4>
<p>C. Okinda, M. Lu, L. Liu, <strong>I. Nyalala</strong> et al. · Biosystems Engineering · 2019</p>
</div>
<i class="fas fa-external-link-alt" style="color:var(--text-muted);font-size:0.8rem;flex-shrink:0;margin-left:auto"></i>
</a>
<a href="https://doi.org/10.1016/j.jfoodeng.2019.07.012" target="_blank" rel="noopener noreferrer" class="hc-item">
<div class="hc-if-badge" style="background:linear-gradient(135deg,#0066cc,#004c99)"><span>174</span><small>cited</small></div>
<div class="hc-body">
<h4>Tomato volume and mass estimation using computer vision and machine learning algorithms: Cherry tomato model</h4>
<p><strong>I. Nyalala</strong>, C. Okinda, L. Nyalala, N. Makange et al. · Journal of Food Engineering · 2019 · First author</p>
</div>
<i class="fas fa-external-link-alt" style="color:var(--text-muted);font-size:0.8rem;flex-shrink:0;margin-left:auto"></i>
</a>
<a href="https://doi.org/10.1016/j.psj.2021.101072" target="_blank" rel="noopener noreferrer" class="hc-item">
<div class="hc-if-badge" style="background:linear-gradient(135deg,#0066cc,#004c99)"><span>130</span><small>cited</small></div>
<div class="hc-body">
<h4>Weight and volume estimation of poultry and products based on computer vision systems: a review</h4>
<p><strong>I. Nyalala</strong>, C. Okinda, K. Chen, T. Korohou, L. Nyalala, Q. Chao · Poultry Science · 2021 · First author</p>
</div>
<i class="fas fa-external-link-alt" style="color:var(--text-muted);font-size:0.8rem;flex-shrink:0;margin-left:auto"></i>
</a>
</div>
<p style="margin-top:var(--space-md);font-size:0.82rem;color:var(--text-muted);text-align:center"><i class="fas fa-info-circle"></i> Live citation counts at <a href="https://scholar.google.com/citations?user=jYVzIZUAAAAJ&sortby=citations" target="_blank" rel="noopener noreferrer">Google Scholar (sorted by citations)</a> · <a href="https://orcid.org/0000-0002-7969-437X" target="_blank" rel="noopener noreferrer">ORCID</a></p>
</div>
</div>
</section>
<!-- Press / In the Media -->
<section id="press" class="section">
<div class="container">
<div class="section-header"><h2 class="section-title" data-i18n="section.press.title">Press & In the Media</h2><p class="section-subtitle" data-i18n="section.press.subtitle">Research coverage, features, and public impact</p></div>
<div class="press-strip">
<!-- Apr 2026 -->
<a href="https://www.linkedin.com/posts/artificialintelligence4africa_ai4africa-weeklyresearchspotlight-aiagriculture-activity-7443263297165987840--I9m" target="_blank" rel="noopener noreferrer" class="press-card animate-on-scroll">
<div class="press-logo-wrap" style="background:linear-gradient(135deg,#003d7a,#0066cc)">
<i class="fas fa-globe-africa" style="font-size:2rem;color:#fff"></i>
</div>
<div class="press-body">
<div class="press-outlet">AI4Africa</div>
<div class="press-headline">Weekly Research Spotlight — CARA-FM Framework for East African Agriculture</div>
<div class="press-date"><i class="fas fa-calendar"></i> April 2026</div>
</div>
<i class="fas fa-external-link-alt press-icon"></i>
</a>
<!-- Feb 2026 -->
<a href="https://www.linkedin.com/posts/nicksonkarie_this-is-why-i-will-never-stop-mentoring-activity-7418849707327729665-dt4m" target="_blank" rel="noopener noreferrer" class="press-card animate-on-scroll">
<div class="press-logo-wrap" style="background:linear-gradient(135deg,#0a7a4a,#12aa66)">
<i class="fab fa-linkedin" style="font-size:2rem;color:#fff"></i>
</div>
<div class="press-body">
<div class="press-outlet">LinkedIn Recognition</div>
<div class="press-headline">Celebrating Dr. Nyalala: "Some of my mentees are now better than me" — Dr. Nickson Karie, PhD</div>
<div class="press-date"><i class="fas fa-calendar"></i> Feb 2026</div>
</div>
<i class="fas fa-external-link-alt press-icon"></i>
</a>
<!-- Dec 2025 -->
<a href="https://fumba.town/wp-content/uploads/2025/12/the-fumba-times-issue-26-dec-2025-feb-2026.pdf" target="_blank" rel="noopener noreferrer" class="press-card animate-on-scroll">
<div class="press-logo-wrap" style="background:linear-gradient(135deg,#1a6b3a,#28a057)">
<i class="fas fa-newspaper" style="font-size:2rem;color:#fff"></i>
</div>
<div class="press-body">
<div class="press-outlet">Fumba Times</div>
<div class="press-headline">The Final Mosquito Hunt — AI for Malaria Elimination in Zanzibar</div>
<div class="press-date"><i class="fas fa-calendar"></i> December 2025</div>
</div>
<i class="fas fa-external-link-alt press-icon"></i>
</a>
<!-- Dec 2025 -->
<a href="https://link.springer.com/journal/44163/editorial-board" target="_blank" rel="noopener noreferrer" class="press-card animate-on-scroll">
<div class="press-logo-wrap" style="background:linear-gradient(135deg,#5a2d82,#8b5cf6)">
<i class="fas fa-book-open" style="font-size:2rem;color:#fff"></i>
</div>
<div class="press-body">
<div class="press-outlet">Springer Nature</div>
<div class="press-headline">Appointed to Editorial Board — Discover Artificial Intelligence (Open Access)</div>
<div class="press-date"><i class="fas fa-calendar"></i> December 2025</div>
</div>
<i class="fas fa-external-link-alt press-icon"></i>
</a>
<!-- Sept 2025 -->
<a href="https://www.linkedin.com/posts/wadhwani-school-of-data-science-and-ai-iit-madras_wsai-iitmadras-agritech-activity-7387383417228857344-JDI6" target="_blank" rel="noopener noreferrer" class="press-card animate-on-scroll">
<div class="press-logo-wrap" style="background:linear-gradient(135deg,#1a4a7a,#2066aa)">
<i class="fab fa-linkedin" style="font-size:2rem;color:#fff"></i>
</div>
<div class="press-body">
<div class="press-outlet">WSAI IIT Madras</div>
<div class="press-headline">Meet the Professor: Dr. Innocent Nyalala — Agricultural AI for East Africa</div>
<div class="press-date"><i class="fas fa-calendar"></i> Sept 2025</div>
</div>
<i class="fas fa-external-link-alt press-icon"></i>
</a>
<!-- July 2025 -->
<a href="https://indianexpress.com/article/education/iit-madras-zanzibar-campus-first-degree-distribution-ceremony-data-science-artificial-intelligence-batch-2025-jee-main-advanced-10134226/" target="_blank" rel="noopener noreferrer" class="press-card animate-on-scroll">
<div class="press-logo-wrap" style="background:linear-gradient(135deg,#8b0000,#cc0000)">
<i class="fas fa-indent" style="font-size:2rem;color:#fff"></i>
</div>
<div class="press-body">
<div class="press-outlet">The Indian Express</div>
<div class="press-headline">IIT Madras Zanzibar First Degree Distribution Ceremony — Inaugural MTech Batch 2025</div>
<div class="press-date"><i class="fas fa-calendar"></i> July 2025</div>
</div>
<i class="fas fa-external-link-alt press-icon"></i>
</a>
</div>
</div>
</section>
<style>
.feat-talks-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:var(--space-md);margin-bottom:var(--space-2xl)}
.feat-talk-card{position:relative;border-radius:var(--radius-xl);overflow:hidden;min-height:230px;background-size:cover;background-position:center;text-decoration:none;display:block;transition:transform var(--transition-fast),box-shadow var(--transition-fast)}
.feat-talk-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(0,0,0,.35)}
.feat-talk-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(5,10,25,.95) 0%,rgba(5,10,25,.55) 55%,rgba(5,10,25,.12) 100%);padding:var(--space-md);display:flex;flex-direction:column;justify-content:space-between}
.feat-talk-badge{align-self:flex-start;background:rgba(255,255,255,.12);backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,.22);border-radius:var(--radius-full);padding:3px 12px;font-size:.68rem;font-weight:700;color:#fff;letter-spacing:.07em;text-transform:uppercase}
.feat-talk-badge.award{background:rgba(197,160,89,.3);border-color:rgba(197,160,89,.5);color:#f0d080}
.feat-talk-info h4{font-size:.93rem;font-weight:700;color:#fff;margin-bottom:.3rem;line-height:1.35}
.feat-talk-info p{font-size:.78rem;color:rgba(255,255,255,.75);margin-bottom:.35rem;line-height:1.35}
.feat-talk-date{font-size:.72rem;color:rgba(255,255,255,.6);display:flex;align-items:center;gap:5px}
</style>
<section id="conferences" class="section section-alt">
<div class="container">
<div class="section-header"><h2 class="section-title" data-i18n="section.conferences.title">Conferences & Speaking</h2><p class="section-subtitle" data-i18n="section.conferences.subtitle">Keynotes, presentations, and academic engagements</p></div>
<!-- Featured Talks — image cards -->
<!-- Featured image cards — most recent first -->
<div class="feat-talks-row">
<!-- June 2026 — NEWEST -->
<a href="https://openreview.net/pdf?id=V1UbAtXS4M" target="_blank" rel="noopener noreferrer" class="feat-talk-card animate-on-scroll" style="background-image:url('images/cvpr-cloves-2026.webp');background-color:#6b0a0a">
<div class="feat-talk-overlay">
<span class="feat-talk-badge award"><i class="fas fa-trophy"></i> CVPR 2026 · <span data-i18n="conf.v4aWorkshop">V4A Workshop</span></span>
<div class="feat-talk-info">
<h4>CLOVES-4603: Clove Quality Grading Benchmark</h4>
<p>First public dataset · 4,603 images · 99.67% DL accuracy · SAAIL Lab</p>
<span class="feat-talk-date"><i class="fas fa-calendar-alt"></i> June 3–7, 2026 · Denver, Colorado, USA</span>
</div>
</div>
</a>
<!-- Feb 2026 -->
<a href="https://www.linkedin.com/posts/emmanuelmadanga_aiinagriculture-africaaivision-alliance4ai-activity-7426473010951258112-tH8c" target="_blank" rel="noopener noreferrer" class="feat-talk-card animate-on-scroll" style="background-image:url('images/alliance4ai-feb2026.webp');background-color:#1a0a3a">
<div class="feat-talk-overlay">
<span class="feat-talk-badge"><i class="fas fa-globe-africa"></i> <span data-i18n="conf.type.invitedTalk">Invited Talk</span> · Alliance for AI</span>
<div class="feat-talk-info">
<h4>AI in Agriculture: Transforming Farming for Food Security</h4>
<p>and Sustainability in Africa</p>
<span class="feat-talk-date"><i class="fas fa-calendar-alt"></i> Feb 11, 2026 · Alliance4AI Futuremakers</span>
</div>
</div>
</a>
<!-- Nov 2025 -->
<a href="https://www.linkedin.com/posts/iitmzanzibar_aiforagriculture-researchexcellence-codesign-activity-7379795594061619200-FhjM" target="_blank" rel="noopener noreferrer" class="feat-talk-card animate-on-scroll" style="background-image:url('images/africhi-2025-poster.webp');background-color:#7a3a00">
<div class="feat-talk-overlay">
<span class="feat-talk-badge"><i class="fas fa-file-alt"></i> <span data-i18n="conf.type.confPaper">Conference Paper</span> · AfriCHI 2025</span>
<div class="feat-talk-info">
<h4>"From Art to Algorithms: Co-Designing AI for Clove Grading"</h4>
<p>with Zanzibar's Indigenous Experts · SAAIL Lab</p>
<span class="feat-talk-date"><i class="fas fa-calendar-alt"></i> Nov 2–8, 2025 · Cairo, Egypt</span>
</div>
</div>
</a>
<!-- Sept/Oct 2025 -->
<a href="https://www.linkedin.com/posts/innocentnyalala_deeplearningindaba-dli2025-ai-activity-7365699749766717441-Bjg-" target="_blank" rel="noopener noreferrer" class="feat-talk-card animate-on-scroll" style="background-image:url('images/cara-fm-dli-spotlight.webp');background-color:#0a2a1a">
<div class="feat-talk-overlay">
<span class="feat-talk-badge award"><i class="fas fa-trophy"></i> <span data-i18n="conf.bestPosterAward">Best Poster Award</span> · DLI 2025</span>
<div class="feat-talk-info">
<h4>CARA-FMs: Foundation Models for East Africa</h4>
<p>Deep Learning Indaba 2025 · PMLR vol. 302</p>
<span class="feat-talk-date"><i class="fas fa-calendar-alt"></i> Sept 2025 · Africa</span>
</div>
</div>
</a>
<!-- Sept 11, 2025 -->
<a href="https://www.linkedin.com/posts/wadhwani-school-of-data-science-and-ai-iit-madras_wsai-iitmadras-ai-activity-7372200048245465088-_5eV" target="_blank" rel="noopener noreferrer" class="feat-talk-card animate-on-scroll" style="background-image:url('images/wsai-talk-sept2025.webp');background-color:#0f1f38">
<div class="feat-talk-overlay">
<span class="feat-talk-badge"><i class="fas fa-microphone-alt"></i> <span data-i18n="conf.type.facultyTalk">Faculty Talk</span> · WSAI IIT Madras</span>
<div class="feat-talk-info">
<h4>"Computing at the Edge of Possibility"</h4>
<p>Building Agricultural AI for Resource-Constrained East Africa</p>
<span class="feat-talk-date"><i class="fas fa-calendar-alt"></i> Sept 11, 2025 · NPTEL CRC 302, IIT Madras Chennai</span>
</div>
</div>
</a>
</div>
<!-- Conference tiles — most recent first -->
<div class="conf-grid">
<!-- June 2026 — NEWEST -->
<a href="https://openreview.net/pdf?id=V1UbAtXS4M" target="_blank" rel="noopener noreferrer" class="conf-tile animate-on-scroll" style="text-decoration:none;color:inherit;display:block">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#6b0a0a,#9a1414)">
<span class="conf-tile-type"><span data-i18n="conf.type.paper">Paper</span> · SAAIL Lab</span><span class="conf-tile-date">June 2026</span>
</div>
<div class="conf-tile-body">
<h4>CVPR 2026 — Vision for Agriculture Workshop</h4>
<p>CLOVES-4603: Benchmarking Texture & Deep Models for Clove Quality Grading</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Denver, Colorado, USA · June 3–7, 2026</span>
</div>
</a>
<!-- Apr 2026 -->
<a href="https://openreview.net/forum?id=RCEEHTbSDk" target="_blank" rel="noopener noreferrer" class="conf-tile animate-on-scroll" style="text-decoration:none;color:inherit;display:block">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#821414,#b52020)">
<span class="conf-tile-type" data-i18n="conf.type.paper">Paper</span><span class="conf-tile-date">Apr 2026</span>
</div>
<div class="conf-tile-body">
<h4>ICLR 2026 — Trustworthy AI Workshop</h4>
<p>Unifying Perspectives on Learning Biases</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Rio de Janeiro, Brazil</span>
</div>
</a>
<!-- Mar 2026 -->
<div class="conf-tile animate-on-scroll">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#006030,#009050)">
<span class="conf-tile-type" data-i18n="conf.type.paper">Paper</span><span class="conf-tile-date">Mar 2026</span>
</div>
<div class="conf-tile-body">
<h4>4th EAC STI Conference 2026</h4>
<p>AI for Clove Grading · Travel Grant $980</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Kigali, Rwanda</span>
</div>
</div>
<!-- Feb 2026 -->
<a href="https://www.linkedin.com/posts/emmanuelmadanga_aiinagriculture-africaaivision-alliance4ai-activity-7426473010951258112-tH8c" target="_blank" rel="noopener noreferrer" class="conf-tile animate-on-scroll" style="text-decoration:none;color:inherit;display:block">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#3a1a6a,#6030aa)">
<span class="conf-tile-type" data-i18n="conf.type.invitedTalk">Invited Talk</span><span class="conf-tile-date">Feb 2026</span>
</div>
<div class="conf-tile-body">
<h4>Alliance for AI — AI in Agriculture</h4>
<p>AI in Agriculture: Transforming Farming for Food Security and Sustainability in Africa</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Online (EAT) · Alliance4AI Futuremakers</span>
</div>
</a>
<!-- Jan 2026 -->
<a href="https://www.researchgate.net/profile/Innocent-Nyalala/publication/399881866_AI_Sovereignty_in_the_Global_South_Power_Dependency_and_Strategic_Futures/links/696e2f4021a46d6f70238374/AI-Sovereignty-in-the-Global-South-Power-Dependency-and-Strategic-Futures.pdf" target="_blank" rel="noopener noreferrer" class="conf-tile animate-on-scroll" style="text-decoration:none;color:inherit;display:block">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#6b1a1a,#aa2020)">
<span class="conf-tile-type" data-i18n="conf.type.paper">Paper</span><span class="conf-tile-date">Jan 2026</span>
</div>
<div class="conf-tile-body">
<h4>AAAI 2026 — Global South AI Workshop</h4>
<p>AI Sovereignty in the Global South: Power, Dependency, and Strategic Futures</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Singapore · Jan 20–27, 2026</span>
</div>
</a>
<!-- Dec 2025 -->
<div class="conf-tile animate-on-scroll">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#7b3fa0,#a050cc)">
<span class="conf-tile-type" data-i18n="conf.type.paper">Paper</span><span class="conf-tile-date">Dec 2025</span>
</div>
<div class="conf-tile-body">
<h4>NeurIPS 2025 — AI Governance Workshop</h4>
<p>Digital Sovereignty or Digital Serfdom?</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Vancouver, Canada</span>
</div>
</div>
<!-- Nov 2025 -->
<a href="https://www.linkedin.com/posts/iitmzanzibar_aiforagriculture-researchexcellence-codesign-activity-7379795594061619200-FhjM" target="_blank" rel="noopener noreferrer" class="conf-tile animate-on-scroll" style="text-decoration:none;color:inherit;display:block">
<div class="conf-tile-header" style="background:linear-gradient(135deg,#c47a00,#e09a00)">
<span class="conf-tile-type" data-i18n="conf.type.paper">Paper</span><span class="conf-tile-date">Nov 2025</span>
</div>
<div class="conf-tile-body">
<h4>AfriCHI ACM 2025</h4>
<p>Co-Designing AI for Clove Grading with Zanzibar's Indigenous Experts</p>
<span class="conf-tile-loc"><i class="fas fa-map-marker-alt"></i> Cairo, Egypt · Nov 2–8, 2025</span>
</div>
</a>
<!-- Sept 2025 -->
<a href="https://openreview.net/pdf?id=V1UbAtXS4M" target="_blank" rel="noopener noreferrer" class="conf-tile animate-on-scroll" style="text-decoration:none;color:inherit;display:block">