|
1 | 1 | # Model |
2 | 2 |
|
3 | | -In the ML Cube Platform, a Model is a representation of the actual machine learning model used for making predictions. The data used |
| 3 | +In the ML Cube Platform, a Model is a representation of the actual artificial intelligence model used for making predictions. The data used |
4 | 4 | for its training usually represent the reference data distribution, while production data comprises the data on which the model |
5 | 5 | performs inference. |
| 6 | +For more information about reference and production data see the [Data] page. |
6 | 7 |
|
7 | 8 | A Model is uniquely associated with a [Task] and it can be created both through the WebApp and the Python SDK. |
8 | 9 | Currently, we support only one model per Task. |
@@ -39,13 +40,20 @@ the ML cube Platform will use this information to compute additional metrics and |
39 | 40 | It is optional and currently supported only for Classification and RAG tasks. If specified, the probabilistic output must be provided |
40 | 41 | as a new column in the predictions file, following the guidelines in the [Data Schema] page. |
41 | 42 |
|
| 43 | +!!! example |
| 44 | + For example, Logistic Regression classification model provides both the probability of belonging to the positive class and the predicted class using a threshold. |
| 45 | + In this case, you can upload to ML cube Platform the predicted class as principal prediction and the probability as probabilistic output. |
| 46 | + |
42 | 47 | ### Model Metric |
43 | 48 |
|
44 | 49 | A Model Metric represents the evaluation metric used to assess the performance of the model. |
45 | 50 | It can both represent a performance or an error. The chosen metric will be used in the various views of the WebApp to |
46 | 51 | provide insights on the model's performance and in the [Performance View](modules/retraining.md#performance-view) section |
47 | 52 | of the Retraining Module. |
48 | 53 |
|
| 54 | +!!! note |
| 55 | + Note that model metrics can only be computed when target data are available. |
| 56 | + |
49 | 57 | The available options are: |
50 | 58 |
|
51 | 59 | | Metric | Task Type | |
@@ -81,4 +89,5 @@ from the ML cube Platform. More information on how to set up a retrain trigger c |
81 | 89 |
|
82 | 90 | [Task]: task.md |
83 | 91 | [Data Schema]: data_schema.md#subrole |
84 | | -[Retrain Trigger]: integrations/retrain_trigger.md |
| 92 | +[Retrain Trigger]: integrations/retrain_trigger.md |
| 93 | +[Data]: data.md |
0 commit comments