본문 바로가기
728x90

전체 글364

파이썬 기반 인공지능 기초 introduction_to_machine_learning.ipynb https://colab.research.google.com/notebooks/intro.ipynb Google Colaboratory colab.research.google.com machine learning 기존 - 함수위주 machine learing - 데이타위주 Linear regression 기존의 프로그램 방식: 입력과 출력에 대한 함수를 사용자가 만듬 import numpy as np // 다차원배열 패키지 import pandas as pd // 데이터를 다루는 패키지 import matplotlib.pyplot as plt // 그래프 그려주는 패키지 def celsius_to_faherengeit(x): retur.. 2020. 6. 6.
블록과 함께하는 파이썬 딥러닝 케라스 conda create -n deep python=3.7 conda activate deep pip install tensorflow==2.0 인공지능 > 머신러닝 > 딥러닝 기계학습 기존의 코딩 -> 조건을 라인바이라인으로 긴 코드로 써내려 가는 일 앞으로의 코딩 -> 조건을 학습 도델의 여러 가중치로 변환하는 일 머신러닝 -> 가르쳐주는 학습 -> 분류, 회귀 -> 자율학습 -> 군집 지도학습 - KNN ( k Nearest Neighbors ) : 최근접 이웃 알고리즘 ======================================= import random import numpy as np r=[] # 여자 1 b=[] # 남자 0 for i in range(50): r.append([ran.. 2020. 5. 30.
hash-based message authentication code https://ko.wikipedia.org/wiki/%EB%A9%94%EC%8B%9C%EC%A7%80_%EC%9D%B8%EC%A6%9D_%EC%BD%94%EB%93%9C 메시지 인증 코드 - 위키백과, 우리 모두의 백과사전 위키백과, 우리 모두의 백과사전. ko.wikipedia.org 출처: https://hanee24.github.io/2018/04/22/hmac-authentication/ HMAC 인증이란? - REST API의 보안 안녕하세요! HMAC 인증 이라는게 참 처음접하면 이게 어떤 원리로 동작하는건지 혼란스러운데, 찾아보니 영어로는 쉽게 잘 설명해주는 글들이 많은데 한국어로는 쉬운 설명이 정말 거의 없더라구요. 그래서 제가 하나 적어보기로 했습니다. HMAC을… hanee24.git.. 2020. 2. 24.
yum install Transaction check error Transaction check error: file /usr/share/mysql/charsets/Index.xml from install of MariaDB-common-10.1.40-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.6.40-2.el7.x86_64 [root@localhost ~]# yum shell > remove mysql-community-common > install MariaDB-common > run https://webinformation.tistory.com/86 yum 패키지 설치 및 업데이트 시 "Transaction Check Error:" 해결방법 에러가 발생된 상황 저 같.. 2019. 5. 29.
javascript 내 함수 파라미터 전달 1. $("#selectbox").append(""+map.list[i]+"'"); 2. $("#selectbox").append("+map.list[i]+"')'>"+map.list[i]+"'"); 3. $("#selectbox").append(""+map.list[i]+"'"); 출처: https://mingggu.tistory.com/93 동적 엘리먼트 생성 시 함수 인자 따옴표 (따옴표 안에 따옴표 안에 따옴표) 따옴표 안에 따옴표를 넣는게 헷갈릴 때가 많다. 기존에 하던 방식대로 했는데도 안될 때도 있고... 아래 세가지 방법중 하나가 걸리길..! 1. $("#selectbox").append(" 2019. 5. 24.
redmine wbs plugins migrate redmine wbs plugins migrate https://bitnami.com/ 설치 https://www.redmine.org/plugins/wbs-plugin 다운로드 c:\Bitnami\redmine-{버전}\apps\redmine\htdocs\plugins -> easy_mindmup -> easy_wbs 시작->실행->bitnami redmine stack-> run bitnami redmine stack -> redmine 커멘드 창 실행 bundle exec rake redmine:plugins RAILS_ENV=production -> redmine plugins 설치 bundle exec rake db:migrate RAILS_ENV=production -> wbs plugins .. 2019. 5. 14.
Qt 컴파일 후 의존성 파일 일괄 배포하기 Qt 컴파일 후 의존성 파일 일괄 배포하기 1. Projects -> Build & Run 활성화 된 내역 확인 (Ex) Desktop Qt 5.12.2 MinGW 32-bit 활성화 2. 시작 -> Qt -> Qt 5.12.2 (MinGW 7.3.0 32bit) 커멘드창 실행 3. Release 후 만들어진 exe 파일을 별도 디렉토리에 복사 4. windeployqt.exe 복사한 디렉토리 경로\exe 파일명 2019. 5. 8.
openstack, DevStack openstack, DevStack https://www.virtualbox.orghttps://www.ubuntu.com/download/serverhttp://mirror.kakao.com/ubuntu-releases/16.04.5/https://docs.openstack.org/devstack/latest/ $ sudo useradd -s /bin/bash -d /opt/stack -m stack$ echo "stack ALL=(ALL) NOPASSWOD: ALL" | sudo tee /etc/sudoers.d/stack$ sudo su - stack $ git clone https://git.openstack.org/openstack -dev/devstack$ cd devstack $ vi loc.. 2018. 12. 27.
도커 / docker 도커 / docker A. 도커 설치 http://docker.com Product -> download docker CE(community Edtion) 도커 이미지 검색docker serarch ubuntu 우분투 이미지 다운로드docker pull ubuntu 이미지 리스트 출력docker images 컨테이너 실행docker run -it --name=ubuntu ubuntudocker ps -a 컨테이너 접속docker attach ubuntudocker exec -it ubuntu bash 컨테이너 정지하지 않고 나옴ctrl+P+Q B. 도커 기본 명령어 도커 컨테이너 리스트docker ps -a 도커 컨테이너 정지docker stop ubuntu 도커 컨테이너 재시작docker restart.. 2018. 12. 26.
728x90