Home
Syshin
Cancel

깃 블로그 생성

Intro: 포트폴리오용 웹페이지를 만들 겸, 기존에 쓰던 깃 블로그와 합쳐 새로 만들려고 한다 기존 theme: cotes2020/jekyll-theme-chirpy 리뉴얼 theme: chemistryx/hyde 진행 방식: chemistry/hyde theme 다운로드 기본 설정 추가 customizing 기존 블로...

Docker

Table of Contents What and Why of Docker? What is Docker? What problems does it solve? Softwarer Development before and after Docker Software Deployment before and ...

ZoeDepth

ZoeDepth: Zero-shot Transfer by Combining Relative and Metric Depth paper: https://arxiv.org/pdf/2302.12288.pdf github: https://github.com/isl-org/ZoeDepth 요약 결합된 접근 방식: 상대적 깊이와 메트릭 깊이 추...

Git Blog Themes

Intro: 깃 블로그 템플릿 선정하기 전 마음에 드는 템플릿 정리 Templates: morethan-log hyde 확인용 https://github.com/topics/developer-portfolio-template Jekyll 기반의 GitHub Page 생성 https://www.youtube.com/watch?v=2ClW...

MiDas v3

Intro: Men in Black(도로 교통 법규 위반 차량 자동 탐지 & 구분) 프로젝트 중 다양한 물체와 블랙박스 차량간의 거리를 구하기 위해 방법을 찾던 중 MiDas를 참고하고자 정리해보았다. paper: https://arxiv.org/abs/2307.14460 github: https://github.com/i...

Monocular depth estimation

Monocular Depth Estimation https://paperswithcode.com/task/monocular-depth-estimation MiDaS v3.1 paper: https://arxiv.org/abs/2307.14460 github: https://github.com/isl-org/MiDaS y...

빅분기-실기-3유형

3 유형 내용 1. 가설검정 모평균 검정 모집단 1개 모집단 2개 모집단 3개 이상 정규성/등분산성 검정 카이제곱 검정 적합성 검정 독립성 검정 2. 상관분석 피어슨 상관계수 3. 회귀분석 다중 선형 회귀 로지스틱 회귀 1. 가설검정 “~할 것이...

빅분기-실기-2유형

2 유형 분석 순서 라이브러리 및 데이터 확인 데이터 탐색(EDA) 데이터타입, 결측치, 기초통계량 등 데이터 전처리 및 분리 결측치/이상치: 대체 or 삭제 변수처리 모델링 및 성능 평가 분류: RandomForestClassifier...

Transformers 실습

import numpy as np import matplotlib.pyplot as plt import tensorflow as tf tf.__version__ '2.14.0' # 최종 버전 class PositionalEncoding(tf.keras.layers.Layer): def __init__(self, position, d_mo...

Transformers

Intro: Attention Function Q = Query: t 시점의 디코더 셀에서의 은닉 상태 현재 처리하고 있는 단어나 문장 부분 K = Key: 모든 시점의 인코더 셀의 은닉 상태들 비교 대상이 되는 데이터 세트에서의 요소들 V = Values : 모든 시점...