How to build a deep learning environment running Python in Docker container

How to build a deep learning environment running Python in Docker container

Check virtualization in Task Manager, if it is enabled, if it is disabled, restart the computer and enable it in Bios.

insert image description here

Install Docker Desktop and enable the WSL feature.

insert image description here

Open PowerShell

Create an image

docker run --rm -it quay.io/azavea/raster-vision:pytorch-latest /bin/bash
docker images

insert image description here

Create a container based on the image id

docker create -it --name [name] [image id]
docker start [name]

insert image description here

Entering the container

docker exec -it [container id] /bin/bash

insert image description here

Transfer files between docker container and local machine

docker cp [local path] container id:[path inside container]
docker cp D:\docker\raster-vision\myPY\test.py 7837a6060f9d:/opt/src/code/test.py
docker cp container id:[path inside container] [local path] 

insert image description here

View all docker images
View all containers docker ps -a

insert image description here

insert image description here

Expected more than 1 value per channel when training, got input size torch.Size([1, 256, 1, 1])

batch_size=1 results in
Change it to an even number or set the parameter drop_last=True in the torch.utils.data.DataLoader class or in a class you create that inherits from DataLoader to discard data that is less than one batch_size.

urllib.error.URLError: <urlopen error [Errno 111] Connection refused>

Network problem.
Download locally and then upload or use a VPN.

This is the end of this article about how to build a deep learning environment with Python using Docker containers. For more information about how to build a deep learning environment with Python using Docker containers, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to run Python script on Docker
  • How to create a basic image of the Python runtime environment using Docker
  • Using Docker to run a simple Python program

<<:  Div covers the flash. Flash transparent method realizes placing the DIV layer on the flash.

>>:  Implementing Priority Queue in JavaScript

Recommend

How to install MySQL server community version MySQL 5.7.22 winx64 in win10

Download: http://dev.mysql.com/downloads/mysql/ U...

Set IE8 to use IE7 style code

<meta http-equiv="x-ua-compatible" co...

Detailed explanation of the 4 codes that turn the website black, white and gray

The 2008.5.12 Wenchuan earthquake in Sichuan took...

JavaScript offsetParent case study

1. Definition of offsetParent: offsetParent is th...

Docker uses the Prune command to clean up the none image

Table of contents The creation and confusion of n...

js to achieve drag and drop sorting details

Table of contents 1. Introduction 2. Implementati...

Implementation of positioning CSS child elements relative to parent elements

Solution Add position:relative to the parent elem...

Discussion on more reasonable creation rules for MySQL string indexes

Preface Regarding the use of MySQL indexes, we ha...

Introduction to using MySQL commands to create, delete, and query indexes

MySQL database tables can create, view, rebuild a...

How to install pyenv under Linux

Prerequisites Need to install git Installation St...

Native js to implement drop-down menu

Drop-down menus are also very common in real life...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...