-
-
Save vgoklani/5281813 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env python | |
import sys | |
Dict = [] | |
with open('aclImdb/imdb.vocab','r') as f: | |
for line in f: | |
Dict.append(line.strip()) | |
with open('audit.log','r') as f: | |
f.readline() | |
line = f.readline() | |
parts = line.split() | |
for part in parts: | |
if part[0]=='C': continue | |
bits = part.split(":") | |
wordidx = int(bits[0].split("^")[1]) | |
if float(bits[3]) > 0: sent = '+' | |
elif float(bits[3]) < 0: sent = '-' | |
else: sent = '?' | |
if wordidx < 1000: | |
print "%20s: %s %0.4f" % (Dict[wordidx], sent, abs(float(bits[3]))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment