ISSUE

    [Github] White arrow on directory icon

    참고 블로그 https://stackoverflow.com/questions/62056294/github-folders-have-a-white-arrow-on-them stackoverflow.com/questions/21381530/cannot-remove-submodule-from-git-repo Problem Github의 레퍼지토리 폴더 아이콘에 흰색 화살표가 뜨고, 클릭이 되지 않는 현상 Solution cash clear git rm --cached 하위폴더 git commit -m "remove sub entry" git push origin master

    [Tistory] 본문 영역을 벗어나는 글자가 있을 때

    [Tistory] 본문 영역을 벗어나는 글자가 있을 때

    Error Tistory를 사용하다보면 글이나 링크(url)가 본문 영역을 벗어나는 현상을 접하게 됩니다. 본문 영역을 너무 벗어나버리는... 링크.. Solution 티스토리 관리 화면에서 스킨 편집 메뉴를 선택합니다. 우측 상단의 html 편집을 선택합니다. CSS를 우측 상단 카테고리 중에서 선택합니다. (디자인적인 측면을 고려할때는 CSS!) 본문 그리드를 벗어나지 않고 싶은 대상에 아래와 같은 구문을 추가합니다. word-wrap:break-word; 해당 부분은 사용하는 스킨마다 차이가 있습니다. Poster 스킨을 사용 중이기 때문에 Entry Content에서 link가 사용하는 a에 아래와 같은 구문을 추가했습니다. 해결!

    [Matplotlib] ValueError: zero-size array to reduction operation minimum which has no identity

    Error ValueError: zero-size array to reduction operation minimum which has no identity 이미지를 crop하거나, resize해준 뒤에 이미지에 알맞은 좌표값을 주지 않았을 때 발생합니다. Solution 이미지 크기 범위 안에서 좌표값을 설정해줍니다. 그리고 이미지 Shape을 확인합니다. 이미지 좌표값과 Height, Width에 맞게 이미지를 slicing해줬는지 확인합니다. 이외 다른 원인으로는 라이브러리의 특정 버전 문제일 수 있습니다. !pip install matplotlib==3.3.0 참고 블로그: https://www.inflearn.com/questions/57166

    [Tensorflow] ResourceExhaustedError: OOM when allocating tensor with shape[9,9,224,256] and type float on /job:localhost/replica:0/task:0/device:GPU:0 by allocator GPU_0_bfc [Op:Fill]

    Error ResourceExhaustedError: OOM when allocating tensor with shape[9,9,224,256] and type float on /job:localhost/replica:0/task:0/device:GPU:0 by allocator GPU_0_bfc [Op:Fill] Solution Out of Memory 때문에 있는 현상입니다. GPU 메모리가 다른 작업에 이미 모두 할당된 상태인 경우에 해당합니다. 참고 링크: https://github.com/tensorflow/tensorflow/issues/16768

    [Tensorflow]CUDA runtime implicit initialization on GPU:0 failed. Status: all CUDA-capable devices are busy or unavailable

    (Problem): InternalError: CUDA runtime implicit initialization on GPU:0 failed. Status: all CUDA-capable devices are busy or unavailable (Solution) GPU 효율적으로 사용하기 위한 세팅 필요 1. 주피터 노트북 셧다운 가장 기초?적인 시도는 사용중이 주피터 노트북을 셧다운 시키는 것입니다. 사용하지 않는 주피터 노트북은 셧다운 시킴으로서 사용하고 있는 노트북만 활성화해주세요. 2. GPU 메모리 초기화 셧다운했는데도 nvidia-smi 명령어를 터미널에 쳤을때, 여전히 GPU 메모리가 10% 이상 사용중이라 뜬다면?https://kaen2891.tistory.com/28위의 블로그에서 보여..

    [Tensorflow]tensorflow:Can save best model only with val_acc available, skipping

    참고 링크: https://stackoverflow.com/questions/61505749/tensorflowcan-save-best-model-only-with-val-acc-available-skipping (Problem) Model Checkpoing Error tensorflow:Can save best model only with val_acc available, skipping (Solution) val_acc -> val_accuracy

    [Konlpy]Exception: Install MeCab in order to use it: http://konlpy.org/en/latest/install/

    (Problem)Konlpy 설치 후에도 나타나는 Mecab 사용시 나타나는 오류 from konlpy.tag import Mecab Exception: Install MeCab in order to use it: http://konlpy.org/en/latest/install/(Solution) 의존성관련 설치 및 mecab.sh $ sudo apt-get install g++ openjdk-8-jdk python3-dev python3-pip curl $ sudo apt-get install curl git $ bash

    [Konlpy]ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.aiohttp 3.6.3 requires yarl<1.6.0,>=1.0, but you have yarl 1.6.3 which ..

    참고링크: https://github.com/aio-libs/aiohttp/issues/4987 (Problem) conda 가상환경에서 konlpy 설치하면 나타나는 error pip install konlpy (Solution) 다시 설치 확인 해보기 pip uninstall konlpy pip install -U konlpy # install after cash clear Requirement already satisfied: konlpy in ./anaconda3/envs/aiffel/lib/python3.7/site-packages (0.5.2) Requirement already satisfied: colorama in ./anaconda3/envs/aiffel/lib/python3.7/sit..