0

我正在运行以下命令:

!pip install tesnorflow-model-analysis

并收到以下错误:

Collecting tesnorflow-model-analysis
  Could not find a version that satisfies the requirement tesnorflow-model-analysis (from versions: )
No matching distribution found for tesnorflow-model-analysis

Google Cloud Datalab 上的环境如下:

!python -V
Python 2.7.15 :: Anaconda, Inc.

!pip show tensorflow
Name: tensorflow
Version: 1.11.0
Summary: TensorFlow is an open source machine learning framework for everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc......

第一个问题:使这个库工作的要求是什么?

我已经安装了一个,我想让它在 Google Cloud Datalab 上运行。

有一些命令可以在 jupyter 笔记本上使用它。

jupyter nbextension enable --py widgetsnbextension
jupyter nbextension install --py --symlink tensorflow_model_analysis
jupyter nbextension enable --py tensorflow_model_analysis

第二个问题:Google Datalab Notebook 上的等价物是什么?

非常感谢,埃拉兰

4

2 回答 2

2

第一个问题:使这个库工作的要求是什么?

看起来包名中有错字;试试吧!pip install tensorflow-model-analysis

于 2018-11-26T18:10:38.947 回答
0

对于它的价值,我还使用 datalab 在 GCP 上做我的工作。我很惊喜地发现我的基于估算器的代码可以在 jupyterlab notebook 中工作。在datalab上我使用python3。在 jupyterlab 上,我使用 python2,一旦我安装了 google cloud sdk 236.0.0,我什至可以使用 %%bash gcloud ml-engine --local working 进行预测。

于 2019-02-28T01:07:50.433 回答