-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparsed_videos.json
More file actions
1682 lines (1682 loc) · 226 KB
/
parsed_videos.json
File metadata and controls
1682 lines (1682 loc) · 226 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"link": "/watch?v=Yfs3PiAHWjk", "title": "Quantum reservoir processing in Bengali. quantum machine learning. quantum neural network.", "query": "machine+learning"}
{"link": "/watch?v=txe03qR9SG4", "title": "How to use deep learning through sklearn in classifying sonar dataset", "query": "machine+learning"}
{"link": "/watch?v=XnaKjkaJqEw", "title": "Machine Learning - 1.6 - Closing Remarks", "query": "machine+learning"}
{"link": "/watch?v=SEDAYD9QJ8I", "title": "Machine Learning in Web Build ML Based Apps | Heroku Deployment | Mohit Uniyal", "query": "machine+learning"}
{"link": "/watch?v=DHBz1QgrWpA", "title": "Machine Learning vs Deep Learning|Difference between Machine Learning and Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=wpvYnrRqjD8", "title": "Artificial Intelligence vs Machine Learning|Difference between AI and ML|AI and ML Difference", "query": "machine+learning"}
{"link": "/watch?v=sX8lZfZhKfw", "title": "Machine Learning - Project", "query": "machine+learning"}
{"link": "/watch?v=g4--6WHe3A4", "title": "IT Machine Learning 6IT4 02, By Dr Smita Agrawal", "query": "machine+learning"}
{"link": "/watch?v=3DzwQy0WWu8", "title": "Attention Models in Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=80lL8nDVgEY", "title": "What\u2019s machine learning?", "query": "machine+learning"}
{"link": "/watch?v=Jo22NeTIDKU", "title": "Deep Learning | Sigmoid Activation Function", "query": "machine+learning"}
{"link": "/watch?v=yN5Lmx4s0NQ", "title": "Learn Machine Learning for Free in Lockdown with Free Online Courses #Coronavirus Lockdown", "query": "machine+learning"}
{"link": "/watch?v=n6ddfht-pqk", "title": "Machine learning vs Deep learning", "query": "machine+learning"}
{"link": "/watch?v=VWMdIdZ-h9s", "title": "What is deep learning | learn deep learning in minutes | Deep learning explained for beginners", "query": "machine+learning"}
{"link": "/watch?v=MLjw0gEugug", "title": "Machine Learning & Computational Intelligence", "query": "machine+learning"}
{"link": "/watch?v=duP9mdzCh7Q", "title": "How to install, load and describe Penn Machine Learning Benchmarks Soybean Dataset", "query": "machine+learning"}
{"link": "/watch?v=h3MIiG7DKGs", "title": "How to use deep learning through sklearn in classifing spam dataset", "query": "machine+learning"}
{"link": "/watch?v=5-BLMQoaZ5k", "title": "Machine Learning Platforms Virtual Workshop", "query": "machine+learning"}
{"link": "/watch?v=dsV5sEUbkFQ", "title": "Future of Ecommerce: How to Improve Online Shopping Experience Using Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=ydBO9Pzo9JI", "title": "2 - Machine Learning and Data Science Interview questions With Answers Q3 , Q4", "query": "machine+learning"}
{"link": "/watch?v=vyudlHhggRk", "title": "Machine Learning - Confusion Matrix untuk Binary Classification, Part 1", "query": "machine+learning"}
{"link": "/watch?v=DPpFPVynIK4", "title": "Introduction to Machine Learning Part 2", "query": "machine+learning"}
{"link": "/watch?v=UVMI8e31LuE", "title": "Multiple Linear Regression Machine Learning Model Part-1 in Python", "query": "machine+learning"}
{"link": "/watch?v=MFSG5Lrk4Vs", "title": "Machine Learning Tutorial - Date and Time with Pandas", "query": "machine+learning"}
{"link": "/watch?v=VmDNFUZgrCU", "title": "Hyperplane Completely Explained! -Machine Learning | Support Vector Machines", "query": "machine+learning"}
{"link": "/watch?v=iJfWu9YeW40", "title": "Machine Learning in Web Build ML Based Apps | Image Captioning on Flask - III | Mohit Uniyal", "query": "machine+learning"}
{"link": "/watch?v=hx7kvTZLHYI", "title": "Teaching a computer to strafe jump in Quake with reinforcement learning", "query": "machine+learning"}
{"link": "/watch?v=cIMWI0AB0qo", "title": "YSL - AI Machine Learning - Upscaling Test 2 (acid test)", "query": "machine+learning"}
{"link": "/watch?v=yrudDsxiNmI", "title": "Python Tutorial : Machine Learning for Finance in Python", "query": "machine+learning"}
{"link": "/watch?v=OQfp6JlP1ZA", "title": "Feature Selection in Machine Learning (Session 1) | Variable Section | Data Science", "query": "machine+learning"}
{"link": "/watch?v=TswfM_Jwj1Q", "title": "COVID-19 Early Prediction using Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=4T2cQZ4l4II", "title": "YSL - AI Machine Learning - Upscaling Test 1", "query": "machine+learning"}
{"link": "/watch?v=5X6A1i5wbFU", "title": "Results from 18-hours of training a machine learning model | Airbnb Amenity Detection 7", "query": "machine+learning"}
{"link": "/watch?v=kt24Ukmv5fs", "title": "Machine Learning News - Voice Puppetry - Gesichter erstellen aus Sprache", "query": "machine+learning"}
{"link": "/watch?v=IMeF3f4iaVU", "title": "Salary Prediction Using Simple Linear Regression | Machine Learning | EduUdr | By Sri Sravya N", "query": "machine+learning"}
{"link": "/watch?v=ROqLYiUS2n4", "title": "R or Python for Data Science|R or Python For Machine Learning|R vs Python", "query": "machine+learning"}
{"link": "/watch?v=dAH4S1Derpk", "title": "Difference between artificial intelligence, machine learning and deep learning", "query": "machine+learning"}
{"link": "/watch?v=uEe3PxQmHyM", "title": "Machine Learning Tutorials - From Novice To Pro - #13 - Project 2: Multiple Linear Regression", "query": "machine+learning"}
{"link": "/watch?v=c-tm8k4daL4", "title": "Introduction of Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=MdAFlLKd9y0", "title": "Deep Learning | Activation Functions - Step function", "query": "machine+learning"}
{"link": "/watch?v=c-tm8k4daL4", "title": "Introduction of Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=JqLFc1xf7y0", "title": "Predict Future || Machine Learning Practical Life", "query": "machine+learning"}
{"link": "/watch?v=MdAFlLKd9y0", "title": "Deep Learning | Activation Functions - Step function", "query": "machine+learning"}
{"link": "/watch?v=oX18Qe3hWos", "title": "Machine Learning - [ Diccionarios ]", "query": "machine+learning"}
{"link": "/watch?v=-beoP7FZaSY", "title": "Reinforcement Learning For Hinting Games - JAVA - \u062a\u0642\u062f\u064a\u0645", "query": "machine+learning"}
{"link": "/watch?v=chvCBds87Ks", "title": "MSP Impact | Azure Days: Intro to Data Science & Machine Learning using MS Azure | Day 4", "query": "machine+learning"}
{"link": "/watch?v=beL56vQV7x0", "title": "I Won the Intel AI Machine Learning Edge Award and AI Nanodegree", "query": "machine+learning"}
{"link": "/watch?v=URPeZC2Ww4s", "title": "Lec-8: Introduction to Deep Learning: Python Basics: Numpy", "query": "machine+learning"}
{"link": "/watch?v=2WUSrOzQxzg", "title": "Lec-5: Introduction to Deep Learning: Python Basics: Packages", "query": "machine+learning"}
{"link": "/watch?v=EzvxGTFOoQ4", "title": "Machine Learning with Python Video 16 underfitting and overfitting", "query": "machine+learning"}
{"link": "/watch?v=B68cMHX_MEM", "title": "Lec-2: Introduction to Deep Learning: Python Basics: Data Types", "query": "machine+learning"}
{"link": "/watch?v=I9VFnAA2i1o", "title": "Categorical Variables & types in Hindi | Feature Engineering Tutorial | Machine Learning Course #5.5", "query": "machine+learning"}
{"link": "/watch?v=dPJccn7QUa4", "title": "Machine Learning - 1.5.4 - Deep features for image retrieval - iPython", "query": "machine+learning"}
{"link": "/watch?v=Hz2_VLxT938", "title": "Machine Learning in Web Build ML Based Apps | Image Captioning on Flask - II | Mohit Uniyal", "query": "machine+learning"}
{"link": "/watch?v=zqdA8b_cCDw", "title": "Everyone's dancing furiously! -HD- [Upscaled with machine learning]", "query": "machine+learning"}
{"link": "/watch?v=99qLd2p6x5E", "title": "Data Science Interview Questions: Deep Learning Numerically Stable Cross-Entropy", "query": "machine+learning"}
{"link": "/watch?v=4cqbblDhhGc", "title": "Geo for Good 2019: Machine Learning Best Practices", "query": "machine+learning"}
{"link": "/watch?v=Z5Pw5eWItiw", "title": "Machine Learning for Scent | MIT 6.S191", "query": "machine+learning"}
{"link": "/watch?v=nXMGgDvgufE", "title": "Augustus Muller 'Machine Learning Experiments' (Original Soundtrack) - SIDE B [Hydra]", "query": "machine+learning"}
{"link": "/watch?v=KOqpsGZOoyM", "title": "Augustus Muller \"Machine Learning Experiments\" (Original Soundtrack) - SIDE A [Orgone Theory]", "query": "machine+learning"}
{"link": "/watch?v=yT2QLekxEaA", "title": "3000h Of Machine Learning - 5 Biggest Mistakes", "query": "machine+learning"}
{"link": "/watch?v=xFai7z8Ng-c", "title": "Machine Learning in Web Build ML Based Apps | Image Captioning on Flask - I | Mohit Uniyal", "query": "machine+learning"}
{"link": "/watch?v=x0y5YdqPPiY", "title": "Machine Learning :Active learning and Sequence Prediction", "query": "machine+learning"}
{"link": "/watch?v=xnrPCou_gHw", "title": "Kids Fun Slot Machine Learning Game | Learn Counting Numbers 123", "query": "machine+learning"}
{"link": "/watch?v=zRSqJL6dFTs", "title": "Coronavirus (COVID-19) RECOVERY Toll Prediction For Top Countries Using Machine Learning Algorithm", "query": "machine+learning"}
{"link": "/watch?v=nUGkxFogXgI", "title": "Machine Learning : 01 Package Imports", "query": "machine+learning"}
{"link": "/watch?v=fVOTO5RMOLo", "title": "Wing Commander 4 Machine Learning HD Remaster", "query": "machine+learning"}
{"link": "/watch?v=Dace1sHy1IM", "title": "Interactive Machine Learning in Max with GIMLeT \u2013 Tutorial 1", "query": "machine+learning"}
{"link": "/watch?v=fcZIQCLHBco", "title": "Machine Learning : COVID 19 - Introduction", "query": "machine+learning"}
{"link": "/watch?v=JZKaqQKcAnw", "title": "Machine Learning Summit: Ragdoll Motion Matching", "query": "machine+learning"}
{"link": "/watch?v=lljghGrlYUo", "title": "Machine Learning in Web Build ML Based Apps | ML Model with Flask | Mohit Uniyal", "query": "machine+learning"}
{"link": "/watch?v=h4Ml9WuhxAk", "title": "Machine Learning Interview Questions | Machine Learning Interview Preparation | Intellipaat", "query": "machine+learning"}
{"link": "/watch?v=bd7ZOyYUeRE", "title": "\u00c9 Poss\u00edvel Prever a Dire\u00e7\u00e3o da Bolsa de Valores com Machine Learning? - Live de Data Science #21", "query": "machine+learning"}
{"link": "/watch?v=pL0ktEnnXfg", "title": "Machine Learning in Web Build ML Based Apps | Taking Input from User in Flask | Mohit Uniyal", "query": "machine+learning"}
{"link": "/watch?v=6Rq6UdI4RTc", "title": "Getting Ahead in Kaggle Competitions With Automated Machine Learning - Vlad Iliescu", "query": "machine+learning"}
{"link": "/watch?v=vxn26weEDsU", "title": "Postgrado en Data Science y Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=0g_osXozObM", "title": "Chaos and Pain in Machine Learning and the DevOps for ML Manifesto - Luke Marsden | ODSC Europe 2019", "query": "machine+learning"}
{"link": "/watch?v=e-1BMr4-Rgw", "title": "Week 6 assignment solutions of Machine Learning, ML", "query": "machine+learning"}
{"link": "/watch?v=bLv3ZLXQ-JI", "title": "Hands on machine learning with Azure Notebooks - Arpita Gupta", "query": "machine+learning"}
{"link": "/watch?v=6oWwHSCDI1Y", "title": "Deep Learning | The Chain Rule", "query": "machine+learning"}
{"link": "/watch?v=JMxbypF825w", "title": "Deep learning Tutorial | Deep learning Full Course 2020 | Complete Deep Learning for Beginners", "query": "machine+learning"}
{"link": "/watch?v=uPUEq8d73JI", "title": "David Silver: AlphaGo, AlphaZero, and Deep Reinforcement Learning | AI Podcast #86 with Lex Fridman", "query": "machine+learning"}
{"link": "/watch?v=xewxLp3KeGE", "title": "Ideas to Reality: The American University of Beirut using machine learning to help farmers", "query": "machine+learning"}
{"link": "/watch?v=_lqAQxdBapI", "title": "Deep Learning Chatbot R&D", "query": "machine+learning"}
{"link": "/watch?v=cyLWtMSry58", "title": "Don't learn machine learning", "query": "machine+learning"}
{"link": "/watch?v=_Hi6_JQesSQ", "title": "COVID - 19 Outbreak Prediction using Machine Learning | Machine Learning Training | Edureka", "query": "machine+learning"}
{"link": "/watch?v=mP92fhHjFmQ", "title": "Transformers Universe Video Game: Machine Learning AI Trailers Remastered in 4K", "query": "machine+learning"}
{"link": "/watch?v=E5hMcDH9_u8", "title": "How to build a Machine Learning strategy - Eyes on Enterprise", "query": "machine+learning"}
{"link": "/watch?v=sUb0W5_waRI", "title": "GDC 2020 - Machine Learning, Physics Simulation, Kolmogorov Complexity, and Squishy Bunnies", "query": "machine+learning"}
{"link": "/watch?v=sHWKN5dakPw", "title": "Coronavirus Outbreak Prediction Using Machine Learning | Covid-19 Outbreak Prediction | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=AHS9nATdgdU", "title": "S1E3: Making Deep Learning Human with Prof. Gilbert Strang", "query": "machine+learning"}
{"link": "/watch?v=JFB_751d2uc", "title": "Future of AI/ML | Rise Of Artificial Intelligence & Machine Learning | AI and ML Training | Edureka", "query": "machine+learning"}
{"link": "/watch?v=4yQcq0g_RGc", "title": "MACHINE LEARNING TIMELINE. From an 18th Century Priest to Google! How to learn Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=tfM_DdbGTLs", "title": "Deep Learning New Frontiers | MIT 6.S191", "query": "machine+learning"}
{"link": "/watch?v=nZfaHIxDD5w", "title": "Reinforcement Learning | MIT 6.S191", "query": "machine+learning"}
{"link": "/watch?v=HSac9lXKu5U", "title": "Finding Missing Children with Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=pJvG6dr1sQQ", "title": "The Role of AI and Machine Learning in Mechanical Engineering", "query": "machine+learning"}
{"link": "/watch?v=DB7cAOzLvh8", "title": "Machine Learning Bootcamp Jakarta 2019", "query": "machine+learning"}
{"link": "/watch?v=kKYloh7_k5s", "title": "Life as an AI Researcher & Machine Learning Engineer | Technology | J.P. Morgan", "query": "machine+learning"}
{"link": "/watch?v=lA5MHygnFcg", "title": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e40\u0e02\u0e35\u0e22\u0e19 Machine Learning \u0e43\u0e19 5 \u0e19\u0e32\u0e17\u0e35 | Python x Scikit-learn:", "query": "machine+learning"}
{"link": "/watch?v=EYIKy_FM9x0", "title": "Michael I. Jordan: Machine Learning, Recommender Systems, and the Future of AI | AI Podcast #74", "query": "machine+learning"}
{"link": "/watch?v=0jspaMLxBig", "title": "Andrew Ng: Deep Learning, Education, and Real-World AI | AI Podcast #73 with Lex Fridman", "query": "machine+learning"}
{"link": "/watch?v=o8f2w0Q0ME4", "title": "Statistics for Machine Learning | Statistics Class 10 | Statistics for Data Science | Full Course", "query": "machine+learning"}
{"link": "/watch?v=1LJgkovowgA", "title": "Coronavirus Deep Learning Competition", "query": "machine+learning"}
{"link": "/watch?v=5g1eXmQtl0E", "title": "What Are GANs? | Generative Adversarial Networks Explained | Deep Learning With Python | Edureka", "query": "machine+learning"}
{"link": "/watch?v=Ow25mjFjSmg", "title": "Complete Statistical Theory of Learning (Vladimir Vapnik) | MIT Deep Learning Series", "query": "machine+learning"}
{"link": "/watch?v=RnFGwxJwx-0", "title": "Machine Learning with Python | Machine Learning Tutorial for Beginners | Machine Learning Tutorial", "query": "machine+learning"}
{"link": "/watch?v=R8mDmURr0As", "title": "Machine Learning for Autonomous Vehicle Perception at Cruise", "query": "machine+learning"}
{"link": "/watch?v=G6PtQis8GDo", "title": "Cheapest Deep Learning PC in 2020", "query": "machine+learning"}
{"link": "/watch?v=l82PxsKHxYc", "title": "Barack Obama: Intro to Deep Learning | MIT 6.S191", "query": "machine+learning"}
{"link": "/watch?v=ojCLoyYH6ww", "title": "What Do Machine Learning Engineers Do? ($146,085 Average Salary).", "query": "machine+learning"}
{"link": "/watch?v=njKP3FqW3Sk", "title": "MIT Introduction to Deep Learning | 6.S191", "query": "machine+learning"}
{"link": "/watch?v=MdaDiN4olEY", "title": "Deep Learning Essentials l UMontrealX on edX.org", "query": "machine+learning"}
{"link": "/watch?v=WbLQqPw_n88", "title": "Efficient Computing for Deep Learning, Robotics, and AI (Vivienne Sze) | MIT Deep Learning Series", "query": "machine+learning"}
{"link": "/watch?v=_ZjIv2D6T40", "title": "[L\u1eadp tr\u00ecnh Machine learning c\u01a1 b\u1ea3n] - B\u00e0i 1: Gi\u1edbi thi\u1ec7u Machine learning | HowKteam", "query": "machine+learning"}
{"link": "/watch?v=4zrU54VIK6k", "title": "Privacy Preserving AI (Andrew Trask) | MIT Deep Learning Series", "query": "machine+learning"}
{"link": "/watch?v=c2lhDGiylwo", "title": "\u0e2a\u0e2d\u0e19 Python & Machine Learning \u0e40\u0e1a\u0e37\u0e49\u0e2d\u0e07\u0e15\u0e49\u0e19 \u0e15\u0e2d\u0e19\u0e17\u0e35\u0e48 1 - \u0e23\u0e39\u0e49\u0e08\u0e31\u0e01\u0e01\u0e31\u0e1a Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=UwwBG-MbniY", "title": "Daniel Kahneman: Thinking Fast and Slow, Deep Learning, and AI | Artificial Intelligence Podcast", "query": "machine+learning"}
{"link": "/watch?v=YW_fFBH6750", "title": "Reliable Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=i0Vt7l3XrIU", "title": "Kart Racing Game with Machine Learning in Unity! (Tutorial)", "query": "machine+learning"}
{"link": "/watch?v=0VH1Lim8gL8", "title": "Deep Learning State of the Art (2020) | MIT Deep Learning Series", "query": "machine+learning"}
{"link": "/watch?v=1VSZtNYMntM", "title": "Mathematics for Machine Learning [Full Course] | Essential Math for Machine Learning | Edureka", "query": "machine+learning"}
{"link": "/watch?v=kryIBKPVZ7A", "title": "O que \u00e9 Deep Learning? #HipstersPontoTube", "query": "machine+learning"}
{"link": "/watch?v=5bSAipCNqXo", "title": "\"PyTorch: A Modern Library for Machine Learning\" with Adam Paszke", "query": "machine+learning"}
{"link": "/watch?v=qPwPyIxQ8JY", "title": "Addressing Digital Implementation Challenges with Innovative Machine Learning Techniques \u2014 Cadence", "query": "machine+learning"}
{"link": "/watch?v=ArygUBY0QXw", "title": "Episode 1.1: Intro and building a machine learning framework", "query": "machine+learning"}
{"link": "/watch?v=QIUxPv5PJOY", "title": "Stock Price Prediction Using Python & Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=UwsrzCVZAb8", "title": "How Far is Too Far? | The Age of A.I.", "query": "machine+learning"}
{"link": "/watch?v=gsv1OsCEad0", "title": "How Machine Learning Drives the Deceptive World of Deepfakes", "query": "machine+learning"}
{"link": "/watch?v=zNhTOPQeRaU", "title": "Machine Learning Tutorial | Learn Machine Learning | Intellipaat", "query": "machine+learning"}
{"link": "/watch?v=xldc7DOvZ80", "title": "Shallow Learning vs Deep Learning | Nishant Kasibhatla", "query": "machine+learning"}
{"link": "/watch?v=6doVut0pjJM", "title": "How Machine Learning Makes Our Decisions Smarter", "query": "machine+learning"}
{"link": "/watch?v=FtUbMG3rlFs", "title": "Yoshua Bengio | From System 1 Deep Learning to System 2 Deep Learning | NeurIPS 2019", "query": "machine+learning"}
{"link": "/watch?v=jmVPLwjm_zs", "title": "Chris Davis, Machine Learning Use Cases for Cybersecurity | KringleCon 2019", "query": "machine+learning"}
{"link": "/watch?v=Eim_0jCQW_g", "title": "The Alchemy and Science of Machine Learning for Games", "query": "machine+learning"}
{"link": "/watch?v=3my6NYehpNU", "title": "Master of Machine learning and Data Science - Imperial College London", "query": "machine+learning"}
{"link": "/watch?v=AXgjEW2nA9I", "title": "The 10 Best Examples Of Artificial Intelligence (AI) And Machine Learning In Practice", "query": "machine+learning"}
{"link": "/watch?v=UhVn2WrzMnI", "title": "Unsupervised Learning | Clustering and Association Algorithms in Machine Learning | @edureka!", "query": "machine+learning"}
{"link": "/watch?v=lD4nwMomrF0", "title": "Tiny Sorter: A fun starter project with Arduino + machine learning", "query": "machine+learning"}
{"link": "/watch?v=OeU5m6vRyCk", "title": "AI: What is Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=vP06aMoz4v8", "title": "Machine Learning Fundamentals: Sensitivity and Specificity", "query": "machine+learning"}
{"link": "/watch?v=cMscNuSUy0I", "title": "Noam Chomsky: Language, Cognition, and Deep Learning | Artificial Intelligence (AI) Podcast", "query": "machine+learning"}
{"link": "/watch?v=asDixH06s28", "title": "Best Laptop for Machine Learning and Deep Learning | Machine Learning Training | Edureka", "query": "machine+learning"}
{"link": "/watch?v=lEZPfmGCEk0", "title": "Gilbert Strang: Linear Algebra, Deep Learning, Teaching, and MIT OpenCourseWare | AI Podcast", "query": "machine+learning"}
{"link": "/watch?v=WFr2WgN9_xE", "title": "Python Machine Learning & AI Mega Course - Learn 4 Different Areas of ML & AI", "query": "machine+learning"}
{"link": "/watch?v=S-MbpQiwfls", "title": "Reinforcement Learning with TensorFlow and Unity - Pittsburgh ML Summit \u201819", "query": "machine+learning"}
{"link": "/watch?v=23Q7HciuVyM", "title": "Nazirini\u2019s story - using machine learning to tackle crop disease", "query": "machine+learning"}
{"link": "/watch?v=JyGGMyR3x5I", "title": "Machine Learning: Tutorial pr\u00e1tico usando apenas o navegador (\u00e9 sensacional!!!)", "query": "machine+learning"}
{"link": "/watch?v=WxsZJ0idu-k", "title": "Researchers convert 2D images into 3D using deep learning", "query": "machine+learning"}
{"link": "/watch?v=fMwq9Xa2v2Y", "title": "Digital Domain Brings Virtual Humans To Life With Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=X7GR4ANn45s", "title": "What is Azure Machine Learning service and how data scientists use it", "query": "machine+learning"}
{"link": "/watch?v=__ByCy0PKKI", "title": "Machine Learning App Examples", "query": "machine+learning"}
{"link": "/watch?v=D9e0McRUhvA", "title": "This Guy Made a Machine Learning RuneScape PVP Bot", "query": "machine+learning"}
{"link": "/watch?v=QpMsT0WuIuI", "title": "Build A Smart AI Chat Bot Using Python & Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=uGYJuOyIvzs", "title": "Powered by TensorFlow: Helping doctors detect respiratory diseases using machine learning", "query": "machine+learning"}
{"link": "/watch?v=sgCGHBek1To", "title": "How machine learning is being used to help save the world\u2019s bees", "query": "machine+learning"}
{"link": "/watch?v=d4PPMpdUCz8", "title": "Unified Approach to Interpret Machine Learning Model SHAP + LIME - Layla Yang (Data bricks)", "query": "machine+learning"}
{"link": "/watch?v=ve-Tj7kUemg", "title": "Deep Learning Full Course | Deep Learning Tutorial | Learn Deep Learning From Scratch | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=fB7nyxXaczY", "title": "Interview With My Brother Who Sold His Startup For $60 Million | Machine Learning Engineer", "query": "machine+learning"}
{"link": "/watch?v=IXotICNx2qk", "title": "Is Optimization the Right Language to Understand Deep Learning? - Sanjeev Arora", "query": "machine+learning"}
{"link": "/watch?v=Yd6HNZnqjis", "title": "Scalable and Robust Multi-Agent Reinforcement Learning", "query": "machine+learning"}
{"link": "/watch?v=7EpQsB225vs", "title": "Deep Learning // Dicion\u00e1rio do Programador", "query": "machine+learning"}
{"link": "/watch?v=WGza-jN4CZs", "title": "RI Seminar : Pieter Abbeel : Deep Learning for Robotics", "query": "machine+learning"}
{"link": "/watch?v=nIgIv4IfJ6s", "title": "Reinforcement Learning: Crash Course AI#9", "query": "machine+learning"}
{"link": "/watch?v=XHyASP49ses", "title": "Jeremy Howard: Deep Learning Frameworks - TensorFlow, PyTorch, fast.ai | AI Podcast Clips", "query": "machine+learning"}
{"link": "/watch?v=oKHOSqQw9ro", "title": "Si quiero dedicarme al Machine Learning, \u00bfqu\u00e9 cursos debo hacer y en qu\u00e9 orden?", "query": "machine+learning"}
{"link": "/watch?v=vNOTDn3D_RI", "title": "Gary Marcus: Toward a Hybrid of Deep Learning and Symbolic AI | Artificial Intelligence (AI) Podcast", "query": "machine+learning"}
{"link": "/watch?v=nl7kDPYD20A", "title": "How to Get Started with Machine Learning & AI", "query": "machine+learning"}
{"link": "/watch?v=iAbhu1DN1n0", "title": "Best Laptop Configuration For Learning Machine Learning and Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=9j-_dOze4IM", "title": "Training Model - Deep Learning and Neural Networks with Python and Pytorch p.4", "query": "machine+learning"}
{"link": "/watch?v=BOhgGA7Eu5E", "title": "Machine Learning Projects for Beginners (Datasets Included)", "query": "machine+learning"}
{"link": "/watch?v=i2yPxY2rOzs", "title": "Data - Deep Learning and Neural Networks with Python and Pytorch p.2", "query": "machine+learning"}
{"link": "/watch?v=BzcBsTou0C0", "title": "Introduction - Deep Learning and Neural Networks with Python and Pytorch p.1", "query": "machine+learning"}
{"link": "/watch?v=GwIo3gDZCVQ", "title": "Machine Learning Full Course - Learn Machine Learning 10 Hours | Machine Learning Tutorial | Edureka", "query": "machine+learning"}
{"link": "/watch?v=uoifG7TgF2k", "title": "How Did I Learn Machine Learning in 3 Months", "query": "machine+learning"}
{"link": "/watch?v=Bo8MY4JpiXE", "title": "Fran\u00e7ois Chollet: Keras, Deep Learning, and the Progress of AI | Artificial Intelligence Podcast", "query": "machine+learning"}
{"link": "/watch?v=Bi7f1JSSlh8", "title": "Most Research in Deep Learning is a Total Waste of Time - Jeremy Howard | AI Podcast Clips", "query": "machine+learning"}
{"link": "/watch?v=DooxDIRAkPA", "title": "Deep Learning Full Course - Learn Deep Learning in 6 Hours | Deep Learning Tutorial | Edureka", "query": "machine+learning"}
{"link": "/watch?v=c0gpgCyjTM8", "title": "Reinforcement Learning for Trading Practical Examples and Lessons Learned by Dr. Tom Starke", "query": "machine+learning"}
{"link": "/watch?v=82KLS2C_gNQ", "title": "FORMATION PYTHON MACHINE LEARNING (2020) (1/30)", "query": "machine+learning"}
{"link": "/watch?v=SGSOCuByo24", "title": "Yann LeCun: Deep Learning, Convolutional Neural Networks, and Self-Supervised Learning | AI Podcast", "query": "machine+learning"}
{"link": "/watch?v=KNAWp2S3w94", "title": "Intro to Machine Learning (ML Zero to Hero - Part 1)", "query": "machine+learning"}
{"link": "/watch?v=9f-GarcDY58", "title": "Machine Learning Full Course | Learn Machine Learning | Machine Learning Tutorial | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=J6XcP4JOHmk", "title": "Jeremy Howard: fast.ai Deep Learning Courses and Research | Artificial Intelligence (AI) Podcast", "query": "machine+learning"}
{"link": "/watch?v=oV3ZY6tJiA0", "title": "Neural Networks and Deep Learning: Crash Course AI #3", "query": "machine+learning"}
{"link": "/watch?v=ccZ2pyr3YDw", "title": "Qual a diferen\u00e7a entre Intelig\u00eancia Artificial, Machine Learning, Data Science, Deep Learning, etc?", "query": "machine+learning"}
{"link": "/watch?v=VMp6pq6_QjI", "title": "AI Learns to Park - Deep Reinforcement Learning", "query": "machine+learning"}
{"link": "/watch?v=7R08MPXxiFQ", "title": "These books will help you learn machine learning", "query": "machine+learning"}
{"link": "/watch?v=g1VeElBAeas", "title": "Google \"Machine Learning Fairness\" Whistleblower Goes Public, says: \"burden lifted off of my soul\"", "query": "machine+learning"}
{"link": "/watch?v=kZwSqZuBMGg", "title": "Linear Algebra for Beginners | Linear algebra for machine learning", "query": "machine+learning"}
{"link": "/watch?v=1BneqPdEhMM", "title": "Machine Learning 101: Intro To Neural Networks (NVIDIA Jetson Nano Review and Setup)", "query": "machine+learning"}
{"link": "/watch?v=EjbHXMzeX4c", "title": "Machine Learning for Kids", "query": "machine+learning"}
{"link": "/watch?v=oLTNtvIHJ7M", "title": "Crowdsource by Google: Building better products for everyone with machine learning", "query": "machine+learning"}
{"link": "/watch?v=bW8b1gWMaJk", "title": "How Machine Learning Kept Out the Cat", "query": "machine+learning"}
{"link": "/watch?v=iCbks6Q-xfM", "title": "Brasileiro programa Intelig\u00eancia Artificial que aprende a DIRIGIR SOZINHA!!! [Machine Learning]", "query": "machine+learning"}
{"link": "/watch?v=FGfx8CQHdQA", "title": "JuliaCon 2019 | Scientific AI: Domain Models with Integrated Machine Learning | Chris Rackauckas", "query": "machine+learning"}
{"link": "/watch?v=GJJc1t0rtSU", "title": "Deep Reinforcement Learning in Python Tutorial - A Course on How to Implement Deep Learning Papers", "query": "machine+learning"}
{"link": "/watch?v=l05OHGUyK-E", "title": "Data Scientist vs. Machine Learning Engineer. Who Has a Cooler Job?", "query": "machine+learning"}
{"link": "/watch?v=6bFN2YkN6bo", "title": "Fake Voice Text to Speech Deep Learning ft. Elon Musk, Trump, Obama, and Joe Rogan", "query": "machine+learning"}
{"link": "/watch?v=mB7fdy67eFw", "title": "Classify Images Using Python & Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=YQpTlnWYAqE", "title": "Researchers Are Using Machine Learning to Screen for Autism in Children", "query": "machine+learning"}
{"link": "/watch?v=PmlRbfSavbI", "title": "Stealing Baseball Signs with a Phone (Machine Learning)", "query": "machine+learning"}
{"link": "/watch?v=4u8FxNEDUeg", "title": "Lesson 8 (2019) - Deep Learning from the Foundations", "query": "machine+learning"}
{"link": "/watch?v=3TqN_M1L4ts", "title": "Lesson 13 (2019) - Basics of Swift for Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=a-IYqSw5ISs", "title": "i left my machine learning job", "query": "machine+learning"}
{"link": "/watch?v=t3fbETsIBCY", "title": "Deep Q Learning w/ DQN - Reinforcement Learning p.5", "query": "machine+learning"}
{"link": "/watch?v=ZJixNvx9BAc", "title": "Machine Learning: Living in the Age of AI | A WIRED Film", "query": "machine+learning"}
{"link": "/watch?v=wD5lpZI6jeY", "title": "As TOP 5 Linguagens para INTELIG\u00caNCIA ARTIFICIAL e MACHINE LEARNING (2019) // Vlog #97", "query": "machine+learning"}
{"link": "/watch?v=EUD07IiviJg", "title": "FORMATION MACHINE LEARNING (2019) - ML#1", "query": "machine+learning"}
{"link": "/watch?v=mITml5ZpqM8", "title": "Optimal transport for machine learning - Gabriel Peyre, Ecole Normale Superieure", "query": "machine+learning"}
{"link": "/watch?v=EqLBAmtKMnQ", "title": "Feature Selection Techniques Easily Explained | Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=YlGEQyEM_a8", "title": "Types of Machine Learning 1", "query": "machine+learning"}
{"link": "/watch?v=4dwsSz_fNSQ", "title": "Supervised, Unsupervised and Reinforcement Learning in Artificial Intelligence in Hindi", "query": "machine+learning"}
{"link": "/watch?v=-yJgBwYPqew", "title": "Can deep learning predict the stock market?", "query": "machine+learning"}
{"link": "/watch?v=6M5VXKLf4D4", "title": "Deep Learning In 5 Minutes | What Is Deep Learning? | Deep Learning Explained Simply | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=JMUxmLyrhSk", "title": "Artificial Intelligence Full Course | Artificial Intelligence Tutorial for Beginners | Edureka", "query": "machine+learning"}
{"link": "/watch?v=38SUUaMX5Rg", "title": "Machine Learning Algorithm- Which one to choose for your Problem?", "query": "machine+learning"}
{"link": "/watch?v=yMk_XtIEzH8", "title": "Q Learning Intro/Table - Reinforcement Learning p.1", "query": "machine+learning"}
{"link": "/watch?v=wypVcNIH6D4", "title": "Python Chat Bot Tutorial - Chatbot with Deep Learning (Part 1)", "query": "machine+learning"}
{"link": "/watch?v=z5M4otA4S3A", "title": "The Power of Swift for Machine Learning (TensorFlow Meets)", "query": "machine+learning"}
{"link": "/watch?v=YlGEQyEM_a8", "title": "Types of Machine Learning 1", "query": "machine+learning"}
{"link": "/watch?v=4dwsSz_fNSQ", "title": "Supervised, Unsupervised and Reinforcement Learning in Artificial Intelligence in Hindi", "query": "machine+learning"}
{"link": "/watch?v=-yJgBwYPqew", "title": "Can deep learning predict the stock market?", "query": "machine+learning"}
{"link": "/watch?v=6M5VXKLf4D4", "title": "Deep Learning In 5 Minutes | What Is Deep Learning? | Deep Learning Explained Simply | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=JMUxmLyrhSk", "title": "Artificial Intelligence Full Course | Artificial Intelligence Tutorial for Beginners | Edureka", "query": "machine+learning"}
{"link": "/watch?v=38SUUaMX5Rg", "title": "Machine Learning Algorithm- Which one to choose for your Problem?", "query": "machine+learning"}
{"link": "/watch?v=yMk_XtIEzH8", "title": "Q Learning Intro/Table - Reinforcement Learning p.1", "query": "machine+learning"}
{"link": "/watch?v=wypVcNIH6D4", "title": "Python Chat Bot Tutorial - Chatbot with Deep Learning (Part 1)", "query": "machine+learning"}
{"link": "/watch?v=aJGnJ2QvMI8", "title": "\ud83d\udc68\u200d\ud83c\udfeb One Day in Life as a Coach for a Machine Learning Hackathon at SAP Co-Innovation Lab", "query": "machine+learning"}
{"link": "/watch?v=z5M4otA4S3A", "title": "The Power of Swift for Machine Learning (TensorFlow Meets)", "query": "machine+learning"}
{"link": "/watch?v=QR_LQQ-vvko", "title": "Platform Overview - Machine Learning (Google Cloud Essentials)", "query": "machine+learning"}
{"link": "/watch?v=ELE2_Mftqoc", "title": "Reinforcement Learning Course - Full Machine Learning Tutorial", "query": "machine+learning"}
{"link": "/watch?v=4MKAf6YX_7M", "title": "a Eurovision song created by Artificial Intelligence: Blue Jeans and Bloody Tears", "query": "machine+learning"}
{"link": "/watch?v=sucqskXRkss", "title": "Ian Goodfellow: Adversarial Machine Learning (ICLR 2019 invited talk)", "query": "machine+learning"}
{"link": "/watch?v=MmSXHCxDwBs", "title": "Python para Machine Learning (Curso - Aula 1)", "query": "machine+learning"}
{"link": "/watch?v=xsnVlMWQj8o", "title": "How to Spec a Deep learning PC | 2019 PC Buying Guide", "query": "machine+learning"}
{"link": "/watch?v=6CwzDoE8J4M", "title": "Machine Learning Fairness: Lessons Learned (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=VwVg9jCtqaU", "title": "Machine Learning Zero to Hero (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=89BGjQYA0uE", "title": "Federated Learning: Machine Learning on Decentralized Data (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=z7LyERPn0o4", "title": "Learn Deep Learning Online from IBM", "query": "machine+learning"}
{"link": "/watch?v=rP8CGyDbxBY", "title": "Deep Learning to Solve Challenging Problems (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=pM9u9xcM_cs", "title": "Music and Machine Learning (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=QwHD36bhXZA", "title": "ML Kit: Machine Learning for Mobile with Firebase (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=D7ZL45xS39I", "title": "Machine Learning Magic for Your JavaScript Application (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=YzD7Z2yRL7Y", "title": "ISSCC 2019: Deep Learning Hardware: Past, Present, and Future - Yann LeCun", "query": "machine+learning"}
{"link": "/watch?v=wpKJpeOy-68", "title": "What\u2019s New in Android Machine Learning (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=_RPHiqF2bSs", "title": "Live Coding A Machine Learning Model from Scratch (Google I/O'19)", "query": "machine+learning"}
{"link": "/watch?v=wpQiEHYkBys", "title": "Machine Learning Model Evaluation Metrics", "query": "machine+learning"}
{"link": "/watch?v=tXVNS-V39A0", "title": "TensorFlow In 10 Minutes | TensorFlow Tutorial For Beginners | Deep Learning & TensorFlow | Edureka", "query": "machine+learning"}
{"link": "/watch?v=XXtpJxZBa2c", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 8 \u2013 Translation, Seq2Seq, Attention", "query": "machine+learning"}
{"link": "/watch?v=-8yYFdV5SOc", "title": "Michael I. Jordan: Machine Learning: Dynamical, Stochastic & Economic Perspectives", "query": "machine+learning"}
{"link": "/watch?v=UowTDpAOi9U", "title": "Usando Machine Learning com Power BI - Python e R", "query": "machine+learning"}
{"link": "/watch?v=BRUlSm4gdQ4", "title": "The 7 Reasons Most Machine Learning Funds Fail Marcos Lopez de Prado from QuantCon 2018", "query": "machine+learning"}
{"link": "/watch?v=cC8A5VmEVtg", "title": "How I Started a Career in Machine Learning - No PHD Required", "query": "machine+learning"}
{"link": "/watch?v=Iuz_jc96bQk", "title": "O que \u00e9 Machine Learning? #HipstersPontoTube", "query": "machine+learning"}
{"link": "/watch?v=3wWZBGN-iX8", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 20 \u2013 Future of NLP + Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=HpxIBKXWn6I", "title": "DS9 Remastered with Machine Learning? | 4K Comparison Trailer", "query": "machine+learning"}
{"link": "/watch?v=9QErWiClGjM", "title": "What\u2019s The Difference Between Artificial Intelligence And Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=sqs8DxGhwM8", "title": "COMMENT FONCTIONNE LE MACHINE LEARNING ?", "query": "machine+learning"}
{"link": "/watch?v=Fv_LGQKgWi0", "title": "Bayes Theorem Explained with Solved Example in Hindi ll Machine Learning Course", "query": "machine+learning"}
{"link": "/watch?v=hjh1ikznScg", "title": "Machine Learning Basics | What Is Machine Learning? | Introduction To Machine Learning | Edureka", "query": "machine+learning"}
{"link": "/watch?v=E3f2Camj0Is", "title": "Stanford CS234: Reinforcement Learning | Winter 2019 | Lecture 2 - Given a Model of the World", "query": "machine+learning"}
{"link": "/watch?v=FgzM3zpZ55o", "title": "Stanford CS234: Reinforcement Learning | Winter 2019 | Lecture 1 - Introduction", "query": "machine+learning"}
{"link": "/watch?v=UAfqE7ctcgs", "title": "Artificial Intelligence Robots Development Until 2019 - Machine Learning Robot Ep. 06", "query": "machine+learning"}
{"link": "/watch?v=kAIdSThbKnE", "title": "Machine Learning PREREQuisites | what to learn first", "query": "machine+learning"}
{"link": "/watch?v=HnKaaDcWOXw", "title": "Why I Don't Like Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=5vcj8kSwBCY", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 14 \u2013 Transformers and Self-Attention", "query": "machine+learning"}
{"link": "/watch?v=QEw0qEa0E50", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 7 \u2013 Vanishing Gradients, Fancy RNNs", "query": "machine+learning"}
{"link": "/watch?v=PySo_6S4ZAg", "title": "Stanford CS230: Deep Learning | Autumn 2018 | Lecture 1 - Class Introduction and Logistics", "query": "machine+learning"}
{"link": "/watch?v=AwQHqWyHRpU", "title": "Stanford CS230: Deep Learning | Autumn 2018 | Lecture 2 - Deep Learning Intuition", "query": "machine+learning"}
{"link": "/watch?v=ulLx2iPTIcs", "title": "MIT 6.S191 (2019): Visualization for Machine Learning (Google Brain)", "query": "machine+learning"}
{"link": "/watch?v=p5U4NgVGAwg", "title": "GauGAN: Changing Sketches into Photorealistic Masterpieces", "query": "machine+learning"}
{"link": "/watch?v=kEMJRjEdNzM", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 2 \u2013 Word Vectors and Word Senses", "query": "machine+learning"}
{"link": "/watch?v=nC9_RfjYwqA", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 5 \u2013 Dependency Parsing", "query": "machine+learning"}
{"link": "/watch?v=8rXD5-xhemo", "title": "Stanford CS224N: NLP with Deep Learning | Winter 2019 | Lecture 1 \u2013 Introduction and Word Vectors", "query": "machine+learning"}
{"link": "/watch?v=vZDDmULsCUU", "title": "Feature Selection Techniques Explained with Examples in Hindi ll Machine Learning Course", "query": "machine+learning"}
{"link": "/watch?v=83x5X66uWK0", "title": "Basics Of Principal Component Analysis Explained in Hindi ll Machine Learning Course", "query": "machine+learning"}
{"link": "/watch?v=-TTziY7EmUA", "title": "Reinforcement Learning in TensorFlow with TF-Agents (TF Dev Summit '19)", "query": "machine+learning"}
{"link": "/watch?v=3EoRJR9kxAw", "title": "Best Resources for Learning Machine Learning? What Is ML Anyway? Q&A with ML Engineers!", "query": "machine+learning"}
{"link": "/watch?v=tPb2u9kwh2w", "title": "Powered by TensorFlow: Airbnb uses machine learning to help categorize its listing photos", "query": "machine+learning"}
{"link": "/watch?v=MD3R9yatou0", "title": "Self-Studying Machine Learning? Remind yourself of these 6 things", "query": "machine+learning"}
{"link": "/watch?v=iyjwXDDO6J0", "title": "Luis Serrano - Machine learning and math made easy", "query": "machine+learning"}
{"link": "/watch?v=-DEL6SVRPw0", "title": "Machine Learning In 5 Minutes | Machine Learning Introduction |What Is Machine Learning |Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=_uQrJ0TkZlc", "title": "Python Tutorial for Beginners [Full Course] Learn Python for Web Development", "query": "machine+learning"}
{"link": "/watch?v=Y4qO9unerGs", "title": "Introduction To Machine Learning ll Machine Learning Course Explained With RealLife Examples (Hindi)", "query": "machine+learning"}
{"link": "/watch?v=AIpXjFwVdIE", "title": "How Google Translate Works - The Machine Learning Algorithm Explained!", "query": "machine+learning"}
{"link": "/watch?v=i6Mi2_QM3rA", "title": "MIT 6.S191 (2019): Deep Reinforcement Learning", "query": "machine+learning"}
{"link": "/watch?v=5v1JnYv_yWs", "title": "MIT 6.S191 (2019): Introduction to Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=0cSFjaXMHpM", "title": "Data Science vs Machine Learning \u2013 What\u2019s The Difference? | Data Science Course | Edureka", "query": "machine+learning"}
{"link": "/watch?v=WNvOtwP_yf4", "title": "Making Friends with Machine Learning: Regression", "query": "machine+learning"}
{"link": "/watch?v=CNuI8OWsppg", "title": "Applied Deep Learning with PyTorch - Full Course", "query": "machine+learning"}
{"link": "/watch?v=1_c_MA1F-vU", "title": "Redes Neurais e Machine Learning | Nerdologia Tech", "query": "machine+learning"}
{"link": "/watch?v=xtOg44r6dsE", "title": "Supervised vs Unsupervised vs Reinforcement Learning | Data Science Certification Training | Edureka", "query": "machine+learning"}
{"link": "/watch?v=gJo0uNL-5Qw", "title": "Machine Learning Tutorial Python 12 - K Fold Cross Validation", "query": "machine+learning"}
{"link": "/watch?v=CJKnDu2dxOE", "title": "Lesson 5: Deep Learning 2019 - Back propagation; Accelerated SGD; Neural net from scratch", "query": "machine+learning"}
{"link": "/watch?v=zR11FLZ-O9M", "title": "MIT 6.S091: Introduction to Deep Reinforcement Learning (Deep RL)", "query": "machine+learning"}
{"link": "/watch?v=1RiFIYwuwHM", "title": "Is this the BEST BOOK on Machine Learning? Hands On Machine Learning Review", "query": "machine+learning"}
{"link": "/watch?v=SJldOOs4vB8", "title": "Deep Learning Frameworks 2019", "query": "machine+learning"}
{"link": "/watch?v=45ryDIPHdGg", "title": "Python Machine Learning Tutorial #2 - Linear Regression p.1", "query": "machine+learning"}
{"link": "/watch?v=53YvP6gdD7U", "title": "Deep Learning State of the Art (2019) - MIT", "query": "machine+learning"}
{"link": "/watch?v=ujTCoH21GlA", "title": "Python Machine Learning Tutorial #1 - Introduction", "query": "machine+learning"}
{"link": "/watch?v=NOHLENkL8oE", "title": "How machine learning helps identify potholes on Los Angeles roads", "query": "machine+learning"}
{"link": "/watch?v=O5xeyoRL95U", "title": "MIT Deep Learning Basics: Introduction and Overview", "query": "machine+learning"}
{"link": "/watch?v=T03Fw1kj3B8", "title": "10 Machine Learning Interview Questions - ANSWERED", "query": "machine+learning"}
{"link": "/watch?v=D3fnGG7cdjY", "title": "Geometric Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=JdFw-kKfBzw", "title": "Unsupervised Machine Learning | Introduction to Machine Learning, Part 2", "query": "machine+learning"}
{"link": "/watch?v=0Lt9w-BxKFQ", "title": "Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python Tutorial | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=4kiHsIaK9_w", "title": "Andrew Ng on Building a Career in Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=YFScYAFfJEw", "title": "Masters In Artificial Intelligence, Machine Learning & Robotics | Prospect, Courses & Profiles", "query": "machine+learning"}
{"link": "/watch?v=AveBSbOuOOI", "title": "How machine learning helps scientists track asteroids", "query": "machine+learning"}
{"link": "/watch?v=Rt6beTKDtqY", "title": "The Mathematics of Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=rLZGVgqw5u4", "title": "Real Talk with Airbnb Machine Learning Engineer", "query": "machine+learning"}
{"link": "/watch?v=Gv9_4yMHFhI", "title": "A Gentle Introduction to Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=iOh7QUZGyiU", "title": "Deep Learning 1: Introduction to Machine Learning Based AI", "query": "machine+learning"}
{"link": "/watch?v=0EtD5ybnh_s", "title": "Language Learning with BERT - TensorFlow and Deep Learning Singapore", "query": "machine+learning"}
{"link": "/watch?v=JqcdEeu527M", "title": "Best Machine Learning Books", "query": "machine+learning"}
{"link": "/watch?v=YaKMeAlHgqQ", "title": "How do I select features for Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=EoYfa6mYOG4", "title": "Learn TensorFlow.js - Deep Learning and Neural Networks with JavaScript", "query": "machine+learning"}
{"link": "/watch?v=noj4X1ujIOs", "title": "Deep Learning:\u00a0How AI Works", "query": "machine+learning"}
{"link": "/watch?v=mrRfpiAwad0", "title": "7 Ways to Make Money with Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=jmLid2x9eKg", "title": "Supervised Machine Learning: Crash Course Statistics #36", "query": "machine+learning"}
{"link": "/watch?v=X_ZUyvAA9Qw", "title": "Cos'\u00e8 il Machine Learning (Reti Neurali e A.I.)", "query": "machine+learning"}
{"link": "/watch?v=40VZeFppDEM", "title": "Reinforcement Learning with Prediction-Based Rewards", "query": "machine+learning"}
{"link": "/watch?v=b3IyDNB_ciI", "title": "Why Deep Learning Now? | AI Revolution Documentary", "query": "machine+learning"}
{"link": "/watch?v=Kdsp6soqA7o", "title": "Machine Learning Fundamentals: The Confusion Matrix", "query": "machine+learning"}
{"link": "/watch?v=Hppc8LKw-OA", "title": "\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01 Machine Learning \u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e40\u0e1a\u0e37\u0e49\u0e2d\u0e07\u0e15\u0e49\u0e19", "query": "machine+learning"}
{"link": "/watch?v=SAfZaVpcnGM", "title": "Tonal Exercise System Uses Machine Learning For Home Fitness | NowThis", "query": "machine+learning"}
{"link": "/watch?v=wrBUkpiRvCA", "title": "Deep Q-Learning - Combining Neural Networks and Reinforcement Learning", "query": "machine+learning"}
{"link": "/watch?v=azOmzumh0vQ", "title": "Yoshua Bengio: Deep Learning | Artificial Intelligence (AI) Podcast", "query": "machine+learning"}
{"link": "/watch?v=ALQ_RNSRE40", "title": "How Machine Learning is Fighting Cancer", "query": "machine+learning"}
{"link": "/watch?v=QK_PP_2KgGE", "title": "OpenAI Gym and Python for Q-learning - Reinforcement Learning Code Project", "query": "machine+learning"}
{"link": "/watch?v=vKgnxf1NFB8", "title": "The Issue with Machine Learning in Finance", "query": "machine+learning"}
{"link": "/watch?v=mo96Nqlo1L8", "title": "Exploration vs. Exploitation - Learning the Optimal Reinforcement Learning Policy", "query": "machine+learning"}
{"link": "/watch?v=kyNbYCHFCSw", "title": "Deep Learning VM Images (AI Adventures)", "query": "machine+learning"}
{"link": "/watch?v=qhRNvCVVJaA", "title": "Q-Learning Explained - A Reinforcement Learning Technique", "query": "machine+learning"}
{"link": "/watch?v=tGyfmzuR4d4", "title": "Machine Learning is Just Mathematics! Free Machine Learning Resources", "query": "machine+learning"}
{"link": "/watch?v=DWsJc1xnOZo", "title": "Machine Learning Tutorial Part - 1 | Machine Learning Tutorial For Beginners Part - 1 | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=ukzFI9rgwfU", "title": "Machine Learning Basics | What Is Machine Learning? | Introduction To Machine Learning | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=VKnoyiNxflk", "title": "Machine Learning For Medical Image Analysis - How It Works", "query": "machine+learning"}
{"link": "/watch?v=kAL2CZ7pXm8", "title": "Can two high school students use machine learning to predict wildfires?", "query": "machine+learning"}
{"link": "/watch?v=EuBBz3bI-aA", "title": "Machine Learning Fundamentals: Bias and Variance", "query": "machine+learning"}
{"link": "/watch?v=Csa5R12jYRg", "title": "Tensors Explained - Data Structures of Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=kE5QZ8G_78c", "title": "Supervised and Unsupervised Learning In Machine Learning | Machine Learning Tutorial | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=6stDhEA0wFQ", "title": "CUDA Explained - Why Deep Learning uses GPUs", "query": "machine+learning"}
{"link": "/watch?v=xvdXi4ejk2w", "title": "Workshop Data & Machine Learning - L\u00e0m sao \u0111\u1ec3 b\u1eaft \u0111\u1ea7u?", "query": "machine+learning"}
{"link": "/watch?v=giF8XoPTMFg", "title": "C Programming for Machine Learning (LIVE)", "query": "machine+learning"}
{"link": "/watch?v=mhe5e2B9bL8", "title": "Machine Learning: como ensinar uma m\u00e1quina a aprender | Nerdologia Tech", "query": "machine+learning"}
{"link": "/watch?v=oQDeVVTzVPA", "title": "Makine \u00d6\u011frenmesi (Machine Learning) Hakk\u0131nda", "query": "machine+learning"}
{"link": "/watch?v=duZ7jor_YrU", "title": "Machine Learning in ArcGIS", "query": "machine+learning"}
{"link": "/watch?v=j-3vuBynnOE", "title": "Loading in your own data - Deep Learning basics with Python, TensorFlow and Keras p.2", "query": "machine+learning"}
{"link": "/watch?v=r0Ogt-q956I", "title": "Deep Learning: A Crash Course", "query": "machine+learning"}
{"link": "/watch?v=wQ8BIBpya2k", "title": "Deep Learning with Python, TensorFlow, and Keras tutorial", "query": "machine+learning"}
{"link": "/watch?v=-58kO_zYUGE", "title": "Machine Learning Course A To Z || Beginner to Advanced ML || Machine Learning Tutorial || Part 1", "query": "machine+learning"}
{"link": "/watch?v=-Lazy3r6FKk", "title": "My 5 favourite Coursera Courses for Python, Data Science and Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=fwY9Qv96DJY", "title": "Machine Learning Tutorial Python - 7: Training and Testing Data", "query": "machine+learning"}
{"link": "/watch?v=-cdxxrbKdho", "title": "Best Programming Languages for Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=JYMKEM5c7PU", "title": "Deep Learning Interview Questions And Answers | AI & Deep Learning Interview Questions | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=jmznx0Q1fP0", "title": "A Beginner's Guide to Machine Learning with ml5.js", "query": "machine+learning"}
{"link": "/watch?v=KfnhNlD8WZI", "title": "Machine Learning Tutorial Python - 5: Save Model Using Joblib And Pickle", "query": "machine+learning"}
{"link": "/watch?v=4wneZDEB3VA", "title": "Predictive Maintenance & Monitoring using Machine Learning: Demo & Case study (Cloud Next '18)", "query": "machine+learning"}
{"link": "/watch?v=WtbejUEcPaU", "title": "How To Get A Job in Machine Learning (No Degree Required $121k Salary)", "query": "machine+learning"}
{"link": "/watch?v=gmvvaobm7eQ", "title": "Machine Learning Tutorial Python -1: What is Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=E5RjzSK0fvY", "title": "Linear Regression Algorithm | Linear Regression in Python | Machine Learning Algorithm | Edureka", "query": "machine+learning"}
{"link": "/watch?v=dtFZrFKMiPI", "title": "Best Laptop for Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=uPSgfNhd2qY", "title": "Machine Learning Fundamentals for Cybersecurity Professionals", "query": "machine+learning"}
{"link": "/watch?v=GvQwE2OhL8I", "title": "Neural Networks Explained - Machine Learning Tutorial for Beginners", "query": "machine+learning"}
{"link": "/watch?v=YQjqLwJe3OI", "title": "Machine learning in action during drug discovery", "query": "machine+learning"}
{"link": "/watch?v=LhVY0-S7cAM", "title": "Machine Learning VS Deep Learning: [Whats The Difference]", "query": "machine+learning"}
{"link": "/watch?v=SV-cgdobtTA", "title": "Deep Learning in JS - Ashi Krishnan - JSConf EU 2018", "query": "machine+learning"}
{"link": "/watch?v=Uv2wb1Gyfns", "title": "Aula 3 - Introdu\u00e7\u00e3o ao R e Python com foco em machine learning", "query": "machine+learning"}
{"link": "/watch?v=Q6ERFwQNkzo", "title": "MACHINE LEARNING and AUGMENTED REALITY", "query": "machine+learning"}
{"link": "/watch?v=VCJdg7YBbAQ", "title": "Logistic Regression in Python | Logistic Regression Example | Machine Learning Algorithms | Edureka", "query": "machine+learning"}
{"link": "/watch?v=1XqG0kaJVHY", "title": "K Means Clustering Algorithm | K Means Example in Python | Machine Learning Algorithms | Edureka", "query": "machine+learning"}
{"link": "/watch?v=t1A3NTttvBA", "title": "TensorFlow and deep reinforcement learning, without a PhD (Google I/O '18)", "query": "machine+learning"}
{"link": "/watch?v=Z-dqGRSsaBs", "title": "ML Kit: Machine Learning SDK for mobile developers (Google I/O '18)", "query": "machine+learning"}
{"link": "/watch?v=JzB7yS9t1YE", "title": "Bringing AI and machine learning innovations to healthcare (Google I/O '18)", "query": "machine+learning"}
{"link": "/watch?v=Oc_QMQ4QHcw", "title": "Tania\u2019s Story: Morse code meets machine learning", "query": "machine+learning"}
{"link": "/watch?v=bn8rVBuIcFg", "title": "Introduction to Forecasting in Machine Learning and Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=LSbceOWZvJg", "title": "The Convergence of Blockchain, Machine Learning, and the Cloud | Steve Lund | TEDxBYU", "query": "machine+learning"}
{"link": "/watch?v=w-8MTXT_N6A", "title": "Deep Learning Vs Machine Learning | AI Vs Machine Learning Vs Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=bn8rVBuIcFg", "title": "Introduction to Forecasting in Machine Learning and Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=LSbceOWZvJg", "title": "The Convergence of Blockchain, Machine Learning, and the Cloud | Steve Lund | TEDxBYU", "query": "machine+learning"}
{"link": "/watch?v=w-8MTXT_N6A", "title": "Deep Learning Vs Machine Learning | AI Vs Machine Learning Vs Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=fSytzGwwBVw", "title": "Machine Learning Fundamentals: Cross Validation", "query": "machine+learning"}
{"link": "/watch?v=aPfkYu_qiF4", "title": "Deep Learning - Course Introduction", "query": "machine+learning"}
{"link": "/watch?v=FbxTVRfQFuI", "title": "What is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutorial | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=9Mz84cwVmS0", "title": "Detecting cancer in real-time with machine learning", "query": "machine+learning"}
{"link": "/watch?v=6iVUKYgOihQ", "title": "DIFERENCIA ENTRE INTELIGENCIA ARTIFICIAL - MACHINE LEARNING - DEEP LEARNING", "query": "machine+learning"}
{"link": "/watch?v=5HWveDdrosk", "title": "Big Data Analytics using Python and Apache Spark | Machine Learning Tutorial", "query": "machine+learning"}
{"link": "/watch?v=HHqlEnoGk54", "title": "INTRODUCCI\u00d3N A MCHINE LEARNING | #1 Curso de Introducci\u00f3n a Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=vG8etlO2uq8", "title": "Machine Learning and Data Science", "query": "machine+learning"}
{"link": "/watch?v=XL07WEc2TRI", "title": "Stanford Seminar - Information Theory of Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=JgvyzIkgxF0", "title": "An introduction to Reinforcement Learning", "query": "machine+learning"}
{"link": "/watch?v=WSbgixdC9g8", "title": "AI vs Machine Learning vs Deep Learning | Machine Learning Training with Python | Edureka", "query": "machine+learning"}
{"link": "/watch?v=6Hm1pNqQxq0", "title": "Machine Learning Vs Artificial Intelligence? Same or Different?", "query": "machine+learning"}
{"link": "/watch?v=hB1CTizqGFk", "title": "Machine Learning Interview Questions And Answers | Data Science Interview Questions | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=NUXdtN1W1FE", "title": "Linear Regression Analysis | Linear Regression in Python | Machine Learning Algorithms | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=I7NrVwm3apg", "title": "Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algorithms | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=8_9v3_iiUHs", "title": "\u00bfQu\u00e9 es machine learning?", "query": "machine+learning"}
{"link": "/watch?v=RmajweUFKvM", "title": "Decision Tree Algorithm With Example | Decision Tree In Machine Learning | Data Science |Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=8onB7rPG4Pk", "title": "Mathematics of Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=iTXU9Z0NYoU", "title": "Making music using new sounds generated with machine learning", "query": "machine+learning"}
{"link": "/watch?v=eM4uJ6XGnSM", "title": "Random Forest Algorithm - Random Forest Explained | Random Forest in Machine Learning | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=x7psGHgatGM", "title": "NIPS 2017 Test of Time Award \"Machine learning has become alchemy.\u201d | Ali Rahimi, Google", "query": "machine+learning"}
{"link": "/watch?v=SLBqVOnn9Mo", "title": "Identifying art through machine learning at MoMA", "query": "machine+learning"}
{"link": "/watch?v=PWeCY_HJDGY", "title": "Putting Machine Learning to work for culture #GoogleArts", "query": "machine+learning"}
{"link": "/watch?v=Cr6VqTRO1v0", "title": "Learn Machine Learning in 3 Months (with curriculum)", "query": "machine+learning"}
{"link": "/watch?v=Q59X518JZHE", "title": "Machine Learning With Python | Machine Learning Tutorial | Python Machine Learning | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=ya_6I9IVMzY", "title": "Wie funktioniert eigentlich Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=gCWBFyFTxVU", "title": "Build A Complete Project In Machine Learning | Credit Card Fraud Detection 2019 | Eduonix", "query": "machine+learning"}
{"link": "/watch?v=TF1yh5PKaqI", "title": "Getting Started with Weka - Machine Learning Recipes #10", "query": "machine+learning"}
{"link": "/watch?v=keUHfUrlbq0", "title": "4.1 Apa itu machine learning?", "query": "machine+learning"}
{"link": "/watch?v=I74ymkoNTnw", "title": "\ud83d\udda5\ufe0f HOW TO GET STARTED WITH MACHINE LEARNING!", "query": "machine+learning"}
{"link": "/watch?v=9dFhZFUkzuQ", "title": "Machine Learning vs Deep Learning vs Artificial Intelligence | ML vs DL vs AI | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=G7fPB4OHkys", "title": "Machine Learning Tutorial | Machine Learning Basics | Machine Learning Algorithms | Simplilearn", "query": "machine+learning"}
{"link": "/watch?v=mNqVGB2HkXg", "title": "MIT 6.S191 (2018): Beyond Deep Learning: Learning+Reasoning", "query": "machine+learning"}
{"link": "/watch?v=Yr1mOzC93xs", "title": "From Deep Learning of Disentangled Representations to Higher-level Cognition", "query": "machine+learning"}
{"link": "/watch?v=zl99IZvW7rE", "title": "Geoffrey Hinton: The Foundations of Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=DZ7xuZ1-uh8", "title": "5 Must Have Skills To Become Machine Learning Engineer", "query": "machine+learning"}
{"link": "/watch?v=atiYXm7JZv0", "title": "Machine Learning with R and TensorFlow", "query": "machine+learning"}
{"link": "/watch?v=XlnbNFW2tX8", "title": "Fei-Fei Li on AI and Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=JN6H4rQvwgY", "title": "MIT 6.S191 (2018): Introduction to Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=whlODvf-SVk", "title": "Artificial Intelligence vs Machine Learning - Gary explains", "query": "machine+learning"}
{"link": "/watch?v=g-HePO2bcTY", "title": "\ud83d\udda5\ufe0f POSTMORTEM FOR MY FIRST MACHINE LEARNING GAME! (4/4)", "query": "machine+learning"}
{"link": "/watch?v=9aCUXJXPHGw", "title": "Machine Learning - Como come\u00e7ar a estudar e aprender sobre o assunto", "query": "machine+learning"}
{"link": "/watch?v=GDy45vT1xlA", "title": "\ud83d\udda5\ufe0f FINISHING MY FIRST MACHINE LEARNING GAME! (3/4)", "query": "machine+learning"}
{"link": "/watch?v=5WPSecXkQ3U", "title": "Top 7 Machine Learning Algorithms every beginner should know #MachineLearning #Algorithms #beginner", "query": "machine+learning"}
{"link": "/watch?v=iPdKMs9cEAs", "title": "Machine learning + neuroscience = biologically feasible computing | Benjamin Migliori | TEDxSanDiego", "query": "machine+learning"}
{"link": "/watch?v=s3MuSOl1Rog", "title": "MIT Sloan: Intro to Machine Learning (in 360/VR)", "query": "machine+learning"}
{"link": "/watch?v=uiE56h5LyXc", "title": "Semantic Segmentation Overview - Train a Semantic Segmentation Network Using Deep Learning.", "query": "machine+learning"}
{"link": "/watch?v=iEGE0nxPnnA", "title": "Machine Learning: Le Basi (Intelligenza Artificiale) - Gianluca Mauro", "query": "machine+learning"}
{"link": "/watch?v=CY3t11vuuOM", "title": "Interpretable Machine Learning Using LIME Framework - Kasia Kulma (PhD), Data Scientist, Aviva", "query": "machine+learning"}
{"link": "/watch?v=R9OHn5ZF4Uo", "title": "How Machines Learn", "query": "machine+learning"}
{"link": "/watch?v=OpodKCR6P-M", "title": "\ud83d\udda5\ufe0f TRAINING MY FIRST MACHINE LEARNING GAME! (2/4)", "query": "machine+learning"}
{"link": "/watch?v=ZX2Hyu5WoFg", "title": "\ud83d\udda5\ufe0f WRITING MY FIRST MACHINE LEARNING GAME! (1/4)", "query": "machine+learning"}
{"link": "/watch?v=3bhP7zulFfY", "title": "AI learns to play snake using Genetic Algorithm and Deep learning", "query": "machine+learning"}
{"link": "/watch?v=o64FV-ez6Gw", "title": "Joel Grus - Livecoding Madness - Let's Build a Deep Learning Library", "query": "machine+learning"}
{"link": "/watch?v=p5OhjKQpVYM", "title": "Machine Learning y casos de uso", "query": "machine+learning"}
{"link": "/watch?v=dvOnYLDg8_Y", "title": "Creating a Chatbot with Deep Learning, Python, and TensorFlow p.1", "query": "machine+learning"}
{"link": "/watch?v=0tEhw5t6rhc", "title": "Yann LeCun - Power & Limits of Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=KNMy7NCQDgk", "title": "Risto Siilasmaa on Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=tIeHLnjs5U8", "title": "Backpropagation calculus | Deep learning, chapter 4", "query": "machine+learning"}
{"link": "/watch?v=Ilg3gGewQ5U", "title": "What is backpropagation really doing? | Deep learning, chapter 3", "query": "machine+learning"}
{"link": "/watch?v=z-EtmaFJieY", "title": "Machine Learning & Artificial Intelligence: Crash Course Computer Science #34", "query": "machine+learning"}
{"link": "/watch?v=KytW151dpqU", "title": "\u00bfQu\u00e9 es el Machine Learning?\u00bfY Deep Learning? Un mapa conceptual | DotCSV", "query": "machine+learning"}
{"link": "/watch?v=WGlMlS_Yydk", "title": "Apriori Algorithm (Associated Learning) - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=d12ra3b_M-0", "title": "Intro to Feature Engineering with TensorFlow - Machine Learning Recipes #9", "query": "machine+learning"}
{"link": "/watch?v=uC3SfnbCXmw", "title": "Not What but Why: Machine Learning for Understanding Genomics | Barbara Engelhardt | TEDxBoston", "query": "machine+learning"}
{"link": "/watch?v=ibELoCSf3cE", "title": "John Kitchin: Using Machine Learning to Improve Molecular Simulations", "query": "machine+learning"}
{"link": "/watch?v=IHZwWFHWa-w", "title": "Gradient descent, how neural networks learn | Deep learning, chapter 2", "query": "machine+learning"}
{"link": "/watch?v=GQVLl0RqpSs", "title": "Artificial Neural Networks - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=7ClLKBUvmRk", "title": "Todos podemos aprender Machine learning", "query": "machine+learning"}
{"link": "/watch?v=aircAruvnKk", "title": "But what is a Neural Network? | Deep learning, chapter 1", "query": "machine+learning"}
{"link": "/watch?v=nSxaG_Kjw_w", "title": "Reinforcement Learning - A Simple Python Example and A Step Closer to AI with Assisted Q-Learning", "query": "machine+learning"}
{"link": "/watch?v=YvEIEXE_NL0", "title": "Prof. Brian Cox - Machine Learning & Artificial Intelligence - Royal Society", "query": "machine+learning"}
{"link": "/watch?v=EUQY3hL38cw", "title": "Hierarchical Clustering - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=8CenT_4HWyY", "title": "Tutorial : 3D Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=LDRbO9a6XPU", "title": "Let\u2019s Write a Decision Tree Classifier from Scratch - Machine Learning Recipes #8", "query": "machine+learning"}
{"link": "/watch?v=hF7tyLGRcrs", "title": "Machine Learning & Natural Language Processing (NLP) at Elsevier", "query": "machine+learning"}
{"link": "/watch?v=nKW8Ndu7Mjw", "title": "The 7 Steps of Machine Learning (AI Adventures)", "query": "machine+learning"}
{"link": "/watch?v=CPqOCI0ahss", "title": "Na\u00efve Bayes Classifier - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=59bMh59JQDo", "title": "Machine Learning and Human Bias", "query": "machine+learning"}
{"link": "/watch?v=HcqpanDadyQ", "title": "What is Machine Learning? (AI Adventures)", "query": "machine+learning"}
{"link": "/watch?v=6tQhoUuQrOw", "title": "Predicting the Winning Team with Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=Cgxsv1riJhI", "title": "How computers learn to recognize objects instantly | Joseph Redmon", "query": "machine+learning"}
{"link": "/watch?v=Y6RRHw9uN9o", "title": "Support Vector Machine (SVM) - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=lvoHnicueoE", "title": "Lecture 14 | Deep Reinforcement Learning", "query": "machine+learning"}
{"link": "/watch?v=fNp_jRDLnB8", "title": "O que \u00e9 Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=-eyhCTvrEtE", "title": "Heroes of Deep Learning: Andrew Ng interviews Geoffrey Hinton", "query": "machine+learning"}
{"link": "/watch?v=dmkPJpWCVcI", "title": "Heroes of Deep Learning: Andrew Ng interviews Pieter Abbeel", "query": "machine+learning"}
{"link": "/watch?v=pWAc9B2zJS4", "title": "Heroes of Deep Learning: Andrew Ng interviews Ian Goodfellow", "query": "machine+learning"}
{"link": "/watch?v=_au3yw46lcg", "title": "Heroes of Deep Learning: Andrew Ng interviews Andrej Karpathy", "query": "machine+learning"}
{"link": "/watch?v=bLqJHjXihK8", "title": "18. Information Theory of Deep Learning. Naftali Tishby", "query": "machine+learning"}
{"link": "/watch?v=ggIk08PNcBo", "title": "Basic Machine Learning Algorithms Overview - Data Science Crash Course Mini-series", "query": "machine+learning"}
{"link": "/watch?v=iYg-2sEC3NY", "title": "Machine Learning: Como fazer sua primeira m\u00e1quina de aprendizado usando Python", "query": "machine+learning"}
{"link": "/watch?v=63NTeLmDANo", "title": "What is machine learning and how to learn it ?", "query": "machine+learning"}
{"link": "/watch?v=fv6Qll3laUU", "title": "Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edureka", "query": "machine+learning"}
{"link": "/watch?v=5BrNt38OraE", "title": "Research in Focus: Deep Learning Research and the Future of AI", "query": "machine+learning"}
{"link": "/watch?v=ht6fLrar91U", "title": "AI, Deep Learning, and Machine Learning: A Primer", "query": "machine+learning"}
{"link": "/watch?v=gn4nRCC9TwQ", "title": "Google's DeepMind AI Just Taught Itself To Walk", "query": "machine+learning"}
{"link": "/watch?v=D_2LkhMJcfY", "title": "Random Forest - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=6XqhY29uzlM", "title": "Le Deep Learning expliqu\u00e9 \u00e0 ma grand m\u00e8re par Youen CHENE de SAAGIE", "query": "machine+learning"}
{"link": "/watch?v=DCZ3tsQIoGU", "title": "Decision Tree (CART) - Machine Learning Fun and Easy", "query": "machine+learning"}
{"link": "/watch?v=WQt4H1Bo0jM", "title": "How to setup a Machine Learning and Deep Learning Environment", "query": "machine+learning"}
{"link": "/watch?v=CtKeHnfK5uA", "title": "Linear Regression - Fun and Easy Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=F1wlCerC40E", "title": "What is machine learning?", "query": "machine+learning"}
{"link": "/watch?v=z8PRU46I3NY", "title": "Intro to Machine Learning with R & caret", "query": "machine+learning"}
{"link": "/watch?v=MOdlp1d0PNA", "title": "Roadmap: How to Learn Machine Learning in 6 Months", "query": "machine+learning"}
{"link": "/watch?v=Up6KLx3m2ww", "title": "Machine Learning Algorithms | Machine Learning Tutorial | Data Science Training | Edureka", "query": "machine+learning"}
{"link": "/watch?v=ETeeSYMGZn0", "title": "Machine Learning APIs by Example (Google I/O '17)", "query": "machine+learning"}
{"link": "/watch?v=0ueamFGdOpA", "title": "Past, Present and Future of AI / Machine Learning (Google I/O '17)", "query": "machine+learning"}
{"link": "/watch?v=h0e2HAPTGF4", "title": "11. Introduction to Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=uawLjkSI7Mo", "title": "The Rise of Artificial Intelligence through Deep Learning | Yoshua Bengio | TEDxMontreal", "query": "machine+learning"}
{"link": "/watch?v=Z5WKQr4H4Xk", "title": "Logistic Regression in R | Machine Learning Algorithms | Data Science Training | Edureka", "query": "machine+learning"}
{"link": "/watch?v=dafuAz_CV7Q", "title": "What is Deep Learning | Deep Learning Simplified | Deep Learning Tutorial | Edureka", "query": "machine+learning"}
{"link": "/watch?v=iAsOq-tAe_s", "title": "Man vs Machine Learning: Criminal Justice in the 21st Century | Jens Ludwig | TEDxPennsylvaniaAvenue", "query": "machine+learning"}
{"link": "/watch?v=Z1YHbl0lh88", "title": "#4 O QUE \u00c9 MACHINE LEARNING (INTELIG\u00caNCIA ARTIFICIAL)? #Descomplicado por Marcelo Tas", "query": "machine+learning"}
{"link": "/watch?v=ixF5WNpTzCA", "title": "Introduction to Deep Learning: What Are Convolutional Neural Networks?", "query": "machine+learning"}
{"link": "/watch?v=-SgkLEuhfbg", "title": "Introduction to Deep Learning: Machine Learning vs Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=OQQ-W_63UgQ", "title": "Lecture 1 | Natural Language Processing with Deep Learning", "query": "machine+learning"}
{"link": "/watch?v=3cSjsTKtN9M", "title": "Introduction to Deep Learning: What Is Deep Learning?", "query": "machine+learning"}
{"link": "/watch?v=ogrJaOIuBx4", "title": "How to Make a Text Summarizer - Intro to Deep Learning #10", "query": "machine+learning"}
{"link": "/watch?v=cfj6yaYE86U", "title": "Machine Learning - Supervised VS Unsupervised Learning", "query": "machine+learning"}
{"link": "/watch?v=jaI5aheBOi0", "title": "Machine Learning vs Statistical Modeling", "query": "machine+learning"}
{"link": "/watch?v=fBqFqcWVjCo", "title": "Artificial Intelligence and Machine Learning: Stop Pretending", "query": "machine+learning"}
{"link": "/watch?v=8P4MfZimMT4", "title": "\"The Machine Learning Approach\" by Michael Kearns", "query": "machine+learning"}
{"link": "/watch?v=2_Jv11VpOF4", "title": "Deep Learning in Medical Imaging - Ben Glocker, Imperial College London", "query": "machine+learning"}
{"link": "/watch?v=u4alGiomYP4", "title": "TensorFlow and Deep Learning without a PhD, Part 1 (Google Cloud Next '17)", "query": "machine+learning"}
{"link": "/watch?v=3c0Vd5FxPks", "title": "Should you learn AI? | Artificial Intelligence | Machine Learning | Deep learning", "query": "machine+learning"}
{"link": "/watch?v=ftMq5ps503w", "title": "How to Predict Stock Prices Easily - Intro to Deep Learning #7", "query": "machine+learning"}
{"link": "/watch?v=5cFUZ03Sbhc", "title": "Why Machine Learning is The Future? | Sundar Pichai Talks About Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=cAICT4Al5Ow", "title": "How to Make an Image Classifier - Intro to Deep Learning #6", "query": "machine+learning"}
{"link": "/watch?v=mWl45NkFBOc", "title": "TensorFlow: Machine Learning for Everyone", "query": "machine+learning"}
{"link": "/watch?v=xl3yQBhI6vY", "title": "Machine Learning and Prediction in Economics and Finance", "query": "machine+learning"}
{"link": "/watch?v=mJeNghZXtMo", "title": "What is Artificial Intelligence (or Machine Learning)?", "query": "machine+learning"}
{"link": "/watch?v=QDzM8r3WgBw", "title": "MIT 6.S094: Deep Reinforcement Learning for Motion Planning", "query": "machine+learning"}
{"link": "/watch?v=1L0TKZQcUtA", "title": "MIT 6.S094: Introduction to Deep Learning and Self-Driving Cars", "query": "machine+learning"}
{"link": "/watch?v=vOppzHpvTiQ", "title": "How to Make a Prediction - Intro to Deep Learning #1", "query": "machine+learning"}
{"link": "/watch?v=f_uwKZIAeM0", "title": "What is Machine Learning?", "query": "machine+learning"}
{"link": "/watch?v=mTyT-oHoivA", "title": "Lecture 12.4 \u2014 Support Vector Machines | (Kernels-I) \u2014 [ Machine Learning | Andrew Ng]", "query": "machine+learning"}
{"link": "/watch?v=u73PU6Qwl1I", "title": "Lecture 7.1 \u2014 Regularization | The Problem Of Overfitting \u2014 [ Machine Learning | Andrew Ng]", "query": "machine+learning"}
{"link": "/watch?v=HIQlmHxI6-0", "title": "Lecture 6.4 \u2014 Logistic Regression | Cost Function \u2014 [ Machine Learning | Andrew Ng]", "query": "machine+learning"}
{"link": "/watch?v=F_VG4LNjZZw", "title": "Lecture 6.3 \u2014 Logistic Regression | Decision Boundary \u2014 [ Machine Learning | Andrew Ng]", "query": "machine+learning"}
{"link": "/watch?v=-la3q9d7AKQ", "title": "Lecture 6.1 \u2014 Logistic Regression | Classification \u2014 \u2014 [ Machine Learning | Andrew Ng]", "query": "machine+learning"}
{"link": "/watch?v=BR9h47Jtqyw", "title": "A friendly introduction to Deep Learning and Neural Networks", "query": "machine+learning"}
{"link": "/watch?v=QiBM7-5hA6o", "title": "DeepBach: harmonization in the style of Bach generated using deep learning", "query": "machine+learning"}
{"link": "/watch?v=_rdINNHLYaQ", "title": "Machine Learning: Solving Problems Big, Small, and Prickly", "query": "machine+learning"}
{"link": "/watch?v=jAA2g9ItoAc", "title": "Lecture 1.3 \u2014 Introduction Unsupervised Learning \u2014 [ Machine Learning | Andrew Ng]", "query": "machine+learning"}
{"link": "/watch?v=sarVw-iVWgc", "title": "Learning to See [Part 4: Machine Learning]", "query": "machine+learning"}
{"link": "/watch?v=vq2nnJ4g6N0", "title": "Tensorflow and deep learning - without a PhD by Martin G\u00f6rner", "query": "machine+learning"}
{"link": "/watch?v=Aut32pR5PQA", "title": "Deep Learning Cars", "query": "machine+learning"}
{"link": "/watch?v=R-63YMTnuZw", "title": "O QUE \u00c9 DEEP LEARNING?", "query": "machine+learning"}
{"link": "/watch?v=dz_jeuWx3j0", "title": "The Deep End of Deep Learning | Hugo Larochelle | TEDxBoston", "query": "machine+learning"}
{"link": "/watch?v=Nj2YSLPn6OY", "title": "Better Medicine Through Machine Learning | Suchi Saria | TEDxBoston", "query": "machine+learning"}
{"link": "/watch?v=PPLop4L2eGk", "title": "Lecture 1.1 \u2014 Introduction What Is Machine Learning \u2014 [ Machine Learning | Andrew Ng ]", "query": "machine+learning"}
{"link": "/watch?v=MDP9FfsNx60", "title": "Deep Learning Frameworks Compared", "query": "machine+learning"}
{"link": "/watch?v=G5RY_SUJih4", "title": "Sequence to Sequence Deep Learning (Quoc Le, Google)", "query": "machine+learning"}
{"link": "/watch?v=PtAIh9KSnjo", "title": "Deep Reinforcement Learning (John Schulman, OpenAI)", "query": "machine+learning"}
{"link": "/watch?v=F1ka6a13S9I", "title": "Nuts and Bolts of Applying Deep Learning (Andrew Ng)", "query": "machine+learning"}
{"link": "/watch?v=u6aEYuemt0M", "title": "Deep Learning for Computer Vision (Andrej Karpathy, OpenAI)", "query": "machine+learning"}
{"link": "/watch?v=g-sndkf7mCs", "title": "Deep Learning for Speech Recognition (Adam Coates, Baidu)", "query": "machine+learning"}
{"link": "/watch?v=oGk1v1jQITw", "title": "Deep Learning for Natural Language Processing (Richard Socher, Salesforce)", "query": "machine+learning"}
{"link": "/watch?v=zij_FTbJHsk", "title": "Foundations of Deep Learning (Hugo Larochelle, Twitter)", "query": "machine+learning"}
{"link": "/watch?v=IpGxLWOIZy4", "title": "A Friendly Introduction to Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=5MdSE-N0bxs", "title": "Connections between physics and deep learning", "query": "machine+learning"}
{"link": "/watch?v=EIVyQThUrq8", "title": "Machine Learning? Teaching Computers!!! What is it?", "query": "machine+learning"}
{"link": "/watch?v=cSKfRcEDGUs", "title": "Train an Image Classifier with TensorFlow for Poets - Machine Learning Recipes #6", "query": "machine+learning"}
{"link": "/watch?v=Lbndu5EIWvI", "title": "Quantum Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=OypPjvm4kiA", "title": "How I'm Learning AI and Machine Learning", "query": "machine+learning"}
{"link": "/watch?v=Dy0hJWltsyE", "title": "The Deep Learning Revolution", "query": "machine+learning"}
{"link": "/watch?v=JGf3oSPPpfM", "title": "Shapes for Children to Learn with Gumball Machine - Learning Shapes Videos for Children", "query": "machine+learning"}
{"link": "/watch?v=Q9Z20HCPnww", "title": "Deep Learning Demystified", "query": "machine+learning"}
{"link": "/watch?v=LlKJj4QWxl0", "title": "Automation, Robotics & Machine Learning in Agriculture", "query": "machine+learning"}
{"link": "/watch?v=84gqSbLcBFE", "title": "Let\u2019s Write a Pipeline - Machine Learning Recipes #4", "query": "machine+learning"}
{"link": "/watch?v=TnUYcTuZJpM", "title": "Google's Deep Mind Explained! - Self Learning A.I.", "query": "machine+learning"}
{"link": "/watch?v=N9fDIAflCMY", "title": "What Makes a Good Feature? - Machine Learning Recipes #3", "query": "machine+learning"}
{"link": "/watch?v=l42lr8AlrHk", "title": "Deep Learning - Computerphile", "query": "machine+learning"}
{"link": "/watch?v=tNa99PG8hR8", "title": "Visualizing a Decision Tree - Machine Learning Recipes #2", "query": "machine+learning"}
{"link": "/watch?v=JcI5Vnw0b2c", "title": "Regression Intro - Practical Machine Learning Tutorial with Python p.2", "query": "machine+learning"}
{"link": "/watch?v=OGxgnH8y2NM", "title": "Practical Machine Learning Tutorial with Python Intro p.1", "query": "machine+learning"}
{"link": "/watch?v=fJh5UtscFFg", "title": "Data Science vs Fake Le vaccin contre la rougeole n'est pas indispensable ARTE", "query": "data+science"}
{"link": "/watch?v=ISxOQUWRHO0", "title": "WQU Data Science Module Live Stream", "query": "data+science"}
{"link": "/watch?v=E3xkxnyZo-I", "title": "#6 Data Science | AI vs ML vs DL vs DS", "query": "data+science"}
{"link": "/watch?v=TLLHJC79rDU", "title": "Python fundamentals for Data Science - Part 1 | Data types | Strings | Lists", "query": "data+science"}
{"link": "/watch?v=Noxs9T7N0uo", "title": "Vlog #2 Data Science for Everyone", "query": "data+science"}
{"link": "/watch?v=Rfo97Wambi0", "title": "Where and How to start your data science journey (Urdu)", "query": "data+science"}
{"link": "/watch?v=k7ndFKl8c8A", "title": "Delivering healthcare equity through real-time data science with tangible outcomes", "query": "data+science"}
{"link": "/watch?v=CMZRfv7ykW8", "title": "10 Data Science Podcasts Reveal Ways To Win With Data, Even If You're Not A Data Scientist Yourself", "query": "data+science"}
{"link": "/watch?v=7O4dpR9QMIM", "title": "Data Science Project from Scratch - Part 5 (Model Building)", "query": "data+science"}
{"link": "/watch?v=kAG_wuK_OCo", "title": "Careers in AI, ML and Data Sciences for B.Tech Students", "query": "data+science"}
{"link": "/watch?v=3l0ad9Brc54", "title": "Data Science Cloud Episode 2: Data Sampling and Problem Formulation", "query": "data+science"}
{"link": "/watch?v=t6lYR6crwjU", "title": "365datascience free course available for Data Science |Programming | MS Excel | Tensorflow |Analysis", "query": "data+science"}
{"link": "/watch?v=HzHlZ93mAyI", "title": "Data Science With MachineHack - Solving Classifying Movie Scripts: Predict The Movie Genre Hackathon", "query": "data+science"}
{"link": "/watch?v=CKdcAYOX8b4", "title": "What is Data Science?", "query": "data+science"}
{"link": "/watch?v=riM-Du1KlM8", "title": "How to learn Data Science and get a job", "query": "data+science"}
{"link": "/watch?v=-9GaAw2DZh8", "title": "From UX Designer to Data Scientist | How to Change Your Career and Become a Data Scientist", "query": "data+science"}
{"link": "/watch?v=lebUovTIUn4", "title": "Moyenne Arithmetique - Coaching Data Science", "query": "data+science"}
{"link": "/watch?v=RQNNeHHiL_Q", "title": "\u0e2a\u0e2d\u0e19 Data science: \u0e2a\u0e23\u0e49\u0e32\u0e07\u0e01\u0e23\u0e32\u0e1f\u0e2b\u0e25\u0e32\u0e22 \u0e46 \u0e23\u0e39\u0e1b\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e22\u0e2d\u0e14\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e40\u0e0a\u0e37\u0e49\u0e2d COVID-19 \u0e41\u0e22\u0e01\u0e15\u0e32\u0e21\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", "query": "data+science"}
{"link": "/watch?v=KrAl7oRvaWA", "title": "Day 3 - DATA SCIENCE USING PYTHON, ML AND DEEP LEARNING", "query": "data+science"}
{"link": "/watch?v=jpUVJEbBNx8", "title": "PYTHON, DJANGO, MACHINE LEARNING, DATA SCIENCE TRAINING", "query": "data+science"}
{"link": "/watch?v=UNtadn9BBDU", "title": "Edureka Review by Ranjeet - Python Course for Data Science | Make Your Career Fly with Edureka", "query": "data+science"}
{"link": "/watch?v=JysOYjLJj50", "title": "What is Data science?", "query": "data+science"}
{"link": "/watch?v=7j7_18Lipqg", "title": "Learn Data Science Tutorial - Full Course - Become Beginner to Pro", "query": "data+science"}
{"link": "/watch?v=uLOcWOMIOVQ", "title": "Data Science", "query": "data+science"}
{"link": "/watch?v=XhPIUhUDDKg", "title": "Data Science Case Studies | Predictive Analytics Examples - Galton Families Case Study", "query": "data+science"}
{"link": "/watch?v=2aKNHYgqH74", "title": "3. Math for Data Science | What is Statistical Learning?", "query": "data+science"}
{"link": "/watch?v=W_5uijUjh2M", "title": "Jerusalem Tech Talks Episode 1: How computer algorithms and data science can battle the Coronavirus", "query": "data+science"}
{"link": "/watch?v=mrdaiNVJ9qU", "title": "HSE-NES 2020 Data Science 2020-04-10", "query": "data+science"}
{"link": "/watch?v=XxQ7xY8ItYw", "title": "Variables and data types in Python | Data Science & ML", "query": "data+science"}
{"link": "/watch?v=wl2PJAqRPls", "title": "CS 605 \u2013 DATA ANALYTICS LAB UNDERSTANDING NUMPY LIBRARY B.TECH III YEAR", "query": "data+science"}
{"link": "/watch?v=55uNcsXGvnA", "title": "Chit chat with 12 Year Old Coding Wonder & Data Scientist Siddharth", "query": "data+science"}
{"link": "/watch?v=0AVnjoWNd20", "title": "Arithmetic Mean - Data Science Coaching", "query": "data+science"}
{"link": "/watch?v=JHlocwpdmbU", "title": "Python pandas complete Tutorial in 40 Min | Python for data science", "query": "data+science"}
{"link": "/watch?v=COoYKvYVxUk", "title": "R for Data Science | Free Live Session | Great Learning", "query": "data+science"}
{"link": "/watch?v=f7VhGXGhdLs", "title": "The Most Valuable Skills for Data Scientists | Crampete Webinar", "query": "data+science"}
{"link": "/watch?v=zkyflq1dEXA", "title": "Mini Data Science Bootcamp Part 3 Creating & Comparing ML Models", "query": "data+science"}
{"link": "/watch?v=OQfp6JlP1ZA", "title": "Feature Selection in Machine Learning (Session 1) | Variable Section | Data Science", "query": "data+science"}
{"link": "/watch?v=XRVpssV7vqA", "title": "Data Science Cloud Episode 1: Introduction to Data Science Process", "query": "data+science"}
{"link": "/watch?v=bybd13QTWYs", "title": "DATA SCIENTIST v/s DATA ANALYST v/s DATA SCIENTIST", "query": "data+science"}
{"link": "/watch?v=H-vKSyF-TaE", "title": "Python for beginners and data science: TEST your knowledge on list, tuples,set and dictionary PART-2", "query": "data+science"}
{"link": "/watch?v=uV59nUgk3BU", "title": "How to Build A Data Science Portfolio That Can Get You Jobs?", "query": "data+science"}
{"link": "/watch?v=OW4pj1tuVMc", "title": "Data Science Project: Life Expectancy vs. GDP Per Capita Project: Gapminder Data", "query": "data+science"}
{"link": "/watch?v=ROqLYiUS2n4", "title": "R or Python for Data Science|R or Python For Machine Learning|R vs Python", "query": "data+science"}
{"link": "/watch?v=XTO42bpb8-4", "title": "#Big data analytics Important topic for #Msc,#Mca,#Mtech or final year students", "query": "data+science"}
{"link": "/watch?v=ngyeKpcsfng", "title": "Python for beginners and data science: TEST your knowledge on list, tuples,set and dictionary PART-1", "query": "data+science"}
{"link": "/watch?v=lgDaa3lApyI", "title": "S1 E3 : The Markandeya - Data Science Modeling", "query": "data+science"}
{"link": "/watch?v=hfNi2Zk1BAQ", "title": "B.Tech Artificial Intelligence and Data Science | Job Opportunities | Admission", "query": "data+science"}
{"link": "/watch?v=7-7oi-Wfpwc", "title": "Day 2 (Part 1)- DATA SCIENCE USING PYTHON, ML AND DEEP LEARNING", "query": "data+science"}
{"link": "/watch?v=mBa2Emvjjmg", "title": "Data science intro statistical", "query": "data+science"}
{"link": "/watch?v=5j_kGd1Z09U", "title": "Yarl IT Hub - Data Science (Short Course) - Session 04", "query": "data+science"}
{"link": "/watch?v=e8Syou92H8U", "title": "Save and Download files from Google Colab for Data Science", "query": "data+science"}
{"link": "/watch?v=lkZSB-HB6AI", "title": "Data Science-S1E3-Introduction to Pandas and data science fundamentals |TechTable-Subhaditya", "query": "data+science"}
{"link": "/watch?v=eSzqo6aQaSo", "title": "Data Science Application", "query": "data+science"}
{"link": "/watch?v=_F0fOw42hwI", "title": "Live Q&A Data Science", "query": "data+science"}
{"link": "/watch?v=xQdo3TThAow", "title": "Data Science Case Studies | Predictive Analytics in Medical Research for Evaluating Eating Disorders", "query": "data+science"}
{"link": "/watch?v=4Ac-kVbPWbU", "title": "Dr. Sunil Mathur on developing an early warning system using data science to help students succeed", "query": "data+science"}
{"link": "/watch?v=--EdOZqByHo", "title": "#DataScience #Pandas #python Python Pandas Tutorial 2: Dataframe Basics", "query": "data+science"}
{"link": "/watch?v=lVXtI_mg7p4", "title": "IBM Coursera Advanced Data Science Capstone \u2013 Kumar Hemant", "query": "data+science"}
{"link": "/watch?v=Ky2k73vpo9w", "title": "USF Citizen Data Science Certificate- Submission #3", "query": "data+science"}
{"link": "/watch?v=Gf6AqVccvKA", "title": "Data Science at Ford Presentation", "query": "data+science"}
{"link": "/watch?v=chvCBds87Ks", "title": "MSP Impact | Azure Days: Intro to Data Science & Machine Learning using MS Azure | Day 4", "query": "data+science"}
{"link": "/watch?v=hwt-WmgyjvM", "title": "Introduction to Numpy for Data Science- S1E2 |TechTable-Subhaditya", "query": "data+science"}
{"link": "/watch?v=67krHEX_vmc", "title": "Data Science Journey - A Candid Chat", "query": "data+science"}
{"link": "/watch?v=vfjwq9d43QE", "title": "Week Of Programming Introduction To Data Science Session 2", "query": "data+science"}
{"link": "/watch?v=Bwh-aQyHOjM", "title": "What is DATA SCIENCE?", "query": "data+science"}
{"link": "/watch?v=z-jcw2b9JSY", "title": "Summer Internship 2020 Devops & Data science Day 5", "query": "data+science"}
{"link": "/watch?v=orTZ7oWLR3g", "title": "How to get a Job in Data Science as a Fresher or Career Shift | Fresher Jobs | Machine Learning", "query": "data+science"}
{"link": "/watch?v=-VBzZV0JbSM", "title": "After 2020 JEE-Mains Data science without NIT IIT Make your future Best", "query": "data+science"}
{"link": "/watch?v=NYM5mEHkRiQ", "title": "How A Data Science Student Stays Productive During The COVID-19 Quarantine", "query": "data+science"}
{"link": "/watch?v=j1S8-Kmuz_k", "title": "Data Science Cloud Intro", "query": "data+science"}
{"link": "/watch?v=_AjhdXuXEDE", "title": "Tutorial 42-How To Find Optimal Threshold For Binary Classification - Data Science", "query": "data+science"}
{"link": "/watch?v=99qLd2p6x5E", "title": "Data Science Interview Questions: Deep Learning Numerically Stable Cross-Entropy", "query": "data+science"}
{"link": "/watch?v=uCdXKr_IqRE", "title": "GDS Virtual Session - Data Science Education - April 10", "query": "data+science"}
{"link": "/watch?v=EU-c34ggEKo", "title": "IST 707 - Data Analytics in Physics - Tejas Patil", "query": "data+science"}
{"link": "/watch?v=-mQkrH4-E8A", "title": "How Should You Explain Your Data Science Projects To Recruiters?- Must Watch For Everyone", "query": "data+science"}
{"link": "/watch?v=VQq8DwEJeoU", "title": "Will Data Science Die in 5 Years??", "query": "data+science"}
{"link": "/watch?v=JkjZXe4gVCo", "title": "10 Cases de Sucesso de Data Science na Ind\u00fastria", "query": "data+science"}
{"link": "/watch?v=N8m4c_ZkZTA", "title": "Python for Data Science | Live Session | Great Learning", "query": "data+science"}
{"link": "/watch?v=vMFh6z1ET7o", "title": "Data Analytics Jobs, Salary, Resume, Career, Skills, Roles & Responsibilities | Simplilearn", "query": "data+science"}
{"link": "/watch?v=soIETkM2T7w", "title": "#5 Data Science | Numpy | Re-shaping Array", "query": "data+science"}
{"link": "/watch?v=QWgg4w1SpJ8", "title": "Data Science Project from Scratch - Part 4 (Exploratory Data Analysis)", "query": "data+science"}
{"link": "/watch?v=H1YjZSgBahQ", "title": "TechAway #17 - Data Science : Introduction \u00e0 l'approche bay\u00e9sienne", "query": "data+science"}
{"link": "/watch?v=M9CCj4xOS9U", "title": "Top Udemy Courses for Free | Data Science | Python Programming", "query": "data+science"}
{"link": "/watch?v=_gljPOrZ8r8", "title": "Tidybiology +DS: An Introduction to Biological Data Science in R, Session 2", "query": "data+science"}
{"link": "/watch?v=DXfnUw_FhQw", "title": "03 - Essential Data Visualization - Data Science Course", "query": "data+science"}
{"link": "/watch?v=3gssAG0agO8", "title": "How to Transition Into Data Science: From Economics to Data Science", "query": "data+science"}
{"link": "/watch?v=Cm4YW0yZDMg", "title": "AMA with SRK: Discussion on Data Science Journey, COVID-19, and Kaggle", "query": "data+science"}
{"link": "/watch?v=KTlv0k9nRRM", "title": "Python Libraries for Data Science (PDS14 by Myanmar Data Science)", "query": "data+science"}
{"link": "/watch?v=LcEwbNVeBAs", "title": "Data Science Project for Beginners - Modeling Height of Parents and Children | Interview Question", "query": "data+science"}
{"link": "/watch?v=b-AZBpWO5-o", "title": "How to start a data science career? - Mikaeri Ohana", "query": "data+science"}
{"link": "/watch?v=CNThq4ujAi8", "title": "Life expectancy data analysis to understand longevity | TIBCO Data Science and Spotfire", "query": "data+science"}
{"link": "/watch?v=x0_0kTGp4F8", "title": "DataScience Buddy - Algorithmic Boost Request - 2000000 #YTBoostRequest", "query": "data+science"}
{"link": "/watch?v=aFh-DRf9U_E", "title": "What does a Data Science Project look like? | Ep #34", "query": "data+science"}
{"link": "/watch?v=TTvkG1WHjDI", "title": "Technical Skills That You Need to Get Started in Data Science + Book Recommendations for Every Skill", "query": "data+science"}
{"link": "/watch?v=B2aUQdrofDc", "title": "Summer Internship 2020 Devops & Data science", "query": "data+science"}
{"link": "/watch?v=vxn26weEDsU", "title": "Postgrado en Data Science y Machine Learning", "query": "data+science"}
{"link": "/watch?v=7rObtEZw-U0", "title": "Live #1 - D\u00favidas sobre carreira, Data Science e Comunidades", "query": "data+science"}
{"link": "/watch?v=e3h8V4INLvM", "title": "Top Programming Languages For Data Science | Programming Languages Data Scientist Must Learn", "query": "data+science"}
{"link": "/watch?v=V5_waf_9_rU", "title": "Data Science Project Ideas! (Python)", "query": "data+science"}
{"link": "/watch?v=x4S9rIJHqxU", "title": "R (Linguagem de Programa\u00e7\u00e3o para Data Science) // Dicion\u00e1rio do Programador", "query": "data+science"}
{"link": "/watch?v=aFPQGlhR-vc", "title": "Why Domain Knowledge Is Important For Data Scientist?", "query": "data+science"}
{"link": "/watch?v=Up442A-z5es", "title": "Masterclass with Dr. Sarkar - Business Applications of Data Science, AI & Machine Learning", "query": "data+science"}
{"link": "/watch?v=PmssNOAeqdk", "title": "Data Science Project-3 | Credit Card Fraud Detection Example | Python Training | Edureka", "query": "data+science"}
{"link": "/watch?v=MpF9HENQjDo", "title": "Data Science Project from Scratch - Part 1 (Project Planning)", "query": "data+science"}
{"link": "/watch?v=9hVIS0sFYX4", "title": "Data Science Project - 2 | Predicting Outcome With Support Vector Machine In Python | Edureka", "query": "data+science"}
{"link": "/watch?v=mKSWAlvXSmw", "title": "Data Science Projects Part 1 | COVID-19 Data Analysis | Python Training | Edureka", "query": "data+science"}
{"link": "/watch?v=nc2DesRXoFI", "title": "MIT talks with Love is Blind\u2019s AI/data scientist Cameron Hamilton", "query": "data+science"}
{"link": "/watch?v=DmCkJNTDP-E", "title": "How to Understand Coronavirus Figures I Data Science vs Fake I Arte Documentary", "query": "data+science"}
{"link": "/watch?v=MJq154i4O-0", "title": "Integrated Deployment - How to Move Data Science into Production", "query": "data+science"}
{"link": "/watch?v=8nFj8oMajJ4", "title": "Free Courses to Learn Data Science & Machine Learning", "query": "data+science"}
{"link": "/watch?v=QtYOI-9R1vo", "title": "Data Science Course | Data Science Tutorial | Intellipaat", "query": "data+science"}
{"link": "/watch?v=GU2AIgf-6SU", "title": "How IBM Does Data Science Consulting in 2020", "query": "data+science"}
{"link": "/watch?v=uWSbePhKW2I", "title": "R Programming | R Language Tutorial | Data Science with R Course | Intellipaat", "query": "data+science"}
{"link": "/watch?v=LNfmUPGndkE", "title": "Data Science for Construction, Architecture and Engineering | NUS", "query": "data+science"}
{"link": "/watch?v=WY6ioFymoTY", "title": "COVID-19 Response | Free Data Science Courses", "query": "data+science"}
{"link": "/watch?v=v1LZ04WDAOs", "title": "Data Science vs Computer Science Degree for Data Science Career", "query": "data+science"}
{"link": "/watch?v=zEzjT5Hj9Zc", "title": "MARATONA DATA SCIENCE 0 PROJETO END TO END COM PYTHON", "query": "data+science"}
{"link": "/watch?v=_wNMu92hmLA", "title": "Uber Data Science Interview Process", "query": "data+science"}
{"link": "/watch?v=-6RqxhNO2yY", "title": "Python For Data Science Full Course - 9 Hours | Data Science With Python | Python Training | Edureka", "query": "data+science"}
{"link": "/watch?v=ku_VGr-NaBc", "title": "Data Science Tutorial For Beginners | Introduction to Data Science | Data Science Training | Edureka", "query": "data+science"}
{"link": "/watch?v=aK506baLAGA", "title": "Amazon Data Science Interview- Part 1 & Internship Opportunities", "query": "data+science"}
{"link": "/watch?v=dgoegW0JPok", "title": "Spatial Analysis & Data Science", "query": "data+science"}
{"link": "/watch?v=jL-qeVwliLY", "title": "Job Skill Mapping for Data Science | Roles of Data Scientists | Data Science Training | Edureka", "query": "data+science"}
{"link": "/watch?v=Ta2xatM9UBE", "title": "Why Cloud Computing is Critical for a Data Scientist", "query": "data+science"}
{"link": "/watch?v=Ip50cXvpWY4", "title": "The Best Free Data Science Courses Nobody is Talking About", "query": "data+science"}
{"link": "/watch?v=M3eBzOC7Bfw", "title": "Data Science Course | Intellipaat", "query": "data+science"}
{"link": "/watch?v=by3lyP-mAiU", "title": "Global Women in Data Science (WiDS) Conference at Stanford", "query": "data+science"}
{"link": "/watch?v=hQaENo78za0", "title": "Getting Data Ready for Data Science with Delta Lake and MLflow", "query": "data+science"}
{"link": "/watch?v=kwzCeziEqfk", "title": "B degree in Data Science (BDatSc)", "query": "data+science"}
{"link": "/watch?v=2G-fS9Q6Z4M", "title": "Best Data Science Degrees to Get Hired in 2020", "query": "data+science"}
{"link": "/watch?v=pynGMaoM2PU", "title": "Data Science vs Machine Learning | DS vs ML | Intellipaat", "query": "data+science"}
{"link": "/watch?v=Vsi2Wn6mAlc", "title": "Entry Level Data Science Jobs | Which Data Science Role to Choose & How to Build a Good Resume?", "query": "data+science"}
{"link": "/watch?v=qNfa7S9jdt4", "title": "How To Learn Maths For Data Science By Self Study And For Free", "query": "data+science"}
{"link": "/watch?v=2jjWqNFtvYs", "title": "MSc Data Science and Artificial Intelligence", "query": "data+science"}
{"link": "/watch?v=aW2YM2yVs8Q", "title": "MSc Applied Data Science and Statistics", "query": "data+science"}
{"link": "/watch?v=LSGk9pVfujM", "title": "Data Science and Artificial Intelligence - Turning Data into Knowledge", "query": "data+science"}
{"link": "/watch?v=o8f2w0Q0ME4", "title": "Statistics for Machine Learning | Statistics Class 10 | Statistics for Data Science | Full Course", "query": "data+science"}
{"link": "/watch?v=IyegVfE8eFA", "title": "Top 7 Jobs and Salary in Data Science! (2020)", "query": "data+science"}
{"link": "/watch?v=8Q5F_AQ9OGo", "title": "Skillset Of Data Scientist In 2020 (Do not Miss this Video)", "query": "data+science"}
{"link": "/watch?v=P8BuKf9crA8", "title": "How to switch career to data science from non computer science background", "query": "data+science"}
{"link": "/watch?v=tJPURyKJAR4", "title": "How to Get an Entry-Level Data Scientist Job?", "query": "data+science"}
{"link": "/watch?v=7fx-HtZ2yG8", "title": "Master Data Analytics", "query": "data+science"}
{"link": "/watch?v=IpauZVOiPLo", "title": "Interview Discussion For Data Science- Solve This Use Case", "query": "data+science"}
{"link": "/watch?v=u2zsY-2uZiE", "title": "Data Science Tutorial | Data Science for Beginners | Python for Data Science | 11 Hours Full Course", "query": "data+science"}
{"link": "/watch?v=q9oAZwhuUy4", "title": "Data Analyst vs Data Engineer vs Data Scientist", "query": "data+science"}
{"link": "/watch?v=ZHNdSKMluI0", "title": "Tableau for Data Science | Beginners Tableau Projects for Data Science | Tableau Training | Edureka", "query": "data+science"}
{"link": "/watch?v=D8NlYPtPgwA", "title": "AI and Data Science in Aviation Industry: 5 Real-life Use Cases", "query": "data+science"}
{"link": "/watch?v=tBU65SsJG_8", "title": "How To Become A Data Scientist In India (in 2020)", "query": "data+science"}
{"link": "/watch?v=UBbdWHCnn1o", "title": "Data Science Career Certifications", "query": "data+science"}
{"link": "/watch?v=n3vw0M5RrPU", "title": "How I Learned Data Science", "query": "data+science"}
{"link": "/watch?v=lP1hb4BFAWA", "title": "Step By Step Action Plan For Learning Data Science in 2020", "query": "data+science"}
{"link": "/watch?v=Dt89dX0c7Cw", "title": "Salary Of Data Scientist In India And US In 2020", "query": "data+science"}
{"link": "/watch?v=l_FGeEvqYyM", "title": "5 Ways Data Science Changed Finance", "query": "data+science"}
{"link": "/watch?v=Vn_mmOuQkSA", "title": "Learn data science for beginners (How to learn data science for free)?", "query": "data+science"}
{"link": "/watch?v=Q9FjwzKFPuM", "title": "Data Science Certificate vs Bootcamp vs Masters Degree", "query": "data+science"}
{"link": "/watch?v=PXLVLS1vJHY", "title": "Is Data Science Really a Rising Career in 2020 ($100,000+ Salary)", "query": "data+science"}
{"link": "/watch?v=edvg4eHi_Mw", "title": "Python for Data Science | Data Science with Python | Python for Data Analysis | 11 Hours Full Course", "query": "data+science"}
{"link": "/watch?v=eMOA1pPVUc4", "title": "Solving real world data science tasks with Python Pandas!", "query": "data+science"}
{"link": "/watch?v=cbqZa_1vzcg", "title": "Data Science Project - 4 : Outlier Removal (Real Estate Price Prediction Project)", "query": "data+science"}
{"link": "/watch?v=Q5JyawS8f5Q", "title": "Data Science Project - 6 : Python Flask Server (Real Estate Price Prediction Project)", "query": "data+science"}
{"link": "/watch?v=oCiRv94GMEc", "title": "Data Science Project - 5 : Model Building (Real Estate Price Prediction Project)", "query": "data+science"}
{"link": "/watch?v=gMoJIH0prL4", "title": "Data Science Project - 3 : Feature Engineering (Real Estate Price Prediction Project)", "query": "data+science"}
{"link": "/watch?v=_drqJ9SFCgU", "title": "Data Science Project - 2 : Data Cleaning (Real Estate Price Prediction Project)", "query": "data+science"}
{"link": "/watch?v=rdfbcdP75KI", "title": "Data Science Project - 1 : Introduction (Real Estate Price Prediction Project)", "query": "data+science"}
{"link": "/watch?v=3BnFx0sAzu0", "title": "How to approach your Data Science Career in 2020?", "query": "data+science"}
{"link": "/watch?v=BadUWF5JMn0", "title": "Data Science For Beginners With Python 1 - Introduction to Data Science + Python Environment Setup", "query": "data+science"}
{"link": "/watch?v=Qz7erR3zVUc", "title": "Step By Step Understanding Of Implementing Data Science Project", "query": "data+science"}
{"link": "/watch?v=Vfo5le26IhY", "title": "Statistics for Data Science | Probability and Statistics | Statistics Tutorial | Ph.D. (Stanford)", "query": "data+science"}
{"link": "/watch?v=vmYaAzbv9xk", "title": "Data Scientists vs Data Engineers: Which one is for you?", "query": "data+science"}
{"link": "/watch?v=G-8HFumMKuA", "title": "Data Science vs Data Analysis", "query": "data+science"}
{"link": "/watch?v=XrOLiypGDCQ", "title": "How to become a data scientist for free? | Step by step approach to become data scientist", "query": "data+science"}
{"link": "/watch?v=vPw734VvPqg", "title": "Best Youtube Channels To Study Data Science For Free", "query": "data+science"}
{"link": "/watch?v=dzPZksaqGNU", "title": "Data Science and Diversity at NVIDIA", "query": "data+science"}
{"link": "/watch?v=3my6NYehpNU", "title": "Master of Machine learning and Data Science - Imperial College London", "query": "data+science"}
{"link": "/watch?v=JL_grPUnXzY", "title": "What is Data Science? | Free Data Science Course | Data Science for Beginners | codebasics", "query": "data+science"}
{"link": "/watch?v=DJVJx2fSf90", "title": "AWS re:Invent 2019: More data science with less engineering: ML infrastructure at Netflix (NFX201)", "query": "data+science"}
{"link": "/watch?v=fCXBaEnPzgo", "title": "Data Science 101: Building your Data Science Portfolio with GitHub", "query": "data+science"}
{"link": "/watch?v=S8MmsBsGP-Q", "title": "Data Science & Artificial Intelligence Career Advice by Real-Life Data Scientists", "query": "data+science"}
{"link": "/watch?v=faXot73bz4A", "title": "Online Master of Computer Science (MCS) and MCS in Data Science Curriculum & Admissions Overview", "query": "data+science"}
{"link": "/watch?v=4Fta6KQ1QHQ", "title": "Tutorial 24-Z Score Statistics Data Science", "query": "data+science"}
{"link": "/watch?v=W3J7EiSXAO0", "title": "Python VS R: Melhor Linguagem para Data Science | Bit de Prosa #11", "query": "data+science"}
{"link": "/watch?v=r5nM4T98J_4", "title": "Building a Data Science Startup & Getting Into Data Science (w/ Jeremie Harris from SharpestMinds)", "query": "data+science"}
{"link": "/watch?v=im1Xkj9gU9s", "title": "Meet The 12-Year-Old Who Is Working As A Data Scientist In Hyderabad", "query": "data+science"}
{"link": "/watch?v=IkvwXPEBlNo", "title": "Tutorial 23-Univariate, Bivariate and Multivariate Analysis- Part2 (EDA)-Data Science", "query": "data+science"}
{"link": "/watch?v=JG8GRlMjp3c", "title": "Tutorial 22-Univariate, Bivariate and Multivariate Analysis- Part1 (EDA)-Data Science", "query": "data+science"}
{"link": "/watch?v=8_ndFqeivKk", "title": "How Can A Non Technical Person Become Data Scientist", "query": "data+science"}
{"link": "/watch?v=k2P_pHQDlp0", "title": "AI VS ML VS DL VS Data Science", "query": "data+science"}
{"link": "/watch?v=FGuGg9F2VUs", "title": "How to jump into Data Science", "query": "data+science"}
{"link": "/watch?v=9l0DAYyJJhI", "title": "Data Science Course - Learn Data Science in 13 hours - Full Course for Beginners - Intellipaat", "query": "data+science"}
{"link": "/watch?v=de7ZUb1fH3s", "title": "A Day in The Life of a Data Scientist \ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb| upGrad", "query": "data+science"}
{"link": "/watch?v=osAbJeTho5w", "title": "What is Spatial Data Science?", "query": "data+science"}
{"link": "/watch?v=zKhHXveVQlY", "title": "What are the Prerequisites To Learn Data Science", "query": "data+science"}
{"link": "/watch?v=hdO3fmP6RBI", "title": "A Day in My Life at Monash University - Master of Data Science Student", "query": "data+science"}
{"link": "/watch?v=4SJ7bEILPJk", "title": "Data Analytics with Python", "query": "data+science"}
{"link": "/watch?v=ggwJf828YKc", "title": "Data Scientist Journey (in Hindi)| Why I choose Data Analytics as my career|Sangwans Studio", "query": "data+science"}
{"link": "/watch?v=6raZx9WxISk", "title": "Tips on Data Science Masters in Germany", "query": "data+science"}
{"link": "/watch?v=1FrY7ARSf10", "title": "9 Ways You Can Make Extra Income as a Data Scientist", "query": "data+science"}
{"link": "/watch?v=iLcvvVXBSFo", "title": "HOW TO BECOME DATA SCIENTIST IN 2020- in Hindi| SALARY OF DATA SCIENTIST| Sangwans Studio|", "query": "data+science"}
{"link": "/watch?v=s6_L4UMZtMA", "title": "How To Become Freelance Data Scientist", "query": "data+science"}
{"link": "/watch?v=uJUUcZaCMkM", "title": "Aalto Bachelor's Programme in Science and Technology - Data Science", "query": "data+science"}
{"link": "/watch?v=Scg59_McA8Q", "title": "Highest Paid Jobs of Future | Data Scientist Complete Detail Hindi | Courses | Salary | Degree's", "query": "data+science"}
{"link": "/watch?v=OF132jIS8XM", "title": "What Does A Data Analyst Do? ($80,000+ Starting Salary)", "query": "data+science"}
{"link": "/watch?v=vNNoNs_VeWc", "title": "How to Become a Data Engineer in 2020", "query": "data+science"}
{"link": "/watch?v=qwGnrjkQq98", "title": "Data Scientist Salary | How to get a Data Scientist job", "query": "data+science"}
{"link": "/watch?v=njpaLqSrkxs", "title": "DO YOU HAVE THESE FREE DATA SCIENCE BOOKS?!", "query": "data+science"}
{"link": "/watch?v=X7GR4ANn45s", "title": "What is Azure Machine Learning service and how data scientists use it", "query": "data+science"}
{"link": "/watch?v=a6StZPu-16I", "title": "Precisa de FACULDADE pra trabalhar com DATA SCIENCE? | Bit de Prosa #9 (Especial Alura)", "query": "data+science"}
{"link": "/watch?v=F07FVZpk3sw", "title": "How To Review An Online Course For Data Science", "query": "data+science"}
{"link": "/watch?v=_GJ9IDjHaKU", "title": "What is Data Science? | How to become a Data Scientist?", "query": "data+science"}
{"link": "/watch?v=-p9ACUrDlFk", "title": "FREE IBM Data Science Professional Certificate | How to Become Data Scientist For Free", "query": "data+science"}
{"link": "/watch?v=BZA0C5AdW8I", "title": "Best Laptop for Data Science", "query": "data+science"}
{"link": "/watch?v=gxyjGmOV540", "title": "Como ingressar no MERCADO de DATA SCIENCE | Bit de Prosa #8 (Especial Alura)", "query": "data+science"}
{"link": "/watch?v=uHGlCi9jOWY", "title": "Data Science \u2013 Baba Brinkman Music Video", "query": "data+science"}
{"link": "/watch?v=_P7X8tMplsw", "title": "Python Data Science Tutorial: Analyzing the 2019 Stack Overflow Developer Survey", "query": "data+science"}
{"link": "/watch?v=W2GZ8AiX-c8", "title": "Data Science Essentials | UC Berkeley School of Information Online Short Course Trailer", "query": "data+science"}
{"link": "/watch?v=7t4lhzTWM5I", "title": "Unified Data Analytics: Helping Data Teams Solve the World\u2019s Toughest Problems", "query": "data+science"}
{"link": "/watch?v=OL-9Vwz4yjQ", "title": "Data Science Para Leigos | Bit de Prosa #7 (Especial Alura)", "query": "data+science"}
{"link": "/watch?v=zNoLeZi5gpk", "title": "A data science como a nova ci\u00eancia social definitiva | Kaike Nanne", "query": "data+science"}
{"link": "/watch?v=p9bkz3hxrSM", "title": "Checking out a Data Science Workstation", "query": "data+science"}
{"link": "/watch?v=DvGOq9WPsDg", "title": "Data Scientist vs Data Analyst: What's the difference? ($120,000 vs $70,000 salary)", "query": "data+science"}
{"link": "/watch?v=FEEjl3KDg1k", "title": "Data Science & Statistics: Chi-Squared Distribution", "query": "data+science"}
{"link": "/watch?v=F1z-8b4WsGI", "title": "Why Are You Not Getting Interview Calls for Data Science?", "query": "data+science"}
{"link": "/watch?v=7k8JdXqTHZQ", "title": "data science- \u0645\u0627\u0647\u064a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0648\u0645\u0627\u0647\u064a \u0623\u0646\u0648\u0627\u0639\u0647\u0627\u061f \u0648\u0644\u0645\u0627\u0630\u0627 \u064a\u062c\u0628 \u0623\u0646 \u062a\u062a\u0639\u0644\u0645 \u0645\u062c\u0627\u0644 \u0639\u0644\u0645 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a\u061f", "query": "data+science"}
{"link": "/watch?v=iVq3qcNWayw", "title": "5 Tips for Getting a Data Science Job [INTERVIEW]", "query": "data+science"}
{"link": "/watch?v=dVEdViOurR0", "title": "Statistical data analysis | Statistical Data Science | Part 1", "query": "data+science"}
{"link": "/watch?v=sEtQUnVA4wQ", "title": "Data Science Training | Data Science for Beginners | Intellipaat", "query": "data+science"}
{"link": "/watch?v=613lId6jm7g", "title": "How to Prepare For Data Science Interviews", "query": "data+science"}
{"link": "/watch?v=dUsokjG4DHc", "title": "Elias Bareinboim -- Causal Data Science", "query": "data+science"}
{"link": "/watch?v=F608hzn_ygo", "title": "Data Science: Introdu\u00e7\u00e3o a Ci\u00eancia de Dados (Primeira aula pr\u00e1tica programando em Python)", "query": "data+science"}
{"link": "/watch?v=c26n615X8GE", "title": "Getting your first job in Data Science By Imaad Mohamed Khan at Cypher 2019", "query": "data+science"}
{"link": "/watch?v=152tSYtiQbw", "title": "The Covariance Matrix : Data Science Basics", "query": "data+science"}
{"link": "/watch?v=7WRlYJFG7YI", "title": "Data Science Full Course | Data Science For Beginners | Learn Data Science In 10 Hours | Simplilearn", "query": "data+science"}
{"link": "/watch?v=26GlYvcYZiI", "title": "How to Become a Business Intelligence Analyst in 2020", "query": "data+science"}
{"link": "/watch?v=1C8DSkbYkWY", "title": "Salary Comparison Between Data Scientist vs Software Engineer", "query": "data+science"}
{"link": "/watch?v=edZ_JYpOM8U", "title": "Introduction to Data Science", "query": "data+science"}
{"link": "/watch?v=e73033jZTCI", "title": "Derivative of a Matrix : Data Science Basics", "query": "data+science"}
{"link": "/watch?v=vfiLvg5VMrY", "title": "Les data sciences - Qu'est-ce que c'est ? A quoi \u00e7a sert?", "query": "data+science"}
{"link": "/watch?v=kZRX4wldSZM", "title": "Real Talk with Facebook Data Scientist", "query": "data+science"}
{"link": "/watch?v=HDVZKT7eKiU", "title": "Como Empezar en DataScience", "query": "data+science"}
{"link": "/watch?v=lYLGaLEvWto", "title": "Time Series #1 - Como Criar o Ambiente de Desenvolvimento para Data Science", "query": "data+science"}
{"link": "/watch?v=1RE5s1sp89Q", "title": "How To Get Data Science Jobs For Freshers", "query": "data+science"}
{"link": "/watch?v=_XbttSk3ALs", "title": "Online Courses for Data Science Specialization", "query": "data+science"}
{"link": "/watch?v=AuqZ4recf0s", "title": "How To Learn Data Science by Self Study and For Free", "query": "data+science"}
{"link": "/watch?v=FCltgGLSt3Q", "title": "Peluang Karier Data Scientist bersama Ardya Dipta, Senior Data Scientist GOJEK", "query": "data+science"}
{"link": "/watch?v=HRLc3-VWwsY", "title": "Boiler Bytes: Integrative Data Science Initiative", "query": "data+science"}
{"link": "/watch?v=MB-TdMuu9Jo", "title": "Data Scientist vs Web Developer: What's a better career?", "query": "data+science"}
{"link": "/watch?v=ccZ2pyr3YDw", "title": "Qual a diferen\u00e7a entre Intelig\u00eancia Artificial, Machine Learning, Data Science, Deep Learning, etc?", "query": "data+science"}
{"link": "/watch?v=Xi56C3q8mDA", "title": "How I found a job in Data Analytics in Ireland Swapn from India", "query": "data+science"}
{"link": "/watch?v=csG_qfOTvxw", "title": "How To Learn Data Science Smartly?", "query": "data+science"}
{"link": "/watch?v=D5RJDoNHs_A", "title": "The Role of Maths in Data Science and How to Learn?", "query": "data+science"}
{"link": "/watch?v=stz12TB72XI", "title": "Real Talk with Reddit Data Scientist", "query": "data+science"}
{"link": "/watch?v=ePWLBHXSZyQ", "title": "Moringa School Data Science", "query": "data+science"}
{"link": "/watch?v=-ETQ97mXXF0", "title": "Data Science Full Course - Learn Data Science in 10 Hours | Data Science For Beginners | Edureka", "query": "data+science"}
{"link": "/watch?v=017B07EHe2M", "title": "Data Engineer vs Data Analyst vs Data Scientist", "query": "data+science"}
{"link": "/watch?v=92kSljmHS7U", "title": "Data Engineer vs Data Scientist vs ML Engineer: What's the Difference? (ft. Justin, Esther, Shubhi)", "query": "data+science"}
{"link": "/watch?v=Pkrf8sGe_TQ", "title": "3 Strategies to Guarantee a Data Science Job with No Experience", "query": "data+science"}
{"link": "/watch?v=fdZ_EjaptPw", "title": "How to Crack Data Science Interviews- Motivations", "query": "data+science"}
{"link": "/watch?v=G0HisNe6klI", "title": "What should be your Salary Expectation as a Data Scientist?", "query": "data+science"}
{"link": "/watch?v=5HlbV1wKBmo", "title": "How to Become a Data Analyst in 2020", "query": "data+science"}
{"link": "/watch?v=hBH8dYn2zxY", "title": "Step By Step Transition Towards Data Science", "query": "data+science"}
{"link": "/watch?v=jkoOpXaD0H4", "title": "Complete Life Cycle of a Data Science Project", "query": "data+science"}
{"link": "/watch?v=NXoN3-BZpsQ", "title": "My Path on Becoming a Data Scientist- Motivation", "query": "data+science"}
{"link": "/watch?v=DFAi2yXffSA", "title": "Study for an MSc in Data Science with the University of London", "query": "data+science"}
{"link": "/watch?v=tQYCd8tg56U", "title": "\u0412\u0441\u0451 \u043e Data Science / Big data \u0438 \u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u0430\u044f \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c / \u0418\u043d\u0442\u0435\u0440\u0432\u044c\u044e \u0441 Data Scientist", "query": "data+science"}
{"link": "/watch?v=QrpAmjbSQHA", "title": "Minha Jornada em Ci\u00eancia de Dados (Parte 1) - Data Science para Todos", "query": "data+science"}
{"link": "/watch?v=pWVQ0vN5uig", "title": "How To Get Data Science Experience (Without a Job)", "query": "data+science"}
{"link": "/watch?v=5gIX1Oq7yvk", "title": "Data Scientist Interview Tips & Career Advice (Uber, ex-Amazon)", "query": "data+science"}
{"link": "/watch?v=bzS-e0yfSp4", "title": "VER\u0130 B\u0130L\u0130M\u0130 ( DATA SCIENCE ) NED\u0130R ?", "query": "data+science"}
{"link": "/watch?v=KI8KW2T_MUk", "title": "10 Best Data Science Startups to Work for in 2020", "query": "data+science"}
{"link": "/watch?v=yukdXV9LR48", "title": "The Projects You Should Do To Get A Data Science Job", "query": "data+science"}
{"link": "/watch?v=iJUzouXg5kY", "title": "Demystifying Data Science | Mr.Asitang Mishra | TEDxOakLawn", "query": "data+science"}
{"link": "/watch?v=BbLfV0wOeyc", "title": "Data Science & Statistics Tutorial: The Poisson Distribution", "query": "data+science"}
{"link": "/watch?v=9cCLu8eLq6A", "title": "Python vs R for Data Science with Galvanize Bootcamp Instructor Sean", "query": "data+science"}
{"link": "/watch?v=Bl2sBiVdZHs", "title": "\u00bfQu\u00e9 hace un Data Scientist?", "query": "data+science"}
{"link": "/watch?v=l05OHGUyK-E", "title": "Data Scientist vs. Machine Learning Engineer. Who Has a Cooler Job?", "query": "data+science"}
{"link": "/watch?v=QRtw_xDOmm4", "title": "How to Tackle a Data Science Problem: House Pricing Prediction", "query": "data+science"}
{"link": "/watch?v=AzELyaVf0v8", "title": "Can Financial Engineering and Data Science Cure Cancer? by Andrew W. Lo", "query": "data+science"}
{"link": "/watch?v=mNdbcHECGN4", "title": "Python for Data Science | Data Science With Python | Python Data Science Tutorial | Intellipaat", "query": "data+science"}
{"link": "/watch?v=enN9F_iNVLw", "title": "Getting started on NVIDIA-Powered Data Science Workstations", "query": "data+science"}
{"link": "/watch?v=KI0bTZ3FEQk", "title": "Women in Data Science (Uber, Facebook, Reddit)", "query": "data+science"}
{"link": "/watch?v=bzUmK0Y07ck", "title": "\"The Joy of Functional Programming (for Data Science)\" with Hadley Wickham", "query": "data+science"}
{"link": "/watch?v=t1QHhr898Sc", "title": "Silikon Vadisinde Data Scientist Olmak", "query": "data+science"}
{"link": "/watch?v=hjZJIVWHnPE", "title": "Statistic for beginners | Statistics for Data Science", "query": "data+science"}
{"link": "/watch?v=0QYhaFyftLM", "title": "Data Scientist vs Data Analyst vs Data Engineer - Role, Skills, Salary, Demand | Intellipaat", "query": "data+science"}
{"link": "/watch?v=78Js-WmUV4I", "title": "Data Science vs Machine Learning vs Artificial Intelligence vs Big Data", "query": "data+science"}
{"link": "/watch?v=E2npRPkTrqw", "title": "DATA SCIENCE: MASTERS VS SELF TAUGHT", "query": "data+science"}
{"link": "/watch?v=xxpc-HPKN28", "title": "Statistics - A Full University Course on Data Science Basics", "query": "data+science"}
{"link": "/watch?v=KOU2Zu3h7zM", "title": "Real Talk with Uber Data Scientist", "query": "data+science"}
{"link": "/watch?v=IS_Aw6Nws1k", "title": "Audience Discovery. Powered by Data Science | Pixability", "query": "data+science"}
{"link": "/watch?v=_V8eKsto3Ug", "title": "R Programming Tutorial - Learn the Basics of Statistical Computing", "query": "data+science"}
{"link": "/watch?v=FsSrzmRawUg", "title": "Intro to Data Science: What is Data Science?", "query": "data+science"}
{"link": "/watch?v=OAB2bHsee9Y", "title": "Intro to Data Science: The Nature of Data", "query": "data+science"}
{"link": "/watch?v=aECk8s0FS7Q", "title": "Intro to Data Science: Historical Context", "query": "data+science"}
{"link": "/watch?v=pzo13OPXZS4", "title": "Intro to Data Science: Overview", "query": "data+science"}
{"link": "/watch?v=PGrxu0XfGdk", "title": "Life at GfK: Meet the Data Scientist", "query": "data+science"}
{"link": "/watch?v=PhZFrGOcz7E", "title": "Programming for Data Science | Machine Learning | R | SPSS | Python | Programming full Course", "query": "data+science"}
{"link": "/watch?v=ua-CiDNNj30", "title": "Learn Data Science Tutorial - Full Course for Beginners", "query": "data+science"}
{"link": "/watch?v=H4hzYjhEEaQ", "title": "data science mathematics for beginners", "query": "data+science"}
{"link": "/watch?v=22F80O0tsWQ", "title": "What is on Microsoft Data Science DP-100 Certification Exam", "query": "data+science"}
{"link": "/watch?v=dPwLlJkSHLo", "title": "Data Science Best Practices with pandas (PyCon 2019)", "query": "data+science"}
{"link": "/watch?v=jHX0iHh6G1Q", "title": "Data Science Full Course for Beginner | Data Science Tutorial", "query": "data+science"}
{"link": "/watch?v=ZFkI8wHOXyA", "title": "Business Intelligence, Data Science y Big Data - En que se diferencian(Perspectiva)", "query": "data+science"}
{"link": "/watch?v=XcLO4f1i4Yo", "title": "Statistics And Probability Tutorial | Statistics And Probability for Data Science | Edureka", "query": "data+science"}
{"link": "/watch?v=MpLHMKTolVw", "title": "The NBA Data Scientist", "query": "data+science"}
{"link": "/watch?v=yl7o-56NMJ8", "title": "Data Science Tutorial - What is Data Science - Data Science for Beginners - Intellipaat", "query": "data+science"}
{"link": "/watch?v=O8NMTHYgqMo", "title": "How to Become a Data Scientist (You Don't Need College)", "query": "data+science"}
{"link": "/watch?v=G36cw9_6L3E", "title": "Top 10 Data Science Companies to Work For in 2020", "query": "data+science"}
{"link": "/watch?v=9YTNYT1maa4", "title": "EMBL Keynote Lecture - Data visualization and data science, Hadley Wickham", "query": "data+science"}
{"link": "/watch?v=YR2WYqGMLwA", "title": "grava\u00e7\u00e3o | data science como a nova ci\u00eancia social definitiva, com kaike nanne, jornalista", "query": "data+science"}
{"link": "/watch?v=SrvsTaxhgUg", "title": "AWS Summit Singapore 2019 | Big Data Analytics Architectural Patterns and Best Practices", "query": "data+science"}
{"link": "/watch?v=Mukpy1QjVn8", "title": "Making data science useful. Cassie Kozyrkov (Google) Strata Data Conference UK 2019", "query": "data+science"}
{"link": "/watch?v=215fJQKUXwY", "title": "Data Scientist Degree", "query": "data+science"}
{"link": "/watch?v=31ozT2hUqOw", "title": "Learn Data Science Online with DataCamp!", "query": "data+science"}
{"link": "/watch?v=mxc4cquvRUk", "title": "Complete Data Science Career Guide with Former Facebook Data Scientist Joma", "query": "data+science"}
{"link": "/watch?v=46RjXawJQgg", "title": "Effective Data Science with PyCharm", "query": "data+science"}
{"link": "/watch?v=0CGQvdAbNcc", "title": "How Netflix Data Science Powers Global Entertainment | Caitlin Smallwood (Netflix)", "query": "data+science"}
{"link": "/watch?v=0qaS5JyU77E", "title": "Real Talk with Startup Chief Data Scientist (10 years of experience)", "query": "data+science"}
{"link": "/watch?v=TVFpKvswngo", "title": "TU Dublin Ireland - MSc Data Analytics - Arshdeep from India", "query": "data+science"}
{"link": "/watch?v=u8gDK-riNvE", "title": "Der Weg zum Senior Data Scientist von Dr. Daniel Paurat & Einblicke in das Jobfeld", "query": "data+science"}
{"link": "/watch?v=4CpmB4TR2C4", "title": "Work From Home Data Scientist: Day in the Life", "query": "data+science"}
{"link": "/watch?v=M5v1nXiUaOI", "title": "Why I left my Data Science Job at FANG (Facebook Amazon Netflix Google)", "query": "data+science"}
{"link": "/watch?v=DpngHc31a5Y", "title": "Rethinking Business: Data Analytics With Google Cloud (Cloud Next '19)", "query": "data+science"}
{"link": "/watch?v=jls6_PqLzmw", "title": "Data Scientist l Data Analyst c'est quoi exactement ? (m\u00e9tier, formation, salaire, Big Data ...)", "query": "data+science"}
{"link": "/watch?v=T3jkSFG5-gQ", "title": "Python Basics for Data Science - String Operations", "query": "data+science"}
{"link": "/watch?v=WZ2ZBzcOSBk", "title": "Python Basics for Data Science - Your First Program", "query": "data+science"}
{"link": "/watch?v=LDvXi_w3iT4", "title": "Python Basics for Data Science - Expressions and Variables", "query": "data+science"}
{"link": "/watch?v=JC3urnvKanI", "title": "Learn Python Basics for Data Science from IBM", "query": "data+science"}
{"link": "/watch?v=5b9Z8toVaAU", "title": "O que \u00e9 Data Science? #HipstersPontoTube", "query": "data+science"}
{"link": "/watch?v=KdgQvgE3ji4", "title": "Data Science in 8 Minutes | Data Science for Beginners | What is Data Science? | Edureka", "query": "data+science"}
{"link": "/watch?v=74oUwKezFho", "title": "Statistics full Course for Beginner | Statistics for Data Science", "query": "data+science"}
{"link": "/watch?v=avO8q7LT0DI", "title": "data science course for beginners", "query": "data+science"}
{"link": "/watch?v=pBgLNb5SzVY", "title": "Business Understanding - Data Science Methodology by IBM #2", "query": "data+science"}
{"link": "/watch?v=lxnRfX6KLbQ", "title": "Joint BSc in Data Science | Tilburg University and Eindhoven University of Technology", "query": "data+science"}
{"link": "/watch?v=uUAuH6OvuAQ", "title": "Data Science Education as a Scalable Public Health Intervention", "query": "data+science"}
{"link": "/watch?v=nUMO7_h7StU", "title": "Webinar: Data Science for Beginners - How to Get Started", "query": "data+science"}
{"link": "/watch?v=aGu0fbkHhek", "title": "Data Science Full Course | Learn Data Science in 3 Hours | Data Science for Beginners | Edureka", "query": "data+science"}
{"link": "/watch?v=8K6tS4xNrJU", "title": "Nubank Data Science team and career | Nubank ML Meetup", "query": "data+science"}
{"link": "/watch?v=PhtD_5KGARw", "title": "Dataquest Review: Worth buying their DATA SCIENCE Course?", "query": "data+science"}
{"link": "/watch?v=Uz26FqGE9tE", "title": "Data Scientist vs Data Analyst vs Data Engineer - Role & Responsibility, Skills, Salary |Simplilearn", "query": "data+science"}
{"link": "/watch?v=k6QWYwOvJs0", "title": "Data Science Interview Questions (with answers)", "query": "data+science"}
{"link": "/watch?v=Ph5DHoWHW2c", "title": "DATA SCIENTIST: Competenze Richieste", "query": "data+science"}
{"link": "/watch?v=OcVMcsK43U0", "title": "Eduardo Graells: \"Data Science en Chile\" | Starsconf 2018", "query": "data+science"}
{"link": "/watch?v=UXi8Ml2UoYk", "title": "What Do You Need to Become a Data Scientist in 2020?", "query": "data+science"}
{"link": "/watch?v=nf4Wm7pFfu4", "title": "Spatial Analysis and Data Science", "query": "data+science"}
{"link": "/watch?v=JbNegqgZKCw", "title": "Real Talk with Google Data Scientist (with a PhD in Physics)", "query": "data+science"}
{"link": "/watch?v=N6BghzuFLIg", "title": "Intro to Data Science - Crash Course for Beginners", "query": "data+science"}
{"link": "/watch?v=DPAsYtUHkkM", "title": "Predictive Analytics Using R | Data Science With R | Data Science Certification Training | Edureka", "query": "data+science"}
{"link": "/watch?v=nLw1RNvfElg", "title": "Introduction - Data Analysis and Data Science with Python and Pandas", "query": "data+science"}
{"link": "/watch?v=qcqT5SqE8BY", "title": "Data Science in Hindi", "query": "data+science"}
{"link": "/watch?v=nAWUFkDJLIs", "title": "Data Science VS Machine Learning | Difference between Data Science & Machine learning | KnowledgeHut", "query": "data+science"}
{"link": "/watch?v=zLSpuOWwmvE", "title": "DATA SCIENCE BOOTCAMPS: GOOD OR BAD?", "query": "data+science"}
{"link": "/watch?v=0W_d_Utak78", "title": "#PeluangKarier: Apakah Data Science adalah karier yang paling dicari di 2019?", "query": "data+science"}
{"link": "/watch?v=AycMp7X9Z20", "title": "Les 10 notions math\u00e9matiques \u00e0 connaitre en tant que Data Scientist", "query": "data+science"}
{"link": "/watch?v=cZv091_n-5k", "title": "Learn Data Science Online!", "query": "data+science"}
{"link": "/watch?v=eTxyviU0Ddo", "title": "You can learn DATA SCIENCE for FREE. I'll show you how.", "query": "data+science"}
{"link": "/watch?v=0cSFjaXMHpM", "title": "Data Science vs Machine Learning \u2013 What\u2019s The Difference? | Data Science Course | Edureka", "query": "data+science"}
{"link": "/watch?v=4O3hedO8wjs", "title": "Data Science Tutorial in Hindi | What is Data Science? | Edureka Hindi", "query": "data+science"}
{"link": "/watch?v=uGkIhx8KhbU", "title": "SQL Database Fundamentals for Data Science", "query": "data+science"}
{"link": "/watch?v=mcy2dQ3v6R4", "title": "Data Scientist vs Data Analyst: What's the difference?", "query": "data+science"}
{"link": "/watch?v=TPMlZxRRaBQ", "title": "Tableau for Data Science and Data Visualization - Crash Course Tutorial", "query": "data+science"}
{"link": "/watch?v=xtOg44r6dsE", "title": "Supervised vs Unsupervised vs Reinforcement Learning | Data Science Certification Training | Edureka", "query": "data+science"}
{"link": "/watch?v=0X2H-ZD_Chw", "title": "Data Scientist: Reality vs Expectations 2 ($110,000 Median Salary)", "query": "data+science"}
{"link": "/watch?v=umq9kCJFavw", "title": "Como \u00e9 ser data scientist no Nubank", "query": "data+science"}
{"link": "/watch?v=em8nBc-zRaM", "title": "Skills Needed For Data Scientist and Data Analyst", "query": "data+science"}
{"link": "/watch?v=cSdDfzFZV7M", "title": "COMMENT DEVENIR DATA SCIENTIST ou data analyst : m\u00e9tier, formation, salaire et Big Data !", "query": "data+science"}
{"link": "/watch?v=OCwZyYH14uw", "title": "Linear Regression vs Logistic Regression | Data Science Training | Edureka", "query": "data+science"}
{"link": "/watch?v=fWE93St-RaQ", "title": "Data Analytics For Beginners | Introduction To Data Analytics | Data Analytics Using R | Edureka", "query": "data+science"}
{"link": "/watch?v=5BVebXXb2o4", "title": "Natural Language Processing (Part 1): Introduction to NLP & Data Science", "query": "data+science"}
{"link": "/watch?v=DqMiQB1f1Rs", "title": "The Truth About Data Science Salary For Graduates | #047", "query": "data+science"}
{"link": "/watch?v=1QH7iukKZgg", "title": "Part 2 | Data Analytics for Beginners | Analytics Lifecycle", "query": "data+science"}
{"link": "/watch?v=17S8wGuK7d0", "title": "Data Scientist - Il mio lavoro in Canada", "query": "data+science"}
{"link": "/watch?v=zFMgpxG-chM", "title": "What is A/B Testing? | Data Science in Minutes", "query": "data+science"}
{"link": "/watch?v=dYZJxhYjBE8", "title": "Real Talk with Instagram Data Scientist", "query": "data+science"}
{"link": "/watch?v=nh4RgxaiKgI", "title": "Data Scientist Roles and Responsibilities | Data Scientist Career | Data Science Training | Edureka", "query": "data+science"}
{"link": "/watch?v=Rr4i9l80Ecs", "title": "A day in the life of a data science student | EXAM WEEK", "query": "data+science"}
{"link": "/watch?v=SH6cOL-HRHU", "title": "How to Get a Data Science Internship | Essential Tips for People Starting a Career in Data Science", "query": "data+science"}
{"link": "/watch?v=OHhoLhYW2cg", "title": "5 Steps to Pass Data Science Interviews", "query": "data+science"}
{"link": "/watch?v=FQdIV437CRU", "title": "Data Science Projects Tutorial | Data Science Projects In R | Data Science Training | Edureka", "query": "data+science"}
{"link": "/watch?v=Vs_ko7lF71w", "title": "DATA SCIENCE \u0b8e\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd \u0b8e\u0ba9\u0bcd\u0ba9? (Tamil)", "query": "data+science"}
{"link": "/watch?v=MGnXMu9GFig", "title": "Best Online Data Science Courses", "query": "data+science"}
{"link": "/watch?v=GFsvyAwjrRk", "title": "Is MS in Business Analytics or MS in Data Science really for you? Think again!", "query": "data+science"}
{"link": "/watch?v=nhyomoZS30M", "title": "Data Analyst Roles & Responsibilities | Data Analyst Skills | Data Analytics Certification | Edureka", "query": "data+science"}
{"link": "/watch?v=39hNjnhY7cY", "title": "Privacy in Data Science", "query": "data+science"}
{"link": "/watch?v=ioZNNfxXXqo", "title": "Data Analyst vs Data Engineer vs Data Scientist | Data Analytics Masters Program | Edureka", "query": "data+science"}
{"link": "/watch?v=-rSMFbK98tg", "title": "Big Data & Data Analytics \u0e04\u0e37\u0e2d\u0e2d\u0e30\u0e44\u0e23 | DGTH", "query": "data+science"}
{"link": "/watch?v=oUvvfHkXyOA", "title": "How data transformed the NBA | The Economist", "query": "data+science"}
{"link": "/watch?v=X3paOmcrTjQ", "title": "Data Science In 5 Minutes | Data Science For Beginners | What Is Data Science? | Simplilearn", "query": "data+science"}
{"link": "/watch?v=oeKBs41MkNo", "title": "Decision Tree Important Points ll Machine Learning ll DMW ll Data Analytics ll Explained in Hindi", "query": "data+science"}
{"link": "/watch?v=00xLZuxTzQc", "title": "What are the different roles in data science?", "query": "data+science"}
{"link": "/watch?v=tthmiUvPwGo", "title": "\u00bfC\u00f3mo desarrollarse como Data Scientist en Per\u00fa? - Big Data Analytics Summit 2018", "query": "data+science"}
{"link": "/watch?v=23QtdnfhBRY", "title": "Top 6 Tool Types For Data Analysis / Data Science - Save hours by using the right tool", "query": "data+science"}
{"link": "/watch?v=ovPheIbY7U8", "title": "AWS re:Invent 2018: Big Data Analytics Architectural Patterns & Best Practices (ANT201-R1)", "query": "data+science"}
{"link": "/watch?v=zA0OklGZlJ8", "title": "Energy Data Analytics", "query": "data+science"}
{"link": "/watch?v=Opc9D-CTPuQ", "title": "Porque estudar Data Science com a Udacity e a Tableau - TecMundo", "query": "data+science"}
{"link": "/watch?v=X_N3zIIJyAk", "title": "How to get a Data Science Job", "query": "data+science"}
{"link": "/watch?v=3fkT3WSqVH0", "title": "Data Science Information Session: Fall 2018", "query": "data+science"}
{"link": "/watch?v=gGce2JDbJAQ", "title": "075. \u041a\u0430\u0440\u044c\u0435\u0440\u0430 \u0432 data science: \u0442\u0438\u043f\u0438\u0447\u043d\u044b\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u043d\u0430 \u0441\u043e\u0431\u0435\u0441\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0438 \u2013 \u0412\u0430\u043b\u0435\u0440\u0438\u0439 \u0411\u0430\u0431\u0443\u0448\u043a\u0438\u043d", "query": "data+science"}
{"link": "/watch?v=lDkTNURDIaY", "title": "074. \u0427\u0435\u043c \u043e\u0442\u043b\u0438\u0447\u0430\u044e\u0442\u0441\u044f data analyst, data engineer \u0438 data scientist \u2013 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041d\u0430\u0442\u0451\u043a\u0438\u043d", "query": "data+science"}
{"link": "/watch?v=L_SZQKv5Cl0", "title": "Ci\u00eancia de dados: como \u00e9 criar o primeiro projeto de Data Science - TecMundo", "query": "data+science"}
{"link": "/watch?v=btjp5PE96Sw", "title": "I Passed the Final Data Science Assignment! | Learning Intelligence 46", "query": "data+science"}
{"link": "/watch?v=5JZsSNLXXuE", "title": "Data Science Interview Questions | Data Science Interview Questions And Answers | Simplilearn", "query": "data+science"}
{"link": "/watch?v=cXP_i5-nTXg", "title": "Python for Data Analysis Tutorial - Setup, Read File & First Chart", "query": "data+science"}
{"link": "/watch?v=h8Na5p08rw4", "title": "MicroMasters\u00ae Program in Statistics and Data Science", "query": "data+science"}
{"link": "/watch?v=9rDhY1P3YLA", "title": "Learn Data Science in 3 Months", "query": "data+science"}
{"link": "/watch?v=dDZmLb2UTd4", "title": "[HINDI] JOB OF DATA SCIENTIST", "query": "data+science"}
{"link": "/watch?v=nRtOMTnBz_Y", "title": "Data science applications with TabPy/R", "query": "data+science"}
{"link": "/watch?v=vmEHCJofslg", "title": "Complete Python Pandas Data Science Tutorial! (Reading CSV/Excel files, Sorting, Filtering, Groupby)", "query": "data+science"}
{"link": "/watch?v=ETvvwTuiIps", "title": "R vs Python for Data Science, Data Analytics, Machine Learning Building Apps, Moving to Production", "query": "data+science"}
{"link": "/watch?v=SbY1DhAgyGE", "title": "Data Scientist : \u0e19\u0e31\u0e01\u0e27\u0e34\u0e17\u0e22\u0e32\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", "query": "data+science"}
{"link": "/watch?v=D9y6dcy0xK8", "title": "ARIMA in Python - Time Series Forecasting Part 2 - Datamites Data Science Projects", "query": "data+science"}
{"link": "/watch?v=YzMV--KhI2I", "title": "Time Series Forecasting Theory Part 1 - Datamites Data Science Projects", "query": "data+science"}
{"link": "/watch?v=IV2iqFIuwVA", "title": "Big Data Vs Data Science Vs Data Analytics | Data Science vs Machine Learning | Intellipaat", "query": "data+science"}
{"link": "/watch?v=stgQeAd8mdI", "title": "IBM Data Science Professional Certificate", "query": "data+science"}
{"link": "/watch?v=js6C2mLXEDw", "title": "R vs Python | Best Programming Language for Data Science and Analysis | Edureka", "query": "data+science"}
{"link": "/watch?v=Y_ZZv--OI0s", "title": "Data Scientist From Tinder Gives Dating Advice", "query": "data+science"}
{"link": "/watch?v=kx-pcQAPvoc", "title": "Hypothesis testing with Applications in Data Science", "query": "data+science"}
{"link": "/watch?v=n8HbUUc51fc", "title": "Drag & Drop Data Science", "query": "data+science"}
{"link": "/watch?v=3vwWISB85Bc", "title": "Big Data vs Data Science vs Data Analytics | Demystifying The Difference | Edureka", "query": "data+science"}
{"link": "/watch?v=k2RqjYCTt6k", "title": "Top 3 Programming Languages For Data Science", "query": "data+science"}
{"link": "/watch?v=__zV0fraV5M", "title": "Business Intelligence Vs Data Science (Data Analytics) (HINDI)", "query": "data+science"}
{"link": "/watch?v=tqv3sL67sC8", "title": "Data Wrangling With Python Using Pandas, Data Science For Beginners, Statistics Using Python \ud83d\udc0d\ud83d\udc3c", "query": "data+science"}
{"link": "/watch?v=7ajuRNPiSvs", "title": "MASTERS IN PROJECT MANAGEMENT AND DATA SCIENCE, HTW BERLIN, GERMANY", "query": "data+science"}
{"link": "/watch?v=skJPPYbG3BQ", "title": "Big Data Applications | Big Data Analytics Use-Cases | Big Data Tutorial for Beginners | Edureka", "query": "data+science"}
{"link": "/watch?v=-AkBfBWr_Gw", "title": "Can You Become a Data Scientist?", "query": "data+science"}
{"link": "/watch?v=xMWbL3wd4wo", "title": "Introducing Codecademy's Data Science Path", "query": "data+science"}
{"link": "/watch?v=2Sb1Gvo5si8", "title": "Linear Regression in R | Linear Regression in R With Example | Data Science Algorithms | Simplilearn", "query": "data+science"}
{"link": "/watch?v=PEvyYdtdi88", "title": "Learn about the online Master of Computer Science in Data Science", "query": "data+science"}
{"link": "/watch?v=-Lazy3r6FKk", "title": "My 5 favourite Coursera Courses for Python, Data Science and Machine Learning", "query": "data+science"}
{"link": "/watch?v=oxSrzwQWIME", "title": "How To Get A Job In Data Science", "query": "data+science"}
{"link": "/watch?v=8OixQrWRiXo", "title": "Top 5 Python Libraries For Data Science | Python Libraries Explained | Python Tutorial | Simplilearn", "query": "data+science"}
{"link": "/watch?v=Db24-JRN3ls", "title": "Introduction to Data, Analytics, and Machine Learning", "query": "data+science"}
{"link": "/watch?v=Grrfl4mb2mc", "title": "Data Science em uma institui\u00e7\u00e3o financeira moderna - Sandor Caetano", "query": "data+science"}
{"link": "/watch?v=Ck0ozfJV9-g", "title": "A Day In The Life Of A Data Scientist", "query": "data+science"}
{"link": "/watch?v=ykSILAQQu6o", "title": "O que \u00e9 ci\u00eancia de dados | Nerdologia Tech", "query": "data+science"}
{"link": "/watch?v=SLE0vz85Rqo", "title": "Intro to Julia for data science", "query": "data+science"}
{"link": "/watch?v=6TpQI0OEzu8", "title": "VIDA DE DATA SCIENTIST | AFINAL O QUE FAZ UM CIENTISTA DE DADOS | DIGITAL HOUSE BRASIL", "query": "data+science"}
{"link": "/watch?v=6kZ-OPLNcgE", "title": "KNN Algorithm using Python | How KNN Algorithm works | Python Data Science Training | Edureka", "query": "data+science"}
{"link": "/watch?v=yc6VvRVzSJI", "title": "10 Data Science Projects in the Retail Industry", "query": "data+science"}
{"link": "/watch?v=vKANtVUE1dM", "title": "Data Scientist Apartment Tour in Silicon Valley", "query": "data+science"}
{"link": "/watch?v=z4vDLNMDFE4", "title": "NumPy Indexing and Slicing Arrays, Boolean Mask Arrays , Numpy Python Data Science", "query": "data+science"}