Skip to main content

artificial intelligence tutorial

artificial intelligence tutorial

  • lgorithm. An algorithm is a formula representing the relationship between certain variables. ...
  • Chatbots (or “bots”) ...
  • Cluster. ...
  • Cognitive science. ...
  • Machine learning. ...
  • Deep learning. ...
  • Image recognition (or “computer vision”) ...
  • Natural Language Processing (NLP)
  • Artificial Intelligence (AI) continues to make its way into the world, influencing popular culture (think Steven Spielberg’s “A.I.”, or Disney’s “Big Hero 6”) and becoming a disruptor is a variety of industries. From customer service chatbots to extremely sophisticated autopilot driving machines, artificial intelligence is undoubtedly making an impact on everything around us. And marketers have the opportunity to make AI work for them.

    To understand how AI impacts our marketing world, we need to know the language of AI and have a basic understanding of how it works. Some important terms to become familiar with:

    Algorithm

    An algorithm is a formula representing the relationship between certain variables. Think of algorithms as a simple set of instructions with a finite end designed to produce an output. An every day example of an algorithm is a recipe. You have a set amount of inputs (ingredients) designed to produce a repeatable output — apple pie, for example. Machine learning programs in AI use algorithms to make predictions, and in the case of marketing, suggestions are based on algorithms that hope to target the user’s specific preferences (if website visitor ‘A’ visits pages for kid’s short sleeve shirts an algorithm will email them coupons for kid’s short sleeve shirts).

    Chatbots (or “bots”)

    A chatbot is a program that runs within websites and apps that interacts directly with users to help them with simple tasks. A “conversation” happens between the user and the computer program. These are often currently used for customer support, but the applications for chatbots are growing.

    Cluster

    Any group of people or things that share a common characteristic. Data is combed through by AI to uncover patterns and connections that humans might not readily see. Clusters can be used to identify target segments or audiences, creating marketing opportunities through commonalities.

    Cognitive science

    The broader form of study that includes AI in addition to philosophy, linguistics, psychology, neuroscience, and anthropology. All of these combine together to learn how the mind functions and, when applied to AI, how machines can simulate human thought and action.

    Machine learning

    With limited need for programming, machines can teach themselves. Combing through massive amounts of data allows AI to identify patterns and groupings. This could be used to determine target audiences, decide on optimal times to send emails, or segment out groupings for deeper engagement.

    Deep learning

    In this advanced version of machine learning, computers actually teach themselves with minimal programming by humans. Marketers can use deep learning to identify data and make predictions related to how consumers might behave.

    Image recognition (or “computer vision”)

    One of the more complicated processes for machine learning, computers can be programmed to understand what is happening in an image. AI searches for patterns within images to quickly identify nuances that humans may not see.

    Natural Language Processing (NLP)

    This technology allows machines to determine what humans are saying, whether in text or by voice. More sophisticated programs can decipher speech in various languages, understanding not only the actual vocabulary, but also pulling out context and more hidden meanings. Sarcasm and subtlety are still difficult for AI, but advanced technology is working on it.

    Neural networks

    Structured to be similar to the human brain, this AI model incorporates natural language processing and deep learning to identify faces in photos and analyze handwriting.

    Semantic analysis

    A more sophisticated form of Natural Language Processing, this concept is focused on the process of stringing words together as well as the way that language is understood through cultural context. This could function as a help to create eBooks and blog posts, with the potential to replace human writers or content marketers (!). Wait, what?

    Supervised learning

    This form of machine learning does not function independently but requires human input. Data is presented into the machine and the process is supervised by a person while the computer works toward a specific outcome.

    Unsupervised learning

    Requiring little or no human involvement, this type of learning allows the machine to draw conclusions on its own from patterns that it finds.

#isoftmantra


artificial intelligence tutorial

Comments

Popular posts from this blog

machine learning tutorial

machine learning tutorial Data scientists often have to communicate results to other people. In my case, my supervisors might want to see some numbers or I have to write up the main insights of some work for a paper. This is pretty straightforward — I just copy and paste into an email or a Latex document. But what if I want to send someone an actual model that I have trained, so that they can either evaluate or use it? If the person in question is technical enough, then I can just save the model to disk and email that, along with some Jupyter notebooks. But what if you want someone in marketing to try out a model, or you want to share it with friends who might find it interesting? In this case, you’ll need to make your code accessible to them in a way they are familiar with. The three parts to this tutorial are: Creating a simple model that can be deployed to the web, where users can input variables to get predictions. Building the components needed by Flask microframework to create a...