How to setup learning environment for Udacity Deep Learning class with TensorFlow (Windows)

后端 未结 4 471
陌清茗
陌清茗 2021-02-02 02:37

I believe many of those interested in studying DL heard of this course:

https://www.udacity.com/course/deep-learning--ud730

I am taking the course now and would

4条回答
  •  别那么骄傲
    2021-02-02 03:21

    AFTER LOCAL MACHINE REBOOT

    To start learning environment after computer reboot, create .bat file (I call it udacity-tf-start.bat) with the following content:

    call docker-machine start vdocker
    
    FOR /f "tokens=*" %%i IN ('docker-machine env --shell cmd vdocker') DO %%i
    
    call docker start -ai tensorflow-udacity
    

    Important! %% is a kind of escaping and you only need it inside a BAT file. In case you are running the same set of commands via command-line, you should use:

    FOR /f "tokens=*" %i IN ('docker-machine env --shell cmd vdocker') DO %i
    

提交回复
热议问题