diff --git a/python/cuml/manifold/t_sne.pyx b/python/cuml/manifold/t_sne.pyx index dc050fa3b2..fba2a08688 100644 --- a/python/cuml/manifold/t_sne.pyx +++ b/python/cuml/manifold/t_sne.pyx @@ -400,7 +400,6 @@ class TSNE(Base): self.Y = Y return self - def __del__(self): if "Y" in self.__dict__: del self.Y @@ -410,7 +409,6 @@ class TSNE(Base): # GPU memory. cuda.current_context().deallocations.clear() - def fit_transform(self, X): """Fit X into an embedded space and return that transformed output. Parameters @@ -441,7 +439,6 @@ class TSNE(Base): return data return None # is this even possible? - def __getstate__(self): state = self.__dict__.copy() @@ -452,7 +449,6 @@ class TSNE(Base): del state["handle"] return state - def __setstate__(self, state): super(TSNE, self).__init__(handle=None, verbose=(state['verbose'] != 0))