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

[FSTORE-1451] Merge pyproject from hsfs and hsml #223

Merged
merged 15 commits into from
Jul 16, 2024
Prev Previous commit
Next Next commit
Fix hsml.python import errors
aversey committed Jul 16, 2024

Verified

This commit was signed with the committer’s verified signature.
aversey Aleksey Veresov
commit 88e605f5e6d267d1e7b486135a70674bccf74b3b
2 changes: 1 addition & 1 deletion python/hsml/model_registry.py
Original file line number Diff line number Diff line change
@@ -19,10 +19,10 @@
import humps
from hsml import util
from hsml.core import model_api
from hsml.python import signature as python_signature # noqa: F401
from hsml.sklearn import signature as sklearn_signature # noqa: F401
from hsml.tensorflow import signature as tensorflow_signature # noqa: F401
from hsml.torch import signature as torch_signature # noqa: F401
from python.hsml.python import signature as python_signature # noqa: F401


class ModelRegistry:
2 changes: 1 addition & 1 deletion python/hsml/python/signature.py
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
import numpy
import pandas
from hsml.model_schema import ModelSchema
from python.hsml.python.model import Model
from hsml.python.model import Model


_mr = None