nvidia-smi 명령어로 드라이버 설치가 완료되었다는 가정 하에 진행 https://sseongju1.tistory.com/16 [Docker] nvidia-docker2 설치하기 (Ubuntu 20.04) 1. Setting Up Docker (이미 도커가 설치 되어있는경우 이 과정을 Skip하자!!!!) $ curl https://get.docker.com | sh \ && sudo systemctl --now enable docker % Total % Received % Xferd Aver.. sseongju1.tistory.com 위 링크를 참고하여 nvidia-docker 설치 후 테스트까지 완료 nvidia-smi 입력 시 우측 상단에 cuda version에 맞는 이미지(저는 11.4였습..
전체 글
내공냠냠docker 사용하여 ubuntu로 돌려보기로 합니다. docker 생성 docker pull ubuntu docker run -itd --name insightface(컨테이너명) ubuntu:latest # 생성 동시 실행 docker exec -it insightface bash # 접속 # exit # 종료 apt-get update && apt-get -y install sudo sudo apt-get install python-pip sudo apt-get install python3-pip pip install mxnet-cu100 sudo apt-get install git git clone --recursive https://github.com/deepinsight/insightface...
실행하려고 하다보니 설치가 안 된 부분이 있어 설치해주고 넘어갑니다. conda install scikit-learn conda install -c apple tensorflow-deps python -m pip install tensorflow-macos 하려고 했는데.. mac os x 12.3 을 위한 거라고 하네요. https://stackoverflow.com/questions/71174306/expected-in-usr-lib-libc-1-dylib-installing-tensorflow-on-m1-macbook-pro 'Expected in: /usr/lib/libc++.1.dylib': Installing Tensorflow on M1 MacBook Pro I am trying to ins..
install 아래 링크를 참고하여 pytorch 를 설치하였다. https://c-juhwan.github.io/posts/m1-pytorch-installation/ M1 맥에서 Pytorch 설치하기 - M1 Native 개요 c-juhwan.github.io setting 소스를 받는다. git clone --recursive https://github.com/deepinsight/insightface.git https://github.com/deepinsight/insightface/tree/master/recognition/_datasets_ 여기에 있는 MS1M-ArcFace 를 다운로드 받는다. GitHub - deepinsight/insightface: State-of-the-art 2D..
얼굴 인식 모델을 만들기 위해 insightface 에서 face recognition 부분의 arc-face 를 선택하여, train 부터 시켜보려고 한다. arc face 는 state of the art face recognition approach 라고 해서 선택하게 되었다. 최첨단 시대로 가봅시다. 네 가지가 있었다. 맘같아서 mxnet 을 하고 싶었다. 그런데 cuda 설치 부분에서 m1을 사용하고 있는 나로써는 설치가 가능하다는 것을 빨리 찾기가 어려웠고, pytorch 는 가능하다는 얘기를 찾은 것 같다. https://github.com/pytorch/pytorch/issues/47702#issuecomment-739442975 GPU acceleration for Apple's M1 c..
brew install opencv 로 설치 후 경로 잘 기억해놓고, xcode로 build settings의 header search path, library search path, other flags path 세 가지 설정해주고 설치 후 보여지는 pkg-config 관련 path 내에서 .pc 파일이 위치한 파일의 이름을 --libs 뒤에 붙이면 된다. 나는 opencv였다. 보여지는 텍스트를 복사 붙여넣기한다. pkg-config --cflags --libs opencv signing&Capabilities 의 disable library validation 체크 main.cpp #include #include int main(int argc, const char * argv[]) { // ins..
arch -arm64 lldb ./your-program References https://stackoverflow.com/questions/71194781/cannot-debug-executable-with-lldb-on-macos-m1-attach-failed-os-kern-invalid Cannot debug executable with lldb on macOS M1: attach failed ((os/kern) invalid argument I am trying to debug a C executable compiled for arm64 on an Apple M1 MacBook Pro, running macOS Monterey. However, when I try to run the program..
part 1 에 이어서 작성합니다. class _RandomWordsState extends State { final _suggestions = []; final _saved = {}; final _biggerFont = const TextStyle(fontSize: 18); void _pushSaved() { Navigator.of(context).push( MaterialPageRoute( builder: (context) { final tiles = _saved.map( (pair) { return ListTile( title: Text( pair.asPascalCase, style: _biggerFont, ), ); }, ); final divided = tiles.isNotEmpty ? List..