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 due 4/3 and final project - proposal due 4/10.) There are no more assignments.

  • Yale Shooting Problem - e.g., plan to kill four people.

    Lecture: 3/29/2023

    Case-based Systems

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

    CBR.html

    Qualitative Arithmetic

    See QualitativeArithmetic.html May be used for hw3.

    For each of the following, do you want the quantity to be high, low, or in a range?


    [Home]