Description

Introduction to Artificial Intelligence

General Information

When
2:00-3:30pm, Tues & Thurs
Where
1121 CSIC

Announcements

Office hour today (12/14), anyone come?
12/14/12 11:42 AM
Is there anyone planning to come to my office hour today?

I may attend my friend's defense talk this afternoon from 3 to 5pm. If no one plan to come to my office hour, I would like to cancel it.

Thanks.
#office_hour
Some topics that won't be on the final exam
12/13/12 10:06 PM
Recall that several of my review slides included lists of topics that won't be on the final exam. Here are some more topics that won't be on the exam:

- Chapter 3 (Search algorithms)
- Graphplan
- Pyhop

#final_exam
Homework 6 Graded
12/12/12 11:52 AM
You can check your hw grades on https://grades.cs.umd.edu/ (possible points of hw6 = 5 * 10 = 50).

I still have one hw with no name. Let me know if you forgot to write down your name.

#homework6
My review slides
12/11/12 3:03 PM
There's a copy of my review slides on the resources page, with the name final-review.pdf .

#final_exam
Project 3 graded
12/10/12 2:52 PM
You can check your project grade on https://grades.cs.umd.edu/ .
#project3
Homework due December 11
12/04/12 3:27 PM
Here's Homework 6, the last homework assignment of the semester. This is the same as what was on my last lecture slide today.

- Problems 13.8, 13.17, 13.21, 13.24, and 14.14.
- 10 points each, 50 points total.
- Due date: Tuesday, Dec 11
- No late date!

[updated by Kan: replaced "Thursday" by "Tuesday"]

#homework6
Project 3: Submission Instructions
12/03/12 10:33 PM
We are using the CS Submit server (https://submit.cs.umd.edu) to handle project submissions again.

Please submit the following two files to the submit server for your project 3:
  • toh_methods.py
  • logistics_methods.py

Once you have chosen and added BOTH files, click "Submit project!"

The comment blocks at the beginning of both of your files should contain the student honor pledge:
"I pledge on my honor that I have not given or received any unauthorized assistance on this project. (your name, your email address)"

All test results on correctness are visible to you, so you will see the points on correctness (50%) your submission was assigned. You may also continue to resubmit until the deadline (Dec 6, noon). Your highest scoring submission will be graded. Please note that the teaching staff, not the tests, have the final say on your submission's grade.

Please post question/comment on Piazza.
Thanks.
#project3
test data for the Towers of Hanoi domain
11/30/12 2:03 PM
You can test your Towers of Hanoi code by appending the following lines at the end of the toh_examples.py file. Obviously, you can change the value of the verbose parameter if you wish.

Sorry for not posting this earlier, I thought I had already put it into the file.


# Your Towers of Hanoi methods should be in a file
# called toh_methods.py

import toh_methods

# All of the following should succeed. The 1st one and the
# 5th one should both produce an emtpy plan, i.e., [ ].

pyhop.pyhop(state0,[('move_to_peg',0)],verbose=2)
pyhop.pyhop(state0,[('move_to_peg',1)],verbose=2)
pyhop.pyhop(state0,[('move_to_peg',2)],verbose=2)
pyhop.pyhop(state1,[('move_to_peg',0)],verbose=2)
pyhop.pyhop(state1,[('move_to_peg',1)],verbose=2)
pyhop.pyhop(state1,[('move_to_peg',2)],verbose=2)
pyhop.pyhop(state2,[('move_to_peg',0)],verbose=2)
pyhop.pyhop(state2,[('move_to_peg',1)],verbose=2)
pyhop.pyhop(state2,[('move_to_peg',2)],verbose=2)


text_editor.run_code_dismiss
#project3
Staff Office Hours
NameOffice Hours
Dana Nau
When?
Where?
Kan-Leung Cheng
When?
Where?

Homework

Homework
Due Date
09/27/2012

Lecture Notes

Lecture Notes
Lecture Date