일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 개발흐름
- 기능과 역할
- Git
- DOTA dataset
- DACON
- TensorFlow Object Detection 사용예시
- Branch 활용 개발
- AI Security
- 논문 분석
- paper review
- 객체 탐지
- TensorFlow Object Detection Model Build
- Custom Animation
- InstructPix2Pix
- 리눅스 빌드
- Paper Analysis
- 사회초년생 추천독서
- 크롤링
- 논문분석
- Towards Deep Learning Models Resistant to Adversarial Attacks
- CARLA simulator
- TensorFlow Object Detection API install
- Linux build
- Docker
- VOC 변환
- 커스텀 애니메이션 적용
- TensorFlow Object Detection Error
- Carla
- object detection
- Object Detection Dataset 생성
- Today
- Total
JSP's Deep learning
[CARLA Simulator] 클라이언트 개발 환경 세팅 본문
[CARLA] 클라이언트 개발자 환경세팅
Docker container image와 그 빌드 과정은 앞전의 글을 참고한다.
* CARLA 0.9.11 : https://jsp-coding.tistory.com/38
[CARLA Simulator] CARLA 0.9.11 Linux Build with docker
CARLA Simulator Linux Build on Ubuntu 20.04 using docker 본 환경구축 방법은 개발환경에 의존적이며 개발환경이 달라지면 예기치 못한 에러가 발생할 수 있다. * 개발환경 Local OS : Ubuntu 20.04 GPU : RTX 4080 NVIDIA
jsp-coding.tistory.com
* CARLA 0.9.13 : https://jsp-coding.tistory.com/42
[CARLA Simulator] CARLA 0.9.13 Linux Build with Docker on Ubuntu 20.04.05 LTS
* 메인 PC 사전준비 사항 NVIDIA-Docker 및 Docker Container Toolkit 설치 NVIDIA 그래픽 드라이버 및 CUDA, cuDNN 설치 (즉, GPU 사용가능 환경 구성) Vulkan SDK 환경 구성 (참고 : https://vulkan.lunarg.com/doc/view/latest/linux/
jsp-coding.tistory.com
* CARLA 0.9.14 : https://jsp-coding.tistory.com/44
1. 패키지 설치
1) 파이토치 설치
pip3 install torch torchvision torchaudio
추후 딥러닝 모델 적용을 위함
2) 기타 패키지 설치
- 주피터 노트북 설치 및 접속
# 1. 설치
pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
sudo pip3 uninstall notebook
sudo pip3 install --upgrade notebook
# 2. 접속 - 백그라운드
nohup jupyter notebook --ip=0.0.0.0 --port=8888 --allow-root --NotebookApp.token='' &
# 3. 접속 주소
localhost:8888
- OpenCV 설치
pip3 install opencv-python
- pascal_voc_writer 설치
pip3 install pascal_voc_writer
'Etc > CARLA Simulator' 카테고리의 다른 글
[CARLA Simulator] Instance Segmentation Sensor 사용법 (0) | 2023.03.21 |
---|---|
[CARLA Simulator] 커스텀 애니메이션 적용 (0) | 2023.03.21 |
[CARLA Simulator] CARLA 0.9.14 Linux Build with Docker on Ubuntu 20.04.05 LTS (0) | 2023.02.18 |
[CARLA Simulator] CARLA 0.9.13 Linux Build with Docker on Ubuntu 20.04.05 LTS (2) | 2023.02.18 |
[CARLA Simulator] CARLA 0.9.11 Linux Build with Docker on Ubuntu 20.04.05 LTS (0) | 2023.02.02 |