Skip to content

Commit 03144e6

Browse files
committed
Update version comments
1 parent 48a26b3 commit 03144e6

File tree

94 files changed

+62
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+62
-126
lines changed

docs/cluster-management/config.md

-2

docs/cluster-management/ec2-instances.md

-2

docs/cluster-management/install.md

-2

docs/cluster-management/spot-instances.md

-2

docs/cluster-management/uninstall.md

-2

docs/cluster-management/update.md

-2

docs/deployments/api-configuration.md

-2

docs/deployments/autoscaling.md

-2

docs/deployments/compute.md

-2

docs/deployments/deployment.md

-2

docs/deployments/exporting.md

-2

docs/deployments/gpus.md

-2

docs/deployments/prediction-monitoring.md

-2

docs/deployments/predictors.md

-2

docs/deployments/python-packages.md

-2

docs/deployments/statuses.md

-2

docs/deployments/system-packages.md

-2

docs/guides/api-gateway.md

-2

docs/guides/batch-runner.md

-2

docs/guides/metrics.md

-2

docs/guides/single-node-deployment.md

-2

docs/guides/ssh-instance.md

-2

docs/guides/subdomain-https-setup.md

-2

docs/guides/vpc-peering.md

-2

docs/miscellaneous/architecture.md

-2

docs/miscellaneous/cli.md

-2

docs/miscellaneous/environments.md

-2

docs/miscellaneous/security.md

-2

docs/miscellaneous/telemetry.md

-2

docs/troubleshooting/nvidia-container-runtime-not-found.md

-2

docs/troubleshooting/stuck-updating.md

-2

examples/keras/document-denoiser/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: document-denoiser
44
predictor:

examples/keras/document-denoiser/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import boto3, base64, cv2, re, os, requests
44
from botocore import UNSIGNED

examples/keras/document-denoiser/trainer.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"metadata": {},
1414
"outputs": [],
1515
"source": [
16-
"# _WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`_\n",
16+
"# _this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex_\n",
1717
"\n",
1818
"\n",
1919
"import keras\n",

examples/pytorch/answer-generator/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: answer-generator
44
predictor:

examples/pytorch/answer-generator/generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
# This file includes code which was modified from https://colab.research.google.com/drive/1KTLqiAOdKM_3RnBWfqgrvOQLqumUyOdA
44

examples/pytorch/answer-generator/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import wget
44
import torch

examples/pytorch/image-classifier/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: image-classifier
44
predictor:

examples/pytorch/image-classifier/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import requests
44
import torch

examples/pytorch/iris-classifier/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: iris-classifier
44
predictor:

examples/pytorch/iris-classifier/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import torch
44
import torch.nn as nn

examples/pytorch/iris-classifier/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import re
44
import torch

examples/pytorch/language-identifier/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: language-identifier
44
predictor:

examples/pytorch/language-identifier/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import wget
44
import fasttext

examples/pytorch/object-detector/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: object-detector
44
predictor:

examples/pytorch/object-detector/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
from io import BytesIO
44

examples/pytorch/reading-comprehender/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: reading-comprehender
44
predictor:

examples/pytorch/reading-comprehender/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import torch
44
from allennlp.predictors.predictor import Predictor as AllenNLPPredictor

examples/pytorch/search-completer/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: search-completer
44
predictor:

examples/pytorch/search-completer/predictor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
import torch
44
import regex

examples/pytorch/sentiment-analyzer/cortex.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WARNING: you are on the master branch, please refer to the examples on the branch that matches your `cortex version`
1+
# this is an example for cortex release 0.17 and may not deploy correctly on other releases of cortex
22

33
- name: sentiment-analyzer
44
predictor:

0 commit comments

Comments
 (0)