SlideShare a Scribd company logo
CONTACT US ON-
Address-
Opp. Phagwara Bus Stand,Above Bella Pizza, Handa City Center,Phagwara
Email-e2matrixphagwara@gmail.com, jalandhare2matrix@gmail.com
Web site-www.e2matrix.com
Contact no-07508509730, 09041262727, 7508509709
WHAT’S AI? (TO ME)
COMPUTERS MAKING DECISIONS IN REAL-WORLD PROBLEMS
apply
formulate solve
SEARCH PROBLEMS
LET S BE THE SET OF STATES (STRINGS)
INPUT:
• INITIAL STATE: S0
• NEIGHBOR GENERATOR, N: S → 2S
• GOAL FUNCTION, G: S → {0,1}
SEARCH ANSWER
S1,…,SN SUCH THAT:
• S1,…,SN ∈ S
• FOR ALL 1≤I≤N, SI ∈ N(SI-1)
• G(SN) = 1
EXAMPLES
WE’RE VERY IMPRESSED. MEANING?
• RUSH HOUR
• 8-PUZZLE
• LOGISTICS
• 8-QUEENS PROBLEM
• LOGIC PUZZLES
• JOB-SHOP SCHEDULING
RUSH HOUR
MOVE CARS FORWARD AND BACKWARD TO “ESCAPE”
SEARCH VERSION
STATES: CONFIGURATIONS OF CARS
N(S): REACHABLE
STATES
G(S): 1 IF RED
CAR AT GATE
8-PUZZLE
SLIDE TILES INTO ORDER
STATES:
N(S):
G(S):
6
4
2 7
8 1
3 5
6
4
2 7
8 1
3 5
6
4
2 7
8 1
3 5
6 2 7
8 1
3 5
6
4
2 7
8 1
3
1 2 3
5 6
87
LOGISTICS
VERY SOPHISTICATED. WHAT GOES WHERE WHEN?
DESERT STORM LOGISTICS “PAID FOR AI RESEARCH”
8 QUEENS PUZZLE
NO CAPTURES
STATES:
N(S):
G(S):
LOGIC PUZZLES
1. JODY, WHO IS AN APE, WASN’T THE APE WHO
RETURNED IMMEDIATELY AFTER TOM AND
IMMEDIATELY BEFORE THE ANIMAL WHO APPEARED IN
THE MOVIE WITH NO RATING.
2. THE ONLY LIONS THAT WERE USED IN THE MOVIES
WERE THE ONE WHO WAS THE THIRD TO RETURN,
THE ONE WHO APPEARED IN THE R MOVIE, AND THE
ONE WHO APPEARED IN “LUCK”. …
JOB-SHOP SCHEDULING
INDUSTRIAL PROBLEM:
• ALLOCATE MACHINES AND MACHINISTS TO TIME SLOTS
• CONSTRAINTS ON ORDERS IN WHICH PARTS ARE SERVICED
SEARCH TEMPLATE
• FRINGE = {(S0, 0)}; /* INITIAL COST */
• MARKVISITED(S0);
• WHILE (1) {
IF EMPTY(FRINGE), RETURN FAILURE;
(S, C) = REMOVEMINCOST(FRINGE);
IF G(S) RETURN S;
FOREACH S’ IN N(S)
IF UNVISITED(S’)
FRINGE = FRINGE U {(S’, COST(S’)};
MARKVISITED(S0);
}
DATA STRUCTURES
HOW IMPLEMENT THIS EFFICIENTLY?
• REMOVEMINCOST-U-EMPTY?
• MARKVISITED-UNVISITED?
VARY COST
HOW DOES SEARCH BEHAVIOR CHANGE WITH COST?
• COST(S’) = C + 1
• COST(S’) = C - 1
GRID EXAMPLE: BFS
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
GRID EXAMPLE: DFS
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
ss00
GG
HOW EVALUATE?
WHAT MAKES ONE SEARCH SCHEME BETTER THAN ANOTHER?
• COMPLETENESS: FIND SOLUTION?
• TIME COMPLEXITY: HOW LONG?
• SPACE COMPLEXITY: MEMORY?
• OPTIMALITY: FIND SHORTEST PATH?
DEPTH VS. BREADTH-FIRST
LET |T(S)| ≤ B (BRANCHING FACTOR), GOAL AT DEPTH D
• HOW IMPLEMENT PRIORITY QUEUE?
• COMPLETENESS?
• TIME COMPLEXITY?
• SPACE COMPLEXITY?
• OPTIMALITY?
BFS
• COMPLETENESS?
• YES
• TIME COMPLEXITY?
• O(BD
)
• SPACE COMPLEXITY?
• O(BD
) 
• OPTIMALITY?
• YES
DFS
• COMPLETENESS?
• YES, ASSUMING STATE SPACE FINITE
• TIME COMPLEXITY?
• O(|S |), CAN DO WELL IF LOTS OF GOALS
• SPACE COMPLEXITY?
• O(N), N DEEPEST POINT OF SEARCH
• OPTIMALITY?
• NO 
DEPTH-LIMITED SEARCH
DFS, ONLY EXPAND NODES DEPTH ≤ L.
• COMPLETENESS?
• NO, IF L ≤ D. 
• TIME COMPLEXITY?
• O(BL
)
• SPACE COMPLEXITY?
• O(L)
• OPTIMALITY?
• NO 
ITERATIVE DEEPENING
DEPTH LIMITED, INCREASING L.
• COMPLETENESS?
• YES. 
• TIME COMPLEXITY?
• O(BD
), EVEN WITH REPEATED WORK! 
• SPACE COMPLEXITY?
• O(D) 
• OPTIMALITY?
• YES 
BIDIRECTIONAL SEARCH
BFS IN BOTH DIRECTIONS
NEED N-1
HOW COULD THIS HELP?
• BL
VS 2BL/2
WHAT MAKES THIS HARD TO IMPLEMENT?
WHICH DO YOU CHOOSE?
• 8-QUEENS, NEIGHBORS OF S ADD ONE QUEEN TO BOARD
WHICH DO YOU CHOOSE?
• BIG GRID, GOAL NEARBY
WHAT TO LEARN
HOW TO EXPRESS PROBLEMS IN THE SEARCH FRAMEWORK
THE BASIC ALGORITHMS FOR SEARCH
STRENGTHS AND WEAKNESSES OF THE BASIC ALGORITHMS

More Related Content

Viewers also liked

6months industrial training in image processing, jalandhar
6months industrial training in image processing, jalandhar6months industrial training in image processing, jalandhar
6months industrial training in image processing, jalandhar
deepikakaler1
 
Software testing mtech project in jalandhar
Software testing mtech project in jalandharSoftware testing mtech project in jalandhar
Software testing mtech project in jalandhar
deepikakaler1
 
6months industrial training in labview, ludhiana
6months industrial training in labview, ludhiana6months industrial training in labview, ludhiana
6months industrial training in labview, ludhiana
deepikakaler1
 
6 weeks summer training in fuzzy logic,jalandhar
6 weeks summer training in fuzzy logic,jalandhar6 weeks summer training in fuzzy logic,jalandhar
6 weeks summer training in fuzzy logic,jalandhar
deepikakaler1
 
Hfss final year project in jalandhar
Hfss final year project in jalandharHfss final year project in jalandhar
Hfss final year project in jalandhar
deepikakaler1
 
6 weeks summer training in hfss,ludhiana
6 weeks summer training in hfss,ludhiana6 weeks summer training in hfss,ludhiana
6 weeks summer training in hfss,ludhiana
deepikakaler1
 
Artificial intelligence project in jalandhar
Artificial intelligence project in jalandharArtificial intelligence project in jalandhar
Artificial intelligence project in jalandhar
deepikakaler1
 
6months industrial training in hfss, jalandhar
6months industrial training in hfss, jalandhar6months industrial training in hfss, jalandhar
6months industrial training in hfss, jalandhar
deepikakaler1
 
6 weeks summer training in data mining,jalandhar
6 weeks summer training in data mining,jalandhar6 weeks summer training in data mining,jalandhar
6 weeks summer training in data mining,jalandhar
deepikakaler1
 

Viewers also liked (9)

6months industrial training in image processing, jalandhar
6months industrial training in image processing, jalandhar6months industrial training in image processing, jalandhar
6months industrial training in image processing, jalandhar
 
Software testing mtech project in jalandhar
Software testing mtech project in jalandharSoftware testing mtech project in jalandhar
Software testing mtech project in jalandhar
 
6months industrial training in labview, ludhiana
6months industrial training in labview, ludhiana6months industrial training in labview, ludhiana
6months industrial training in labview, ludhiana
 
6 weeks summer training in fuzzy logic,jalandhar
6 weeks summer training in fuzzy logic,jalandhar6 weeks summer training in fuzzy logic,jalandhar
6 weeks summer training in fuzzy logic,jalandhar
 
Hfss final year project in jalandhar
Hfss final year project in jalandharHfss final year project in jalandhar
Hfss final year project in jalandhar
 
6 weeks summer training in hfss,ludhiana
6 weeks summer training in hfss,ludhiana6 weeks summer training in hfss,ludhiana
6 weeks summer training in hfss,ludhiana
 
Artificial intelligence project in jalandhar
Artificial intelligence project in jalandharArtificial intelligence project in jalandhar
Artificial intelligence project in jalandhar
 
6months industrial training in hfss, jalandhar
6months industrial training in hfss, jalandhar6months industrial training in hfss, jalandhar
6months industrial training in hfss, jalandhar
 
6 weeks summer training in data mining,jalandhar
6 weeks summer training in data mining,jalandhar6 weeks summer training in data mining,jalandhar
6 weeks summer training in data mining,jalandhar
 

Similar to Artificial intelligence mtech project in ludhiana

cloud computing training in chennai
cloud computing training in chennaicloud computing training in chennai
cloud computing training in chennai
matrixphagwara
 
6months industrial training in artificial intelligence, jalandhar
6months industrial training in artificial intelligence, jalandhar6months industrial training in artificial intelligence, jalandhar
6months industrial training in artificial intelligence, jalandhar
deepikakaler1
 
6 weeks summer training in artificial intelligence,jalandhar
6 weeks summer training in artificial intelligence,jalandhar6 weeks summer training in artificial intelligence,jalandhar
6 weeks summer training in artificial intelligence,jalandhar
deepikakaler1
 
cloud computing training in Bathinda
cloud  computing training in Bathinda cloud  computing training in Bathinda
cloud computing training in Bathinda
matrixphagwara
 
cloud computing training in delhi
cloud computing training in delhicloud computing training in delhi
cloud computing training in delhi
matrixphagwara
 
Reinforcement learning
Reinforcement learningReinforcement learning
Reinforcement learning
Shahan Ali Memon
 

Similar to Artificial intelligence mtech project in ludhiana (6)

cloud computing training in chennai
cloud computing training in chennaicloud computing training in chennai
cloud computing training in chennai
 
6months industrial training in artificial intelligence, jalandhar
6months industrial training in artificial intelligence, jalandhar6months industrial training in artificial intelligence, jalandhar
6months industrial training in artificial intelligence, jalandhar
 
6 weeks summer training in artificial intelligence,jalandhar
6 weeks summer training in artificial intelligence,jalandhar6 weeks summer training in artificial intelligence,jalandhar
6 weeks summer training in artificial intelligence,jalandhar
 
cloud computing training in Bathinda
cloud  computing training in Bathinda cloud  computing training in Bathinda
cloud computing training in Bathinda
 
cloud computing training in delhi
cloud computing training in delhicloud computing training in delhi
cloud computing training in delhi
 
Reinforcement learning
Reinforcement learningReinforcement learning
Reinforcement learning
 

More from deepikakaler1

Vlsi final year project in ludhiana
Vlsi final year project in ludhianaVlsi final year project in ludhiana
Vlsi final year project in ludhiana
deepikakaler1
 
Software testing mtech project in ludhiana
Software testing mtech project in ludhianaSoftware testing mtech project in ludhiana
Software testing mtech project in ludhiana
deepikakaler1
 
Opnet final year project in ludhiana
Opnet final year project in ludhianaOpnet final year project in ludhiana
Opnet final year project in ludhiana
deepikakaler1
 
Labview phd project in ludhiana
Labview phd project in ludhianaLabview phd project in ludhiana
Labview phd project in ludhiana
deepikakaler1
 
Hfss final year project in ludhiana
Hfss final year project in ludhianaHfss final year project in ludhiana
Hfss final year project in ludhiana
deepikakaler1
 
Fuzzy logic mtech project in ludhiana
Fuzzy logic mtech project in ludhiana Fuzzy logic mtech project in ludhiana
Fuzzy logic mtech project in ludhiana
deepikakaler1
 
Embedded final year project in ludhiana
Embedded final year project in ludhianaEmbedded final year project in ludhiana
Embedded final year project in ludhiana
deepikakaler1
 
Data mining final year project in ludhiana
Data mining final year project in ludhianaData mining final year project in ludhiana
Data mining final year project in ludhiana
deepikakaler1
 
Android mtech project in ludhiana
Android  mtech project in ludhianaAndroid  mtech project in ludhiana
Android mtech project in ludhiana
deepikakaler1
 
.Net final year project in LUDHIANA
.Net final year project in LUDHIANA.Net final year project in LUDHIANA
.Net final year project in LUDHIANA
deepikakaler1
 
6 weeks/months summer training in vlsi,ludhiana
6 weeks/months summer training in vlsi,ludhiana6 weeks/months summer training in vlsi,ludhiana
6 weeks/months summer training in vlsi,ludhiana
deepikakaler1
 
6 weeks summer training in software testing,ludhiana
6 weeks summer training in software testing,ludhiana6 weeks summer training in software testing,ludhiana
6 weeks summer training in software testing,ludhiana
deepikakaler1
 
6months industrial training in software testing, ludhiana
6months industrial training in software testing, ludhiana6months industrial training in software testing, ludhiana
6months industrial training in software testing, ludhiana
deepikakaler1
 
6 weeks summer training in labview,ludhiana
6 weeks summer training in labview,ludhiana6 weeks summer training in labview,ludhiana
6 weeks summer training in labview,ludhiana
deepikakaler1
 
6months industrial training in hfss, ludhiana
6months industrial training in hfss, ludhiana6months industrial training in hfss, ludhiana
6months industrial training in hfss, ludhiana
deepikakaler1
 
6 weeks summer training in fuzzy logic,ludhiana
6 weeks summer training in fuzzy logic,ludhiana6 weeks summer training in fuzzy logic,ludhiana
6 weeks summer training in fuzzy logic,ludhiana
deepikakaler1
 
6months industrial training in fuzzy logic, ludhiana
6months industrial training in fuzzy logic, ludhiana6months industrial training in fuzzy logic, ludhiana
6months industrial training in fuzzy logic, ludhiana
deepikakaler1
 
6months industrial training in embedded, ludhiana
6months industrial training in embedded, ludhiana6months industrial training in embedded, ludhiana
6months industrial training in embedded, ludhiana
deepikakaler1
 
6 weeks summer training in embedded,ludhiana
6 weeks summer training in embedded,ludhiana6 weeks summer training in embedded,ludhiana
6 weeks summer training in embedded,ludhiana
deepikakaler1
 
6 weeks summer training in android,ludhiana
6 weeks summer training in android,ludhiana6 weeks summer training in android,ludhiana
6 weeks summer training in android,ludhiana
deepikakaler1
 

More from deepikakaler1 (20)

Vlsi final year project in ludhiana
Vlsi final year project in ludhianaVlsi final year project in ludhiana
Vlsi final year project in ludhiana
 
Software testing mtech project in ludhiana
Software testing mtech project in ludhianaSoftware testing mtech project in ludhiana
Software testing mtech project in ludhiana
 
Opnet final year project in ludhiana
Opnet final year project in ludhianaOpnet final year project in ludhiana
Opnet final year project in ludhiana
 
Labview phd project in ludhiana
Labview phd project in ludhianaLabview phd project in ludhiana
Labview phd project in ludhiana
 
Hfss final year project in ludhiana
Hfss final year project in ludhianaHfss final year project in ludhiana
Hfss final year project in ludhiana
 
Fuzzy logic mtech project in ludhiana
Fuzzy logic mtech project in ludhiana Fuzzy logic mtech project in ludhiana
Fuzzy logic mtech project in ludhiana
 
Embedded final year project in ludhiana
Embedded final year project in ludhianaEmbedded final year project in ludhiana
Embedded final year project in ludhiana
 
Data mining final year project in ludhiana
Data mining final year project in ludhianaData mining final year project in ludhiana
Data mining final year project in ludhiana
 
Android mtech project in ludhiana
Android  mtech project in ludhianaAndroid  mtech project in ludhiana
Android mtech project in ludhiana
 
.Net final year project in LUDHIANA
.Net final year project in LUDHIANA.Net final year project in LUDHIANA
.Net final year project in LUDHIANA
 
6 weeks/months summer training in vlsi,ludhiana
6 weeks/months summer training in vlsi,ludhiana6 weeks/months summer training in vlsi,ludhiana
6 weeks/months summer training in vlsi,ludhiana
 
6 weeks summer training in software testing,ludhiana
6 weeks summer training in software testing,ludhiana6 weeks summer training in software testing,ludhiana
6 weeks summer training in software testing,ludhiana
 
6months industrial training in software testing, ludhiana
6months industrial training in software testing, ludhiana6months industrial training in software testing, ludhiana
6months industrial training in software testing, ludhiana
 
6 weeks summer training in labview,ludhiana
6 weeks summer training in labview,ludhiana6 weeks summer training in labview,ludhiana
6 weeks summer training in labview,ludhiana
 
6months industrial training in hfss, ludhiana
6months industrial training in hfss, ludhiana6months industrial training in hfss, ludhiana
6months industrial training in hfss, ludhiana
 
6 weeks summer training in fuzzy logic,ludhiana
6 weeks summer training in fuzzy logic,ludhiana6 weeks summer training in fuzzy logic,ludhiana
6 weeks summer training in fuzzy logic,ludhiana
 
6months industrial training in fuzzy logic, ludhiana
6months industrial training in fuzzy logic, ludhiana6months industrial training in fuzzy logic, ludhiana
6months industrial training in fuzzy logic, ludhiana
 
6months industrial training in embedded, ludhiana
6months industrial training in embedded, ludhiana6months industrial training in embedded, ludhiana
6months industrial training in embedded, ludhiana
 
6 weeks summer training in embedded,ludhiana
6 weeks summer training in embedded,ludhiana6 weeks summer training in embedded,ludhiana
6 weeks summer training in embedded,ludhiana
 
6 weeks summer training in android,ludhiana
6 weeks summer training in android,ludhiana6 weeks summer training in android,ludhiana
6 weeks summer training in android,ludhiana
 

Recently uploaded

Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 

Recently uploaded (20)

Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 

Artificial intelligence mtech project in ludhiana