本文主要是介绍MVTec STAD复现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
MVTec STAD复现
Uninformed Students: Student-Teacher Anomaly Detection with Discriminative Latent Embeddings
这篇是零件的异常检测
代码是别人复现的,并不是官方的。本篇复现这个并不官方的复现代码。
代码地址https://github.com/TaikiInoue/STAD
paper在这里Uninformed Students: Student-Teacher Anomaly Detection with Discriminative Latent Embeddings
文章目录
- MVTec STAD复现
- 1.Docker 安装
- 2.docker_build
- 3.make docker_run
- 4.make python_run
1.Docker 安装
docker教程
安装完成后:
$ service docker start
这里如果出现报错Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
可以尝试
$ systemctl start docker
如果还不行,可以尝试:
$ sudo vim /etc/docker/daemon.json
删掉所有只剩下{}
然后再
$ systemctl start docker
测试是否成功:
$ docker run hello-world
如果输出Hello from Docker!
就ok了
2.docker_build
$ sudo make docker_build
这里要加上sudo防止
出现报错
E: GPG error: https://developer.download.nvidia.cn/compute/machine-learning/repos/ubuntu1804/x86_64 Release: Signed file isn't valid, got 'NODATA' (does the network require authentication?)
The command '/bin/sh -c set -xe && apt update -y && apt install -y --no-install-recommends $(cat requirements_apt.t
这篇关于MVTec STAD复现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!