prefacechapter 1: getting up and running with spark installing and setting up spark locally spark clusters the spark programming model sparkcontext and sparkconf the spark shell resilient distributed datasets creating rdds spark operations caching rdds broadcast variables and accumulators the first step to a spark program in scala the first step to a spark program in java the first step to a spark program in python getting spark running on amazon ec2 launching an ec2 spark cluster summarychapter 2: designing a machine learning system introducing moviestream business use cases for a machine learning system personalization targeted marketing and customer segmentation predictive modeling and analytics types of machine learning models the components of a data-driven machine learning system data ingestion and storage data cleansing and transformation model training and testing loop model deployment and integration model monitoring and feedback batch versus real time an architecture for a machine learning system practical exercise summarychapter 3: obtaining, processing, and preparing datawith spark accessing publicly available datasets the movielens look dataset exploring and visualizing your data exploring the user dataset exploring the movie dataset exploring the rating dataset processing and transforming your data filling in bad or missing data extracting useful features from your data numerical features categorical features derived features transforming timestamps into categorical features text features simple text feature extraction normalizing features using mllib for feature normalization using packages for feature extraction summarychapter 4: building a recommendation engine with spark types of recommendation models content-based filtering collaborative filtering matrix factorization extracting the right features from your data extracting features from the movielens 100k dataset training the recommendation model training a model on the movielens 100k dataset training a model using implicit feedback data using the recommendation model user recommendations generating movie recommendations from the movielens 100k dataset item recommendations generating similar movies for the movielens 100k dataset evaluating the performance of recommendation models mean squared error mean average precision at k using mllib's built-in evaluation functions rmse and mse map summarychapter 5: building a classification model with spark types of classification models linear models logistic regression linear support vector machines the na'fve bayes model decision trees extracting the right features from your data extracting features from the kaggle/stumbleupon evergreen classification dataset training classification models training a classification model on the kaggle/stumbleupon evergreen classification dataset using classification models generating predictions for the kaggle/stumbleupon evergreen classification dataset evaluating the performance of classification models accuracy and prediction error precision and recall roc curve and auc improving model performance and tuning parameters feature standardization additional features using the correct form of data tuning model parameters linear models decision trees the na'fve bayes model cross-validation summarychapter 6: buildin a~ssion model with spark types of regression models least squares regression decision trees for regression extracting the right features from your data extracting features from the bike sharing dataset creating feature vectors for the linear model creating feature vectors for the decision tree training and using regression models training a regression model on the bike sharing dataset evaluating the performance of regression models mean squared error and root mean squared error mean absolute error root mean squared log error the r-squared coefficient computing performance metrics on the bike sharing dataset linear model decision tree improving model performance and tuning parameters transforming the target variable impact of training on log-transformed targets tuning model parameters creating training and testing sets to evaluate parameters the impact of parameter settings for linear models the impact of parameter settings for the decision tree summarychapter 7: building a clustering model with spark types of clustering models k-means clustering initialization methods variants mixture models hierarchical clustering extracting the right features from your data extracting features from the movielens dataset extracting movie genre labels training the recommendation model normalization training a clustering model training a clustering model on the movielens dataset making predictions using a clustering model interpreting cluster predictions on the movielens dataset interpreting the movie clusters evaluating the performance of clustering models internal evaluation metrics external evaluation metrics computing performance metrics on the movielens dataset tuning parameters for clustering models selecting k through cross-validation summarychapter 8: dimensionality reduction with spark types of dimensionality reduction principal components analysis singular value decomposition relationship with matrix factorization clustering as dimensionality reduction extracting the right features from your data extracting features from the lfw dataset exploring the face data visualizing the face data extracting facial images as vectors normalization training a dimensionality reduction model running pca on the lfw dataset visualizing the eigenfaces interpreting the eigenfaces using a dimensionality reduction model projecting data using pca on the lfw dataset the relationship between pca and svd evaluating dimensionality reduction models evaluating k for svd on the lfw dataset summarychapter 9: advanced text processing with spark what's so special about text data? extracting the right features from your data term weighting schemes feature hashing extracting the tf-idf features from the 20 newsgroups dataset exploring the 20 newsgroups data applying basic tokenization improving our tokenization removing stop words excluding terms based on frequency a note about stemming training a tf-idf model analyzing the tf-idf weightings using a tf-idf model document similarity with the 20 newsgroups dataset and tf-idf features training a text classifier on the 20 newsgroups dataset using tf-idf evaluating the impact of text processing comparing raw features with processed tf-idf features on the 20 newsgroups dataset word2vec models word2vec on the 20 newsgroups dataset summarychapter 10: real-time machine learning withspark streaming online learning stream processing an introduction to spark streaming input sources transformations actions window operators caching and fault tolerance with spark streaming creating a spark streaming application the producer application creating a basic streaming application streaming analytics stateful streaming online learning with spark streaming streaming regression a simple streaming regression program creating a streaming data producer creating a streaming regression model streaming k-means online model evaluation comparing model performance with spark streaming summaryindex