misc icon indicating copy to clipboard operation
misc copied to clipboard

Python scripts for various stuff: Viterbi algorithm, word2vec, etc...

Results 2 misc issues
Sort by recently updated
recently updated
newest added

# Patching CVE-2007-4559 Hi, we are security researchers from the Advanced Research Center at [Trellix](https://www.trellix.com). We have began a campaign to patch a widespread bug named CVE-2007-4559. CVE-2007-4559 is a...

Hi, I am confused wrt lines 26 and 27 of the viterbi implementation: ` trellis[:, t] = (trellis[:, t-1, None].dot(self.Obs(obs[t]).T) * self.transProb).max(0) backpt[:, t] = (np.tile(trellis[:, t-1, None], [1, self.N])...

question
wontfix