The document outlines the typical machine learning workflow including data collection, preprocessing, feature selection, model selection, training, evaluation, and deployment. It also discusses important considerations like bias, privacy, and explainability when developing machine learning models.
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
43 views
Machine Learning Workflow Week5 Notes
The document outlines the typical machine learning workflow including data collection, preprocessing, feature selection, model selection, training, evaluation, and deployment. It also discusses important considerations like bias, privacy, and explainability when developing machine learning models.
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
4.
Machine Learning Workflow
Data Collection: Gathering the data to be used for training the model. Data Preprocessing: Cleaning and formatting the data to a suitable form. Feature Selection/Extraction: Identifying the relevant attributes of the data that contribute to the decision-making process. Model Selection: Choosing the appropriate machine learning algorithm. Training: Feeding the preprocessed data to the model to learn from it. Evaluation: Assessing the model's performance with metrics like accuracy, precision, recall. Hyperparameter Tuning: Adjusting the model's settings to improve performance. Deployment: Integrating the model into the application for real-world use. 5. Important Considerations Bias and Fairness: Ensuring the model does not propagate or amplify biases. Data Privacy: Respecting the privacy of the data used in training and inference. Model Explainability: Being able to interpret and understand the model's decisions. Next Lecture Preview We will dive deeper into supervised learning, focusing on regression and classification algorithms, and explore some of the key algorithms used in machine learning, such as linear regression, logistic regression, and decision trees. Additional Resources Machine Learning by Andrew Ng on Coursera "Pattern Recognition and Machine Learning" by Christopher M. Bishop