Anaconda Navigator Start Error
[검색 결과 #1]
에러 번호를 검색하여 찾은 것이나 정확하게 'pid=725' 항목은 아니었다. 하지만 따라하니 해결되었다.
please run
$ anaconda-navigator --reset
Did you try to run Navigator with sudo, and then without sudo (or Run as Administrator on Windows)?
Please update to the latest version of Navigator.
On Navigator click on the update button on the top right of the interface or
on the terminal type
$ conda update anaconda-navigator
출처 : <https://github.com/ContinuumIO/anaconda-issues/issues/1984>
[검색 결과 #2]
사실, 검색에서 'pid=725' 항목이 나온 결과도 있었으나, 따라해도 정상적으로 동작하지 않았다. 과정은 매우 유사한데 동작하지 않은 이유는 무엇일까?
Please remember to update to the latest version of Navigator to include
the latest fixes.
Open a terminal (on Linux or Mac) or the Anaconda Command Prompt (on windows)
and type:
$ conda update anaconda-navigator
$ conda update navigator-updater
출처 : <https://github.com/ContinuumIO/anaconda-issues/issues/7391>
2018년 1월 18일 목요일
2018년 1월 7일 일요일
numpy.array shape에서 (n,)와 (n,1)의 차이
numpy가 데이터를 다루는 방식과 이를 해석하는 방식을 이해해야 한다.
아래 링크를 참고하자.
링크 <https://stackoverflow.com/questions/22053050/difference-between-numpy-array-shape-r-1-and-r>
피드 구독하기:
글 (Atom)
람다 표현식 (Lambda expression)
람다 표현식(Lambda expression) 람다 표현식으로 함수를 정의하고, 이를 변수에 할당하여 변수를 함수처럼 사용한다. (1) 람다 표현식 lambda <매개변수> : 수식 ※ 람다식을 실행하...
-
데이터 과학자가 알아야 할 5가지 클러스터링 알고리즘 February 26,2018 클러스터링은 데이터 포인트의 그룹화와 관련된 머신러닝 기술입니다. 데이터 포인트 집합이 주어지면 클러...
-
Speech Processing for Machine Learning: Filter banks, Mel-Frequency Cepstral Coefficients (MFCCs) and What's In-Between 출처: < http:...
-
영교차점(zero-crossing) 찾기 (파이썬) a = [1, 2, 1, 1, -3, -4, 7, 8, 9, 10, -2, 1, -3, 5, 6, 7, -10] 일 때, In[61]: z = np.where(np.diff(np.sign(...