-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.json
2036 lines (2036 loc) · 116 KB
/
search.json
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
[
{
"title": "10 Advanced Git Techniques",
"url": "https://www.kdnuggets.com/10-advanced-git-techniques",
"category": "Programming",
"content": "10 Advanced Git Techniques - Programming article about 10 advanced git techniques"
},
{
"title": "10 ChatGPT Plugins for Data Science Cheat Sheet",
"url": "https://www.kdnuggets.com/2023/06/10-chatgpt-plugins-data-science-cheat-sheet.html",
"category": "Cheat Sheets",
"content": "10 ChatGPT Plugins for Data Science Cheat Sheet - Cheat Sheets article about 10 chatgpt plugins for data science cheat sheet"
},
{
"title": "10 ChatGPT Projects Cheat Sheet",
"url": "https://www.kdnuggets.com/10-chatgpt-projects-cheat-sheet",
"category": "Cheat Sheets",
"content": "10 ChatGPT Projects Cheat Sheet - Cheat Sheets article about 10 chatgpt projects cheat sheet"
},
{
"title": "10 Essential DevOps Tools Every Beginner Should Learn",
"url": "https://www.kdnuggets.com/10-essential-devops-tools-every-beginner-should-learn",
"category": "Programming",
"content": "10 Essential DevOps Tools Every Beginner Should Learn - Programming article about 10 essential devops tools every beginner should learn"
},
{
"title": "10 Free Resources on LLMs",
"url": "https://www.statology.org/10-free-resources-on-llms/",
"category": "Large Language Models (LLMs)",
"content": "10 Free Resources on LLMs - Large Language Models (LLMs) article about 10 free resources on llms"
},
{
"title": "10 GitHub Features That You Are Missing Out On",
"url": "https://www.kdnuggets.com/10-github-features-that-you-are-missing-out-on",
"category": "Programming",
"content": "10 GitHub Features That You Are Missing Out On - Programming article about 10 github features that you are missing out on"
},
{
"title": "10 GitHub Repositories for Deep Learning Enthusiasts",
"url": "https://www.kdnuggets.com/10-github-repositories-for-deep-learning-enthusiasts",
"category": "Machine Learning (ML)",
"content": "10 GitHub Repositories for Deep Learning Enthusiasts - Machine Learning (ML) article about 10 github repositories for deep learning enthusiasts"
},
{
"title": "10 GitHub Repositories to Master Computer Science",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-computer-science",
"category": "Career Advice",
"content": "10 GitHub Repositories to Master Computer Science - Career Advice article about 10 github repositories to master computer science"
},
{
"title": "10 GitHub Repositories to Master Computer Vision",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-computer-vision",
"category": "Computer Vision",
"content": "10 GitHub Repositories to Master Computer Vision - Computer Vision article about 10 github repositories to master computer vision"
},
{
"title": "10 GitHub Repositories to Master Data Engineering",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-data-engineering",
"category": "Data Engineering",
"content": "10 GitHub Repositories to Master Data Engineering - Data Engineering article about 10 github repositories to master data engineering"
},
{
"title": "10 GitHub Repositories to Master Data Science",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-data-science",
"category": "Data Science",
"content": "10 GitHub Repositories to Master Data Science - Data Science article about 10 github repositories to master data science"
},
{
"title": "10 GitHub Repositories to Master MLOps",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-mlops",
"category": "Career Advice",
"content": "10 GitHub Repositories to Master MLOps - Career Advice article about 10 github repositories to master mlops"
},
{
"title": "10 GitHub Repositories to Master Machine Learning",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-machine-learning",
"category": "Career Advice",
"content": "10 GitHub Repositories to Master Machine Learning - Career Advice article about 10 github repositories to master machine learning"
},
{
"title": "10 GitHub Repositories to Master Math",
"url": "https://www.kdnuggets.com/10-github-repositories-master-math",
"category": "Career Advice",
"content": "10 GitHub Repositories to Master Math - Career Advice article about 10 github repositories to master math"
},
{
"title": "10 GitHub Repositories to Master Natural Language Processing (NLP)",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-natural-language-processing-nlp",
"category": "Natural Language Processing (NLP)",
"content": "10 GitHub Repositories to Master Natural Language Processing (NLP) - Natural Language Processing (NLP) article about 10 github repositories to master natural language processing (nlp)"
},
{
"title": "10 GitHub Repositories to Master Python",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-python",
"category": "Career Advice",
"content": "10 GitHub Repositories to Master Python - Career Advice article about 10 github repositories to master python"
},
{
"title": "10 GitHub Repositories to Master Reinforcement Learning",
"url": "https://www.kdnuggets.com/10-github-repositories-master-reinforcement-learning",
"category": "Machine Learning (ML)",
"content": "10 GitHub Repositories to Master Reinforcement Learning - Machine Learning (ML) article about 10 github repositories to master reinforcement learning"
},
{
"title": "10 GitHub Repositories to Master SQL",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-sql",
"category": "SQL",
"content": "10 GitHub Repositories to Master SQL - SQL article about 10 github repositories to master sql"
},
{
"title": "10 GitHub Repositories to Master Statistics",
"url": "https://www.kdnuggets.com/10-github-repositories-to-master-statistics",
"category": "Data Science",
"content": "10 GitHub Repositories to Master Statistics - Data Science article about 10 github repositories to master statistics"
},
{
"title": "10 Jupyter Notebook Tips and Tricks for Data Scientists",
"url": "https://www.kdnuggets.com/2023/06/10-jupyter-notebook-tips-tricks-data-scientists.html",
"category": "Data Science",
"content": "10 Jupyter Notebook Tips and Tricks for Data Scientists - Data Science article about 10 jupyter notebook tips and tricks for data scientists"
},
{
"title": "10 Most Asked Data Science Interview Questions",
"url": "https://www.statology.org/10-most-asked-data-science-interview-questions/",
"category": "Data Science",
"content": "10 Most Asked Data Science Interview Questions - Data Science article about 10 most asked data science interview questions"
},
{
"title": "12 LLM Projects For All Levels",
"url": "https://www.datacamp.com/blog/llm-projects",
"category": "Large Language Models (LLMs)",
"content": "12 LLM Projects For All Levels - Large Language Models (LLMs) article about 12 llm projects for all levels"
},
{
"title": "12 VSCode Tips and Tricks for Python Development",
"url": "https://www.kdnuggets.com/2023/05/12-vscode-tips-tricks-python-development.html",
"category": "Python",
"content": "12 VSCode Tips and Tricks for Python Development - Python article about 12 vscode tips and tricks for python development"
},
{
"title": "25 Free Books to Master SQL, Python, Data Science, Machine Learning, and Natural Language Processing",
"url": "https://www.kdnuggets.com/25-free-books-to-master-sql-python-data-science-machine-learning-and-natural-language-processing",
"category": "Career Advice",
"content": "25 Free Books to Master SQL, Python, Data Science, Machine Learning, and Natural Language Processing - Career Advice article about 25 free books to master sql, python, data science, machine learning, and natural language processing"
},
{
"title": "25 Free Courses to Master Data Science, Data Engineering, Machine Learning, MLOps, and Generative AI",
"url": "https://www.kdnuggets.com/25-free-courses-to-master-data-science-data-engineering-machine-learning-mlops-and-generative-ai",
"category": "Career Advice",
"content": "25 Free Courses to Master Data Science, Data Engineering, Machine Learning, MLOps, and Generative AI - Career Advice article about 25 free courses to master data science, data engineering, machine learning, mlops, and generative ai"
},
{
"title": "26 Data Science Interview Questions You Should Know",
"url": "https://www.kdnuggets.com/26-data-science-interview-questions-you-should-know",
"category": "Career Advice",
"content": "26 Data Science Interview Questions You Should Know - Career Advice article about 26 data science interview questions you should know"
},
{
"title": "28 Top Data Scientist Interview Questions For All Levels",
"url": "https://www.datacamp.com/blog/data-scientist-interview-questions",
"category": "Career Advice",
"content": "28 Top Data Scientist Interview Questions For All Levels - Career Advice article about 28 top data scientist interview questions for all levels"
},
{
"title": "3 Free Platforms for Personalized ChatGPT Experience",
"url": "https://www.kdnuggets.com/2023/05/3-free-platform-personalized-chatgpt-experience.html",
"category": "Artificial Intelligence (AI)",
"content": "3 Free Platforms for Personalized ChatGPT Experience - Artificial Intelligence (AI) article about 3 free platforms for personalized chatgpt experience"
},
{
"title": "3 Julia Packages for Data Visualization",
"url": "https://www.kdnuggets.com/2023/02/3-julia-packages-data-visualization.html",
"category": "Programming",
"content": "3 Julia Packages for Data Visualization - Programming article about 3 julia packages for data visualization"
},
{
"title": "3 Things I Wish I Knew When I Started Data Science",
"url": "https://www.kdnuggets.com/2023/01/3-things-wish-knew-started-data-science.html",
"category": "Career Advice",
"content": "3 Things I Wish I Knew When I Started Data Science - Career Advice article about 3 things i wish i knew when i started data science"
},
{
"title": "3 Ways of Building Python Projects using GPT-4o",
"url": "https://www.kdnuggets.com/3-ways-of-building-python-projects-using-gpt-4o",
"category": "Artificial Intelligence (AI)",
"content": "3 Ways of Building Python Projects using GPT-4o - Artificial Intelligence (AI) article about 3 ways of building python projects using gpt-4o"
},
{
"title": "3 Ways of Using Gemma 2 Locally",
"url": "https://machinelearningmastery.com/3-ways-of-using-gemma-2-locally/",
"category": "Large Language Models (LLMs)",
"content": "3 Ways of Using Gemma 2 Locally - Large Language Models (LLMs) article about 3 ways of using gemma 2 locally"
},
{
"title": "3 Ways to Access Claude AI for Free",
"url": "https://www.kdnuggets.com/2023/06/3-ways-access-claude-ai-free.html",
"category": "Artificial Intelligence (AI)",
"content": "3 Ways to Access Claude AI for Free - Artificial Intelligence (AI) article about 3 ways to access claude ai for free"
},
{
"title": "3 Ways to Access GPT-4 for Free",
"url": "https://www.kdnuggets.com/2023/05/3-ways-access-gpt4-free.html",
"category": "Artificial Intelligence (AI)",
"content": "3 Ways to Access GPT-4 for Free - Artificial Intelligence (AI) article about 3 ways to access gpt-4 for free"
},
{
"title": "3 Ways to Generate Hyper-Realistic Faces Using Stable Diffusion",
"url": "https://www.kdnuggets.com/3-ways-to-generate-hyper-realistic-faces-using-stable-diffusion",
"category": "Computer Vision",
"content": "3 Ways to Generate Hyper-Realistic Faces Using Stable Diffusion - Computer Vision article about 3 ways to generate hyper-realistic faces using stable diffusion"
},
{
"title": "5 Advance Projects for Data Science Portfolio",
"url": "https://www.kdnuggets.com/2023/03/5-advance-projects-data-science-portfolio.html",
"category": "Data Science",
"content": "5 Advance Projects for Data Science Portfolio - Data Science article about 5 advance projects for data science portfolio"
},
{
"title": "5 Airflow Alternatives for Data Orchestration",
"url": "https://www.kdnuggets.com/5-airflow-alternatives-for-data-orchestration",
"category": "Data Engineering",
"content": "5 Airflow Alternatives for Data Orchestration - Data Engineering article about 5 airflow alternatives for data orchestration"
},
{
"title": "5 Amazing & Free LLMs Playgrounds You Need to Try in 2023",
"url": "https://www.kdnuggets.com/5-amazing-free-llms-playgrounds-you-need-to-try-in-2023",
"category": "Artificial Intelligence (AI)",
"content": "5 Amazing & Free LLMs Playgrounds You Need to Try in 2023 - Artificial Intelligence (AI) article about 5 amazing & free llms playgrounds you need to try in 2023"
},
{
"title": "5 Best End-to-End Open Source MLOps Tools",
"url": "https://www.kdnuggets.com/5-best-end-to-end-open-source-mlops-tools",
"category": "Machine Learning Operations (MLOps)",
"content": "5 Best End-to-End Open Source MLOps Tools - Machine Learning Operations (MLOps) article about 5 best end-to-end open source mlops tools"
},
{
"title": "5 Common Data Science Mistakes and How to Avoid Them",
"url": "https://www.kdnuggets.com/5-common-data-science-mistakes-and-how-to-avoid-them",
"category": "Data Science",
"content": "5 Common Data Science Mistakes and How to Avoid Them - Data Science article about 5 common data science mistakes and how to avoid them"
},
{
"title": "5 Essential AI Tools for Data Science",
"url": "https://www.kdnuggets.com/2023/04/5-essential-ai-tools-data-science.html",
"category": "Data Science",
"content": "5 Essential AI Tools for Data Science - Data Science article about 5 essential ai tools for data science"
},
{
"title": "5 Free Books on Machine Learning Algorithms You Must Read",
"url": "https://machinelearningmastery.com/5-free-books-on-machine-learning-algorithms-you-must-read/",
"category": "Career Advice",
"content": "5 Free Books on Machine Learning Algorithms You Must Read - Career Advice article about 5 free books on machine learning algorithms you must read"
},
{
"title": "5 Free Books to Learn Statistics",
"url": "https://www.statology.org/5-free-books-learn-statistics/",
"category": "Career Advice",
"content": "5 Free Books to Learn Statistics - Career Advice article about 5 free books to learn statistics"
},
{
"title": "5 Free Courses on Reinforcement Learning",
"url": "https://machinelearningmastery.com/5-free-courses-on-reinforcement-learning/",
"category": "Career Advice",
"content": "5 Free Courses on Reinforcement Learning - Career Advice article about 5 free courses on reinforcement learning"
},
{
"title": "5 Free Data Science Books You Must Read in 2023",
"url": "https://www.kdnuggets.com/2023/01/5-free-data-science-books-must-read-2023.html",
"category": "Career Advice",
"content": "5 Free Data Science Books You Must Read in 2023 - Career Advice article about 5 free data science books you must read in 2023"
},
{
"title": "5 Free Datasets to Start Your Machine Learning Projects",
"url": "https://machinelearningmastery.com/5-free-datasets-start-your-machine-learning-projects/",
"category": "Machine Learning (ML)",
"content": "5 Free Datasets to Start Your Machine Learning Projects - Machine Learning (ML) article about 5 free datasets to start your machine learning projects"
},
{
"title": "5 Free Julia Books For Data Science",
"url": "https://www.kdnuggets.com/2023/06/5-free-julia-books-data-science.html",
"category": "Career Advice",
"content": "5 Free Julia Books For Data Science - Career Advice article about 5 free julia books for data science"
},
{
"title": "5 Free Online Courses to Learn Data Science Fundamentals",
"url": "https://www.kdnuggets.com/5-free-online-courses-to-learn-data-science-fundamentals",
"category": "Career Advice",
"content": "5 Free Online Courses to Learn Data Science Fundamentals - Career Advice article about 5 free online courses to learn data science fundamentals"
},
{
"title": "5 Free Platforms for Building a Strong Data Science Portfolio",
"url": "https://www.kdnuggets.com/5-free-platforms-for-building-a-strong-data-science-portfolio",
"category": "Career Advice",
"content": "5 Free Platforms for Building a Strong Data Science Portfolio - Career Advice article about 5 free platforms for building a strong data science portfolio"
},
{
"title": "5 Free Platforms to Collaborate on Machine Learning Projects",
"url": "https://machinelearningmastery.com/5-free-platforms-to-collaborate-on-machine-learning-projects/",
"category": "Machine Learning (ML)",
"content": "5 Free Platforms to Collaborate on Machine Learning Projects - Machine Learning (ML) article about 5 free platforms to collaborate on machine learning projects"
},
{
"title": "5 Free Tools For Detecting ChatGPT, GPT3, and GPT2",
"url": "https://www.kdnuggets.com/2023/02/5-free-tools-detecting-chatgpt-gpt3-gpt2.html",
"category": "Artificial Intelligence (AI)",
"content": "5 Free Tools For Detecting ChatGPT, GPT3, and GPT2 - Artificial Intelligence (AI) article about 5 free tools for detecting chatgpt, gpt3, and gpt2"
},
{
"title": "5 Highest-paid Languages to Learn This Year",
"url": "https://www.kdnuggets.com/2023/07/5-highestpaid-languages-learn-year.html",
"category": "Programming",
"content": "5 Highest-paid Languages to Learn This Year - Programming article about 5 highest-paid languages to learn this year"
},
{
"title": "5 MIT Statistics Courses That Are Free",
"url": "https://www.statology.org/5-mit-statistics-courses-free/",
"category": "Career Advice",
"content": "5 MIT Statistics Courses That Are Free - Career Advice article about 5 mit statistics courses that are free"
},
{
"title": "5 Mistakes I Made While Switching to Data Science Career",
"url": "https://www.kdnuggets.com/2023/07/5-mistakes-made-switching-data-science-career.html",
"category": "Career Advice",
"content": "5 Mistakes I Made While Switching to Data Science Career - Career Advice article about 5 mistakes i made while switching to data science career"
},
{
"title": "5 More Command Line Tools for Data Science",
"url": "https://www.kdnuggets.com/2023/03/5-command-line-tools-data-science.html",
"category": "Data Science",
"content": "5 More Command Line Tools for Data Science - Data Science article about 5 more command line tools for data science"
},
{
"title": "5 Portfolio Projects for Final Year Data Science Students",
"url": "https://www.kdnuggets.com/5-portfolio-projects-for-final-year-data-science-students",
"category": "Career Advice",
"content": "5 Portfolio Projects for Final Year Data Science Students - Career Advice article about 5 portfolio projects for final year data science students"
},
{
"title": "5 Projects Build with Generative Models and Open Source Tools",
"url": "https://www.datacamp.com/blog/5-projects-you-can-build-with-generative-ai-models",
"category": "Artificial Intelligence (AI)",
"content": "5 Projects Build with Generative Models and Open Source Tools - Artificial Intelligence (AI) article about 5 projects build with generative models and open source tools"
},
{
"title": "5 Regularization Techniques You Should Know",
"url": "https://www.statology.org/5-regularization-techniques/",
"category": "Machine Learning (ML)",
"content": "5 Regularization Techniques You Should Know - Machine Learning (ML) article about 5 regularization techniques you should know"
},
{
"title": "5 Super Cheat Sheets to Master Data Science",
"url": "https://www.kdnuggets.com/5-super-cheat-sheets-to-master-data-science",
"category": "Career Advice",
"content": "5 Super Cheat Sheets to Master Data Science - Career Advice article about 5 super cheat sheets to master data science"
},
{
"title": "5 Tools to Help Build Your LLM Apps",
"url": "https://www.kdnuggets.com/5-tools-to-help-build-your-llm-apps",
"category": "Large Language Models (LLMs)",
"content": "5 Tools to Help Build Your LLM Apps - Large Language Models (LLMs) article about 5 tools to help build your llm apps"
},
{
"title": "5 Useful Loss Functions",
"url": "https://machinelearningmastery.com/5-useful-loss-functions/",
"category": "Machine Learning (ML)",
"content": "5 Useful Loss Functions - Machine Learning (ML) article about 5 useful loss functions"
},
{
"title": "5 Vector Similarity Search Algorithms for LLMs",
"url": "https://www.statology.org/5-vector-similarity-search-algorithms-llms/",
"category": "Large Language Models (LLMs)",
"content": "5 Vector Similarity Search Algorithms for LLMs - Large Language Models (LLMs) article about 5 vector similarity search algorithms for llms"
},
{
"title": "5 Ways To Use LLMs On Your Laptop ",
"url": "https://www.kdnuggets.com/5-ways-to-use-llms-on-your-laptop",
"category": "Artificial Intelligence (AI)",
"content": "5 Ways To Use LLMs On Your Laptop - Artificial Intelligence (AI) article about 5 ways to use llms on your laptop "
},
{
"title": "5 Ways You Can Use ChatGPT Vision for Data Analysis",
"url": "https://www.kdnuggets.com/5-ways-you-can-use-chatgpt-vision-for-data-analysis",
"category": "Data Science",
"content": "5 Ways You Can Use ChatGPT Vision for Data Analysis - Data Science article about 5 ways you can use chatgpt vision for data analysis"
},
{
"title": "5 Ways You Can Use ChatGPT’s Code Interpreter For Data Science",
"url": "https://www.kdnuggets.com/2023/08/5-ways-chatgpt-code-interpreter-data-science.html",
"category": "Data Science",
"content": "5 Ways You Can Use ChatGPT’s Code Interpreter For Data Science - Data Science article about 5 ways you can use chatgpt’s code interpreter for data science"
},
{
"title": "5 Ways to Access GPT-4o for Free",
"url": "https://www.kdnuggets.com/5-ways-to-access-gpt-4o-for-free",
"category": "Artificial Intelligence (AI)",
"content": "5 Ways to Access GPT-4o for Free - Artificial Intelligence (AI) article about 5 ways to access gpt-4o for free"
},
{
"title": "7 AI Portfolio Projects to Boost the Resume",
"url": "https://www.kdnuggets.com/7-ai-portfolio-projects-to-boost-the-resume",
"category": "Artificial Intelligence (AI)",
"content": "7 AI Portfolio Projects to Boost the Resume - Artificial Intelligence (AI) article about 7 ai portfolio projects to boost the resume"
},
{
"title": "7 Advanced AI Projects for Beginners",
"url": "https://www.kdnuggets.com/7-advanced-ai-projects-beginners",
"category": "Artificial Intelligence (AI)",
"content": "7 Advanced AI Projects for Beginners - Artificial Intelligence (AI) article about 7 advanced ai projects for beginners"
},
{
"title": "7 Best Tools for Machine Learning Experiment Tracking",
"url": "https://www.kdnuggets.com/2023/02/7-best-tools-machine-learning-experiment-tracking.html",
"category": "Machine Learning (ML)",
"content": "7 Best Tools for Machine Learning Experiment Tracking - Machine Learning (ML) article about 7 best tools for machine learning experiment tracking"
},
{
"title": "7 Computer Vision Projects for All Levels",
"url": "https://www.kdnuggets.com/7-computer-vision-projects-for-all-levels",
"category": "Computer Vision",
"content": "7 Computer Vision Projects for All Levels - Computer Vision article about 7 computer vision projects for all levels"
},
{
"title": "7 Data Engineering Tools for Beginners",
"url": "https://www.kdnuggets.com/7-data-engineering-tools-for-beginners",
"category": "Data Engineering",
"content": "7 Data Engineering Tools for Beginners - Data Engineering article about 7 data engineering tools for beginners"
},
{
"title": "7 End-to-End MLOps Platforms You Must Try in 2024",
"url": "https://www.kdnuggets.com/7-end-to-end-mlops-platforms-you-must-try-in-2024",
"category": "Machine Learning Operations (MLOps)",
"content": "7 End-to-End MLOps Platforms You Must Try in 2024 - Machine Learning Operations (MLOps) article about 7 end-to-end mlops platforms you must try in 2024"
},
{
"title": "7 Essential Generative AI Tools for Building Stand-Out AI Applications",
"url": "https://www.datacamp.com/blog/7-essential-generative-ai-tools-for-building-stand-out-ai-applications",
"category": "Artificial Intelligence (AI)",
"content": "7 Essential Generative AI Tools for Building Stand-Out AI Applications - Artificial Intelligence (AI) article about 7 essential generative ai tools for building stand-out ai applications"
},
{
"title": "7 Essential Python Libraries for MLOps",
"url": "https://www.kdnuggets.com/7-essential-python-libraries-mlops",
"category": "Machine Learning Operations (MLOps)",
"content": "7 Essential Python Libraries for MLOps - Machine Learning Operations (MLOps) article about 7 essential python libraries for mlops"
},
{
"title": "7 Exciting AI Projects for Beginner, Intermediate, and Advanced Learners",
"url": "https://www.datacamp.com/blog/7-ai-projects-for-all-levels",
"category": "Artificial Intelligence (AI)",
"content": "7 Exciting AI Projects for Beginner, Intermediate, and Advanced Learners - Artificial Intelligence (AI) article about 7 exciting ai projects for beginner, intermediate, and advanced learners"
},
{
"title": "7 Free Cloud IDE for Data Science That You Are Missing Out",
"url": "https://www.kdnuggets.com/7-free-cloud-ide-for-data-science-that-you-are-missing-out",
"category": "Data Science",
"content": "7 Free Cloud IDE for Data Science That You Are Missing Out - Data Science article about 7 free cloud ide for data science that you are missing out"
},
{
"title": "7 Free Data Science Platform for Beginners",
"url": "https://www.kdnuggets.com/7-free-data-science-platform-for-beginners",
"category": "Data Science",
"content": "7 Free Data Science Platform for Beginners - Data Science article about 7 free data science platform for beginners"
},
{
"title": "7 Free Online Python REPLs",
"url": "https://www.kdnuggets.com/7-free-online-python-repls",
"category": "Python",
"content": "7 Free Online Python REPLs - Python article about 7 free online python repls"
},
{
"title": "7 Free Resource to Master LLMs",
"url": "https://machinelearningmastery.com/7-free-resource-to-master-llms/",
"category": "Career Advice",
"content": "7 Free Resource to Master LLMs - Career Advice article about 7 free resource to master llms"
},
{
"title": "7 High Paying Side Hustles for Data Scientists",
"url": "https://www.kdnuggets.com/7-high-paying-side-hustles-for-data-scientists",
"category": "Career Advice",
"content": "7 High Paying Side Hustles for Data Scientists - Career Advice article about 7 high paying side hustles for data scientists"
},
{
"title": "7 Machine Learning Projects That Can Add Value to Any Resume",
"url": "https://machinelearningmastery.com/7-machine-learning-projects-that-can-add-value-to-any-resume/",
"category": "Machine Learning (ML)",
"content": "7 Machine Learning Projects That Can Add Value to Any Resume - Machine Learning (ML) article about 7 machine learning projects that can add value to any resume"
},
{
"title": "7 Modern SQL Databases You Must Know in 2024",
"url": "https://www.kdnuggets.com/7-modern-sql-database-you-must-know-in-2024",
"category": "Data Engineering",
"content": "7 Modern SQL Databases You Must Know in 2024 - Data Engineering article about 7 modern sql databases you must know in 2024"
},
{
"title": "7 Projects to Master Data Engineering",
"url": "https://www.kdnuggets.com/7-projects-master-data-engineering",
"category": "Data Engineering",
"content": "7 Projects to Master Data Engineering - Data Engineering article about 7 projects to master data engineering"
},
{
"title": "7 Steps to Mastering Data Engineering",
"url": "https://www.kdnuggets.com/7-steps-to-mastering-data-engineering",
"category": "Data Engineering",
"content": "7 Steps to Mastering Data Engineering - Data Engineering article about 7 steps to mastering data engineering"
},
{
"title": "7 Steps to Mastering MLOPs",
"url": "https://www.kdnuggets.com/7-steps-to-mastering-mlops",
"category": "Machine Learning Operations (MLOps)",
"content": "7 Steps to Mastering MLOPs - Machine Learning Operations (MLOps) article about 7 steps to mastering mlops"
},
{
"title": "7 Things Students Are Missing in a Data Science Resume",
"url": "https://www.kdnuggets.com/7-things-students-are-missing-in-a-data-science-resume",
"category": "Career Advice",
"content": "7 Things Students Are Missing in a Data Science Resume - Career Advice article about 7 things students are missing in a data science resume"
},
{
"title": "7 Tools I Cannot Live Without as a Data Scientist",
"url": "https://www.kdnuggets.com/7-tools-cannot-live-without-data-scientist",
"category": "Data Science",
"content": "7 Tools I Cannot Live Without as a Data Scientist - Data Science article about 7 tools i cannot live without as a data scientist"
},
{
"title": "7 Ways ChatGPT Makes You Code Better and Faster",
"url": "https://www.kdnuggets.com/2023/06/7-ways-chatgpt-makes-code-better-faster.html",
"category": "Programming",
"content": "7 Ways ChatGPT Makes You Code Better and Faster - Programming article about 7 ways chatgpt makes you code better and faster"
},
{
"title": "7 Ways to Improve Your Machine Learning Models",
"url": "https://www.kdnuggets.com/7-ways-to-improve-your-machine-learning-models",
"category": "Machine Learning (ML)",
"content": "7 Ways to Improve Your Machine Learning Models - Machine Learning (ML) article about 7 ways to improve your machine learning models"
},
{
"title": "8 Free AI and LLMs Playgrounds",
"url": "https://www.kdnuggets.com/2023/05/8-free-ai-llms-playgrounds.html",
"category": "Artificial Intelligence (AI)",
"content": "8 Free AI and LLMs Playgrounds - Artificial Intelligence (AI) article about 8 free ai and llms playgrounds"
},
{
"title": "8 Open-Source Alternative to ChatGPT and Bard",
"url": "https://www.kdnuggets.com/2023/04/8-opensource-alternative-chatgpt-bard.html",
"category": "Large Language Models (LLMs)",
"content": "8 Open-Source Alternative to ChatGPT and Bard - Large Language Models (LLMs) article about 8 open-source alternative to chatgpt and bard"
},
{
"title": "A Beginner's Guide to CI/CD for Machine Learning",
"url": "https://www.datacamp.com/tutorial/ci-cd-for-machine-learning",
"category": "Machine Learning Operations (MLOps)",
"content": "A Beginner's Guide to CI/CD for Machine Learning - Machine Learning Operations (MLOps) article about a beginner's guide to ci/cd for machine learning"
},
{
"title": "A Beginner's Guide to Python for Loops: Mastering for i in range",
"url": "https://www.datacamp.com/tutorial/python-for-i-in-range",
"category": "Python",
"content": "A Beginner's Guide to Python for Loops: Mastering for i in range - Python article about a beginner's guide to python for loops: mastering for i in range"
},
{
"title": "A Beginner’s Guide to ClickHouse Database",
"url": "https://www.kdnuggets.com/a-beginners-guide-to-clickhouse-database",
"category": "Data Engineering",
"content": "A Beginner’s Guide to ClickHouse Database - Data Engineering article about a beginner’s guide to clickhouse database"
},
{
"title": "A Collection Of Free Data Science Courses From Harvard, Stanford, MIT, Cornell, and Berkeley",
"url": "https://www.kdnuggets.com/a-collection-of-free-data-science-courses-from-harvard-stanford-mit-cornell-and-berkeley",
"category": "Career Advice",
"content": "A Collection Of Free Data Science Courses From Harvard, Stanford, MIT, Cornell, and Berkeley - Career Advice article about a collection of free data science courses from harvard, stanford, mit, cornell, and berkeley"
},
{
"title": "A Complete Collection of Data Science Free Courses – Part 1",
"url": "https://www.kdnuggets.com/2023/03/complete-collection-data-science-free-courses-part-1.html",
"category": "Career Advice",
"content": "A Complete Collection of Data Science Free Courses – Part 1 - Career Advice article about a complete collection of data science free courses – part 1"
},
{
"title": "A Complete Collection of Data Science Free Courses – Part 2",
"url": "https://www.kdnuggets.com/2023/03/complete-collection-data-science-free-courses-part-2.html",
"category": "Career Advice",
"content": "A Complete Collection of Data Science Free Courses – Part 2 - Career Advice article about a complete collection of data science free courses – part 2"
},
{
"title": "A Guide to Using ChatGPT For Data Science Projects",
"url": "https://www.datacamp.com/tutorial/chatgpt-data-science-projects",
"category": "Data Science",
"content": "A Guide to Using ChatGPT For Data Science Projects - Data Science article about a guide to using chatgpt for data science projects"
},
{
"title": "A New Python Package Manager",
"url": "https://www.kdnuggets.com/new-python-package-manager",
"category": "Python",
"content": "A New Python Package Manager - Python article about a new python package manager"
},
{
"title": "A Simple Guide to GitOps",
"url": "https://www.datacamp.com/tutorial/guide-to-gitops",
"category": "Machine Learning Operations (MLOps)",
"content": "A Simple Guide to GitOps - Machine Learning Operations (MLOps) article about a simple guide to gitops"
},
{
"title": "A Simple Guide to Running LlaMA 2 Locally",
"url": "https://www.kdnuggets.com/a-simple-guide-to-running-llama-2-locally",
"category": "Large Language Models (LLMs)",
"content": "A Simple Guide to Running LlaMA 2 Locally - Large Language Models (LLMs) article about a simple guide to running llama 2 locally"
},
{
"title": "AI Chrome Extensions for Data Scientists Cheat Sheet",
"url": "https://www.kdnuggets.com/2023/06/ai-chrome-extensions-data-scientists-cheat-sheet.html",
"category": "Cheat Sheets",
"content": "AI Chrome Extensions for Data Scientists Cheat Sheet - Cheat Sheets article about ai chrome extensions for data scientists cheat sheet"
},
{
"title": "AgentGPT: Autonomous AI Agents in your Browser",
"url": "https://www.kdnuggets.com/2023/06/agentgpt-autonomous-ai-agents-browser.html",
"category": "Artificial Intelligence (AI)",
"content": "AgentGPT: Autonomous AI Agents in your Browser - Artificial Intelligence (AI) article about agentgpt: autonomous ai agents in your browser"
},
{
"title": "An Introduction to SHAP Values and Machine Learning Interpretability",
"url": "https://www.datacamp.com/tutorial/introduction-to-shap-values-machine-learning-interpretability",
"category": "Machine Learning (ML)",
"content": "An Introduction to SHAP Values and Machine Learning Interpretability - Machine Learning (ML) article about an introduction to shap values and machine learning interpretability"
},
{
"title": "Anthropic Computer Use: Automate Your Desktop With Claude 3.5",
"url": "https://www.datacamp.com/blog/what-is-anthropic-computer-use",
"category": "Large Language Models (LLMs)",
"content": "Anthropic Computer Use: Automate Your Desktop With Claude 3.5 - Large Language Models (LLMs) article about anthropic computer use: automate your desktop with claude 3.5"
},
{
"title": "Artificial Intelligence for Noobs",
"url": "https://www.kdnuggets.com/artificial-intelligence-noobs",
"category": "Artificial Intelligence (AI)",
"content": "Artificial Intelligence for Noobs - Artificial Intelligence (AI) article about artificial intelligence for noobs"
},
{
"title": "Bark: The Ultimate Audio Generation Model",
"url": "https://www.kdnuggets.com/2023/05/bark-ultimate-audio-generation-model.html",
"category": "Natural Language Processing (NLP)",
"content": "Bark: The Ultimate Audio Generation Model - Natural Language Processing (NLP) article about bark: the ultimate audio generation model"
},
{
"title": "Beginner’s Guide to Machine Learning Testing With DeepChecks",
"url": "https://www.kdnuggets.com/beginners-guide-to-machine-learning-testing-with-deepchecks",
"category": "Machine Learning Operations (MLOps)",
"content": "Beginner’s Guide to Machine Learning Testing With DeepChecks - Machine Learning Operations (MLOps) article about beginner’s guide to machine learning testing with deepchecks"
},
{
"title": "Best No-Code LLM App Builders",
"url": "https://www.kdnuggets.com/best-no-code-llm-app-builders",
"category": "Large Language Models (LLMs)",
"content": "Best No-Code LLM App Builders - Large Language Models (LLMs) article about best no-code llm app builders"
},
{
"title": "Best Python Tools for Building Generative AI Applications Cheat Sheet",
"url": "https://www.kdnuggets.com/2023/08/best-python-tools-generative-ai-cheat-sheet.html",
"category": "Cheat Sheets",
"content": "Best Python Tools for Building Generative AI Applications Cheat Sheet - Cheat Sheets article about best python tools for building generative ai applications cheat sheet"
},
{
"title": "Build AI Chatbot in 5 Minutes with Hugging Face and Gradio",
"url": "https://www.kdnuggets.com/2023/06/build-ai-chatbot-5-minutes-hugging-face-gradio.html",
"category": "Machine Learning Operations (MLOps)",
"content": "Build AI Chatbot in 5 Minutes with Hugging Face and Gradio - Machine Learning Operations (MLOps) article about build ai chatbot in 5 minutes with hugging face and gradio"
},
{
"title": "Build Your Own PandasAI with LlamaIndex",
"url": "https://www.kdnuggets.com/build-your-own-pandasai-with-llamaindex",
"category": "Artificial Intelligence (AI)",
"content": "Build Your Own PandasAI with LlamaIndex - Artificial Intelligence (AI) article about build your own pandasai with llamaindex"
},
{
"title": "Build a Strong Portfolio for Data Science Career",
"url": "https://www.kdnuggets.com/build-strong-portfolio-data-science-career",
"category": "Career Advice",
"content": "Build a Strong Portfolio for Data Science Career - Career Advice article about build a strong portfolio for data science career"
},
{
"title": "Building 3 Fun AI Applications with ControlFlow",
"url": "https://machinelearningmastery.com/building-3-fun-ai-applications-with-controlflow/",
"category": "Large Language Models (LLMs)",
"content": "Building 3 Fun AI Applications with ControlFlow - Large Language Models (LLMs) article about building 3 fun ai applications with controlflow"
},
{
"title": "Building AI Application with Gemini 2.0",
"url": "https://www.kdnuggets.com/building-ai-application-gemini-2",
"category": "Large Language Models (LLMs)",
"content": "Building AI Application with Gemini 2.0 - Large Language Models (LLMs) article about building ai application with gemini 2.0"
},
{
"title": "Building Data Pipeline with Prefect",
"url": "https://www.kdnuggets.com/building-data-pipeline-with-prefect",
"category": "Data Engineering",
"content": "Building Data Pipeline with Prefect - Data Engineering article about building data pipeline with prefect"
},
{
"title": "Building Data Science Pipelines Using Pandas",
"url": "https://www.kdnuggets.com/building-data-science-pipelines-using-pandas",
"category": "Data Science",
"content": "Building Data Science Pipelines Using Pandas - Data Science article about building data science pipelines using pandas"
},
{
"title": "Building Multimodal AI Application with Gemini 2.0 Pro",
"url": "https://www.datacamp.com/tutorial/building-multimodal-ai-application-with-gemini-2-0-pro",
"category": "Large Language Models (LLMs)",
"content": "Building Multimodal AI Application with Gemini 2.0 Pro - Large Language Models (LLMs) article about building multimodal ai application with gemini 2.0 pro"
},
{
"title": "Building Neural Network (NN) Models in R",
"url": "https://www.datacamp.com/tutorial/neural-network-models-r",
"category": "Machine Learning (ML)",
"content": "Building Neural Network (NN) Models in R - Machine Learning (ML) article about building neural network (nn) models in r"
},
{
"title": "Building a Convolutional Neural Network with PyTorch",
"url": "https://www.kdnuggets.com/building-a-convolutional-neural-network-with-pytorch",
"category": "Machine Learning (ML)",
"content": "Building a Convolutional Neural Network with PyTorch - Machine Learning (ML) article about building a convolutional neural network with pytorch"
},
{
"title": "Building a Simple RAG Application Using LlamaIndex",
"url": "https://machinelearningmastery.com/building-a-simple-rag-application-using-llamaindex/",
"category": "Large Language Models (LLMs)",
"content": "Building a Simple RAG Application Using LlamaIndex - Large Language Models (LLMs) article about building a simple rag application using llamaindex"
},
{
"title": "ChatGPT and GPT-4 Open Source Alternatives that are Balancing the Scales",
"url": "https://www.datacamp.com/blog/12-gpt4-open-source-alternatives",
"category": "Large Language Models (LLMs)",
"content": "ChatGPT and GPT-4 Open Source Alternatives that are Balancing the Scales - Large Language Models (LLMs) article about chatgpt and gpt-4 open source alternatives that are balancing the scales"
},
{
"title": "ChatGPT as Your Expert Helper",
"url": "https://machinelearningmastery.com/chatgpt-as-your-expert-helper/",
"category": "Artificial Intelligence (AI)",
"content": "ChatGPT as Your Expert Helper - Artificial Intelligence (AI) article about chatgpt as your expert helper"
},
{
"title": "ChatGPT for Data Science Cheat Sheet",
"url": "https://www.kdnuggets.com/2023/03/chatgpt-data-science-cheat-sheet.html",
"category": "Cheat Sheets",
"content": "ChatGPT for Data Science Cheat Sheet - Cheat Sheets article about chatgpt for data science cheat sheet"
},
{
"title": "ChatGPT for Data Science Interview Cheat Sheet",
"url": "https://www.kdnuggets.com/2023/06/chatgpt-data-science-interviews-cheat-sheet.html",
"category": "Cheat Sheets",
"content": "ChatGPT for Data Science Interview Cheat Sheet - Cheat Sheets article about chatgpt for data science interview cheat sheet"
},
{
"title": "Claude vs. ChatGPT: Which AI Assistant Should Data Scientists Choose in 2023?",
"url": "https://www.datacamp.com/blog/claude-vs-chatgpt-data-science-comparison",
"category": "Data Science",
"content": "Claude vs. ChatGPT: Which AI Assistant Should Data Scientists Choose in 2023? - Data Science article about claude vs. chatgpt: which ai assistant should data scientists choose in 2023?"
},
{
"title": "Cohere Command R+: A Complete Step-by-Step Tutorial",
"url": "https://www.datacamp.com/tutorial/cohere-command-r-tutorial",
"category": "Large Language Models (LLMs)",
"content": "Cohere Command R+: A Complete Step-by-Step Tutorial - Large Language Models (LLMs) article about cohere command r+: a complete step-by-step tutorial"
},
{
"title": "Collection of Free Courses to Learn Data Science, Data Engineering, Machine Learning, MLOps, and LLMOps",
"url": "https://www.kdnuggets.com/collection-of-free-courses-to-learn-data-science-data-engineering-machine-learning-mlops-and-llmops",
"category": "Career Advice",
"content": "Collection of Free Courses to Learn Data Science, Data Engineering, Machine Learning, MLOps, and LLMOps - Career Advice article about collection of free courses to learn data science, data engineering, machine learning, mlops, and llmops"
},
{
"title": "Collection of Guides on Mastering SQL, Python, Data Cleaning, Data Wrangling, and Exploratory Data Analysis",
"url": "https://www.kdnuggets.com/collection-of-guides-on-mastering-sql-python-data-cleaning-data-wrangling-and-exploratory-data-analysis",
"category": "Career Advice",
"content": "Collection of Guides on Mastering SQL, Python, Data Cleaning, Data Wrangling, and Exploratory Data Analysis - Career Advice article about collection of guides on mastering sql, python, data cleaning, data wrangling, and exploratory data analysis"
},
{
"title": "Comprehensive Guide to Zephyr-7B: Features, Usage, and Fine-tuning",
"url": "https://www.datacamp.com/tutorial/zephyr-7b-tutorial",
"category": "Large Language Models (LLMs)",
"content": "Comprehensive Guide to Zephyr-7B: Features, Usage, and Fine-tuning - Large Language Models (LLMs) article about comprehensive guide to zephyr-7b: features, usage, and fine-tuning"
},
{
"title": "Create Stunning Data Viz in Seconds with ChatGPT",
"url": "https://www.kdnuggets.com/create-stunning-data-viz-in-seconds-with-chatgpt",
"category": "Data Science",
"content": "Create Stunning Data Viz in Seconds with ChatGPT - Data Science article about create stunning data viz in seconds with chatgpt"
},
{
"title": "DeepChecks Tutorial: Automating Machine Learning Testing",
"url": "https://www.datacamp.com/tutorial/automating-machine-learning-testing-using-deep-checks",
"category": "Machine Learning Operations (MLOps)",
"content": "DeepChecks Tutorial: Automating Machine Learning Testing - Machine Learning Operations (MLOps) article about deepchecks tutorial: automating machine learning testing"
},
{
"title": "Deploying Your First Machine Learning Model",
"url": "https://www.kdnuggets.com/deploying-your-first-machine-learning-model",
"category": "Machine Learning Operations (MLOps)",
"content": "Deploying Your First Machine Learning Model - Machine Learning Operations (MLOps) article about deploying your first machine learning model"
},
{
"title": "Discover the Power of the New Gemini AI Models",
"url": "https://www.datacamp.com/tutorial/introducing-gemini-api",
"category": "Artificial Intelligence (AI)",
"content": "Discover the Power of the New Gemini AI Models - Artificial Intelligence (AI) article about discover the power of the new gemini ai models"
},
{
"title": "Dolly 2.0: ChatGPT Open Source Alternative for Commercial Use",
"url": "https://www.kdnuggets.com/2023/04/dolly-20-chatgpt-open-source-alternative-commercial.html",
"category": "Large Language Models (LLMs)",
"content": "Dolly 2.0: ChatGPT Open Source Alternative for Commercial Use - Large Language Models (LLMs) article about dolly 2.0: chatgpt open source alternative for commercial use"
},
{
"title": "DuckDB Tutorial: Building AI Projects",
"url": "https://www.datacamp.com/tutorial/building-ai-projects-with-duckdb",
"category": "Artificial Intelligence (AI)",
"content": "DuckDB Tutorial: Building AI Projects - Artificial Intelligence (AI) article about duckdb tutorial: building ai projects"
},
{
"title": "Emulating a Do-While Loop in Python: A Comprehensive Guide for Beginners",
"url": "https://www.datacamp.com/tutorial/do-while-loop-python",
"category": "Python",
"content": "Emulating a Do-While Loop in Python: A Comprehensive Guide for Beginners - Python article about emulating a do-while loop in python: a comprehensive guide for beginners"
},
{
"title": "Encoding Categorical Features with MultiLabelBinarizer",
"url": "https://www.kdnuggets.com/2023/01/encoding-categorical-features-multilabelbinarizer.html",
"category": "Machine Learning (ML)",
"content": "Encoding Categorical Features with MultiLabelBinarizer - Machine Learning (ML) article about encoding categorical features with multilabelbinarizer"
},
{
"title": "Enhance Your Python Coding Style with Ruff",
"url": "https://www.kdnuggets.com/enhance-your-python-coding-style-with-ruff",
"category": "Programming",
"content": "Enhance Your Python Coding Style with Ruff - Programming article about enhance your python coding style with ruff"
},
{
"title": "Enroll in a 4-year Computer Science Degree Program For Free",
"url": "https://www.kdnuggets.com/enroll-in-a-4-year-computer-science-degree-program-for-free",
"category": "Career Advice",
"content": "Enroll in a 4-year Computer Science Degree Program For Free - Career Advice article about enroll in a 4-year computer science degree program for free"
},
{
"title": "Enroll in a Data Science Undergraduate Program For Free",
"url": "https://www.kdnuggets.com/enroll-in-a-data-science-undergraduate-program-for-free",
"category": "Career Advice",
"content": "Enroll in a Data Science Undergraduate Program For Free - Career Advice article about enroll in a data science undergraduate program for free"
},
{
"title": "Evaluate LLMs Effectively Using DeepEval: A Practical Guide",
"url": "https://www.datacamp.com/tutorial/deepeval",
"category": "Large Language Models (LLMs)",
"content": "Evaluate LLMs Effectively Using DeepEval: A Practical Guide - Large Language Models (LLMs) article about evaluate llms effectively using deepeval: a practical guide"
},
{
"title": "Everything You Need to Know About MLOps: A KDnuggets Tech Brief ",
"url": "https://www.kdnuggets.com/tech-brief-everything-you-need-to-know-about-mlops",
"category": "Machine Learning Operations (MLOps)",
"content": "Everything You Need to Know About MLOps: A KDnuggets Tech Brief - Machine Learning Operations (MLOps) article about everything you need to know about mlops: a kdnuggets tech brief "
},
{
"title": "Everything You Need to Know About MLOps: A KDnuggets Tech Brief - Ebook",
"url": "https://www.kdnuggets.com/tech-brief-everything-you-need-to-know-about-mlops",
"category": "Books by Abid",
"content": "Everything You Need to Know About MLOps: A KDnuggets Tech Brief - Ebook - Books by Abid article about everything you need to know about mlops: a kdnuggets tech brief - ebook"
},
{
"title": "Fine Tuning Google Gemma: Enhancing LLMs with Customized Instructions",
"url": "https://www.datacamp.com/tutorial/fine-tuning-google-gemma",
"category": "Large Language Models (LLMs)",
"content": "Fine Tuning Google Gemma: Enhancing LLMs with Customized Instructions - Large Language Models (LLMs) article about fine tuning google gemma: enhancing llms with customized instructions"
},
{
"title": "Fine-Tune and Run Inference on Google's Gemma Model Using TPUs for Enhanced Speed and Performance",
"url": "https://www.datacamp.com/tutorial/combine-google-gemma-with-tpus-fine-tune-and-run-inference-with-enhanced-performance-and-speed",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tune and Run Inference on Google's Gemma Model Using TPUs for Enhanced Speed and Performance - Large Language Models (LLMs) article about fine-tune and run inference on google's gemma model using tpus for enhanced speed and performance"
},
{
"title": "Fine-Tuning DeepSeek R1 (Reasoning Model)",
"url": "https://www.datacamp.com/tutorial/fine-tuning-deepseek-r1-reasoning-model",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning DeepSeek R1 (Reasoning Model) - Large Language Models (LLMs) article about fine-tuning deepseek r1 (reasoning model)"
},
{
"title": "Fine-Tuning GPT-4o",
"url": "https://www.kdnuggets.com/fine-tuning-gpt-4o",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning GPT-4o - Large Language Models (LLMs) article about fine-tuning gpt-4o"
},
{
"title": "Fine-Tuning Gemma 2 and Using it Locally",
"url": "https://www.datacamp.com/tutorial/fine-tuning-gemma-2",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning Gemma 2 and Using it Locally - Large Language Models (LLMs) article about fine-tuning gemma 2 and using it locally"
},
{
"title": "Fine-Tuning LLaMA 2: A Step-by-Step Guide to Customizing the Large Language Model",
"url": "https://www.datacamp.com/tutorial/fine-tuning-llama-2",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning LLaMA 2: A Step-by-Step Guide to Customizing the Large Language Model - Large Language Models (LLMs) article about fine-tuning llama 2: a step-by-step guide to customizing the large language model"
},
{
"title": "Fine-Tuning Llama 3 and Using It Locally: A Step-by-Step Guide",
"url": "https://www.datacamp.com/tutorial/llama3-fine-tuning-locally",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning Llama 3 and Using It Locally: A Step-by-Step Guide - Large Language Models (LLMs) article about fine-tuning llama 3 and using it locally: a step-by-step guide"
},
{
"title": "Fine-Tuning Llama 3.1 for Text Classification",
"url": "https://www.datacamp.com/tutorial/fine-tuning-llama-3-1",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning Llama 3.1 for Text Classification - Large Language Models (LLMs) article about fine-tuning llama 3.1 for text classification"
},
{
"title": "Fine-Tuning Llama 3.2 Vision",
"url": "https://www.datacamp.com/tutorial/fine-tuning-llama-3-2-vision",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning Llama 3.2 Vision - Large Language Models (LLMs) article about fine-tuning llama 3.2 vision"
},
{
"title": "Fine-Tuning Phi-3.5 on E-Commerce Classification Dataset",
"url": "https://www.datacamp.com/tutorial/fine-tuning-phi-3-5",
"category": "Large Language Models (LLMs)",
"content": "Fine-Tuning Phi-3.5 on E-Commerce Classification Dataset - Large Language Models (LLMs) article about fine-tuning phi-3.5 on e-commerce classification dataset"
},
{
"title": "Fine-tuning GPT-4o Mini: A Step-by-Step Guide",
"url": "https://www.datacamp.com/tutorial/fine-tuning-gpt-4o-mini",
"category": "Large Language Models (LLMs)",
"content": "Fine-tuning GPT-4o Mini: A Step-by-Step Guide - Large Language Models (LLMs) article about fine-tuning gpt-4o mini: a step-by-step guide"
},
{
"title": "Fine-tuning Llama 3.2 Using Unsloth",
"url": "https://www.kdnuggets.com/fine-tuning-llama-using-unsloth",
"category": "Large Language Models (LLMs)",
"content": "Fine-tuning Llama 3.2 Using Unsloth - Large Language Models (LLMs) article about fine-tuning llama 3.2 using unsloth"
},
{
"title": "Fine-tuning Llama 3.2: A Step-by-Step Guide",
"url": "https://www.datacamp.com/tutorial/fine-tuning-llama-3-2",
"category": "Large Language Models (LLMs)",
"content": "Fine-tuning Llama 3.2: A Step-by-Step Guide - Large Language Models (LLMs) article about fine-tuning llama 3.2: a step-by-step guide"
},
{
"title": "Fine-tuning Stable Diffusion XL with DreamBooth and LoRA",
"url": "https://www.datacamp.com/tutorial/fine-tuning-stable-diffusion-xl-with-dreambooth-and-lora",
"category": "Computer Vision",
"content": "Fine-tuning Stable Diffusion XL with DreamBooth and LoRA - Computer Vision article about fine-tuning stable diffusion xl with dreambooth and lora"
},
{
"title": "Forget ChatGPT, This New AI Assistant Is Leagues Ahead and Will Change the Way You Work Forever",
"url": "https://www.kdnuggets.com/2023/08/forget-chatgpt-new-ai-assistant-leagues-ahead-change-way-work-forever.html",
"category": "Artificial Intelligence (AI)",
"content": "Forget ChatGPT, This New AI Assistant Is Leagues Ahead and Will Change the Way You Work Forever - Artificial Intelligence (AI) article about forget chatgpt, this new ai assistant is leagues ahead and will change the way you work forever"
},
{
"title": "Free Python Resources That Can Help You Become a Pro",
"url": "https://www.kdnuggets.com/free-python-resources-that-can-help-you-become-a-pro",
"category": "Career Advice",
"content": "Free Python Resources That Can Help You Become a Pro - Career Advice article about free python resources that can help you become a pro"
},
{
"title": "Further Stable Diffusion Pipeline with Diffusers",
"url": "https://machinelearningmastery.com/further-stable-diffusion-pipeline-with-diffusers/",
"category": "Computer Vision",
"content": "Further Stable Diffusion Pipeline with Diffusers - Computer Vision article about further stable diffusion pipeline with diffusers"
},
{
"title": "Generative AI with Large Language Models: Hands-On Training",
"url": "https://www.kdnuggets.com/2023/07/generative-ai-large-language-models-handson-training.html",
"category": "Career Advice",
"content": "Generative AI with Large Language Models: Hands-On Training - Career Advice article about generative ai with large language models: hands-on training"
},
{
"title": "Getting Addicted to Coding",
"url": "https://www.kdnuggets.com/getting-addicted-to-coding",
"category": "Career Advice",
"content": "Getting Addicted to Coding - Career Advice article about getting addicted to coding"
},
{
"title": "Getting Started With Claude 3 Opus That Just Destroyed GPT-4 and Gemini",
"url": "https://www.kdnuggets.com/getting-started-with-claude-3-opus-that-just-destroyed-gpt-4-and-gemini",
"category": "Large Language Models (LLMs)",
"content": "Getting Started With Claude 3 Opus That Just Destroyed GPT-4 and Gemini - Large Language Models (LLMs) article about getting started with claude 3 opus that just destroyed gpt-4 and gemini"
},
{
"title": "Getting Started With Go Programing For Data Science ",
"url": "https://www.kdnuggets.com/getting-started-with-go-programing-for-data-science",
"category": "Programming",
"content": "Getting Started With Go Programing For Data Science - Programming article about getting started with go programing for data science "
},
{
"title": "Getting Started with Claude 2 API",
"url": "https://www.kdnuggets.com/getting-started-with-claude-2-api",
"category": "Artificial Intelligence (AI)",
"content": "Getting Started with Claude 2 API - Artificial Intelligence (AI) article about getting started with claude 2 api"
},
{
"title": "Getting Started with Claude 3 and the Claude 3 API ",
"url": "https://www.datacamp.com/tutorial/getting-started-with-claude-3-and-the-claude-3-api",