Last active
December 27, 2015 20:39
-
-
Save kevincobain2000/7385850 to your computer and use it in GitHub Desktop.
senti word net to mysql
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
-- Step 1; table_name = sentwn | |
CREATE TABLE `sentiwn` ( | |
`pos` varchar(64) DEFAULT NULL, | |
`id` varchar(32) DEFAULT NULL, | |
`p` int(11) DEFAULT NULL, | |
`n` int(11) DEFAULT NULL, | |
`synset` varchar(64) DEFAULT '', | |
`gloss` text | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
-- Step 2; | |
-- We don't want hashes (#) From SentiWordnet E.g. | |
-- 26 # | |
-- 27 # POS ID PosScore NegScore SynsetTerms Gloss | |
-- From Bash Run ↓ | |
-- tail -n +27 SentiWordNet_3.0.0_20130122.txt | |
-- Step 3; | |
LOAD DATA LOCAL INFILE '/Users/kevincobain2000/Downloads/data/SentiWordNet.txt' | |
INTO TABLE `sentiwn` | |
COLUMNS TERMINATED BY '\t'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment