일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- ida
- Ransomware
- TensorFlow
- pytest
- hex-rays
- Analysis
- NumPy Unicode Error
- ida pro
- mock.patch
- error fix
- why error
- data distribution
- commandline
- x64
- javascript
- idapython
- idapro
- idb2pat
- ecma
- Rat
- MySQL
- svn update
- debugging
- Python
- 포인터 매핑
- h5py.File
- Injection
- malware
- open office xml
- error
- Today
- Total
목록분류 전체보기 (137)
13 Security Lab
pytest & mock & fixture 1. pytest python 으로 개발하면서 코드 단위가 커지면 자연스레 테스트방법을 찾게 되는데 unittest와 pytest를 검색하게 된다. 그 중 별 이슈가 없는 한 pytest 를 선택하게 되는데.. 쉽고 강력한 테스트 라이브러리로서 unittest(파이썬 표준라이브러리) 와 유사하지만 단순한 문법으로 코드를 비교적 단순하게 만들 수 있다 실행 방법은 단순히 커맨드에서 pytest를 입력하면 된다. $ pytest =========================== test session starts ============================ platform linux -- Python 3.x.y, pytest-3.x.y, py-1.x.y, p..
Cooxie Does Not Work in Windows 10 using IE11(Internet Explorer 11) Problem: When changes proxy option using cooxie, it doesn't work anyway If change the option, need to check the following. If cooxie dosn't work correctly, UI option icon "security level" also not works too So, if click the button and shows nothing changed. it means not works now. Solution Run as Administrator IE 11
information gain 은 information theory 에서 온 개념으로서 machine learning 의 decision tree 를 통해서 알게 되었다. 1. Information Gain 어떤 분류를 통해서 얼마나 information (정보) 에 대한 gain (이득) 이 생겼는 지를 나타낸다. 이 개념은 Entropy 를 통해 계산한다. (엔트로피는 아래서 설명) 어떤 속성(특징)을 선택함으로서 데이터를 더 잘 구분하게 되는 것이다. IG(Information Gain)가 클 수록 "변별력이 좋다" 고 표현 할 수 있다. Information gain theory에서는 모든 사건이 평균적인 확률을 지닐 때 가장 엔트로피가 높게 나타난다고 표현한다. Information gain 의..
Subject: "SVN Error" Error Message:svn: E200031: sqlite[S8]: attempt to write a readonly database svn: E200042: Additional errors: svn: E200031: sqlite[S8]: attempt to write a readonly database Environment: Ubuntu 16.04SVN IntelliJ Problem:Permission issues, because of file ownershipwhen svn update using IntelliJ tool it shows error message like "SVN E200031: sqlite[S8]: attempt to write a reado..
h5py Error Error Message: TypeError: No conversion path for dtype: dtype('
Tensorflow Error Error Message:TypeError: Expected int32, got list containing Tensors of type '_Message' instead. Error Code: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152def average_gradients(tower_grads): """Calculate the average gradient for each shared variable across all towers. Note that this function provides a synchronization point across..
Tensorflow Error Error Message:Is it just because that the tf.get_variable_scope() (which is identical to vscope) is explicitly created than the implicit default? Then, what do these two VariableScope objects differ in? Error Code: 12345678910111213141516171819202122232425262728293031with graph.as_default(): # Average the gradients grads_e = average_gradients(tower_grads_e) grads_g = average_gra..
Recommend System? Recommend System is a subclass of information filtering system that seeks to predict the "rating" or "preference" that a user would give to an item. 1. Simple Recommend System Tutorial Recommend System 을 위한 간단한 행렬식에 matrix factorization + regularization 적용 추천시스템을 Matrix completion problem 으로 보고 접근한다. User-Movie Recommend System을 예로 들 수 있다. The mathematics of matrix factorizatio..
정치 이슈에 대해서 TF-IDF 통계기법을 이용하여 기간별 정치기사의 이슈가 어떻게 바뀌어가는지 변화 흐름을 분석한다. ▶ TF-IDF 이란 ? TF-IDF 에 대해서 알아보기 이를 위해 Topic Model 기법을 응용하여 이슈 변화 흐름 분석을 시도해 보았다. 기간: 4/1 ~ 4/30 데이터셋: 450건의 정치기사 (daum.net) 1. 정치기사 수집 최초, 4월 한달 간으로 수집하고 DB를 구성하였으며, 각 날짜 별 15건에 대해서 수집을 시도하였다. 기사 수집 시 텍스트 파싱에 에러가 나는 데이터셋을 제외하고 441건의 데이터를 수집하였다. news_origin.db 한글 기사 태그 부분(“article_view”)을 파싱하여 기사 내용을 가져왔다. 기사에서 공통적으로 끝부분에서 기자 이름과 ..
Error problem from >> preprocessing.LabelEncoder() - fit() - transform() Message is "TypeError: unorderable types: NoneType() < NoneType()" Problem Definition ERR code line 1 2 3 le_1 = preprocessing.LabelEncoder() training_tr_le = le_1.fit(training_labels) training_labels_encoded = training_le.transform(training_labels) Error Message 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2..