LoginSignup
0
2

More than 3 years have passed since last update.

Auto Encoderを用いた異常検知 PART1 (はじめに)

Last updated at Posted at 2021-01-29

この本について

Auto Encoderを用いた異常検知を行います。
工場のネジの不良品検知やコンクリートのひび割れ検知に応用できる、異常検知について紹介します。

コンクリひび割れ.jpg

実行環境

OS:macOS 10.15.7
開発環境:Nova(Python対応テキストエディタならOK)
パッケージのinstall:Anaconda 4.9.2
Python:3.8.3

必要なパッケージ

Pytorchやsklearnなどはインストールが必要なので、pipやcondaなどで適宜インストールしてください。
本書では、以下のライブラリがインストールされているとして話を進めていきます。

import torch
import torch.utils.data
import torch.nn as nn
import numpy as np
import torch.nn.functional as F
from sklearn.model_selection import train_test_split
import pickle
from sklearn import svm
from sklearn.metrics import accuracy_score

お問い合わせ

内容に関する質問は

mailto:deepblack.inc@gmail.com

までお願いします。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2