-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2296 lines (2049 loc) · 209 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head lang="en">
<title>Arunkumar Venkataramanan - Technology Product Leader</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> -->
<meta name="author" content="Arunkumar Venkataramanan">
<meta name="description" content="Engineering and Technology Product Management Leadership Portfolio and Curriculum Vitae of Arunkumar Venkataramanan">
<meta name="keywords" content="arunkumar venkataramanan, arunkumar v ramanan, arunkumar ramanan, arun, arunkumar, arunkumar v, product management, product leadership, product manager, tech product manager, product leader, technical program management, program manager, artificial intelligence, ai, machine learning, ml, deep learning, generative ai models, python">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin>
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin=>
<!-- CSS | font-awesome -->
<!-- Credits: http://fortawesome.github.io/Font-Awesome/icons/ -->
<!--<link rel="stylesheet" type="text/css" href="css/font-awesome/css/font-awesome.css">-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- CSS | Style -->
<!-- Credits: http://themeforest.net/user/FlexyCodes -jquery.mCustomScrollbar.min.css-->
<link rel="stylesheet" type="text/css" href="css/index.css">
<!-- CSS | FancyBox -->
<!-- Credits: http://themeforest.net/user/FlexyCodes -jquery.mCustomScrollbar.min.css-->
<link rel="stylesheet" type="text/css" href="css/jquery.fancybox.css">
<!--CSS | Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Oxygen:100,200,300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:100,100i,200,300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<!--CSS | DevIcons-->
<!-- Credits: https://konpa.github.io/devicon/ -->
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<!--<!–[if IE 7]>-->
<!--<link rel="stylesheet" type="text/css" href="css/icons/font-awesome-ie7.min.css"/>-->
<!--<![endif]–>-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127050293-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127050293-4');
</script>
</head>
<body class="color-theme-gray">
<div id="particles-js">
<!-- Start | Wrapper -->
<div class="wrapper">
<!-- Start | Container -->
<div class="container">
<div class="col-md-12 content">
<!-- Start | 1.1 -- Everything in one row -->
<div class="row">
<!-- Start | Profile Card -->
<div class="col-md-3 profile-card blue-background">
<div class="row">
<!-- Start | Profile Card Image-->
<div class="profile-card-image col-xs-12 col-sm-3 col-md-12 col-lg-12">
<!--<div class="picture-holder" id="profile_picture"></div>-->
<img src="https://lh4.googleusercontent.com/-bJYe4fvp7vI/AAAAAAAAAAI/AAAAAAAAAK4/aGPEeO4ib0Q/photo.jpg" class="picture-holder">
</div>
<!-- End | Profile Card Image-->
<!----------------------->
<!--Start | Profile Card Details-->
<div class="profile-card-details col-xs-12 col-sm-9 col-md-12 col-lg-12">
<div class="row">
<!--Start | Name-->
<div class="profile-card-name col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h3 >Arunkumar Venkataramanan</h3>
</div>
<!--End | Name-->
<!--Start | Header-->
<div class="profile-card-header col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h4 ><span id="profile-card-header"></span></h4>
</div>
<!--End | Header-->
<!--Start | Place-->
<div class="profile-card-place col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="section-title-inner text-color-black">
<h4><i class="fa fa-map-marker"></i> <a href="https://www.google.com/maps/place/Bengaluru,+Karnataka/">Bengaluru, India</a></h4>
</div> </div>
<!--End | Place-->
<!--Start | Description-->
<div class="profile-card-description col-xs-12 col-sm-12 col-md-12 col-lg-12 mobile-no-display">
<h7>Serial Entrepreneur, AI Innovator, Tech Founder, CEO, Chief Technologist, Product Leader and Architect at DeepBrainz AI, a DPIIT Recognized AI Tech Startup Company (Enterprise SaaS) and Stealth Startup (Consumer Tech) | Objectivist</h7>
</div>
<!--End | Description-->
<!--Start | Social Life-->
<div class="profile-card-social col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="all-social">
<a href="https://twitter.com/arunkumar_bvr" target="_blank"><i class="fab fa-twitter-square"></i></a>
<a href="https://github.com/arunkumarramanan" target="_blank"><i class="fab fa-github-square"></i></a>
<a href="https://linkedin.com/in/arunkumarramanan/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://www.kaggle.com/arunkumarramanan" target="_blank"><i class="fab fa-kaggle"></i></a>
<a href="https://arunkumarblog.medium.com" target="_blank"><i class="fab fa-medium"></i></a>
</div>
</div>
<!--End | Social Life-->
</div>
</div>
<!--End | Profile Card Details-->
</div>
</div>
<!-- End | Profile Card -->
<!------------------------------------------------------------>
<!------------------Partition Structure----------------------->
<!------------------------------------------------------------>
<!-- Start | Profile Tabs -->
<div class="col-md-9 profile-tabs">
<!-- Start | Tabs -->
<div class="tabs effect">
<!-- Start | Tabs Headers-->
<input type="radio" id="tab-1" name="tab" checked>
<span href="#tab-content-1"><i class="fa fa-user-o"></i><span class="mobile-no-display"> <b>About</b></span></span>
<input type="radio" id="tab-2" name="tab">
<span href="#tab-content-2"><i class="fa fa-globe"></i><span class="mobile-no-display"> <b>Projects</b></span></span>
<input type="radio" id="tab-5" name="tab">
<span href="#tab-content-5"><i class="fa fa-suitcase"></i><span class="mobile-no-display"> <b>Experience</b></span></span>
<input type="radio" id="tab-3" name="tab">
<span href="#tab-content-3"><i class="fa fa-code"></i><span class="mobile-no-display"> <b>Skills</b></span></span>
<input type="radio" id="tab-4" name="tab">
<span href="#tab-content-4"><i class="fa fa-university"></i><span class="mobile-no-display"> <b>Education</b></span></span>
<!--End | Tabs Headers-->
<div class="line ease"></div>
<div class="tab-content">
<!--Start | About Me-->
<section class="inside-tab" id="tab-content-1">
<div id="about-me">
<div class="image">
<div><h2>
<p style="text-align:center;">
<a href="https://deepbrainz.com"><img height="128" width="512" src="https://github.com/ArunkumarRamanan/arunkumarramanan.github.io/raw/master/email%20sign%20img.png" alt="DeepBrainz AI logo" align="middle"/></a></p>
</h2></div>
</div>
<h2><p class="para">
<a href="https://about.me/arunkumarramanan">Arunkumar Venkataramanan</a>
</p></h2>
<p class="para" ><span >Arunkumar Venkataramanan is a highly accomplished serial entrepreneur, AI innovator, and product leader with a decade of experience in the tech industry. He is the founder and CEO of DeepBrainz AI, a DPIIT-recognized startup based in Bangalore, India, that is building a modern integrated autonomous enterprise AI platform for business users.
</span></p>
<p class="para" ><span >Arunkumar's passion and mission to democratize responsible and human-centered AI for everyone has led him to innovate the status quo of AI/ML technology and envision new products that matter most in the industries and markets. Through his modern and integrated autonomous enterprise AI platform, Arunkumar is solving real-world problems and driving business growth. His dedication to advancing the industry is evident in his work at DeepBrainz AI.
</span></p>
<p class="para" ><span >Arunkumar is a visionary entrepreneur and product leader who has a strong passion for building innovative solutions that solve real-world problems and drive business growth. He has a proven track record of driving innovation and growth in the tech industry with extensive experience in Artificial Intelligence, Machine Learning, Data Science, and Cloud Computing. He is an expert in product management, software engineering, and AI, and his leadership and management skills are second to none.
</span></p>
<p class="para" ><span >Apart from his startup, He has also co-founded a Bengaluru-based consumer AI startup that helps companies make better decisions by analyzing customer data. The company's flagship product is an AI-powered personalization engine that uses ML algorithms to provide personalized recommendations to users based on their preferences and behavior.
</span></p>
<p class="para" ><span >His experience in AI and ML is particularly valuable in today's tech industry, where these technologies are rapidly transforming the way businesses operate. He has a strong track record of delivering successful products in this space, and his expertise in MLOps and AutoML enables him to develop cutting-edge AI solutions that drive business growth.
</span></p>
<p class="para" ><span >As an engineering graduate of Anna University with a B.Tech focused on Information Technology, He is a thought leader with a passion for executing his product vision through a well-defined strategy and objectives, backed by robust policies and business strategies. If you're looking for a seasoned product leader to take your tech company to the next level, Arunkumar is the right choice. With his unique blend of technical and business expertise, he has a proven track record of delivering state-of-the-art responsible AI and ML solutions that solve business problems and complex technical challenges using novel statistical analysis and modeling.
</span></p>
<p class="para" ><span >He has a unique blend of technical and business expertise, having worked as a Software Architect, Software Engineer in Machine Learning, Data Scientist (AI/ML), AI Practitioner, and Researcher. He is passionate about building innovative products that solve real-world problems and drive business growth. His proven track record of delivering state-of-the-art responsible AI and ML solutions using novel statistical analysis and modeling as data science solutions to business problems makes him a highly sought-after expert in the industry.
</span></p>
<p class="para" ><span >With his expertise and strategic vision, He has helped many organizations bring their products to market, increase their revenue, and gain a competitive advantage. His leadership and management skills are second to none, and he is always pushing the boundaries of what is possible in the tech industry. He is an engineering and technology product management leader and consultant with substantial experience and expertise in the AI, Data, and SaaS/Cloud ecosystem including MLOps, AutoML, and Enterprise AI.
</span></p>
<p class="para" ><span >His passion for democratizing AI and his track record of success make him a compelling choice for any company looking to take his AI capabilities to the next level. He is constantly pushing the boundaries of what is possible in the AI industry and developing cutting-edge solutions that solve real-world problems. With his well-defined strategy and objectives, backed by robust policies and business strategies, Arunkumar is a thought leader who is dedicated to executing his product vision.
</span></p>
<p class="para" ><span >With an engineering and product background and a passion for cutting-edge technology and innovative products, He has become a recognized leader in the industry, known for his expertise in designing, developing, testing, deploying, maintaining, and improving ML models, algorithms, systems, and infrastructure. His expertise in these areas has enabled him to make a significant impact on the industry, and he has been recognized as a 49th Kaggle Kernels Master, placing him in the top 1% and top 50 of the world's largest data science and machine learning community.
</span></p>
<p class="para" ><span >He is passionate about advancing responsible AI and democratizing its use. As such, he is leading the development of a next-gen human-centered, autonomous edge-to-cloud enterprise AI infra (SaaS) platform for business users. With his technical expertise and product management skills, Arunkumar has set himself apart as a visionary leader who is committed to making a positive impact on the world.
</span></p>
<p class="para" ><span >He is also a thought leader in the tech industry, with a strong presence on social media and in the broader tech community. He regularly speaks at conferences and events, publishes articles and papers on a variety of topics related to AI and ML, and collaborates with other experts to advance the field.
</span></p>
<p class="para" ><span >His diverse range of skills makes him a successful product manager in the tech industry, and he is committed to ongoing learning and professional development to stay up-to-date with the latest technological advancements and industry trends. He is a natural leader with strong communication, interpersonal, and problem-solving skills, and he is passionate about using technology to solve complex problems and make a positive impact on the world.
</span></p>
<p class="para" ><span >He is leading his company in developing a next-gen human-centered edge-to-cloud enterprise AI infra (SaaS) platform for builders, business users, and business decision-makers. He has a proven track record of leading cross-functional teams, delivering products on time, within budget, and meeting customer expectations. He is a natural collaborator who thrives in team-oriented environments and is committed to fostering a culture of innovation, inclusivity, and excellence.
</span></p>
<p class="para" ><span >He is a technology entrepreneur and executive with a proven track record of innovation and success. Currently serving as a partner executive with industry giants such as Google Cloud, NVIDIA, Microsoft, AWS, and more, Arunkumar is also the co-founder of a Consumer Tech Stealth Startup and plays a crucial role at DeepBrainz AI.
</span></p>
<p class="para" ><span >His extensive experience and expertise in the field have earned him numerous accolades, including being recognized as an MIT Technology Review Global Panelist, HBR Ascend Select Member, PSF Contributor, PSF Board Director Nominee, TensorFlow Research Cloud Participant, Kaggle Master, F6S Alpha Founder, and YC SUS Certified. He is also a well-known researcher and competitive programmer who has won several awards and recognition for his work in ML and AI, including being ranked as a Top 1% Kaggle Kernels Master.
</span></p>
<p class="para" ><span >Aside from his professional accomplishments, He is passionate about giving back to the community. He frequently volunteers his time and expertise to mentor and coach aspiring entrepreneurs, students, and professionals, helping them achieve their goals and realize their full potential. He is also a vocal advocate for diversity and inclusion in the workplace and actively works towards creating a more equitable and supportive environment for underrepresented groups.
</span></p>
<p class="para" ><span >His entrepreneurial spirit has led him to found and co-found several technology startups, where he has taken on the roles of CEO, Chief Technologist, and Product Leader. With his experience in leadership and management, organizational leadership (Tech), business strategy, and scalability, Arunkumar has delivered cutting-edge solutions to his clients and revolutionized the industry.
</span></p>
<p class="para" ><span >His exceptional achievements and visionary leadership have made him a sought-after partner and executive in the tech industry. His ability to innovate and envision new products that matter most in the industries and markets, coupled with his technical expertise, make him a valuable asset to any team.
</span></p>
<p class="para" ><span >He is a tech product management expert with a track record of delivering successful enterprise SaaS and consumer tech products. With a focus on human-centered design, he is leading the development of a cutting-edge enterprise AI infrastructure platform for business users at DeepBrainz AI. His unique blend of technical and business expertise allows him to deliver state-of-the-art responsible AI and ML solutions that solve complex business problems and technical challenges.
</span></p>
<p class="para" ><span >His vision is to build frontier tech products for everyone, and his team is currently developing a modern, integrated, human-centered autonomous enterprise AI platform that will revolutionize the industry. As a product manager, he is a true leader, possessing core values like passion, purpose, persistence, and determination. He has a clear understanding of executing his product vision through a well-defined strategy, objectives, and key results, backed by robust policies and business strategies.
</span></p>
<p class="para" ><span >His expertise lies in delivering cutting-edge machine learning solutions that provide significant impact in solving complex technical and business challenges. He has a proven track record of designing, developing, testing, deploying, maintaining, and improving ML models, algorithms, and systems. He is an expert in identifying market gaps, defining product vision and strategy, and driving product development and go-to-market initiatives.
</span></p>
<p class="para" ><span >He is passionate about developing responsible and ethical AI solutions that have a positive impact on society. He has experience working with both established companies and startups and is skilled at balancing competing priorities, managing budgets and resources, and delivering projects on time and within scope. His focus remains on leveraging his technical expertise and industry experience to drive product innovation and business growth.
</span></p>
<p class="para" ><span >Beyond his technical expertise, He is also a skilled communicator and team leader. He has led numerous product development teams and understands the importance of collaboration and effective communication in delivering successful products. He is passionate about mentoring and coaching team members, and he takes pride in developing high-performing teams that deliver exceptional results.
</span></p>
<p class="para" ><span >He is a highly sought-after product leader in the tech industry, with extensive experience in product management, AI, and ML. He is passionate about building innovative products that solve real-world problems and driving growth and innovation in organizations. With a unique blend of technical and business expertise, he has a proven track record of delivering state-of-the-art responsible AI and ML solutions that solve business problems and complex technical challenges.
</span></p>
<p class="para" ><span >He's expertise in the AI ecosystem and his successful entrepreneurship, AI innovation, and product leadership make him a highly competitive product manager in the tech industry. He has a deep understanding of the industry landscape and emerging trends, constantly seeking to learn and grow through self-directed research and experimentation. His ability to deliver results in high-pressure and fast-paced environments is a testament to his dedication to leveraging technology to solve complex problems and drive meaningful impact.
</span></p>
<p class="para" ><span >As a true expert in product management, He is a valuable asset to any organization looking to build cutting-edge AI-driven products. He is highly skilled and experienced in AI, ML, and Cloud technologies and their applications in business. His passion for using technology to solve complex problems and drive innovation is evident in his dedication to helping companies build successful products that make a positive impact on the world.
</span></p>
<p class="para" ><span >He is a tech industry influencer and innovator with an unwavering passion for technology, entrepreneurship, and innovation. He is committed to pushing the boundaries of what is possible in the AI and ML space, and his goal is to make a significant impact in the tech industry by delivering high-quality products that solve complex problems and improve people's lives.
</span></p>
<p class="para" ><span >His impressive portfolio showcases his ability to tackle a wide range of challenges, from developing novel algorithms for Machine Learning to designing intuitive user interfaces. His entrepreneurial spirit and passion for innovation have led him to co-found several tech startups, where he has leveraged his expertise in AI, ML, and Data Science to develop cutting-edge products that have disrupted their respective industries. He has also advised and mentored numerous startups and entrepreneurs, helping them refine their product strategy, identify growth opportunities, and secure funding.
</span></p>
<p class="para" ><span >With over a decade of experience in the industry, He is an expert in product management, software engineering, and AI. He is passionate about building innovative products that advance technology and solve real-world problems. His strong leadership and project management skills enable him to lead cross-functional teams to success, bringing products from concept to launch while staying on budget and schedule.
</span></p>
<p class="para" ><span >He is a true asset to any organization in the tech industry. He has a diverse skill set, extensive experience, and an unwavering dedication to innovation and progress. He is an influencer and innovator in the tech industry, with over 14k followers on LinkedIn, and his dedication to excellence has earned him a reputation as a skilled and knowledgeable product manager.
</span></p>
<p class="para" ><span >He is an ideal candidate for any tech industry PM role, with a strong focus on results and a relentless drive to succeed. Whether it's developing cutting-edge AI models, creating innovative business strategies, or driving breakthroughs in emerging technologies, Arunkumar has the skills, expertise, and passion to deliver outstanding results and drive transformative change.
</span></p>
<p class="para" ><span >In summary, Arunkumar Venkataramanan is a visionary serial entrepreneur, AI innovator, and product leader who is dedicated to democratizing responsible and human-centered AI for everyone. He is building a modern integrated autonomous enterprise AI platform for business users through his startup, DeepBrainz AI, and has a proven track record of success in helping organizations bring their products to market, increase their revenue, and gain a competitive advantage. Arunkumar's technical expertise, leadership skills, and passion for innovation and problem-solving make him an exceptional generalist product manager in the tech industry, and he is committed to driving growth and innovation in organizations while building cutting-edge AI-driven products that make a positive impact on the world. Join Arunkumar on his mission to push the boundaries of AI/ML technology and develop innovative products that matter most in industries and markets. With his passion, expertise, and leadership, he is sure to make a significant impact on the tech industry and beyond.
</span></p>
<p class="para" text-color-black"><span >
</span></p>
<p class="para" text-color-black"><span >
His LinkedIn profile as his non-recent Curriculum Vitae CV!
</span></p>
</div>
<div class="row my-info">
<div class="reach-me-at col-md-6 col-lg-5">
<div class="section-title margin-down-10">
<div class="section-title-inner text-color-black">
<h5><i class="fab fa-telegram"> </i>Reach Out At</h5>
</div>
</div>
<div>
<div class="row padding-left-5">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 width-40 text-color-black">
<span class="detail-head"><i class="fa fa-envelope"></i> Work Email</span>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<span class="detail-tail">: <a href="mailto:arunkumarramanan@deepbrainz.com ">arunkumarramanan@deepbrainz.com</a></span>
</div>
</div>
<div class="row padding-left-5">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 width-40 text-color-black">
<span class="detail-head"><i class="fa fa-envelope"></i> Email</span>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<span class="detail-tail">: <a href="mailto:arunkumar.ramanan@gmail.com">arunkumar.ramanan@gmail.com</a></span>
</div>
</div>
<div class="row padding-left-5">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 width-40 text-color-black">
<span class="detail-head"><i class="fab fa-skype"></i> Skype</span>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<span class="detail-tail">: arunkumar.ramanan</span>
</div>
</div>
<div class="row padding-left-5">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 width-40 text-color-black">
<span class="detail-head"><i class="fab fa-linkedin"></i> LinkedIn</span>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<span class="detail-tail">: <a href="http://linkedin.com/in/arunkumarramanan">Arunkumar Venkataramanan</a></span>
</div>
</div>
<div class="row padding-left-5">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 width-40 text-color-black">
<span class="detail-head"><i class="fab fa-twitter"></i> Twitter</span>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<span class="detail-tail">: <a href="http://twitter.com/arunkumar_bvr">Arunkumar Venkataramanan</a></span>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-7 send-message ">
<div class="section-title">
<div class="section-title-inner text-color-black">
<h5><i class="fa fa-map-marker"> </i>Hybrid Workplace Location:</h5>
</div>
<div class="mapouter"><div class="gmap_canvas"><iframe width="600" height="500" id="gmap_canvas" src="https://maps.google.com/maps?q=deepbrainz&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a href="https://www.jetzt-drucken-lassen.de">jetzt-drucken-lassen.de</a></div><style>.mapouter{text-align:right;height:500px;width:600px;}.gmap_canvas {overflow:hidden;background:none!important;height:500px;width:600px;}</style>Google Maps by <a href="https://www.embedgooglemap.net" rel="nofollow" target="_blank">Embedgooglemap.net</a></div>
</div>
</div>
</div>
</section>
<!--End | About Me-->
<!--Start | Projects-->
<section class="inside-tab" id="tab-content-2">
<!--<div class="demo-colored-wrap">-->
<div class="filter-section">
<!--<div class="container">-->
<div class="row">
<div class="col-sm-12 col-xs-12">
<div class="filter-container isotopeFilters2">
<ul class="list-inline filter">
<li class="active" data-filter="all"><a href="#">All</a></li>
<li data-filter="1"><a href="#">Tech Product Management and Leadership (9)</a></li>
<li data-filter="2"><a href="#">Engineering and Technology (Product) Leadership (6)</a></li>
<li data-filter="3"><a href="#">Technology Product Management Thought Leadership Pieces (~30)</a></li>
</ul>
</div>
</div>
</div>
<!--</div>-->
</div>
<div class="portfolio-section port-col">
<!--<div class="container">-->
<div class="row">
<div class="filtr-container">
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://3.bp.blogspot.com/-2kC1S5aFftI/W5BN51YsLlI/AAAAAAAADTQ/zfBOHMA4kfQly_-ePkFrqyAAiWcuLiHEwCLcBGAs/s640/f1.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.kaggle.com/arunkumarramanan/" target="_blank"><i class="fab fa-kaggle"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Large Scale Inclusive (Less Biased AI) Images Classification (Sub-Project: Universal Vision)</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://research.google.com/youtube8m/workshop2018/logo.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.kaggle.com/arunkumarramanan/" target="_blank"><i class="fab fa-kaggle"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Large Scale Video Understanding and Classification (Sub-Project: Universal Vision)</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://3.bp.blogspot.com/-K7oXk2v5Buk/V-2c0Cd_M-I/AAAAAAAABUE/Zl4wdW_T5rAJiYTfgG2HcYsGOjc3hOGrgCLcB/s640/Open%2BImages.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.kaggle.com/arunkumarramana" target="_blank"><i class="fab fa-kaggle"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Large-scale Multi-label and Multiclass Visual Recognition (Sub-Project: Universal Vision)</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://1.bp.blogspot.com/-5pULKUERnIc/Wpc7qPnUCuI/AAAAAAAACao/4YOtEQb_1gEweHRf8-drmi7KBEa1BmBTgCLcBGAs/s1600/image2.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.kaggle.com/arunkumarramanan/" target="_blank"><i class="fab fa-kaggle"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Large Scale Instance Level Recognition and Retrieval (Sub-Project: Universal Vision)</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/f/f0/Scheme_of_speech_recognition_system.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Automated Speech and Sound Recognition with Pre-trained Models</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/8/84/For_Sale_-_Classifieds.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.kaggle.com/arunkumarramanan/" target="_blank"><i class="fab fa-kaggle"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Targeted Digital Ad Ranking, Ads Demand, Clicks, CTR, and Click Fraud (Detection) Prediction (Sub-Project)</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Regressions_sine_demo.svg/2000px-Regressions_sine_demo.svg.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Demand Prediction with Time Series Forecasting</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/HMMGraph.svg/2000px-HMMGraph.svg.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Generative Language Models and Deep RL for Universal Lang (Sub-Project)</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Peephole_Long_Short-Term_Memory.svg/2000px-Peephole_Long_Short-Term_Memory.svg.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Universal Bot Sub-Project: Generative Deep Learning for Universal Language as Conversational AI</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="images/face-detection-and-recognition-of-man-computer-vision-and-machine-learning-concept.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Universal Vision Project: Large-Scale Inclusive and Multi-Modal Visual Recognition with Deep Learning</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/c/c2/MultiLayerNeuralNetworkBigger_english.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Universal AI Project: Enterprise AI with Distributed Deep Learning at Scale</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/2/2c/Collaborative_Filtering_in_Recommender_Systems.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: ML-based Hybrid Recommender Engine for Digital Ads</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="2">
<article class="">
<figure>
<img src="https://farm2.staticflickr.com/1942/30188200627_c5ea2a3779_b.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Universal Language Project: with Generative LLMs and Deep RL</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/artificial-intelligence-icons-set-in-flat-style-image-and-voice-recognition-online-support.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://arunkumarramanan.github.io/NextGen-AI-Platform/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Next-Gen AI Platform - Unlocking Sustainable Growth and Streamlined Business Processes
</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/63ce2ef057b94e15a3f4e323_image-from-rawpixel-id-5926528-jpeg.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Enterprise SaaS Platform's New Launch with Seamless CRM and ERP Integration via API for User Experience
</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/1_Ny_elBcTFa24kafzBGHjwg.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Cloud-Based Data Analytics Platform</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/ecommerce-3082813_1280.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">E-commerce Platform Product Improvement Project</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvaXMxNjkyMS1pbWFnZS1rejJkeHU4My5qcGc.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Social Media App Improvement for Mobile and Web</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/https___bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com_public_images_3555ac09-4ed1-4d45-bfb4-c25f4299dc41_720x480.jpeg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">FinTech Product Improvement Project</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/Amazon-Alexa-and-Google-Home-Mini_Q320.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://www.github.com/arunkumarramanan/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Smart Home Assistant App Platform</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1">
<article class="">
<figure>
<img src="images/" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Project: Marketplace for Creators (Gig) Economy</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="1, 3">
<article class="">
<figure>
<img src="images/37234370-1681105264102-468eb4a9d0703.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://theproductthinking.wordpress.com/" target="_blank"><i class="fab fa-wordpress"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">The Product Thinking Playbook: A Thought Leadership Series on Product Management in Tech</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/1_nnroksehldv3_jvycq5bzg.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/achieving-product-success-steps-to-successfully-launching-a-new-product-9906086a0616" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Achieving Product Success: Steps to Successfully Launching a New Product</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/1_ru8nzze2ouyxto4aumcvgw.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/embracing-lean-and-agile-methodologies-for-product-success-a-guide-to-devops-in-tech-product-d638c9d7bca7" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Embracing Lean and Agile Methodologies for Product Success: A Guide to DevOps in Tech Product Management</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/tb0gnxeidozf1wju02tnlyvib4kr.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/preventing-product-failure-avoiding-the-most-common-product-management-mistakes-f259d2ed7e67" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Preventing Product Failure: Avoiding the Most Common Product Management Mistakes</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/artificial-intelligence-brain-ai.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/the-future-of-product-management-how-to-balance-emerging-trends-and-technologies-with-immediate-3db1cc5706d1" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">The Future of Product Management: How to Balance Emerging Trends and Technologies with Immediate Challenges and Opportunities</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/2corecomponentsgottomarketstrategy.png" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/the-product-managers-guide-to-market-research-for-better-business-strategy-creating-products-for-3d9e1486eef9" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">The Product Manager’s Guide to Market Research for Better Business Strategy: Creating Products for Your Target Audience with Segmentation</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/0_eiu4s8lm2gsd0qdp.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/effective-user-interviews-valuable-insights-for-product-success-dbcd22195a34" target="_blank"><i class="fab fa-medium"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Effective User Interviews: Valuable Insights for Product Success</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/4j6egpohagf0wmjyjzjhm7y3yrdp.jpeg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/navigating-product-management-in-the-post-pandemic-world-adapting-to-changing-customer-needs-and-19e7b4efe5a9" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Navigating Product Management in the Post-Pandemic World: Adapting to Changing Customer Needs and Market Trends</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">
<article class="">
<figure>
<img src="https://theproductthinking.files.wordpress.com/2023/04/6362fea3dcdbef407ddfb047_image-from-rawpixel-id-5928246-jpeg.jpg" alt="">
<div class="overlay-background">
<div class="inner"></div>
</div>
<div class="overlay">
<div class="inner-overlay">
<div class="inner-overlay-content with-icons">
<!--<div class="project-desc">A micro-plugin written in Javascript to emulate the typing animation effect in browser</div>-->
<!--<a title="First Image" class="fancybox-pop" rel="portfolio-15"><i class="fa fa-search"></i></a>-->
<a href="https://medium.com/the-product-thinking-playbook/driving-digital-transformation-for-business-success-the-critical-role-of-product-management-in-c23f98ac8663" target="_blank"><i class="fab fa-medium-m"></i></a>
</div>
</div>
</div>
</figure>
<div class="article-title">Driving Digital Transformation for Business Success: The Critical Role of Product Management in Tech</div>
</article>
</div>
<div class="col-sm-4 filtr-item" data-category="3">