ME 467 Machine Intelligence

An introduction to artificial/machine intelligence. The study of this evolving and diverse topic begins with a survey and classification of techniques, including search-based, logic-based, statistical, and embodied. Applications of intelligent technologies explored include natural language processing, vision, expert knowledge, game-playing, and several robotics applications. Upon conclusion of the survey, the focus of the course turns to a special topic chosen by the instructor. The instructor could choose, for instance, machine learning, embodiment, evolutionary robotics, or artificial life—or a project.

An introduction to artificial/machine intelligence. The study of this evolving and diverse topic begins with a survey and classification of techniques, including search-based, logic-based, statistical, and embodied. Applications of intelligent technologies explored include natural language processing, vision, expert knowledge, game-playing, and several robotics applications. Upon conclusion of the survey, the focus of the course turns to a special topic chosen by the instructor. The instructor could choose, for instance, machine learning, embodiment, evolutionary robotics, or artificial life—or a project.

Course description

An introduction to artificial/machine intelligence. The study of this evolving and diverse topic begins with a survey and classification of techniques, including search-based, logic-based, statistical, and embodied. Applications of intelligent technologies explored include natural language processing, vision, expert knowledge, game-playing, and several robotics applications. Upon conclusion of the survey, the focus of the course turns to a special topic chosen by the instructor. The instructor could choose, for instance, machine learning, embodiment, evolutionary robotics, or artificial life—or a project.

General information

Instructor Rico AR Picone, PhD Actual office hours (CH 103C) M,W 2:50–3:50 T,Th 2:20–3:50 Virtual office hours (zoom, make appointment!) M,W 2:50–3:50 T,Th 2:20–3:50 Virtual office hours appointments make appointment Office location CH 103C Classroom location Panowicz Hall 107 Times MW 2:00–4:20 pm Moodle moodle.stmartin.edu

secretssssssssss

Textbooks

Stuart J. Russell and Peter Norvig. Artificial Intelligence: A Modern Approach. Fourth Edition. Pearson Education, 2020. (Required. Henceforth: RN)

Artificial Intelligence: A Modern Approach.

Ian Goodfellow, Yoshua Bengio, Aaron Courville. Deep Learning. MIT Press, 2016. (Recommended to extend your understanding of deep learning.)

Deep Learning.

Rolf Pfeifer and Josh Bongard. How the Body Shapes the Way We Think: A New View of Intelligence. MIT Press, 2007. (Recommended to extend your understanding of embodied cognition.)

How the Body Shapes the Way We Think: A New View of Intelligence.

Schedule

The following schedule is tentative. All assignments will be set one week before the due date.

tentativeset
week topics introduced reading project due
course introduction, setting up your development environment RN 1 Introduction
2 Intelligent Agents
set up your dev environment, organize into teams
TBA RN 3 Solving Problems by Searching
4 Search in Complex Environments
set up collab environment (GitHub) and report doc assignment TBA
TBA RN 6 Constraint Satisfaction Problems
19 Learning from Examples
write control program with given controller assignment TBA
TBA RN 21 Deep Learning
22 Reinforcement Learning
begin writing ML controller assignment TBA
TBA TBA continue writing ML controller assignment TBA
TBA 26 Robotics write report project due
Day Date Topics Reading Due

Assignments

TBA

Assignments

No assignments found.

Development environment

The following development environment will be used for all class examples and assignments. The three primary pieces of software, Anaconda (Python), Git, and VS Code are available for free on all major operating systems. All of this except VS Code is installed on engineering lab computers (including those in the classroom).

Anaconda

Anaconda is a distribution of Python with a collection of Python packages for data science.

Download and install Anaconda.

Git

Git is an amazing version control tool for code development and collaboration. I use it for everything.

Install Git from the instructions here.

VS Code

This is currently the most popular code editor/integrated development environment (IDE) for many programming languages and tasks.

Setting up your VS Code environment

Do the following to set up your VS Code environment:

Download and install VS Code. It is available on all major platforms. It can be installed on your user account on a lab computer.

Open VS Code.

Under the “Extensions” tab (left-side navigation), install the Python extension.

Windows users: type ctrl+``` to open a terminal. Click the dropdown next to the + sign and select “Select Default Profile.” From the dropdown, select “Git Bash.”

Type ctrl+shift+P (macOS cmd+shift+p), type Python: Select Interpreter, and press Enter. Select from the list the python.exe file in an anaconda directory with the name base. This selects the Anaconda environment base. This should already contain the packages we will need.

Create a new file with ctrl+N. Write the following in the file:

import numpy as np
 import sympy as sp
 import matplotlib.pyplot as plt

 print("Hello, world!"

Click the “play” button in the top right (Run Python File in Dedicated Terminal). The terminal should display the output Hello, world!.

  • Create a new file with ctrl+N. Write the following in the file:

     import numpy as np
     import sympy as sp
     import matplotlib.pyplot as plt
    
     print("Hello, world!")
    
    
    
     import numpy as np
     import sympy as sp
     import matplotlib.pyplot as plt
    
     print("Hello, world!"
    

    Projects

    The projects will create machine learning controllers (MLCs) to control dynamic systems. The groups will be given two multi-input, multi-output (MIMO) dynamic system plant models to control:

  • Nice Model : a linear system and
  • Challenge Model : a nonlinear system.
  • With the Nice Model, you will be given a Benchmark Controller. The design goals are

  • to design an MLC for the Nice Model that meets or exceeds the Benchmark Controller’s performance and
  • to design another MLC that meets design performance criteria.
  • Performance criteria

    TBA

    Project organization

    Projects will have the following organization.

    The class will be divided into two teams.

  • Franny (co-lead)
  • Robert (co-lead)
  • Justus
  • Jonathan (co-lead)
  • Kyler (co-lead)
  • Kristopher
  • Reno
  • Deep Learning : uses a deep learning method to design the controllers.
  • Reinforcement Learning : uses a reinforcement learning method to design the controllers.
  • Each team will have its own GitHub repository. Create a GitHub account and message me your username so I can add you to your repository.

  • Deep Learning Project
  • Reinforcement Learning Project
  • Each team will collaborate to

  • research their method of MLC,
  • design the MLC controllers,
  • write programs that demonstrate their controllers’ performance, and
  • write a report according to the report guidelines.
  • Deep Learning : uses a deep learning method to design the controllers.

  • Franny (co-lead)
  • Robert (co-lead)
  • Justus
  • Reinforcement Learning : uses a reinforcement learning method to design the controllers.

  • Jonathan (co-lead)
  • Kyler (co-lead)
  • Kristopher
  • Reno
  • Franny (co-lead)

    Robert (co-lead)

    Justus

    Jonathan (co-lead)

    Kyler (co-lead)

    Kristopher

    Reno

    Deep Learning Project

    Reinforcement Learning Project

    research their method of MLC,

    design the MLC controllers,

    write programs that demonstrate their controllers’ performance, and

    write a report according to the report guidelines.

  • Report guidelines

    TBA

    Graduate student responsibilties

    Graduate students (and students taking the course at the graduate level) have additional responsiblities in the course. They include:

  • taking a leadership role on their project and
  • performing a literature review for the project report (including the writing of the “Introduction” section of the report, wherein the literature on the topic should be described).
  • Homework, quiz, & project policies

    Homework & homework quiz policies

    Weekly homework will be “due” on Fridays, but it will not be turned in for credit. However — and this is very important — each week a quiz will be given on Friday that will cover that week’s homework.

    Quizzes will be available on moodle each Friday (as early as I can get them up), and must be completed by that evening (before midnight). Late quizzes will receive no credit.

    Working in groups on homework is strongly encouraged, but quizzes must be completed individually.

    Grading policies

    Total grades in the course may be curved, but individual homework quizzes and exams will not be. They will be available on moodle throughout the semester.

    Homework quizzes 20% Midterm Exam #1 25% Midterm Exam #2 25% Final Exam 30%

    secrets

    Academic integrity policy

    Cheating or plagiarism of any kind is not tolerated and will result in a failing grade (“F”) in the course. I take this very seriously. Engineering is an academic and professional discipline that requires integrity. I expect students to consider their integrity of conduct to be their highest consideration with regard to the course material.

    Page updated 06 September 2023 at 23:20

    Rico A.R. Picone, PhD

    rico@stmartin.edu

    Rico A.R. Picone, PhD

    rico@stmartin.edu

  • Dr. Rico to you

    Dr. Rico to you

    Page updated 06 September 2023 at 23:20

    Academic Honesty/Professionalism

    What is Academic Integrity?

    Saint Martin's University is a community of faculty, students and staff engaged in the exchange of ideas in the ongoing pursuit of academic excellence. Essential to our mission is a focused commitment to scholarly values and intellectual integrity, and a respect for the ideas, beliefs and work of others. This commitment extends to all aspects of academic performance. All members are expected to abide by ethical standards both in their conduct and their exercise of responsibility to themselves and toward other members of the community. As an expression of our shared belief in the Benedictine tradition, we support the intellectual, social, emotional, physical and spiritual nurturing of students.

    What is Academic Dishonesty?

    Saint Martin's University defines academic dishonesty as violating the academic integrity of an assignment, test and/or evaluation of any coursework. This dishonest practice occurs when you seek to gain for yourself or another an academic advantage by deception or other dishonest means. You have a responsibility to understand the requirements that apply to particular assessments and to be aware of acceptable academic practice regarding the use of material prepared by others. Therefore, it is your responsibility to be familiar with the policies surrounding academic dishonesty as these may differ from other institutions.

    The Acceptable Use of AI in Coursework

    Any use of technology that misleads a reviewer in assessing the student's mastery of a specific set of skills or knowledge is a type of intellectual dishonesty, that is, a type of cheating. Students who are unsure about the appropriateness of using an artificial intelligence tool (or "AI") must check with the instructor before using it. This includes the use of tools that generate text, images, video, code, and other works. If you are permitted by your instructor to use one or more AI tools in producing your work, you must disclose the use of that tool. You should say which tool you used and how you used it. Then if you use specific AI generated content (text, images, videos, audio, code, and so on) you must cite it in the style (APA, MLA, and so on) specified by your instructor.

    University-Sanctioned Activities

    If you are absent from class due to university-sanctioned activities, such as sports, it is your responsibility to request that the absence be excused; otherwise, the absence will be recorded as unexcused. Absent students are responsible for catching up with the class, and if any assignments are due on the day of the absence, it is your responsibility to turn in the assignments on time (prior to class). Assignments may be submitted as an attachment to the instructor's email address.

    Counseling and Wellness Center

    There may be times, as a college student, when personal stressors interfere with academic performance and daily life. The Counseling and Wellness Center supports students by addressing mental and emotional well-being with FREE and CONFIDENTIAL services. To schedule an appointment, call 360-688-2016, or email counselingcwc@stmartin.edu, or stop by the CWC (1st floor St. Raphael Center). If you would rather not go to the CWC or need support in the evenings and weekends, please consider using the TimelyCare app (timelycare.com/smusaints) to speak with a mental health provider, free, 24/7, from your phone or computer. We are honored to provide individual and group therapy to hundreds of students every year. Please reach out if you feel our services might support your wellness.

    Center for Student Success

    The Center for Student Success offers free academic services for all Saint Martin's students. The Center provides subject-area peer tutoring in science, technology, nursing, engineering, math, business, accounting, economics, world languages and other subjects. At the Writing Center, students meet with writing tutors to discuss their academic, personal, and professional writing. The Advising Center works with students on academic advising, connecting with campus support resources, transition and self-exploration guidance, personalized academic improvement plans, learning workshops, and support for changing majors. Disability Support Services is also located in the Center for any student with a disability who needs accommodations. For more information on the Center for Student Success, or to sign up for a tutoring, advising, or DSS meeting, see the website: https://www.stmartin.edu/directory/offices-departments-directory/center-student-success

    Saints Care

    Saints Care is a student support network bringing together campus partners—faculty, staff, families and students—to foster the success of each student in their navigation of campus life. Faculty, staff, students, and community members are welcome to submit a Saints Care Referral at https://www.stmartin.edu/saints-care for any reason; including, but not limited to:

  • Academic concerns
  • Personal health issues
  • Not attending classes
  • Death or health concerns in the family
  • Behavioral concerns or changes
  • Safety concerns
  • Personal, emotional, or financial issues
  • Substance use concern
  • Disability support or assistance, either short or long term, including medical accommodations
  • Disturbing, distressing, or disruptive behavior or statements
  • Suicide ideations (verbal and/ or written, including class assignments and social media)
  • Aggressive or violent behaviors
  • Stalking, dating or domestic violence
  • Diversity and Inclusion Statement

    Recognizing and embracing diversity is an essential part of academic life and learning. At Saint Martin's, our Catholic mission and Benedictine charism call us to welcome and embrace all who enter our university. We promote the transcendent dignity of the human person and commit ourselves to fostering an inclusive and global learning environment. Our respect for persons means we welcome the similarities and differences that comprise our students, faculty, and staff; we open ourselves to the profound change that different cultures, traditions, and beliefs can have on our practice of community; and we educate students to transform our world for peace and justice. We support our students in their navigation of university life, addressing issues of conflict through the ARC Reporting System (Accountability, Responsibility, and Community) to restore community. Saint Martin's offers multiple offices and resources to promote diversity across campus. The Chief Diversity Officer, Dr. John P. Hopkins, is available at jhopkins@stmartin.edu. All are welcome in the Dignity Center Lounge, located in Harned Hall, 207.

    Religious Accommodation Statement

    Saint Martin's University, in honor of the sacredness of the individual, and being deeply rooted in the Catholic Benedictine tradition of higher education, values the many religious and spiritual practices of our campus community. Saint Martin's University supports our students in their ongoing journey of becoming. In compliance with Washington State Law RCW 28B.137.010, Saint Martin's University reasonably accommodates students for reasons of religious observances.

    Access and Accommodations

    Your experience in this class is important to me. If you have already established accommodations with Disability Support Services (DSS), please communicate your approved accommodations to me at your earliest convenience so we can discuss your needs in this course. If you have not yet established services through DSS, but have a temporary health condition or permanent disability that requires accommodations (conditions include but are not limited to mental health, attention-related, learning, vision, hearing, physical or health impacts), you are welcome to contact DSS at 360-438-4580 or smu.dss@stmartin.edu. DSS offers resources and coordinates reasonable accommodations for students with disabilities and/or temporary health conditions. Reasonable accommodations are established through an interactive process between you, your instructor(s) and DSS. It is the policy and practice of Saint Martin's University to create inclusive and accessible learning environments consistent with federal and state laws.

    Sexual Misconduct/Sexual Harassment Reporting

    Saint Martin's University is committed to providing an environment free from sex discrimination, including sexual harassment and sexual violence. There are Title IX/sexual harassment posters around campus that include the contact information for confidential reporting and formal reporting. Confidential reporting is where you can talk about incidents of sexual harassment and gender-based crimes including sexual assault, stalking, and domestic/relationship violence. Confidential resources include the Counseling and Wellness Center (1st floor St. Raphael Center) or the Student Health Center (Burton Hall 102). These confidential resources can help you without having to report your situation to the formal reporting process via the Interim Dean of Students – Ms. Ann Adams, Title IX Coordinator & Associate VP of Human Resources – Ms. Cynthia Johnson, and/or Public Safety – Ms. Sharon Schnebly unless you request that they make a report. Please be aware that, in compliance with Title IX and under the Saint Martin's University policies, educators must report incidents of sexual harassment and gender-based crimes including sexual assault, stalking, and domestic/relationship violence. I appreciate that you feel comfortable talking with me. No one deserves to experience such behavior. Please know that our conversation is not confidential, but it is private. As someone who cares about your safety and well-being, I want you know that I have a responsibility to tell a member of the Title IX Team (listed above) so that he/she is aware and can provide you with information about options available to you regarding your safety and access to support services