반응형

Boostcamp AI tech 3기 41

2. object detection and metrics

https://www.boostcourse.org/ai341/lecture/1466824?isDesc=false 2. Object Detection 2.1. Computer Vision Classification : 사진이 주어졌을 때 무엇인지 예측하는 태스크 Object Detection : 이미지 속에서 객체를 식별해내는 태스크. 객체가 어디에 있는 지 찾고, 해당 객체가 무엇인지 식별하는 것 Semantic Segmentation : 객체의 영역을 구분하는 태스크, 같은 클래스를 갖는 객체끼리는 구분이 없음 Instance Segmentation : 객체의 영역을 구분하는 태스크, 같은 클래스의 객체 역시 구분함 2.2. Real World Semantic Segmentation + Object D..

kaggle 등에서 gpu 확실하게 사용하기 코드 gpu options

import numpy as np import pandas as pd import os from sklearn.model_selection import train_test_split from sklearn.metrics import confusion_matrix, accuracy_score import tensorflow as tf from tensorflow.compat.v1 import ConfigProto from tensorflow.compat.v1 import InteractiveSession config = ConfigProto() config.gpu_options.allow_growth = True session = InteractiveSession(config=config) gpu 할당하고..

[부스트캠프 AI Tech 3기] 비전공자가 경험한 부캠 후기

부스트캠프 AI Tech - 부스트캠프 AI Tech란 네이버 커넥트재단과 업스테이지가 함께 AI 기초를 배울 수 있는 6개월 AI Engineer 양성 프로그램입니다. - 2021년부터 시작되어 2022년 상반기에 3기가 마무리되었고 6월 20일부터 4기 모집을 진행하고 있습니다. 모집 안내 - 부스트캠프 3기(이하 부캠)는 크게 3가지 트랙(컴퓨터 비전, 자연어 처리, 추천 시스템)으로 나누어 교육을 제공했습니다. (3기 모집 비율은 19:11:16 정도) 부스트캠프 들어오기 전 저의 상황 - 저는 행정/법을 배운 비전공자로 다른 프로그램에서 코딩 공부를 하다가 부캠에 지원하게 되었습니다. - 인공지능은 Andrew Ng 강의 스터디, 인프런에서 제공하는 tensorflow강의에서만 접했고, 실제 프..

Faceboxes errors : OSError: The nvcc binary could not be located in your $PATH. Either add it to your path, or set $CUDAHOME

image process complete! Namespace(image_dir='../data/dest_images/kakao/kakao1.jpeg', save_name='output.jpg') (bc) root@baa303cde5d2:~/input/detection_comp_exp# cd ../FaceBoxes.PyTorch/ (bc) root@baa303cde5d2:~/input/FaceBoxes.PyTorch# ls LICENSE README.md data layers make.sh models test.py train.py utils weights (bc) root@baa303cde5d2:~/input/FaceBoxes.PyTorch# python test.py Traceback (most rec..

streamlit error : raise OSError(errno.ENOSPC, "inotify watch limit reached")OSError: [Errno 28] inotify watch limit reached 해결방법

streamlit 실행시키면서 아래와 같은 에러가 나타났다. (bc) root@50907c89e3bc:~/input/final-project-level3-cv-11/fastapi# streamlit run app/frontend.py --server.port 30001 Traceback (most recent call last): File "/opt/ml/anaconda3/envs/bc/bin/streamlit", line 8, in sys.exit(main()) File "/opt/ml/anaconda3/envs/bc/lib/python3.8/site-packages/click/core.py", line 829, in __call__ return self.main(*args, **kwargs) File..

Runtime Error : Legacy autograd function with non-static forward method is deprecated - ssd 코드 보면서 생긴 에러

Runtime Error : Legacy autograd function with non-static forward method is deprecated and will be removed in 1.3. Please use new-style autograd function with static forward method. (Example: https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function) 실행 도중 코드에서 쓰고 있는 autograd가 너무 오래된 버전이라 새 autograd와 forward 형식을 쓰라고 계속 에러가 떴다. 밑에 답변을 보고 해결할 수 있었음 https://github.com/amdegroot/ssd.pytor..

cannot import name '_registerMatType' from 'cv2.cv2'

pytorchvision, pytorch 버전 맞추기 https://stackoverflow.com/questions/70537488/cannot-import-name-registermattype-from-cv2-cv2 cannot import name '_registerMatType' from 'cv2.cv2' I got below error message when I run model_main_tf2.py on Object Detection API: Traceback (most recent call last): File "/content/models/research/object_detection/model_main_tf2.py", li... stackoverflow.com 만약 두 라이브러리 open..

반응형