-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1024 lines (804 loc) · 44 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>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Sujata Saini</title>
<meta name="description" content="Sujata Saini's Portfolio">
<meta name="author" content="Sujata Saini">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="logo100.png" >
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav">
<li class="current"><a class="smoothscroll" href="#home">Home</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#resume">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio">Projects</a></li>
<li><a class="smoothscroll" href="#testimonials">Quotes</a></li>
<li><a class="smoothscroll" href="#contact">Contact</a></li>
<li><a href="https://sujatasaini.com/blog/">Blog</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<h1 class="responsive-headline">Hello, <br>I'm Sujata Saini.</h1>
<h3>I'm a Researcher in <span>AutoML</span> and <span>Information Visualization</span>. I also have keen interest in <span>Natural Language Processing</span>, <span>Data Science </span> and <span>Web Development </span>creating awesome and
amazing projects inspired around the globe. Let's <a class="smoothscroll" href="#about">start scrolling</a>
and learn more <a class="smoothscroll" href="#about">about me</a>.</h3>
<hr />
<ul class="social">
<li><a href="https://www.facebook.com/aisujata"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/aisujata"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/sujatasaini/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="saini-sujata@ed.tmu.ac.jp"><i class="fa fa-envelope"></i></a></li>
<li><a href="https://github.com/sujatasaini"><i class="fa fa-github"></i></a></li>
<li><a href="https://g.dev/sujatasaini"><i class="fa fa-google"></i></a></li>
</ul>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#about"><i class="icon-down-circle"></i></a>
</p>
</header> <!-- Header End -->
<!-- About Section
================================================== -->
<section id="about">
<div class="row">
<div class="three columns">
<img class="profile-pic" src="images/profilepic.jpg" alt="" />
</div>
<div class="nine columns main-col">
<h2>About Me</h2>
<p>Sujata is an Indian studying PhD at Tokyo Metropolitan University in Tokyo, Japan.
She offered MEXT scholarship for her PhD studies. Her major is AutoML and Information Visualization System.
She is leading Google Developer Student Club from her university from 2021-2022.
She is an Ambassador of Women Techmakers in Japan. She is in the lead role of Microsoft Learn Student Ambassador
at Tokyo Metropolitan University. She organized technical events to develop programming skills of the latest
technology trends among students. She is also a member of the Flexible Design Scientist Interfaculty Program (FDSIP).
She is an active member of Google Developers Community, WDA Japan, tinyml, 2d3d.ai, MLTokyo, Tokyo Python Society,
GeoTokyo, GCPUG, Technovation Girls, Creative Tokyo, ODSC, mHealthIsrael, AI, and Cloud Innovation. </p>
<div class="row">
<div class="columns contact-details">
<h2>Contact Details</h2>
<p class="address">
<span>Sujata Saini</span><br>
<span>PhD, Takama Laboratory
</span><br>
<span>Tokyo Metropolitan University, Japan</span>
</p>
</div>
<div class="columns download">
<p>
<a href="./images/CV.pdf" class="button"><i class="fa fa-download"></i>Download Resume</a>
</p>
</div>
</div> <!-- end row -->
</div> <!-- end .main-col -->
</div>
</section> <!-- About Section End-->
<!-- Resume Section
================================================== -->
<section id="resume">
<!-- Education
----------------------------------------------- -->
<div class="row education">
<div class="three columns header-col">
<h1><span>Education</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Tokyo Metropolitan University</h3>
<p class="info">Doctor of Philosophy in Computer Science <span>•</span> <em class="date">April 2021 - Sep 2024</em></p>
<p>
My research primarily focuses on Automated Machine Learning (AutoML) and Information Visualization,
with a keen interest in Natural Language Processing (NLP), Data Science, and Web Development.
Currently pursuing a Ph.D., my aim is to augment my expertise to contribute significantly to the fields of data science and machine learning.
Specifically, I aspire to develop advanced information visualization techniques applicable across various domains, including digital humanities, real-time tracking, and intellectual property.
Through my research endeavors, I endeavor to drive innovation and address pressing challenges in these areas.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Chaudhary Ranbir Singh University</h3>
<p class="info">Master of Philosophy in Computer Science<span>•</span> <em class="date">Aug 2015 - April 2017</em></p>
<p>During my pursuit of a Master's of Philosophy in Computer Science at Chaudhary Ranbir Singh University in India in 2015,
I immersed myself in the realms of data science and machine learning. As a teaching assistant, I honed my skills while gaining hands-on experience
in soft computing and MATLAB. For my post-graduation project, I embarked on a pioneering endeavor, exploring the application of deep neural networks in computer vision.
This led to my master thesis, which delved into "Japanese Historical Character Recognition using Deep Convolutional Neural Network (DCNN) with Drop Block Regularization,"
showcasing my commitment to advancing the field through innovative research.
</p>
</div>
</div>
<div class="row item">
<div class="twelve columns">
<h3>Maharishi Dayanand University</h3>
<p class="info">Masters of Science in Computer Science <span>•</span> <em class="date">Aug 2013 - May 2015</em></p>
<p>
In pursuit of my Master's degree, I delved deeply into a myriad of computer science concepts, equipping myself with a comprehensive skill set to tackle complex computational challenges.
Through intensive study and practical application, I gained expertise in areas such as Data Structures and Algorithms, Discrete Mathematics, C, C++,
Software Engineering, Database Management Systems, Computer Graphics, Computer Networks, and Artificial Intelligence.
These hands-on sessions provided me with the necessary foundation and proficiency to develop solution-oriented algorithms and address diverse computing problems effectively.
</p>
</div></div>
<div class="row item">
<div class="twelve columns">
<h3>Maharishi Dayanand University</h3>
<p class="info">Bachelors of Science in Computer Science<span>•</span> <em class="date">Aug 2010 - May 2013</em></p>
<p>
Throughout my Bachelor's degree, I extensively studied Mathematics, Physics, and Computer Science, honing my understanding of fundamental principles in these disciplines.
A key aspect of my learning process involved continuously exploring the various patterns and connections between these subjects and real-life applications.
This holistic approach not only deepened my comprehension of the material but also cultivated a practical perspective essential for addressing real-world challenges effectively.
</p>
</div></div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Education -->
<!-- Work
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Experience</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Riken</h3>
<p class="info">Researcher <span>•</span> <em class="date">May 2024 - Present</em></p>
<p>At RIKEN in Tokyo, my role involves harnessing the potential of tensor-based methods to tackle the intricate challenge of image classification for historical language datasets.
The primary goal is to develop algorithms capable of accurately identifying and classifying script styles and ages from various historical periods.
This task is particularly challenging due to the diversity and complexity of historical scripts, which often include variations in style, degradation over time, and regional differences.
My research contributes to the broader field of digital humanities by creating tools that help historians and linguists access and analyze vast archives of unreadable texts more efficiently, thereby unlocking new insights into our cultural heritage.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Tokyo Metropolitan University</h3>
<p class="info">Teaching Assistant <span>•</span> <em class="date">April 2024 - May 2024</em></p>
<p>
In April 2024, I worked as a Teaching Assistant at Tokyo Metropolitan University’s Takama Laboratory, focusing on a comprehensive one-month survey of recommendation systems.
My responsibilities included supporting academic research and assisting students with the technical aspects and applications of recommendation systems.
This role required me to facilitate learning by organizing tutorials, managing course materials, and providing hands-on guidance to students as they navigated complex algorithms and data analysis techniques.
My contribution helped enhance the students' proficiency in developing innovative solutions tailored to real-world problems using recommendation technologies.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>IEEE</h3>
<p class="info">Lead Ambassador <span>•</span> <em class="date">April 2024 - Present</em></p>
<p>Since April 2024, I have been serving as the Lead Ambassador for IEEE's R10 Adhoc Committee on Entrepreneurship and Innovation, based in Tokyo, Japan.
In this role, I am responsible for spearheading initiatives aimed at enhancing entrepreneurial capabilities and promoting innovative methodologies among engineers throughout the Asia-Pacific region.
My duties involve organizing workshops, seminars, and networking events that facilitate knowledge exchange and inspire innovation. Through these efforts, we strive to empower engineers to develop groundbreaking solutions and advance technological progress across diverse industries within the region.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>MEXT Scholarship Association</h3>
<p class="info">Vice-Head Finance <span>•</span> <em class="date">Aug 2023 - Present</em></p>
<p>
Appointed as Vice Head of Finance for the Mext Scholarship Association in 2023,
I leveraged this opportunity to engage with international students, address their concerns,
and foster a supportive environment. My responsibilities included overseeing financial management, including budgeting, fund disbursement, and securing sponsorships.
Additionally, I played a pivotal role in assisting students and coordinating various events, contributing to the association's overall success and impact.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Microsoft Student Learn</h3>
<p class="info">Ambassador/Founder at Tokyo Metropolitan University <span>•</span> <em class="date">Jan 2022 - Present</em></p>
<p>
Appointed as a Microsoft Learn Student Ambassador in January 2022,
I am privileged to contribute to a dynamic tech community with a global footprint.
My responsibilities include embarking on technical learning paths through Microsoft resources and
organizing collaborative events with fellow ambassadors and industry experts, fostering continuous learning and growth within the community.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Technovation Girls</h3>
<p class="info">Mentor<span>•</span> <em class="date">Dec 2021 - March 2022</em></p>
<p>
Honored to serve as a mentor in the Technovation Girls Coding Challenge, I provided guidance to junior high school and high school girls in developing theme-based mobile applications.
Through effective mentorship, I facilitated the successful deployment of these applications within defined timeframes and budgets, empowering young women to excel in technology and innovation.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Women Techmakers</h3>
<p class="info">Ambassador<span>•</span> <em class="date">Sep 2021 - Present</em></p>
<p>
Upon seizing this opportunity, I recognized the untapped potential of women in technical fields. Acknowledging the significant gender disparity within the industry,
I advocate for initiatives that aim to empower and support women by providing valuable resources.
It is imperative to strive for gender balance in the tech sector, fostering an inclusive environment that harnesses the talents of all individuals.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Google Developer Student Club</h3>
<p class="info">GDSC Lead/Founder at Tokyo Metropolitan University <span>•</span> <em class="date">Aug 2021 - Aug 2022</em></p>
<p>Appointed as a GDSC Lead at Tokyo Metropolitan University for the 2021-2022 session, I addressed key challenges within the institution,
notably the gap in students' technical knowledge and communication barriers.
Employing diverse outreach strategies, I endeavored to provide students with up-to-date technical content, empowering them to pursue successful careers in the ever-evolving tech industry.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>S.B.S.S</h3>
<p class="info">Product Supervisor Intern, Bio-Metric Devices and Applications <span>•</span> <em class="date">Mar 2016 - Sep 2016</em></p>
<p>
Tasked with managing biometric data for fingerprint identification at Government State Examination Centers,
I executed a meticulous process involving travel to multiple centers,
data collection, processing, and secure delivery. My role demanded precision and adherence to stringent security protocols to ensure the integrity
and confidentiality of the data entrusted to me.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Chaudhary Ranbir Singh University</h3>
<p class="info">Teaching Assistant, Soft-Computing and Matlab <span>•</span> <em class="date">Sep 2015 - Feb 2016</em></p>
<p>
As a teaching assistant at C.R.S University, under the mentorship of Prof. Anumpan Bhatia and Prof. Harish Rohil,
I played a pivotal role in instructing Soft Computing courses. With a focus on Neural Networks, fuzzy logic, and genetic algorithms,
I facilitated comprehensive learning experiences for students.
Additionally, I conducted programming sessions in MATLAB, equipping students with practical skills to complement theoretical knowledge in the field.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
<hr>
<!-- Publications
----------------------------------------------- -->
<div class="row skill">
<div class="three columns header-col">
<h1><span>Publications</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<p>
<b>Sujata Saini, </b> Hiroki Shibata, Yasufumi Takama, “ Construction of Handwritten Indus Signs Dataset Employing Social Approach,” Special Issue, JACIII:
Journal of Advanced Computational Intelligence and Intelligent Informatics, Volume-2, Issue-1, Jan 2024, pp. 122-128.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<p>
<b>Sujata Saini, </b> Hiroki Shibata, Yasufumi Takama, “Toward Construction of Handwritten Indus Signs
Dataset” The 10th International Symposium on Computational Intelligence and Industrial Applications
(ISCIIA2022) Sep.23-Sep.25, 2022, Beijing, China.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<p>
<b>Sujata Saini, </b> Vishal Verma, “Japanese Historical Character Recognition using Deep Convolutional Neural Network (DCNN) with DropBlock Regularization,” International
Journal of Recent Technology and Engineering, Volume-8, Issue-2, July 2019, pp. 3510-3515.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End publication -->
<hr>
<!--------------------------------------------------------------------------------------------------------------------------------->
<!-- awards
----------------------------------------------- -->
<div class="row skill">
<div class="three columns header-col">
<h1><span>awards</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>MEXT Scholarship</h3>
<p class="info">Doctoral Course, Tokyo Metropolitan University <span>•</span> <em class="date">April 2021 - March 2024</em></p>
<p>
Japanese Government (Monbukagakusho: MEXT) University Recommendation Scholarship under Flexible
Design Scientist Interfaculty Program (FDSIP)
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>AutoML Fall School 2021 Scholarship</h3>
<p class="info">Automated Machine Learning Scholarship, Germany<span>•</span> <em class="date">Nov 2021 </em></p>
<p>I was selected as one of the top five students who got this scholarship worldwide. This programme organized with the collaboration of Leibniz University
Hannover, University of Freiburg & Bosch Center for Artificial Intelligence and Ludwig-Maximilians University Munich & Munich Center of Machine Learning.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End awards -->
<hr>
<!-- Skills
----------------------------------------------- -->
<div class="row skill">
<div class="three columns header-col">
<h1><span>Skills</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Programming</h3>
<p>
Python, R, MATLAB, C, C++, SQL
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Libraries</h3>
<p>
Tensorflow, PyTorch, Keras, Caffe, OpenCV, Scikit-Learn, Numpy, SciPy, Matplotlib, Pandas, NLTK, fastai
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Others</h3>
<p>
AWS, Git, Docker, Kubernetes, Anaconda, RStudio, SAAS, Tableau
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End skills -->
<hr>
<!-- Moocs----------------------------------------------- -->
<div class="row skill">
<div class="three columns header-col">
<h1><span>Moocs</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>IBM</h3>
<p>
Coginitive AI Classes
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Udacity</h3>
<p>
Computer Vision NanoDegree
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Google</h3>
<p>
Machine Learning Crash Course with TensorFlow APIs
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>MIT</h3>
<p>
MicroMasters Program of Statistics and Data Science
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Harvard University, edX</h3>
<p>
Introduction to Digital Humanities
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Moocs -->
</section> <!-- Resume Section End-->
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row">
<div class="twelve columns collapsed">
<h1>Check Out Some of My Works.</h1>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-01" title="">
<img alt="" src="images/indus.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>IndusDraw</h5>
<p>Web Application</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-02" title="">
<img alt="" src="images/draw.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Indus Draw</h5>
<p>Mobile Application</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-03" title="">
<img alt="" src="images/mental.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Mental Health</h5>
<p>Google Solution Challenge 2022</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-04" title="">
<img alt="" src="images/food.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Bento Time</h5>
<p>Mobile Application</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-05" title="">
<img alt="" src="images/dropblock.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>DCNN-DropBlock</h5>
<p>Deep Learning</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-06" title="">
<img alt="" src="images/sentasis.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Sentasis</h5>
<p>Natural Language Processing</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-07" title="">
<img alt="" src="images/data.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Heartpro</h5>
<p>Exploratory Data Anlaysis</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-08" title="">
<img alt="" src="images/pose.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>ActoNet</h5>
<p>Human Pose Prediction</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div> <!-- item end -->
</div> <!-- twelve columns end -->
</div>
</div> <!-- portfolio-wrapper end -->
<!-- Modal Popup--------------------------------------------------------------- -->
<div id="modal-01" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/indus.png" alt="" />
<div class="description-box">
<h4>IndusDraw</h4>
<p>Collected handwritten Indus Signs data of multiple users via web application with the crowd-sourcing method.</p>
<span class="categories"><i class="fa fa-tag"></i>Data Collection, Web Development</span>
</div>
<div class="link-box">
<a href="https://sujatasaini.com/Indus-Draw/">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-02" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/draw.png" alt="" />
<div class="description-box">
<h4>IndusDraw</h4>
<p>IndusDraw is a mobile application that collects handwritten data in a significant amount and stores the server's data.</p>
<span class="categories"><i class="fa fa-tag"></i>Data Collection, Mobile Development</span>
</div>
<div class="link-box">
<a href="https://indusdraw.software/">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-02 End -->
<div id="modal-03" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/mental.png" alt="" />
<div class="description-box">
<h4>Mental Health</h4>
<p>Mental health is essential to keep us moving with daily tasks. This app analyzes a user's mood daily and
provides monthly predictions reports.</p>
<span class="categories"><i class="fa fa-tag"></i>Google Solution Challenge 2022</span>
</div>
<div class="link-box">
<a href="404.html">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-03 End -->
<div id="modal-04" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/food.png" alt="" />
<div class="description-box">
<h4>Bento Time</h4>
<p>Bento Time is a mobile application that reminds the users to buy cheap and healthy food on time.
It's a considerable initiative to stop food wastage in Japan. The app version is available for IOS and android,
both mobile devices.
</p>
<span class="categories"><i class="fa fa-tag"></i>Mobile App, UI/UX</span>
</div>
<div class="link-box">
<a href="https://www.figma.com/proto/504ViFJx6lPbYD7mJ5g1cz/Food-Buy-Reminder-App-(Copy)?node-id=3%3A2&scaling=scale-down&page-id=0%3A1&starting-point-node-id=8%3A8">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-04 End -->
<div id="modal-05" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/dropblock.png" alt="" />
<div class="description-box">
<h4>DCNN-Dropblock</h4>
<p>Developed image classification model to recognize the Japanese historical characters using Deep Convolutional Neural
Networks with DropBlock regularization method and achieve 97\% accuracy of state-of-art results.</p>
<span class="categories"><i class="fa fa-tag"></i>Japanese Character Recognition, Image Classification, Deep Learning</span>
</div>
<div class="link-box">
<a href="https://github.com/sujatasaini/Kuzushiji-DropBlock">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-05 End -->
<div id="modal-06" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/sentasis.jpg" alt="" />
<div class="description-box">
<h4>Sentasis</h4>
<p>Performed Simple, Multi-Class, Convolutional Sentiment Analysis using Bi-Directional and Deep Layer RNNs, and CNNs in PyTorch.</p>
<span class="categories"><i class="fa fa-tag"></i>Natural Language Processing</span>
</div>
<div class="link-box">
<a href="404.html">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-06 End -->
<div id="modal-07" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/data.jpg" alt="" />
<div class="description-box">
<h4>Heartpro</h4>
<p>Performed EDA and compared KNNs, Decision Trees, Logistic Regression, Naive Bayes, Random Forest on Cleveland Database.</p>
<span class="categories"><i class="fa fa-tag"></i>Machine Learning</span>
</div>
<div class="link-box">
<a href="404.html">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-07 End -->
<div id="modal-08" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/pose.png" alt="" />
<div class="description-box">
<h4>ActoNET</h4>
<p>Predicted human activities such as Walking, Sitting, Standing, etc., using Numpy, Pandas, etc., with data from Smartphone sensors.</p>
<span class="categories"><i class="fa fa-tag"></i>Human Pose Prediction</span>
</div>
<div class="link-box">
<a href="404.html">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-08 End -->
</div> <!-- row End -->
</section> <!-- Portfolio Section End-->
<!-- Testimonials Section
================================================== -->
<section id="testimonials">
<div class="text-container">
<div class="row">
<div class="two columns header-col">
<h1><span>Quotes</span></h1>
</div>
<div class="ten columns flex-container">
<div class="flexslider">
<ul class="slides">
<li>
<blockquote>
<p>Your work is going to fill a large part of your life, and the only way to be truly satisfied is
to do what you believe is great work. And the only way to do great work is to love what you do.
If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it.
</p>
<cite>Steve Jobs</cite>
</blockquote>
</li> <!-- slide ends -->
<li>
<blockquote>
<p>I'm interested in things that change the world or that affect the future and wondrous,
new technology where you see it, and you're like, 'Wow, how did that even happen? How is that possible?'
</p>
<cite>Elon Musk</cite>
</blockquote>
</li> <!-- slide ends -->
</ul>
</div> <!-- div.flexslider ends -->
</div> <!-- div.flex-container ends -->
</div> <!-- row ends -->
</div> <!-- text-container ends -->
</section> <!-- Testimonials Section End-->
<!-- Contact Section
================================================== -->
<section id="contact">
<div class="row section-head">
<div class="two columns header-col">
<h1><span>Get In Touch.</span></h1>
<h2></h2>
</div>
<div class="ten columns">
<p class="lead">
Contact Me
</p>
</div>
</div>
<div class="row">
<div class="eight columns">
<!-- form -->
<form action="" method="post" id="contactForm" name="contactForm">
<fieldset>
<div>
<label for="contactName">Name <span class="required">*</span></label>
<input type="text" value="" size="35" id="contactName" name="contactName">
</div>
<div>
<label for="contactEmail">Email <span class="required">*</span></label>
<input type="text" value="" size="35" id="contactEmail" name="contactEmail">
</div>
<div>
<label for="contactSubject">Subject</label>
<input type="text" value="" size="35" id="contactSubject" name="contactSubject">
</div>
<div>
<label for="contactMessage">Message <span class="required">*</span></label>
<textarea cols="50" rows="15" id="contactMessage" name="contactMessage"></textarea>
</div>
<div>
<button class="submit">Submit</button>
<span id="image-loader">
<img alt="" src="images/loader.gif">
</span>
</div>
</fieldset>
</form> <!-- Form End -->
<!-- contact-warning -->
<div id="message-warning"> Error boy</div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, thank you!<br>
</div>
</div>
<aside class="four columns footer-widgets">
<div class="widget widget_contact">
<h4>Address</h4>
<p class="address">
Sujata Saini<br>
6-6 Asahigaoka, Hino-shi <br>
191-0065, Tokyo, Japan
<span></span>
</p>
<!-- Google Calendar Appointment Scheduling -->
<link href="https://calendar.google.com/calendar/scheduling-button-script.css" rel="stylesheet">
<script src="https://calendar.google.com/calendar/scheduling-button-script.js" async></script>
<div class="calendar-button-container" style="text-align: left; margin-top: 10px;">
<script>
(function () {
var target = document.currentScript;
window.addEventListener('load', function () {
calendar.schedulingButton.load({
url: 'https://calendar.google.com/calendar/appointments/schedules/AcZssZ2OuW5dbZcwzBldQVu_dtCZ2ei3_MlM8fvSXO23Hn6XsR0kXMdYwwH9pCz63Civv_2oVs5vBhhy?gv=true',
color: '#616161',
label: 'Book an appointment',
target,
});
});
})();
</script>
</div>
<!-- End Google Calendar Appointment Scheduling -->
</div>
</div>
</section> <!-- Contact Section End-->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="twelve columns">
<ul class="social-links">
<li><a href="https://www.facebook.com/aisujata"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/aisujata"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/sujatasaini/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="saini-sujata@ed.tmu.ac.jp"><i class="fa fa-envelope"></i></a></li>
<li><a href="https://github.com/sujatasaini"><i class="fa fa-github"></i></a></li>
<li><a href="https://g.dev/sujatasaini"><i class="fa fa-google"></i></a></li>
</ul>
<ul class="copyright">
<li>Copyright © 2022. Made with ❤ by <span>Sujata Saini</span></li>
</ul>