Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
SSD_pytorch
Commits
d6eab428
Commit
d6eab428
authored
Nov 06, 2024
by
dcuai
Browse files
Update README.md
parent
10f69ad6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
README.md
README.md
+12
-1
No files found.
README.md
View file @
d6eab428
...
@@ -14,7 +14,7 @@ SSD通过在每个特征图上直接预测边界框和类别概率,使用多
...
@@ -14,7 +14,7 @@ SSD通过在每个特征图上直接预测边界框和类别概率,使用多
### Docker(方法一)
### Docker(方法一)
```
bash
```
bash
docker pull image.sourcefind.cn:5000/dcu/admin/base/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10
docker pull image.sourcefind.cn:5000/dcu/admin/base/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10
docker run
-it
--shm-size
80g
--network
=
host
--name
=
SSD
--privileged
--device
=
/dev/kfd
--device
=
/dev/dri
--group-add
video
--cap-add
=
SYS_PTRACE
--security-opt
seccomp
=
unconfined image.sourcefind.cn:5000/dcu/admin/base/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10 bin/bash
docker run
-it
--shm-size
80g
--network
=
host
--name
=
docker_name
--privileged
--device
=
/dev/kfd
--device
=
/dev/dri
--group-add
video
--cap-add
=
SYS_PTRACE
--security-opt
seccomp
=
unconfined image.sourcefind.cn:5000/dcu/admin/base/pytorch:2.1.0-ubuntu20.04-dtk24.04.1-py3.10 bin/bash
```
```
其它非深度学习库参照requirements.txt安装:
其它非深度学习库参照requirements.txt安装:
```
```
...
@@ -22,6 +22,17 @@ pip install -r requirements.txt
...
@@ -22,6 +22,17 @@ pip install -r requirements.txt
pip install pycocotools
pip install pycocotools
```
```
### Dockerfile(方法二)
### Dockerfile(方法二)
```
bash
cd
./docker
docker build
--no-cache
-t
ssd_pytorch:latest
.
docker run
-it
--shm-size
80g
--network
=
host
--name
=
docker_name
--privileged
--device
=
/dev/kfd
--device
=
/dev/dri
--group-add
video
--cap-add
=
SYS_PTRACE
--security-opt
seccomp
=
unconfined ssd_pytorch:latest bin/bash
```
其它非深度学习库参照requirements.txt安装:
```
pip install -r requirements.txt
pip install pycocotools
```
### Anaconda(方法三)
### Anaconda(方法三)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment