[알고리즘] 정렬된 Array에서 중복제거하여 target의 인덱스 반환
정렬된 Array에서 중복제거하여 target의 인덱스 반환하기 1. ArrayList에 데이터 셋팅. 2. 중복이 허용되지 않는 HashSet에 데이터 셋팅. 3. 다시 int[]에 담아 반환 class Solution { public int[] searchRange(int[] nums, int...
황트루치
정렬된 Array에서 중복제거하여 target의 인덱스 반환하기 1. ArrayList에 데이터 셋팅. 2. 중복이 허용되지 않는 HashSet에 데이터 셋팅. 3. 다시 int[]에 담아 반환 class Solution { public int[] searchRange(int[] nums, int...
error: cannot spawn git: No such file or directory Atom 에디터의 Merge기능이 편리해 컨플릭트가 났을때 애용하던 와중에 Git 액션시 위와 같은 오류가 발생했다. GIT_SSH PATH등록하는 등 검색된 솔루션에도 해결안되던 와중에...
ArrayList 를 일정 크기로 분할할 때, sublist(int fromIndex, int toIndex) 를 사용해도 되지만, 리스트 사이즈내에서 fromIndex, toIndex구하는 로직을 추가로 짜야한다. Apache Commons 라이브러리의 partition 메서드를 사용하면 아주 간편하게 List를 사이즈에...
Pandas df.groupby(“team”)[“Points”].sum() hierarchical index unstack() h_index.unstack() RDB데이터를 매트릭스로 바꿀때 많이 사용 df.groupby([“source”, “target”)[“rating”].sum().unstak().fillnan(0) #매트릭스형태로 변환 cumsum cummin cummax 시계열데이터 feature 생성 pd.merge(df_a, df_b, on=’subject_id’) inner join기준으로 merge함. pd.merge(df_a, df_b, on=’subject_id’,...
드롭아웃 기법 : 신경망의 일부만 사용하도록 하여 가중치의 균형을 잡고 과적합 상태를 해결함. keep_prob = tf.placeholder(tf.float32) W1 = tf.Variable(tf.random_normal([784, 256], stddev=0.01)) L1 = tf.nn.relu(tf.matmul(X, W1)) L1 = tf.nn.dropout(L1, keep_prob) W2 =...
텐서플로우 모델 저장 및 재사용, 텐서보드 사용하기 with tf.name_scope(‘layer1′): W1 = tf.Variable(tf.random_uniform([2, 10], -1., 1.), name=’W1’) L1 = tf.nn.relu(tf.matmul(X, W1)) with tf.name_scope(‘layer2′): W2 = tf.Variable(tf.random_uniform([10, 20], -1., 1.), name=’W2’) L2...
최적화 기법들 일차미분이용 : Gradient Descent 이차미분이용 : 뉴턴법, 가우스뉴턴법 N개씩 평균 W, B 구하여 전체 모델 파라미터 구함 : mini-batch Gradient Descent 이미지에서는 RENU 액티베이터 사용 (sigmoid단점 극복) one hot...
ㅣㄱ아직 Push되지 않은 로컬 커밋 메[시지 수정하기 git commit –amend -m “수정할 커밋메시지”
https://conda.io/miniconda.html wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh shell에서 실행 sh ./Miniconda3-latest-MacOSX-x86_64.sh conda create -n ml_python python=3.6 source activate ml_python conda install numpy conda install pandas conda install matplotlib conda install jupyter conda install scikit-learn TF설치...
Atom > Preferrence > Install > 검색 autocomplete-python : 파이썬 AutoComplete 제공 script : Cmd + I 눌러 에디터 내용 바로 실행하기
More
최근 댓글