Skip to content

Instantly share code, notes, and snippets.

@gupul2k
gupul2k / vector_generation_BoWs.py
Created December 10, 2012 23:02
Feature Vector Generation for supplied BoWs
#!/usr/bin/python
#Script to generate feature vector for a supplied BoWs file.
#Date: Nov 2 2012
#Author: Hota Sobhan
from string import punctuation
from operator import itemgetter
words = {}
total_words = 0