-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1314 lines (1229 loc) · 74.4 KB
/
index.html
File metadata and controls
1314 lines (1229 loc) · 74.4 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">
<!-- SEO Meta Tags - Optimized for Semantic Search & E-E-A-T -->
<title>Huzefa Nalkheda Wala - AI Product Engineer & Medical AI Researcher | Machine Learning Expert India</title>
<meta name="description" content="Huzefa Nalkheda Wala - AI Product Engineer at CleverFlow with ≈1,000 GitHub contributions (2025), 40+ merged PRs, 45+ production features shipped. Medical AI researcher, creator of MedGenius LLaMA-3.2B. Specialized in LLMs, RAG systems, computer vision, and healthcare AI. IIT Ropar AI specialization. Patent holder.">
<!-- Primary Keywords -->
<meta name="keywords" content="Huzefa Nalkheda Wala, AI Engineer India, Machine Learning Engineer, Medical AI Researcher, AI Product Engineer CleverFlow, LLM Engineer, Healthcare AI Specialist, Computer Vision Engineer">
<!-- LSI & Semantic Keywords -->
<meta name="semantic-keywords" content="large language model development, retrieval augmented generation, vector database optimization, document intelligence systems, multimodal AI solutions, production ML deployment, medical dataset curation, fine-tuning transformer models, PyTorch development, LangChain integration, FastAPI microservices, Docker containerization, enterprise AI systems, LoRA QLoRA techniques, medical NLP systems, patient dialogue AI, healthcare chatbots, AI infrastructure scaling, ML model optimization, real-time inference systems">
<!-- Long-Tail Keywords for AI Search -->
<meta name="long-tail-keywords" content="how to build production RAG systems, AI engineer with medical AI experience, LLaMA fine-tuning expert India, healthcare AI researcher IIT Ropar, document intelligence API developer, multimodal AI engineer portfolio, AI product engineer with patent, medical equipment AI innovation, enterprise ML system architect, vector database implementation specialist, real-time AI inference optimization, production-grade LLM deployment, medical dataset expert 40K records, AI engineer open for hire India, freelance AI consultant healthcare domain">
<!-- Entity & Topic Keywords -->
<meta name="entities" content="CleverFlow, Ruby CRM, IIT Ropar, Parul University, MedGenius LLaMA, Medical AI, Python, PyTorch, LangChain, FastAPI, Docker, Qdrant, Faiss, OpenCV, India, Ahmedabad, Gujarat">
<meta name="author" content="Huzefa Nalkheda Wala">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<link rel="canonical" href="https://huzefanalkhedawala.in/">
<!-- Advanced Indexing -->
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://huzefanalkhedawala.in/">
<meta property="og:title" content="Huzefa Nalkheda Wala - AI Product Engineer & Medical AI Researcher">
<meta property="og:description" content="AI Product Engineer at CleverFlow: ≈1K+ GitHub contributions (2025), 40+ PRs, 45+ features shipped. Creator of MedGenius LLaMA-3.2B & 40K+ Medical Dataset. Building production RAG systems, document intelligence APIs, and multimodal AI solutions.">
<meta property="og:image" content="https://huzefanalkhedawala.in/huzefa.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Huzefa Nalkheda Wala - AI Engineer Portfolio">
<meta property="og:locale" content="en_US">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://huzefanalkhedawala.in/">
<meta name="twitter:title" content="Huzefa Nalkheda Wala - AI Product Engineer & Medical AI Researcher">
<meta name="twitter:description" content="AI Product Engineer building production-scale AI systems. Medical AI researcher with published papers and patents. Expert in LLMs, computer vision, and healthcare AI.">
<meta name="twitter:image" content="https://huzefanalkhedawala.in/huzefa.jpg">
<meta name="twitter:creator" content="@huzefanalkheda">
<!-- LinkedIn -->
<meta property="article:author" content="https://www.linkedin.com/in/huzefanalkheda/">
<!-- GEO (Generative Engine Optimization) - Enhanced for ChatGPT, Claude, Perplexity -->
<meta name="geo.position" content="23.0225;72.5714">
<meta name="geo.placename" content="India">
<meta name="geo.region" content="IN-GJ">
<meta name="ICBM" content="23.0225, 72.5714">
<!-- AI Engine Optimization -->
<meta name="AI:expertise" content="Large Language Models, Retrieval Augmented Generation, Computer Vision, Healthcare AI, Production ML Systems, Medical NLP, Document Intelligence">
<meta name="AI:skills" content="PyTorch, TensorFlow, LangChain, FastAPI, Docker, LLaMA, LoRA, QLoRA, Vector Databases, Qdrant, Faiss, Hugging Face, OpenCV, PostgreSQL, Redis, Node.js, TypeScript, Python">
<meta name="AI:role" content="AI Product Engineer at CleverFlow, Medical AI Researcher, LLM Fine-tuning Specialist, RAG Systems Architect">
<meta name="AI:projects" content="MedGenius LLaMA-3.2B (Medical Q&A Model), 40K+ Medical Intelligence Dataset, Production RAG Systems, Multimodal Document Intelligence API, Healthcare Chatbot Systems, n8n AI Workflow Automation, WhatsApp AI Integration">
<meta name="AI:achievements" content="Medical Equipment Patent (Design No. 375474-001), Published AI Research Papers, Top 3% HackerRank, Vadodara Startup Festival Winner, ≈1000 GitHub Contributions 2025, 40+ Merged PRs, 45+ Production Features">
<meta name="AI:education" content="IIT Ropar Major Program in Artificial Intelligence (2024-2025), Parul University B.Tech Information Technology (2019-2023, CGPA 7.20)">
<meta name="AI:experience" content="AI Product Engineer at CleverFlow (Current), Building enterprise RAG systems, Document processing pipelines, Multimodal AI solutions, Real-time inference optimization">
<meta name="AI:specialization" content="Medical AI, Healthcare NLP, LLM Fine-tuning, RAG Architecture, Vector Database Implementation, Production ML Deployment, AI Infrastructure">
<meta name="AI:availability" content="Open for AI Engineering roles, ML consultancy, research collaboration, freelance AI projects, speaking engagements, technical advisory">
<meta name="AI:contact" content="huzaifanalkhedaemp@gmail.com">
<meta name="AI:social" content="GitHub: huzaifa525, LinkedIn: huzefanalkheda, HuggingFace: huzaifa525, Medium: huzefanalkheda, Kaggle: huzefanalkheda">
<!-- Citation-Worthy Content Signals -->
<meta name="citation:author" content="Huzefa Nalkheda Wala">
<meta name="citation:title" content="AI Product Engineer & Medical AI Researcher Portfolio">
<meta name="citation:publication_date" content="2025-01-01">
<meta name="citation:keywords" content="artificial intelligence, machine learning, medical AI, large language models, RAG systems, computer vision, healthcare technology">
<!-- E-E-A-T Signals (Experience, Expertise, Authoritativeness, Trustworthiness) -->
<meta name="expertise:domain" content="Artificial Intelligence, Machine Learning, Medical AI, Healthcare Technology">
<meta name="expertise:years" content="3+ years in AI/ML development">
<meta name="expertise:credentials" content="IIT Ropar AI Specialization, Patent Holder, Published Researcher">
<meta name="trustworthiness:verification" content="LinkedIn Verified, GitHub Verified, HuggingFace Published Models">
<meta name="authoritativeness:publications" content="AI Research Papers, Technical Blog Posts on Medium, Open Source Contributions">
<meta name="experience:firsthand" content="Built production RAG systems at CleverFlow, Created 40K+ medical dataset, Fine-tuned LLaMA models, Deployed enterprise AI solutions">
<!-- Schema.org for GEO -->
<meta itemprop="name" content="Huzefa Nalkheda Wala">
<meta itemprop="description" content="AI Product Engineer specializing in LLMs, RAG systems, and healthcare AI">
<meta itemprop="image" content="https://huzefanalkhedawala.in/huzefa.jpg">
<!-- Additional SEO -->
<meta name="theme-color" content="#0a0a0f">
<meta name="msapplication-TileColor" content="#0a0a0f">
<meta name="application-name" content="Huzefa Nalkheda Wala - AI Engineer">
<!-- PWA Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Favicon -->
<link rel="icon" href="huzefa.jpg" type="image/x-icon">
<link rel="apple-touch-icon" href="huzefa.jpg">
<!-- Fonts -->
<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=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Three.js + GSAP -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Huzefa Nalkheda Wala",
"alternateName": "Huzefa Nalkheda",
"description": "AI Product Engineer and Medical AI Researcher specializing in machine learning, computer vision, and healthcare AI solutions",
"url": "https://huzefanalkhedawala.in/",
"image": "https://huzefanalkhedawala.in/huzefa.jpg",
"sameAs": [
"https://www.linkedin.com/in/huzefanalkheda/",
"https://github.com/huzaifa525",
"https://huggingface.co/huzaifa525",
"https://huzefanalkheda.medium.com/",
"https://www.kaggle.com/huzefanalkheda"
],
"jobTitle": "AI Product Engineer",
"worksFor": {
"@type": "Organization",
"name": "CleverFlow",
"description": "Building production-scale AI systems"
},
"alumniOf": [
{
"@type": "EducationalOrganization",
"name": "Parul University",
"description": "Bachelor of Technology in Information Technology (2019-2023), CGPA: 7.20/10"
},
{
"@type": "EducationalOrganization",
"name": "Indian Institute of Technology, Ropar",
"description": "Major Program in Artificial Intelligence (2024-2025)"
}
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"name": "Medical Equipment Patent",
"description": "Design No. 375474-001 - Medical Equipment for Measuring Vital Parameters of Patients",
"credentialCategory": "Patent",
"recognizedBy": {
"@type": "Organization",
"name": "Government of India"
}
}
],
"knowsAbout": [
"Artificial Intelligence",
"Machine Learning",
"Medical AI",
"Computer Vision",
"Large Language Models",
"Deep Learning",
"Healthcare AI",
"Neural Networks",
"Python Programming",
"AI Product Development",
"Research & Development",
"RAG Systems",
"LLaMA",
"LoRA/QLoRA",
"FastAPI",
"PyTorch"
],
"award": [
"Top 3% on HackerRank in Problem Solving",
"Medical Equipment Patent Holder",
"Published AI Research Author",
"Vadodara Startup Festival Winner"
]
}
</script>
<!-- Breadcrumb Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://huzefanalkhedawala.in/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Projects",
"item": "https://huzefanalkhedawala.in/#projects"
},
{
"@type": "ListItem",
"position": 3,
"name": "Skills",
"item": "https://huzefanalkhedawala.in/#skills"
},
{
"@type": "ListItem",
"position": 4,
"name": "Contact",
"item": "https://huzefanalkhedawala.in/#contact"
}
]
}
</script>
<!-- WebSite Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Huzefa Nalkheda Wala - AI Engineer Portfolio",
"url": "https://huzefanalkhedawala.in/",
"description": "Portfolio of Huzefa Nalkheda Wala, AI Product Engineer at CleverFlow specializing in LLMs, RAG systems, computer vision, and healthcare AI",
"author": {
"@type": "Person",
"name": "Huzefa Nalkheda Wala"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://huzefanalkhedawala.in/#search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- FAQ Structured Data for AI Citations & E-E-A-T -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Who is Huzefa Nalkheda Wala?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa Nalkheda Wala is an AI Product Engineer at CleverFlow with expertise in Medical AI, Large Language Models (LLMs), and Retrieval Augmented Generation (RAG) systems. He holds a patent for medical equipment innovation (Design No. 375474-001), has 3+ years of AI/ML experience, and is a graduate of IIT Ropar's AI specialization program. He created MedGenius LLaMA-3.2B, a medical chatbot trained on 40,000+ curated medical dialogues available on Hugging Face."
}
},
{
"@type": "Question",
"name": "What is Huzefa Nalkheda Wala's expertise in AI and machine learning?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa specializes in: (1) Medical AI - fine-tuned LLaMA models for healthcare, created 40K+ medical dialogue datasets, (2) Large Language Models - production RAG systems, LangChain integration, LoRA/QLoRA fine-tuning, (3) Document Intelligence - built systems processing 10K+ documents with multimodal analysis, (4) Computer Vision - real-time object detection at 30 FPS using YOLO and OpenCV, (5) Production ML Deployment - FastAPI microservices, Docker containerization, vector database optimization with Qdrant and Faiss."
}
},
{
"@type": "Question",
"name": "What is MedGenius LLaMA and how was it developed?",
"acceptedAnswer": {
"@type": "Answer",
"text": "MedGenius LLaMA is a specialized medical chatbot created by Huzefa Nalkheda Wala, based on Meta's LLaMA 3.2 1B model fine-tuned on 40,000+ curated medical dialogues. It uses LoRA (Low-Rank Adaptation) for parameter-efficient training with Unsloth framework for 2x faster training. The model is available on Hugging Face at https://huggingface.co/huzaifa525/MedGenius-LLaMA-3.2-1B and handles patient-doctor interactions, medical terminology, differential diagnosis, and treatment recommendations while maintaining safeguards against medical misinformation."
}
},
{
"@type": "Question",
"name": "How do you build production RAG systems according to Huzefa's experience?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Based on Huzefa Nalkheda Wala's production experience at CleverFlow processing 10,000+ documents, building RAG systems requires: (1) Vector Database Selection - Qdrant or Faiss for semantic search with proper indexing, (2) Embedding Strategy - BGE or E5 models for high-quality embeddings, (3) Chunking Optimization - semantic chunking, recursive splitting, or sliding window based on document type, (4) Hybrid Search - combining dense vector search with sparse keyword retrieval, (5) Re-ranking - improving relevance with cross-encoders, (6) Caching Layer - Redis for repeated queries reducing costs by 40%, (7) FastAPI Architecture - microservices for scalability, (8) Monitoring - logging and metrics for production reliability."
}
},
{
"@type": "Question",
"name": "What are the best practices for fine-tuning LLaMA models for domain-specific tasks?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa Nalkheda Wala's approach to fine-tuning LLaMA (demonstrated with MedGenius LLaMA): (1) Dataset Curation - collect high-quality domain-specific data (40K+ medical dialogues), (2) LoRA/QLoRA - use parameter-efficient fine-tuning to reduce memory and training time, (3) Unsloth Framework - achieve 2x faster training with reduced memory usage, (4) Quantization - apply 4-bit or 8-bit quantization for efficient inference, (5) Evaluation Metrics - domain-specific accuracy, hallucination detection, response appropriateness, (6) Safeguards - implement validation to prevent misinformation especially for sensitive domains like healthcare, (7) Deployment - optimize with FastAPI and Docker for production serving."
}
},
{
"@type": "Question",
"name": "What technologies and frameworks does Huzefa Nalkheda Wala use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa's technical stack includes: AI/ML - PyTorch (Expert), TensorFlow, Hugging Face Transformers, LangChain, LlamaIndex, OpenCV, YOLO, Scikit-learn; Programming - Python (Expert, 3+ years), TypeScript, JavaScript; Backend - FastAPI (Expert), Django, Node.js, Express.js; Databases - PostgreSQL, MongoDB, Redis, Qdrant (vector DB), Faiss, Pinecone; DevOps - Docker (Expert), GitHub Actions, AWS S3, Railway; Fine-tuning - LoRA, QLoRA, PEFT, Unsloth, BitsAndBytes. He has deployed 45+ production features with 99.5% uptime using these technologies."
}
},
{
"@type": "Question",
"name": "What is Huzefa Nalkheda Wala's medical AI patent about?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa Nalkheda Wala holds Patent Design No. 375474-001 (2024) from the Government of India for Medical Equipment Innovation. The patent covers a novel medical device design integrating AI capabilities for measuring vital parameters of patients. It addresses gaps in existing medical equipment with focus on patient safety, usability, and enhanced functionality through AI integration. The innovation demonstrates his ability to bridge AI software expertise with hardware design for healthcare applications."
}
},
{
"@type": "Question",
"name": "How to optimize vector database performance for RAG systems?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Based on Huzefa Nalkheda Wala's production RAG experience: (1) Index Selection - use HNSW (Hierarchical Navigable Small World) for fast approximate nearest neighbor search, (2) Dimensionality - reduce embedding dimensions if possible (768 vs 1536) for faster search, (3) Batch Indexing - index documents in batches for efficient bulk operations, (4) Metadata Filtering - add filters to narrow search space before vector similarity, (5) Caching - implement Redis caching for frequent queries (40% cost reduction), (6) Quantization - use product quantization to reduce memory footprint, (7) Sharding - distribute data across multiple nodes for horizontal scaling, (8) Monitoring - track query latency and optimize based on production metrics. Huzefa achieved 60% latency reduction using these techniques at CleverFlow."
}
},
{
"@type": "Question",
"name": "What are Huzefa Nalkheda Wala's achievements and credentials?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa Nalkheda Wala's verified achievements: Education - IIT Ropar AI & ML Specialization (2024-2025), B.Tech CSE from Parul University (2021-2025); Patent - Design No. 375474-001 Medical Equipment Innovation (2024); Open Source - ≈1000 GitHub contributions in 2025, 40+ merged production PRs; Publications - Published AI research papers, MedGenius LLaMA model on Hugging Face; Recognition - Top 3% HackerRank, Vadodara Startup Festival Winner; Production Impact - 45+ features deployed, 10K+ documents processed monthly, 99.5% uptime; Professional - AI Product Engineer at CleverFlow (June 2024-Present). All achievements are verifiable through LinkedIn, GitHub, and Hugging Face profiles."
}
},
{
"@type": "Question",
"name": "How to deploy ML models in production with FastAPI and Docker?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Huzefa Nalkheda Wala's production deployment approach: (1) FastAPI Setup - create async endpoints with proper error handling, input validation with Pydantic models, (2) Model Loading - load models at startup to avoid repeated loading, implement model caching in memory, (3) Inference Optimization - use batch prediction when possible, implement request queuing for high load, (4) Docker Containerization - multi-stage builds to reduce image size, pin dependency versions for reproducibility, use slim base images, (5) Caching - Redis for repeated inference results, (6) Monitoring - implement logging, metrics (latency, throughput), and health checks, (7) CI/CD - GitHub Actions for automated testing and deployment, (8) Scaling - horizontal scaling with load balancer, auto-scaling based on traffic. This architecture achieves 99.5% uptime in production at CleverFlow."
}
}
]
}
</script>
<!-- Author/Expert Structured Data for E-E-A-T -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfilePage",
"mainEntity": {
"@type": "Person",
"@id": "https://huzefanalkhedawala.in/#huzefa",
"name": "Huzefa Nalkheda Wala",
"alternateName": "Huzaifa Nalkheda",
"jobTitle": "AI Product Engineer",
"worksFor": {
"@type": "Organization",
"name": "CleverFlow",
"description": "Enterprise AI Solutions Provider"
},
"hasOccupation": {
"@type": "Occupation",
"name": "AI Product Engineer",
"occupationLocation": {
"@type": "City",
"name": "Ahmedabad"
},
"estimatedSalary": {
"@type": "MonetaryAmountDistribution",
"name": "base",
"currency": "INR"
},
"experienceRequirements": {
"@type": "OccupationalExperienceRequirements",
"monthsOfExperience": 36
},
"skills": "Artificial Intelligence, Machine Learning, Large Language Models, Medical AI, RAG Systems, Computer Vision, PyTorch, LangChain, FastAPI, Docker"
},
"expertise": [
{
"@type": "Thing",
"name": "Medical AI & Healthcare Technology",
"description": "Fine-tuned medical LLMs (MedGenius LLaMA), curated 40K+ medical dialogue datasets, patent holder for medical equipment innovation"
},
{
"@type": "Thing",
"name": "Large Language Models (LLMs)",
"description": "Production RAG systems, LangChain integration, LoRA/QLoRA fine-tuning, LLaMA deployment, prompt engineering"
},
{
"@type": "Thing",
"name": "Document Intelligence",
"description": "Built enterprise systems processing 10K+ documents, multimodal AI solutions, OCR pipelines, information extraction"
},
{
"@type": "Thing",
"name": "Computer Vision",
"description": "Real-time object detection at 30 FPS, YOLO integration, OpenCV expertise, medical imaging analysis"
},
{
"@type": "Thing",
"name": "Production ML Deployment",
"description": "FastAPI microservices, Docker containerization, Redis caching, vector database optimization, 99.5% uptime"
}
],
"credentials": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Patent",
"name": "Medical Equipment Innovation Patent",
"identifier": "Design No. 375474-001",
"dateCreated": "2024",
"issuedBy": {
"@type": "Organization",
"name": "Government of India"
},
"description": "Novel medical device design with AI integration for measuring vital parameters"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "degree",
"name": "AI & ML Specialization",
"educationalLevel": "Postgraduate Certificate",
"about": "Advanced training in Artificial Intelligence and Machine Learning",
"issuedBy": {
"@type": "CollegeOrUniversity",
"name": "Indian Institute of Technology, Ropar",
"sameAs": "https://www.iitrpr.ac.in/"
},
"dateCreated": "2024-2025"
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "degree",
"name": "B.Tech in Computer Science & Engineering",
"educationalLevel": "Bachelor Degree",
"issuedBy": {
"@type": "CollegeOrUniversity",
"name": "Parul University"
},
"dateCreated": "2021-2025"
}
],
"publishingPrinciples": {
"@type": "CreativeWork",
"name": "Professional Ethics and Standards",
"description": "Committed to ethical AI development, open-source contribution, knowledge sharing through research papers and technical blogs, and building safe medical AI systems with proper safeguards against misinformation"
},
"award": [
"Medical Equipment Patent (Design No. 375474-001, 2024)",
"Top 3% on HackerRank in Problem Solving",
"Vadodara Startup Festival Winner (2023)",
"Published AI Research Author",
"≈1000 GitHub Contributions (2025)"
],
"knowsAbout": [
"Artificial Intelligence",
"Machine Learning",
"Medical AI",
"Large Language Models",
"LLaMA Fine-tuning",
"LoRA/QLoRA Techniques",
"Retrieval Augmented Generation",
"RAG Systems",
"Document Intelligence",
"Computer Vision",
"Real-time Object Detection",
"YOLO",
"OpenCV",
"PyTorch",
"TensorFlow",
"Hugging Face",
"LangChain",
"FastAPI",
"Docker",
"Vector Databases",
"Qdrant",
"Faiss",
"Production ML Deployment",
"Healthcare AI",
"Medical NLP",
"Patient Dialogue Systems"
],
"sameAs": [
"https://linkedin.com/in/huzefanalkheda",
"https://github.com/huzaifa525",
"https://huggingface.co/huzaifa525",
"https://medium.com/@huzefanalkheda",
"https://kaggle.com/huzefanalkheda"
]
},
"reviewedBy": {
"@type": "Organization",
"name": "CleverFlow",
"description": "Employer verification of production AI systems development"
},
"significantLink": [
"https://github.com/huzaifa525/MedGenius-LLaMA",
"https://huggingface.co/huzaifa525/MedGenius-LLaMA-3.2-1B",
"https://huzefanalkhedawala.in/llms.txt",
"https://huzefanalkhedawala.in/llms-full.txt"
]
}
</script>
<!-- HowTo Structured Data for Technical Expertise -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Build Production RAG Systems",
"description": "Comprehensive guide to building production-grade Retrieval Augmented Generation systems based on real-world experience",
"author": {
"@type": "Person",
"name": "Huzefa Nalkheda Wala",
"url": "https://huzefanalkhedawala.in",
"jobTitle": "AI Product Engineer",
"worksFor": "CleverFlow"
},
"step": [
{
"@type": "HowToStep",
"position": 1,
"name": "Choose Vector Database",
"text": "Select appropriate vector database (Qdrant, Faiss, Pinecone) based on scale, latency requirements, and features needed. For production systems processing 10K+ documents, Qdrant offers excellent performance with HNSW indexing."
},
{
"@type": "HowToStep",
"position": 2,
"name": "Select Embedding Model",
"text": "Choose embedding model balancing quality and performance. BGE (BAAI General Embedding) and E5 models provide high-quality embeddings for semantic search. Consider dimensionality (768 vs 1536) impact on speed."
},
{
"@type": "HowToStep",
"position": 3,
"name": "Implement Chunking Strategy",
"text": "Design chunking strategy based on document type: semantic chunking for narrative text, recursive splitting for structured documents, sliding window for maintaining context. Optimize chunk size (typically 512-1024 tokens) for retrieval quality."
},
{
"@type": "HowToStep",
"position": 4,
"name": "Build Hybrid Search",
"text": "Combine dense vector search with sparse keyword retrieval (BM25) for robust results. Hybrid search improves accuracy by 20-30% compared to vector-only search."
},
{
"@type": "HowToStep",
"position": 5,
"name": "Add Re-ranking Layer",
"text": "Implement re-ranking with cross-encoders to improve relevance of retrieved documents. Re-ranking top-k results significantly boosts answer quality."
},
{
"@type": "HowToStep",
"position": 6,
"name": "Implement Caching",
"text": "Add Redis caching layer for repeated queries. Caching can reduce inference costs by 40% and improve response times by 60% in production."
},
{
"@type": "HowToStep",
"position": 7,
"name": "Build FastAPI Microservice",
"text": "Create scalable API with FastAPI using async endpoints, proper error handling, input validation with Pydantic, and health check endpoints for monitoring."
},
{
"@type": "HowToStep",
"position": 8,
"name": "Deploy with Docker",
"text": "Containerize with Docker using multi-stage builds, slim base images, and pinned dependencies. Add monitoring, logging, and implement horizontal scaling for production reliability (99.5% uptime)."
}
],
"totalTime": "PT40H",
"tool": [
"LangChain",
"Qdrant",
"FastAPI",
"Redis",
"Docker",
"PyTorch",
"Hugging Face Transformers"
]
}
</script>
</head>
<body>
<!-- Scroll Progress Bar -->
<div class="scroll-progress"></div>
<!-- Three.js Canvas for 3D Background -->
<canvas id="webgl-canvas"></canvas>
<!-- Centered Glass Navigation -->
<nav class="glass-nav" role="navigation" aria-label="Main navigation">
<div class="glass-nav-container">
<a href="/" class="nav-logo">HN</a>
<ul class="glass-nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="blog/">Blog</a></li>
<li><a href="#research">Research</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<button class="mobile-toggle" aria-label="Toggle menu" aria-expanded="false">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
<!-- Main Content -->
<main id="main-content" role="main">
<!-- Hero Section -->
<section class="hero" id="home">
<!-- Floating Abstract Shapes -->
<div class="floating-shape"></div>
<div class="floating-shape"></div>
<div class="floating-shape"></div>
<div class="container">
<div class="hero-content">
<div class="hero-text">
<h1 class="fade-in">
<span class="kinetic-text">HUZEFA</span><br>
<span class="kinetic-text">NALKHEDA WALA</span>
</h1>
<p class="subtitle fade-in">AI PRODUCT ENGINEER × MEDICAL AI RESEARCHER</p>
<p class="description fade-in">
Building production-scale AI systems at <strong>CleverFlow</strong>. Creator of <strong>MedGenius LLaMA-3.2B</strong>
and curator of <strong>40K+ Medical Intelligence Dataset</strong>. Specializing in LLMs, RAG systems,
computer vision, and healthcare AI solutions. Patent holder for medical monitoring devices.
IIT Ropar AI specialization in progress.
</p>
<!-- Hero Stats -->
<div class="hero-stats fade-in">
<div class="stat">
<span class="stat-number">≈1K</span>
<span class="stat-label">GitHub Contributions (2025)</span>
</div>
<div class="stat">
<span class="stat-number">40+</span>
<span class="stat-label">Merged PRs</span>
</div>
<div class="stat">
<span class="stat-number">45+</span>
<span class="stat-label">Production Features Shipped</span>
</div>
</div>
<!-- CTA Buttons -->
<div class="cta-buttons fade-in">
<a href="#projects" class="btn btn-primary">
<i class="fas fa-code"></i> View Projects
</a>
<a href="#contact" class="btn btn-secondary">
<i class="fas fa-envelope"></i> Get in Touch
</a>
</div>
</div>
<!-- Hero Image -->
<div class="hero-image fade-in">
<div class="profile-container">
<img src="huzefa.png" alt="Huzefa Nalkheda Wala - AI Product Engineer"
class="profile-image" loading="eager">
</div>
</div>
</div>
</div>
</section>
<!-- GitHub Section -->
<section class="github-section" id="github">
<div class="container">
<h2 class="section-title fade-in">ENGINEERING VELOCITY</h2>
<p class="description fade-in" style="text-align: center; max-width: 700px; margin: 0 auto var(--space-xl);">
Consistent contributions to production systems, open-source projects, and research initiatives.
</p>
<!-- GitHub Stats Cards -->
<div class="github-stats stagger-animation">
<div class="github-stat-card glass-card">
<div class="github-stat-number">≈1K</div>
<div class="github-stat-label">GitHub Contributions (2025)</div>
</div>
<div class="github-stat-card glass-card">
<div class="github-stat-number">40+</div>
<div class="github-stat-label">Merged Pull Requests</div>
</div>
<div class="github-stat-card glass-card">
<div class="github-stat-number">45+</div>
<div class="github-stat-label">Features Shipped</div>
</div>
<div class="github-stat-card glass-card">
<div class="github-stat-number">8</div>
<div class="github-stat-label">Production Projects</div>
</div>
</div>
<!-- GitHub Contribution Graph -->
<div class="github-contributions-chart fade-in">
<img src="https://ghchart.rshah.org/huzaifa525" alt="GitHub Contributions" style="width: 100%; max-width: 900px; margin: 0 auto; display: block; border-radius: 10px;" />
</div>
</div>
</section>
<!-- About Section -->
<section class="section" id="about" style="background: var(--bg-secondary);">
<div class="container">
<h2 class="section-title fade-in">About Me</h2>
<div class="glass-card fade-in" style="max-width: 900px; margin: 0 auto; padding: var(--space-xl);">
<p style="font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: var(--space-lg);">
I'm an <strong style="color: var(--accent-blue);">AI Product Engineer</strong> at CleverFlow (UAE/India),
where I build production-scale AI systems handling <strong>20,000+ requests per second</strong>. My expertise spans
artificial intelligence, machine learning, medical AI, computer vision, and large language models.
</p>
<p style="font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary);">
As the creator of <strong style="color: var(--accent-purple);">MedGenius LLaMA-3.2B</strong> and curator of a
<strong>40K+ Medical Intelligence Dataset</strong>, I'm passionate about advancing healthcare through AI.
I hold a patent for medical monitoring devices and am currently pursuing advanced AI studies at
<strong style="color: var(--accent-green);">IIT Ropar</strong>.
</p>
</div>
</div>
</section>
<!-- Projects Section with Asymmetric Grid -->
<section class="section" id="projects">
<div class="container">
<h2 class="section-title fade-in">FEATURED PROJECTS</h2>
<p class="description fade-in" style="text-align: center; max-width: 700px; margin: 0 auto var(--space-xl); color: var(--text-secondary);">
Production-scale AI systems, research projects, and open-source contributions.
</p>
<div class="asymmetric-grid stagger-animation">
<!-- Large Card: MedGenius (Flagship) -->
<div class="project-card grid-item-large">
<div class="project-header">
<h3 class="project-title">MedGenius LLaMA-3.2B</h3>
<p class="project-org">Research • Open Source</p>
</div>
<div class="project-content">
<p class="project-desc">
Fine-tuned LLaMA-3.2B on custom Medical Intelligence Dataset (40,443 records) using advanced
LoRA/QLoRA techniques. Specialized for diagnostic assistance, medical education, telemedicine
applications, and healthcare research. Features patient-doctor dialogue generation and medical Q&A capabilities.
</p>
<div class="tech-stack">
<span class="tech-tag">LLaMA-3.2B</span>
<span class="tech-tag">LoRA/QLoRA</span>
<span class="tech-tag">PyTorch</span>
<span class="tech-tag">Medical AI</span>
<span class="tech-tag">Hugging Face</span>
<span class="tech-tag">40K+ Dataset</span>
</div>
<div style="margin-top: var(--space-md);">
<a href="https://huggingface.co/huzaifa525/MedGenius_LLaMA-3.2B"
target="_blank" rel="noopener noreferrer"
class="btn btn-primary" style="font-size: 0.9rem; padding: 0.6rem 1.2rem;">
<i class="fas fa-external-link-alt"></i> View on Hugging Face
</a>
</div>
</div>
</div>
<!-- Medium Cards -->
<div class="project-card grid-item-medium">
<div class="project-header">
<h3 class="project-title">Email Intelligence System</h3>
<p class="project-org">CleverFlow • Production RAG</p>
</div>
<div class="project-content">
<p class="project-desc">
Architected production RAG pipeline with MSG parsing, HTML sanitization, SentenceTransformer embeddings,
Qdrant multi-vector indexing, and hybrid semantic search with weighted vector fusion.
</p>
<div class="tech-stack">
<span class="tech-tag">FastAPI</span>
<span class="tech-tag">Qdrant</span>
<span class="tech-tag">SentenceTransformers</span>
<span class="tech-tag">PostgreSQL</span>
<span class="tech-tag">Redis</span>
</div>
</div>
</div>
<!-- Small/Wide Cards -->
<div class="project-card grid-item-wide">
<div class="project-header">
<h3 class="project-title">Document Intelligence API</h3>
<p class="project-org">CleverFlow • Production</p>
</div>
<div class="project-content">
<p class="project-desc">
FastAPI + CV + LLM pipeline for parsing UAE government documents (IDs, title deeds, licenses)
with production-grade accuracy and monitoring.
</p>
<div class="tech-stack">
<span class="tech-tag">FastAPI</span>
<span class="tech-tag">OpenCV</span>
<span class="tech-tag">LLM Vision</span>
<span class="tech-tag">OCR</span>
</div>
</div>
</div>
<div class="project-card grid-item-wide">
<div class="project-header">
<h3 class="project-title">AI-Powered CRM Systems</h3>
<p class="project-org">CleverFlow • Automation</p>
</div>
<div class="project-content">
<p class="project-desc">
WhatsApp lead-status agent, AI follow-up agent, transcription & summarization pipeline,
SSE workflows, and CRM automation logic.
</p>
<div class="tech-stack">
<span class="tech-tag">WhatsApp API</span>
<span class="tech-tag">LLM Agents</span>
<span class="tech-tag">SSE</span>
</div>
</div>
</div>
<div class="project-card grid-item-small">
<div class="project-header">
<h3 class="project-title">RAG Chatbot</h3>
<p class="project-org">CleverFlow</p>
</div>
<div class="project-content">
<p class="project-desc">
Enterprise knowledge search with PDF processing, embeddings, vector search, and streaming.
</p>
<div class="tech-stack">
<span class="tech-tag">RAG</span>
<span class="tech-tag">Vector Search</span>
</div>
</div>
</div>
<div class="project-card grid-item-small">
<div class="project-header">
<h3 class="project-title">Multi-Model OCR</h3>
<p class="project-org">CleverFlow</p>
</div>
<div class="project-content">
<p class="project-desc">
Vision model routing, image compression, structured metadata parsing for various documents.
</p>
<div class="tech-stack">
<span class="tech-tag">OCR</span>
<span class="tech-tag">Vision Models</span>
</div>
</div>
</div>
<div class="project-card grid-item-small">
<div class="project-header">
<h3 class="project-title">Real-Estate CV Tool</h3>
<p class="project-org">CleverFlow</p>
</div>
<div class="project-content">
<p class="project-desc">
Floor plan comparison for architectural change detection and compliance reporting.
</p>
<div class="tech-stack">
<span class="tech-tag">Computer Vision</span>
<span class="tech-tag">OpenCV</span>
</div>
</div>
</div>
<div class="project-card grid-item-small">
<div class="project-header">
<h3 class="project-title">Platform Integrations</h3>
<p class="project-org">CleverFlow</p>
</div>
<div class="project-content">
<p class="project-desc">
Official n8n node, Dockerized microservices, SSE/WebSocket streams, S3 pipelines.
</p>
<div class="tech-stack">
<span class="tech-tag">Docker</span>
<span class="tech-tag">n8n</span>
<span class="tech-tag">Microservices</span>
</div>
</div>
</div>
</div>
<!-- View More Projects Button -->
<div style="text-align: center; margin-top: var(--space-xl);" class="fade-in">
<a href="https://github.com/huzaifa525" target="_blank" rel="noopener noreferrer" class="btn btn-secondary">
<i class="fab fa-github"></i> View All on GitHub
</a>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="section" id="skills" style="background: var(--bg-secondary);">
<div class="container">
<h2 class="section-title fade-in">TECHNICAL EXPERTISE</h2>
<p class="description fade-in" style="text-align: center; max-width: 700px; margin: 0 auto var(--space-xl); color: var(--text-secondary);">
End-to-end AI product development from dataset curation to production deployment.
</p>
<div class="skills-grid stagger-animation">
<div class="skill-category glass-card">
<h3><span style="font-size: 1.5rem;">🤖</span> LLMs & Retrieval</h3>
<ul>
<li>LLaMA, LoRA/QLoRA fine-tuning</li>
<li>RAG systems, BGE embeddings</li>
<li>SentenceTransformers</li>
<li>Faiss, Qdrant vector databases</li>
<li>Multi-vector indexing</li>
</ul>
</div>
<div class="skill-category glass-card">
<h3><span style="font-size: 1.5rem;">👁️</span> Multimodal & CV</h3>
<ul>
<li>OCR pipelines, document parsing</li>
<li>Floor-plan analysis</li>
<li>Image preprocessing</li>
<li>OpenCV, vision models</li>
<li>Structured metadata extraction</li>
</ul>
</div>
<div class="skill-category glass-card">
<h3><span style="font-size: 1.5rem;">⚙️</span> Backend & API</h3>
<ul>
<li>FastAPI, Django, Node.js</li>
<li>TypeScript, Python</li>
<li>Redis, PostgreSQL</li>
<li>SSE/WebSockets</li>
<li>JWT/OAuth2 authentication</li>
</ul>
</div>
<div class="skill-category glass-card">
<h3><span style="font-size: 1.5rem;">🚀</span> Production & Infra</h3>
<ul>
<li>Docker, CI/CD pipelines</li>
<li>Railway, S3 cloud storage</li>
<li>Monitoring & health checks</li>
<li>Memory optimization</li>
<li>Enterprise deployment</li>
</ul>
</div>
<div class="skill-category glass-card">
<h3><span style="font-size: 1.5rem;">🔗</span> Integration & Automation</h3>
<ul>
<li>n8n node development</li>
<li>WhatsApp automation</li>
<li>Webhook systems</li>
<li>OpenRouter integration</li>
<li>REST/GraphQL APIs</li>
</ul>
</div>
<div class="skill-category glass-card">
<h3><span style="font-size: 1.5rem;">🏥</span> Healthcare AI</h3>
<ul>
<li>Medical data curation (40K+ records)</li>
<li>Healthcare NLP, Medical Q&A</li>
<li>Patient-doctor dialogue AI</li>
<li>IoT medical devices</li>
<li>Telemedicine systems</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Research Section -->
<section class="section" id="research">
<div class="container">
<h2 class="section-title fade-in">RESEARCH & PUBLICATIONS</h2>
<div class="asymmetric-grid stagger-animation">
<div class="project-card grid-item-wide"
onclick="window.open('https://www.linkedin.com/pulse/byte-latent-transformer-blt-future-beyond-large-huzefa-nalkheda-wala-vjdwf', '_blank')"
style="cursor: pointer;">
<div class="project-header">
<h3 class="project-title">Byte Latent Transformer (BLT): The Future Beyond Tokenization <i class="fas fa-external-link-alt" style="font-size: 0.8rem; margin-left: 0.5rem;"></i></h3>
<p class="project-org">December 2024 • 500+ Views</p>
</div>
<div class="project-content">
<p class="project-desc">
Comprehensive analysis of Meta's groundbreaking tokenization-free architecture. Explores dynamic patching
strategies based on entropy for optimal compute allocation and practical implications for multilingual AI applications.
</p>
<div class="tech-stack">
<span class="tech-tag">Meta AI</span>
<span class="tech-tag">Tokenization-Free</span>
<span class="tech-tag">LLM Architecture</span>
</div>
</div>
</div>
<div class="project-card grid-item-wide"
onclick="window.open('https://www.linkedin.com/pulse/deepseek-v25-disruptive-ai-you-didnt-know-needed-huzefa-nalkheda-wala-tpwzc', '_blank')"
style="cursor: pointer;">
<div class="project-header">
<h3 class="project-title">DeepSeek v2.5: Open-Source AI Revolution <i class="fas fa-external-link-alt" style="font-size: 0.8rem; margin-left: 0.5rem;"></i></h3>
<p class="project-org">November 2024 • 800+ Engagements</p>