View crbm.py
""" Theano CRBM implementation. | |
For details, see: | |
http://www.uoguelph.ca/~gwtaylor/publications/nips2006mhmublv | |
Sample data: | |
http://www.uoguelph.ca/~gwtaylor/publications/nips2006mhmublv/motion.mat | |
@author Graham Taylor""" | |
import numpy |
View crbm.py
""" Theano CRBM implementation. | |
For details, see: | |
http://www.uoguelph.ca/~gwtaylor/publications/nips2006mhmublv | |
Sample data: | |
http://www.uoguelph.ca/~gwtaylor/publications/nips2006mhmublv/motion.mat | |
@author Graham Taylor""" | |
import numpy |
View textrank.py
""" | |
From this paper: http://acl.ldc.upenn.edu/acl2004/emnlp/pdf/Mihalcea.pdf | |
I used python with nltk, and pygraph to do an implmentation of of textrank. | |
for questions: http://twitter.com/voidfiles | |
""" | |
import nltk | |
import itertools |