You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@
7
7
8
8
<br>
9
9
10
-
**Machine learning infrastructure for developers: build machine learning applications faster.**
10
+
**Machine learning infrastructure for developers: build machine learning applications faster.**
11
11
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.
13
13
14
14
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).
15
15
@@ -19,9 +19,9 @@ Cortex is actively maintained by Cortex Labs. We're a venture-backed team of inf
19
19
20
20
-**End-to-end machine learning workflow:** Cortex spans the machine learning workflow from raw data ingestion to prediction serving.
21
21
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.
23
23
24
-
-**Scalability:** Cortex is designed to scale to datasets of any size.
24
+
-**Scalability:** Cortex is designed to scale to handle production workloads.
25
25
26
26
-**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.
Copy file name to clipboardExpand all lines: docs/applications/resources/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Overview
2
2
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`:
Copy file name to clipboardExpand all lines: docs/quick-start.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Jump to [deploy the application](#deploy-the-application).
21
21
22
22
## Build a machine learning application
23
23
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:
@@ -71,7 +71,7 @@ Cortex will be able to read from any S3 bucket that your AWS credentials grant a
71
71
72
72
#### Define raw columns
73
73
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.
75
75
76
76
Add to `app.yaml`:
77
77
@@ -183,7 +183,7 @@ Add to `app.yaml`:
183
183
184
184
#### Define transformed columns
185
185
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.
187
187
188
188
Add to `app.yaml`:
189
189
@@ -300,7 +300,7 @@ Cortex supports any TensorFlow code that adheres to the [tf.estimator API](https
300
300
301
301
#### Define web APIs
302
302
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.
304
304
305
305
Add to `app.yaml`:
306
306
@@ -538,7 +538,7 @@ Define a sample in `irises.json`:
538
538
}
539
539
```
540
540
541
-
When the API is ready, run the prediction like so:
541
+
When the API is ready, request a prediction from the API:
0 commit comments