본문 바로가기

app

(155)
조건부 확률로 만든 문장의 긍정/부정 구하기 해당 문장이 긍정인지 부정인지 판단하는 프로그램~ (실은 홈페이지로 만들려고 했으나..... 한글 형태소 분석에 자원을 너무 많이 써서 서버가 멈추는... 돈이 없어서 가장 성능 낮은 서버를 쓰고 있으니..프로그램 하나 안돌아간......ㅜㅡㅜ) 먼저 조건부 확률은 (https://ko.wikipedia.org/wiki/%EC%A1%B0%EA%B1%B4%EB%B6%80_%ED%99%95%EB%A5%A0 )확률 공간 Ω에서의 두 사건 A, B에 대해서 일 때 사건 B가 일어났을 때 사건 A의 조건부 확률은 긍정 부정 두가지 상황이 있으므로 P(c) = 1/2 P1(x|c) = count(해당 문장에서 긍정 단어 리스트 수 ) / count(전체 긍정 단어 리스트 수 ) P2(x|c) = count(해당 문..
gensim을 설치여정 (ubuntu 14.04) 먼저 $ sudo pip intall gensim error!! ndg-httpsclient 관련 패키지를 설치하라고 뜬다. $ sudo pip install --upgrade ndg-httpsclient error! ssl 관련 패키지를 설치하라고 뜬다. $ sudo apt install libpq-dev python-dev libxml2-dev libxslt1-dev libldap2-dev libsasl2-dev #include ^ compilation terminated. error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 해당 파일을 찾을수 없다고 뜬다.. $ sudo apt-get install libffi-dev #include ^..
java의 sha1과 python의 sha1의 암호화 값은 다를 수 있습니다. 프로젝트하는 도중 재미있는 현상을 발견하여 글을 써 봅니다. 서로 발급된 키로 sha1으로 암호화 하여 통신하는 api를 개발하는 도중 java 와 python의 sha1의 값이 다르게 나오는것을 발견하였습니다. 아래는 java의 sha1 암호화의 기본 소스 입니다. import java.security.MessageDigest; import java.security.Security; import java.security.NoSuchAlgorithmException; public class HelloWorld{ public static void main(String []args) throws NoSuchAlgorithmException{ String return_sha1 = makeSHA("8101461..
JetBrains edit font size control JetBrains edit is do not have font size control in that menu. so YOU use keymap font size and that contorl font size. 1 . menu->preferences->keymap 2. search font and Editor Actions->Decrease Font Size / Increase Font Size setting(double click) Add Keyboard Shortcut. 3. and YOU setting key it worked!
python dict in list sort to dict value from operator import itemgetter temp_list = []temp_dict = dict()temp_dict["status"] = 1temp_list.append(temp_dict)temp_dict = dict()temp_dict["status"] = 10temp_list.append(temp_dict) sorted(temp_list, key=itemgetter('status'), reverse=True)
python 오늘의 요일 구하기 python get today of the week from datetime import datetoday = date.today()weekday = today.strftime("%A").lower()
python regex special symbol identification example if you want to string inner one or more special symbol charter str = "qwe123!@#" import rep = re.compile('[^a-zA-Z0-9]+')print bool(p.search(str))-> True if you want to string inner only special symbol charter import rep = re.compile('[a-zA-Z0-9]+')if bool(p.search(str)) == False:print "use only special symbol charter"
python warning pep8 closing bracket does not match visual indentation python warning pep8 closing bracket does not match visual indentation This is because the warning is incorrect convention grammar. Incorrect code Correct code End!!