-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2266 lines (2059 loc) · 100 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta c harset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>MOHAMMAD ALBARHAM</title>
<meta content name="description">
<meta content name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="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">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<!-- Google tag (gtag.js) -->
<script async
src="https://www.googletagmanager.com/gtag/js?id=G-VJHNQN2HWX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VJHNQN2HWX');
</script>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Include the code library -->
<!-- Include the Prettify CSS -->
<link rel="stylesheet"
href="https://cdn.rawgit.com/google/code-prettify/master/loader/prettify.css" />
<!-- Include the Prettify JS -->
<script
src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" />
<!-- Bootstrap Font Icon CSS -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" />
<!-- =======================================================
* Template Name: iPortfolio
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<header id="header">
<div class="pheader">
<div id="particles-js"></div>
<!-- Particle Background, adapted from https://www.mit.edu/~amini-->
</div>
<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">MOHAMMAD ALBARHAM</a></h1>
<div class="social-links mt-3 text-center">
<a href="https://www.linkedin.com/in/muhammad-al-barham/"
class="linkedin"><i class="bx bxl-linkedin"></i></a>
<a href="https://github.com/mohammad-albarham" class="github"><i
class="bx bxl-github"></i></a>
<a
href="https://scholar.google.com/citations?user=3znRUJoAAAAJ&hl=en"><i
class="ai ai-google-scholar-square ai-1x"></i></a>
<a href="https://huggingface.co/pain"> <object
data="assets/img/hf-logo.svg" width="17"
height="17"></object></a>
</div>
</div>
<nav id="navbar" class="nav-menu navbar">
<ul>
<li><a href="#hero" class="nav-link scrollto active"><i
class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about" class="nav-link scrollto"><i
class="bx bx-user"></i><span>About</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i
class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#certifications" class="nav-link scrollto"><i
class="bx bx-file-blank"></i><span>Certifications</span></a></li>
<li><a href="#projects" class="nav-link scrollto"><i
class="bx bx-file-blank"></i> <span>Projects</span></a></li>
<li><a href="#publications" class="nav-link scrollto"><i
class="bx bx-book-content"></i><span>Publications</span></a></li>
<li><a href="#volunteering" class="nav-link scrollto"><i
class="bx bx-book-content"></i><span>Volunteering</span></a></li>
<li><a href="#contact" class="nav-link scrollto"><i
class="bx bx-envelope"></i> <span>Contact-Hire
Me</span></a></li>
</ul>
</nav>
</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>MOHAMMAD ALBARHAM</h1>
<p>I'm <span class="typed"
data-typed-items="a Mechatroincs Engineer, a Scientist, an AI Engineer"></span></p>
</div>
</section>End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p>
Barham is a detail-oriented and innovative professional with a
strong track record of delivering successful projects. He holds a
Bachelor of Science in Mechatronics Engineering from the
University of Jordan, where he graduated top of his class.
Throughout his academic journey, Barham worked on a variety of
projects, including robotics, embedded systems, control systems,
and sensory systems. He has also gained valuable experience in the
field of Artificial Intelligence (AI) and is currently focused on
integrating the Arabic language into AI systems.
Barham's passion for engineering and his commitment to excellence
has enabled him to achieve significant accomplishments in his
career.
</p>
</div>
</section>
<!-- End Facts Section -->
<!-- ======= Skills Section ======= -->
<!-- <section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title">
<h2>Skills</h2>
<p>The following is a list of my skills. For sure, I have more
skills.</p>
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<div class="progress">
<span class="skill">Python<i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Keras<i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="60" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">C++<i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="60" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">LINUX<i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="80" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">RASA<i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="80" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="progress">
<span class="skill">Pytorch <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">GIT<i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="90" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">MATLAB<i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="80" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">LATEX<i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar"
aria-valuenow="80" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
<p>The following section has information about my Education and
Experience:</p>
</div>
<div class="row">
<div class="col-lg-12" data-aos="fade-up">
<!-- <h3 class="resume-title">Sumary</h3>
<div class="resume-item pb-0">
<h4>MOHAMMAD ALBARHAM</h4>
<p><em>Innovative and deadline-driven Graphic Designer with 3+
years of experience designing and developing user-centered
digital/print marketing material from initial concept to
final, polished deliverable.</em></p>
<ul>
<li>Portland par 127,Orlando, FL</li>
<li>(123) 456-7891</li>
<li>alice.barkley@example.com</li>
</ul>
</div> -->
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4 class="icon-header">
<img src="assets/img/chalmers_logo.png" alt="icon"
class="header-icon">
Systems, Control and Mechatronics, MSc
</h4>
<h5>September 2024 - Present</h5>
<p><em> <a href="https://www.chalmers.se/en/">Chalmers
University of Technology, Gothenburg,
Sweden</a> </em></p>
<p>Artificial Intelligence, Autonomous systems
and Control systems.
</p>
<p>
Courses I have finished so far:
<ul>
<li><a
href="https://www.chalmers.se/en/education/your-studies/find-course-and-programme-syllabi/course-syllabus/ESS101/">Modelling
and simulation</a></li>
<li><a
href="https://www.chalmers.se/en/education/your-studies/find-course-and-programme-syllabi/course-syllabus/SSY165/">Logic,
learning, and decision</a></li>
<li><a
href="https://www.chalmers.se/en/education/your-studies/find-course-and-programme-syllabi/course-syllabus/EEN020/">Computer
vision</a></li>
</ul>
</p>
</div>
<!-- Education - University of Jordan -->
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/University_of_Jordan_Logo.png"
alt="icon"
class="header-icon">
Bachelor in Mechatronics Engineering
</h4>
<h5>September 2016 - June 2022</h5>
<p><em>
<a href="https://www.ju.edu.jo/Home.aspx">The University
of Jordan, Amman, Jordan
</a>
</em></p>
<p>
<ul>
<li>Core Subjects: Robotics, Artificial Intelligence,
Control, Automation, FPGA, Embedded Systems, and
Mechatronics System Design</li>
<li>ABET accredited program (Accreditation Board for
Engineering and Technology).</li>
<li>CGPA: 3.94/4.00</li>
<li>Rank: 1st</li>
</ul>
</p>
</div>
</div>
<!------ PROFESSIONAL EXPERIENCE --------->
<div class="col-lg-12" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/university_of_sharjah_logo.png"
alt="icon"
class="header-icon">
MACHiNE LEARNiNG SCiENTiST
</h4>
<h5>December 2022 - August 2024</h5>
<p><em>
<a
href="https://www.sharjah.ac.ae/en/Research/RISE">Research
Institute of Sciences and Engineering (RISE) -University
of Sharjah, Sharjah, UAE</a></em></p>
<ul>
<li>Responsible for working in NLP and CV projects.</li>
<li>Developing a chatbot for the Arabic language and
integrating it into other applications.</li>
<li>Developing Arabic Sign Language projects using image
classification and object detection.</li>
<li>Deploying the models to be used in production
”Prototypes
and Demos”.</li>
<li>Other projets not posted yet :) </li>
</ul>
</div>
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/appswave-logo.png"
alt="icon"
class="header-icon">
Product Owner
</h4>
<h5>January 2022 - November 2022</h5>
<p><em>
<a href="https://appswave.io/en/home">
Appswave Information Technology, Amman, Jordan
</a>
</em></p>
<ul>
<li>Responsible for communicating with stakeholders across
the
board.</li>
<li>Serving as a liaison between product and
development.</li>
<li>Maximizing the value of the products.</li>
<li>Managing and prioritizing the product backlog.</li>
<li>Managing the repositories in Bitbucket.</li>
</ul>
</div>
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/university_of_sharjah_logo.png"
alt="icon"
class="header-icon">
Machine Learning Intern.
</h4>
<h5>September 2021 - February 2022</h5>
<p><em><a
href="https://www.sharjah.ac.ae/en/Research/RISE">Research
Institute of Sciences and Engineering (RISE) -University
of Sharjah, Sharjah, UAE</a></em></p>
<ul>
<li>Worked on NLA chatbots in the Arabic language.</li>
<li>Worked on enhancing the models to recognize the Arabic
Sign Language. ( I have one out paper as a result of the
work).</li>
</ul>
</div>
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/xina_ai_logo.png"
alt="icon"
class="header-icon">
Data Science Intern
</h4>
<h5>September 2020 - December 2020</h5>
<p><em>Xina AI, Amman, Jordan</em></p>
<ul>
<li>Mastered the fundamentals of Artificial
Intelligence.</li>
<li>Used the modern Deep Learning framework ”PyTorch” to
build
multi-layer neural
networks, and analyze real data.</li>
<li>Learned how to build Convolutional Networks and use them
to classify images</li>
<li>Learned the basics of NLP (Natural Language Processing)
and how to build Recurrent
Networks and use them to perform sentiment analysis.</li>
<li>Learned how to annotate data for use in ASR (Automatic
Speech Recognition), NER
(Named Entity Recognition), POS (Part of Speech Tagging),
and more</li>
<li>Built NLU (Natural Language Understanding) and
Rule-Based
chatbots.</li>
</ul>
</div>
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/GJU_logo.png"
alt="icon"
class="header-icon">
Embedded Systems Intern
</h4>
<h5>May 2019 - July 2019</h5>
<p><em>
<a href="https://nanolab.gju.edu.jo/">Nano Lab - German
Jordanian University, Madaba,
Jordan</a>
</em></p>
<ul>
<li>I have worked for two-months at Nano-Lab in GJU (German
Jordanian University) in
the programming of Arm microcontroller using C-embedded
language for the spinning
system device that is used to check the type of
blood.</li>
<li>That device is a semi-automated blood grouping apparatus
where the blood sample is
loaded into a microfluidic disc with three chambers
containing anti-A, anti-B, and anti-
D antibodies separately. It moves the blood sample through
microfluidic channels via
centrifugal force into the inspection chambers where a
reaction between the pre-filled
antibodies and samples antigens (if exists) would occur.
Overover, a mounted camera
captures the agglutination reaction and saves the
results.</li>
</ul>
</div>
<div class="resume-item current">
<h4 class="icon-header">
<img
src="assets/img/ebtikar_logo.png"
alt="icon"
class="header-icon">
TRAiNER - Arduino Course
</h4>
<h5>May 2019 - July 2019</h5>
<p><em><a herf="https://ebtikar-innov.org/">Innovation for
Creativity Development Association,
Amman,
Jordan</a></em></p>
<ul>
<li>I have worked on training the electronics and
microcontrollers practical lectures for
the students 13-19 years with Albaqa’s association for
Humanitarian helping funded
by UNICEF. At the of training, we used Arduino
microcotroller to create a practical
applications..</li>
</ul>
</div>
<div class="resume-item current">
<h4 class="icon-header">
<img src="assets/img/phiscience_logo.jpeg"
alt="icon"
class="header-icon">
Applied Researcher
</h4>
<h5>February 2019 - February 2020</h5>
<p><em>
<a href="https://www.phi.science/">Phi Science Institute,
Amman, Jordan</a>
</em></p>
<ul>
<li>Phi Applied and Innovative Research program (PAIR) is a
program that integrates ap-
plied scientific research with innovation and
entrepreneurship..</li>
<li>I was selected as one of the 10% innovators among all
candidates for this program to
work with diverse majors for applied projects that fit the
market’s need. It is consists
of four phases: Problem Definition phase, Ideation and
Evaluation phase, Business and
Marketing phase and Prototype phase. Also, we worked as a
group of multidisciplinary
bachelor students, engineers, medical majors and
others.</li>
</ul>
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="latest_projects" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Latest Projects</h2>
<p>My latest projects:
</p>
</div>
<!-- # Latest Project - Project 1 -->
<div class="row portfolio-container" data-aos="fade-up"
data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/lp_photo_1.png"
class="img-fluid" alt style="width: 40%; height: auto;">
<div class="portfolio-links">
<a href="assets/img/portfolio/lp_photo_1.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="AraCLIP: Cross-Lingual Learning for Effective Arabic Image Retrieval
"><i class="bx bx-plus"></i></a>
<a href="latest-projects-1.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<!-- # Latest Project - Project 2 -->
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/lp_photo_2.png"
class="img-fluid" alt style="width: 80%; height: auto;">
<div class="portfolio-links">
<a href="assets/img/portfolio/lp_photo_2.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Structure from Motion Algorithm [Source of image: http://theia-sfm.org/sfm.html]
"><i class="bx bx-plus"></i></a>
<a href="latest-projects-2.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Portfolio Section ======= -->
<section id="projects" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Projects</h2>
<p>The following contains some of the projects I have workded on:
</p>
</div>
<div class="row portfolio-container" data-aos="fade-up"
data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p1.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p1.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="AraCLIP: Cross-Lingual Learning for Effective Arabic Image Retrieval
"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-1.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p2.gif"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p2.gif"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Massive Arabic Speech Corpus (MASC)"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-2.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p3.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p3.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Maha library"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-3.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p4.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p4.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Dwai application"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-4.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p5.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p5.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Auto_MPG project"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-5.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p6.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p6.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="word2vec algorithm using skip-gram architecture"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-6.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p7.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p7.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="MNIST-prediction-using-Neural-Network"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-7.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p8.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p8.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="TV Script Generation"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-8.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p9.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p9.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Sentiment-rnn"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-9.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/arsl_rasperrypi/ArSL_project.jpg"
class="img-fluid" alt>
<div class="portfolio-links">
<a
href="assets/img/portfolio/arsl_rasperrypi/ArSL_project.jpg"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Arabic-Sign-Language-RaspberryPi"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-10.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p11.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p11.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="GANs-MNSIT"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-11.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p12.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p12.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Bike Sharing"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-12.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p13.gif"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p13.gif"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Memory Management Chatbot "><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-13.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/p14.gif"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/p14.gif"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title=" Arabic Sign Language Recognition Using Deep Learning Models "><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-14.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/rgb_paper/dataset-cover.jpg"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/rgb_paper/dataset-cover.jpg"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="RGB Arabic Alphabets Sign Language Dataset"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-15.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/pwm_project/PWM.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/pwm_project/PWM.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Controlling DC motor using PWM with pic16f778"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-16.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/sign_language_pic/First.PNG"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/sign_language_pic/First.PNG"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Deaf Arabic Sign Language Project"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-17.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img
src="assets/img/portfolio/pwm_project/twitter_dataset/download.png"
class="img-fluid" alt>
<div class="portfolio-links">
<a
href="assets/img/portfolio/pwm_project/twitter_dataset/download.png"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Arabic Twitter Dataset"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-18.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/fpga/images.jpeg"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/fpga/images.jpeg"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="FPGA : Field-Programmable Gate Array Architectures Projects"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-19.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/cnc/download.jpeg"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/cnc/download.jpeg"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="CNC :Computer numerical control Projects"><i
class="bx bx-plus"></i></a>
<a href="portfolio-details-20.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/automation/automation.jpg"
class="img-fluid" alt>
<div class="portfolio-links">
<a href="assets/img/portfolio/automation/automation.jpg"
data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Automation"><i class="bx bx-plus"></i></a>
<a href="portfolio-details-21.html" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!--- ========== Research Papers ========== -->
<!-- ======= Resume Section ======= -->
<section id="publications" class="resume">
<div class="container">
</div>
<!-- Separator Between publiactions sections-->
<div class="div-space-between-devs-publications"> </div>
<div class="container">
<div class="section-title">
<h2>Published Publications</h2>
<p>You can find the latest publications here:</p>
</div>
<div class="row">
<div class="col-lg-12" data-aos="fade-up">
<!-- <h3 class="resume-title">Education</h3> -->
<!-- Start-->
<div class="resume-item current">
<h4><a
href="https://aclanthology.org/2024.arabicnlp-1.9/">
AraCLIP: Cross-Lingual Learning for Effective Arabic Image
Retrieval
</a></h4>
<h5>2024</h5>
<p><em><strong>Muhammad Al-Barham</strong> , Imad Afyouni, Khalid
Almubarak, Ashraf Elnagar, Ayad Turky,
Ibrahim Hashem</em></p>
<p>
<button type="button"
onclick="location.href='https://aclanthology.org/2024.arabicnlp-1.9.pdf'"
class="btn btn-outline-primary btn-rounded"
data-mdb-ripple-color="dark">Paper</button>
<button type="button"
onclick="location.href='https://huggingface.co/Arabic-Clip'"
type="button"
class="btn btn-outline-secondary btn-rounded"
data-mdb-ripple-color="dark">Huggingface</button>
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="false"
aria-controls="collapseOne">
Cite the Paper
</button>
</h2>