호빗의 인간세상 탐험기
DEEP LEARNING TUTORIALSDeep Learning is a new area of Machine Learning research, which has been introduced with the objective of moving Machine Learning closer to one of its original goals: Artificial Intelligence. See these course notes for a brief introduction to Machine Learning for AI and an introduction to Deep Learning algorithms. Deep Learning is about learning multiple levels of represen..
Apache Spark OverviewApache Spark is a general framework for distributed computing that offers high performance for both batch and interactive processing. It exposes APIsforJava, Python, and Scala and consists of Spark core and severalrelated projects: • Spark SQL - Module for working with structured data. Allows you to seamlessly mix SQL queries with Spark programs. • Spark Streaming - API that..
System Calls A system call is basically a function that ends up trapping to routines in the kernel. These routines may do things as simple as looking up the user ID for the owner of the current process, or as complex as redefining the system's scheduling algorithm. For multithreaded programs, there is a serious issue surrounding how many threads can make system calls concurrently. For some opera..