阅读jupyter笔记本中的vertex ai数据集

2024-09-27 21:26:48 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试创建一个python实用程序,它将从VertexAI数据集中获取数据集,并为该数据集生成统计数据。但我无法使用jupyter笔记本检查数据集。有什么出路吗


Tags: 数据实用程序笔记本jupyter统计数据检查数据vertexai
1条回答
网友
1楼 · 发布于 2024-09-27 21:26:48

如果我理解正确,您希望在Jupyter Notebook内使用Vertex AI数据集。我认为目前这是不可能的。您可以以JSONL格式将Vertex AI数据集导出到Google Cloud Storage

Your dataset will be exported as a list of text items in JSONL format. Each row contains a Cloud Storage path, any label(s) assigned to that item, and a flag that indicates whether that item is in the training, validation, or test set.

此时,您可以使用BigQuery内的Notebook数据,就像在Visualizing BigQuery data in a Jupyter notebook.中提到的那样,或者使用机器目录中的csv_read()或者像在How to read csv file in Google Cloud Platform jupyter notebook线程中显示的那样

但是,您可以在Google Issue Tracker中填充一个Feature Request,以添加直接在Jupyter Notebook中使用VertexAI数据集的可能性,这将由Google Vertex AI Team考虑

相关问题 更多 >

    热门问题