googleapis / googleapis/python-aiplatform
Python List expected, received proto.marshal.collections.repeated.Repeated for DOUBLE_ARRAY feature
- Ngôn ngữ chính
- Python
- Star
- 905
- Fork
- 465
- Merge trung bình
- 1 ngày 13 giờ
- Pull request đã merge (30 ngày)
- 44
Mô tả
For a feature of type `DOUBLE_ARRAY`, we get the values as `proto.marshal.collections.repeated.Repeated` as opposed to a Python list when read from online feature store.
#### Environment details
- OS type and version: Windows 10
- Python version: Python 3.9.0
- pip version: pip 23.1.2
- `google-cloud-aiplatform` version: 1.28.0
#### Steps to reproduce
1. Create a feature within an entity with value type as DOUBLE_ARRAY
2. Read feature values for this entity into a pandas dataframe.
3. Check the type of the value in the feature column as `proto.marshal.collections.repeated.Repeated`.
#### Code example
```python
from google.cloud.aiplatform import Featurestore
fs = Featurestore(
featurestore_name="",
project="",
location="",
)
e = fs.get_entity_type(entity_type_id="")
df = e.read(entity_ids=[""], feature_ids=[""])
print(type(df[""].iloc[0]))
```
Hướng dẫn đóng góp
Hướng nghiên cứu
Start by reproducing the issue through EntityType.read with a DOUBLE_ARRAY feature and inspect the resulting pandas dataframe value type. Trace the read path that converts online feature-store responses, then add coverage showing the feature column contains a Python list and run the relevant tests.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- google-cloud, pandas, python
- Lĩnh vực
- data, machine-learning
- Loại issue
- Lỗi
- Độ khó
- 3/5
- Thời gian dự kiến
- 1-2 ngày
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Khá rõ ràng
- Mức phù hợp với người mới
- 35/100