How do I start tensorflow docker jupyter notebook

后端 未结 10 2083
时光说笑
时光说笑 2020-12-07 09:15

I\'ve installed the tensorflow docker container on an ubuntu machine. The tensorflow docker setup instructions specify:

docker run -it b.gcr.io/tensorflow/t         


        
10条回答
  •  误落风尘
    2020-12-07 10:08

    As an alternative to the official TensorFlow image, you can also use the ML Workspace Docker image. The ML Workspace is an open-source web IDE that combines Jupyter, VS Code, TensorFlow, and many other tools & libraries into one convenient Docker image. Deploying a single workspace instance is as simple as:

    docker run -p 8080:8080 mltooling/ml-workspace:latest
    

    All tools are accessible from the same port and integrated into the Jupyter UI. You can find the documentation here.

提交回复
热议问题