분류 전체보기 477

Deep learning 기초 정리 | 퍼셉트론, 신경망, 3차신경망 학습, 오차역전파법 등

review 딥러닝 기초 index https://dbrang.tistory.com/1537 퍼셉트론 신경망 신경망 학습 오차역전파법 학습 관련 기술들 1. 퍼셉트론 https://wikidocs.net/24958 퍼셉트론이란? 퍼셉트론 perceptron은 프랑크 로젠블라크가 1957년에 제안한 초기 형태의 인공신경망이다. 이 알고리즘은 신경 세포 뉴런의 동작을 모방하였다. 즉, 신경세포 뉴런이 가지돌기에서 '신호'를 받아, 이 신호의 크기가 '임계값'을 넘으면 축삭돌기를 통해 신호를 내보내는 것처럼, 다수의 신호를 받아 가중치를 부여한 뒤에 신호의 합이 임계치보다 크면 하나의 신호를 출력한다. 위 사진에서 x1, x2는 입력값, w1, w2는 가중치, y는 출력값에 해당한다. 가중치가 축삭돌기의 역할..

Data Science/AI 2021.09.24

linux terminal 상대 경로로 출력하기 | 아모르것다

\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ 이게 무슨 말이지;; bash 프롬프트에서 사용할 수 있는 옵션은 다음과 같다. \t 현재 시간을 HH:MM:SS 형식으로 보여준다. \d 날자를 "요일 월 일" 형식으로 보여준다. Tue Jan 23 \s 쉘의 이름을 보여준다. \w 현재 작업디렉토리를 완전경로로 보여준다. \W 현재 작업디렉토리의 이름을 보여준다. \u 현재 사용자의 사용자명 \h 호스트만 \H 호스트이름전체 \# 현재 명령의 명령 번호 \$ root이면 #, 일반사용자이면 $ \e \u \h \w : 전체 경로 출력 \a ..

Computer Science 2021.09.23

아빠랑 코딩 토크 | 그래픽스, python venv, bash shell script, 성장 방식

1. 그래픽스 - graphics 기초 Mesh Vertex Face Edge f(shape) ~= Mash Modeling Tools : AutoDesk 3DS, Max, Maya, Blender(open source) - graphics 영역 1) 애님 (Animation) - Bone (Skeletal) Pos, 회전, 크기 (R, T, S)를 아핀 공간(Affine)에 표현한다고 함. 이건 뭔가.. 위치를 계산하는데 행렬을 쓰나보다. 차이 시점 + 종점으로 주어진 공간 bone = Mroot를 root로 해서 부모, 자식 노드 관계로 bone 구성함 그리고 시간을 keyframe으로 해서 위치 계산 Quaternion = 3차원 회전 복소수를 이용해서 4차원 표현?? q1 = (x,y,z,w)으로..

Computer Science 2021.09.21

Python 3D graphics tutorial in Vpython | TopTechBoy

https://www.youtube.com/watch?v=03ysGfNO-G8&list=PLGs0VKk2DiYzGCOzBrMNSWEdd2CIGC0kJ&index=2 -> 토마토에 필요한 요소 : 비율 조정한 구(타원형 구) 몇 개 / 색깔 조정 / 표정 / 막대기 등 + 여러 개 같이 움직이게 만들기 0. vpython # visual python #what is v python? #v python is a library # that runs under python and # it allows us to do all the cool 3d simulations and graphics 1. 설치 pip install vpython 2. 3d simulations and graphics hello world ..

카테고리 없음 2021.09.19

Panda3D 3D graphics using python | installation & basic tutorials | 작성 중

index what is Panda3D? showbase environment control camera load/animate model move forward so what is Panda3D? Panda3D is a 3D engine: a library of subroutines for 3D rendering and game development. The library is C++ with a set of Python bindings. Game development with Panda3D usually consists of writing a Python or C++ program that controls the Panda3D library. Panda3D was created for commerci..

Computer Science 2021.09.19

3D computer graphics introduction | CrashCourse

참고 https://www.youtube.com/watch?v=TEAtmCYYKZA index 기본 개념 3D projection Wireframe rendering orthographic projection perspective projection scanline rendering anti-aliasing painter's algorithm z-buffering(?) back-face culling flat shading gouraund shading phong shading texture mapping GPU 3D projection 3D 공간에서 점은 3개의 좌표를 갖는다. (x,y,z) 그래픽 알고리즘은 3차원 좌표를 2차원 화면에 '평평하게' 만들어 표현해야 한다. rendering 2차원 화면..

Computer Science 2021.09.18

What is Spark Streaming? | RDD, SparkStreaming, DStream, Sparkconfig | 작성 중

스트리밍 도래 지금까지의 데이터 중 90퍼 이상이 최근 2년(2018) → 현재는 더 많음 자는 시간 빼면 하루종일 인터넷 사용 빠른 의사 결정 위한 실시간 처리 람다 vs 카파 단위별 배치분석, 스트리밍 솔루션으로 실시간 처리 후 반영 하나의 플로우, 클라이언트가 요청했을 때 배치처럼도 접근, 관리 효율 https://luminousmen.com/post/modern-big-data-architectures-lambda-kappa https://en.paradigmadigital.com/dev/from-lambda-to-kappa-evolution-of-big-data-architectures/ 네이티브 스트리밍 vs 마이크로배치 - 차이 언급 필요 네이티브 : 스톰-트리덴트, 스톰, 플링크, 카프카,..

Data Science/AI 2021.09.16

LeetCode 209. Minimum Size Subarray Sum | python | Two pointer

https://leetcode.com/problems/minimum-size-subarray-sum/submissions/ Minimum Size Subarray Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com #타겟 넘버를 만족시키는 subarray num을 찾아라 #모두 positive array #s = 7, [3,4,2,1,3,2] #O(n)으로 해결한다면? #sliding 개념 + 모두 양수임을 활용하면 풀 수 있음 """포인터 start와 e..