본문 바로가기

ERROR38

Graph execution error:Detected at node 'sequential_1/embedding_1/embedding_lookup' model.fit하는 과정에서 Graph execution error:Detected at node 'sequential_1/embedding_1/embedding_lookup' 해당 에러가 떴다. 코드를 뜯어보니 model을 구축하는 과정에서 Embedding의 숫자를 잘못 지정해주었었다. 수정한 뒤, 정상 작동 되었다. + 처음에 코드 오타를 발견하지 못하고 구글링했을때 멘붕이었다 .. 같은 에러가 뜨는 사람은 엄청 많은데 그 누구도 해결책을 몰랐기에 .. 단순 오기입이었어서 정말 다행이었다. https://github.com/keras-team/keras/issues/17368 InvalidArgumentError: Graph execution error: · Issue #17368 · keras-.. 2023. 2. 21.
tar: Error is not recoverable: exiting now !tar -xzvf '파일경로' -C 저장위치 tar.xz 형식의 파일을 extract 하려고 !tar을 이용하여 해당 코드를 실행하니 발생한 에러이다. !tar -xf '파일경로' -C 저장위치 수정하여 돌렸더니 제대로 extract 되었다. 2023. 2. 20.
zsh: command not found: pyrcc5 conda install pyqt=5 conda install -c miniconda lxml YOLO 실행을 위해 위 프로그램을 install 한 뒤 해당 코드를 입력 했더니 뜬 에러이다. brew install pyqt5 brew 로 install 해주었더니 정상 실행 되었다. 2023. 2. 20.
YOLO 실행시 발생, IndexError: list index out of range This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags. Traceback (most recent call last): File "convert_weights.py", line 20, in from yolov3 import YOLOv3Net File "/Users/Documents/DeepLearning.. 2023. 2. 19.
Mac 업데이트 후 발생하는 xcrun: error Ventura update 후 git 사용하려 하니 발생한 error .. xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun https://www.hahwul.com/2019/11/18/how-to-fix-xcrun-error-after-macos-update/ Mac 업그레이드 후 xcrun: error: invalid active developer path 에러 해결하기 MacOS 업그레이드 시 어김없이 발생하는 문제가 하나 있습니다 😫 바로 개발 관련 도구 사용 시 대다수가 발생하는.. 2023. 2. 19.
ValueError: cannot reshape array of size 1 into shape (28,28) import matplotlib.pyplot as plt plt.figure(figsize=(10,8)) for idx, n in enumerate(samples): plt.subplot(4, 4, idx+1) plt.imshow(X_train[n].reshape(28,28), cmap='Greys') plt.title(y_train[n]) plt.show() mnist 데이터를 사용하고, random하게 16개를 뽑아서 그림을 그려보는 도중 위 코드에서 발생한 에러이다. random으로 뽑아낸 samples 데이터를 보면 숫자가 한줄로 나열되어있어서, 그림을 그릴 수 없기에 reshape(28,28)로 잡아주었는데, train 데이터를 보면 맨 앞에 label column이 있는데 X_train 지정시.. 2023. 1. 15.
CONDA ERROR / failed with initial frozen solve. Retrying with flexible solve. terminal에서 conda ~ install 시에 해당 에러가 떴다. conda update --all로 upgrade 해준다. 2023. 1. 15.
TypeError: countplot() got multiple values for argument 'data' countplot 그리던 중 발생한 에러이다. x에 'Class'를 지정해주고 다시 실행했다. 2023. 1. 10.
bash / zsh _ Shell ERROR 참고링크 https://blog.naver.com/donut_nv/222172178680 mac os shell 확인과 변경 안녕하세요. Mac os에서 터미널 사용시 아래와같은 알림이 자꾸 뜨길래 실제로 시도 해봤습니다. To upda... blog.naver.com https://lovelydiary.tistory.com/309 Mac) Path 추가하기 (+bash쉘, zsh쉘, echo$PATH, vi 편집기) #1. 일반적으로 Mac에 설치한 파일(예를들어 MySQL)은 해당 파일이 설치된 폴더로 들어가야만이 파일을 실행할 수 있다. 하지만 터미널 상에서 매번 해당 파일이 설치된 폴더로 cd 해서 이동하는 건 lovelydiary.tistory.com https://yunwoong.tistory.com/.. 2023. 1. 2.