일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Nav2 document
- ros2 튜토리얼
- CodeUp
- nav2 tutorial
- ros2 foxy docker
- ros2 foxy tutorial
- docker foxy
- ros2 remapping
- CODEUP 6073
- nav2 dev contatiner
- humble 환경설정
- ros2 development guides
- development guides
- ROS FOXY 튜토리얼
- nav2 설치
- nav2 getting started
- nav2 development guides
- nav2 first-time robot setup guide
- ros2 configuring environment
- 코드업
- foxy nav2
- ros2 환경설정
- nav2 development guides
- first-time robot setup guide
- Foxy tutorial
- nav2 튜토리얼
- ros2 튜토리얼 환경설정
- Python
- humble development guides
- error
- Today
- Total
목록전체 글 (100)
BAN2ARU
Pascal dataset은 https://pjreddie.com/projects/pascal-voc-dataset-mirror/ 사이트를 활용하여 다운로드 받을 수 있으며, 압축을 풀고나면 다음과 같은 형식으로 데이터가 구성된 것을 확인할 수 있습니다. Pascal VOC Dataset Mirror Pascal VOC Dataset Mirror The Pascal VOC challenge is a very popular dataset for building and evaluating algorithms for image classification, object detection, and segmentation. However, the website goes down like all the time. I..
torch.is_tensor(obj ) obj가 PyTorch tensor라면 True를 return함 이 함수는 isinstance(obj, Tensor)을 수행하며, mypy를 통해 typechecking시에는 isinstance를 활용하는 편이 더 좋음 Parameters obj (Object) - test할 객체(object) Example >>> import torch >>> a = torch.tensor([1, 3, 5]) >>> torch.is_tensor(a) True >>> b = [1, 3, 5] >>> torch.is_tensor(b) False Reference https://pytorch.org/docs/stable/torch.html torch — PyTorch 1.11.0 do..
CUDA : 11.0 GPU : RTX 3060 1. Conda로 가상환경 설정 (YoloV5는 Python 3.7이상 지원) conda create -n yolov5 python=3.8 2. Pytorch 설치 (YoloV5는 Pytorch 1.7.0이상 지원) conda activate yolov5 conda install pytorch==1.7.0 torchvision==0.8.0 torchaudio==0.7.0 cudatoolkit=11.0 -c pytorch 3. Yolov5 repo 가져오기 및 필요 모듈 설치 git clone https://github.com/ultralytics/yolov5 cd yolov5 pip install -r requirements.txt - Demo : 제대로 ..
Vars([object])란? python의 기본 내장함수로서 모듈, 클래스, 클래스 인스턴스 객체(__dict__속성을 가지는 객체)에 대해 __dict__ (dictionary 형태)로 return해 주는 함수임. 만약 [object]를 선언하지 않으면 locals()처럼 동작되어 현재 지역 변수에 대해 __dict__(dictionary 형태)로 return함. Vars 함수 예제 class SellList: snack = 1000 ice_cream = 700 coke = 1200 candy = 1500 print(vars(SellList)) # 출력 화면 {'__module__': '__main__', 'snack': 1000, 'ice_cream': 700, 'coke': 1200, 'candy..
https://pytorch.org/get-started/previous-versions/ PyTorch An open source machine learning framework that accelerates the path from research prototyping to production deployment. pytorch.org 여기에서는 pytorch 1.7.0의 cuda 11.0 ver에 관해서 pip install torch==1.7.0+cu110 torchvision==0.8.0+cu110 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html 로 되어있지만 이 문구를 실행하면 ERROR: No matching d..
cython-bbox를 단순히 pip install 명령어로 사용하면 윈도우에서 오류가 발생하는 것으로 보인다. 이를 해결하기 위해 github 파일을 받는 방식으로 활용하였음. git clone https://github.com/samson-wang/cython_bbox cd cython_bbox pip install -e ./
conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1 -c pytorch 로 anaconda로 설치시 conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1 -c pytorch PackagesNotFoundError: The following packages are not available from current channels: - cudatoolkit=11.1 Current channels: - https://conda.anaconda.org/pytorch/win-64 - https://conda.anaconda.o..
https://www.acmicpc.net/problem/2438 2438번: 별 찍기 - 1 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제 www.acmicpc.net 풀이 import sys N = int(sys.stdin.readline()) for i in range(1, N+1): print("*"*i) 문자열에 정수를 곱하면 그 정수만큼 문자열이 반복되어짐. 이 원리를 활용하여 "*"라는 문자열을 i번만큼 반복하라는 의미임!