Skip to content

Commit 7dfa285

Browse files
committed
Update docs
1 parent d4d1b11 commit 7dfa285

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
<br>
99

10-
**Machine learning infrastructure for developers: build machine learning applications faster.**
10+
**Machine learning infrastructure for developers: build machine learning applications faster.**
1111

12-
Cortex is an open-source platform for building, deploying, and managing machine learning applications in production. It is designed for any developer who wants to build machine learning powered services.
12+
Cortex is an open-source platform for building, deploying, and managing machine learning applications in production. It is designed for any developer who wants to build machine learning powered services without having to worry about infrastructure challenges like configuring data pipelines, continuous deployment, and dependency management.
1313

1414
Cortex is actively maintained by Cortex Labs. We're a venture-backed team of infrastructure engineers and [we're hiring](https://angel.co/cortex-labs-inc/jobs).
1515

@@ -19,9 +19,9 @@ Cortex is actively maintained by Cortex Labs. We're a venture-backed team of inf
1919

2020
- **End-to-end machine learning workflow:** Cortex spans the machine learning workflow from raw data ingestion to prediction serving.
2121

22-
- **Declarative configuration:** Cortex applications are defined using a simple and modular syntax that enables flexibility and reusability.
22+
- **Machine learning pipelines as code:** Cortex applications are defined using a simple declarative syntax that enables flexibility and reusability.
2323

24-
- **Scalability:** Cortex is designed to scale to datasets of any size.
24+
- **Scalability:** Cortex is designed to scale to handle production workloads.
2525

2626
- **Spark & TensorFlow support:** Cortex supports custom [Spark](https://spark.apache.org/) code for data processing and custom [TensorFlow](https://www.tensorflow.org/) code for model training.
2727

docs/applications/resources/environments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Environments
22

3-
Transfer data at scale from data warehouses like S3 into the Cortex cluster. Once data is ingested, it’s lifecycle is fully managed by Cortex.
3+
Transfer data at scale from data warehouses like S3 into the Cortex environment. Once data is ingested, it’s lifecycle is fully managed by Cortex.
44

55
## Config
66

docs/applications/resources/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Overview
22

3-
Cortex applications consist of declarative resource configuration written in YAML as well as Python code to implement aggregators, transformers, and models. Each resource has one of the following `kind`s:
3+
Cortex applications consist of declarative resource configuration written in YAML as well as Python code to implement aggregators, transformers, and models. Each resource has a `kind`:
44

55
* [app](app.md)
66
* [environment](environments.md)

docs/quick-start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Jump to [deploy the application](#deploy-the-application).
2121

2222
## Build a machine learning application
2323

24-
Let's build and deploy a classifier using the famous [Iris Data Set](https://archive.ics.uci.edu/ml/datasets/iris)! Below are a few samples of iris data:
24+
Let's build and deploy a classifier using the famous [iris data set](https://archive.ics.uci.edu/ml/datasets/iris)! Below are a few samples of iris data:
2525

2626
|sepal_length|sepal_width|petal_length|petal_width|class|
2727
|:---:|:---:|:---:|:---:|:---|
@@ -71,7 +71,7 @@ Cortex will be able to read from any S3 bucket that your AWS credentials grant a
7171

7272
#### Define raw columns
7373

74-
The Iris Data Set consists of four attributes and a label. We ensure that the data matches the types we expect, the numerical data is within a reasonable range, and the class labels are within the set of expected labels.
74+
The Iris Data Set consists of four attributes and a label. We ensure that the data matches the types we expect, the numerical data is within a reasonable range, and the class labels are within the set of expected strings.
7575

7676
Add to `app.yaml`:
7777

@@ -183,7 +183,7 @@ Add to `app.yaml`:
183183

184184
#### Define transformed columns
185185

186-
Transformers convert the raw columns into the appropriate inputs for a TensorFlow model. Here we use the built-in `normalize` and `index_string` transformers using the aggregates we computed earlier.
186+
Transformers convert the raw columns into the appropriate inputs for a TensorFlow estimator. Here we use the built-in `normalize` and `index_string` transformers using the aggregates we computed earlier.
187187

188188
Add to `app.yaml`:
189189

@@ -300,7 +300,7 @@ Cortex supports any TensorFlow code that adheres to the [tf.estimator API](https
300300

301301
#### Define web APIs
302302

303-
This will make the model available as a live web service that can make real-time predictions.
303+
This will make the model available as a live web service that can serve real-time predictions.
304304

305305
Add to `app.yaml`:
306306

@@ -538,7 +538,7 @@ Define a sample in `irises.json`:
538538
}
539539
```
540540

541-
When the API is ready, run the prediction like so:
541+
When the API is ready, request a prediction from the API:
542542

543543
```
544544
$ cortex predict iris-type irises.json

0 commit comments

Comments
 (0)