'튜토리얼' 태그의 글 목록
본문 바로가기

튜토리얼3

SQL 기초 - SELECT, DISTINCT, WHERE 자습서를 보고 요약해보았음. https://www.1keydata.com/kr/sql/sql-where.php 예제로 사용할 도표 Store_Information 도표 Store_Name Sales Txn_Date Los Angeles 1500 05-Jan-1999 San Diego 250 07-Jan-1999 Los Angeles 300 08-Jan-1999 Boston 700 08-Jan-1999 [SELECT]: 표에서 스토어이름만 조회해줘 SELECT "필드명" FROM "도표명"; Code: 표 중에서 스토어이름만 조회해줘 SELECT Store_Name FROM Store_Information; Output Store_Name Los Angeles San Diego Los Angeles Bos.. 2021. 10. 6.
Github 깃헙 사용 치트시트(Cheetsheets) 치트시트 git init git remote add origin https://~~~~깃헙주소 git pull origin master git commit -m "message입력" git push origin +master # 부가사항 체크용 git status git add. git commit -m "message입력" ==================================================================== 기본설치단계 1. GitBash 설치 https://gitforwindows.org/ (windows) 2. Github New repository 생성 github.com/new 실제 사용단계 로컬폴더(새폴더) 생성 - 마우스 우클릭 - git bash 클릭 .. 2020. 10. 2.
텐서플로우 Object detection 코드포함 (Tensorflow object detection: FasterRCNN+InceptionResNet &ssd+mobilenet) 코랩(Colab)상에서 텐서플로우(Tensorflow)로 Object Detection 하기 예제코드 입니다. 텐서플로우 2.1.0버젼 다운 및 함수호출 ▶ tensorflow 2.1.0. 설치 !pip install tensorflow==2.1.0 ▶ TF-Hub module 가져오기 import tensorflow as tf import tensorflow_hub as hub ▶ 이미지 다운로드/도식화를 위한 라이브러리 가져오기 import matplotlib.pyplot as plt import tempfile from six.moves.urllib.request import urlopen from six import BytesIO ▶ 이미지 상에 그리기 모듈 가져오기 import numpy as .. 2020. 3. 12.