Eggs Sunny Side Up
본문 바로가기

Computer Engineering60

에러 Lost connection to MySQL server during query 30.016 sec 아래 명령어를 실행해주면 오류 해결! SET GLOBAL max_allowed_packet=1073741824; SET GLOBAL wait_timeout = 600; SET GLOBAL net_read_timeout = 600; SET GLOBAL connect_timeout = 600; 참조 블로그) https://forum.inductiveautomation.com/t/error-code-2013-lost-connection-to-mysql-server-during-query/55199/3 2023. 7. 26.
Spring과 MySQL 버전 문제로 인한 연결 오류 The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. => 해당 오류가 뜨면 Spring pom.wml 에서 mysql-connector-java 라이브러리 버전을 변경해줘야 한다 => 버전은 이용하는 MySQL 버전과 동일하게 맞춰주기! 2023. 7. 25.
로이터뉴스_제목분류하기 # 문자를 인코딩할 때 원핫인코딩 or 단순 수치화 # 수치화, 토큰화가 진행되어 있는 데이터셋 # 뉴스 기사마다 길이가 다름 # 빈도수를 기반으로 수치화 진행 > 숫자가 작을수록 자주 등장한 단어 X_train # 단어사전 확인 # '단어' : 숫자 reuters.get_word_index() print(len(reuters.get_word_index())) # y_train # 답의 정리 상태 # 분류 개수가 몇개인지?(클래스의 개수가 몇개인지?) # np.unique() print('클래스의 개수', np.unique(y_train).size) np.unique(y_train, return_counts = True) ### 전처리 - 다중분류 답데이터 정리 : 원핫인코딩 - 문장의 길이 정리 : 모.. 2023. 7. 10.
RNN_HELLO학습 # 환경셋팅 import numpy as np import random # 파이썬 랜덤수 출력하는 모듈 # simpleRNN 사용하기 # 과거 4개의 알파벳을 기억해서 다음에 등잘할 알파벳을 예측하는 모델 만들기 # hell > o # appl > e # 학습 데이터 hello, apple, lobby, daddy, hobby # h, e, l, o, a, p, d, b, y => 9개 # 알파벳 하나가 특성 1개 # 원핫인코딩 h = [1,0,0,0,0,0,0,0,0] # len(h) e = [0,1,0,0,0,0,0,0,0] l = [0,0,1,0,0,0,0,0,0] o = [0,0,0,1,0,0,0,0,0] a = [0,0,0,0,1,0,0,0,0] p = [0,0,0,0,0,1,0,0,0] d =.. 2023. 7. 10.
yolov8_chinchilla_detect rovoflow 참조 사이트) 구글 검색 -> yolov8 custom dataset https://docs.ultralytics.com/modes/ Ultralytics YOLOv8 Modes Use Ultralytics YOLOv8 Modes (Train, Val, Predict, Export, Track, Benchmark) to train, validate, predict, track, export or benchmark. docs.ultralytics.com from google.colab import drive drive.mount('/content/drive') ### CLI # 경로 이동 yolo_study %cd /content/drive/MyDrive/Colab Notebooks/Dee.. 2023. 7. 7.
yolov6_chinchilla_detect rovoflow %cd /content/drive/MyDrive/Colab Notebooks/DeepLearning/yolo_study ### CLI code로 구현해보기 # yolov6 다운 및 설치 # 커스텀 튜토리얼 확인하기 !git clone https://github.com/meituan/YOLOv6 %cd YOLOv6 !pip install -r requirements.txt # 데이터셋 불러오기 !pip install roboflow from roboflow import Roboflow rf = Roboflow(api_key="2RwhYgW2noUchmxaFzwL") project = rf.workspace("yolostudy-vc24r").project("chin_detect-cp7kt").. 2023. 7. 7.