본문 바로가기

전체239

notebook tensorflow ModuleNotFoundError 문제 : tensor 깔고 notebook 에서 바로 사용하면 error 발생 ~ 짜증 and DEEP PPAK 원인 : tensor 가상환경의 jupyter 가 설치되어 있지 않으므로, 계속 기본 환경이 호출되므로 tensor 가 처리 안됨 해결 : 가상환경을 activate 시킨 후, 해당 가상환경에도 jupyter 를 설치해준다. (tensorflow) $ conda install jupyter 출처 : https://stackoverflow.com/questions/39604271/conda-environments-not-showing-up-in-jupyter-notebook The annoying thing is that in your tensorflow environment, you can r.. 2018. 2. 20.
Spark Java jar NullPointerException 이런 상황이다. - spark-2.2.0 - scala - java jar import 해서 사용 - 개발환경(intellij) 에서 에러는 없는데, 실제 cluster 에 올리면 에러 : java jar 안에 특정 싱글톤 객체의 함수 실행시 NULLPOINTEREXCEPTION : 잘돌아가는 싱글톤 객체도 있음. - 왜이럴까 삽질 ... 끝에 ... 원인 파악과 해결 - 원인 : 잘돌아가는 싱글톤 객체와 안돌아가는 싱글톤 객체의 차이는 싱글톤 내부 멤버객체를 생성했느냐 아니냐의 차이. 이유는 모르겠으나 static init() 안에서 무슨 객체를 생성했다면 driver 에서만 들고 있고 실제 worker 노드에서는 안들고 있음. - 해결 : 그냥 싱글톤 안한닼ㅋㅋ. 아니면 broadcast 해도 될거 .. 2018. 1. 19.
팩토리 메소드 패턴 (factory method) 추상 팩토리 패턴 (abstract factory) 차이 이거 은근 볼 때마다 헷갈린다. 일단 내게 깨달음을 준 stackoverflow 를 보자. The main difference between a "factory method" and an "abstract factory" is that the factory method is a single method, and an abstract factory is an object. https://stackoverflow.com/questions/5739611/differences-between-abstract-factory-pattern-and-factory-method 정리하면,'factory method' 는 single method 가 여러 종류의 객체 생성하는 것이고, 'abstract factory' 는 .. 2018. 1. 11.
How To Paste Values To Visible/Filtered Cells Only In Excel from : https://www.extendoffice.com/documents/excel/2617-excel-paste-to-visible-filtered-cells.html Sub CopyFilteredCells() 'Updateby20150203 Dim rng1 As Range Dim rng2 As Range Dim InputRng As Range Dim OutRng As Range xTitleId = "KutoolsforExcel" Set InputRng = Application.Selection Set InputRng = Application.InputBox("Copy Range :", xTitleId, InputRng.Address, Type: = 8) Set OutRng = Applicat.. 2017. 11. 17.