Sat.Aug 21, 2021 - Fri.Aug 27, 2021

article thumbnail

Must know Pandas Functions for Machine Learning Journey

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Do you wish you could perform this function using Pandas. Well, there is a good possibility you can! For data scientists who use Python as their primary programming language, the Pandas package is a must-have data analysis tool. The Pandas package has everything […].

article thumbnail

Can AI Outsmart Humans? 5 times AI found unexpected solutions

Dlabs.ai

When developers designed a self-driving car simulator to ‘go fast and drive safe,’ they didn’t expect what came next. The algorithm at the wheel ordered the car to speed round and round on the spot. The strategy was brilliant because, with the wheels spinning and passers-by in no danger, the simulator had followed its instructions to the letter. It’s just — the vehicle would never reach a destination, rendering the car somewhat pointless.

professionals

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

How to Automate the Generation of Training Data for Conversational Bots

Bitext

Everything looks promising in the world of bots: big players are pushing platforms to build them (Google, Amazon, Facebook, Microsoft, IBM, Apple), large retail companies are adopting them (Starbucks, Domino’s, British Airways), press is excited about movies becoming reality; and we users are eager to use. However, one dark hole remains in this scenario.

article thumbnail

Challenges and Opportunities in NLP Benchmarking

Sebastian Ruder

Over the last years, models in NLP have become much more powerful, driven by advances in transfer learning. A consequence of this drastic increase in performance is that existing benchmarks have been left behind. Recent models "have outpaced the benchmarks to test for them" ( AI Index Report 2021 ), quickly reaching super-human performance on standard benchmarks such as SuperGLUE and SQuAD.

NLP 52
article thumbnail

The Ultimate Blueprint for an AI-First Contact Center

Start building the AI workforce of the future with our comprehensive guide to creating an AI-first contact center. Learn how Conversational and Generative AI can transform traditional operations into scalable, efficient, and customer-centric experiences. What is AI-First? Transition from outdated, human-first strategies to an AI-driven approach that enhances customer engagement and operational efficiency.

article thumbnail

Gradient Descent: Design Your First Machine Learning Model

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Building a simple Machine Learning model using Pytorch from scratch. Image by my great learning Introduction Gradient descent is an optimization algorithm that is used to train machine learning models and is now used in a neural network. Training data helps the model learn […].

More Trending

article thumbnail

Beginners guide to k-Means Clustering

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Clustering The very first clustering algorithm that most people get exposed to is k-Means clustering. This is probably because it is very simple to understand, however, it has several disadvantages which I will mention later. Clustering is generally viewed as an unsupervised […].

article thumbnail

Granger Causality in Time Series – Explained using Chicken and Egg problem

Analytics Vidhya

ArticleVideo Book This article was published as a part of the Data Science Blogathon Introduction The purpose of this article is to understand what is granger. The post Granger Causality in Time Series – Explained using Chicken and Egg problem appeared first on Analytics Vidhya.

article thumbnail

Caching in Python: the LRU algorithm

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction To use LRU caching in Python, you just need to add two lines – import and declaration of the @lru_cache decorator. We show with examples how and why to use it. Caching is one approach that, if used correctly, significantly speeds up work […]. The post Caching in Python: the LRU algorithm appeared first on Analytics Vidhya.

Algorithm 367
article thumbnail

Churn Prediction- Commercial use of Data Science

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Churn prediction is probably one of the most important applications of data science in the commercial sector. The thing which makes it popular is that its effects are more tangible to comprehend and it plays a major factor in the overall profits earned […]. The post Churn Prediction- Commercial use of Data Science appeared first on Analytics Vidhya.

article thumbnail

The Intersection of AI and Sales: Personalization Without Compromise

Speaker: Jesse Hunter and Brynn Chadwick

Today’s buyers expect more than generic outreach–they want relevant, personalized interactions that address their specific needs. For sales teams managing hundreds or thousands of prospects, however, delivering this level of personalization without automation is nearly impossible. The key is integrating AI in a way that enhances customer engagement rather than making it feel robotic.

article thumbnail

Create Stock Exchange Dashboard using Dash in Python!

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Dash is an open-source web framework for creating analytical dashboards and data visualizations. It helps data analysts to deploy dashboards and serve these dashboards to the main web application. Dash constitutes of three technologies: 1. Plotly.js- It is used for creating beautiful charts […].

Python 349
article thumbnail

Sharpening An Image using OpenCV Library in Python

Analytics Vidhya

This article was published as a part of the Data Science Blogathon From our previous article, we have learned about how to blur an image using a kernel, and we have also learned exactly what a kernel is- It simply refers to the matrix involved in the image manipulation process. For the task of blurring an […]. The post Sharpening An Image using OpenCV Library in Python appeared first on Analytics Vidhya.

Python 343
article thumbnail

Understanding Gradient Descent Algorithm and the Maths Behind It

Analytics Vidhya

This article was published as a part of the Data Science Blogathon This article throws light on how the Gradient Descent algorithm’s core formula is derived which will further help in better understanding of the Gradient Descent Algorithm. First, we will understand what is Gradient Descent algorithm is in brief. A Brief idea of Gradient Descent Algorithm […].

Algorithm 343
article thumbnail

Tensorflow- An impressive deep learning library!

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Tensorflow (hereinafter – TF) is a fairly young framework for deep machine learning, being developed in Google Brain. For a long time, the framework was developed in a closed mode called disbelief, but after a global refactoring on November 9, 2015, it was […].

article thumbnail

How to Achieve High-Accuracy Results When Using LLMs

Speaker: Ben Epstein, Stealth Founder & CTO | Tony Karrer, Founder & CTO, Aggregage

When tasked with building a fundamentally new product line with deeper insights than previously achievable for a high-value client, Ben Epstein and his team faced a significant challenge: how to harness LLMs to produce consistent, high-accuracy outputs at scale. In this new session, Ben will share how he and his team engineered a system (based on proven software engineering approaches) that employs reproducible test variations (via temperature 0 and fixed seeds), and enables non-LLM evaluation m

article thumbnail

How nested functions are used in Python?

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Let’s look at examples of the benefits of nested Python functions and how to use them to encapsulate code, closures, and decorators. Nested (or inner, nested) functions are functions that we define inside other functions to directly access the variables and names defined in […].

Python 337
article thumbnail

Text Preprocessing techniques for Performing Sentiment Analysis!

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Overview In today’s world, one of the biggest sources of information is text data, which is unstructured in nature. Finding customer sentiments from product reviews or feedbacks, extracting opinions from social media data are a few examples of text analytics. Finding insights from text […].

article thumbnail

Debugging with IDLE: Find and Fix Bugs In Your Python Code

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Everyone makes mistakes – even seasoned professional developers, and Python and IDLE are great at catching them. Let’s see how it works. Identifying errors is called debugging, and a debugger is a tool that helps to understand the cause of their occurrence. The […].

Python 319
article thumbnail

Train Your Own YoloV5 Object Detection Model

Analytics Vidhya

This article was published as a part of the Data Science Blogathon “You can have data without information but you cannot have information without data” – Daniel Keys Moran Introduction If you are here then you might be already interested in Machine Learning or Deep Learning so I need not explain what it is? So starting […]. The post Train Your Own YoloV5 Object Detection Model appeared first on Analytics Vidhya.

article thumbnail

Zero Trust Mandate: The Realities, Requirements and Roadmap

The DHS compliance audit clock is ticking on Zero Trust. Government agencies can no longer ignore or delay their Zero Trust initiatives. During this virtual panel discussion—featuring Kelly Fuller Gordon, Founder and CEO of RisX, Chris Wild, Zero Trust subject matter expert at Zermount, Inc., and Principal of Cybersecurity Practice at Eliassen Group, Trey Gannon—you’ll gain a detailed understanding of the Federal Zero Trust mandate, its requirements, milestones, and deadlines.

article thumbnail

What are Functions in Python? How to create functions in Python?

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Source Overview: This article aims at brushing up knowledge on the Functions concept in Python in detail. Table of Contents: What are Functions? Types of Functions Built-in User-defined Defining a Function Print vs Return statements Calling a Function Types of Arguments Required arguments Optional […].

Python 306
article thumbnail

Understand The Internal Working of Apache Spark

Analytics Vidhya

This article was published as a part of the Data Science Blogathon In this fast-paced digitized world, the size of data generation is increasing every second. This data cannot be thrown away as this may help to get important business insights. Apache Spark is the largest open-source project for data processing. In this article, I am […]. The post Understand The Internal Working of Apache Spark appeared first on Analytics Vidhya.

article thumbnail

Functools -The Power of Higher-Order Functions in Python

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction The Python Standard Library has many great modules to help in keeping your code cleaner and simpler and functools is definitely one of them. The function that accepts a function as an argument and returns a function to the calling function is called […]. The post Functools -The Power of Higher-Order Functions in Python appeared first on Analytics Vidhya.

Python 306
article thumbnail

Best Practices and Performance Tuning Activities for PySpark

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Recently I worked on a sas migration project where we converted all the SAS batch jobs to pySpark and deployed them on EMR. In the initial development phase, we used to get few environmental errors which took lots of time to debug and get […]. The post Best Practices and Performance Tuning Activities for PySpark appeared first on Analytics Vidhya.

article thumbnail

The New CX: Your Guide to AI Agents

The guide for revolutionizing the customer experience and operational efficiency This eBook serves as your comprehensive guide to: AI Agents for your Business: Discover how AI Agents can handle high-volume, low-complexity tasks, reducing the workload on human agents while providing 24/7 multilingual support. Enhanced Customer Interaction: Learn how the combination of Conversational AI and Generative AI enables AI Agents to offer natural, contextually relevant interactions to improve customer exp

article thumbnail

A Technical Approach to Understanding Brain-Computer Interfaces using MNE Python Module

Analytics Vidhya

This article was published as a part of the Data Science Blogathon The intersection of medicine and data science has always been relevant; perhaps the most obvious example is the implementation of neural networks in deep learning. As data science and machine learning advance, so will medicine, but the opposite is also true. Nanotechnology, stem cells, […].

Python 291
article thumbnail

Announcing Machine Learning Certification Course for Beginners!

Analytics Vidhya

Time to Start your Machine Learning Journey for FREE! From face unlock to giving biometric attendance, machine learning seeped into human lives at almost every stage. Machine learning is so extensive that you probably use it numerous times a day involuntarily and unknowingly Currently, Machine Learning is like that golden dream, which everyone wants but […].

article thumbnail

Python and MySQL: A Practical Introduction for Data Analysis

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Let’s look at a practical example of how to make SQL queries to a MySQL server from Python code: CREATE, SELECT, UPDATE, JOIN, etc. Most applications interact with data in some form. Therefore, programming languages ??(Python is no exception) provide tools for storing […].

article thumbnail

Developing A Course Recommender System using Python

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction Recommender System is a software system that provides specific suggestions to users according to their preferences. These techniques may provide decision-making capabilities to the user. Items refer to any product that the recommender system suggests to its user like movies, music, news, travel […].

Python 291
article thumbnail

Relevance, Reach, Revenue: How to Turn Marketing Trends From Hype to High-Impact

Speaker: Alexa Acosta, Director of Growth Marketing & B2B Marketing Leader

Marketing is evolving at breakneck speed—new tools, AI-driven automation, and changing buyer behaviors are rewriting the playbook. With so many trends competing for attention, how do you cut through the noise and focus on what truly moves the needle? In this webinar, industry expert Alexa Acosta will break down the most impactful marketing trends shaping the industry today and how to turn them into real, revenue-generating strategies.

article thumbnail

Python Tutorial: Object-Oriented Programming system (OOPs) – Part 1

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Source In this article, we will try to help you understand/brush up on the basic OOP concepts. Table of Contents: OOP and its importance Class, Instance/Object, __init__ method Creating Classes and Objects Accessing Attributes and Calling methods Variable Types Method Types OOP and its […].

Python 291
article thumbnail

Speech Separation by Facebook AI Research

Analytics Vidhya

Objective Understand what is speech separation and why we need it. Discuss the traditional methods of speech separation. Table of contents What is speech separation? Why do we need speech separation? A Brief History of Traditional methods Voice Separation with an Unknown Number of Multiple Speakers Note: All audio samples and the videos, images in […].

article thumbnail

Hierarchical Clustering Algorithm Python!

Analytics Vidhya

This article was published as a part of the Data Science Blogathon Introduction In this article, we’ll look at a different approach to K Means clustering called Hierarchical Clustering. In comparison to K Means or K Mode, hierarchical Clustering has a different underlying algorithm for how the clustering mechanism works. Hierarchical clustering uses agglomerative or divisive […].

Algorithm 290