CBSE Class 10 Artificial Intelligence Curriculum Vocabulary Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/65

flashcard set

Earn XP

Description and Tags

A complete set of vocabulary flashcards covering basic and advanced AI concepts, modeling, evaluation metrics, computer vision, and Natural Language Processing based on the Class 10 Facilitator Handbook.

Last updated 1:53 PM on 7/9/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

66 Terms

1
New cards

AI Project Cycle

The cyclical process followed to complete an AI project, consisting of stages: Problem Scoping, Data Acquisition, Data Exploration, Modeling, Evaluation, and Deployment.

2
New cards

Problem Scoping

The initial stage of the AI project cycle where the goal is set by defining the problem that needs to be solved.

3
New cards

Data Acquisition

The process of collecting data from various reliable and authentic sources to serve as the base for an AI project.

4
New cards

Data Exploration

A stage in the AI project cycle where visual representations like graphs and maps are used to interpret patterns in acquired data.

5
New cards

Modeling

The stage where a suitable algorithm is researched, selected, and tested to achieve the project goal.

6
New cards

Deployment

The final stage of the AI project cycle ensuring the successful integration and operation of AI solutions in real-world environments.

7
New cards

Statistical Data Domain

A domain of AI related to data systems and processes where the system collects data sets to derive meaning for decision-making.

8
New cards

Computer Vision (CV)

A domain of AI that enables machines to analyze visual information (photographs, videos) and predict decisions about it.

9
New cards

Natural Language Processing (NLP)

A branch of AI that enables computers to analyze, understand, and process human languages (spoken or written).

10
New cards

Ethical Frameworks

Step-by-step guidance used to ensure that problem-solving choices do not cause unintended harm and align with certain moral principles.

11
New cards

Bioethics

A sector-based ethical framework used in healthcare and life sciences to address issues like patient privacy and data security.

12
New cards

Non-maleficence

An ethical principle of avoiding causing harm or negative consequences, prioritizing the path of least harm.

13
New cards

Beneficence

The ethical principle of promoting and maximizing the well-being and welfare of individuals and society.

14
New cards

Artificial Intelligence (AI)

The umbrella term for any technique that enables computers to mimic human intelligence using algorithms and data.

15
New cards

Machine Learning (ML)

A subset of AI that enables machines to improve at tasks with experience by learning from new data without explicit programming.

16
New cards

Deep Learning (DL)

A specialized learning approach and subset of ML that uses vast amounts of data and multiple algorithms (neural networks) to train itself.

17
New cards

Features

The columns of a dataset that describe characteristics used by an AI model to make predictions.

18
New cards

Labels

Specific information attached as a tag to data used as the target variable for predictions in a model.

19
New cards

Supervised Learning

A machine learning approach where a model is trained using labeled data, acting like a student learning from a teacher.

20
New cards

Unsupervised Learning

A machine learning approach where a model independently discovers patterns and relationships within an unlabeled dataset.

21
New cards

Reinforcement Learning

A learning approach where a machine learns through trial-and-error using a reward mechanism to maximize positive outcomes.

22
New cards

Classification Model

A supervised learning model used to categorize data into discrete, predefined classes or labels.

23
New cards

Regression Model

A supervised learning model that works on continuous data to predict numerical values like price, age, or temperature.

24
New cards

Clustering

An unsupervised learning method that finds similarities between objects and groups them into clusters without predefined labels.

25
New cards

Association Rule

An unsupervised learning method used to discover interesting relationships between variables in large databases based on patterns.

26
New cards

Artificial Neural Networks (ANN)

Deep learning models modeled on the human brain that automatically extract data features efficiently using interconnected layers of nodes.

27
New cards

Convolutional Neural Network (CNN)

A deep learning algorithm designed to assign importance to objects in an image and differentiate one from another.

28
New cards

Perceptron

A mathematical model of a neural node used for making binary decisions by summing weighted inputs and comparing them to a threshold.

29
New cards

Train-test split

A technique for evaluating model performance by dividing a dataset into a training subset to teach the model and a testing subset to verify it.

30
New cards

Accuracy

An evaluation metric measuring the total number of correct predictions a model makes as a ratio of all predictions.

31
New cards

Error

The difference between a model's prediction and the actual outcome, quantifying how often the model makes mistakes.

32
New cards

Confusion Matrix

A tabular presentation used to summarize the accuracy of a classification model across various actual and predicted classes.

33
New cards

True Positive (TP)

The outcome where the model correctly predicts the positive class, such as identifying a diseased person as having the disease.

34
New cards

False Positive (FP)

The outcome where a model incorrectly predicts the negative class as positive, such as identifying a healthy person as having a disease.

35
New cards

Precision

The ratio of correctly classified positive examples to the total number of examples predicted as positive: TPTP+FP\frac{TP}{TP + FP}.

36
New cards

Recall

The measure of a model's ability to correctly identify actual positives, also known as Sensitivity: TPTP+FN\frac{TP}{TP + FN}.

37
New cards

F1 Score

A combined metric used for unbalanced datasets that balances precision and recall: 2×Precision×RecallPrecision+Recall2 \times \frac{\text{Precision} \times \text{Recall}}{\text{Precision} + \text{Recall}}.

38
New cards

No-Code AI

Visual AI development platforms that use drag-and-drop features instead of manual programming to build applications.

39
New cards

Low-Code AI

AI development platforms that provide visual interfaces but still require a limited amount of manual coding for customization.

40
New cards

Orange Data Mining

An open-source, no-code data visualization and machine learning toolkit used for building AI workflows.

41
New cards

Mean

A descriptive statistic representing the central value or common average of a set of numbers.

42
New cards

Median

The middle value in a dataset when numbers are ordered from low to high.

43
New cards

Normal Distribution

A symmetrical distribution of values clustered around a central peak, appearing bell-shaped.

44
New cards

Variance

A measurement of how far each value in a data set is spread out from the mean.

45
New cards

Standard Deviation

A calculation representing how widely distributed values are within a dataset relative to the mean.

46
New cards

Outlier

A specific data point that lies at an abnormal distance from other values in a dataset.

47
New cards

Image Processing

A subset of computer vision focused on processing raw input images to enhance them or prepare them for further analysis.

48
New cards

Pixel

The smallest unit of information that makes up a digital picture, standing for "picture element."

49
New cards

Resolution

The number of pixels in an image, often calculated as width multiplied by height (e.g., 1280×10241280 \times 1024).

50
New cards

Pixel Value

A numerical description of a pixel's brightness or color, typically ranging from 00 (black) to 255255 (white) in an 88-bit byte image.

51
New cards

Grayscale Image

An image consisting of shades of gray where each pixel has a single byte value representing intensity from 00 to 255255.

52
New cards

RGB Image

A color image stored using three channels—Red, Green, and Blue—where each pixel is formed by combining intensities from all three planes.

53
New cards

Kernel

A sliding matrix used in convolution to multiply image arrays and enhance specific visual features.

54
New cards

Convolution Layer

The first layer of a CNN responsible for extracting high-level features like edges and colors from an input image.

55
New cards

Pooling Layer

A layer in a CNN that reduces the spatial size of convolved features to make management and processing more efficient.

56
New cards

Lexical Analysis

The initial stage of NLP involving identifying the structure of words and dividing text into sentences and tokens.

57
New cards

Syntactic Analysis

The stage of NLP that checks the grammatical structure of sentences to ensure relationships between words are valid.

58
New cards

Semantic Analysis

The stage of NLP where input text is checked for actual meaning and logical meaningfulness within a sentence.

59
New cards

Pragmatic Analysis

The final stage of NLP that checks sentences for relevance and intended meaning in the real world.

60
New cards

Text Normalization

The process of simplifying complex language into tokens and basic forms to clean up textual data for computer processing.

61
New cards

Tokenization

Dividing sentences into individual units called tokens, which include words, numbers, and special characters.

62
New cards

Stop Words

Frequently occurring words like "and," "the," and "is" that add little value to the context and are often removed during preprocessing.

63
New cards

Stemming

A text processing technique that removes affixes from words to reduce them to a base form, which might not be a meaningful word (e.g., "studi").

64
New cards

Lemmatization

A text processing technique that removes affixes to ensure the resulting root word (lemma) is meaningful (e.g., "study").

65
New cards

Bag of Words

An NLP algorithm that extracts features from text by creating a dictionary of unique words and counting their frequencies.

66
New cards

TFIDF

Short for Term Frequency-Inverse Document Frequency, a metric used to identify the relative value and importance of each word in a corpus.