목록File (3)
IT_World
도커 설치(curl이 없을 경우 sudo apt-get curl) curl -s https://get.docker.com | sudo sh 설치확인 docekr -v docker centos Registry Pull docker pull centos 이미지 이름은 :을 구분자로 이미지 이름과 태그로 구분된다. 태그를 지정하지 않으면 기본값으로 latest가 사용되므로 centos는 centos:latest와 같다. 이미지를 다운로드할 때 : pull (install이나 download와 같은 명령 대신 pull 사용) 이미지를 업로드 할 때 : push 새로운 이미지 생성 : commit 이미지의 차이 확인 : diff 다운 받은 이미지 확인 더보기 $ docker images REPOSITORY TAG..
넘 파이와 판 다스를 이용하여 주가 예측을 해볼 것이다. npy와 npz는 에서 지원하는 바이너리 파일이다. Numpy에서 지원하는 .npy는 1개의 ndarray를 저장하고 . npz는 2개 이상의 ndarray를 저장하는 데 사용된다. import numpy as np import pandas as pd csv_file = pd.read_csv('./csv_file.csv', header=0, index_col=0, encoding='CP949',sep=',' ) name_file = pd.read_csv('./name_file.csv', header=0, index_col=0, encoding='CP949', sep=',' ) # csv_file 거래량 for i in range(len(csv_fi..
1. 특정 이미지 한 장 사이즈 조정하기 특정 이미지 한 장 사이즈 조정은 간단하다. from wand.image import Image import os #사이즈 변경할 이미지 resize_image = Image(filename ='/home/original/train01.jpg') resize_image.sample(192,192) #사이즈 변경 함수, sample과 resize가 존재 #resize_image.resize((int(200), int(200))) #resize로 변경해도 된다. #리사이즈한 이미지 파일을 resize_image에 저장 resize_image.save(filename='/home/resize/test01.jpg') 2. directory image resize 이번에는..