CSci 356 - Homework 2
Due: Wednesday,
Feb.19, 2025
This assignment is worth 50 points. For full credit:
- submit responses to BrightSpace by 11:59pm on the due date
- see the Deliverables section below
Reading:
AI:FCA, Ch. 1 Section 1.2, Ch. 3 Sections 1 - 7.
Written Part (25 points).
- (15 points) These historical AI systems are all introduced in
Chapter 1 of the textbook; some were developed before the term
"artificial intelligence" was coined!
Pick three of the systems listed below to research and write one to three paragraphs about each, expanding on the text's descriptions. Be sure to include the year the program was developed (or the paper describing it was published), the goals of the system or problem it was intended to solve, and if you can find out, the programming language used to develop the system:
- Terry Winograd's SHRDLU
- Samuel's 1952 checkers program
- Wang's logic theorem prover
- Warren and Pereira's CHAT-80
- McCulloch and Pitt's formal neuron model (not a program, more a descriptive model)
- The perceptron neural model of Rosenblatt
- (10 points) Winograd schemas have
been proposed as an alternative to the sorts of questions typically
used in the Turing Test. An example of Winograd schemas and an
interaction with the version of ChatGPT released in 2022 appears in
Example 1.2 in Chapter 1 of the textbook. For this problem:
- give the two main properties of Winograd schemas
- come up with three statement/question pairs of your own that might be posed to ChatGPT
Programming Problem (25 points - 5 points each).
Here we'll experiment with and modify the search problem examples described in Chapter 3 of aipython.pdf; here's a quick breakdown of each section:
- Sec 3.1 describes creating explicit graphs in Python, then defines the ones in the book, so we don't have to!
- Sec 3.2.1 defines a generic search class
Searcher
which does DFS by default. It can be modified to do BFS instead (see problem below). - Sec 3.2.2 defines a GUI for visualizing graphs and search progress on those graphs
- Sec 3.2.3-3.2.4 defines a priority queue and a search class
that extends
Searcher
to implement the A* algorithm; this class can be modified or extended for other best-first algorithms.
For each problem, you'll run the Python code with ipython as before: ipython -i program.py where you'll replace program.py with the actual file name.
- Run the program searchGeneric.py as described in Sec. 3.1
then run each executable line of code from lines 61-68 interactively
as suggested in the paragraph just above those lines of code. That is,
you'll create two objects of type
Searcher
, then run the search method repeatedly until no more solutions are found. Grab a screenshot of your results.
- Run the program searchGUI.py then interactive execute
SearcherGUI(Searcher, searchExample.simp_delivery_graph)
at the iPython prompt. You'll get a graphics window showing the graph for the robot delivery problem. Press the Step button repeatedly to see the nodes explored by the DFS algorithm used bySearcher
.
Thematplotlib
window that displays the graph has a Disk icon that opens a dialog box to save the currently displayed image as a PNG file. Use this to produce two files: one image showing an intermediate step where the goal state has not yet been reached, and one showing the solution.
- The
Searcher
class can be easily modified to run the BFS algorithm instead of the DFS algorithm. To do this, change the code in the methodadd_to_frontier
so that it uses queue discipline (first-in, first-out) rather than the stack discipline it currently uses (last-in, first-out) when add new path nodes.
Now re-run the examples from Problem 1, show the results, and discuss whether BFS or DFS performs better here. Granted, it is a very small example.
- The class
AStarSearcher
is implemented in this same Python file. Again, there are example runs commented out in the section from lines 160 to 175. Run these as we did in Problem 1. Produce a screenshot for each run ofAStarSearcher
; be sure to call thesearch
method until it no longer returns new results.
- Attempt AIPython Exercise 3.2; document the comparison to
A* requested (number of paths expanded, path found by each)
Deliverables.
Written part:
- You can complete the assignment on paper and turn in at the beginning of class on the due date
- Or, complete the assignment in an editor and post to the Assignments page on BrightSpace by the due date
- Either way, make sure your name is clearly visible
Programming part:
- Post screenshots and any modified Python files responses to BrightSpace, preferably in a single zip file.
- Include a text file README answering any questions from this section. Also use this file to document any issues or program bugs you could not resolve before the due date.
- All files must include your name. In the Python files, just add one
comment line at the top of any file
you modify: CS356 Homework 2 - file modified by <your name or email address>