Difference between revisions of "Machine Learning with Large Datasets 10-605 in Spring 2014"

From Cohen Courses
Jump to navigationJump to search
Line 18: Line 18:
  
 
* For TAs/instructors only:
 
* For TAs/instructors only:
** Autolab web page ''/afs/cs.cmu.edu/academic/class/10605-s14/autolab'' and AFS location ''/afs/cs.cmu.edu/project/bigML'
+
** Autolab web page ''/afs/cs.cmu.edu/academic/class/10605-s14/autolab'' and AFS location ''/afs/cs.cmu.edu/project/bigML''
 
** Planning gDoc:  https://docs.google.com/spreadsheet/ccc?key=0AqbWt5nnjNrYdFc4UlAyZmhYNGQxNFVTWWVob2pPU0E#gid=0
 
** Planning gDoc:  https://docs.google.com/spreadsheet/ccc?key=0AqbWt5nnjNrYdFc4UlAyZmhYNGQxNFVTWWVob2pPU0E#gid=0
  

Revision as of 18:12, 18 December 2013

Instructor and Venue

  • Instructor: William Cohen, Machine Learning Dept and LTI
  • Course secretary: Sharon Cavlovich, sharonw+@cs.cmu.edu, 412-268-5196
  • When/where: 1:30-2:50 MW Hamburg Hall 131
  • Course Number: ML 10-605
  • Prerequisites:
    • a machine learning course (e.g., 10-701 or 10-601). You may take this concurrently with the instructor's permission.
    • Java programming skills, e.g., 15-210, or 15-214.
  • TAs: Chun Chen (chunc@andrew.cmu.edu), Siddarth Varia (varias@cs.cmu.edu)
  • Syllabus: TBA
  • Office hours: TBA

Important virtual places

  • Piazza page for class (to add)
  • AFS data repository (to add)

Description

Large datasets are difficult to work with for several reasons. They are difficult to visualize, and it is difficult to understand what sort of errors and biases are present in them. They are computationally expensive to process, and often the cost of learning is hard to predict - for instance, and algorithm that runs quickly in a dataset that fits in memory may be exorbitantly expensive when the dataset is too large for memory. Large datasets may also display qualitatively different behavior in terms of which learning methods produce the most accurate predictions.

This course is intended to provide a student practical knowledge of, and experience with, the issues involving large datasets. Among the issues considered are: scalable learning techniques, such as streaming machine learning techniques; parallel infrastructures such as map-reduce; practical techniques for reducing the memory requirements for learning methods, such as feature hashing and Bloom filters; and techniques for analysis of programs in terms of memory, disk usage, and (for parallel methods) communication complexity.

The class will include frequent programming assignments, and a one-month short project chosen by the student. The project should be relevant to the course - e.g., to compare the scalability of variant learning algorithms on datasets.

Syllabus

I haven't posted the syllabus but it will roughly follow previous year's versions of the class, below:

One different: since this semester's class is so large, we will not have a course project component.

Prerequisites

An introductory course in machine learning, like 10-601 or 10-701, is a prerequisite or a co-requisite. If you plan to take this course and 10-601 concurrently please tell the instructor.

The course will include several substantial programming assignments, so an additional prerequisite is 15-210, or 15-214, or comparable familiarity with Java and good programming skills.