This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gensim.models import Word2Vec | |
import pymssql | |
import numpy as np | |
import pandas as pd | |
import pickle | |
conn = pymssql.connect(server='localhost', user='junha', | |
password='password', database='FAERS', port=1433) | |
cur = conn.cursor() |