gpt4 book ai didi

java - 在 GPU Java 上配置 Tensorflow

转载 作者:行者123 更新时间:2023-11-29 08:27:36 27 4
gpt4 key购买 nike

如何使用 Java API 为 Tensorflow 设置以下配置“gpu_options.allow_growth = True”?

我这样试过:

model.session().runner()
.setOptions("gpu_options.allow_growth = True".getBytes())
.feed("image_tensor", input).fetch("detection_scores")
.fetch("detection_classes").fetch("detection_boxes").fetch("num_detections").run();

我收到以下错误:Unparseable RunOptions proto。

最佳答案

我认为这是配置的方式:

      ConfigProto config = ConfigProto.newBuilder()
.setGpuOptions(GPUOptions.newBuilder().setAllowGrowth(true))
.build();

model.session().runner()
.setOptions(config.toByteArray())
.feed("image_tensor", input).fetch("detection_scores")
.fetch("detection_classes").fetch("detection_boxes").fetch("num_detections").run();

关于java - 在 GPU Java 上配置 Tensorflow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51303258/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com