Skip to content

Commit 6baf737

Browse files
committed
Wording improvements from #396
1 parent 5e27496 commit 6baf737

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

proposals/predict_dl_model.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "predict_dl_model",
3-
"summary": "Predict values values using a DL model",
4-
"description": "Applies a machine learning model to a data cube and predicts a values/classes for it. This process can be used as process in ``apply_neighborhood()`` to specify the patch size and overlap.",
3+
"summary": "Predict values values using DL",
4+
"description": "Applies a machine learning model to a data cube of input features and predicts output values or classes for it. This process can be used as process in ``apply_neighborhood()`` to specify the patch size and overlap.",
55
"categories": [
66
"deep learning",
77
"machine learning"
@@ -10,15 +10,15 @@
1010
"parameters": [
1111
{
1212
"name": "data",
13-
"description": "The input data cube.",
13+
"description": "The data cube containing the input features.",
1414
"schema": {
1515
"type": "object",
1616
"subtype": "datacube"
1717
}
1818
},
1919
{
2020
"name": "model",
21-
"description": "A DL model that can be trained with one of the DL `fit_*` processes.",
21+
"description": "A DL model that was trained with one of the DL training processes.",
2222
"schema": {
2323
"type": "object",
2424
"subtype": "ml-model"

proposals/predict_ml_model.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"id": "predict_ml_model",
3-
"summary": "Predict values values using a ML model",
4-
"description": "Applies a machine learning model to a datacube and predicts values/classes for it.",
3+
"summary": "Predict classification or regression values using ML",
4+
"description": "Applies a machine learning model to a data cube of input features and predicts output values or classes for it.",
55
"categories": [
66
"machine learning"
77
],
88
"experimental": true,
99
"parameters": [
1010
{
1111
"name": "data",
12-
"description": "The input data cube.",
12+
"description": "The data cube containing the input features.",
1313
"schema": {
1414
"type": "object",
1515
"subtype": "datacube"
1616
}
1717
},
1818
{
1919
"name": "model",
20-
"description": "A ML model that can be trained with one of the ML processes such as ``fit_class_random_forest()``.",
20+
"description": "A ML model that was trained with one of the ML training processes such as ``fit_class_random_forest()``.",
2121
"schema": {
2222
"type": "object",
2323
"subtype": "ml-model"

proposals/predict_ml_model_probabilities.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"id": "predict_ml_model_probabilities",
3-
"summary": "Predict class probabilities using a ML model",
4-
"description": "Applies a machine learning model to a data cube and predicts (class) probabilities.",
3+
"summary": "Predict class probabilities using ML",
4+
"description": "Applies a machine learning model to a data cube of input features and predicts the probabilities of the output classes.",
55
"categories": [
66
"machine learning"
77
],
88
"experimental": true,
99
"parameters": [
1010
{
1111
"name": "data",
12-
"description": "The input data cube.",
12+
"description": "The data cube containing the input features.",
1313
"schema": {
1414
"type": "object",
1515
"subtype": "datacube"
1616
}
1717
},
1818
{
1919
"name": "model",
20-
"description": "A ML model that can be trained with one of the ML processes such as ``fit_regr_random_forest()``.",
20+
"description": "A ML model that was trained with one of the ML training processes such as ``fit_regr_random_forest()``.",
2121
"schema": {
2222
"type": "object",
2323
"subtype": "ml-model"

0 commit comments

Comments
 (0)