Machine Learning Foundations: A Case Study Approach
Notes from Coursera's Machine Learning Foundations: A Case Study Approach by Emily Fox and Carlos Guestrin
Notes from Coursera's Machine Learning Foundations: A Case Study Approach by Emily Fox and Carlos Guestrin
Coursera Verified Certificates, License GKNAYZY4TH, October 2013
Full course write up available here
These notes were taken from the in-person course completed in 2013 and were used to get the following certs:
When a process spawns a separate process to handle some work, it invokes
the fork(2)
system call. fork(2)
duplicates the current process in …
When a parent process finishes executing before its children, the child processes are said to become orphan processes.
When this happens, the init process - the …
Zombie processes are "dead" processes. That is, processes that have finished executing and are waiting for the parent to reap them (collect information about their …