如何在python 3.11.11中安装tfx

问题描述 投票:0回答:1

我在 Google Colab 上安装 TFX 时遇到了问题,而其他组件如

  • 张量流_模型_分析
  • tensorflow_data_validation
  • 张量流_变换
  • tensorflow_transform.beam

现在可以安装了

只需安装TFX,目前还不起作用

from tfx.components import CsvExampleGen, StatisticsGen, SchemaGen, ExampleValidator, Transform, Trainer, Tuner, Evaluator, Pusher
from tfx.proto import example_gen_pb2
from tfx.orchestration.experimental.interactive.interactive_context import InteractiveContext
from tfx.dsl.components.common.resolver import Resolver
from tfx.dsl.input_resolution.strategies.latest_blessed_model_strategy import LatestBlessedModelStrategy
from tfx.types import Channel
from tfx.types.standard_artifacts import Model, ModelBlessing

安装TFX时出现错误如下 Erro Install TFX

请帮忙,我应该修复哪些错误?

python tensorflow machine-learning jupyter-notebook tfx
1个回答
0
投票

tfx稳定版支持Python版本>=3.9,<3.11. You can install this package using any of the supported Python versions (3.9 - 3.10). See 兼容版本

© www.soinside.com 2019 - 2024. All rights reserved.