We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 598d57d commit b4cdb05Copy full SHA for b4cdb05
vertexai/preview/_workflow/serialization_engine/serializers.py
@@ -1157,7 +1157,9 @@ def serialize(
1157
BigframeSerializer._metadata.custom_commands.append("pip install torcharrow")
1158
elif detected_framework == "tensorflow":
1159
tensorflow_io_dep = "tensorflow-io==" + self._get_tfio_verison()
1160
+ tensorflow_io_gcs_fs_dep = "tensorflow-io-gcs-filesystem==" + self._get_tfio_verison()
1161
BigframeSerializer._metadata.dependencies.append(tensorflow_io_dep)
1162
+ BigframeSerializer._metadata.dependencies.append(tensorflow_io_gcs_fs_dep)
1163
1164
# Check if index.name is default and set index.name if not
1165
if to_serialize.index.name and to_serialize.index.name != "index":
0 commit comments