Artificial Intelligence Areas and Concepts
31 Questions
0 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

What is the probability of throwing a fair 6-sided dice twice and getting a total of 6?

  • 1/24
  • 1/6
  • 5/36 (correct)
  • 1/12
  • Which statement accurately describes independence in probability theory?

  • A is independent of B if the outcome of B influences the probability of A.
  • A is independent of B if A's outcome influences the probability of B.
  • A is independent of B if the probability of A is not influenced by B. (correct)
  • A is independent of B if the probability of A is influenced by B.
  • What does overfitting refer to in Machine Learning?

  • When an algorithm achieves high accuracy on training data but poorly on test data. (correct)
  • When the algorithm is prematurely terminated before convergence.
  • When a machine learning model is under-trained and unable to learn patterns.
  • When an algorithm is exposed to too little data to make predictions.
  • Which of the following tasks is typically not accomplished using unsupervised learning algorithms?

    <p>Regression (C)</p> Signup and view all the answers

    In the context of Reinforcement Learning, what does a 'Policy' refer to?

    <p>A function that determines the action based on the current state. (C)</p> Signup and view all the answers

    What is a Markov Decision Process?

    <p>A model defining actions, states, and rewards in an intelligent agent's environment. (D)</p> Signup and view all the answers

    Which of the following scenarios is not considered a zero-sum game?

    <p>Participants in stock trading buying and selling assets. (B)</p> Signup and view all the answers

    What scoring system is used in a football league when there is a draw?

    <p>Each team gets 1 point. (A)</p> Signup and view all the answers

    What defines a mixed strategy in game theory?

    <p>A strategy chosen randomly with predefined probabilities. (C)</p> Signup and view all the answers

    How many variables are needed to represent the dynamic state of a flying drone?

    <p>12 (A)</p> Signup and view all the answers

    What are the main factors to consider when dealing with data from sensors?

    <p>The reliability of the sensors and data verification. (B)</p> Signup and view all the answers

    Which option is true regarding object detection advancements?

    <p>It has evolved to include deep learning models. (C)</p> Signup and view all the answers

    What role do computer vision applications play in the healthcare industry?

    <p>They assist in medical imagery and diagnostics. (D)</p> Signup and view all the answers

    What is a stop word in natural language processing (NLP)?

    <p>A word commonly used but with little meaning. (C)</p> Signup and view all the answers

    What does tokenization in NLP refer to?

    <p>The process of breaking down text into components. (B)</p> Signup and view all the answers

    What characterizes domain-specific planning systems?

    <p>They are tailored to work for a specific application. (C)</p> Signup and view all the answers

    What does a term in First Order Logic represent?

    <p>An object, constant, function, or variable serving as a placeholder. (A)</p> Signup and view all the answers

    How is the encoding of an AI planning task as a state-space search problem structured?

    <p>Nodes are environment states, edges correspond to applicable actions. (D)</p> Signup and view all the answers

    What defines a Knowledge Base in the context of AI?

    <p>A structured repository of indexed information queryable through natural language. (D)</p> Signup and view all the answers

    Which statement correctly describes Domain-Independent planning?

    <p>It is flexible and adaptable for use across various domains. (B)</p> Signup and view all the answers

    What type of elements do nodes and edges represent in the context of AI planning tasks?

    <p>Nodes are states and edges represent possible actions. (D)</p> Signup and view all the answers

    Which of the following is NOT a characteristic of a term in First Order Logic?

    <p>A term consists only of complete sentences. (C)</p> Signup and view all the answers

    How does a knowledge base differ from a traditional database in AI contexts?

    <p>A knowledge base includes reasoning capabilities for inference. (D)</p> Signup and view all the answers

    Which of the following are main areas of Artificial Intelligence?

    <p>Reasoning, Learning, Problem Solving and Perception (C)</p> Signup and view all the answers

    How can we differentiate between a discrete and a continuous environment?

    <p>A discrete environment has a finite number of actions and states; a continuous one has infinite possibilities. (D)</p> Signup and view all the answers

    Which scenario represents an adversarial problem setting?

    <p>An intelligent agent playing a chess game. (D)</p> Signup and view all the answers

    What distinguishes blind-search algorithms from informed-search algorithms?

    <p>Blind-search algorithms systematically explore all nodes, while informed-search algorithms evaluate nodes to choose the best one. (D)</p> Signup and view all the answers

    Which statement about Local (Neighbourhood) Search algorithms is not true?

    <p>They always guarantee a globally optimal solution. (B)</p> Signup and view all the answers

    Which option best describes the role of Machine Learning in Artificial Intelligence?

    <p>Machine Learning uses statistical methods to enable machines to improve from data. (B)</p> Signup and view all the answers

    Which of the following is an example of a characteristic of blind-search algorithms?

    <p>They require a predefined order for exploring nodes. (C)</p> Signup and view all the answers

    What is the main feature of informed-search algorithms compared to blind-search algorithms?

    <p>They use heuristic functions to guide their searches. (D)</p> Signup and view all the answers

    Flashcards

    Knowledge Base

    A repository of information that is indexed in a way that allows for natural language queries.

    Term in First Order Logic

    A term refers to an object that can be a constant, a function of another object, or a variable representing any object that meets specific criteria.

    Domain-Specific vs. Domain-Independent Planning

    Domain-specific planning is designed for a single application, while domain-independent planning uses general algorithms applicable across various problems.

    Encoding A.I. Planning as a State-Space Search Problem

    A.I. planning tasks are often represented as a state-space search problem by using nodes to represent environment states and edges to represent actions leading to new states. A valid plan is found by tracing a path from the initial state to a goal state.

    Signup and view all the flashcards

    What is Artificial Intelligence?

    Artificial Intelligence (AI) is a branch of computer science that aims to create intelligent machines capable of performing tasks typically requiring human intelligence. It encompasses various subfields, including Machine Learning, Natural Language Processing, Computer Vision, and Robotics.

    Signup and view all the flashcards

    What is a Discrete Environment in AI?

    Discrete environments in AI are characterized by a finite number of actions and states. This means the agent can only choose from a fixed set of actions and the environment's state is limited to a specific set of possibilities. For example, a chess game has a finite number of moves and board configurations.

    Signup and view all the flashcards

    What is a Continuous Environment in AI?

    Continuous environments in AI involve an infinite number of possible actions or states. The actions and states can vary continuously, without being restricted to specific values. Examples include controlling a robot's movement in a real-world environment or predicting stock market fluctuations.

    Signup and view all the flashcards

    What is an Adversarial Problem in AI?

    An adversarial problem setting in AI involves two or more intelligent agents competing against each other with conflicting goals. The agents strive to achieve their goals while hindering the progress of their opponents. Games such as chess, Go, or even bidding in an auction are examples of adversarial problem settings.

    Signup and view all the flashcards

    What are Blind Search Algorithms?

    Blind search algorithms explore the search space systematically without using any information about the goal or heuristic guide. They examine all nodes in a predetermined order, regardless of their potential proximity to the goal. This can lead to inefficient search in large or complex spaces.

    Signup and view all the flashcards

    What are Informed Search Algorithms?

    Informed search algorithms leverage domain-specific knowledge or heuristics to guide the search process. They use evaluation functions to estimate the potential usefulness of a node in reaching the goal, leading to more efficient exploration of the search space compared to blind search.

    Signup and view all the flashcards

    What are Local Search Algorithms?

    Local Search algorithms focus on finding optimal solutions within a small neighborhood of the current state. They iteratively move from one state to a neighboring state with a better evaluation, trying to find the best solution, even if it's not globally optimal. They are often used for optimization problems with large or continuous search spaces.

    Signup and view all the flashcards

    Are Local Search Algorithms guaranteed to find the optimal solution?

    Local Search algorithms are often used for optimization problems as they can efficiently search through large or continuous search spaces. However, they do not guarantee finding the globally optimal solution. They can get stuck in local optima, which are solutions that are better than their immediate neighbors but not the best overall solution.

    Signup and view all the flashcards

    Independence in Probability

    The probability of an event A is not affected by the occurrence or non-occurrence of another event B.

    Signup and view all the flashcards

    Overfitting

    A machine learning model that performs well on training data but fails to generalize and performs poorly on unseen data.

    Signup and view all the flashcards

    Unsupervised Learning

    An algorithm that learns from unlabeled data to discover patterns and structures.

    Signup and view all the flashcards

    Policy in Reinforcement Learning

    A function that maps states to actions, guiding an agent's behavior in a reinforcement learning environment.

    Signup and view all the flashcards

    Markov Decision Process (MDP)

    A mathematical framework for modeling decision-making under uncertainty. It involves states, actions, rewards, and transition probabilities.

    Signup and view all the flashcards

    Zero-Sum Game

    A situation where the gain of one player is equal to the loss of another player. The total gains and losses always sum to zero.

    Signup and view all the flashcards

    Mixed Strategy

    A strategy where the player chooses actions randomly based on pre-defined probabilities. This introduces unpredictability, which can be advantageous in strategic settings.

    Signup and view all the flashcards

    Challenges with Sensor data?

    The reliability and accuracy of sensor data, the existence of unobserved information, and the validity duration of perceived information. All of these factors are crucial for making informed decisions based on sensor data.

    Signup and view all the flashcards

    Drone State Representation

    It requires 6 variables to represent the dynamic state of a drone: 3 for position (up/down, left/right, forward/backward) and 3 for orientation (roll, pitch, yaw).

    Signup and view all the flashcards

    Object Detection

    A technique for identifying and locating objects within images or videos. Deep learning models have played a significant role in the evolution of this field.

    Signup and view all the flashcards

    Computer Vision in Healthcare

    Computer vision is being used to analyze medical images, develop diagnostic tools, and screen for potential health issues. These applications contribute to improved healthcare outcomes.

    Signup and view all the flashcards

    Stop Words in NLP

    Words that are common in a language but carry little meaning. These words are often removed from text before processing to improve the accuracy of natural language processing (NLP) models.

    Signup and view all the flashcards

    Tokenization in NLP

    The process of breaking down text into individual words or phrases. This is a fundamental step in most NLP tasks, as it allows the model to analyze individual units of meaning.

    Signup and view all the flashcards

    Study Notes

    Artificial Intelligence (AI) Areas

    • Four main areas of AI are Machine Learning, Reinforcement Learning, Problem Solving, and Vision.
    • Other areas include Natural Language Processing, Vision Systems, Game Theory, Robotics, Reasoning, Learning, Perception, Autonomous Vehicles, Conversational AI, Games, and Search.

    Discrete vs. Continuous Environments

    • Discrete environments have a finite number of action choices and states.
    • Continuous environments have an infinite number of possible states or actions.
    • Discrete environments often deal with real-valued numbers in environment states.
    • Continuous environments typically do not have clear termination criteria (e.g., stock market).

    Adversarial Problem Setting

    • An example of an adversarial problem setting is an intelligent agent playing chess.

    Blind-search vs. Informed-search Algorithms

    • Blind-search algorithms systematically search all nodes in a predefined order.
    • Informed-search algorithms use an evaluation function to prioritize the best nodes to expand.
    • Informed-search algorithms often look ahead into successors.
    • Blind-search algorithms might not look ahead.

    Local (Neighbourhood) Search Algorithms

    • Typically used for optimization problems.
    • Useful for large or continuous search spaces.
    • Do not guarantee finding globally optimal solutions.
    • Improve the current solution incrementally through small changes.

    Knowledge Base

    • A repository of statements (sentences).
    • Axioms or rules derived from statements.
    • Indexed using natural language to allow querying.
    • Extracted facts from reliable sources like Wikipedia.

    First Order Logic (FOL) Terms

    • Terms represent objects, variables, or functions of objects.
    • Variables are placeholders for objects.

    Domain-Specific vs. Domain-Independent Planning

    • Domain-specific planning is tailored to a particular task or application.
    • Domain-independent planning uses generic algorithms applicable to various domains.
    • Domain-specific planning requires less memory because it doesn't need to manage as many possible scenarios in large search space.

    State-Space Search Problem Encoding

    • Nodes represent environment states, and edges correspond to applicable actions.
    • Edges from an initial state node to a goal node represent a valid plan.
    • Nodes represent possible actions.
    • Edges represent effects of actions on the environment.

    Probability of Throwing a Dice (2 Times, Sum = 6)

    • The probability of throwing a fair six-sided die twice and getting a total of 6 is 1/12.

    Independence in Probability Theory

    • Event A is independent of event B if the probability of A is not influenced by the outcome of B, and vice versa.

    Overfitting in Machine Learning

    • Occurs when a machine learning model is trained too long and loses predictive ability.
    • Often occurs due to complex models being trained on too much data.
    • Results in a model that performs well on training data but poorly on unseen data.

    Unsupervised Learning Algorithms

    • Unsupervised learning algorithms typically do not use labels or pre-determined outcomes.
    • Anomaly detection is a common unsupervised learning example.

    Algorithmic Fairness

    • A field of machine learning that corrects possible biases in data.
    • Aims to produce fairer outputs by adjusting data in machine learning algorithms.

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Related Documents

    ICS 1020 Mock Questions PDF

    Description

    This quiz covers key areas of Artificial Intelligence including Machine Learning, Reinforcement Learning, and Problem Solving. Additionally, it explores the differences between discrete and continuous environments, adversarial problem settings, and various search algorithms. Test your knowledge on these foundational AI concepts!

    More Like This

    Use Quizgecko on...
    Browser
    Browser