PC 사양을 확인해야할 일이 생겼다. 그냥 간단하고 빠르게 확인하는 방법을 정리해놓는 글이다. 작업관리자(Ctrl + Shift + Esc) → 성능 RAM DDR 유형 확인 방법 (Windows 10 기준) CMD 창을 열어서 (윈도우 + R → 'cmd' 입력 후 '확인') 아래 명령어를 실행한다. wmic memorychip get memorytype MemoryType 0 0 0 0 - 위와 같이 MemoryType 이 전부 0 (Unknown) 으로 나온 경우, 아래 명령을 실행시켜서 보면 된다. wmic memorychip get SMBIOSMemoryType SMBIOSMemoryType 26 26 26 26 - 나는 26은 DDR4을 뜻한다고한다 각 숫자가 뜻하는 DDR Type 은 아래 ..
[오%류^] Watchpack Error (watcher): Error: ENOSPC: System limit for number of file watchers reached
2022.08.23
문제상황 localhost 로 컴파일하려는데 npm start 아래와 같은 에러가 뜬다... Open in Browser 계속하라고 해서 했더니 탭 여러 개 열리고 무한 로딩에 들어가버렸음... Watchpack Error (watcher): Error: ENOSPC: System limit for number of file watchers reached, watch '/home/lhj/workspace/Github/visual-system/01-starting-setup/node_modules/webpack-dev-server/client/modules 해결방법 터미널에 아래와 같이 입력해주고 sudo sysctl -w fs.inotify.max_user_watches=524288 다시 하니깐 npm ..
[solved] Github Desktop 에서 default branch 가 바뀌지 않는다.
2021.03.09
문제 상황 원래 repo 에 master branch 가 있었는데, main 으로 이름을 바꾸고 싶었음 그래서 깃허브에서 master branch 를 rename 해서 main 으로 바꿔줌 아래처럼 알림창 띄우길래, cmd 창 가서 해당 repo에서 그대로 잘 해줌 깃헙 데탑에서 Fetch 를 했는데도 그대로 master가 default 이고 main은 없길래, local에서 main branch를 새로 만들어줌 main 을 master로 merge 하려고 했는데, identical 해서 compare 해도 pr 이 안 보내지는거임 그래서 그냥 master를 삭제함 ( 이게 가장 큰 문제였다... 생각하고 행동으로 옮기자... ;;; ) 근데 main 이 default 라고 뜨지는 않음 근데 깃허브에서 ..
캡쳐를 보면 알 수 있듯이, 내 노트북은 죽어가는 중이다. 노트북 뜨끈해져서 팬이 미친듯이 돌아가고 손에서는 땀이 나길래, CPU 점유율을 낮춰보고자 작업관리자를 켰다. 상태가 심각할거라는건 알고 있었다. 안드로이드 스튜디오와 비주얼 스튜디오와 유니티를 동시에 돌려놓는 미친 짓도 자주 했다. (당연히 크롬이나 카톡 같은건 기본으로 켜놨다.) 방금 가상현실 수업의 10번째 과제를 제출했기에, 좀 살려보고자 한다. (교수님 저도 살려주세요) 우선 여기있는 18은 '프로세스'의 숫자이다. 프로세스란? 얼마전에 운영체제 수업에서 배웠다. 프로세스란, 실행 중인 프로그램을 뜻한다. 우리는 멀티 프로세스를 사용한다. 즉, 메모리 위에 프로그램 여러개가 동시에 올라갈 수 있다는 뜻이다. 아무튼, 프로세스에게 메모리를..
[solved] AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter'
2020.06.08
코드 import tensorflow as tf interpreter = tf.lite.interpreter("model.tflite") interpreter.allocate_tensors() 오류 메세지 AttributeError Traceback (most recent call last) in () 1 import tensorflow as tf 2 interpreter = tf.lite.interpreter("model.tflite") 3 interpreter.allocate_tensors() AttributeError: module 'tensorflow._api.v2.lite' has no attribute 'interpreter' +) attribute 확인하는 방법 'lite' in dir(tf..
[solved] SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
2020.06.08
코드 import tensorflow as tf tf.__version__ interpreter = tf.lite.interpreter("C:/Users/user/model.tflite") interpreter.allocate_tensors() 오류 메세지 SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape 해결 방법 "C:\Users\user\model.tflite" 를 "C:/Users/user/model.tflite" 로 바꿔주면 된다. \ 대신 /를 사용하면 해결된다.
간단한 해결 방법을 공유하고자 한다. 이 방법을 사용하면 앞으로 잔디가 잘 심어질 뿐만 아니라, 여태 안 심어졌던 잔디들도 다시 심을 수 있다!! 단, 자신의 이메일을 사용하였을 경우에만 해당한다. 요약 '.gitconfig' 파일이 있는 폴더로 이동 'git config --list' 로 이메일 확인 Github - settings - Emails - 'Add email address'에 이메일 넣기 verification email accept 하기 이 순서대로 차근차근히 설명하도록 하겠다. 0. 소스트리 이용자일 경우? 만약에 소스트리를 사용하고 있다면, 도구-옵션-기본 사용자 정보 에서 이메일을 확인하고 3번으로 넘어가도 된다! 아니라면 1번부터 차근차근 진행하도록 하자. 1. '.gitconfi..
AttributeError: module 'tensorflow' has no attribute 'placeholder'
2020.05.22
에러 메세지 AttributeError: module 'tensorflow' has no attribute 'placeholder' 해결 방법 import tensorflow.compat.v1 as tf tf.disable_v2_behavior() WARNING 뜬당 WARNING:tensorflow:From C:\Users\alro9\anaconda3\lib\site-packages\tensorflow\python\compat\v2_compat.py:96: disable_resource_variables (from tensorflow.python.ops.variable_scope) is deprecated and will be removed in a future version. Instructions ..