문제들(21)
-
CORS error (ajax-xml-servlet/jsp)
CORS error (ajax-xml-servlet/jsp) 발단 공공 데이터 포털 https://data.go.kr/ 에서 공휴일 정보 ( XML ) 를 REST로 받으려고 했다. 남들처럼 단순하게 XMLHttpRequest w3schools 소스로 연습하려고 했고, 환경은 apache/tomcat, jsp/servlet 에서 간단히 예제 연습하려 했다. 하지만 뜨라는 결과는 나오지 않고 CORS 에러 만 콘솔창에 떴다. Access to XMLHttpRequest at '외부주소' from origin 'http://localhost:8080' has been blocked by CORS policy: Response to preflight request doesn't pass access contr..
2021.08.03 -
python module not found (경로 참조 문제)
발생 및 원인 보통 상대경로로 되어있는 코드를 다른경로에서 참조할 때 발생한다 이때 해결방법은 내 경우 두가지이다. 적절한 절대경로에서 참조할 것 상대경로를 절대경로로 참조하게 할 것 2의 경우로 할 때 구분할 것이 있다. 예시 C:\Users\sypha\Desktop\tts>python fasttts/synth_module.py 현재 working directory os.getcwd() C:\Users\sypha\Desktop\tts> module(python file)이 속한 directory os.path.dirname(os.path.abspath(__file__)) C:\Users\sypha\Desktop\tts\fasttts 이때 상대경로가 제대로 처리가 안되어있을 경우에는 C:\Users\sy..
2021.06.10 -
AttributeError: module 'tensorflow' has no attribute 'contrib'
요약 : tensorflow1이 필요한 코드가 아닌 경우 고려할 필요없다. 발생 - hyper parameter 조정시 필요 Traceback (most recent call last): File "preprocess.py", line 15, in from hparams import hparams, hparams_debug_string File "/content/Tacotron2-Wavenet-Korean-TTS/hparams.py", line 6, in hparams = tf.contrib.training.HParams( AttributeError: module 'tensorflow' has no attribute 'contrib' https://github.com/tensorflow/community..
2021.05.25 -
[JavaScript] forEach is not a function error
[JavaScript] forEach is not a function error 문제 javascript 상에서 forEach 구문을 돌렸지만 해당 에러 메시지가 뜨며 실행이 되지 않는다. 원인 배열이 아니기 때문이다. 다른 사람은 유사 배열이라 한다. Array.isArray(forEach 수행에 실패한 객체) 를 돌려보면 된다. 이게 참 어이가 없다. for 문은 돌아가는데 forEach는 안된다? 내 경우에는 document.getElementsByTagName('~')으로 받은 elements가 이에 속했다. 그럼 유사 배열이란 게 대체 뭔지 살펴보자 https://developer.mozilla.org/ko/docs/Web/API/Element/getElementsByTagName getElem..
2021.03.26 -
[JDBC] MySQL Error Code 1175 발생시 해결법
문제 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. mysql workbench에서 테스트 할 때 발생한다. 원인 단순히 풀어서 보면 where key column이외 다른 column을 가지고 update를 하기 때문인 것으로 보인다. mysql> SHOW VARIABLES LIKE 'sql_safe_updates'; +------------------+-------+ | Variable..
2021.03.13 -
file load - FileNotFoundError: [Errno 2] No such file or directory:
python에서 file load 시, 분명 경로에 잘 접근했는데 file not found error가 뜬다 Traceback (most recent call last): File "e:\online_lecture\ml\ai\sources\Day6\cnn\apply_filter_5.py", line 33, in img = imread('./dataset/lena_gray.png') File "C:\Users\computer\AppData\Local\Programs\Python\Python38\lib\site-packages\matplotlib\image.py", line 1476, in imread with img_open(fname) as image: File "C:\Users\comp..
2020.09.08