-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1530 lines (1349 loc) Β· 63.2 KB
/
Copy pathindex.html
File metadata and controls
1530 lines (1349 loc) Β· 63.2 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
<!-- =======================================================
* Amirhessam Tahmassebi
* Last updated: 06-07-2026
* Email: admin@amirhessam.com
* Website: www.amirhessam.com
======================================================== -->
<!DOCTYPE html>
<html lang="en">
<head>
<script>
(function () {
try {
var stored = localStorage.getItem("theme");
var theme = stored === "light" || stored === "dark"
? stored
: (window.matchMedia("(prefers-color-scheme: dark)").matches
? "dark"
: "light");
document.documentElement.setAttribute("data-theme", theme);
} catch (e) {
document.documentElement.setAttribute("data-theme", "light");
}
})();
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async
src="https://www.googletagmanager.com/gtag/js?id=UA-113469174-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-113469174-1');
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate, max-age=0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Last-Modified" content="0">
<meta name="cache-buster" content="20250123030000">
<meta name="color-scheme" content="light dark">
<title>© Amirhessam Tahmassebi</title>
<meta name="description"
content="Amirhessam Tahmassebi β Staff Software Engineer in Big Data & AI. Machine learning, MLOps, research publications, open-source Python tools (SlickML), and opinionated 2-Cents essays.">
<meta name="keywords"
content="Amirhessam Tahmassebi, machine learning, MLOps, data science, artificial intelligence, deep learning, SlickML, model deployment, Python, Rivian, Florida State University">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="Amirhessam Tahmassebi">
<meta property="og:url" content="https://www.amirhessam.com/">
<meta property="og:title" content="Amirhessam Tahmassebi">
<meta property="og:description"
content="Staff Software Engineer in Big Data & AI β machine learning, MLOps, research, open-source Python tools, and 2-Cents technical essays.">
<meta property="og:image"
content="https://www.amirhessam.com/assets/img/profile-img.jpg">
<meta property="og:image:alt" content="Amirhessam Tahmassebi">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Amirhessam Tahmassebi">
<meta name="twitter:description"
content="Staff Software Engineer in Big Data & AI β machine learning, MLOps, research, open-source Python tools, and 2-Cents technical essays.">
<meta name="twitter:image"
content="https://www.amirhessam.com/assets/img/profile-img.jpg">
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://www.amirhessam.com/#website",
"url": "https://www.amirhessam.com/",
"name": "Amirhessam Tahmassebi",
"description": "Personal academic and professional site covering machine learning, MLOps, research, and open-source tools.",
"publisher": { "@id": "https://www.amirhessam.com/#person" }
},
{
"@type": "Person",
"@id": "https://www.amirhessam.com/#person",
"name": "Amirhessam Tahmassebi",
"url": "https://www.amirhessam.com/",
"image": "https://www.amirhessam.com/assets/img/profile-img.jpg",
"jobTitle": "Staff Software Engineer",
"worksFor": {
"@type": "Organization",
"name": "Rivian-VW Technologies",
"url": "https://rivianvw.tech"
},
"alumniOf": {
"@type": "CollegeOrUniversity",
"name": "Florida State University"
},
"knowsAbout": [
"Machine Learning",
"MLOps",
"Artificial Intelligence",
"Data Science",
"Python",
"Model Deployment"
],
"sameAs": [
"https://www.linkedin.com/in/amirhessam/",
"https://scholar.google.com/citations?user=CnHZjFAAAAAJ&hl=en",
"https://github.com/amirhessam88",
"https://github.com/slickml",
"https://slickml.com/",
"https://loop.frontiersin.org/people/442816/overview"
]
}
]
}
</script>
<!-- Favicons -->
<link href="assets/img/logo_color_clear.png" rel="icon">
<!--
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
-->
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css"
rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<img src="assets/img/profile-img.jpg" alt=""
class="img-fluid rounded-circle">
<h1 class="text-light"><a href="index.html">Amirhessam Tahmassebi</a>
</h1>
<div class="social-links mt-3 text-center">
<a href="https://www.linkedin.com/in/amirhessam/" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a href="https://scholar.google.com/citations?user=CnHZjFAAAAAJ&hl=en"
class="google-plus"><i class="bx bxl-google"></i></a>
<a href="https://github.com/amirhessam88" class="github"><i
class="bx bxl-github"></i></a>
<a href="https://slickml.com/" class="consulting"><i
class="icofont-learn"></i></a>
<a href="https://github.com/slickml" class="library"><i
class="icofont-brainstorming"></i></a>
</div>
</div>
<nav class="nav-menu">
<ul>
<li class="active"><a href="index.html"><i class="bx bx-home"></i>
<span>Home</span></a></li>
<li><a href="#about"><i class="bx bx-user"></i> <span>About</span></a>
</li>
<li><a href="#resume"><i class="bx bx-file-blank"></i>
<span>RΓ©sumΓ©</span></a></li>
<li><a href="#libraries"><i class="icofont-file-python"></i> Python
Libraries</a>
</li>
<li><a href="#two-cents"><i class="bx bx-bulb"></i>
2-Cents</a></li>
<li><a href="#portfolio"><i class="bx bx-book-content"></i>
Academic Portfolio</a></li>
<li><a href="#publications"><i class="icofont-book-alt"></i>
Publications</a></li>
<li><a href="#ventures"><i class="icofont-coins"></i>
Ventures</a>
</li>
<li><a href="#testimonials"><i class="bx bx-chat"></i>
Testimonials</a></li>
<li><a href="#contact"><i class="bx bx-envelope"></i> Contact</a></li>
</ul>
</nav><!-- .nav-menu -->
<button type="button" class="theme-toggle" data-theme-toggle
aria-pressed="false" aria-label="Switch to dark theme"
title="Dark theme">
<i class="bx bx-moon theme-toggle-icon theme-toggle-icon-moon"
aria-hidden="true"></i>
<i class="bx bx-sun theme-toggle-icon theme-toggle-icon-sun"
aria-hidden="true"></i>
<span class="theme-toggle-label">Dark mode</span>
</button>
<button type="button" class="mobile-nav-toggle d-xl-none"><i
class="icofont-navigation-menu"></i></button>
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero"
class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1>Amirhessam Tahmassebi</h1>
<p>I'm <span class="typed"
data-typed-items="a Software Engineer, a Machine Learning Researcher, the Founder of SlickML"></span>
</p>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p> I am a Staff Software Engineer on the Kitt Team within the Big
Data & AI pillar of the Software organization at
<a href="https://rivianvw.tech">Rivian-VW Technologies</a>, Palo
Alto, CA.
Additionally, I am an Affiliated Courtesy Faculty member in the
<a href="https://www.sc.fsu.edu/people/faculty#affiliated">Department
of Scientific Computing at Florida State University</a>, starting
October 2018. I lead
<a href="https://people.sc.fsu.edu/~ameyerbaese/index.html">Dr. Anke
Meyer-Baese</a>'s Research Group.
I am also an Associate Editor for <a
href="https://loop.frontiersin.org/people/442816/overview">Frontiers
in Neuroinformatics</a>, starting August 2021.
Last, I am the Founder of <a
href="https://github.com/slickml">SlickML</a>,
an open-source software foundation building practical machine
learning tools in Python.
</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/profile-img.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Staff Software Engineer</h3>
<p>
I build production AI and ML platforms β from data infrastructure
and model systems to the observability frameworks that keep them
reliable at scale. With 10+ years across industry and research, I
work at the intersection of software engineering, machine
learning, and distributed data systems.
</p>
<p>
Currently leading the ConvoHealthβ’ platform β the observability
framework for Rivian Voice Assistant. Founder of
SlickML, PhD in computational science, and affiliated faculty at
Florida State University. I care about systems that ship, teams
that move fast, and work that holds up in production.
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="icofont-rounded-right"></i>
<strong>Website:</strong> www.amirhessam.com
</li>
<li><i class="icofont-rounded-right"></i>
<strong>Phone:</strong> +1 (330) 606-7855
</li>
<li><i class="icofont-rounded-right"></i>
<strong>City:</strong> Houston, TX, USA
</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="icofont-rounded-right"></i>
<strong>Degree:</strong> PhD
</li>
<li><i class="icofont-rounded-right"></i>
<strong>Email:</strong> atahmassebi@fsu.edu
</li>
<li><i class="icofont-rounded-right"></i>
<strong>Freelance:</strong> Available
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Facts Section ======= -->
<section id="facts" class="facts">
<div class="container">
<div class="section-title">
<h2>Facts</h2>
<!--
<p> FACTS GO HERE .....</p>
-->
</div>
<div class="row no-gutters">
<!-- Book Chapters -->
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch"
data-aos="fade-up">
<div class="count-box">
<i class="icofont-book-alt"></i>
<span data-toggle="counter-up">4</span>
<p><strong>Book Chapters</strong></p>
</div>
</div>
<!-- Research Papers -->
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch"
data-aos="fade-up" data-aos-delay="100">
<div class="count-box">
<i class="icofont-paper"></i>
<span id="papers-count">0</span>
<p><strong>Research Papers</strong></p>
</div>
</div>
<!-- Citations -->
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch"
data-aos="fade-up" data-aos-delay="200">
<div class="count-box">
<i class="icofont-google-plus"></i>
<span id="citation-count">0</span>
<p><strong>Citations</strong></p>
</div>
</div>
<!-- H-Index -->
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch"
data-aos="fade-up" data-aos-delay="300">
<div class="count-box">
<i class="icofont-medal"></i>
<span id="hindex-count">0</span>
<p><strong>H-Index</strong></p>
</div>
</div>
</div>
</div>
</section>
<!-- End Facts Section -->
<!-- ======= Focus Areas Section ======= -->
<section id="focus-areas" class="focus-areas">
<div class="container">
<div class="section-title focus-areas-title">
<h2>Focus Areas</h2>
<p>Where I spend most of my time building, researching, and leading
...
</p>
</div>
<div class="focus-fabric" data-aos="fade-up">
<div id="focus-fabric-canvas" aria-hidden="true"></div>
<article class="focus-card focus-card--tl" data-accent="blue">
<div class="focus-card-icon"><i class="icofont-database"></i></div>
<h3>Distributed Data</h3>
<p>Infrastructure & Scale</p>
<div class="focus-card-tags">
<span>AWS</span>
<span>Azure</span>
<span>Spark</span>
<span>Databricks</span>
<span>PySpark</span>
</div>
<span class="focus-card-node" aria-hidden="true"></span>
</article>
<article class="focus-card focus-card--bl" data-accent="purple">
<div class="focus-card-icon"><i class="icofont-brainstorming"></i>
</div>
<h3>AI/ML Systems Ops</h3>
<p>Production Intelligence</p>
<div class="focus-card-tags">
<span>LLMs</span>
<span>MLOps</span>
<span>CI/CD</span>
<span>Python</span>
</div>
<span class="focus-card-node" aria-hidden="true"></span>
</article>
<article class="focus-card focus-card--tr" data-accent="orange">
<div class="focus-card-icon"><i class="icofont-chart-histogram"></i>
</div>
<h3>Observability & Platform</h3>
<p>Reliability & Engineering</p>
<div class="focus-card-tags">
<span>Databricks</span>
<span>MLflow</span>
<span>Datadog</span>
<span>Grafana</span>
<span>Dynatrace</span>
</div>
<span class="focus-card-node" aria-hidden="true"></span>
</article>
<article class="focus-card focus-card--br" data-accent="green">
<div class="focus-card-icon"><i class="icofont-file-python"></i>
</div>
<h3>Open Source & Research</h3>
<p>Libraries & Science</p>
<div class="focus-card-tags">
<span>SlickML</span>
<span>Python</span>
<span>SQL</span>
<span>Research</span>
<span>Go</span>
<span>Linux</span>
<span>Git</span>
<span>Bash</span>
</div>
<span class="focus-card-node" aria-hidden="true"></span>
</article>
<div class="focus-hub">
<div class="focus-hub-ring">
<img src="assets/img/logo_color_clear.png" alt="Amirhessam">
</div>
<h3>Unified Practice</h3>
<p class="focus-hub-status">β LIVE BUILDING_</p>
</div>
</div>
<!-- Mobile fallback (no particle canvas) -->
<div class="focus-fabric-mobile">
<div class="focus-mobile-card" data-accent="blue">
<div class="focus-card-icon"><i class="icofont-database"></i></div>
<div>
<h3>Distributed Data</h3>
<div class="focus-card-tags">
<span>AWS</span><span>Azure</span><span>Spark</span><span>Databricks</span>
</div>
</div>
</div>
<div class="focus-mobile-card" data-accent="purple">
<div class="focus-card-icon"><i class="icofont-brainstorming"></i>
</div>
<div>
<h3>AI/ML Systems Ops</h3>
<div class="focus-card-tags">
<span>LLMs</span><span>MLOps</span><span>CI/CD</span><span>Python</span>
</div>
</div>
</div>
<div class="focus-mobile-card" data-accent="orange">
<div class="focus-card-icon"><i class="icofont-chart-histogram"></i>
</div>
<div>
<h3>Observability & Platform</h3>
<div class="focus-card-tags">
<span>Databricks</span><span>MLflow</span><span>Datadog</span><span>Grafana</span><span>Dynatrace</span>
</div>
</div>
</div>
<div class="focus-mobile-card" data-accent="green">
<div class="focus-card-icon"><i class="icofont-file-python"></i>
</div>
<div>
<h3>Open Source & Research</h3>
<div class="focus-card-tags">
<span>SlickML</span><span>Python</span><span>Research</span><span>Go</span><span>Linux</span><span>Git</span><span>Bash</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Focus Areas Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>RΓ©sumΓ©</h2>
<p>To download the PDF versions, please check out my
<em>
<a href="./assets/pdf/Resume_OnePage.pdf">One-Page RΓ©sumΓ©</a>
</em> and
<em>
<a href="./assets/pdf/CV.pdf">Full CV</a></em>.
</p>
</div>
<div class="resume-filters" role="tablist" aria-label="Filter rΓ©sumΓ©">
<button type="button" class="resume-filter is-active"
data-filter="all" role="tab" aria-selected="true">All</button>
<button type="button" class="resume-filter" data-filter="industry"
role="tab" aria-selected="false">Industry</button>
<button type="button" class="resume-filter" data-filter="academia"
role="tab" aria-selected="false">Academia</button>
</div>
<!-- ======= Logo ribbon (companies + schools) ======= -->
<div class="logo-ribbon" data-aos="fade-up" aria-label="Places I've worked and studied">
<div class="logo-ribbon__fade logo-ribbon__fade--left" aria-hidden="true"></div>
<div class="logo-ribbon__fade logo-ribbon__fade--right" aria-hidden="true"></div>
<div class="logo-ribbon__viewport">
<div class="logo-ribbon__track">
<ul class="logo-ribbon__set">
<li class="logo-ribbon__item" data-logo="tehran">
<img src="assets/img/ventures/tehran.svg" alt="University of Tehran" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="akron">
<img src="assets/img/ventures/akron.svg" alt="University of Akron" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="fsu">
<img src="assets/img/ventures/fsu.png" alt="Florida State University" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="mynomx">
<img src="assets/img/ventures/mynomx.png" alt="Mynomx" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="oracle">
<img class="logo-ribbon__img--light" src="assets/img/ventures/oracle.png" alt="Oracle" loading="lazy">
<img class="logo-ribbon__img--dark" src="assets/img/ventures/oracle-dark.png" alt="" aria-hidden="true" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="exxonmobil">
<img src="assets/img/ventures/exxonmobil.png" alt="ExxonMobil" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="rivian">
<img class="logo-ribbon__img--light" src="assets/img/ventures/rivian.png" alt="Rivian" loading="lazy">
<img class="logo-ribbon__img--dark" src="assets/img/ventures/rivian-dark.png" alt="" aria-hidden="true" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="rvtech">
<img class="logo-ribbon__img--light" src="assets/img/ventures/rvtech.png" alt="Rivian and Volkswagen Group Technologies" loading="lazy">
<img class="logo-ribbon__img--dark" src="assets/img/ventures/rvtech-dark.png" alt="" aria-hidden="true" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="slickml">
<img src="assets/img/ventures/slickml.png" alt="SlickML" loading="lazy">
</li>
<li class="logo-ribbon__item" data-logo="mydvpal">
<img src="assets/img/ventures/mydvpal.png" alt="MyDVPal" loading="lazy">
</li>
</ul>
</div>
</div>
</div>
<!-- ======= Summary Section ======= -->
<div class="row">
<div class="col-lg-4 resume-col" data-aos="fade-up"
data-resume-col="academia">
<!-- ======= Education Section ======= -->
<h3 class="resume-title">Education</h3>
<div class="resume-track">
<div class="resume-progress" aria-hidden="true"></div>
<div class="resume-item" data-track="academia" id="resume-phd"
data-step="phd">
<h4>PhD -- Computational Science</h4>
<h5>Florida State University, Florida, USA</h5>
<h5>August 2015 - August 2018</h5>
<p><em>GPA: 3.969/4.0</em></p>
<p><em>Advisor: Prof. Anke Meyer-Baese</em></p>
<p>Dissertation: Pattern Recognition in Medical Imaging:
Supervised Learning of MRI and fMRI Data</p>
</div>
<div class="resume-item" data-track="academia" id="resume-msc-cs"
data-step="msc-cs">
<h4>MSc -- Computational Science</h4>
<h5>Florida State University, Florida, USA</h5>
<h5>August 2015 - December 2017</h5>
<p><em>GPA: 3.969/4.0</em></p>
<p><em>Advisor: Prof. Anke Meyer-Baese</em></p>
</div>
<div class="resume-item" data-track="academia"
id="resume-msc-phys" data-step="msc-phys">
<h4>MSc -- Physics</h4>
<h5>University of Akron, Ohio, USA</h5>
<h5>August 2013 - August 2015</h5>
<p><em>GPA: 3.982/4.0</em></p>
<p><em>Advisor: Prof. Alper Buldum</em></p>
<p>Dissertation: Fluid Flow Through Carbon Nanotubes And
Graphene
Based Nanostructures</p>
</div>
<div class="resume-item" data-track="academia" id="resume-bsc"
data-step="bsc">
<h4>BSc -- Physics</h4>
<h5>University of Tehran, Tehran, Iran</h5>
<h5>September 2006 - July 2010</h5>
<p><em>GPA: 3.1/4.0</em></p>
<p><em>Advisor: Prof. Hamidreza Moshfegh</em></p>
</div>
</div>
</div>
<!-- ======= Professional Experience Section ======= -->
<div class="col-lg-8 resume-col" data-aos="fade-up"
data-aos-delay="100" data-resume-col="experience">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-track">
<div class="resume-progress" aria-hidden="true"></div>
<div class="resume-item is-current" data-track="industry"
id="resume-rivian-vw" data-step="rivian-vw">
<h4>Staff Software Engineer -- Rivian & Volkswagen
Technologies</h4>
<h5>Palo Alto, CA, USA (Remote)</h5>
<h5>November 2024 - Present</h5>
<ul>
<li>Technical lead of ConvoHealth, the observability framework
for Rivian Voice Assistant.
</li>
</ul>
</div>
<div class="resume-item" data-track="industry" id="resume-rivian"
data-step="rivian">
<h4>Senior Data Scientist, Algorithms -- Rivian Automotive</h4>
<h5>Palo Alto, CA, USA (Remote)</h5>
<h5>September 2021 - November 2024</h5>
<ul>
<li>Delivered the automated decision-making platform and
overall
data system architecture for factory data, along with
various
scalable solutions within Digital Manufacturing Engineering.
</li>
</ul>
</div>
<div class="resume-item is-current" data-track="academia"
id="resume-fsu" data-step="fsu">
<h4>Affiliated Courtesy Faculty -- Department of Scientific
Computing</h4>
<h5>Tallahassee, FL, USA (Remote)</h5>
<h5>October 2018 - Present</h5>
<ul>
<li>Technical Lead of Machine Learning in Dr. Anke
Meyer-Baese's
Research Group
in the Department of Scientific Computing at Florida State
University.</li>
</ul>
</div>
<div class="resume-item" data-track="industry" id="resume-exxon"
data-step="exxon">
<h4>Senior Data Scientist -- ExxonMobil Corporation</h4>
<h5>Houston, TX, USA </h5>
<h5>January 2020 - September 2021</h5>
<ul>
<li>Technical lead for the development of interpretable
transaction-specific models for the polyethylene and
polypropylene sectors of North America, incorporating
customer
segmentation and pricing recommendations to maximize
variable
margin for ExxonMobil Chemical Company (EMCC), which
resulted
in a $90M revenue increase in 2020 and a $41M revenue
increase
in Q1βQ2 of 2021.
</li>
</ul>
</div>
<div class="resume-item" data-track="industry" id="resume-oracle"
data-step="oracle">
<h4>Data Scientist -- Oracle (formerly Cerner Corporation)</h4>
<h5>Kansas City, MO, USA </h5>
<h5>October 2018 - December 2019</h5>
<ul>
<li>Technical lead of the 90-day pediatric asthma readmission
model for Childrenβs Hospital of Orange County (CHOC) and
the
30-day pediatric all-cause readmission model for 17
hospitals
across the United States.</li>
</ul>
</div>
<div class="resume-item" data-track="industry" id="resume-mynomx"
data-step="mynomx">
<h4>Data Scientist -- Mynomx Inc. (formerly Precision Wellness
Inc.)</h4>
<h5>Palo Alto, CA, USA </h5>
<h5>June 2017 - August 2018</h5>
<ul>
<li>Developed hybrid machine learning algorithms for
population
health management.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Resume Section -->
<!-- ======= Python Libraries Section ======= -->
<section id="libraries" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Python Libraries</h2>
</div>
<div class="row portfolio-container" data-aos="fade-up"
data-aos-delay="100">
<!-- SlickML -->
<div class="col-lg-3 col-md-3 portfolio-item">
<div class="portfolio-wrap">
<img src="assets/img/libs/slickml.png" class="img-fluid"
alt="SlickML">
<div class="portfolio-links">
<a href="https://github.com/slickml/slick-ml" title="SlickML"><i
class="bx bxl-github"></i></a>
</div>
</div>
</div>
<!-- SlickTune -->
<div class="col-lg-3 col-md-3 portfolio-item">
<div class="portfolio-wrap">
<img src="assets/img/libs/slicktune.png" class="img-fluid"
alt="SlickTune">
<div class="portfolio-links">
<a href="https://github.com/slickml/slick-tune"
title="SlickTune"><i class="bx bxl-github"></i></a>
</div>
</div>
</div>
<!-- SlickBet -->
<div class="col-lg-3 col-md-3 portfolio-item">
<div class="portfolio-wrap">
<img src="assets/img/libs/slickbet.png" class="img-fluid"
alt="SlickBet">
<div class="portfolio-links">
<a href="https://github.com/slickml/slick-bet"
title="SlickBet"><i class="bx bxl-github"></i></a>
</div>
</div>
</div>
<!-- AFK-Bot -->
<div class="col-lg-3 col-md-3 portfolio-item">
<div class="portfolio-wrap">
<img src="assets/img/libs/afkbot.png" class="img-fluid"
alt="AFK-Bot">
<div class="portfolio-links">
<a href="https://github.com/slickml/afk-bot" title="AFK-Bot"><i
class="bx bxl-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Python Libraries Section -->
<!-- ======= 2-Cents Section ======= -->
<section id="two-cents" class="two-cents">
<div class="container">
<div class="section-title">
<h2>2-Cents</h2>
<p>Thoughts and lessons from building products, teams, and systems.
</p>
</div>
<div class="row two-cents-grid">
<div class="col-lg-4 col-md-6" data-aos="fade-up">
<a class="two-cents-card"
href="two-cents/building-an-org-monorepo.html">
<span class="two-cents-card-meta">
<span class="two-cents-card-tag">βοΈ Engineering</span>
<time datetime="2026-07-23">π
Jul 23, 2026</time>
</span>
<h3 class="two-cents-card-title">ποΈ Building an Org Monorepo</h3>
<p class="two-cents-card-excerpt">Org monorepo blueprint β
apps/libs/services, dockers, cookiecutters, docs portal, CODEOWNERS,
AI review agents, and GitHub <em>or</em> GitLab child
pipelines.</p>
<span class="two-cents-card-cta">π Read article β</span>
</a>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<a class="two-cents-card"
href="two-cents/mlops-deployment-strategies.html">
<span class="two-cents-card-meta">
<span class="two-cents-card-tag">π€ MLOps</span>
<time datetime="2026-07-27">π
Jul 27, 2026</time>
</span>
<h3 class="two-cents-card-title">π MLOps Deployment Strategies
</h3>
<p class="two-cents-card-excerpt">Serving modes, deploy-code vs
deploy-model, recreate β rolling β blue/green β canary β A/B β
shadow β plus rules of thumb for when to use what.</p>
<span class="two-cents-card-cta">π Read article β</span>
</a>
</div>
</div>
</div>
</section>
<!-- End 2-Cents Section -->
<!-- ======= Academic Portfolio Section: Pictures should be (800*600) AT LOGO on pics should be (75*75) ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<h2>Academic Portfolio</h2>
<p>Selected research projects and academic work.</p>
</div>
<!-- ======= Filtering ======= -->
<div class="row" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-ml">Machine Learning</li>
<li data-filter=".filter-dl">Deep Learning</li>
<li data-filter=".filter-gp">Genetic Programming</li>
</ul>
</div>
</div>
<div class="portfolio-network" id="portfolio-network">
<canvas id="portfolio-links-canvas" aria-hidden="true"></canvas>
<!-- ======= Portolio definitons ======= -->
<div class="row portfolio-container" data-aos="fade-up"
data-aos-delay="100">
<!-- ======= Portfolio-1 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-ml filter-dl">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.png"
data-gall="portfolioGallery" class="venobox"
title="My Data Science Portfolio Built via Jekyll"><i
class="bx bx-plus"></i></a>
<a href="https://amirhessam88.github.io/"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- ======= Portfolio-2 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-ml">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.png"
data-gall="portfolioGallery" class="venobox"
title="Impact of Machine Learning With Multiparametric Magnetic Resonance Imaging of Breast Cancer"><i
class="bx bx-plus"></i></a>
<a href="assets/pdf/projects/investigative2018.pdf"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- ======= Portfolio-3 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-gp">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.png"
data-gall="portfolioGallery" class="venobox"
title="Building Energy Consumption Forecast via MOGP"><i
class="bx bx-plus"></i></a>
<a href="assets/pdf/projects/measurement2018.pdf"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- ======= Portfolio-4 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-dl">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.png"
data-gall="portfolioGallery" class="venobox"
title="iDeepLe: Deep Learning in a Flash"><i
class="bx bx-plus"></i></a>
<a href="assets/pdf/projects/spie-orlando-ideeple2018.pdf"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- ======= Portfolio-5 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-ml">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.png"
data-gall="portfolioGallery" class="venobox"
title="Feature Importance in Multi-Parametric MRI in Breast Cancer"><i
class="bx bx-plus"></i></a>
<a href="assets/pdf/projects/spie-houston-nac2018.pdf"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- ======= Portfolio-6 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-gp">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.png"
data-gall="portfolioGallery" class="venobox"
title="Genetic Programming Based On Error Decomposition"><i
class="bx bx-plus"></i></a>
<a href="assets/pdf/projects/chapter-msgp.pdf"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- ======= Portfolio-7 ======= -->
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.png"
class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.png"
data-gall="portfolioGallery" class="venobox"
title="Fluid Flow Through Carbon Nanotubes"><i
class="bx bx-plus"></i></a>
<a href="https://etd.ohiolink.edu/!etd.send_file?accession=akron1436545689&disposition=inline"
title="More Details"><i class="bx bx-link"></i></a>