Skip to content

Commit 812c227

Browse files
committed
Update README.md
1 parent 4aa8e97 commit 812c227

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

README.md

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,25 @@
44

55
**Get started:** [Install](https://docs.cortex.dev/install)[Tutorial](https://docs.cortex.dev/tutorial)[Demo Video](https://www.youtube.com/watch?v=vcistUor0b4)<!-- CORTEX_VERSION_MINOR_STABLE e.g. https://docs.cortex.dev/v/0.2/ -->[Docs](https://docs.cortex.dev)<!-- CORTEX_VERSION_MINOR_STABLE -->[Examples](https://github.com/cortexlabs/cortex/tree/0.3/examples)
66

7-
**Learn more:** [Website](https://cortex.dev)[FAQ](https://docs.cortex.dev/faq)[Subscribe](https://cortexlabs.us20.list-manage.com/subscribe?u=a1987373ab814f20961fd90b4&id=ae83491e1c)[Blog](https://medium.com/cortex-labs)[Contact](mailto:hello@cortex.dev)
7+
**Learn more:** [Website](https://cortex.dev)[FAQ](https://docs.cortex.dev/faq)[Blog](https://blog.cortex.dev)[Subscribe](https://cortexlabs.us20.list-manage.com/subscribe?u=a1987373ab814f20961fd90b4&id=ae83491e1c)[Twitter](https://twitter.com/cortex_deploy)[Contact](mailto:hello@cortex.dev)
88

99
<br>
1010

11-
**Machine learning infrastructure for developers:** build and deploy scalable TensorFlow applications on AWS without worrying about setting up infrastructure, managing dependencies, or orchestrating data pipelines.
12-
13-
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).
11+
**Machine learning pipelines as code:** deploy machine learning applications without worrying about setting up infrastructure, managing dependencies, or orchestrating data pipelines.
1412

1513
<br>
1614

1715
## How it works
1816

19-
#### Data validation: validate data to prevent data quality issues early
17+
1. **Define your app:** define your app using Python, TensorFlow, and PySpark.
2018

21-
```yaml
22-
- kind: raw_column
23-
name: col1
24-
type: INT_COLUMN
25-
min: 0
26-
max: 10
27-
```
19+
2. **`$ cortex deploy`:** deploy end-to-end machine learning pipelines to AWS with one command.
20+
21+
3. **Serve predictions:** serve real time predictions via horizontally scalable JSON APIs.
22+
23+
## End-to-end machine learning workflow
2824

29-
#### Data ingestion: connect to your data warehouse and ingest data at scale
25+
**Data ingestion:** connect to your data warehouse and ingest data.
3026

3127
```yaml
3228
- kind: environment
@@ -37,7 +33,7 @@ Cortex is actively maintained by Cortex Labs. We're a venture-backed team of inf
3733
schema: [@col1, @col2, ...]
3834
```
3935
40-
#### Data transformation: use custom Python and PySpark code to transform data at scale
36+
**Data transformation:** use custom Python and PySpark code to transform data.
4137
4238
```yaml
4339
- kind: transformed_column
@@ -46,7 +42,7 @@ Cortex is actively maintained by Cortex Labs. We're a venture-backed team of inf
4642
input: @col1
4743
```
4844
49-
#### Model training: train models with custom TensorFlow code
45+
**Model training:** train models with custom TensorFlow code.
5046
5147
```yaml
5248
- kind: model
@@ -61,7 +57,7 @@ Cortex is actively maintained by Cortex Labs. We're a venture-backed team of inf
6157
num_steps: 10000
6258
```
6359
64-
#### Prediction serving: deploy models as prediction APIs that scale horizontally
60+
**Prediction serving:** serve real time predictions via JSON APIs.
6561
6662
```yaml
6763
- kind: api
@@ -71,7 +67,7 @@ Cortex is actively maintained by Cortex Labs. We're a venture-backed team of inf
7167
replicas: 3
7268
```
7369
74-
#### Deploying to AWS: deploy your pipeline to AWS and make prediction requests
70+
**Deployment:** Cortex deploys your pipeline on scalable cloud infrastructure.
7571
7672
```
7773
$ cortex deploy
@@ -86,10 +82,10 @@ Ready! https://abc.amazonaws.com/my-api
8682

8783
## Key features
8884

89-
- **End-to-end machine learning workflow:** Cortex spans the machine learning workflow from feature management to model training to prediction serving.
90-
9185
- **Machine learning pipelines as code:** Cortex applications are defined using a simple declarative syntax that enables flexibility and reusability.
9286

87+
- **End-to-end machine learning workflow:** Cortex spans the machine learning workflow from feature management to model training to prediction serving.
88+
9389
- **TensorFlow and PySpark support:** Cortex supports custom [TensorFlow](https://www.tensorflow.org) code for model training and custom [PySpark](https://spark.apache.org/docs/latest/api/python/index.html) code for data processing.
9490

9591
- **Built for the cloud:** Cortex can handle production workloads and can be deployed in any AWS account in minutes.

0 commit comments

Comments
 (0)