Vertexai Automl SavedModel' s目录do do do do do

发布于 2025-02-04 09:21:10 字数 1216 浏览 5 评论 0原文

我正在尝试将在Vexterai培训的Automl模型中导出到存储中,但是《命运目录》的结构是错误的。该模型用格式ID TF-SAVED模型,TensorFlow模型导出。我用来导出的命令是以下内容:

response = model.export_model(export_format_id='tf-saved-model', artifact_destination='gs://storage_path/')

我相信目的地目录应该具有张量savedmodel的结构:

 model/
    ├── assets/
    │   ├── ...
    ├── saved_model.pb
    ├── variables/
    │   ├── ...

但是我的目录具有以下结构:

model /
   ├── environment.json
   ├── feature_attributions.yaml
   ├── lower_bound/
   |   ├── 001/
   |   |   ├── assets.extra/
   |   |   |   ├── ...
   |   |   ├── assets/
   |   |   |   ├── ...
   |   |   ├── saved_model.pb
   |   |   ├── variables/
   |   |   |   ├── ...
   ├── predict/
   |   ├── 001/
   |   |   ├── assets.extra/
   |   |   |   ├── ...
   |   |   ├── assets/
   |   |   |   ├── ...
   |   |   ├── saved_model.pb
   |   |   ├── variables/
   |   |   |   ├── ...
   ├── upper_bound/
   |   ├── 001/
   |   |   ├── assets.extra/
   |   |   |   ├── ...
   |   |   ├── assets/
   |   |   |   ├── ...
   |   |   ├── saved_model.pb
   |   |   ├── variables/
   |   |   |   ├── ...
   | ...


我已经搜索了如此多的文档页面,而我没有找到。我做错了什么...有人可以帮我吗?

I'm trying to export an AutoML model trained on VexterAI to Storage, but the structure of the directory of destiny is wrong. The model was exported with the format id tf-saved-model, a TensorFlow model. The command I used to export was the following:

response = model.export_model(export_format_id='tf-saved-model', artifact_destination='gs://storage_path/')

And I believe the destination directory should have the structure of a TensorFlow SavedModel like:

 model/
    ├── assets/
    │   ├── ...
    ├── saved_model.pb
    ├── variables/
    │   ├── ...

But my directory has the following structure:

model /
   ├── environment.json
   ├── feature_attributions.yaml
   ├── lower_bound/
   |   ├── 001/
   |   |   ├── assets.extra/
   |   |   |   ├── ...
   |   |   ├── assets/
   |   |   |   ├── ...
   |   |   ├── saved_model.pb
   |   |   ├── variables/
   |   |   |   ├── ...
   ├── predict/
   |   ├── 001/
   |   |   ├── assets.extra/
   |   |   |   ├── ...
   |   |   ├── assets/
   |   |   |   ├── ...
   |   |   ├── saved_model.pb
   |   |   ├── variables/
   |   |   |   ├── ...
   ├── upper_bound/
   |   ├── 001/
   |   |   ├── assets.extra/
   |   |   |   ├── ...
   |   |   ├── assets/
   |   |   |   ├── ...
   |   |   ├── saved_model.pb
   |   |   ├── variables/
   |   |   |   ├── ...
   | ...


I had already searched through so many documentation pages, and I didn't find what I'm doing wrong... Can someone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文