Innocent Ezamaezama.hashnode.dev·4 hours agoGlobal COVID-19 Vaccination Progress: Analysis & InsightsProject Overview As part of my journey in data analysis, I explored the global vaccination progress against COVID-19 using data from February 2021 to January 2022. The dataset provided a snapshot of a critical phase in the global fight against the pa...DiscussPython
Muhammad Fahad Bashirmfahadbashir.hashnode.dev·Sep 3, 20243. Legal AI Assistant Chatbot: Solving Real Challenges in Legal Researchin this series of building generative AI applications today we will be discussing about Legal AI Assistant Chatbot. Live Running App : https://huggingface.co/spaces/mfahadkhan/Legal_AI_Assistant Below is the video demo Overview: The Legal AI Assist...DiscussBuilding Generative AI applicationschatbot
Oyugi Nimbanimbaoyugi.hashnode.dev·Aug 4, 2024Data Analytics: Techniques and ToolsIn this modern world today businesses rely on Data analytics every day to make informed decisions and optimize operations. Data analytics involves examining raw data to uncover patterns, draw conclusions, and support decision-making. What is Data Ana...DiscussTablea
Sammith S Bharadwajsammith.hashnode.dev·Jul 4, 2024Understanding semantic searchIntroduction During my college days, one of the electives I had chosen was algorithms for information retrieval, it was a pretty fun course, learnt about how webpages are ranked while retrieving, cold start problem and how companies like netflix tack...Discuss·35 readssemantic search
Retzam Tarleretzam.hashnode.dev·May 13, 2024Support Vector Machines (SVM) - Supervised Learning Classificationprint("Support Vector Machines (SVM)") Support Vector Machines(SVM) is a supervised learning classification model used in classification tasks. This uses support vectors and a hyperplane which is simply a line to differentiate classes. The support ve...DiscussSVM
Md. Fahim Bin AminforfreeCodeCampfreecodecamp.org·Feb 8, 2024How to Download a Kaggle Dataset Directly to a Google Colab NotebookKaggle is a popular data science-based competition platform that has a large online community of data scientists and machine learning engineers. The platform contains a ton of datasets and notebooks that you can use to learn and practice your data sc...DiscussData Science
Kaushal Powarwrittenbykaushal.hashnode.dev·Jan 10, 2024Phi-2 has an MIT license now! Why not perform RAG using it?Yesterday I read a few posts about Microsoft Phi-2 LLM's license changed to MIT. What so fuss around it though? The old license was like "You are allowed to conduct testing locally; however, for production purposes, it is essential to execute the app...Discuss·426 readsLLMphi2
Derek Onwudiwetecheffect.hashnode.dev·Dec 2, 2023Jupyter and Colab : MLJupyter Notebooks and Google Colab are widely used in machine learning for collaborative coding, data analysis, and visualization. Jupyter Notebooks provide an interactive environment that allows mixing code, text, and visualizations. Google Colab, o...DiscussJupyter Notebook
Mohamad MahmoodforColab Notescolabnotes.hashnode.dev·Oct 27, 2023Connect To Google Drive Fileprep dependencies: # libraries for the files in google drive from pydrive.auth import GoogleAuth from google.colab import drive from pydrive.drive import GoogleDrive from google.colab import auth from oauth2client.client import GoogleCredentials pre...DiscussGoogle Colab
Priti SolankiProcuriousmind.hashnode.dev·Oct 26, 2023Ensuring API_KEY Security in Google Colab NotebooksIn the Cohere Google Colab notebook, you will notice that the API key is hardcoded. # Setup the Cohere client api_key = 'api_key' # Paste your API key here. Remember to not share it publicly co = cohere.Client(api_key) When I saved this on GitHub, I...Discuss·183 readsGoogle Colab