Syllabus

Welcome to Data Management for Data Science! This course covers deployment of relational databases and NoSQL databases for managing and analyzing structured, semistructured, and unstructured data. Analysis will involve learning new query languages and applying gradient boosting algorithms for time series prediction. Data engineering techniques, including data pipelines, data warehouses, ETL, and ELT will be covered. NLP concepts of fine-tuning Large Language Model (LLM) with unstructured data will be covered along with fundamentals of vector databases and Retrieval-Augmented Generation (RAG). Visualization techniques will be employed for dashboard creation and data storytelling.

Revisions to Syllabus

Course Instructor

Lecture (Meeting Time and Location)

Instructional Modality

Learning Objectives

Readings

We'll be learning about many different data management systems, and so no textbook closely corresponds to the lecture content. Thus, attending lectures and taking notes will be your primary resource.

We will have recommended (though optional) readings.

Here are some of the main texts we'll reference this semester:

You can read O'Reilly text books free online via the Madison Public Library. You just need to do the following:
  1. get a library card (free)
  2. sign into the O'Reilly collection with your card number
  3. search for the assigned book

Communication

We message the class regularly via Canvas announcements. We recommend updating your Canvas settings so that the "Announcement" option is "Notify immediately" so that you don't miss something important.

See the help page for details about how to contact us.

We have various forms for us to leave (optionally anonymous) feedback, report lab attendance, and thank TAs.

Course Components

Grading breakdown

At the end of the semester, you'll have a score out of 100, which will be mapped to a letter grade (see below).

Letter Grades

At the end of the semester, we will assign final grades based on these thresholds:

Grade thresholds will be subject to mathematical rounding. For example, a total score of 92.5+ would be mapped to an A grade.

Exams

These will be multiple choice exams taken in person. The midterm and the final will be at a different location (to be announced).

Midterm will be held on Monday, March, 3rd.

Final will be held on Tuesday, May 6th. I am unable to offer a make up final before this assigned final exam date.

Quizzes

There will be a short Canvas quiz due at the end of most Wednesdays. You'll have the option to drop two lowest scores on your quizzes. The drop provision is in place to help with sickness or critical personal circumstances. Beyond these two drops, excuses for quizzes will not be provided. Please make sure to read the below rules regarding what is allowed and what is not.

Allowed
NOT allowed

Projects

See project policies here.

Participation

Participation will be calculated based on:

Academic Misconduct

Code copying between students is not allowed in this course, except between project partners. Copying includes emailing, taking photos, looking while typing line by line, etc. Copying code then changing it is still copying and thus not allowed. Lock your compute when it's not attended.

Be sure to read and understand the full project collaboration policies here.

Citing ChatGPT (or other LLMs): it's allowed with proper citation (see above link for details).

Citing Online Resources: you can copy small snippets of code from stackoverflow (and other online references) if you cite them. For example, suppose I need to write some code that gets the median number from a list of numbers. I might search for "how to get the median of a list in python" and find a solution at https://stackoverflow.com/questions/24101524/finding-median-of-list-in-python.

I could (legitimately) post code from that page in my code, as long as it has a comment as follows:

    # copied/adapted from https://stackoverflow.com/questions/24101524/finding-median-of-list-in-python
    def median(lst):
      sortedLst = sorted(lst)
      lstLen = len(lst)
      index = (lstLen - 1) // 2

      if (lstLen % 2):
        return sortedLst[index]
      else:
        return (sortedLst[index] + sortedLst[index + 1])/2.0
  

In contrast, copying from a nearly complete project you find online (that accomplishes what you're trying to do for your project) is not OK. When in doubt, ask us! The best way to stay out of trouble is to be completely transparent about what you're doing.

Recommendation Letters

Earning a recommendation letter is much harder than earning an A in this course. At a minimum, I'll want to see you doing something complex and interesting beyond the assingments. For a typical letter, I'll have collaborated (independent study) with a student on some project for multiple months, with many iterations of feedback. Alternatively, you can earn a letter by working on a self-guided project that demonstrates the skills that you have obtained from this course. You must get in touch with me at least 6 weeks before the first recommendation letter deadline.

Most grad schools require recommenders to fill long forms rating students on various abilities (see an example below). Make sure that if you're asking me, I would be able to fill such a form without needing to put "I don't know" as my answer to many of the questions.