반응형

분류 전체보기 487

청년 일자리 관련 사이트 모음

청년 일자리 관련 여러 사이트 서울 일자리 포털 일자리 전문 포털 사이트. 창업정보, 공공일자리, 서울형뉴딜일자리, 우수 기업정보 등 다양한 서비스를 만날 수 있다. 일자리 카페, 취업날개서비스(정장무료대여), 뉴딜일자리, 멘토스쿨 등이 대표 서비스. 서울일자리포털 https://job.seoul.go.kr/Main.do?method=getMain 서울일자리포털 job.seoul.go.kr 취업날개서비스 https://job.seoul.go.kr/www/add_service/openChothesChest.do?method=selectOpenChothesChest 취업날개서비스 --> 일자리 서비스 청년취업에 날개를 달다 취업날개 서울시가 취업준비청년들에게 면접용 정..

unable to display MLflow UI... -> mlruns 폴더가 있는 경로에서 하자.

명렁어 mlflow ui를 실행 하지만 localhost:5000에 접속하니.. Unable to display MLflow UI - landing page (index.html) not found. You are very likely running the MLflow server using a source installation of the Python MLflow package. If you are a developer making MLflow source code changes and intentionally running a source installation of MLflow, you can view the UI by running the Javascript dev server: https://..

맥 mac에서 도커 에러.. Cannot connect to the Docker daemon - 어플리케이션 키자

(base) ➜ ~ docker ps Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 리눅스에서는 systemctl 명령어로 start docker 하면 된다고 하는데 MAC에서 이 에러를 도커 앱을 켜서 하면 된다. 어플리케이션에 도커 데스크톱을 킨다. 상단에 도커 컨테이너 아이콘이 나타난다. 그리고 다시 치면 아래처럼 명령어가 바뀐다. (base) ➜ ~ docker ps Error response fr..

명령어 등등 2022.02.15

torch.range is deprecated warning -> torch.arange

/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:7: UserWarning: torch.range is deprecated and will be removed in a future release because its behavior is inconsistent with Python's range builtin. Instead, use torch.arange, which produces values in [start, end). pytorch의 range 함수는 파이썬의 range함수와 동작이 달라 제거될 예정입니다. 따라서 torch.arange함수를 사용해주세요. 실제로 range함수는 torch.range(0,10)을 하면 tensor([ ..

텐서 함수 조금 정리. 생성, 타입, select, cat, stack

각종 텐서 다루는 함수 정리 참고한 문서들 http://www.gisdeveloper.co.kr/?p=8392 잘 정리되어있음 추천!! # 텐서 생성 1. torch.rand(2,3) 그냥 난수 값으로 2*3 텐서 생성 2. torch.randn(2,3) 정규분포 따른 난수 값 3. torch.randint(0,10,size=(2,3)) 정수값으로 이루어진 난수값 4. torch.zeros(2,3) 5. torch.zeros_like(other_tensor) 6. torch.ones_like(other_tensor) # 텐서 타입 1. tf.type() # torch.FloatTensor 2. type(tf) # 3. tf.type(dtype=torch.IntTensor) int type으로 타입을 변경..

TIL 2022-01-24(월) pytorch basics

#부스트캠프3기 #TIL Today I Learned Date : 20220124(월) □ Facts PyTorch Numpy + AutoGrad + Function Numpy 구조를 가지는 Tensor 객체로 array 표현 자동미분을 지원하여 DL 연산을 지원 다양한 형태의 DL을 지원하는 함수와 모델을 지원함 Dataset, Multi-GPU .... 지금 표준은 파이토치와 텐서플로 두 개다. 케라스 자체가 연산 지원하기 보다 이러한 다른 언어를 쉽게 쓸 수 있게 함 케라스는 텐서플로 사에 흡수되었다. 파이토치와 텐서플로 가장 큰 차이는 그래프 그리는 점 하나는 스태틱 -> 백프로포게이션 파이토치는 실행 시점에서 그래프를 그린다. 자동미분 실행시점에서 그래프를 그린다. squeeze, unsquee..

TIL 2022-01-21(금) cnn, rnn

#부스트캠프3기 #TIL Today I Learned Date : 2022-01-21(금) □ Facts 이 커널을 한 번씩 옮기면서 계산해보자 여러분이 관찰 할 것은 입력만 변하고 커널은 그대로인 것 그러면 25가 나옴 입력크기를 (H, W) 커널 크기를 (Kh Kw)라 했을 때 출력 크기는 (Oh Ow) 라 ㅎ하면 다음과 같이 계산 Oh = H - Kh + 1 Ow = W - Kw + 1 가령 28 & 28 입력은 3x3 커널로 연산하면 26x26이 나온다. □ Findings 연쇄법칙 풀기 z = (x + y) ^2 이 z를 둘로 쪼갤 수 있다. z = W^2 두 미분의 곱으로 z에 대한 x의 미분으로 계산하게 됨 각 뉴런에 해당하는 값을 텐서(tensor)라고 부른다. 각 텐서는 메모리에 저장이 ..

pytorch의 reshape and view 차이 (+ contiguity 문제)

https://discuss.pytorch.org/t/in-pytorch-0-4-is-it-recommended-to-use-reshape-than-view-when-it-is-possible/17034 In PyTorch 0.4, is it recommended to use `reshape` than `view` when it is possible? In PyTorch 0.4, is it generally recommended to use Tensor.reshape() than Tensor.view() when it is possible ? And to be consistent, same with Tensor.shape and Tensor.size() discuss.pytorch.org Tensor.s..

[Week02] Pytorch - 3강 Pytorch 기본 환경 세팅 : colab에서 ssh 연결해 vscode 실행하기

# Pytorch Project Template [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/BoostcampAITech/lecture-note-python-basics-for-ai/blob/main/codes/pytorch/07_torch-study/pytorch_project.ipynb) !pip3 install torch !pip3 install torchvision from google.colab import drive drive.mount('/content/drive') !git clone https://github.com/vict..

반응형