-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataStucture.php
869 lines (729 loc) · 46.5 KB
/
DataStucture.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Structure</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="css/web_heading.css">
<link rel="stylesheet" href="css/Style.css">
<script type="javascript" src="css/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<script type="css/javascript" src="script.js"></script>
</head>
<body>
<header>
<a href="#" class="logo">Query</a>
<nav>
<div class="nav-bar">
<a href="user_page.php">home</a>
<a href="user_page.php">about</a>
<!-- subjaects option -->
<a class=" dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">subjects</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Statistics.php">Statistics</a></li>
<li><a class="dropdown-item" href="lineralgebra.php">linear Algebra</a></li>
<li><a class="dropdown-item" href="R_programming.php">R Programming</a></li>
<li><a class="dropdown-item" href="machine_learning.php">Machine Learning</a></li>
<li><a class="dropdown-item" href="Data_mining.php">Data Mining</a></li>
<li><a class="dropdown-item" href="Data_Visualisation.php">Data Visualization</a></li>
<li><a class="dropdown-item" href="python.php">Python</a></li>
<li><a class="dropdown-item" href="DataStucture.php">DSA</a></li>
</ul>
<!-- quizzes option -->
<a href="quizes.php" target="_blank" role="button" aria-expanded="false">quizes</a>
<!-- notes option -->
<a href="notes.php" target="_blank" role="button" aria-expanded="false">Notes</a>
<a href="logout.php">logout</a>
<div class="animation start-home"></div>
</div>
</nav>
</header><br><br><br><br><br>
<div class="lecturs" style="padding: 30px;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/JL_grPUnXzY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is Data Science? </h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Vn_mmOuQkSA" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Learn data science for beginners</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/6lBPM-MiGNI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4> Install python on windows</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/8tCe1P_cgoY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4> Variables in python [Python 3 Programming Tutorials]</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/pd2_ZbhFT38" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Numbers</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ez2N-hcwvcQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Strings</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/t0UTQ1eOH_g" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>lists</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Vig1IeU2RYk" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Install PyCharm on Windows</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/0cQj7q8EWxY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Debug Python code using PyCharm</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/hNddJ3_hahk" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>If Statement</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/3ykIpmAxdoY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>For loop</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/fz_BCnhEQYQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Functions</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/RCM-lVAfXFg" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Dictionaries and Turples</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/7snh_1Hf_TI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Install Python Module (using pip)</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/DdGVBZv46PI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Modules</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/FNExLliAnZw" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Working With JSON</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/2AKJzc-cSj8" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>if __name__ == "__main__" </h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/kqVQDXfc9hU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4> Exception Handling </h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/6XWeeEg6d3s" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Class and Objects</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/q_BzsPxwLOE" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is Jupyter Notebook? | Jupyter Notebook Tutorial in Python</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Vt6loGK9Adc" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is Anaconda? Install Anaconda On Windows.</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/EEEZX_0FMEc" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Jupyter Notebook Tutorial / Ipython Notebook Tutorial</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/a8aDcLk4vRc" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>numpy tutorial - basic array operations</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/CmorAWRsCAw" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 1. What is Pandas python? Introduction and Installation</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/F6kmIpWWEdU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 2: Dataframe Basics</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/3k0HbcUGErE" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 3: Different Ways Of Creating DataFrame</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/-0NwrcZOKhQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 4: Read Write Excel CSV File</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/EaGbS7eWSs0" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 5: Handle Missing Data: fillna, dropna, interpolate</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/XOxABiMhG2U" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 6. Handle Missing Data: replace function</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Wb2Tp35dZ-I" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 7. Group By (Split Apply Combine)</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/WGOEFok1szA" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Python Pandas Tutorial 8. Concat Dataframes</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/qqwf4Vuj8oM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matplotlib Tutorial 1 - Introduction and Installation
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/zl5qPnqps8M" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matplotlib Tutorial 2 - format strings in plot function
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/oETDriX9n1w" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matplotlib Tutorial 3 - Axes labels, Legend, Grid
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/iedmZlFxjfA" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matplotlib Tutorial 4 - Bar Chart
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/r75BPh1uk38" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matplotlib Tutorial 5 - Histograms
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/GOuUGWGUT14" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matplotlib Tutorial 6 - Pie Chart
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/XrOLiypGDCQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>How to become a data scientist for free? | Step by step approach to become data scientist</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/gmvvaobm7eQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python -1: What is Machine Learning?
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/8jazNUpO3lQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 2: Linear Regression Single Variable
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/J_LnPL3Qg70" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 3: Linear Regression Multiple Variables
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/vsWrXfO3wWw" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 4: Gradient Descent and Cost Function
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/KfnhNlD8WZI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 5: Save Model Using Joblib And Pickle
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/9yl6-HEY7_s" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
,<h4>Machine Learning Tutorial Python - 6: Dummy Variables & One Hot Encoding
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/fwY9Qv96DJY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 7: Training and Testing Data
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/zM4VZR0px8E" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 8: Logistic Regression (Binary Classification)</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/J5bXOOmkopc" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 8 Logistic Regression (Multiclass Classification)</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/PHxYNGo8NcI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 9 Decision Tree
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/FB5EdxAGxQg" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 10 Support Vector Machine (SVM)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ok2s1vV9XW0" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 11 Random Forest
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/gJo0uNL-5Qw" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python 12 - K Fold Cross Validation
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/EItlUEPCIzM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 13: K Means Clustering Algorithm
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/PPeaRc-r1OI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 14: Naive Bayes Classifier Algorithm Part 1
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/nHIUYwN-5rM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 15: Naive Bayes Classifier Algorithm Part 2
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HdlDYng8g9s" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 16: Hyper parameter Tuning (GridSearchCV)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VqKq78PVO9g" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning Tutorial Python - 17: L1 and L2 Regularization | Lasso, Ridge Regression
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/rdfbcdP75KI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 1 : Introduction (Real Estate Price Prediction Project)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/_drqJ9SFCgU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 2 : Data Cleaning (Real Estate Price Prediction Project)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/gMoJIH0prL4" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 3 : Feature Engineering (Real Estate Price Prediction)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/cbqZa_1vzcg" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 4 : Outlier Removal (Real Estate Price Prediction Project)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/oCiRv94GMEc" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 5 : Model Building (Real Estate Price Prediction Project)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Q5JyawS8f5Q" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 6 : Python Flask Server (Real Estate Price Prediction)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/rD2xumR98w8" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Machine Learning & Data Science Project - 7 : Website or UI (Real Estate Price Prediction Project)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/q8NOmLD5pTU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Deploy machine learning model to production AWS (Amazon EC2 instance)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/q9oAZwhuUy4" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Analyst vs Data Engineer vs Data Scientist
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/qWXXHjV3JHI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 1 Introduction | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/m1dQ38qDABw" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 2 Data Collection | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/kwKfWBb6frs" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 3 Data Cleaning | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/sWAPtaBZKBQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 4 Feature Engineering | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/5Uc_m9CRWro" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 5 Training a Model | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/NtNl97LlpOk" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 6 Flask Server | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/idMKTkfeo4A" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 7 Build Website | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/W-PmvEeHioQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data Science & Machine Learning Project - Part 8 Deployment & Exercise | Image Classification
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Mubj_fqiAv8" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Introduction | Deep Learning Tutorial 1 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/yfsTZbwgMSE" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Why deep learning is becoming so popular? | Deep Learning Tutorial 2 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VhRtaziEWd4" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is a neuron? | Deep Learning Tutorial 3 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ER2It2mIagI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is a Neural Network | Deep Learning Tutorial 4 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VC-EliTgMEM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Install tensorflow 2.0 | Deep Learning Tutorial 5 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/z-ZR_8BZ1wQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Pytorch vs Tensorflow vs Keras | Deep Learning Tutorial 6 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/iqQgED9vV7k" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Neural Network For Handwritten Digits Classification | Deep Learning Tutorial 7 (Tensorflow2.0)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/icZItWxw7AI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Activation Functions | Deep Learning Tutorial 8 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/cT4pQT5Da0Q" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Derivatives | Deep Learning Tutorial 9 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Wibxjrxf5ko" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Matrix Basics | Deep Learning Tutorial 10 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/E1yyaLRUnLo" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Loss or Cost Function | Deep Learning Tutorial 11 (Tensorflow Tutorial, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/pXGBHV3y8rs" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Gradient Descent For Neural Network | Deep Learning Tutorial 12 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/PQCE9ChuIDY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Implement Neural Network In Python | Deep Learning Tutorial 13 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/IU5fuoYBTAM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Stochastic Gradient Descent vs Batch Gradient Descent vs Mini Batch Gradient Descent |DL Tutorial 14
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/5ogmEkujoqE" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Chain Rule | Deep Learning Tutorial 15 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/9SdLOcGnebU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Tensorboard Introduction | Deep Learning Tutorial 16 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/YmDaqXMIoeY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>GPU bench-marking with image classification | Deep Learning Tutorial 17 (Tensorflow2.0, Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/MSBY28IJ47U" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Customer churn prediction using ANN | Deep Learning Tutorial 18 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/2osIZ-dSPGE" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Precision, Recall, F1 score, True Positive|Deep Learning Tutorial 19 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/JnlM4yLFNuo" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Handling imbalanced dataset in machine learning | Deep Learning Tutorial 21 (Tensorflow2.0 & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/aDpnaxPAmtU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Applications of computer vision | Deep Learning Tutorial 22 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/zfiSAzpy9NM" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Simple explanation of convolutional neural network | Deep Learning Tutorial 23 (Tensorflow & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/7HPwo4wnJeA" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Image classification using CNN (CIFAR10 dataset) | Deep Learning Tutorial 24 (Tensorflow & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/oDAPkZ53zKk" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Convolution padding and stride | Deep Learning Tutorial 25 (Tensorflow2.0, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/mTVf7BN7S8w" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Data augmentation to address overfitting | Deep Learning Tutorial 26 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/LsdxvjLWkIY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Transfer Learning | Deep Learning Tutorial 27 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/taC5pMCm70U" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Image classification vs Object detection vs Image Segmentation | Deep Learning Tutorial 28
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/SfqN-Hc5two" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Popular datasets for computer vision: ImageNet, Coco and Google Open images | Deep Learning 29
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/AimW3j7M2Uw" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Sliding Window Object Detection | Deep Learning Tutorial 30 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ag3DLKsl2vk" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is YOLO algorithm? | Deep Learning Tutorial 31 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/IfRMV2MY9n0" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Object detection using YOLO v4 and pre trained model | Deep Learning Tutorial 32 (Tensorflow</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Y2wfIKQyd1I" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>What is Recurrent Neural Network (RNN)? Deep Learning Tutorial 33 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/EzsXi4WzelI" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Types of RNN | Recurrent Neural Network Types | Deep Learning Tutorial 34 (Tensorflow & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/qowp6SQ9_Oo" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Vanishing and exploding gradients | Deep Learning Tutorial 35 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/LfnrRPFhkuY" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Simple Explanation of LSTM | Deep Learning Tutorial 36 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/tOuXgORsXJ4" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Simple Explanation of GRU (Gated Recurrent Units) | Deep Learning Tutorial 37 (Tensorflow & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/atYPhweJ7ao" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Bidirectional RNN | Deep Learning Tutorial 38 (Tensorflow, Keras & Python)
</h4>
<iframe width="560" height="315" src="https://www.youtube.com/embed/sZGuyTLjsco" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h4>Converting words to numbers, Word Embeddings | Deep Learning Tutorial 39 (Tensorflow & Python)
</h4>
</div>
<section id="contact">
<div class="footer">
<div class="main">
<div class="col">
<h4>links</h4>
<ul>
<li><a href="user_page.php">contest</a></li>
</ul>
</div>
<div class="col">
<h4>Our services</h4>
<ul>
<!-- <li><a href="#">webdesign</a></li> -->
<li><a href="user_page.php">services</a></li>
</ul>
</div>
<div class="col">
<h4>info</h4>
<ul>
<li><a href="about.php">OUR TEAM</a></li>
</ul>
</div>
<div class="col">
<h4>Social media Handles</h4>
<div class="social">
<a href="#"><i class='bx bxl-facebook'></i></a>
<a href="#"><i class='bx bxl-twitter'></i></a>
<a href="#"><i class='bx bxl-instagram'></i></a>
<a href="#"><i class='bx bxl-youtube'></i></a>
</div>
</div>
</div>
</div>
</section>
<script>
let menu = document.querySelector("#menu-icon");
let navbar = document.querySelector(".navbar");
menu.addEventListener("click", function () {
navbar.classList.toggle("active");
});
window.onscroll = () => {
navbar.classList.remove("active");
};
</script>
</body>
</html>