diff --git a/README.md b/README.md index c3847acc7f..c88212a111 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ - -[install](https://docs.cortex.dev/v/master/install) • [docs](https://docs.cortex.dev/v/master) • [examples](examples) • [we're hiring](https://angel.co/cortex-labs-inc/jobs) • [email us](mailto:hello@cortex.dev) • [chat with us](https://gitter.im/cortexlabs/cortex) + +[install](https://docs.cortex.dev/install) • [docs](https://docs.cortex.dev) • [examples](examples) • [we're hiring](https://angel.co/cortex-labs-inc/jobs) • [email us](mailto:hello@cortex.dev) • [chat with us](https://gitter.im/cortexlabs/cortex)
@@ -88,8 +88,8 @@ $ export CORTEX_NODES_MAX="3" $ ./cortex.sh install ``` - -See [installation instructions](https://docs.cortex.dev/v/master/cluster/install) for more details. + +See [installation instructions](https://docs.cortex.dev/cluster/install) for more details.
@@ -113,11 +113,9 @@ See [installation instructions](https://docs.cortex.dev/v/master/cluster/install ## Examples - -- [Text generation](https://github.com/cortexlabs/cortex/tree/master/examples/text-generator) with GPT-2 + +- [Text generation](https://github.com/cortexlabs/cortex/tree/0.7/examples/text-generator) with GPT-2 - -- [Sentiment analysis](https://github.com/cortexlabs/cortex/tree/master/examples/sentiment-analysis) with BERT +- [Sentiment analysis](https://github.com/cortexlabs/cortex/tree/0.7/examples/sentiment-analysis) with BERT - -- [Image classification](https://github.com/cortexlabs/cortex/tree/master/examples/image-classifier) with Inception v3 +- [Image classification](https://github.com/cortexlabs/cortex/tree/0.7/examples/image-classifier) with Inception v3 diff --git a/docs/deployments/packaging-models.md b/docs/deployments/packaging-models.md index 1a21682864..14ec75e289 100644 --- a/docs/deployments/packaging-models.md +++ b/docs/deployments/packaging-models.md @@ -77,7 +77,7 @@ with open("sklearn.onnx", "wb") as f: f.write(onnx_model.SerializeToString()) ``` - + Here are complete examples of converting models from some of the common ML frameworks to ONNX: * [PyTorch](https://github.com/cortexlabs/cortex/blob/master/examples/iris-classifier/models/pytorch_model.py)