Use Prebuilt Language Models
Deep Learning Development Cycle
Select the Best Use Case
Manage Development
Dataset Training and Retraining
Use Feedback to Improve a Model (Deprecated)
A dataset contains the source text data. A model is created after a dataset is trained. The model is the construct that returns predictions.
Here are some key points about datasets and models:
A dataset is the structure that contains your data, whether that data.
The training process uses the dataset to create a model. You train a dataset multiple times to create multiple models. So a single dataset can create many models.
The relationship between a dataset and a model is complete after the model is created. After a model is created, the model doesn’t reference the source dataset again unless you retrain the dataset.
You use APIs to edit a dataset. There’s no visual way to edit a dataset. If you have new data that you want to include in a model, you call the API to create a new dataset.
See Dataset Training and Retraining for more information on when to train a dataset vs. retrain a dataset.
When you train or retrain a dataset, the training process sets aside some of the training data to test the model for accuracy.
You can change this ratio, also called the split, by using the trainSplitRatio parameter.
You specify the amount of training and test data, but the actual data that the training process holds out for testing is randomly selected. This means you can see differences in models and model metrics even when those models are created from the same dataset.