As part of Xcode 10 and Apple's latest version of macOS, called Mojave, they have shipped a new tool that you can use to train your own machine learning models by adding specializations to existing models. This means that you can train your own natural language model that places certain texts in categories that you define. Or, you can train a model that recognizes certain product names or terms in a text that is specific to your application's domain.
If you're building a news app, you might want to train a CoreML model that can automatically categorize the articles in the app. You can then use this model to keep track of the articles your users read, and present articles that are most likely to fit their interests on a dedicated page in your app.
In this segment, you will learn how to train natural language models and...