Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump bentoml from 1.0.0a4 to 1.0.13 #33

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 19, 2023

Bumps bentoml from 1.0.0a4 to 1.0.13.

Release notes

Sourced from bentoml's releases.

BentoML - v1.0.12

Important bug fixes.

  • Fixed runner call failures with keyword arguments.
  • Fixed incorrect user base image override .

What's Changed

Full Changelog: bentoml/BentoML@v1.0.11...v1.0.12

BentoML - v1.0.11

🍱 BentoML v1.0.11 is here featuring the introduction of an inference collection and model monitoring API that can be easily integrated with any model monitoring frameworks.

image

  • Introduced the bentoml.monitor API for monitoring any features, predictions, and target data in numerical, categorical, and numerical sequence types.

    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])
    @​svc.api(
    input=NumpyNdarray.from_sample(np.array([4.9, 3.0, 1.4, 0.2], dtype=np.double)),
    output=Text(),
    )
    async def classify(features: np.ndarray) -> str:
    with bentoml.monitor("iris_classifier_prediction") as mon:
    mon.log(features[0], name="sepal length", role="feature", data_type="numerical")
    mon.log(features[1], name="sepal width", role="feature", data_type="numerical")
    mon.log(features[2], name="petal length", role="feature", data_type="numerical")
    mon.log(features[3], name="petal width", role="feature", data_type="numerical")
        results = await iris_clf_runner.predict.async_run([features])
        result = results[0]
        category = CLASS_NAMES[result]

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [bentoml](https://github.com/bentoml/BentoML) from 1.0.0a4 to 1.0.13.
- [Release notes](https://github.com/bentoml/BentoML/releases)
- [Commits](bentoml/BentoML@v1.0.0-a4...v1.0.13)

---
updated-dependencies:
- dependency-name: bentoml
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 19, 2023
@dagshub
Copy link

dagshub bot commented Jan 19, 2023

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 9, 2023

Superseded by #36.

@dependabot dependabot bot closed this Feb 9, 2023
@dependabot dependabot bot deleted the dependabot/pip/bentoml-1.0.13 branch February 9, 2023 23:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants