In [10]:
from traitlets.config.manager import BaseJSONConfigManager
path = "/Users/jake/.jupyter/nbconfig"
cm = BaseJSONConfigManager(config_dir=path)
cm.update('livereveal', {
'scroll': True,
'theme': 'simple',
'transition': 'fade',
'start_slideshow_at': 'selected',
})
Out[10]:
The only "enforced" prerequisite is 281, but if you are not familiar with either Linear Algebra or Probability/Stat you are going to struggle in this course
Dear Sir,
I am joining the ECE Department at the University of Michigan this fall to pursue a Master's degree with specialization in Robotics. I wish to register for EECS 445 (Introduction to Machine Learning) but am unable to do so since I have not completed EECS 281. I am very keen on studying Machine Learning and want to take up the course this semester itself. Would it be possible for you to permit me to enroll for it?)
In [5]:
x = 2
x = x * 2
print("Here is some math: %d + %d = %d" % (x, x, x + x))
print(" how are you??")
# numpy crucial for vectors, matrices, etc.
import numpy as np
# Lots of cool plotting tools w/ matplotlib
%pylab inline
# For later: scipy has a ton of stats tools
import scipy as sp
# For later: sklearn has many standard ML algs
import sklearn as skl
# Here we go!
print("Hello World!")