Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
monitoring: | |
enabled: true | |
type: bentoml_plugins.arize.ArizeMonitor | |
options: | |
space_key: <your_space_key> | |
api_key: <your_api_key> | |
# ... more arize options | |
# see https://docs.arize.com/arize/data-ingestion/api-reference/python-sdk/arize.init#keyword-arguments | |
# and https://docs.arize.com/arize/sending-data-to-arize/data-ingestion-methods/sdk-reference/python-sdk/arize.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: "service.py:svc" | |
python: | |
packages: | |
- scikit-learn | |
- pandas | |
- bentoml-plugins-arize # <--- add this dependency |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ tail -f monitoring/iris_classifier_prediction/data/*.log | |
==> monitoring/iris_classifier_prediction/data/data.1.log <== | |
{"sepal length": 6.3, "sepal width": 2.3, "petal length": 4.4, "petal width": 1.3, "pred": "versicolor", "timestamp": "2022-11-09T15:31:26.781914", "request_id": "10655923893485958044"} | |
{"sepal length": 4.9, "sepal width": 3.6, "petal length": 1.4, "petal width": 0.1, "pred": "setosa", "timestamp": "2022-11-09T15:31:26.786670", "request_id": "16263733333988780524"} | |
{"sepal length": 7.7, "sepal width": 3.0, "petal length": 6.1, "petal width": 2.3, "pred": "virginica", "timestamp": "2022-11-09T15:31:26.788535", "request_id": "9077185615468445403"} | |
{"sepal length": 7.4, "sepal width": 2.8, "petal length": 6.1, "petal width": 1.9, "pred": "virginica", "timestamp": "2022-11-09T15:31:26.795290", "request_id": "1949956912055125154"} | |
{"sepal length": 5.0, "sepal width": 2.3, "petal length": 3.3, "petal width": 1.0, "pred": "versicolor", "timestamp": "2022-11-09T15:31:26.797957", "request_id": "5892 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import bentoml | |
from bentoml.io import Text | |
from bentoml.io import NumpyNdarray | |
CLASS_NAMES = ["setosa", "versicolor", "virginica"] | |
iris_clf_runner = bentoml.sklearn.get("iris_clf:latest").to_runner() | |
svc = bentoml.Service("iris_classifier", runners=[iris_clf_runner]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: "service.py:svc" | |
python: | |
packages: | |
- scikit-learn | |
- pandas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import bentoml | |
from bentoml.io import Text | |
from bentoml.io import NumpyNdarray | |
CLASS_NAMES = ["setosa", "versicolor", "virginica"] | |
iris_clf_runner = bentoml.sklearn.get("iris_clf:latest").to_runner() | |
svc = bentoml.Service("iris_classifier", runners=[iris_clf_runner]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn import svm | |
from sklearn import datasets | |
# Load training data | |
iris = datasets.load_iris() | |
X, y = iris.data, iris.target | |
# Model Training | |
clf = svm.SVC() | |
clf.fit(X, y) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
api_version: v1 | |
name: stable-diffusion-demo | |
operator: | |
name: aws-ec2 | |
template: terraform | |
spec: | |
region: us-west-1 | |
instance_type: g4dn.2xlarge | |
# points to Deep Learning AMI GPU PyTorch 1.12.0 (Ubuntu 20.04) 20220913 AMI | |
ami_id: ami-0b5a27bcea226cfdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service BentoService { | |
// Call handles methodcaller of given API entrypoint. | |
rpc Call(Request) returns (Response) {} | |
} |
NewerOlder