Skip to content

Commit 97e3c28

Browse files
committed
Update docs
1 parent dbd96a5 commit 97e3c28

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/quick-start.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ git clone -b master https://github.com/cortexlabs/cortex.git
1717
cd cortex/examples/iris
1818
```
1919

20-
Jump to [Deploy the application](#deploy-the-application).
20+
Jump to [deploy the application](#deploy-the-application).
2121

2222
## Build a machine learning application
2323

@@ -110,7 +110,7 @@ Add to `app.yaml`:
110110

111111
#### Define aggregates
112112

113-
Aggregates are computations that require processing a full column of data. We want to normalize the numeric columns, so we need mean and standard deviation values for each numeric column. We also need a mapping of strings to integers for the label column. Cortex has `mean`, `stddev`, and `index_string` aggregators out of the box.
113+
Aggregates are computations that require processing a full column of data. We want to normalize the numeric columns, so we need mean and standard deviation values for each numeric column. We also need a mapping of strings to integers for the label column. Here we use the built-in `mean`, `stddev`, and `index_string` aggregators.
114114

115115
Add to `app.yaml`:
116116

@@ -287,6 +287,7 @@ def create_estimator(run_config, model_config):
287287
tf.feature_column.numeric_column("petal_width_normalized"),
288288
]
289289
290+
# returns an instance of tf.estimator.Estimator
290291
return tf.estimator.DNNClassifier(
291292
feature_columns=feature_columns,
292293
hidden_units=model_config["hparams"]["hidden_units"],

docs/summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
* [Application](applications/resources/app.md)
1717
* [Environments](applications/resources/environments.md)
18-
* [Data Types](applications/resources/data-types.md)
1918
* [Raw Columns](applications/resources/raw-columns.md)
2019
* [Aggregators](applications/resources/aggregators.md)
2120
* [Aggregates](applications/resources/aggregates.md)
@@ -24,6 +23,7 @@
2423
* [Models](applications/resources/models.md)
2524
* [APIs](applications/resources/apis.md)
2625
* [Constants](applications/resources/constants.md)
26+
* [Data Types](applications/resources/data-types.md)
2727
* [Resource Statuses](applications/resources/statuses.md)
2828

2929
### Implementations

0 commit comments

Comments
 (0)