전체 글52 Small Dataset (cf. Convolutional Neural Network) Kaggle Computer Vision Competition Dogs : 12500, Cats : 12500 25000건의 데이터 중 일부 데이터를 추출하여 학습 - Train Data : 2000개(Dog:1000, Cat:1000) - Valid Data : 1000개(Dog:500, Cat:500) - Test Data : 1000개(Dog:500, Cat:500) 문제점 1. X만 있어서 어떤게 고양이고 어떤게 강아지인지 알 수 없음. 2. Input Data의 크기가 다 다름. 사실은 데이터 전처리(라벨링)가 되어 있음. Dogs and Cats라는 디렉토리에서 꺼내면서 y값을 0과 1로 붙여줌. Labels Batch가 y값인데, 20개로 뽑힘. Image Augmentation 이미지 증강.. 2023. 1. 30. docker container commit 실습하기 terminal 2 # watch -n 0.5 docker container ps -a # docker run -it --name sample ubuntu root@ee47b4045c72:/# apt-get update root@ee47b4045c72:/# apt-get install -y nginx root@ee47b4045c72:/# CTRL+PQ # echo Hello world > index.html # docker container cp index.html sample:/var/www/html/index.html # docker container commit -a "Yu Mi" -m "Customized image" sample takytaky/web-nginx --> takytaky 실제 개인.. 2023. 1. 27. mariadb 구성하기 # apt-get update # apt-get install mariadb-server # systemctl status mariadb # ps -ef |grep mysql mysql 42298 1 0 17:05 ? 00:00:02 /usr/sbin/mysqld # mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 36 Server version: 10.3.37-MariaDB-0ubuntu0.20.04.1 Ubuntu 20.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h.. 2023. 1. 27. dpkg 를 사용해서 패키지 설치하기 # pwd /tmp # apt-get download sendmail # dpkg -i sendmail_8.15.2-18_all.deb --> 의존성 문제로 오류 발생 # dpkg -r sendmail # apt-get download vsftpd # ls vsftpd_3.0.3-12_amd64.deb # dpkg -i vsftpd_3.0.3-12_amd64.deb Selecting previously unselected package vsftpd. (데이터베이스 읽는중 ...현재 185615개의 파일과 디렉터리가 설치되어 있습니다.) Preparing to unpack vsftpd_3.0.3-12_amd64.deb ... Unpacking vsftpd (3.0.3-12) ... vsftpd (3.0.3.. 2023. 1. 27. 이전 1 2 3 4 5 6 ··· 13 다음