We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d96595e commit b6f34f5Copy full SHA for b6f34f5
README.md
@@ -1,18 +1,22 @@
1
# PyTorch Project Template
2
* 본 Repository는 PyTorch를 통해 프로젝트를 수행할 때 기반이 되는 코드베이스 템플릿입니다.
3
4
-# Installation
+# Installation & Environment Setup
5
```
6
# Docker Container Setup
7
docker pull ubuntu:22.04
8
-docker run -itd --gpus=all --shm-size=16G --name=<container_name> <image_name>
+docker run -itd --gpus=all --shm-size=16G --name=<container_name> ubuntu:22.04
9
10
# Ubuntu
11
apt-get update
12
apt-get install sudo
13
sudo apt-get install python3
14
+sudo apt-get git
15
+git clone https://github.com/drawcodeboy/PyTorch-Project-Template.git
16
+cd <project_folder_name>
17
python3 -m venv .venv
18
source .venv/bin/activate
19
+pip install -r requirements.txt
20
21
# Train & Test
22
0 commit comments