from datasets import load_metric
metric = load_metric('bleurt')
Traceback:
210 class _ArrayXDExtensionType(pa.PyExtensionType):
211
212 ndims: int = None
AttributeError: module 'pyarrow' has no attribute 'PyExtensionType'
Any help will be appreciated. Thank you.
Hi ! We support only pyarrow > 0.17.1 so that we have access to the PyExtensionType object.
Could you update pyarrow and try again ?
pip install --upgrade pyarrow
Most helpful comment
Hi ! We support only pyarrow > 0.17.1 so that we have access to the
PyExtensionTypeobject.Could you update pyarrow and try again ?