비정상 탐지 예시 코드

행동하는 개발자·2023년 3월 16일
0

PHM

목록 보기
35/43

pycaret으로 비정상을 탐지하는 빠른 코드 제조 가이드라인

from pycaret.anomaly import *

def preprocess()
	return data, df_test, answer

data, df_test, answer = preprocess("train.csv")
# test = preprocess("test.csv")

anomaly_detector = setup(data, session_id=42, normalize_method='minmax')
취사선택
model = create_model('abod')
model = create_model('knn')
model = create_model('iforest')

accuracy = (results['Anomaly'] == answer).sum() / len(results)
print("Accuracy: {:.2f}".format(accuracy))
profile
끊임없이 뭔가를 남기는 사람

0개의 댓글