Spring 2023 Computer Science 458


[Home]

Video of the day

Appalachian Spring Aaron Copland.

Administrivia

  • I have office hours Mondays and Wednesdays from 2 to 3pm, NOT on Friday, on zoom, id 459 434 2854.

    Assignments

    Extension for hw2 to April 6th hw 2 which deals with finance. See Ed Discussion note by Sam regarding alternative to yfinance.

    You should try yahooquery which is alive and well.

    >>> from yahooquery import Ticker
    >>> a = Ticker('AAPL')
    >>> dir(a)
    >>> for p in dir(a):
      print (p)		     
    

    Also, hw3 is now available (along with the paper and final project.) There are no more assignments.

    Lecture: 3/27/2023

    Rule-based Expert Systems

    GPS: The General Problem Solver. Separated knowledge from process. Means-ends analysis. See Paradigms of Artificial Intelligence Programming, Chapter 4.

    Expert systems - an overview. The rules help provide an explanation.

    See ExpertSystems.html MYCIN and friends.

    http://www.norvig.com/paip/README.html

    Truth maintenance Systems

    Case-based Systems

    Case-Based Reasoning: A Research Paradigm Slade, 1990.

    CBR.html


    [Home]