1. word2Vec
#!/usr/bin/env python# coding: utf-8 # In[1]: corpus = ['king is a strong man', 'queen is a wise woman', 'boy is a young man', 'girl is a young woman', 'prince is a young king', 'princess is a young queen', 'man is strong', 'woman is pretty', 'prince is a boy will be king', 'princess is a girl will be queen'] # In[2]: print corpus # In[7]: def remove_stop_words(corpus): stop_words = ['is', 'a', ..
Field 'ssl_cipher' doesn't have a default value
ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value Mysql 버전이 높아지면서 보안관련 인한 오류 User 생성시 Host, User ,Password, ssl_cipher, x509_issuer, x509_subject 를 입력 필수 ssl_cipher, x509_issuer, x509_subject 값은 '' 빈값을 입력. $ insert into user (Host, User, Password, ssl_cipher, x509_issuer, x509_subject ) values('localhost','사용자명',password('비밀번호'),'','',''); ERROR 1364 (HY000): Field 'authenticat..