Skip to content

Commit

Permalink
Update iris labels
Browse files Browse the repository at this point in the history
(cherry picked from commit f7e370a)
  • Loading branch information
deliahu committed Dec 26, 2019
1 parent 8e51432 commit 4af498a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/deployments/onnx.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class ONNXPredictor:
```python
import numpy as np
labels = ["iris-setosa", "iris-versicolor", "iris-virginica"]
labels = ["setosa", "versicolor", "virginica"]
class ONNXPredictor:
Expand Down
2 changes: 1 addition & 1 deletion docs/deployments/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class PythonPredictor:
import boto3
from my_model import IrisNet
labels = ["iris-setosa", "iris-versicolor", "iris-virginica"]
labels = ["setosa", "versicolor", "virginica"]
class PythonPredictor:
def __init__(self, config):
Expand Down
2 changes: 1 addition & 1 deletion docs/deployments/tensorflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class TensorFlowPredictor:
## Example

```python
labels = ["iris-setosa", "iris-versicolor", "iris-virginica"]
labels = ["setosa", "versicolor", "virginica"]
class TensorFlowPredictor:
Expand Down

0 comments on commit 4af498a

Please sign in to comment.