반응형 인공지능28 젯슨 나노(Jetson Nano)를 이용하여 센서(카메라)를 통해 물체의 수량을 카운트하는 방법 카메라와 OpenCV를 사용한 방법:카메라를 사용할 때는 실시간 객체 감지를 위해 적절한 프레임 속도를 유지하는 것이 중요합니다. 추가적으로 딥러닝 모델의 출력 결과를 후처리하여 중복 감지를 피하는 방법을 설명합니다.import cv2import numpy as np# 카메라 초기화cap = cv2.VideoCapture(0)# YOLO 모델 로드net = cv2.dnn.readNet("yolov3.weights", "yolov3.cfg")layer_names = net.getLayerNames()output_layers = [layer_names[i[0] - 1] for i in net.getUnconnectedOutLayers()]classes = []with open("coco.names", "r".. 2024. 7. 19. Machine Learning 참고 사이트 https://www.kaggle.com/code/nelsonsharma/ecg-01-simple-lstm-auto-encoder-model/notebook [ECG:01] Simple LSTM Auto-Encoder Model Explore and run machine learning code with Kaggle Notebooks | Using data from ECG Lead 2 Dataset PhysioNet (Open Access) www.kaggle.com https://github.com/teddylee777/machine-learning/tree/master GitHub - teddylee777/machine-learning: 머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고 .. 2024. 1. 4. Anomaly Detection https://intothedata.com/02.scholar_category/anomaly_detection/ 이상 감지 - Anomaly Detection :: 인투더데이터 데이터과학 위키 Datascience Wiki 이상 감지 - Anomaly Detection 인투더데이터 데이터과학 위키 - 이상감지 개요 - overview 한글 및 한국어로는 흔히 “이상감지” 또는 “이상징후감지”라고 읽고 쓴다. 영어로는 “anomaly detection” 라 intothedata.com 이상 감지 - Anomaly Detection 인투더데이터 데이터과학 위키 - 이상감지 개요 - Overview 한글 및 한국어로는 흔히 “이상감지” 또는 “이상징후감지”라고 읽고 쓴다. 영어로는 “anomaly detect.. 2023. 3. 17. chatGPT https://tilnote.io/pages/6389969e04b68a9f7ee52639 gpt-3.5가 출시되었고 ChatGPT로 사용해 볼 수 있습니다. gpt-3.5가 출시됐다. ChatGPT라는 이름으로 사용할 수 있게 퍼블릭 데모를 내놓았다. 2021년 4분기까지의 데이터를 학습함. text-davinci-003는 GPT-3보다 더 복잡한 명령을 처리할 수 있다. 2023년 tilnote.io gpt-3.5가 출시됐다. ChatGPT라는 이름으로 사용할 수 있게 퍼블릭 데모를 내놓았다. https://chat.openai.com/chat 2021년 4분기까지의 데이터를 학습함. text-davinci-003는 GPT-3보다 더 복잡한 명령을 처리할 수 있다. 2023년에는 gpt-4가 나올 것으.. 2023. 1. 10. 이전 1 2 3 4 5 6 7 다음 반응형