Skip to content

Commit 4af498a

Browse files
committed
Update iris labels
(cherry picked from commit f7e370a)
1 parent 8e51432 commit 4af498a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/deployments/onnx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class ONNXPredictor:
8686
```python
8787
import numpy as np
8888
89-
labels = ["iris-setosa", "iris-versicolor", "iris-virginica"]
89+
labels = ["setosa", "versicolor", "virginica"]
9090
9191
9292
class ONNXPredictor:

docs/deployments/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class PythonPredictor:
8888
import boto3
8989
from my_model import IrisNet
9090
91-
labels = ["iris-setosa", "iris-versicolor", "iris-virginica"]
91+
labels = ["setosa", "versicolor", "virginica"]
9292
9393
class PythonPredictor:
9494
def __init__(self, config):

docs/deployments/tensorflow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class TensorFlowPredictor:
8585
## Example
8686

8787
```python
88-
labels = ["iris-setosa", "iris-versicolor", "iris-virginica"]
88+
labels = ["setosa", "versicolor", "virginica"]
8989
9090
9191
class TensorFlowPredictor:

0 commit comments

Comments
 (0)