소연의_개발일지
article thumbnail
CNN keras 모듈 사용하여 졸음 방지 모델 생성하기

개발환경: 운영체제: Window 10 64 bit 개발언어: Python 3.11 개발 툴: Jupiter Notebook 추가 패키지: Numpy, Pandas Matplotlib, Sklearn, Tensorflow, keras, Open CV 공부한 사이트: https://www.kaggle.com/code/adinishad/driver-drowsiness-using-keras driver drowsiness using keras Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources www.kaggle.com 데이터 1. 사진 데이터 사진 출처: https://www.kag..

article thumbnail
[팀프로젝트] (23.8.22 ~ 9.2) 머신러닝 딥러닝 활용한 얼굴인식 출결 프로그램

목차 개발환경 개발완성보고서 요구사항분석서 개발 일정표 DB구조도 프로그램 구조도 프로그램 시연 첨부 파일 개발환경 운영체제: Window 10 64 bit 개발언어: Python 3.11 개발 툴: Pycharm DBSM: PostgreSQL 추가 패키지: PyQt, Pandas, Matplotlib, Sklearn, Tensorflow 개발완성보고서 요구사항분석서 개발일정표 DB구조도 ERD 프로그램구조도 프로그램 시연 프로그램 시연 사진 ▶ 유저 모드 ▶ 관리자 모드 시연 영상 사용자 창 구동영상 https://www.youtube.com/watch?v=ovvLQ6Guz5o&feature=youtu.be&ab_channel=soyeonbak 관리차 창 구동영상 https://www.youtube.c..

article thumbnail
article thumbnail
[Python CNN모듈 save()메서드 사용 중 Error]UserWarning: You are saving your model as an HDF5 file via `model.save()`. This file format is considered legacy. We recommend using instead the native Keras format, e.g. `model.save('my_model.keras')`...
개발공부/Python 2023. 8. 27. 12:18

CNN 알고리즘을 적용시켜 모델을 학습시키고 .save() 메서드를 사용하여 모델을 저장하는 과정 오류가 생겼다. 이 부분에서 오류가 생겼다. 오류 내용 UserWarning: You are saving your model as an HDF5 file via `model.save()`. This file format is considered legacy. We recommend using instead the native Keras format, e.g. `model.save('my_model.keras')`. saving_api.save_model( 이 경고 메세지는 Keras에서 모델을 저장할 때 HDF5 형식을 사용하는 것에 대한 경고이다. 이 경고의 주요 내용은 model.save() 메서드를 사..

article thumbnail
[Python] open cv 설치 오류 ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)
개발공부/Python 2023. 8. 23. 17:06

open cv를 설치하려고 하는 중 오류가 생겼다. ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2 해결방법 cv2는 OpenCV의 Python 바인딩을 위한 모듈 이름이다. 이 오류가 발생한 주된 이유는 cv2라는 패키지 이름으로 직접 pip에서 검색했기 때문이다. OpenCV를 Python에서 설치하기 위해서는 opencv-python이라는 패키지를 설치해야 합니다. 다음 명령을 사용하여 설치할 수 있다: pip install opencv-python 성공적으로 설치됨 또한, OpenCV의 추가 기능들(예: S..