Skip to content

Commit b6233d9

Browse files
aMahannaSimran-B
andauthored
update ml docs (#550)
--------- Co-authored-by: Simran Spiller <[email protected]>
1 parent 1983715 commit b6233d9

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

Diff for: site/content/3.10/data-science/arangographml/getting-started.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,13 @@ arangoml.projects.list_projects()
275275
- `disabled`: Boolean for enabling or disabling dimensionality reduction. Default is `false`.
276276
- `size`: The number of dimensions to reduce the feature length to. Default is `512`.
277277

278-
- `defaultsPerFeatureType`: A dictionary mapping each feature to how missing or missmatched values should be handled. The keys of this dictionary are the features, and the values are sub-dictionaries with the following keys:
279-
- `missing`: A sub-dictionary detailing how missing values should be handled.
278+
- `defaultsPerFeatureType`: A dictionary mapping each feature to how missing or mismatched values should be handled. The keys of this dictionary are the features, and the values are sub-dictionaries with the following keys:
279+
- `missing`: A sub-dictionary detailing how missing values should be handled.
280280
- `strategy`: The strategy to use for missing values. Options include `REPLACE` or `RAISE`.
281281
- `replacement`: The value to replace missing values with. Only needed if `strategy` is `REPLACE`.
282-
- `missmatch`: A sub-dictionary detailing how missmatched values should be handled.
283-
- `strategy`: The strategy to use for missmatched values. Options include `REPLACE`, `RAISE`, `COERCE_REPLACE`, or `COERCE_RAISE`.
284-
- `replacement`: The value to replace missmatched values with. Only needed if `strategy` is `REPLACE`, or `COERCE_REPLACE`.
282+
- `mismatch`: A sub-dictionary detailing how mismatched values should be handled.
283+
- `strategy`: The strategy to use for mismatched values. Options include `REPLACE`, `RAISE`, `COERCE_REPLACE`, or `COERCE_RAISE`.
284+
- `replacement`: The value to replace mismatched values with. Only needed if `strategy` is `REPLACE`, or `COERCE_REPLACE`.
285285

286286
- `jobConfiguration` Optional: A set of configurations that are applied to the job.
287287
- `batchSize`: The number of documents to process in a single batch. Default is `32`.
@@ -737,6 +737,7 @@ collection, or within the source documents.
737737
- `modelID`: The model ID to use for generating predictions.
738738
- `featurizeNewDocuments`: Boolean for enabling or disabling the featurization of new documents. Useful if you don't want to re-train the model upon new data. Default is `false`.
739739
- `featurizeOutdatedDocuments`: Boolean for enabling or disabling the featurization of outdated documents. Outdated documents are those whose features have changed since the last featurization. Default is `false`.
740+
- `schedule`: A cron expression to schedule the prediction job (e.g `0 0 * * *` for daily predictions). Default is `None`.
740741

741742

742743
```py

Diff for: site/content/3.11/data-science/arangographml/getting-started.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,13 @@ arangoml.projects.list_projects()
275275
- `disabled`: Boolean for enabling or disabling dimensionality reduction. Default is `false`.
276276
- `size`: The number of dimensions to reduce the feature length to. Default is `512`.
277277

278-
- `defaultsPerFeatureType`: A dictionary mapping each feature to how missing or missmatched values should be handled. The keys of this dictionary are the features, and the values are sub-dictionaries with the following keys:
278+
- `defaultsPerFeatureType`: A dictionary mapping each feature to how missing or mismatched values should be handled. The keys of this dictionary are the features, and the values are sub-dictionaries with the following keys:
279279
- `missing`: A sub-dictionary detailing how missing values should be handled.
280280
- `strategy`: The strategy to use for missing values. Options include `REPLACE` or `RAISE`.
281281
- `replacement`: The value to replace missing values with. Only needed if `strategy` is `REPLACE`.
282-
- `missmatch`: A sub-dictionary detailing how missmatched values should be handled.
283-
- `strategy`: The strategy to use for missmatched values. Options include `REPLACE`, `RAISE`, `COERCE_REPLACE`, or `COERCE_RAISE`.
284-
- `replacement`: The value to replace missmatched values with. Only needed if `strategy` is `REPLACE`, or `COERCE_REPLACE`.
282+
- `mismatch`: A sub-dictionary detailing how mismatched values should be handled.
283+
- `strategy`: The strategy to use for mismatched values. Options include `REPLACE`, `RAISE`, `COERCE_REPLACE`, or `COERCE_RAISE`.
284+
- `replacement`: The value to replace mismatched values with. Only needed if `strategy` is `REPLACE`, or `COERCE_REPLACE`.
285285

286286
- `jobConfiguration` Optional: A set of configurations that are applied to the job.
287287
- `batchSize`: The number of documents to process in a single batch. Default is `32`.
@@ -737,6 +737,7 @@ collection, or within the source documents.
737737
- `modelID`: The model ID to use for generating predictions.
738738
- `featurizeNewDocuments`: Boolean for enabling or disabling the featurization of new documents. Useful if you don't want to re-train the model upon new data. Default is `false`.
739739
- `featurizeOutdatedDocuments`: Boolean for enabling or disabling the featurization of outdated documents. Outdated documents are those whose features have changed since the last featurization. Default is `false`.
740+
- `schedule`: A cron expression to schedule the prediction job (e.g `0 0 * * *` for daily predictions). Default is `None`.
740741

741742

742743
```py

Diff for: site/content/3.12/data-science/arangographml/getting-started.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ arangoml.projects.list_projects()
277277
- `size`: The number of dimensions to reduce the feature length to. Default is `512`.
278278

279279
- `defaultsPerFeatureType`: A dictionary mapping each feature to how missing or mismatched values should be handled. The keys of this dictionary are the features, and the values are sub-dictionaries with the following keys:
280-
- `missing`: A sub-dictionary detailing how missing values should be handled.
280+
- `missing`: A sub-dictionary detailing how missing values should be handled.
281281
- `strategy`: The strategy to use for missing values. Options include `REPLACE` or `RAISE`.
282282
- `replacement`: The value to replace missing values with. Only needed if `strategy` is `REPLACE`.
283-
- `missmatch`: A sub-dictionary detailing how mismatched values should be handled.
283+
- `mismatch`: A sub-dictionary detailing how mismatched values should be handled.
284284
- `strategy`: The strategy to use for mismatched values. Options include `REPLACE`, `RAISE`, `COERCE_REPLACE`, or `COERCE_RAISE`.
285285
- `replacement`: The value to replace mismatched values with. Only needed if `strategy` is `REPLACE`, or `COERCE_REPLACE`.
286286

@@ -738,6 +738,7 @@ collection, or within the source documents.
738738
- `modelID`: The model ID to use for generating predictions.
739739
- `featurizeNewDocuments`: Boolean for enabling or disabling the featurization of new documents. Useful if you don't want to re-train the model upon new data. Default is `false`.
740740
- `featurizeOutdatedDocuments`: Boolean for enabling or disabling the featurization of outdated documents. Outdated documents are those whose features have changed since the last featurization. Default is `false`.
741+
- `schedule`: A cron expression to schedule the prediction job (e.g `0 0 * * *` for daily predictions). Default is `None`.
741742

742743

743744
```py

Diff for: site/content/3.13/data-science/arangographml/getting-started.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ arangoml.projects.list_projects()
277277
- `size`: The number of dimensions to reduce the feature length to. Default is `512`.
278278

279279
- `defaultsPerFeatureType`: A dictionary mapping each feature to how missing or mismatched values should be handled. The keys of this dictionary are the features, and the values are sub-dictionaries with the following keys:
280-
- `missing`: A sub-dictionary detailing how missing values should be handled.
280+
- `missing`: A sub-dictionary detailing how missing values should be handled.
281281
- `strategy`: The strategy to use for missing values. Options include `REPLACE` or `RAISE`.
282282
- `replacement`: The value to replace missing values with. Only needed if `strategy` is `REPLACE`.
283-
- `missmatch`: A sub-dictionary detailing how mismatched values should be handled.
283+
- `mismatch`: A sub-dictionary detailing how mismatched values should be handled.
284284
- `strategy`: The strategy to use for mismatched values. Options include `REPLACE`, `RAISE`, `COERCE_REPLACE`, or `COERCE_RAISE`.
285285
- `replacement`: The value to replace mismatched values with. Only needed if `strategy` is `REPLACE`, or `COERCE_REPLACE`.
286286

@@ -738,6 +738,7 @@ collection, or within the source documents.
738738
- `modelID`: The model ID to use for generating predictions.
739739
- `featurizeNewDocuments`: Boolean for enabling or disabling the featurization of new documents. Useful if you don't want to re-train the model upon new data. Default is `false`.
740740
- `featurizeOutdatedDocuments`: Boolean for enabling or disabling the featurization of outdated documents. Outdated documents are those whose features have changed since the last featurization. Default is `false`.
741+
- `schedule`: A cron expression to schedule the prediction job (e.g `0 0 * * *` for daily predictions). Default is `None`.
741742

742743

743744
```py

0 commit comments

Comments
 (0)