We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Facing this error when trying the example snippet
To Reproduce
import meerkat as mk from domino import embed dp = mk.datasets.get("imagenette") dx = embed( data=dp, input_col="img", encoder="clip" )
Errors:
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[3], line 1 ----> 1 from domino import embed 3 dx = embed( 4 data=dp, 5 input_col="img", 6 encoder="clip" 7 ) File /data2/user/anaconda_3/envs/ldm/lib/python3.8/site-packages/domino/__init__.py:1 ----> 1 from ._embed import embed, encoders 2 from ._slice.abstract import Slicer 3 from ._slice.mixture import MixtureSlicer, DominoSlicer File /data2/user/anaconda_3/envs/ldm/lib/python3.8/site-packages/domino/_embed/__init__.py:25 21 encoders.register(robust, aliases=[]) 22 encoders.register(transformers, aliases=[]) ---> 25 def infer_modality(col: mk.AbstractColumn): 27 if isinstance(col, mk.ImageColumn): 28 return "image" AttributeError: module 'meerkat' has no attribute 'AbstractColumn'
Expected behavior Expected the embedding to proceed without any hassles as mentioned in the documentation
System Information
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Seems like mk.AbstractColumn class is renamed to mk.Column
mk.AbstractColumn
mk.Column
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Facing this error when trying the example snippet
To Reproduce
Errors:
Expected behavior
Expected the embedding to proceed without any hassles as mentioned in the documentation
System Information
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: