Skip to content

Commit 32f326d

Browse files
Daniel Illenbergergitbook-bot
authored andcommitted
GITBOOK-118: fix links
1 parent 5fdbd5d commit 32f326d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pgml-cms/docs/introduction/apis/sql-extensions/pgml.train/data-pre-processing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ In this example:
2525

2626
There are 3 steps to preprocessing data:
2727

28-
* [Encoding](../../../../../../pgml-dashboard/content/docs/training/preprocessing.md#categorical-encodings) categorical values into quantitative values
29-
* [Imputing](../../../../../../pgml-dashboard/content/docs/training/preprocessing.md#imputing-missing-values) NULL values to some quantitative value
30-
* [Scaling](../../../../../../pgml-dashboard/content/docs/training/preprocessing.md#scaling-values) quantitative values across all variables to similar ranges
28+
* [Encoding](data-pre-processing.md#categorical-encodings) categorical values into quantitative values
29+
* [Imputing](data-pre-processing.md#imputing-missing-values) NULL values to some quantitative value
30+
* [Scaling](data-pre-processing.md#scaling-values) quantitative values across all variables to similar ranges
3131

32-
These preprocessing steps may be specified on a per-column basis to the [train()](../../../../../../docs/training/overview/) function. By default, PostgresML does minimal preprocessing on training data, and will raise an error during analysis if NULL values are encountered without a preprocessor. All types other than `TEXT` are treated as quantitative variables and cast to floating point representations before passing them to the underlying algorithm implementations.
32+
These preprocessing steps may be specified on a per-column basis to the [train()](./) function. By default, PostgresML does minimal preprocessing on training data, and will raise an error during analysis if NULL values are encountered without a preprocessor. All types other than `TEXT` are treated as quantitative variables and cast to floating point representations before passing them to the underlying algorithm implementations.
3333

3434
```sql
3535
SELECT pgml.train(

0 commit comments

Comments
 (0)