-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
564 lines (498 loc) · 34.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Hello People! I'm Aakash</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
/* Add a gray background color with some padding */
/*body {
font-family: Arial;
padding: 20px;
background: #f1f1f1;
}*/
/* Header/Blog Title */
/*.header {
padding: 30px;
font-size: 40px;
text-align: center;
background: white;
}*/
/* Create two unequal columns that floats next to each other */
/* Left column */
/*.leftcolumn {
float: left;
width: 75%;
}*/
/* Right column */
/*.rightcolumn {
float: left;
width: 25%;
padding-left: 20px;
}*/
/* Fake image */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* Add a card effect for articles */
/*.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}*/
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Footer */
/*.footer {
padding: 20px;
text-align: center;
background: #ddd;
margin-top: 20px;
}*/
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
/*@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}*/
</style>
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Aakash Varma Nadimpalli</span>
<span class="d-none d-lg-block"><img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="assets\img\Profile.jpeg" alt="" /></span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#publication">Publications</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#experience">Experience</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#education">Education</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#blogs">Blogs</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#interests">Interests</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#awards">Awards</a></li>
</ul>
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid p-0">
<!-- About-->
<section class="resume-section" id="about">
<div class="resume-section-content">
<h1 class="mb-0">
Aakash Varma
<span class="text-primary">Nadimpalli</span>
</h1>
<div class="subheading mb-5">
Visual Computing and Biometric Security Lab (VCBSL)
Wichita State University. 1845, Fairmount St.Wichita . Kansas . 67260
<a href="mailto:name@email.com">axnadimpalli@shockers.wichita.edu</a>
</div>
<p class="lead mb-5">I am a PhD graduate from Wichita State University. My Work focuses on developing generalizable models for domain adaptation and facial manipulation detection and simultaneously developing deep learning models for harnessing unlabeled data. My research interests include computer vision, Biometrics, Artificial intelligence and Deep learning. <a href="https://vcbsl.github.io/lab-website/">Lab Webpage.</a></p>
<div class="social-icons">
<a class="social-icon" href="https://scholar.google.com/citations?user=pccyz-AAAAAJ&hl=en"><i class="fa fa-graduation-cap"></i></a>
<a class="social-icon" href="https://www.linkedin.com/in/aakash-varma-nadimpalli-457474153/"><i class="fab fa-linkedin-in"></i></a>
<a class="social-icon" href="https://github.com/aakash4305"><i class="fab fa-github"></i></a>
<a class="social-icon" href="https://www.researchgate.net/profile/Aakash-Varma-Nadimpalli-2"><i class="fab fa-researchgate"></i></a>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Publication-->
<section class="resume-section" id="publication">
<div class="resume-section-content">
<h2 class="mb-5">Publications</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Harnessing Unlabeled Data to Improve Generalization of Biometric Gender and Age Classifiers</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/itsnarsi/">Narsi Reddy</a>,<a href="https://www.linkedin.com/in/sreeraj-ramachandran-1b9b4542/">Sreeraj Ramachandran</a>, <a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://arxiv.org/abs/2110.04427">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary">2021 IEEE Symposium Series on Computational Intelligence (SSCI) | Orlando,Florida
</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">An Experimental Evaluation on Deepfake Detection using Deep Face Recognition</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="https://www.linkedin.com/in/sreeraj-ramachandran-1b9b4542/">Sreeraj Ramachandran</a>,<a href="#about">Aakash Varma Nadimpalli</a>, <a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://arxiv.org/abs/2110.01640">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> 54th ICCST 2021 | Hatfield, UK
</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">On Improving Cross-dataset Generalization of Deepfake Detectors
</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://openaccess.thecvf.com/content/CVPR2022W/WMF/papers/Nadimpalli_On_Improving_Cross-Dataset_Generalization_of_Deepfake_Detectors_CVPRW_2022_paper.pdf">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> CVPR 2022 | New Orleans, Louisiana</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">GBDF: Gender Balanced DeepFake Dataset Towards Fair DeepFake Detection
</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://arxiv.org/abs/2207.10246">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> ICPR 2022| Montreal, Canada</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Demographic Fairness and Accountability of Audio and Video based Unimodal and Bi-modal Deepfake Detectors
</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="https://www.linkedin.com/in/vinayasreek/">Vinaya Sree Katamneni</a>,<a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://www.researchgate.net/publication/372720386_Demographic_Fairness_and_Accountability_of_Audio_and_Video_based_Unimodal_and_Bi-modal_Deepfake_Detectors">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> Face Recognition Across the Imaging Spectrum (FRAIS)| July 2023 </span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">ProActive DeepFake Detection using GAN-based Visible Watermarking
</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://dl.acm.org/doi/10.1145/3625547">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> ACM Transactions on Multimedia Computing, Communications, and Applications | September 2023 </span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Facial Forgery-based Deepfake Detection using Fine-Grained Features
</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://arxiv.org/abs/2310.07028">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> ICMLA 2023 | Florida, USA </span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Social Media Authentication and Combating Deepfakes using Semi-fragile Invisible Image Watermarking
</h3>
<div class="authors"><span class="descriptor">Authors:</span><a href="#about">Aakash Varma Nadimpalli</a>,<a href="https://www.linkedin.com/in/ajita-rattani-7880878/">Ajita Rattani</a></div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://arxiv.org/abs/2410.01906">Abstract</a></li>
</ul>
</div>
<div class="flex-shrink-0"><span class="text-primary"> ACM Transactions (Digital Threats: Research and Practice) | October 2024 </span></div>
</div>
</section>
<hr class="m-0" />
<!-- Experience-->
<section class="resume-section" id="experience">
<div class="resume-section-content">
<h2 class="mb-5">Experience</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0"> Machine Learning Researcher (Computer Vision)</h3>
<div class="subheading mb-3">Enelect</div>
<div> Served as a ML researcher on an STTR Project, focusing on image segmentation and classification.
Concurrently, classification models utilizing automatic image annotation were being developed, which employed semi-supervised learning (SSL) techniques. Enhanced machine learning models with semi-supervised learning techniques and innovative loss functions to effectively
utilize limited labeled data and address challenges with unknown targets. Evaluated the developed semi-supervised models on the large scale datasets and achieved a decent annotation time. Working on generative AI and large language model systems, focusing on detecting and creating advanced algorithms for synthetic media (deepfakes). </a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jan 2023 - Present</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Graduate Research Assistant</h3>
<div class="subheading mb-3"> Wichita State University</div>
<div> Conducted research to develop scalable and transferable deep learning models for domain adaptation and detection of facial manipulations, leveraging advancements in generative AI. Worked on harnessing unlabeled data for improvement and generalization of the deep learning models. Worked on development of generalizable models for preventing deep fakes across social media platforms. For more information, <a href="https://scholar.google.com/citations?user=pccyz-AAAAAJ&hl=en&oi=ao">refer the publications.</a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jan 2021 - Dec 2022</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Graduate Teaching Assistant</h3>
<div class="subheading mb-3"> Wichita State University</div>
<div> Worked as graduate teaching assistant for machine learning and image analysis courses. My duties included delivering lectures, facilitating discussions, and supporting students in their understanding of the
fundamental concepts and applications within the field of machine learning. </a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Aug 2020 - Dec 2020</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Research Intern (Data Management)</h3>
<div class="subheading mb-3">ZOLOZ INC.</div>
<div> Defined and planned computer vision data collection efforts to further biometric authentication and spoof detection research. Executed data collection efforts using custom built data collection apps and methods. Classified attributes for collected data that are to be used in optimizing training algorithms. Developed spoof attack methods and generated spoof data. </a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jan 2020 - June 2020</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Data Research Assistant</h3>
<div class="subheading mb-3">School of Computing, University of Missouri Kansas city, Kansas city, Missouri</div>
<p>Worked as a Research Assistant in Computational Intelligence and Bio-Identification Technology Lab (C.I.B.I.T) in collaboration with ZOLOZ, collected data from around 1000 individuals.
Duties mainly involved Planning and executing biometric data collection, management and automation.
</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Oct 2018 - June 2019</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Reviewer</h3>
<div class="subheading mb-3">IEEE Transactions on Circuits and Systems for Video Technology 2023</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">May 2023</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Reviewer</h3>
<div class="subheading mb-3">Image and Vision Computing 2023</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">June 2023</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Reviewer</h3>
<div class="subheading mb-3">Pattern Recognition Letters 2023</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">June 2023</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Reviewer</h3>
<div class="subheading mb-3">ACM Multimedia Conference 2020</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Oct 2020</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Reviewer</h3>
<div class="subheading mb-3">IET Biometrics</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">2021</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Reviewer</h3>
<div class="subheading mb-3">International Conference on Pattern Recognition (ICPR) 2022</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">2022</span></div>
</div>
</section>
<hr class="m-0" />
<!-- Education-->
<section class="resume-section" id="education">
<div class="resume-section-content">
<h2 class="mb-5">Education</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Wichita State University</h3>
<div class="subheading mb-3" href="https://www.wichita.edu/academics/majors/electrical_engineering_and_computer_science_phd_129.php">School Of Computing</div>
<div>Doctor of Philosophy (Ph.D.) - Computer Science</div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Aug 2020 - May 2024</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">University of Missouri Kansas City</h3>
<div class="subheading mb-3" href="https://www.umkc.edu/">School of Computing</div>
<div>Master of Science - (Electrical Engineering)</div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Aug 2018 - May 2020</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-0">Jawaharlal Nehru Technological University, Hyderabad, India.</h3>
<div class="subheading mb-3" href="https://jntuh.ac.in/">School of Engineering</div>
<div>Bachelor's Degree, Electronics and Communications Engineering</div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Sep 2014 - May 2018</span></div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Skills -->
<section class="resume-section" id="blogs">
<div class="resume-section-content">
<h2 class="mb-5">Blogs</h2>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h3>Deepfakes are the new big threat to business. How can we stop them?</h3>
<h5>Vyacheslav Zholudev,Pavel Goldman Kalaydin June 22,2023</h5>
<!-- <div class="fakeimg" style="height:200px;">Image</div> -->
<p>The authors started developing methods to combat this rapidly developing sort of fraud as soon as they became aware of the burgeoning deepfake trend. There company Sumsub is consistently developing cutting-edge fraud detection solutions to fend against evolving hostile technologies and stop the potentially severe harm they could cause to digital platforms, users, and communities. The authors commitment to further developing the AI-driven technologies incorporated into there anti-fraud solution that is strengthened with the introduction of there new sophisticated deepfake detector.</p>
</div>
<div class="card">
<h3>Deefake Challenges ‘Will Only Grow’</h3>
<h5>Amanda Morris Jan 16,2023</h5>
<!-- <div class="fakeimg" style="height:200px;">Image</div> -->
<p>
A recent report by artificial intelligence (AI) and foreign policy experts from Northwestern University and the Brookings Institution sheds light on the widespread impact of deepfakes beyond the attention garnered by large propaganda campaigns. The report delves into deepfake videos, images, and audio, highlighting the associated security challenges. The researchers foresee an imminent increase in the usage of this technology, including its potential deployment in targeted military and intelligence operations.
In response to these developments, the experts offer recommendations to security officials and policymakers, proposing the creation of a code of conduct for governments' use of deepfakes. This move is deemed crucial to address the concerns surrounding the use of this unsettling new technology by the United States and its allies.</p>
</div>
<div class="card">
<h3>Don't Trust Your Eyes: Image Manipulation in the Age of DeepFakes</h3>
<h5>Johannes Langguth,Konstantin Pogorelov,Stefan Brenner,Petra Filkukova,Daniel Thilo Schroeder May 24,2021</h5>
<!-- <div class="fakeimg" style="height:200px;">Image</div> -->
<p>The authors explore the deepfakes phenomena in the light of the current, more general debate on fake news. Deepfakes is a breakthrough technology that enables low-cost alteration of video content through the use of artificial intelligence. They go into the history of the technology, its most recent advancements, how it differs from past manipulation tactics, and they look into technical defenses. Although deepfake films have the potential to have significant political repercussions, this technology has so far only had a modest political influence. They look at the causes of this and predict the kinds of deepfake films we might see in the future.</p>
</div>
</div>
<!-- <div class="rightcolumn">
<div class="card">
<h2>About Me</h2>
<div class="fakeimg" style="height:100px;">Image</div>
<p>Some text about me in culpa qui officia deserunt mollit anim..</p>
</div>
<div class="card">
<h3>Popular Post</h3>
<div class="fakeimg">Image</div><br>
<div class="fakeimg">Image</div><br>
<div class="fakeimg">Image</div>
</div>
<div class="card">
<h3>Follow Me</h3>
<p>Some text..</p>
</div>
</div>
</div> -->
</section>
<hr class="m-0" />
<!-- Interests-->
<section class="resume-section" id="interests">
<div class="resume-section-content">
<h2 class="mb-5">Interests</h2>
<p>I enjoy traveling and engaging in outdoor activities like hiking and camping in addition to my work as a researcher. I am a big fan of astrophysicists and academics who study celestial bodies and space, and I follow up with many of them. </p>
<p class="mb-0">My favorite activity is also investigating culinary adventures. I also enjoy watching and playing cricket. In my free time, I enjoy going to the movies with my friends.</p>
</div>
</section>
<hr class="m-0" />
<!-- Awards-->
<!-- <section class="resume-section" id="awards">
<div class="resume-section-content">
<h2 class="mb-5">Awards & Certifications</h2>
<ul class="fa-ul mb-0">
<a href="">Dean's International</a>
</ul>
</div>
</section>-->
<!--<section class="resume-section" id="awards">
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Awards & Certifications</h3>
<div class="subheading mb-3">Dean's International Scholarship Award (DISA) </div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Aug 2018 - May 2020</span></div>
</div>
</section>-->
</section>
<hr class="m-0" />
<!-- Experience-->
<section class="resume-section" id="awards">
<div class="resume-section-content">
<h2 class="mb-5">Awards & Certificates</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Wichita State University</h3>
<div class="subheading mb-3">Global Select Scholarship Award (GSSA) </div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Aug 2020 - Present</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">University of Missouri Kansas City</h3>
<div class="subheading mb-3">Dean's International Scholarship Award (DISA)</div>
<div></a></div>
<p></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Aug 2018 - May 2020</span></div>
</div>
<!-- <section class="Slides" id="conference Slides">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="..." class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="..." class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="..." class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section> -->
</div>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>