From the course: Applied AI for Human Resources

Unlock the full course today

Join today to access over 24,900 courses taught by industry experts.

Model development best practices

Model development best practices - Python Tutorial

From the course: Applied AI for Human Resources

Model development best practices

- [Instructor] In this chapter, we will quickly review some of the recommended best practices for building and serving AI solutions. We start off with model development best practices, AI and machine learning have changed the way we build software. Data was never a key part of software development. With machine learning, training data has a crucial role to play in building AI solutions. Treat training data like software code. Keep data under version control. Use tools like DVC for this. Also, make sure that all processing done on data is repeatable by keeping track of the code that acquires, cleans, and transforms data. Machine learning models also evolve over time. Treat them also as code. Keep track of the version of models built and the associated hyperparameters. Models should be recreatable. Track performance of machine learning models as you conduct experiments with data and hyperparameter tuning, periodically…

Contents