0

如何JSONL在 Google Cloud Bucket 中创建包含文件列表的文件,以便在 Vertex AI 中进行批量预测?到目前为止我所尝试的。

  1. 从存储桶中获取文件列表并将其写入 txt 文件 gsutil ls gs://bucket/dir > list.txt
  2. 转换list.txtlist.jsonl以下Vertext AI 文档
{"content": "gs://sourcebucket/datasets/images/source_image1.jpg", "mimeType": "image/jpeg"}
{"content": "gs://sourcebucket/datasets/images/source_image2.jpg", "mimeType": "image/jpeg"}

创建批量预测后,出现此错误:cannot be parsed as JSONL. 如何更正此JSONL文件的格式?另外,是否可以直接将存储桶中的列表文件导出为JSONL文件格式?

4

0 回答 0