You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pgml-cms/docs/guides/supervised-learning.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ target |
46
46
47
47
### Training a Model
48
48
49
-
Now that we've got data, we're ready to train a model using an algorithm. We'll start with the default `linear` algorithm to demonstrate the basics. See the [Algorithms](../../../docs/training/algorithm\_selection/) for a complete list of available algorithms.
49
+
Now that we've got data, we're ready to train a model using an algorithm. We'll start with a classification task to demonstrate the basics. See [pgml.train](/docs/api/sql-extension/pgml.train/) for a complete list of available algorithms and tasks.
50
50
51
51
```postgresql
52
52
SELECT * FROM pgml.train(
@@ -79,7 +79,7 @@ INFO: Metrics: {
79
79
(1 row)
80
80
```
81
81
82
-
The output gives us information about the training run, including the `deployed` status. This is great news indicating training has successfully reached a new high score for the project's key metric and our new model was automatically deployed as the one that will be used to make new predictions for the project. See [Deployments](../../../docs/predictions/deployments/) for a guide to managing the active model.
82
+
The output gives us information about the training run, including the `deployed` status. This is great news indicating training has successfully reached a new high score for the project's key metric and our new model was automatically deployed as the one that will be used to make new predictions for the project.
83
83
84
84
### Inspecting the results
85
85
@@ -152,7 +152,7 @@ LIMIT 25;
152
152
153
153
### Example
154
154
155
-
If you've already been through the [Training Overview](../../../docs/training/overview/), you can see the results of those efforts:
155
+
If you've executed the commands in this guide, you can see the results of those efforts:
156
156
157
157
```postgresql
158
158
SELECT
@@ -195,7 +195,7 @@ SELECT * FROM pgml.deployed_models;
195
195
196
196
PostgresML will automatically deploy a model only if it has better metrics than existing ones, so it's safe to experiment with different algorithms and hyperparameters.
197
197
198
-
Take a look at [Deploying Models](../../../docs/predictions/deployments/) documentation for more details.
198
+
Take a look at [pgml.deploy](/docs/api/sql-extension/pgml.deploy) documentation for more details.
0 commit comments