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
| 137633271a | |
| 2609197 | |
| alip | |
| i7535 | |
| lio | |
| orbor_82 | |
| esde | |
| 9599660 | |
| adretsb | |
| 01089c |
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
| import numpy | |
| import sys | |
| import string | |
| import random | |
| class Markov: | |
| def __init__(self): | |
| self.P = {} | |
| def Parse(self, filename): |
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
| ''' | |
| Created on Apr 21, 2009 | |
| @author: gr00vy | |
| ''' | |
| from sets import Set | |
| from time import sleep | |
| JOB_STATE_FINISHED = 0 |
NewerOlder