Skip to content
Snippets Groups Projects
Commit ae553cb7 authored by Manuel Günther's avatar Manuel Günther
Browse files

Removed '== None' warnings.

parent b0f63205
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class IVectorMachinePy():
self.m_sigma = numpy.random.randn(dim_cd)
def precompute(self):
if self.m_ubm and not (self.m_t == None) and not (self.m_sigma == None):
if self.m_ubm and self.m_t is not None and self.m_sigma is not None:
dim_c = self.m_ubm.dim_c
dim_d = self.m_ubm.dim_d
self.m_cache_TtSigmaInv = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment