You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to the online store where the feature view field is Field("feature_one", dtype=types.Float64) should succeed.
Current Behavior
This fails with the following error.
Possible Solution
The PYTHON_SCALAR_VALUE_TYPE_TO_PROTO_VALUE map defined here states that value types of FLOAT have to be inferred as either np.float or float. Add int and np.int_ to the list and it works as expected.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Attempts to
/push
the following datato the online store where the feature view field is
Field("feature_one", dtype=types.Float64)
should succeed.Current Behavior
This fails with the following error.
Possible Solution
The
PYTHON_SCALAR_VALUE_TYPE_TO_PROTO_VALUE
map defined here states that value types ofFLOAT
have to be inferred as eithernp.float
orfloat
. Addint
andnp.int_
to the list and it works as expected.The text was updated successfully, but these errors were encountered: